From 0c3269d9e1e497fc520522bbc671727cb50533a7 Mon Sep 17 00:00:00 2001 From: Gorgious Date: Mon, 31 Oct 2022 19:53:19 +0100 Subject: [PATCH] Revert "Squashed commit of the following:" This reverts commit f07cf1d1efe926177a56f52ae67c343dbdb42ee1. --- src/bcf/src/bcf/v2/bcfxml.py | 10 +- src/blenderbim/blenderbim/bim/__init__.py | 3 +- .../bim/data/libraries/IFC4 AU Steel.ifc | 5266 ---------- .../bim/data/libraries/IFC4 EU Steel.ifc | 9270 ----------------- src/blenderbim/blenderbim/bim/handler.py | 2 - .../blenderbim/bim/module/cad/workspace.py | 17 +- .../bim/module/material/operator.py | 4 - .../blenderbim/bim/module/model/data.py | 9 +- .../blenderbim/bim/module/model/product.py | 18 +- .../blenderbim/bim/module/model/slab.py | 183 +- .../blenderbim/bim/module/model/ui.py | 2 +- .../blenderbim/bim/module/model/workspace.py | 4 +- .../blenderbim/bim/module/profile/__init__.py | 12 +- .../blenderbim/bim/module/profile/data.py | 72 - .../blenderbim/bim/module/profile/operator.py | 123 +- .../blenderbim/bim/module/profile/prop.py | 9 - .../blenderbim/bim/module/profile/ui.py | 29 +- .../pset/calc_quantity_function_mapper.py | 580 +- .../bim/module/pset/qto_calculator.py | 5 +- src/blenderbim/blenderbim/bim/prop.py | 2 +- src/blenderbim/blenderbim/bim/ui.py | 6 - src/blenderbim/blenderbim/tool/model.py | 7 +- src/blenderbim/blenderbim/tool/project.py | 2 +- src/blenderbim/docs/devs/installation.rst | 4 +- .../generate_steel_profiles_library.py | 200 - .../ifcopenshell/util/doc.py | 202 +- .../util/schema/ifc2x3_properties.json | 311 - .../util/schema/ifc2x3_types.json | 1310 --- .../util/schema/ifc4_properties.json | 512 - .../ifcopenshell/util/schema/ifc4_types.json | 1590 --- ...teTypes.py => MergeDuplicateTypesByTag.py} | 10 +- src/ifctester/README.md | 34 +- src/ifctester/ifctester/facet.py | 10 +- src/ifctester/ifctester/reporter.py | 114 +- 34 files changed, 350 insertions(+), 19582 deletions(-) delete mode 100644 src/blenderbim/blenderbim/bim/data/libraries/IFC4 AU Steel.ifc delete mode 100644 src/blenderbim/blenderbim/bim/data/libraries/IFC4 EU Steel.ifc delete mode 100644 src/blenderbim/blenderbim/bim/module/profile/data.py delete mode 100644 src/blenderbim/scripts/generate_steel_profiles_library.py delete mode 100644 src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_types.json delete mode 100644 src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_types.json rename src/ifcpatch/ifcpatch/recipes/{MergeDuplicateTypes.py => MergeDuplicateTypesByTag.py} (93%) diff --git a/src/bcf/src/bcf/v2/bcfxml.py b/src/bcf/src/bcf/v2/bcfxml.py index 61a91d0267..76c094d69e 100644 --- a/src/bcf/src/bcf/v2/bcfxml.py +++ b/src/bcf/src/bcf/v2/bcfxml.py @@ -223,10 +223,10 @@ class BcfXml: def edit_topic(self, topic): if not topic.creation_date: - topic.creation_date = datetime.utcnow().replace(microsecond=0).isoformat() + topic.creation_date = datetime.utcnow().isoformat() topic.creation_author = self.author else: - topic.modified_date = datetime.utcnow().replace(microsecond=0).isoformat() + topic.modified_date = datetime.utcnow().isoformat() topic.modified_author = self.author self.document = minidom.Document() @@ -345,10 +345,10 @@ class BcfXml: def edit_comment(self, comment, topic): if not comment.date: - comment.date = datetime.utcnow().replace(microsecond=0).isoformat() + comment.date = datetime.utcnow().isoformat() comment.author = self.author else: - comment.modified_date = datetime.utcnow().replace(microsecond=0).isoformat() + comment.modified_date = datetime.utcnow().isoformat() comment.modified_author = self.author self.edit_topic(topic) @@ -595,7 +595,7 @@ class BcfXml: copyfile(header_file.reference, os.path.join(topic_filepath, header_file.filename)) header_file.reference = header_file.filename header_file.is_external = False - header_file.date = datetime.utcnow().replace(microsecond=0).isoformat() + header_file.date = datetime.utcnow().isoformat() if not topic.header: topic.header = bcf.v2.data.Header() topic.header.files.append(header_file) diff --git a/src/blenderbim/blenderbim/bim/__init__.py b/src/blenderbim/blenderbim/bim/__init__.py index 702fad0d27..8d0c3d33da 100644 --- a/src/blenderbim/blenderbim/bim/__init__.py +++ b/src/blenderbim/blenderbim/bim/__init__.py @@ -160,8 +160,7 @@ def register(): bpy.types.Camera.BIMMeshProperties = bpy.props.PointerProperty(type=prop.BIMMeshProperties) bpy.types.PointLight.BIMMeshProperties = bpy.props.PointerProperty(type=prop.BIMMeshProperties) bpy.types.SCENE_PT_unit.append(ui.ifc_units) - if hasattr(bpy.types, "UI_MT_button_context_menu"): - bpy.types.UI_MT_button_context_menu.append(ui.draw_custom_context_menu) + bpy.types.UI_MT_button_context_menu.append(ui.draw_custom_context_menu) for mod in modules.values(): mod.register() diff --git a/src/blenderbim/blenderbim/bim/data/libraries/IFC4 AU Steel.ifc b/src/blenderbim/blenderbim/bim/data/libraries/IFC4 AU Steel.ifc deleted file mode 100644 index 48e1e1bd8a..0000000000 --- a/src/blenderbim/blenderbim/bim/data/libraries/IFC4 AU Steel.ifc +++ /dev/null @@ -1,5266 +0,0 @@ -ISO-10303-21; -HEADER; -FILE_DESCRIPTION(('ViewDefinition[DesignTransferView]'),'2;1'); -FILE_NAME('/dev/null','2022-10-29T10:16:42+06:00',(),(),'IfcOpenShell v0.7.0-fa6bbf2d','IfcOpenShell v0.7.0-fa6bbf2d','Nobody'); -FILE_SCHEMA(('IFC4')); -ENDSEC; -DATA; -#1=IFCPROJECT('3rs7doQKHAQv_0FsBJAj6R',$,'AU Steel Profiles Library',$,$,$,$,(#10,#14),#5); -#2=IFCPROJECTLIBRARY('2IiafSUxX2F8ibW4WrueNk',$,'AU Steel Profiles Library',$,$,$,$,$,$); -#3=IFCRELDECLARES('3mME51$MTAaOmoijv3felE',$,$,$,#1,(#2)); -#4=IFCSIUNIT(*,.LENGTHUNIT.,.MILLI.,.METRE.); -#5=IFCUNITASSIGNMENT((#4)); -#6=IFCCARTESIANPOINT((0.,0.,0.)); -#7=IFCDIRECTION((0.,0.,1.)); -#8=IFCDIRECTION((1.,0.,0.)); -#9=IFCAXIS2PLACEMENT3D(#6,#7,#8); -#10=IFCGEOMETRICREPRESENTATIONCONTEXT($,'Model',3,1.E-05,#9,$); -#11=IFCCARTESIANPOINT((0.,0.,0.)); -#12=IFCDIRECTION((1.,0.,0.)); -#13=IFCAXIS2PLACEMENT2D(#11,#12); -#14=IFCGEOMETRICREPRESENTATIONCONTEXT($,'Plan',2,1.E-05,#13,$); -#15=IFCGEOMETRICREPRESENTATIONSUBCONTEXT('Body','Model',*,*,*,*,#10,$,.MODEL_VIEW.,$); -#16=IFCGEOMETRICREPRESENTATIONSUBCONTEXT('Annotation','Plan',*,*,*,*,#14,$,.PLAN_VIEW.,$); -#17=IFCMATERIAL('Unknown',$,$); -#18=IFCISHAPEPROFILEDEF(.AREA.,$,$,178.,406.,7.8,12.8,$,$,$); -#19=IFCBEAMTYPE('0gnSUg1TbFl9SbhGW37vy6',$,'410UB60',$,$,$,$,$,$,$); -#20=IFCMATERIALPROFILESET($,$,(#22),$); -#21=IFCRELASSOCIATESMATERIAL('3BwvRJRFv7JA0GjWhPjCSt',$,$,$,(#19),#20); -#22=IFCMATERIALPROFILE($,$,#17,#18,$,$); -#23=IFCRELDECLARES('3WpCBc0oTE19eRIIrG8sHE',$,$,$,#2,(#3569,#5202,#2178,#514,#670,#2303,#2052,#912,#4526,#4682,#4275,#3135,#4409,#4024,#2884,#4158,#3018,#2633,#2767,#1627,#1220,#2360,#2516,#1376,#236,#969,#1510,#1125,#4990,#4739,#119,#1840,#3473,#449,#2082,#176,#4305,#5194,#574,#4054,#4188,#323,#3803,#5077,#3937,#2797,#3686,#2546,#1406,#2680,#2295,#1155,#2429,#1289,#904,#1038,#631,#787,#4401,#4916,#3010,#4643,#1619,#4799,#111,#1744,#5224,#1493,#353,#4973,#5107,#3967,#4856,#3716,#2576,#4123,#3850,#3465,#3872,#2325,#3599,#2459,#2074,#3755,#3348,#2208,#1068,#1957,#817,#951,#566,#4431,#700,#4180,#4578,#3187,#1281,#4461,#2914,#1523,#5137,#4886,#3746,#5020,#4635,#3495,#5042,#4769,#3629,#3244,#4925,#4791,#4518,#3378,#2238,#4674,#3534,#2394,#1987,#3127,#847,#2143,#1736,#2121,#596,#1870,#730,#345,#479,#228,#3842,#2451,#4084,#5012,#4240,#5129,#3989,#2849,#2732,#1185,#4665,#934,#4414,#4955,#4548,#3408,#4704,#3564,#3157,#2017,#4297,#3291,#2906,#1766,#3313,#3040,#1900,#1515,#3062,#2789,#1649,#509,#2945,#1805,#665,#258,#1398,#3196,#392,#141,#3621,#5254,#5159,#4019,#4908,#3768,#2628,#722,#3902,#2355,#2377,#3651,#2511,#964,#3400,#2260,#1120,#4734,#4327,#1003,#4076,#2936,#4483,#4210,#3070,#2685,#4232,#3959,#2819,#1679,#4115,#2975,#1835,#1428,#288,#2568,#1584,#1562,#1177,#37,#1311,#171,#1333,#2724,#1060,#1216,#76,#5189,#3283,#4938,#1892,#5072,#3525,#4821,#3681,#4570,#3430,#2290,#3179,#2039,#899,#2173,#626,#648,#1922,#782,#375,#3855,#4396,#4145,#3005,#2598,#1458,#3738,#2754,#2347,#1207,#3894,#2481,#1341,#956,#2503,#2230,#1090,#2637,#2386,#1246,#839,#106,#995,#4851,#4600,#3460,#4349,#3209,#163,#3343,#1796,#1818,#3092,#1952,#405,#2841,#1701,#561,#1450,#310,#4175,#5064,#444,#3924,#193,#3673,#2126,#3807,#3556,#2416,#1276,#869,#2009,#2165,#1025,#618,#774,#752,#501,#657,#4630,#4379,#4513,#4262,#3122,#4011,#2871,#1731,#2620,#1480,#340,#1614,#5094,#89,#67,#1363,#223,#4843,#4977,#3837,#1112,#5250,#4726,#3586,#2446,#3335,#2195,#1944,#397,#2078,#1671,#531,#1827,#687,#280,#436,#4292,#5181,#4041,#2901,#3790,#2650,#2784,#1259,#2533,#1393,#2282,#1142,#5007,#4756,#891,#3616,#4505,#3365,#3114,#3248,#2997,#1857,#717,#1606,#466,#59,#215,#98,#5211,#4071,#4227,#3820,#3954,#4110,#3703,#2563,#3452,#2312,#1172,#2061,#921,#4786,#1055,#4535,#4691,#804,#4284,#4418,#553,#3278,#4440,#4167,#3027,#1887,#2776,#1636,#1385,#1519,#1268,#128,#5241,#5124,#5146,#4873,#3733,#4895,#5029,#3889,#3482,#2342,#4622,#3638,#2498,#2091,#3231,#2225,#2381,#1974,#834,#1723,#583,#4448,#4197,#332,#3057,#3946,#2806,#4102,#2962,#2555,#2711,#2689,#4344,#2438,#1298,#158,#1047,#4903,#5059,#4652,#3512,#4808,#3668,#3261,#4942,#4557,#3395,#3417,#3551,#3144,#2004,#3300,#2160,#1753,#613,#2893,#1502,#362,#5116,#496,#3976,#4132,#245,#3725,#3859,#2719,#3881,#3608,#2468,#1328,#2217,#1077,#2373,#826,#4006,#960,#2615,#709,#4838,#4565,#4587,#4721,#4314,#3174,#4336,#4470,#3330,#2923,#1783,#4063,#3079,#1939,#1532,#2672,#2828,#1666,#1688,#3213,#1822,#1415,#275,#1571,#431,#24,#1164,#4778,#5051,#4934,#3387,#2247,#3543,#2403,#1996,#5176,#2130,#2152,#3785,#1879,#739,#488,#2277,#886,#4500,#4093,#2953,#5233,#4249,#3109,#2702,#4383,#3998,#2836,#2858,#2992,#2585,#1445,#2607,#2741,#1601,#1194,#54,#2490,#1350,#943,#2334,#210,#1099,#4713,#93,#3166,#3322,#3049,#1909,#769,#1658,#518,#1814,#267,#3447,#401,#423,#2056,#150,#4279,#5168,#548,#4028,#4162,#3777,#3911,#2771,#2364,#1224,#3660,#3504,#2520,#2113,#1380,#2654,#2269,#1107,#1129,#973,#1263,#856,#878,#1012,#605,#761,#4375,#2984,#1437,#4617,#1593,#3226,#1320,#180,#1718,#5198,#1467,#327,#4947,#5081,#3941,#4830,#3690,#2550,#3824,#3439,#2299,#3573,#2433,#2026,#2048,#2182,#1042,#1775,#635,#1931,#791,#384,#925,#540,#4154,#2763,#1255,#2888,#1497,#5111,#4860,#3720,#4994,#4609,#3469,#4743,#3603,#3218,#4492,#3352,#2212,#3101,#1961,#821,#414,#1554,#1710,#570,#2095,#1844,#704,#319,#297,#453,#46,#202,#3816,#2425,#4058,#1034,#2667,#4890,#1159,#19,#4639,#4773,#908,#4388,#4929,#4522,#3382,#4678,#3538,#3131,#1991,#4271,#3265,#2880,#1740,#3014,#1874,#1489,#1623,#483,#1372,#232,#4986,#366,#3595,#5228,#3993,#696,#2329,#938,#4552,#4708,#4301,#3161,#4435,#4050,#2910,#4457,#4184,#3044,#2659,#4340,#4206,#3933,#2793,#1653,#4089,#2949,#1809,#1402,#262,#2542,#1536,#1151,#5016,#1285,#145,#4765,#5163,#3257,#4912,#3772,#1866,#5046,#3499,#475,#3655,#4795,#2108,#4331,#5220,#600,#4080,#4214,#349,#3829,#4370,#3963,#2823,#5103,#4119,#2979,#2572,#1432,#3712,#2706,#2321,#1181,#2728,#2455,#1315,#930,#3868,#2204,#1064,#813,#4427,#3036,#4669,#4825,#4574,#3434,#4323,#3183,#2043,#137,#3317,#1770,#3066,#1926,#4999,#379,#5133,#4149,#3742,#2602,#5038,#4882,#3876,#3491,#2351,#3898,#3625,#2485,#2100,#3781,#3647,#3374,#2234,#1094,#3530,#2390,#1983,#843,#1250,#2139,#977,#592,#999,#726,#4219,#4604,#2698,#4353,#1307,#4487,#2940,#4236,#3096,#1549,#3985,#2845,#1705,#2594,#1454,#314,#5068,#1588,#4661,#41,#3521,#1337,#197,#3270,#4951,#4817,#3811,#3404,#2264,#4700,#4544,#3560,#2420,#2013,#873,#3153,#2147,#1762,#622,#2169,#1896,#756,#371,#1918,#1645,#505,#1801,#661,#254,#410,#2477,#4266,#5155,#4015,#2875,#3764,#2624,#1484,#2758,#1211,#1233,#2507,#1367,#2256,#1116,#4981,#4730,#3590,#4479,#3339,#2932,#1792,#3088,#1541,#3222,#2815,#1675,#535,#2971,#1831,#691,#284,#1424,#1580,#418,#33,#440,#4366,#189,#167,#457,#72,#5185,#4045,#3794,#748,#3928,#3677,#2537,#990,#3426,#2286,#1146,#2035,#895,#4760,#1029,#644,#4509,#778,#4258,#4392,#527,#3252,#4141,#3001,#1861,#2750,#1610,#1203,#63,#1359,#1086,#1242,#102,#5215,#4964,#5098,#4847,#3707,#4596,#3456,#2316,#3205,#2065,#2199,#652,#674,#1948,#808,#1697,#557,#4422,#4171,#306,#3031,#3920,#2780,#2529,#982,#2663,#2412,#1272,#132,#865,#4453,#1021,#4877,#5033,#4626,#3486,#3235,#3369,#3118,#1978,#2867,#1727,#587,#1476,#336,#4201,#5090,#470,#85,#3950,#4106,#219,#3699,#5246,#3833,#2693,#3582,#2442,#1302,#2191,#1051,#800,#683,#4656,#4812,#4405,#4539,#4561,#4695,#4288,#3148,#4444,#3304,#2897,#1757,#4037,#2646,#1506,#1640,#5120,#115,#1389,#249,#4869,#5003,#1138,#3863,#5025,#4752,#3612,#2472,#3361,#2221,#3517,#1970,#5150,#2104,#1853,#713,#462,#4318,#4474,#4067,#2927,#5207,#4223,#3083,#2676,#4357,#2810,#2966,#2559,#1419,#2308,#1168,#28,#4782,#917,#3642,#4531,#3391,#4687,#3547,#3140,#3274,#2134,#3296,#3023,#1883,#743,#1632,#492,#1788,#241,#3421,#124,#5237,#4097,#4253,#3846,#5142,#3980,#4002,#4136,#3729,#2589,#3751,#3885,#2745,#2338,#1198,#3478,#2494,#1354,#947,#2087,#3634,#1081,#1237,#830,#4310,#4466,#579,#4193,#3053,#1913,#2802,#1662,#2958,#1411,#4591,#1545,#1567,#3200,#1294,#154,#1692,#5172,#4899,#3759,#4921,#5055,#3915,#3508,#2368,#4804,#4648,#3664,#2524,#2117,#3309,#3413,#2251,#2273,#3798,#2407,#2000,#860,#2022,#2156,#1016,#609,#1749,#1905,#765,#358,#3972,#2832,#4128,#2988,#2581,#2715,#1575,#2737,#2464,#1324,#184,#1073,#1229,#2862,#2611,#1471,#5085,#80,#4834,#3694,#3287,#4968,#4583,#3443,#4717,#3577,#3170,#2030,#3192,#3326,#2186,#1779,#639,#3075,#2919,#1935,#795,#388,#1528,#1684,#522,#544,#2069,#678,#271,#293,#427,#3907,#2243,#1103,#2399,#852,#4032,#986,#1008,#2641,#735,#4864,#1133,#4613,#4747,#882,#4362,#4496,#3356,#4245,#3105,#1965,#1558,#3239,#2854,#1714,#1848,#1441,#301,#1463,#1597,#1190,#50,#1346,#206,#4960)); -#24=IFCMEMBERTYPE('3v87C_DWvF1O$Ei1bcvw6d',$,'410UB60',$,$,$,$,$,$,$); -#25=IFCMATERIALPROFILESET($,$,(#27),$); -#26=IFCRELASSOCIATESMATERIAL('3_Y6Nl4hX5A8Oe0rW1EJzQ',$,$,$,(#24),#25); -#27=IFCMATERIALPROFILE($,$,#17,#18,$,$); -#28=IFCCOLUMNTYPE('0bKJu06iX4vgr7AXEUz1m_',$,'410UB60',$,$,$,$,$,$,$); -#29=IFCMATERIALPROFILESET($,$,(#31),$); -#30=IFCRELASSOCIATESMATERIAL('3pgqaNuWX2KgEWSfN3omNg',$,$,$,(#28),#29); -#31=IFCMATERIALPROFILE($,$,#17,#18,$,$); -#32=IFCISHAPEPROFILEDEF(.AREA.,$,$,178.,403.,7.6,10.9,$,$,$); -#33=IFCBEAMTYPE('36cGh4tKr5QwVNkoUalWPl',$,'410UB54',$,$,$,$,$,$,$); -#34=IFCMATERIALPROFILESET($,$,(#36),$); -#35=IFCRELASSOCIATESMATERIAL('1zWW10Pm1FZ9BLNIGN9U2c',$,$,$,(#33),#34); -#36=IFCMATERIALPROFILE($,$,#17,#32,$,$); -#37=IFCMEMBERTYPE('0mxzoE7uv0VPwfFOaNr_kz',$,'410UB54',$,$,$,$,$,$,$); -#38=IFCMATERIALPROFILESET($,$,(#40),$); -#39=IFCRELASSOCIATESMATERIAL('2GSbLya1f3I9pMxTr$MvAu',$,$,$,(#37),#38); -#40=IFCMATERIALPROFILE($,$,#17,#32,$,$); -#41=IFCCOLUMNTYPE('1zIG2iITfBU8d0rw8_tW6N',$,'410UB54',$,$,$,$,$,$,$); -#42=IFCMATERIALPROFILESET($,$,(#44),$); -#43=IFCRELASSOCIATESMATERIAL('3p2n8F2U58w9LK3o2H9vhZ',$,$,$,(#41),#42); -#44=IFCMATERIALPROFILE($,$,#17,#32,$,$); -#45=IFCISHAPEPROFILEDEF(.AREA.,$,$,172.,359.,8.,13.,$,$,$); -#46=IFCBEAMTYPE('2pwLaSAdHEtREvf2h_EWg9',$,'360UB57',$,$,$,$,$,$,$); -#47=IFCMATERIALPROFILESET($,$,(#49),$); -#48=IFCRELASSOCIATESMATERIAL('15gIp49_fBAh8cd5e3NBAM',$,$,$,(#46),#47); -#49=IFCMATERIALPROFILE($,$,#17,#45,$,$); -#50=IFCMEMBERTYPE('3yodJp9hzAjx3qcauN1djO',$,'360UB57',$,$,$,$,$,$,$); -#51=IFCMATERIALPROFILESET($,$,(#53),$); -#52=IFCRELASSOCIATESMATERIAL('2w7s1lx_57o81DwiPc6EDN',$,$,$,(#50),#51); -#53=IFCMATERIALPROFILE($,$,#17,#45,$,$); -#54=IFCCOLUMNTYPE('1K4B$B7SHEtPvKUYcYroeL',$,'360UB57',$,$,$,$,$,$,$); -#55=IFCMATERIALPROFILESET($,$,(#57),$); -#56=IFCRELASSOCIATESMATERIAL('3S3K9s43XEHxXqsGAjCGQZ',$,$,$,(#54),#55); -#57=IFCMATERIALPROFILE($,$,#17,#45,$,$); -#58=IFCISHAPEPROFILEDEF(.AREA.,$,$,171.,356.,7.3,11.5,$,$,$); -#59=IFCBEAMTYPE('05IGsITpvAZxCcHB9vrHkx',$,'360UB51',$,$,$,$,$,$,$); -#60=IFCMATERIALPROFILESET($,$,(#62),$); -#61=IFCRELASSOCIATESMATERIAL('2IB9qYLjv7Mhic0Xpp9VL$',$,$,$,(#59),#60); -#62=IFCMATERIALPROFILE($,$,#17,#58,$,$); -#63=IFCMEMBERTYPE('09xMR6r1L9fBpBkZqrbX8i',$,'360UB51',$,$,$,$,$,$,$); -#64=IFCMATERIALPROFILESET($,$,(#66),$); -#65=IFCRELASSOCIATESMATERIAL('2nCHl6oe51PhGBehTLtOvr',$,$,$,(#63),#64); -#66=IFCMATERIALPROFILE($,$,#17,#58,$,$); -#67=IFCCOLUMNTYPE('29A2_oAtfBn8TW0Ubh5AZu',$,'360UB51',$,$,$,$,$,$,$); -#68=IFCMATERIALPROFILESET($,$,(#70),$); -#69=IFCRELASSOCIATESMATERIAL('1q95N5NNb0JAwCfxvTVgGp',$,$,$,(#67),#68); -#70=IFCMATERIALPROFILE($,$,#17,#58,$,$); -#71=IFCISHAPEPROFILEDEF(.AREA.,$,$,171.,352.,6.9,9.7,$,$,$); -#72=IFCBEAMTYPE('2$gh_03z9CbBq4RV_Wz2e5',$,'360UB45',$,$,$,$,$,$,$); -#73=IFCMATERIALPROFILESET($,$,(#75),$); -#74=IFCRELASSOCIATESMATERIAL('0FD3LYptD1YQxbLCk2A7Dj',$,$,$,(#72),#73); -#75=IFCMATERIALPROFILE($,$,#17,#71,$,$); -#76=IFCMEMBERTYPE('2CgjkVFWL7NPs3SJe6DjO7',$,'360UB45',$,$,$,$,$,$,$); -#77=IFCMATERIALPROFILESET($,$,(#79),$); -#78=IFCRELASSOCIATESMATERIAL('0b$NP9tFj7UwvmlipmgEID',$,$,$,(#76),#77); -#79=IFCMATERIALPROFILE($,$,#17,#71,$,$); -#80=IFCCOLUMNTYPE('2ragBz2CbCfRBYQa8RY8fL',$,'360UB45',$,$,$,$,$,$,$); -#81=IFCMATERIALPROFILESET($,$,(#83),$); -#82=IFCRELASSOCIATESMATERIAL('0Otha4fHPA28oUm6wtYIn0',$,$,$,(#80),#81); -#83=IFCMATERIALPROFILE($,$,#17,#71,$,$); -#84=IFCISHAPEPROFILEDEF(.AREA.,$,$,166.,307.,6.7,11.8,$,$,$); -#85=IFCBEAMTYPE('3owKPHhRDFlRUwsX$Cj7ye',$,'310UB46',$,$,$,$,$,$,$); -#86=IFCMATERIALPROFILESET($,$,(#88),$); -#87=IFCRELASSOCIATESMATERIAL('3BIABMdfb2g917V8Np5eOQ',$,$,$,(#85),#86); -#88=IFCMATERIALPROFILE($,$,#17,#84,$,$); -#89=IFCMEMBERTYPE('0AZPvOx7fDpAVEKHuhE2Z6',$,'310UB46',$,$,$,$,$,$,$); -#90=IFCMATERIALPROFILESET($,$,(#92),$); -#91=IFCRELASSOCIATESMATERIAL('2jIirxlinC2xGiExyRzJGW',$,$,$,(#89),#90); -#92=IFCMATERIALPROFILE($,$,#17,#84,$,$); -#93=IFCCOLUMNTYPE('2SOdRhPKzC4BUzyfHEImHY',$,'310UB46',$,$,$,$,$,$,$); -#94=IFCMATERIALPROFILESET($,$,(#96),$); -#95=IFCRELASSOCIATESMATERIAL('3me36n0JP2883Ed0OxkUjA',$,$,$,(#93),#94); -#96=IFCMATERIALPROFILE($,$,#17,#84,$,$); -#97=IFCISHAPEPROFILEDEF(.AREA.,$,$,165.,304.,6.1,10.2,$,$,$); -#98=IFCBEAMTYPE('00aFywLRD3pvtOQ7FnQHcA',$,'310UB40',$,$,$,$,$,$,$); -#99=IFCMATERIALPROFILESET($,$,(#101),$); -#100=IFCRELASSOCIATESMATERIAL('3K4zhkrtrEkv04FKSv8ywa',$,$,$,(#98),#99); -#101=IFCMATERIALPROFILE($,$,#17,#97,$,$); -#102=IFCMEMBERTYPE('1DfAM0mibFyQMt6OdHzbmX',$,'310UB40',$,$,$,$,$,$,$); -#103=IFCMATERIALPROFILESET($,$,(#105),$); -#104=IFCRELASSOCIATESMATERIAL('3kklszSSH6ow$J$Q2WVr4h',$,$,$,(#102),#103); -#105=IFCMATERIALPROFILE($,$,#17,#97,$,$); -#106=IFCCOLUMNTYPE('247jCMq2rBRQ4tGQkTmXzo',$,'310UB40',$,$,$,$,$,$,$); -#107=IFCMATERIALPROFILESET($,$,(#109),$); -#108=IFCRELASSOCIATESMATERIAL('0IS3ONVhLAn9TuAhdtyIa4',$,$,$,(#106),#107); -#109=IFCMATERIALPROFILE($,$,#17,#97,$,$); -#110=IFCISHAPEPROFILEDEF(.AREA.,$,$,149.,298.,5.5,8.,$,$,$); -#111=IFCBEAMTYPE('3dGWMc_ab3xhmgcng6M_IY',$,'310UB32',$,$,$,$,$,$,$); -#112=IFCMATERIALPROFILESET($,$,(#114),$); -#113=IFCRELASSOCIATESMATERIAL('174sD5x01EWB2dOFGUchNv',$,$,$,(#111),#112); -#114=IFCMATERIALPROFILE($,$,#17,#110,$,$); -#115=IFCMEMBERTYPE('3eMf8jskT3ph4IUj8zV980',$,'310UB32',$,$,$,$,$,$,$); -#116=IFCMATERIALPROFILESET($,$,(#118),$); -#117=IFCRELASSOCIATESMATERIAL('1z42MxQFbBghhlseQzadiJ',$,$,$,(#115),#116); -#118=IFCMATERIALPROFILE($,$,#17,#110,$,$); -#119=IFCCOLUMNTYPE('0CA2Ki$eX8EvGOIxnuTeyw',$,'310UB32',$,$,$,$,$,$,$); -#120=IFCMATERIALPROFILESET($,$,(#122),$); -#121=IFCRELASSOCIATESMATERIAL('2$p4xH8KX0SB$Xglqnujnc',$,$,$,(#119),#120); -#122=IFCMATERIALPROFILE($,$,#17,#110,$,$); -#123=IFCISHAPEPROFILEDEF(.AREA.,$,$,146.,256.,6.4,10.9,$,$,$); -#124=IFCBEAMTYPE('2zsu4Knfb2bg_sVSQPtw1q',$,'250UB37',$,$,$,$,$,$,$); -#125=IFCMATERIALPROFILESET($,$,(#127),$); -#126=IFCRELASSOCIATESMATERIAL('0A0a4MHkv7yPL_AfKIbdo$',$,$,$,(#124),#125); -#127=IFCMATERIALPROFILE($,$,#17,#123,$,$); -#128=IFCMEMBERTYPE('2kd_lqZ0D5$OpH63buhy0O',$,'250UB37',$,$,$,$,$,$,$); -#129=IFCMATERIALPROFILESET($,$,(#131),$); -#130=IFCRELASSOCIATESMATERIAL('0Yr5eAdp19IuuVpCXb8cVK',$,$,$,(#128),#129); -#131=IFCMATERIALPROFILE($,$,#17,#123,$,$); -#132=IFCCOLUMNTYPE('2G8fdtGIX5fBO8mQXledaM',$,'250UB37',$,$,$,$,$,$,$); -#133=IFCMATERIALPROFILESET($,$,(#135),$); -#134=IFCRELASSOCIATESMATERIAL('3zr6P_eKP4kuBKPb$tKpKk',$,$,$,(#132),#133); -#135=IFCMATERIALPROFILE($,$,#17,#123,$,$); -#136=IFCISHAPEPROFILEDEF(.AREA.,$,$,146.,252.,6.1,8.6,$,$,$); -#137=IFCBEAMTYPE('2xgu1PPCD8xf_6_O0BOaSc',$,'250UB31',$,$,$,$,$,$,$); -#138=IFCMATERIALPROFILESET($,$,(#140),$); -#139=IFCRELASSOCIATESMATERIAL('1hwmw9kQf0dPsINKd$IoiP',$,$,$,(#137),#138); -#140=IFCMATERIALPROFILE($,$,#17,#136,$,$); -#141=IFCMEMBERTYPE('08P_1UxjD3sgC_tr8oFr0w',$,'250UB31',$,$,$,$,$,$,$); -#142=IFCMATERIALPROFILESET($,$,(#144),$); -#143=IFCRELASSOCIATESMATERIAL('1JJIrII6z8tfNdTfDktPD2',$,$,$,(#141),#142); -#144=IFCMATERIALPROFILE($,$,#17,#136,$,$); -#145=IFCCOLUMNTYPE('25dVCWr9z1q9PqSekF9CBQ',$,'250UB31',$,$,$,$,$,$,$); -#146=IFCMATERIALPROFILESET($,$,(#148),$); -#147=IFCRELASSOCIATESMATERIAL('2b2kBd$ND3yumXI1OCL3En',$,$,$,(#145),#146); -#148=IFCMATERIALPROFILE($,$,#17,#136,$,$); -#149=IFCISHAPEPROFILEDEF(.AREA.,$,$,124.,248.,5.,8.,$,$,$); -#150=IFCBEAMTYPE('1lJfZb8MD7qv3ZQmTEfEI0',$,'250UB26',$,$,$,$,$,$,$); -#151=IFCMATERIALPROFILESET($,$,(#153),$); -#152=IFCRELASSOCIATESMATERIAL('3ResZgkmLB8u5COMSZzuM7',$,$,$,(#150),#151); -#153=IFCMATERIALPROFILE($,$,#17,#149,$,$); -#154=IFCMEMBERTYPE('0pavFx9ojFZRF2GOVmJqz_',$,'250UB26',$,$,$,$,$,$,$); -#155=IFCMATERIALPROFILESET($,$,(#157),$); -#156=IFCRELASSOCIATESMATERIAL('2P9SMxMaT0Pg9dytYDJ7dg',$,$,$,(#154),#155); -#157=IFCMATERIALPROFILE($,$,#17,#149,$,$); -#158=IFCCOLUMNTYPE('1JAQtMamr94P4MmjWYbfJj',$,'250UB26',$,$,$,$,$,$,$); -#159=IFCMATERIALPROFILESET($,$,(#161),$); -#160=IFCRELASSOCIATESMATERIAL('3Jb5D$Tn123vjkwQp3PaC2',$,$,$,(#158),#159); -#161=IFCMATERIALPROFILE($,$,#17,#149,$,$); -#162=IFCISHAPEPROFILEDEF(.AREA.,$,$,134.,207.,6.3,9.6,$,$,$); -#163=IFCBEAMTYPE('1$p$_Kmrz3ifnMXYl_jbk1',$,'200UB30',$,$,$,$,$,$,$); -#164=IFCMATERIALPROFILESET($,$,(#166),$); -#165=IFCRELASSOCIATESMATERIAL('10Pbh3keH2UO7PqH0LZuer',$,$,$,(#163),#164); -#166=IFCMATERIALPROFILE($,$,#17,#162,$,$); -#167=IFCMEMBERTYPE('2lYMZlemP0cvzla7xctVLj',$,'200UB30',$,$,$,$,$,$,$); -#168=IFCMATERIALPROFILESET($,$,(#170),$); -#169=IFCRELASSOCIATESMATERIAL('2QZ1jhBAj69OatIH1_mFC6',$,$,$,(#167),#168); -#170=IFCMATERIALPROFILE($,$,#17,#162,$,$); -#171=IFCCOLUMNTYPE('02ByKju1L5LudVNtyFtYYG',$,'200UB30',$,$,$,$,$,$,$); -#172=IFCMATERIALPROFILESET($,$,(#174),$); -#173=IFCRELASSOCIATESMATERIAL('00ILvI235F9Bft7SMsaUAC',$,$,$,(#171),#172); -#174=IFCMATERIALPROFILE($,$,#17,#162,$,$); -#175=IFCISHAPEPROFILEDEF(.AREA.,$,$,133.,203.,5.8,7.8,$,$,$); -#176=IFCBEAMTYPE('1vQYUbV_n53vN25WdF06Co',$,'200UB25',$,$,$,$,$,$,$); -#177=IFCMATERIALPROFILESET($,$,(#179),$); -#178=IFCRELASSOCIATESMATERIAL('2D3cCoMkLC$BUEtJiHQKuq',$,$,$,(#176),#177); -#179=IFCMATERIALPROFILE($,$,#17,#175,$,$); -#180=IFCMEMBERTYPE('2gl6Gclyz34uWTRTRdxdkZ',$,'200UB25',$,$,$,$,$,$,$); -#181=IFCMATERIALPROFILESET($,$,(#183),$); -#182=IFCRELASSOCIATESMATERIAL('2MqtwaFKHCZQKw9txxHRbU',$,$,$,(#180),#181); -#183=IFCMATERIALPROFILE($,$,#17,#175,$,$); -#184=IFCCOLUMNTYPE('3czA412$jCig3uDosNawTY',$,'200UB25',$,$,$,$,$,$,$); -#185=IFCMATERIALPROFILESET($,$,(#187),$); -#186=IFCRELASSOCIATESMATERIAL('1EJ2P0Tf92$86QRIfBJ7$b',$,$,$,(#184),#185); -#187=IFCMATERIALPROFILE($,$,#17,#175,$,$); -#188=IFCISHAPEPROFILEDEF(.AREA.,$,$,133.,202.,5.,7.,$,$,$); -#189=IFCBEAMTYPE('0Ed94KdXLEgxn9c4BLCga6',$,'200UB22',$,$,$,$,$,$,$); -#190=IFCMATERIALPROFILESET($,$,(#192),$); -#191=IFCRELASSOCIATESMATERIAL('0ERegJv9n6jQyuvUd7TfVz',$,$,$,(#189),#190); -#192=IFCMATERIALPROFILE($,$,#17,#188,$,$); -#193=IFCMEMBERTYPE('0kd8zRupT8uvtCaM3eKQUq',$,'200UB22',$,$,$,$,$,$,$); -#194=IFCMATERIALPROFILESET($,$,(#196),$); -#195=IFCRELASSOCIATESMATERIAL('0KGHhVz9vDYhlKbLHpqZCx',$,$,$,(#193),#194); -#196=IFCMATERIALPROFILE($,$,#17,#188,$,$); -#197=IFCCOLUMNTYPE('3eXmlnhUL25v9u3p6fr0xJ',$,'200UB22',$,$,$,$,$,$,$); -#198=IFCMATERIALPROFILESET($,$,(#200),$); -#199=IFCRELASSOCIATESMATERIAL('3q3QNPaGX8denGE5LKnrFM',$,$,$,(#197),#198); -#200=IFCMATERIALPROFILE($,$,#17,#188,$,$); -#201=IFCISHAPEPROFILEDEF(.AREA.,$,$,99.,198.,4.5,7.,$,$,$); -#202=IFCBEAMTYPE('0NiOVKtur6vgdF1SKxUub1',$,'200UB18',$,$,$,$,$,$,$); -#203=IFCMATERIALPROFILESET($,$,(#205),$); -#204=IFCRELASSOCIATESMATERIAL('2dNXxs$3P8aQx$NeNkzsMz',$,$,$,(#202),#203); -#205=IFCMATERIALPROFILE($,$,#17,#201,$,$); -#206=IFCMEMBERTYPE('0Bu2H$7_L8Gur2ebu12hf5',$,'200UB18',$,$,$,$,$,$,$); -#207=IFCMATERIALPROFILESET($,$,(#209),$); -#208=IFCRELASSOCIATESMATERIAL('1JCu0ceurC_9Me3qIj$fpR',$,$,$,(#206),#207); -#209=IFCMATERIALPROFILE($,$,#17,#201,$,$); -#210=IFCCOLUMNTYPE('3Mty$iHOn8_gWDUo4RzGJN',$,'200UB18',$,$,$,$,$,$,$); -#211=IFCMATERIALPROFILESET($,$,(#213),$); -#212=IFCRELASSOCIATESMATERIAL('0g$RqrQFb3P8KN5gAbJq02',$,$,$,(#210),#211); -#213=IFCMATERIALPROFILE($,$,#17,#201,$,$); -#214=IFCISHAPEPROFILEDEF(.AREA.,$,$,90.,179.,6.,10.,$,$,$); -#215=IFCBEAMTYPE('3CZWKe1zfFKxoLvPRJyEVa',$,'180UB22',$,$,$,$,$,$,$); -#216=IFCMATERIALPROFILESET($,$,(#218),$); -#217=IFCRELASSOCIATESMATERIAL('18donucOX0$B6I329uLfHG',$,$,$,(#215),#216); -#218=IFCMATERIALPROFILE($,$,#17,#214,$,$); -#219=IFCMEMBERTYPE('3j9RMPXEP7fQ9XTeEXc3g8',$,'180UB22',$,$,$,$,$,$,$); -#220=IFCMATERIALPROFILESET($,$,(#222),$); -#221=IFCRELASSOCIATESMATERIAL('0pgXlEDwXC8uDcg$HbMcA_',$,$,$,(#219),#220); -#222=IFCMATERIALPROFILE($,$,#17,#214,$,$); -#223=IFCCOLUMNTYPE('32gS2LVnH6Zuw0FryiA7lO',$,'180UB22',$,$,$,$,$,$,$); -#224=IFCMATERIALPROFILESET($,$,(#226),$); -#225=IFCRELASSOCIATESMATERIAL('2TIGGc7f1FphcXlASLTYfL',$,$,$,(#223),#224); -#226=IFCMATERIALPROFILE($,$,#17,#214,$,$); -#227=IFCISHAPEPROFILEDEF(.AREA.,$,$,90.,175.,5.,8.,$,$,$); -#228=IFCBEAMTYPE('006vaGt_P6X9NLvLy2d8Ig',$,'180UB18',$,$,$,$,$,$,$); -#229=IFCMATERIALPROFILESET($,$,(#231),$); -#230=IFCRELASSOCIATESMATERIAL('0Ast6bLc56jOGOIBItPu5M',$,$,$,(#228),#229); -#231=IFCMATERIALPROFILE($,$,#17,#227,$,$); -#232=IFCMEMBERTYPE('3hL8o7KTbACw23Zu88AvIY',$,'180UB18',$,$,$,$,$,$,$); -#233=IFCMATERIALPROFILESET($,$,(#235),$); -#234=IFCRELASSOCIATESMATERIAL('3BpV9ZWEP0Xw3Wp$ko7bQq',$,$,$,(#232),#233); -#235=IFCMATERIALPROFILE($,$,#17,#227,$,$); -#236=IFCCOLUMNTYPE('1MmCtkIVH7Afio0IdCS2nQ',$,'180UB18',$,$,$,$,$,$,$); -#237=IFCMATERIALPROFILESET($,$,(#239),$); -#238=IFCRELASSOCIATESMATERIAL('1CEkWWV3bCpAwntw14eJ2l',$,$,$,(#236),#237); -#239=IFCMATERIALPROFILE($,$,#17,#227,$,$); -#240=IFCISHAPEPROFILEDEF(.AREA.,$,$,90.,173.,4.5,7.,$,$,$); -#241=IFCBEAMTYPE('1B_777laLB69wIhBNK3QpN',$,'180UB16',$,$,$,$,$,$,$); -#242=IFCMATERIALPROFILESET($,$,(#244),$); -#243=IFCRELASSOCIATESMATERIAL('38OOsxUN9EjRHOu0Zcc3on',$,$,$,(#241),#242); -#244=IFCMATERIALPROFILE($,$,#17,#240,$,$); -#245=IFCMEMBERTYPE('23ijoT0Yz49QxXUGjqKT9t',$,'180UB16',$,$,$,$,$,$,$); -#246=IFCMATERIALPROFILESET($,$,(#248),$); -#247=IFCRELASSOCIATESMATERIAL('0rmF$bv0LCyROGjL7RdcvC',$,$,$,(#245),#246); -#248=IFCMATERIALPROFILE($,$,#17,#240,$,$); -#249=IFCCOLUMNTYPE('3QAoLTl5P5EfEy_vQal5E2',$,'180UB16',$,$,$,$,$,$,$); -#250=IFCMATERIALPROFILESET($,$,(#252),$); -#251=IFCRELASSOCIATESMATERIAL('2kH3MJPo1DHviDtGKmXnJa',$,$,$,(#249),#250); -#252=IFCMATERIALPROFILE($,$,#17,#240,$,$); -#253=IFCISHAPEPROFILEDEF(.AREA.,$,$,75.,155.,6.,9.5,$,$,$); -#254=IFCBEAMTYPE('0X2_EQbqX2q8TFNpPcw2ew',$,'150UB18',$,$,$,$,$,$,$); -#255=IFCMATERIALPROFILESET($,$,(#257),$); -#256=IFCRELASSOCIATESMATERIAL('3YA50OHA13Px88Pp_2NTwd',$,$,$,(#254),#255); -#257=IFCMATERIALPROFILE($,$,#17,#253,$,$); -#258=IFCMEMBERTYPE('1h0lW071z3D8Hb3PdQx5OI',$,'150UB18',$,$,$,$,$,$,$); -#259=IFCMATERIALPROFILESET($,$,(#261),$); -#260=IFCRELASSOCIATESMATERIAL('20cAGhqhT2RO6rul4VjgH7',$,$,$,(#258),#259); -#261=IFCMATERIALPROFILE($,$,#17,#253,$,$); -#262=IFCCOLUMNTYPE('2cdiH4INb2g9nknKKk$j01',$,'150UB18',$,$,$,$,$,$,$); -#263=IFCMATERIALPROFILESET($,$,(#265),$); -#264=IFCRELASSOCIATESMATERIAL('27lkj7Q9bA1ueyjdWaEAsc',$,$,$,(#262),#263); -#265=IFCMATERIALPROFILE($,$,#17,#253,$,$); -#266=IFCISHAPEPROFILEDEF(.AREA.,$,$,75.,150.,5.,7.,$,$,$); -#267=IFCBEAMTYPE('1lgB5_s9bEm9XFAzZXmxJh',$,'150UB14',$,$,$,$,$,$,$); -#268=IFCMATERIALPROFILESET($,$,(#270),$); -#269=IFCRELASSOCIATESMATERIAL('1Bw2SMxurC0u1ftYdL6$3j',$,$,$,(#267),#268); -#270=IFCMATERIALPROFILE($,$,#17,#266,$,$); -#271=IFCMEMBERTYPE('006AJ7D6r3jAqfCOBh_RMI',$,'150UB14',$,$,$,$,$,$,$); -#272=IFCMATERIALPROFILESET($,$,(#274),$); -#273=IFCRELASSOCIATESMATERIAL('2zEHNnNj5DkuRn07AFb_9o',$,$,$,(#271),#272); -#274=IFCMATERIALPROFILE($,$,#17,#266,$,$); -#275=IFCCOLUMNTYPE('3ipzzlMNb6JxFFfxOrqe0C',$,'150UB14',$,$,$,$,$,$,$); -#276=IFCMATERIALPROFILESET($,$,(#278),$); -#277=IFCRELASSOCIATESMATERIAL('1pN6rTfD1Dc9yqzTvzvoCp',$,$,$,(#275),#276); -#278=IFCMATERIALPROFILE($,$,#17,#266,$,$); -#279=IFCISHAPEPROFILEDEF(.AREA.,$,$,154.,162.,8.1,11.5,$,$,$); -#280=IFCBEAMTYPE('3maYhG4$57IQ_uNngyYHmi',$,'150UC37',$,$,$,$,$,$,$); -#281=IFCMATERIALPROFILESET($,$,(#283),$); -#282=IFCRELASSOCIATESMATERIAL('39wMiTk018rOTIXzAMGKF0',$,$,$,(#280),#281); -#283=IFCMATERIALPROFILE($,$,#17,#279,$,$); -#284=IFCMEMBERTYPE('1qh7ij47vCkQnHAf$ENQZv',$,'150UC37',$,$,$,$,$,$,$); -#285=IFCMATERIALPROFILESET($,$,(#287),$); -#286=IFCRELASSOCIATESMATERIAL('2mS6m_vL51xeQS6PzqAGvr',$,$,$,(#284),#285); -#287=IFCMATERIALPROFILE($,$,#17,#279,$,$); -#288=IFCCOLUMNTYPE('0MnDbYeOf1XexpNfXWzC9Y',$,'150UC37',$,$,$,$,$,$,$); -#289=IFCMATERIALPROFILESET($,$,(#291),$); -#290=IFCRELASSOCIATESMATERIAL('1JHyRJE4r0XeBwiqaTCLaa',$,$,$,(#288),#289); -#291=IFCMATERIALPROFILE($,$,#17,#279,$,$); -#292=IFCISHAPEPROFILEDEF(.AREA.,$,$,153.,158.,6.6,9.4,$,$,$); -#293=IFCBEAMTYPE('08i4LAOr9B0QPvBT8IFQhY',$,'150UC30',$,$,$,$,$,$,$); -#294=IFCMATERIALPROFILESET($,$,(#296),$); -#295=IFCRELASSOCIATESMATERIAL('1_JHh2dhT9eeDdgY5We1Ca',$,$,$,(#293),#294); -#296=IFCMATERIALPROFILE($,$,#17,#292,$,$); -#297=IFCMEMBERTYPE('0Havs_3Br9z8rCLukaNg7I',$,'150UC30',$,$,$,$,$,$,$); -#298=IFCMATERIALPROFILESET($,$,(#300),$); -#299=IFCRELASSOCIATESMATERIAL('1c5FEvHHX3vvxutmWrhUYX',$,$,$,(#297),#298); -#300=IFCMATERIALPROFILE($,$,#17,#292,$,$); -#301=IFCCOLUMNTYPE('0T5AMzm819Ewxlg$PYspoj',$,'150UC30',$,$,$,$,$,$,$); -#302=IFCMATERIALPROFILESET($,$,(#304),$); -#303=IFCRELASSOCIATESMATERIAL('3rJCqwA49BtfZQkhmsgDrH',$,$,$,(#301),#302); -#304=IFCMATERIALPROFILE($,$,#17,#292,$,$); -#305=IFCISHAPEPROFILEDEF(.AREA.,$,$,152.,152.,6.1,6.8,$,$,$); -#306=IFCBEAMTYPE('0pciKpTTX8xuP7rrrYhDcR',$,'150UC23',$,$,$,$,$,$,$); -#307=IFCMATERIALPROFILESET($,$,(#309),$); -#308=IFCRELASSOCIATESMATERIAL('3iFzvQSbz8dO6B4K2SP06I',$,$,$,(#306),#307); -#309=IFCMATERIALPROFILE($,$,#17,#305,$,$); -#310=IFCMEMBERTYPE('2D75Or4X95SO0YSfgDOVRg',$,'150UC23',$,$,$,$,$,$,$); -#311=IFCMATERIALPROFILESET($,$,(#313),$); -#312=IFCRELASSOCIATESMATERIAL('06q_v_0Rn7FffIulb9hHkm',$,$,$,(#310),#311); -#313=IFCMATERIALPROFILE($,$,#17,#305,$,$); -#314=IFCCOLUMNTYPE('3AIZ7j9iL0kBkHGg5XXfyD',$,'150UC23',$,$,$,$,$,$,$); -#315=IFCMATERIALPROFILESET($,$,(#317),$); -#316=IFCRELASSOCIATESMATERIAL('0kk_UUwAv3J9mSx2OqDLwu',$,$,$,(#314),#315); -#317=IFCMATERIALPROFILE($,$,#17,#305,$,$); -#318=IFCISHAPEPROFILEDEF(.AREA.,$,$,99.,97.,5.,7.,$,$,$); -#319=IFCBEAMTYPE('2RAMsmyW909RB7_GA8rck7',$,'100UC15',$,$,$,$,$,$,$); -#320=IFCMATERIALPROFILESET($,$,(#322),$); -#321=IFCRELASSOCIATESMATERIAL('0OLY154BbFK9Uz48WWCbxO',$,$,$,(#319),#320); -#322=IFCMATERIALPROFILE($,$,#17,#318,$,$); -#323=IFCMEMBERTYPE('2$zk1vO_55hgd3oFkOaiUn',$,'100UC15',$,$,$,$,$,$,$); -#324=IFCMATERIALPROFILESET($,$,(#326),$); -#325=IFCRELASSOCIATESMATERIAL('1pF2wWxu580e2LEuI5BbKJ',$,$,$,(#323),#324); -#326=IFCMATERIALPROFILE($,$,#17,#318,$,$); -#327=IFCCOLUMNTYPE('1bUFY68J93zwYvN1gnefXL',$,'100UC15',$,$,$,$,$,$,$); -#328=IFCMATERIALPROFILESET($,$,(#330),$); -#329=IFCRELASSOCIATESMATERIAL('2K5WLtKj12iQoeZ3VbngmS',$,$,$,(#327),#328); -#330=IFCMATERIALPROFILE($,$,#17,#318,$,$); -#331=IFCUSHAPEPROFILEDEF(.AREA.,$,$,380.,100.,10.,17.5,$,$,$); -#332=IFCBEAMTYPE('3BdrQVjhLDKwNwYwQFMaxt',$,'380PFC',$,$,$,$,$,$,$); -#333=IFCMATERIALPROFILESET($,$,(#335),$); -#334=IFCRELASSOCIATESMATERIAL('2tKcutzrHDawn7ZoSQTab9',$,$,$,(#332),#333); -#335=IFCMATERIALPROFILE($,$,#17,#331,$,$); -#336=IFCMEMBERTYPE('3pLR7vb_1Az8eBU12txMef',$,'380PFC',$,$,$,$,$,$,$); -#337=IFCMATERIALPROFILESET($,$,(#339),$); -#338=IFCRELASSOCIATESMATERIAL('0iWmuxQUfDYuHjoRZtjd46',$,$,$,(#336),#337); -#339=IFCMATERIALPROFILE($,$,#17,#331,$,$); -#340=IFCCOLUMNTYPE('0TAzaEHUvBEOY3C7nlarDe',$,'380PFC',$,$,$,$,$,$,$); -#341=IFCMATERIALPROFILESET($,$,(#343),$); -#342=IFCRELASSOCIATESMATERIAL('0YhWmqXef1iAp3Ul2BCXpY',$,$,$,(#340),#341); -#343=IFCMATERIALPROFILE($,$,#17,#331,$,$); -#344=IFCUSHAPEPROFILEDEF(.AREA.,$,$,300.,90.,8.,16.,$,$,$); -#345=IFCBEAMTYPE('02BRAv$xbBsxE1SqBK5APk',$,'300PFC',$,$,$,$,$,$,$); -#346=IFCMATERIALPROFILESET($,$,(#348),$); -#347=IFCRELASSOCIATESMATERIAL('2VqiExmcj3IfmgLxZrgo7e',$,$,$,(#345),#346); -#348=IFCMATERIALPROFILE($,$,#17,#344,$,$); -#349=IFCMEMBERTYPE('0fh58DQ4r2m9ablcQZ9ny_',$,'300PFC',$,$,$,$,$,$,$); -#350=IFCMATERIALPROFILESET($,$,(#352),$); -#351=IFCRELASSOCIATESMATERIAL('2tWslqOW970goySyYbL$ix',$,$,$,(#349),#350); -#352=IFCMATERIALPROFILE($,$,#17,#344,$,$); -#353=IFCCOLUMNTYPE('1Ny8Q2Jv12vBwTP4eqELoj',$,'300PFC',$,$,$,$,$,$,$); -#354=IFCMATERIALPROFILESET($,$,(#356),$); -#355=IFCRELASSOCIATESMATERIAL('15QFYDyLn69AvTCCzIZ$zz',$,$,$,(#353),#354); -#356=IFCMATERIALPROFILE($,$,#17,#344,$,$); -#357=IFCUSHAPEPROFILEDEF(.AREA.,$,$,250.,90.,8.,15.,$,$,$); -#358=IFCBEAMTYPE('2bvztUTsX5ABXvoeQ29VzP',$,'250PFC',$,$,$,$,$,$,$); -#359=IFCMATERIALPROFILESET($,$,(#361),$); -#360=IFCRELASSOCIATESMATERIAL('2d64HUYrf7sRnfHs6Ik_8k',$,$,$,(#358),#359); -#361=IFCMATERIALPROFILE($,$,#17,#357,$,$); -#362=IFCMEMBERTYPE('3n3xzYqBPEgQ7bYLfPyIlw',$,'250PFC',$,$,$,$,$,$,$); -#363=IFCMATERIALPROFILESET($,$,(#365),$); -#364=IFCRELASSOCIATESMATERIAL('0eId4RZLr1GRDb0rj6UCJ_',$,$,$,(#362),#363); -#365=IFCMATERIALPROFILE($,$,#17,#357,$,$); -#366=IFCCOLUMNTYPE('3RfxNTpj1AYB_e$ZkuOQ$N',$,'250PFC',$,$,$,$,$,$,$); -#367=IFCMATERIALPROFILESET($,$,(#369),$); -#368=IFCRELASSOCIATESMATERIAL('3VIl64GUH3296Y$KcS$seu',$,$,$,(#366),#367); -#369=IFCMATERIALPROFILE($,$,#17,#357,$,$); -#370=IFCUSHAPEPROFILEDEF(.AREA.,$,$,230.,75.,6.5,12.,$,$,$); -#371=IFCBEAMTYPE('0TCbHXiwr9gR1lObRdSSdK',$,'230PFC',$,$,$,$,$,$,$); -#372=IFCMATERIALPROFILESET($,$,(#374),$); -#373=IFCRELASSOCIATESMATERIAL('3_X3aFxsLC9Qd4_tMZJ_V7',$,$,$,(#371),#372); -#374=IFCMATERIALPROFILE($,$,#17,#370,$,$); -#375=IFCMEMBERTYPE('0DjJ8SbvbFXQz$7R5ZBxT0',$,'230PFC',$,$,$,$,$,$,$); -#376=IFCMATERIALPROFILESET($,$,(#378),$); -#377=IFCRELASSOCIATESMATERIAL('08Ej7vhcj5cwCjPGO7gFSL',$,$,$,(#375),#376); -#378=IFCMATERIALPROFILE($,$,#17,#370,$,$); -#379=IFCCOLUMNTYPE('2DtpjJ1g1Ccw$bHo5fsUG2',$,'230PFC',$,$,$,$,$,$,$); -#380=IFCMATERIALPROFILESET($,$,(#382),$); -#381=IFCRELASSOCIATESMATERIAL('1NnpGK6BHAKObmBCHW86Lp',$,$,$,(#379),#380); -#382=IFCMATERIALPROFILE($,$,#17,#370,$,$); -#383=IFCUSHAPEPROFILEDEF(.AREA.,$,$,200.,75.,6.,12.,$,$,$); -#384=IFCBEAMTYPE('3NOMyNgsPD_w3k2iLbUtCI',$,'200PFC',$,$,$,$,$,$,$); -#385=IFCMATERIALPROFILESET($,$,(#387),$); -#386=IFCRELASSOCIATESMATERIAL('10MyCpYuPFKfDpANxy7T63',$,$,$,(#384),#385); -#387=IFCMATERIALPROFILE($,$,#17,#383,$,$); -#388=IFCMEMBERTYPE('2iYt$9yx5CTulu0GMF3f35',$,'200PFC',$,$,$,$,$,$,$); -#389=IFCMATERIALPROFILESET($,$,(#391),$); -#390=IFCRELASSOCIATESMATERIAL('3zmBHlvub6sAMFnI2q9TFl',$,$,$,(#388),#389); -#391=IFCMATERIALPROFILE($,$,#17,#383,$,$); -#392=IFCCOLUMNTYPE('3PGzAJk3v0VRZWUC82Z1Lg',$,'200PFC',$,$,$,$,$,$,$); -#393=IFCMATERIALPROFILESET($,$,(#395),$); -#394=IFCRELASSOCIATESMATERIAL('0vI5xzSIv2LOhDUT5NXrvj',$,$,$,(#392),#393); -#395=IFCMATERIALPROFILE($,$,#17,#383,$,$); -#396=IFCUSHAPEPROFILEDEF(.AREA.,$,$,180.,75.,6.,11.,$,$,$); -#397=IFCBEAMTYPE('2Q_CVHCd158BRwkEbcMB7Q',$,'180PFC',$,$,$,$,$,$,$); -#398=IFCMATERIALPROFILESET($,$,(#400),$); -#399=IFCRELASSOCIATESMATERIAL('2s_II_4Iz5uBZ1TEhpHtnb',$,$,$,(#397),#398); -#400=IFCMATERIALPROFILE($,$,#17,#396,$,$); -#401=IFCMEMBERTYPE('1RKGuDhHP1iguBlaSVbWpH',$,'180PFC',$,$,$,$,$,$,$); -#402=IFCMATERIALPROFILESET($,$,(#404),$); -#403=IFCRELASSOCIATESMATERIAL('3iNnvj17X1eAyWwFjynCib',$,$,$,(#401),#402); -#404=IFCMATERIALPROFILE($,$,#17,#396,$,$); -#405=IFCCOLUMNTYPE('2uR4kYLw9AGQWBEDsSc1SZ',$,'180PFC',$,$,$,$,$,$,$); -#406=IFCMATERIALPROFILESET($,$,(#408),$); -#407=IFCRELASSOCIATESMATERIAL('11yR$HcFvAN87kPYr_WMvJ',$,$,$,(#405),#406); -#408=IFCMATERIALPROFILE($,$,#17,#396,$,$); -#409=IFCUSHAPEPROFILEDEF(.AREA.,$,$,150.,75.,6.,9.5,$,$,$); -#410=IFCBEAMTYPE('3SYwysw4r7ovaz6X6xLgNF',$,'150PFC',$,$,$,$,$,$,$); -#411=IFCMATERIALPROFILESET($,$,(#413),$); -#412=IFCRELASSOCIATESMATERIAL('0s3kWVuU17qhxOMvD6Z3hk',$,$,$,(#410),#411); -#413=IFCMATERIALPROFILE($,$,#17,#409,$,$); -#414=IFCMEMBERTYPE('3VUlS75pb1URfw1yuRPE$k',$,'150PFC',$,$,$,$,$,$,$); -#415=IFCMATERIALPROFILESET($,$,(#417),$); -#416=IFCRELASSOCIATESMATERIAL('2ONhlK8lr1FfTD9peYR9_s',$,$,$,(#414),#415); -#417=IFCMATERIALPROFILE($,$,#17,#409,$,$); -#418=IFCCOLUMNTYPE('1TrBF7SQD8Bwg7M5d0Zm6I',$,'150PFC',$,$,$,$,$,$,$); -#419=IFCMATERIALPROFILESET($,$,(#421),$); -#420=IFCRELASSOCIATESMATERIAL('1jvtQC4nD6GOmWVK$wFHK2',$,$,$,(#418),#419); -#421=IFCMATERIALPROFILE($,$,#17,#409,$,$); -#422=IFCUSHAPEPROFILEDEF(.AREA.,$,$,125.,65.,4.7,7.5,$,$,$); -#423=IFCBEAMTYPE('1JV7XN4YT5J9IBIEXMvxqr',$,'125PFC',$,$,$,$,$,$,$); -#424=IFCMATERIALPROFILESET($,$,(#426),$); -#425=IFCRELASSOCIATESMATERIAL('3fKmJG_bD5WPavWTBC$ySF',$,$,$,(#423),#424); -#426=IFCMATERIALPROFILE($,$,#17,#422,$,$); -#427=IFCMEMBERTYPE('2GAtP2cUj8kuNpAVpLj6MV',$,'125PFC',$,$,$,$,$,$,$); -#428=IFCMATERIALPROFILESET($,$,(#430),$); -#429=IFCRELASSOCIATESMATERIAL('0IlZIUiyj8tBR96fQ1zoq8',$,$,$,(#427),#428); -#430=IFCMATERIALPROFILE($,$,#17,#422,$,$); -#431=IFCCOLUMNTYPE('2SFYzx18j8Hg8KXtC6H_n$',$,'125PFC',$,$,$,$,$,$,$); -#432=IFCMATERIALPROFILESET($,$,(#434),$); -#433=IFCRELASSOCIATESMATERIAL('2gQIygumX0ZQicAJObNPV9',$,$,$,(#431),#432); -#434=IFCMATERIALPROFILE($,$,#17,#422,$,$); -#435=IFCUSHAPEPROFILEDEF(.AREA.,$,$,100.,50.,4.2,6.7,$,$,$); -#436=IFCBEAMTYPE('2HjCgA$yn7P8g$rp8yI8vY',$,'100PFC',$,$,$,$,$,$,$); -#437=IFCMATERIALPROFILESET($,$,(#439),$); -#438=IFCRELASSOCIATESMATERIAL('381x5GaG59IPoJQTqCRuqa',$,$,$,(#436),#437); -#439=IFCMATERIALPROFILE($,$,#17,#435,$,$); -#440=IFCMEMBERTYPE('2vE9EhJVf2OuKkhbXjoRTV',$,'100PFC',$,$,$,$,$,$,$); -#441=IFCMATERIALPROFILESET($,$,(#443),$); -#442=IFCRELASSOCIATESMATERIAL('1lNP0Ih9D9lAMsYWBGRnBp',$,$,$,(#440),#441); -#443=IFCMATERIALPROFILE($,$,#17,#435,$,$); -#444=IFCCOLUMNTYPE('0i_dXBK213BeA6IfzX5MDZ',$,'100PFC',$,$,$,$,$,$,$); -#445=IFCMATERIALPROFILESET($,$,(#447),$); -#446=IFCRELASSOCIATESMATERIAL('1GpB_89RL1$8yvCP37m1HW',$,$,$,(#444),#445); -#447=IFCMATERIALPROFILE($,$,#17,#435,$,$); -#448=IFCUSHAPEPROFILEDEF(.AREA.,$,$,75.,40.,3.8,6.1,$,$,$); -#449=IFCBEAMTYPE('3MjFrv8Fb6Lubh2TFGfhTe',$,'75PFC',$,$,$,$,$,$,$); -#450=IFCMATERIALPROFILESET($,$,(#452),$); -#451=IFCRELASSOCIATESMATERIAL('1tRjyc2ZX4af6x09n5ZWNo',$,$,$,(#449),#450); -#452=IFCMATERIALPROFILE($,$,#17,#448,$,$); -#453=IFCMEMBERTYPE('31jnGciVTF2wDNO7UYe$NH',$,'75PFC',$,$,$,$,$,$,$); -#454=IFCMATERIALPROFILESET($,$,(#456),$); -#455=IFCRELASSOCIATESMATERIAL('046zAncEvF$QdaUtnHT$lS',$,$,$,(#453),#454); -#456=IFCMATERIALPROFILE($,$,#17,#448,$,$); -#457=IFCCOLUMNTYPE('060U5_KinB$fkARwRo2OrX',$,'75PFC',$,$,$,$,$,$,$); -#458=IFCMATERIALPROFILESET($,$,(#460),$); -#459=IFCRELASSOCIATESMATERIAL('3BD3CsEdX5BBpsLEk1zgEe',$,$,$,(#457),#458); -#460=IFCMATERIALPROFILE($,$,#17,#448,$,$); -#461=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,26.,$,$,$); -#462=IFCBEAMTYPE('0ywvIKi6z1Gw$29Sp5d7y7',$,'200EA26',$,$,$,$,$,$,$); -#463=IFCMATERIALPROFILESET($,$,(#465),$); -#464=IFCRELASSOCIATESMATERIAL('1L7fxoyAL7tOwllxWXZRF5',$,$,$,(#462),#463); -#465=IFCMATERIALPROFILE($,$,#17,#461,$,$); -#466=IFCMEMBERTYPE('23PtXMd3n6qv8_WIO58drE',$,'200EA26',$,$,$,$,$,$,$); -#467=IFCMATERIALPROFILESET($,$,(#469),$); -#468=IFCRELASSOCIATESMATERIAL('35rBO271vDiAa3hAEjfBZL',$,$,$,(#466),#467); -#469=IFCMATERIALPROFILE($,$,#17,#461,$,$); -#470=IFCCOLUMNTYPE('3rd9z3gGLAJx6RsNpAYFU1',$,'200EA26',$,$,$,$,$,$,$); -#471=IFCMATERIALPROFILESET($,$,(#473),$); -#472=IFCRELASSOCIATESMATERIAL('2zIbEtLTTCbREGZGLIB2In',$,$,$,(#470),#471); -#473=IFCMATERIALPROFILE($,$,#17,#461,$,$); -#474=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,20.,$,$,$); -#475=IFCBEAMTYPE('0vl2S2K_b8XPIUPPt4miGp',$,'200EA20',$,$,$,$,$,$,$); -#476=IFCMATERIALPROFILESET($,$,(#478),$); -#477=IFCRELASSOCIATESMATERIAL('2cZz$CngzFBPaLBes5d7z_',$,$,$,(#475),#476); -#478=IFCMATERIALPROFILE($,$,#17,#474,$,$); -#479=IFCMEMBERTYPE('3zlFILfej3Wu5FRQKlSv_l',$,'200EA20',$,$,$,$,$,$,$); -#480=IFCMATERIALPROFILESET($,$,(#482),$); -#481=IFCRELASSOCIATESMATERIAL('0OhYXO00z2ev2KeMc2NExv',$,$,$,(#479),#480); -#482=IFCMATERIALPROFILE($,$,#17,#474,$,$); -#483=IFCCOLUMNTYPE('2$a64j9F9AaAmDN0H7eC5w',$,'200EA20',$,$,$,$,$,$,$); -#484=IFCMATERIALPROFILESET($,$,(#486),$); -#485=IFCRELASSOCIATESMATERIAL('2w0N56pLL968oUmdFDevE3',$,$,$,(#483),#484); -#486=IFCMATERIALPROFILE($,$,#17,#474,$,$); -#487=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,18.,$,$,$); -#488=IFCBEAMTYPE('2Bcr13wZzF5RV6sYGo8r_V',$,'200EA18',$,$,$,$,$,$,$); -#489=IFCMATERIALPROFILESET($,$,(#491),$); -#490=IFCRELASSOCIATESMATERIAL('1Y4haM5jb4iRdTNBJgmXJU',$,$,$,(#488),#489); -#491=IFCMATERIALPROFILE($,$,#17,#487,$,$); -#492=IFCMEMBERTYPE('1qqsgZygz01gVii5d4yGoC',$,'200EA18',$,$,$,$,$,$,$); -#493=IFCMATERIALPROFILESET($,$,(#495),$); -#494=IFCRELASSOCIATESMATERIAL('3ALtF$TtnFnQeYCc_IuiNb',$,$,$,(#492),#493); -#495=IFCMATERIALPROFILE($,$,#17,#487,$,$); -#496=IFCCOLUMNTYPE('2hANNDAG98r8VGiKibZGHj',$,'200EA18',$,$,$,$,$,$,$); -#497=IFCMATERIALPROFILESET($,$,(#499),$); -#498=IFCRELASSOCIATESMATERIAL('3tEAmDqznDZgnKHJ2RqrpR',$,$,$,(#496),#497); -#499=IFCMATERIALPROFILE($,$,#17,#487,$,$); -#500=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,16.,$,$,$); -#501=IFCBEAMTYPE('0FJS1ce615Sxso08BvXwGc',$,'200EA16',$,$,$,$,$,$,$); -#502=IFCMATERIALPROFILESET($,$,(#504),$); -#503=IFCRELASSOCIATESMATERIAL('2qFeetJdT0MRx8iRNKf74c',$,$,$,(#501),#502); -#504=IFCMATERIALPROFILE($,$,#17,#500,$,$); -#505=IFCMEMBERTYPE('0ZKnbPZKH3SBPylYPFeo89',$,'200EA16',$,$,$,$,$,$,$); -#506=IFCMATERIALPROFILESET($,$,(#508),$); -#507=IFCRELASSOCIATESMATERIAL('0OVIRUe_51fRdxWQNf6er3',$,$,$,(#505),#506); -#508=IFCMATERIALPROFILE($,$,#17,#500,$,$); -#509=IFCCOLUMNTYPE('29DObfxZ92mxUMDUaBJtJo',$,'200EA16',$,$,$,$,$,$,$); -#510=IFCMATERIALPROFILESET($,$,(#512),$); -#511=IFCRELASSOCIATESMATERIAL('282NycOIjBL8CQZfiSM032',$,$,$,(#509),#510); -#512=IFCMATERIALPROFILE($,$,#17,#500,$,$); -#513=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,13.,$,$,$); -#514=IFCBEAMTYPE('2K78qLMMzFmec6kPw0yQGn',$,'200EA13',$,$,$,$,$,$,$); -#515=IFCMATERIALPROFILESET($,$,(#517),$); -#516=IFCRELASSOCIATESMATERIAL('0IVUmp8wX8bxzzksMdED_a',$,$,$,(#514),#515); -#517=IFCMATERIALPROFILE($,$,#17,#513,$,$); -#518=IFCMEMBERTYPE('1r8q0K3wL0Xuvsfs5LMjVE',$,'200EA13',$,$,$,$,$,$,$); -#519=IFCMATERIALPROFILESET($,$,(#521),$); -#520=IFCRELASSOCIATESMATERIAL('1RY3frHFr2fh91uzGBENcl',$,$,$,(#518),#519); -#521=IFCMATERIALPROFILE($,$,#17,#513,$,$); -#522=IFCCOLUMNTYPE('0s2FJNTRnC8O0V6rPh8myy',$,'200EA13',$,$,$,$,$,$,$); -#523=IFCMATERIALPROFILESET($,$,(#525),$); -#524=IFCRELASSOCIATESMATERIAL('1ibUmLWVn0leCVUArn1uaO',$,$,$,(#522),#523); -#525=IFCMATERIALPROFILE($,$,#17,#513,$,$); -#526=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,19.,$,$,$); -#527=IFCBEAMTYPE('0q2sJfs6H4egmHY540_PaD',$,'150EA19',$,$,$,$,$,$,$); -#528=IFCMATERIALPROFILESET($,$,(#530),$); -#529=IFCRELASSOCIATESMATERIAL('1ZcJRc_sLBzfTPobz9BArr',$,$,$,(#527),#528); -#530=IFCMATERIALPROFILE($,$,#17,#526,$,$); -#531=IFCMEMBERTYPE('0edyi0W6j3uvAFmbKbo8iN',$,'150EA19',$,$,$,$,$,$,$); -#532=IFCMATERIALPROFILESET($,$,(#534),$); -#533=IFCRELASSOCIATESMATERIAL('0M1wJ16wDCQvn2Sb2EQ435',$,$,$,(#531),#532); -#534=IFCMATERIALPROFILE($,$,#17,#526,$,$); -#535=IFCCOLUMNTYPE('1E1m3yBgn1Teteu8cdUtvb',$,'150EA19',$,$,$,$,$,$,$); -#536=IFCMATERIALPROFILESET($,$,(#538),$); -#537=IFCRELASSOCIATESMATERIAL('0whyvyQBjC8eAOjIEVAlaK',$,$,$,(#535),#536); -#538=IFCMATERIALPROFILE($,$,#17,#526,$,$); -#539=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,15.8,$,$,$); -#540=IFCBEAMTYPE('3fGsi6NUjCERj5bKcvg_PO',$,'150EA16',$,$,$,$,$,$,$); -#541=IFCMATERIALPROFILESET($,$,(#543),$); -#542=IFCRELASSOCIATESMATERIAL('0ROSagedv7bArJTBsApWx5',$,$,$,(#540),#541); -#543=IFCMATERIALPROFILE($,$,#17,#539,$,$); -#544=IFCMEMBERTYPE('1zJEZnWEH6rxZXZZ7mzG16',$,'150EA16',$,$,$,$,$,$,$); -#545=IFCMATERIALPROFILESET($,$,(#547),$); -#546=IFCRELASSOCIATESMATERIAL('2u6vs8Be5EfvY67HQFztDj',$,$,$,(#544),#545); -#547=IFCMATERIALPROFILE($,$,#17,#539,$,$); -#548=IFCCOLUMNTYPE('0tb5_Xdv5CaQTOgmErsOB$',$,'150EA16',$,$,$,$,$,$,$); -#549=IFCMATERIALPROFILESET($,$,(#551),$); -#550=IFCRELASSOCIATESMATERIAL('0Jex1HCuv3bPzTFQ0nBTPr',$,$,$,(#548),#549); -#551=IFCMATERIALPROFILE($,$,#17,#539,$,$); -#552=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,12.,$,$,$); -#553=IFCBEAMTYPE('0Gydwzy7H5KhcV$wrz56du',$,'150EA12',$,$,$,$,$,$,$); -#554=IFCMATERIALPROFILESET($,$,(#556),$); -#555=IFCRELASSOCIATESMATERIAL('2NtKPCjCT6Tgz8QXNfnMc3',$,$,$,(#553),#554); -#556=IFCMATERIALPROFILE($,$,#17,#552,$,$); -#557=IFCMEMBERTYPE('0TDXEzgM15bBgocRy_ioJr',$,'150EA12',$,$,$,$,$,$,$); -#558=IFCMATERIALPROFILESET($,$,(#560),$); -#559=IFCRELASSOCIATESMATERIAL('2$1V2LgWj14u89s1ie8_Pk',$,$,$,(#557),#558); -#560=IFCMATERIALPROFILE($,$,#17,#552,$,$); -#561=IFCCOLUMNTYPE('0SgU6jpKTBgR3Tif0zFRf7',$,'150EA12',$,$,$,$,$,$,$); -#562=IFCMATERIALPROFILESET($,$,(#564),$); -#563=IFCRELASSOCIATESMATERIAL('0A35BTr4jEdvVCjTgPyheR',$,$,$,(#561),#562); -#564=IFCMATERIALPROFILE($,$,#17,#552,$,$); -#565=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,9.5,$,$,$); -#566=IFCBEAMTYPE('1qPIdUMOn6I8SqFzhqnyqq',$,'150EA10',$,$,$,$,$,$,$); -#567=IFCMATERIALPROFILESET($,$,(#569),$); -#568=IFCRELASSOCIATESMATERIAL('32MnZJWpjAkg_NCSNj77jK',$,$,$,(#566),#567); -#569=IFCMATERIALPROFILE($,$,#17,#565,$,$); -#570=IFCMEMBERTYPE('2H2yr$EsP8wPw_zQkkydg4',$,'150EA10',$,$,$,$,$,$,$); -#571=IFCMATERIALPROFILESET($,$,(#573),$); -#572=IFCRELASSOCIATESMATERIAL('0Iog_Tj_1DIvYmWYQk1R01',$,$,$,(#570),#571); -#573=IFCMATERIALPROFILE($,$,#17,#565,$,$); -#574=IFCCOLUMNTYPE('32zvvhU2zEKA0DHkTQRHZC',$,'150EA10',$,$,$,$,$,$,$); -#575=IFCMATERIALPROFILESET($,$,(#577),$); -#576=IFCRELASSOCIATESMATERIAL('2MbYJWYs16eQNs3Nvp2BXF',$,$,$,(#574),#575); -#577=IFCMATERIALPROFILE($,$,#17,#565,$,$); -#578=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,$,15.8,$,$,$); -#579=IFCBEAMTYPE('3VdlbhfL1FF8a2n_2LEc4a',$,'125EA16',$,$,$,$,$,$,$); -#580=IFCMATERIALPROFILESET($,$,(#582),$); -#581=IFCRELASSOCIATESMATERIAL('1m4cN3r$bFRuJUCCPB3R02',$,$,$,(#579),#580); -#582=IFCMATERIALPROFILE($,$,#17,#578,$,$); -#583=IFCMEMBERTYPE('3Cti5uNEX8NP1rK3M_BCfZ',$,'125EA16',$,$,$,$,$,$,$); -#584=IFCMATERIALPROFILESET($,$,(#586),$); -#585=IFCRELASSOCIATESMATERIAL('2DbDPiIbX6hO9m1OaqJjeo',$,$,$,(#583),#584); -#586=IFCMATERIALPROFILE($,$,#17,#578,$,$); -#587=IFCCOLUMNTYPE('3xV1sThIbDrRoOdny8o$g8',$,'125EA16',$,$,$,$,$,$,$); -#588=IFCMATERIALPROFILESET($,$,(#590),$); -#589=IFCRELASSOCIATESMATERIAL('2aUtL39Cf9Lv$_gjf1TrPG',$,$,$,(#587),#588); -#590=IFCMATERIALPROFILE($,$,#17,#578,$,$); -#591=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,$,12.,$,$,$); -#592=IFCBEAMTYPE('3fQMY2HrTBsOqV3FjGZTSi',$,'125EA12',$,$,$,$,$,$,$); -#593=IFCMATERIALPROFILESET($,$,(#595),$); -#594=IFCRELASSOCIATESMATERIAL('1S_45cakHFPvC3mbt1IWsT',$,$,$,(#592),#593); -#595=IFCMATERIALPROFILE($,$,#17,#591,$,$); -#596=IFCMEMBERTYPE('3u_mqvSXvF2grI2vizANyI',$,'125EA12',$,$,$,$,$,$,$); -#597=IFCMATERIALPROFILESET($,$,(#599),$); -#598=IFCRELASSOCIATESMATERIAL('3nUkXEN51CHwkfycwBp3Ta',$,$,$,(#596),#597); -#599=IFCMATERIALPROFILE($,$,#17,#591,$,$); -#600=IFCCOLUMNTYPE('0jbXQ94$PEQx$EdAyUk22u',$,'125EA12',$,$,$,$,$,$,$); -#601=IFCMATERIALPROFILESET($,$,(#603),$); -#602=IFCRELASSOCIATESMATERIAL('1LiXGN8aP8wuxoH$PwpT60',$,$,$,(#600),#601); -#603=IFCMATERIALPROFILE($,$,#17,#591,$,$); -#604=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,$,9.5,$,$,$); -#605=IFCBEAMTYPE('0rCW0mELz1yhgXYPGLCbiC',$,'125EA10',$,$,$,$,$,$,$); -#606=IFCMATERIALPROFILESET($,$,(#608),$); -#607=IFCRELASSOCIATESMATERIAL('0Sdg7EAi994xkKGtDBRjEW',$,$,$,(#605),#606); -#608=IFCMATERIALPROFILE($,$,#17,#604,$,$); -#609=IFCMEMBERTYPE('1Oa3yxHT5CVfDCjooT_ay_',$,'125EA10',$,$,$,$,$,$,$); -#610=IFCMATERIALPROFILESET($,$,(#612),$); -#611=IFCRELASSOCIATESMATERIAL('3let1sAxzBI9Dj4_cjzVke',$,$,$,(#609),#610); -#612=IFCMATERIALPROFILE($,$,#17,#604,$,$); -#613=IFCCOLUMNTYPE('05tEnREaj6Hhkna8SpZR3a',$,'125EA10',$,$,$,$,$,$,$); -#614=IFCMATERIALPROFILESET($,$,(#616),$); -#615=IFCRELASSOCIATESMATERIAL('2ZJtI9vHDFU9a43nEdu$sX',$,$,$,(#613),#614); -#616=IFCMATERIALPROFILE($,$,#17,#604,$,$); -#617=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,$,7.8,$,$,$); -#618=IFCBEAMTYPE('2oF48myt9C5OEhZBcruzrB',$,'125EA8',$,$,$,$,$,$,$); -#619=IFCMATERIALPROFILESET($,$,(#621),$); -#620=IFCRELASSOCIATESMATERIAL('0Yhqcbn09EOug1n4meRO72',$,$,$,(#618),#619); -#621=IFCMATERIALPROFILE($,$,#17,#617,$,$); -#622=IFCMEMBERTYPE('13mIlWJHH5gBJD$bb6K8IQ',$,'125EA8',$,$,$,$,$,$,$); -#623=IFCMATERIALPROFILESET($,$,(#625),$); -#624=IFCRELASSOCIATESMATERIAL('2TA2wWbYn5_w4wCkWnqxhQ',$,$,$,(#622),#623); -#625=IFCMATERIALPROFILE($,$,#17,#617,$,$); -#626=IFCCOLUMNTYPE('1oSMmihvLFePrPY3eqhA7h',$,'125EA8',$,$,$,$,$,$,$); -#627=IFCMATERIALPROFILESET($,$,(#629),$); -#628=IFCRELASSOCIATESMATERIAL('06ByUWmTj56QcLpF5BRt_m',$,$,$,(#626),#627); -#629=IFCMATERIALPROFILE($,$,#17,#617,$,$); -#630=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,$,12.,$,$,$); -#631=IFCBEAMTYPE('3FRbcGxlDBlutUoHYjGq5D',$,'100EA12',$,$,$,$,$,$,$); -#632=IFCMATERIALPROFILESET($,$,(#634),$); -#633=IFCRELASSOCIATESMATERIAL('0VwfLF0e1Dd9oideokN0nO',$,$,$,(#631),#632); -#634=IFCMATERIALPROFILE($,$,#17,#630,$,$); -#635=IFCMEMBERTYPE('2WHXpn0x54KxfvRaCdjsko',$,'100EA12',$,$,$,$,$,$,$); -#636=IFCMATERIALPROFILESET($,$,(#638),$); -#637=IFCRELASSOCIATESMATERIAL('2P4lB2por67hVitOjhBrAY',$,$,$,(#635),#636); -#638=IFCMATERIALPROFILE($,$,#17,#630,$,$); -#639=IFCCOLUMNTYPE('0FJTTb30b9wuVt1Nqysefp',$,'100EA12',$,$,$,$,$,$,$); -#640=IFCMATERIALPROFILESET($,$,(#642),$); -#641=IFCRELASSOCIATESMATERIAL('0MYujxtOv0r8ylJxSRO_MZ',$,$,$,(#639),#640); -#642=IFCMATERIALPROFILE($,$,#17,#630,$,$); -#643=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,$,9.5,$,$,$); -#644=IFCBEAMTYPE('1PNDVjnJT2_AYiIj2lY61D',$,'100EA10',$,$,$,$,$,$,$); -#645=IFCMATERIALPROFILESET($,$,(#647),$); -#646=IFCRELASSOCIATESMATERIAL('3ruxOJVlr6VeFaZ2zUru5k',$,$,$,(#644),#645); -#647=IFCMATERIALPROFILE($,$,#17,#643,$,$); -#648=IFCMEMBERTYPE('2VdleMhh1AHgeiiHpv$ZPw',$,'100EA10',$,$,$,$,$,$,$); -#649=IFCMATERIALPROFILESET($,$,(#651),$); -#650=IFCRELASSOCIATESMATERIAL('2U07OuDPbExhL$zKgkA_Dd',$,$,$,(#648),#649); -#651=IFCMATERIALPROFILE($,$,#17,#643,$,$); -#652=IFCCOLUMNTYPE('0i5KVbUKP1ARB7_KC8WBy4',$,'100EA10',$,$,$,$,$,$,$); -#653=IFCMATERIALPROFILESET($,$,(#655),$); -#654=IFCRELASSOCIATESMATERIAL('2ab2InrpT8EwGLXxKLRYI2',$,$,$,(#652),#653); -#655=IFCMATERIALPROFILE($,$,#17,#643,$,$); -#656=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,$,7.8,$,$,$); -#657=IFCBEAMTYPE('3BZiSBdMX7JgKpLm1IrJbU',$,'100EA8',$,$,$,$,$,$,$); -#658=IFCMATERIALPROFILESET($,$,(#660),$); -#659=IFCRELASSOCIATESMATERIAL('1_cH20qmT7HAQS1$xf68jQ',$,$,$,(#657),#658); -#660=IFCMATERIALPROFILE($,$,#17,#656,$,$); -#661=IFCMEMBERTYPE('3J12WLa1z8neVRvATH4CjT',$,'100EA8',$,$,$,$,$,$,$); -#662=IFCMATERIALPROFILESET($,$,(#664),$); -#663=IFCRELASSOCIATESMATERIAL('2A01eB8IT2zxj23Xt42nSx',$,$,$,(#661),#662); -#664=IFCMATERIALPROFILE($,$,#17,#656,$,$); -#665=IFCCOLUMNTYPE('1RO694LiH8ExfTK8qmeIsO',$,'100EA8',$,$,$,$,$,$,$); -#666=IFCMATERIALPROFILESET($,$,(#668),$); -#667=IFCRELASSOCIATESMATERIAL('1BLBFOVX9EGgb0_UNcr1hg',$,$,$,(#665),#666); -#668=IFCMATERIALPROFILE($,$,#17,#656,$,$); -#669=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,$,6.,$,$,$); -#670=IFCBEAMTYPE('0z1egnK4r8Lxmx2q7hVFfi',$,'100EA6',$,$,$,$,$,$,$); -#671=IFCMATERIALPROFILESET($,$,(#673),$); -#672=IFCRELASSOCIATESMATERIAL('3$_q8aFk5Auu6Sc2MufR9o',$,$,$,(#670),#671); -#673=IFCMATERIALPROFILE($,$,#17,#669,$,$); -#674=IFCMEMBERTYPE('2M7Ytl9mTBnfaIuPGYtuRw',$,'100EA6',$,$,$,$,$,$,$); -#675=IFCMATERIALPROFILESET($,$,(#677),$); -#676=IFCRELASSOCIATESMATERIAL('1eKdoeiaj6VgOEhfSy9tpb',$,$,$,(#674),#675); -#677=IFCMATERIALPROFILE($,$,#17,#669,$,$); -#678=IFCCOLUMNTYPE('12Ga2kXWX1Zx4kO7YNuAMw',$,'100EA6',$,$,$,$,$,$,$); -#679=IFCMATERIALPROFILESET($,$,(#681),$); -#680=IFCRELASSOCIATESMATERIAL('0qjV2P8Hz6PPKjaeZ_EUOJ',$,$,$,(#678),#679); -#681=IFCMATERIALPROFILE($,$,#17,#669,$,$); -#682=IFCLSHAPEPROFILEDEF(.AREA.,$,$,90.,$,9.5,$,$,$); -#683=IFCBEAMTYPE('1_jWiuhMHCYxzjNZwy_gAa',$,'90EA10',$,$,$,$,$,$,$); -#684=IFCMATERIALPROFILESET($,$,(#686),$); -#685=IFCRELASSOCIATESMATERIAL('2Gv1ZNkyL2IAQeBkTCy3Ou',$,$,$,(#683),#684); -#686=IFCMATERIALPROFILE($,$,#17,#682,$,$); -#687=IFCMEMBERTYPE('2Nsa6sJRP219KhEXp0rZpb',$,'90EA10',$,$,$,$,$,$,$); -#688=IFCMATERIALPROFILESET($,$,(#690),$); -#689=IFCRELASSOCIATESMATERIAL('0YjwpRRgvFyewOxc0iB6GB',$,$,$,(#687),#688); -#690=IFCMATERIALPROFILE($,$,#17,#682,$,$); -#691=IFCCOLUMNTYPE('3xoyPy_I9FfBnc1g59k0Iu',$,'90EA10',$,$,$,$,$,$,$); -#692=IFCMATERIALPROFILESET($,$,(#694),$); -#693=IFCRELASSOCIATESMATERIAL('2jNbkM0GLCCu$F3mRVBdgR',$,$,$,(#691),#692); -#694=IFCMATERIALPROFILE($,$,#17,#682,$,$); -#695=IFCLSHAPEPROFILEDEF(.AREA.,$,$,90.,$,7.8,$,$,$); -#696=IFCBEAMTYPE('3QYzt1pV9EMeLRF$ulBkLp',$,'90EA8',$,$,$,$,$,$,$); -#697=IFCMATERIALPROFILESET($,$,(#699),$); -#698=IFCRELASSOCIATESMATERIAL('2UIofYla53EAoC595LMdbz',$,$,$,(#696),#697); -#699=IFCMATERIALPROFILE($,$,#17,#695,$,$); -#700=IFCMEMBERTYPE('2331lUKFz4$B7p$wLQsYFW',$,'90EA8',$,$,$,$,$,$,$); -#701=IFCMATERIALPROFILESET($,$,(#703),$); -#702=IFCRELASSOCIATESMATERIAL('096YbzTyH6wwrBKYw82HFj',$,$,$,(#700),#701); -#703=IFCMATERIALPROFILE($,$,#17,#695,$,$); -#704=IFCCOLUMNTYPE('2xhJcpTJrEtu7y7tjV2SVM',$,'90EA8',$,$,$,$,$,$,$); -#705=IFCMATERIALPROFILESET($,$,(#707),$); -#706=IFCRELASSOCIATESMATERIAL('1oq6PGPrT5fQUjz4n6FtUb',$,$,$,(#704),#705); -#707=IFCMATERIALPROFILE($,$,#17,#695,$,$); -#708=IFCLSHAPEPROFILEDEF(.AREA.,$,$,90.,$,6.,$,$,$); -#709=IFCBEAMTYPE('3FdiiOtnL5HAn2z0wzJlBE',$,'90EA6',$,$,$,$,$,$,$); -#710=IFCMATERIALPROFILESET($,$,(#712),$); -#711=IFCRELASSOCIATESMATERIAL('19isoGLZv7O9aAgnm6YsRk',$,$,$,(#709),#710); -#712=IFCMATERIALPROFILE($,$,#17,#708,$,$); -#713=IFCMEMBERTYPE('3mAZ2rzQn1cAFYIQ1K1qOU',$,'90EA6',$,$,$,$,$,$,$); -#714=IFCMATERIALPROFILESET($,$,(#716),$); -#715=IFCRELASSOCIATESMATERIAL('2eZyVRvxz2_uXm3cnlgVG2',$,$,$,(#713),#714); -#716=IFCMATERIALPROFILE($,$,#17,#708,$,$); -#717=IFCCOLUMNTYPE('05GemEk1n4ffujalapmN07',$,'90EA6',$,$,$,$,$,$,$); -#718=IFCMATERIALPROFILESET($,$,(#720),$); -#719=IFCRELASSOCIATESMATERIAL('1BNIe17RjDI8bZfDh5_s3t',$,$,$,(#717),#718); -#720=IFCMATERIALPROFILE($,$,#17,#708,$,$); -#721=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,$,9.5,$,$,$); -#722=IFCBEAMTYPE('32t7fDgvXEpwYz24ZDxx6O',$,'75EA10',$,$,$,$,$,$,$); -#723=IFCMATERIALPROFILESET($,$,(#725),$); -#724=IFCRELASSOCIATESMATERIAL('3wyna0tdf3o88Fw39EixhK',$,$,$,(#722),#723); -#725=IFCMATERIALPROFILE($,$,#17,#721,$,$); -#726=IFCMEMBERTYPE('146ghAmjj7KPvsLERL0xoj',$,'75EA10',$,$,$,$,$,$,$); -#727=IFCMATERIALPROFILESET($,$,(#729),$); -#728=IFCRELASSOCIATESMATERIAL('29yUDr9J125AbDW6fcYJln',$,$,$,(#726),#727); -#729=IFCMATERIALPROFILE($,$,#17,#721,$,$); -#730=IFCCOLUMNTYPE('1Fuc8rSh17YQ2s8qU4okkm',$,'75EA10',$,$,$,$,$,$,$); -#731=IFCMATERIALPROFILESET($,$,(#733),$); -#732=IFCRELASSOCIATESMATERIAL('2N5XepIEP2DeRAyhVqDL7Z',$,$,$,(#730),#731); -#733=IFCMATERIALPROFILE($,$,#17,#721,$,$); -#734=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,$,7.8,$,$,$); -#735=IFCBEAMTYPE('2xBdi0gYHFJxYdMy9bJWyL',$,'75EA8',$,$,$,$,$,$,$); -#736=IFCMATERIALPROFILESET($,$,(#738),$); -#737=IFCRELASSOCIATESMATERIAL('3$TZ0cEpPAzP_COIdQph_o',$,$,$,(#735),#736); -#738=IFCMATERIALPROFILE($,$,#17,#734,$,$); -#739=IFCMEMBERTYPE('3PhKthQ9v7CwesNID5pW4m',$,'75EA8',$,$,$,$,$,$,$); -#740=IFCMATERIALPROFILESET($,$,(#742),$); -#741=IFCRELASSOCIATESMATERIAL('2A7V1QAzHE0QSZoXkFF6lo',$,$,$,(#739),#740); -#742=IFCMATERIALPROFILE($,$,#17,#734,$,$); -#743=IFCCOLUMNTYPE('0L1a07edf1j8GU6O_XxK8P',$,'75EA8',$,$,$,$,$,$,$); -#744=IFCMATERIALPROFILESET($,$,(#746),$); -#745=IFCRELASSOCIATESMATERIAL('2SEYJ37mn83OHUM6I3yQie',$,$,$,(#743),#744); -#746=IFCMATERIALPROFILE($,$,#17,#734,$,$); -#747=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,$,6.,$,$,$); -#748=IFCBEAMTYPE('3coZW5$UH19OSXFhOBlRu8',$,'75EA6',$,$,$,$,$,$,$); -#749=IFCMATERIALPROFILESET($,$,(#751),$); -#750=IFCRELASSOCIATESMATERIAL('0lTdrHXOXCShiSd_JiuVVR',$,$,$,(#748),#749); -#751=IFCMATERIALPROFILE($,$,#17,#747,$,$); -#752=IFCMEMBERTYPE('3ENTH_E7bClQjRYiQb1CBF',$,'75EA6',$,$,$,$,$,$,$); -#753=IFCMATERIALPROFILESET($,$,(#755),$); -#754=IFCRELASSOCIATESMATERIAL('0LKxMtM8X6l8r9NLi3ZJZ0',$,$,$,(#752),#753); -#755=IFCMATERIALPROFILE($,$,#17,#747,$,$); -#756=IFCCOLUMNTYPE('23e9aNYnf1yg4ChAZZGGdQ',$,'75EA6',$,$,$,$,$,$,$); -#757=IFCMATERIALPROFILESET($,$,(#759),$); -#758=IFCRELASSOCIATESMATERIAL('0Ej$waTEzBXuC1OmzQ$kAH',$,$,$,(#756),#757); -#759=IFCMATERIALPROFILE($,$,#17,#747,$,$); -#760=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,$,4.6,$,$,$); -#761=IFCBEAMTYPE('0DR3NmiqL1ihcNfbS0agF9',$,'75EA5',$,$,$,$,$,$,$); -#762=IFCMATERIALPROFILESET($,$,(#764),$); -#763=IFCRELASSOCIATESMATERIAL('0Me1g6Zq12cPXGdThRWItK',$,$,$,(#761),#762); -#764=IFCMATERIALPROFILE($,$,#17,#760,$,$); -#765=IFCMEMBERTYPE('31ThgspmHEEO1fVWvOtCDG',$,'75EA5',$,$,$,$,$,$,$); -#766=IFCMATERIALPROFILESET($,$,(#768),$); -#767=IFCRELASSOCIATESMATERIAL('0tNmlhsoHErvNH9yxAmsOh',$,$,$,(#765),#766); -#768=IFCMATERIALPROFILE($,$,#17,#760,$,$); -#769=IFCCOLUMNTYPE('2xHZHwLEb1Dgcu_qepjrMF',$,'75EA5',$,$,$,$,$,$,$); -#770=IFCMATERIALPROFILESET($,$,(#772),$); -#771=IFCRELASSOCIATESMATERIAL('30sjzT93959O0RBM_ND0lt',$,$,$,(#769),#770); -#772=IFCMATERIALPROFILE($,$,#17,#760,$,$); -#773=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,$,9.5,$,$,$); -#774=IFCBEAMTYPE('1eDcw5NKb5yeEwlJo1$5vz',$,'65EA10',$,$,$,$,$,$,$); -#775=IFCMATERIALPROFILESET($,$,(#777),$); -#776=IFCRELASSOCIATESMATERIAL('286TFOCB193hIFz68xmYDg',$,$,$,(#774),#775); -#777=IFCMATERIALPROFILE($,$,#17,#773,$,$); -#778=IFCMEMBERTYPE('0aQXJ67Ef3oxtSzlubu4p1',$,'65EA10',$,$,$,$,$,$,$); -#779=IFCMATERIALPROFILESET($,$,(#781),$); -#780=IFCRELASSOCIATESMATERIAL('0zx0sozunFJvV_qJCFllWb',$,$,$,(#778),#779); -#781=IFCMATERIALPROFILE($,$,#17,#773,$,$); -#782=IFCCOLUMNTYPE('0RqSm1I8D1KfkPiUz_6tKb',$,'65EA10',$,$,$,$,$,$,$); -#783=IFCMATERIALPROFILESET($,$,(#785),$); -#784=IFCRELASSOCIATESMATERIAL('1bAsY8Bsz4xhkm$QBG2t$M',$,$,$,(#782),#783); -#785=IFCMATERIALPROFILE($,$,#17,#773,$,$); -#786=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,$,7.8,$,$,$); -#787=IFCBEAMTYPE('1g74ST84r3Du3aG9K7WyTr',$,'65EA8',$,$,$,$,$,$,$); -#788=IFCMATERIALPROFILESET($,$,(#790),$); -#789=IFCRELASSOCIATESMATERIAL('20$OXT6x92Px3La9yVLDkA',$,$,$,(#787),#788); -#790=IFCMATERIALPROFILE($,$,#17,#786,$,$); -#791=IFCMEMBERTYPE('0UmsZrHuP2lgoeADdnxFdr',$,'65EA8',$,$,$,$,$,$,$); -#792=IFCMATERIALPROFILESET($,$,(#794),$); -#793=IFCRELASSOCIATESMATERIAL('3TZFukvzb5SgxFGh1_PYj8',$,$,$,(#791),#792); -#794=IFCMATERIALPROFILE($,$,#17,#786,$,$); -#795=IFCCOLUMNTYPE('2vY9ItcxH27gVPpOBfeKw$',$,'65EA8',$,$,$,$,$,$,$); -#796=IFCMATERIALPROFILESET($,$,(#798),$); -#797=IFCRELASSOCIATESMATERIAL('0dSPLVcebEZBrfmqrz3s1B',$,$,$,(#795),#796); -#798=IFCMATERIALPROFILE($,$,#17,#786,$,$); -#799=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,$,6.,$,$,$); -#800=IFCBEAMTYPE('3CYusAsJn3rwei3SHskRTW',$,'65EA6',$,$,$,$,$,$,$); -#801=IFCMATERIALPROFILESET($,$,(#803),$); -#802=IFCRELASSOCIATESMATERIAL('3tW5YrMwf7zgDr77Xv3wva',$,$,$,(#800),#801); -#803=IFCMATERIALPROFILE($,$,#17,#799,$,$); -#804=IFCMEMBERTYPE('1O1A6nwpnEExi1lRddG8dd',$,'65EA6',$,$,$,$,$,$,$); -#805=IFCMATERIALPROFILESET($,$,(#807),$); -#806=IFCRELASSOCIATESMATERIAL('0eZXJaoGrCU9bq5Qmv_N$v',$,$,$,(#804),#805); -#807=IFCMATERIALPROFILE($,$,#17,#799,$,$); -#808=IFCCOLUMNTYPE('1dhy175Sr8TA_xjvFTCAuq',$,'65EA6',$,$,$,$,$,$,$); -#809=IFCMATERIALPROFILESET($,$,(#811),$); -#810=IFCRELASSOCIATESMATERIAL('3lx$_Fvkj0$RJyLoQ$4jzm',$,$,$,(#808),#809); -#811=IFCMATERIALPROFILE($,$,#17,#799,$,$); -#812=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,$,4.6,$,$,$); -#813=IFCBEAMTYPE('3z_6VjW9DDqvbVrJHE$Vqx',$,'65EA5',$,$,$,$,$,$,$); -#814=IFCMATERIALPROFILESET($,$,(#816),$); -#815=IFCRELASSOCIATESMATERIAL('0L4TnHVO18LfpoDKL$xMhR',$,$,$,(#813),#814); -#816=IFCMATERIALPROFILE($,$,#17,#812,$,$); -#817=IFCMEMBERTYPE('2b_KP0nBn0EB6dDyZ0dqcO',$,'65EA5',$,$,$,$,$,$,$); -#818=IFCMATERIALPROFILESET($,$,(#820),$); -#819=IFCRELASSOCIATESMATERIAL('1QYew9xxnAfP8ExG4oIPU2',$,$,$,(#817),#818); -#820=IFCMATERIALPROFILE($,$,#17,#812,$,$); -#821=IFCCOLUMNTYPE('01UU_T0dr6kADGafCV4D4_',$,'65EA5',$,$,$,$,$,$,$); -#822=IFCMATERIALPROFILESET($,$,(#824),$); -#823=IFCRELASSOCIATESMATERIAL('1LtDwIYn5EAxd8Dz$_CaXd',$,$,$,(#821),#822); -#824=IFCMATERIALPROFILE($,$,#17,#812,$,$); -#825=IFCLSHAPEPROFILEDEF(.AREA.,$,$,55.,$,6.,$,$,$); -#826=IFCBEAMTYPE('0aSRwEbiL84xGqO5ZswM8a',$,'55EA6',$,$,$,$,$,$,$); -#827=IFCMATERIALPROFILESET($,$,(#829),$); -#828=IFCRELASSOCIATESMATERIAL('1rEY34up909u972epnk2fg',$,$,$,(#826),#827); -#829=IFCMATERIALPROFILE($,$,#17,#825,$,$); -#830=IFCMEMBERTYPE('375HDj$$P0puDM_mVhL6zn',$,'55EA6',$,$,$,$,$,$,$); -#831=IFCMATERIALPROFILESET($,$,(#833),$); -#832=IFCRELASSOCIATESMATERIAL('2wnZtlYBj0pw$eyo_XQh7N',$,$,$,(#830),#831); -#833=IFCMATERIALPROFILE($,$,#17,#825,$,$); -#834=IFCCOLUMNTYPE('0enbmuDjvEMumSV6g84Osf',$,'55EA6',$,$,$,$,$,$,$); -#835=IFCMATERIALPROFILESET($,$,(#837),$); -#836=IFCRELASSOCIATESMATERIAL('0oAzF5ZrvEIQfFLSlWOo9w',$,$,$,(#834),#835); -#837=IFCMATERIALPROFILE($,$,#17,#825,$,$); -#838=IFCLSHAPEPROFILEDEF(.AREA.,$,$,55.,$,4.6,$,$,$); -#839=IFCBEAMTYPE('3rB4q$uDX4RR55wSUR6DAI',$,'55EA5',$,$,$,$,$,$,$); -#840=IFCMATERIALPROFILESET($,$,(#842),$); -#841=IFCRELASSOCIATESMATERIAL('01AFs7$b96ufDxXkr_W$FH',$,$,$,(#839),#840); -#842=IFCMATERIALPROFILE($,$,#17,#838,$,$); -#843=IFCMEMBERTYPE('3Hsv_$g9jEFPdgyu0p5lW$',$,'55EA5',$,$,$,$,$,$,$); -#844=IFCMATERIALPROFILESET($,$,(#846),$); -#845=IFCRELASSOCIATESMATERIAL('3IDuPq6SjEJxwhVh6Fq18d',$,$,$,(#843),#844); -#846=IFCMATERIALPROFILE($,$,#17,#838,$,$); -#847=IFCCOLUMNTYPE('0IbMfHXgjDzfbZMxIU$1oI',$,'55EA5',$,$,$,$,$,$,$); -#848=IFCMATERIALPROFILESET($,$,(#850),$); -#849=IFCRELASSOCIATESMATERIAL('2AQjnEfej83Av8Zz6WAhBC',$,$,$,(#847),#848); -#850=IFCMATERIALPROFILE($,$,#17,#838,$,$); -#851=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,$,7.8,$,$,$); -#852=IFCBEAMTYPE('2Mybos9nbFRvpW9MXoUoNA',$,'50EA8',$,$,$,$,$,$,$); -#853=IFCMATERIALPROFILESET($,$,(#855),$); -#854=IFCRELASSOCIATESMATERIAL('1O4f7T35D3Xeg67qMAth4e',$,$,$,(#852),#853); -#855=IFCMATERIALPROFILE($,$,#17,#851,$,$); -#856=IFCMEMBERTYPE('2r1j6LSR159fe7e6AoRzvR',$,'50EA8',$,$,$,$,$,$,$); -#857=IFCMATERIALPROFILESET($,$,(#859),$); -#858=IFCRELASSOCIATESMATERIAL('3A_3IufWDEVfnNEdeJC$5A',$,$,$,(#856),#857); -#859=IFCMATERIALPROFILE($,$,#17,#851,$,$); -#860=IFCCOLUMNTYPE('1lgEol40PErwAvcUitM9WH',$,'50EA8',$,$,$,$,$,$,$); -#861=IFCMATERIALPROFILESET($,$,(#863),$); -#862=IFCRELASSOCIATESMATERIAL('360C2Ki7L9phTGIyPZAY0F',$,$,$,(#860),#861); -#863=IFCMATERIALPROFILE($,$,#17,#851,$,$); -#864=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,$,6.,$,$,$); -#865=IFCBEAMTYPE('16z$v3UUXA8hAfYtZ4p$SN',$,'50EA6',$,$,$,$,$,$,$); -#866=IFCMATERIALPROFILESET($,$,(#868),$); -#867=IFCRELASSOCIATESMATERIAL('3gZagCPq59qxRiYD2xlWor',$,$,$,(#865),#866); -#868=IFCMATERIALPROFILE($,$,#17,#864,$,$); -#869=IFCMEMBERTYPE('0lCEGaZBv4Kx4Vwpmo_3cB',$,'50EA6',$,$,$,$,$,$,$); -#870=IFCMATERIALPROFILESET($,$,(#872),$); -#871=IFCRELASSOCIATESMATERIAL('3znwXWD5H7FgYVD14mVxoO',$,$,$,(#869),#870); -#872=IFCMATERIALPROFILE($,$,#17,#864,$,$); -#873=IFCCOLUMNTYPE('1YWZoxTcnB49CT3tYrPI4P',$,'50EA6',$,$,$,$,$,$,$); -#874=IFCMATERIALPROFILESET($,$,(#876),$); -#875=IFCRELASSOCIATESMATERIAL('3NLTC7tq94_fp$0WRXTP_L',$,$,$,(#873),#874); -#876=IFCMATERIALPROFILE($,$,#17,#864,$,$); -#877=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,$,4.6,$,$,$); -#878=IFCBEAMTYPE('3TADMZkeD5ThZz2ov3UNXg',$,'50EA5',$,$,$,$,$,$,$); -#879=IFCMATERIALPROFILESET($,$,(#881),$); -#880=IFCRELASSOCIATESMATERIAL('0eRs020ob1Rfa37lN2DQzm',$,$,$,(#878),#879); -#881=IFCMATERIALPROFILE($,$,#17,#877,$,$); -#882=IFCMEMBERTYPE('1szSFD$E96Txe3VJ$xukca',$,'50EA5',$,$,$,$,$,$,$); -#883=IFCMATERIALPROFILESET($,$,(#885),$); -#884=IFCRELASSOCIATESMATERIAL('2IdawXzkjE$PMb3PyyelP0',$,$,$,(#882),#883); -#885=IFCMATERIALPROFILE($,$,#17,#877,$,$); -#886=IFCCOLUMNTYPE('3w_M5v3Dj0NAFAj1l$bKp_',$,'50EA5',$,$,$,$,$,$,$); -#887=IFCMATERIALPROFILESET($,$,(#889),$); -#888=IFCRELASSOCIATESMATERIAL('0HonHo$J19quRwvKa4VVPl',$,$,$,(#886),#887); -#889=IFCMATERIALPROFILE($,$,#17,#877,$,$); -#890=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,$,3.,$,$,$); -#891=IFCBEAMTYPE('38Txrs4ab0Jw1yqAyxFD51',$,'50EA3',$,$,$,$,$,$,$); -#892=IFCMATERIALPROFILESET($,$,(#894),$); -#893=IFCRELASSOCIATESMATERIAL('2SbqwmEWf3TgnY6opUIWvg',$,$,$,(#891),#892); -#894=IFCMATERIALPROFILE($,$,#17,#890,$,$); -#895=IFCMEMBERTYPE('1UBLtR6tb3HADig8gD9PLg',$,'50EA3',$,$,$,$,$,$,$); -#896=IFCMATERIALPROFILESET($,$,(#898),$); -#897=IFCRELASSOCIATESMATERIAL('0tmvcAO8H6Sh4Lbt8H9fkT',$,$,$,(#895),#896); -#898=IFCMATERIALPROFILE($,$,#17,#890,$,$); -#899=IFCCOLUMNTYPE('2Zng6XDgDDd8noEjoQg9iC',$,'50EA3',$,$,$,$,$,$,$); -#900=IFCMATERIALPROFILESET($,$,(#902),$); -#901=IFCRELASSOCIATESMATERIAL('3G1sD3D198svAW$jxGxQRM',$,$,$,(#899),#900); -#902=IFCMATERIALPROFILE($,$,#17,#890,$,$); -#903=IFCLSHAPEPROFILEDEF(.AREA.,$,$,45.,$,6.,$,$,$); -#904=IFCBEAMTYPE('0HQj5Pr69BnQDST8pOtMoK',$,'45EA6',$,$,$,$,$,$,$); -#905=IFCMATERIALPROFILESET($,$,(#907),$); -#906=IFCRELASSOCIATESMATERIAL('05AYsva5bAT87Q6mJ43pSi',$,$,$,(#904),#905); -#907=IFCMATERIALPROFILE($,$,#17,#903,$,$); -#908=IFCMEMBERTYPE('3L3zw4BxXALO03mZi0q4mB',$,'45EA6',$,$,$,$,$,$,$); -#909=IFCMATERIALPROFILESET($,$,(#911),$); -#910=IFCRELASSOCIATESMATERIAL('3_k2YLH5b8Yx1vDJfAiR4P',$,$,$,(#908),#909); -#911=IFCMATERIALPROFILE($,$,#17,#903,$,$); -#912=IFCCOLUMNTYPE('0FRKJ99XHF2gvCyl3m2b0a',$,'45EA6',$,$,$,$,$,$,$); -#913=IFCMATERIALPROFILESET($,$,(#915),$); -#914=IFCRELASSOCIATESMATERIAL('0os389zIT05wzGPoDRzXiK',$,$,$,(#912),#913); -#915=IFCMATERIALPROFILE($,$,#17,#903,$,$); -#916=IFCLSHAPEPROFILEDEF(.AREA.,$,$,45.,$,4.6,$,$,$); -#917=IFCBEAMTYPE('242kSNnxTFGuK0qgm24buU',$,'45EA5',$,$,$,$,$,$,$); -#918=IFCMATERIALPROFILESET($,$,(#920),$); -#919=IFCRELASSOCIATESMATERIAL('3gDryQPLLCwBtTqO6MjCLZ',$,$,$,(#917),#918); -#920=IFCMATERIALPROFILE($,$,#17,#916,$,$); -#921=IFCMEMBERTYPE('3B9Xm22rXB3eegAr5_mkRI',$,'45EA5',$,$,$,$,$,$,$); -#922=IFCMATERIALPROFILESET($,$,(#924),$); -#923=IFCRELASSOCIATESMATERIAL('1lqO68UND1y8zaWxyd6cCr',$,$,$,(#921),#922); -#924=IFCMATERIALPROFILE($,$,#17,#916,$,$); -#925=IFCCOLUMNTYPE('1IN0EXjFD9NOxqtdEKX_fQ',$,'45EA5',$,$,$,$,$,$,$); -#926=IFCMATERIALPROFILESET($,$,(#928),$); -#927=IFCRELASSOCIATESMATERIAL('1vw0HhyIHFyeDKf8XolA6r',$,$,$,(#925),#926); -#928=IFCMATERIALPROFILE($,$,#17,#916,$,$); -#929=IFCLSHAPEPROFILEDEF(.AREA.,$,$,45.,$,3.,$,$,$); -#930=IFCBEAMTYPE('1LBr4OuqXBOhXMgmWXO2LR',$,'45EA3',$,$,$,$,$,$,$); -#931=IFCMATERIALPROFILESET($,$,(#933),$); -#932=IFCRELASSOCIATESMATERIAL('1bUjYhA0vANgtLMUTr_yBf',$,$,$,(#930),#931); -#933=IFCMATERIALPROFILE($,$,#17,#929,$,$); -#934=IFCMEMBERTYPE('3nnMpi7Y1Ed9fTrKXuV3mZ',$,'45EA3',$,$,$,$,$,$,$); -#935=IFCMATERIALPROFILESET($,$,(#937),$); -#936=IFCRELASSOCIATESMATERIAL('3ijaa3XOD8YBWTfgKGFXsB',$,$,$,(#934),#935); -#937=IFCMATERIALPROFILE($,$,#17,#929,$,$); -#938=IFCCOLUMNTYPE('2Xt$ug1_L70Oz$TkeFiRtp',$,'45EA3',$,$,$,$,$,$,$); -#939=IFCMATERIALPROFILESET($,$,(#941),$); -#940=IFCRELASSOCIATESMATERIAL('3QiVseE4DCUQIXhSKSwYq6',$,$,$,(#938),#939); -#941=IFCMATERIALPROFILE($,$,#17,#929,$,$); -#942=IFCLSHAPEPROFILEDEF(.AREA.,$,$,40.,$,6.,$,$,$); -#943=IFCBEAMTYPE('1itua3GYf2MBYbEkGUx2XG',$,'40EA6',$,$,$,$,$,$,$); -#944=IFCMATERIALPROFILESET($,$,(#946),$); -#945=IFCRELASSOCIATESMATERIAL('0EaxfDtVv5XQTC2esERspe',$,$,$,(#943),#944); -#946=IFCMATERIALPROFILE($,$,#17,#942,$,$); -#947=IFCMEMBERTYPE('2PDHaN$oL6p9IY_q04yrwY',$,'40EA6',$,$,$,$,$,$,$); -#948=IFCMATERIALPROFILESET($,$,(#950),$); -#949=IFCRELASSOCIATESMATERIAL('2Eltt8YI5BIQEXsvhR8WFb',$,$,$,(#947),#948); -#950=IFCMATERIALPROFILE($,$,#17,#942,$,$); -#951=IFCCOLUMNTYPE('3OtPGnkib0hvhbpdy8Ngg1',$,'40EA6',$,$,$,$,$,$,$); -#952=IFCMATERIALPROFILESET($,$,(#954),$); -#953=IFCRELASSOCIATESMATERIAL('2RxUYpMhX8_Por3jyw5amr',$,$,$,(#951),#952); -#954=IFCMATERIALPROFILE($,$,#17,#942,$,$); -#955=IFCLSHAPEPROFILEDEF(.AREA.,$,$,40.,$,4.6,$,$,$); -#956=IFCBEAMTYPE('27b9osO411RPt1mfEuyfpg',$,'40EA5',$,$,$,$,$,$,$); -#957=IFCMATERIALPROFILESET($,$,(#959),$); -#958=IFCRELASSOCIATESMATERIAL('1twAN1cP91vxocpk903fxP',$,$,$,(#956),#957); -#959=IFCMATERIALPROFILE($,$,#17,#955,$,$); -#960=IFCMEMBERTYPE('2C7FSzegH5oQjCIDhrACfM',$,'40EA5',$,$,$,$,$,$,$); -#961=IFCMATERIALPROFILESET($,$,(#963),$); -#962=IFCRELASSOCIATESMATERIAL('1UlempjQXAdBDuMZue1mUn',$,$,$,(#960),#961); -#963=IFCMATERIALPROFILE($,$,#17,#955,$,$); -#964=IFCCOLUMNTYPE('31VpZlbx97qwKqzDnHe1cz',$,'40EA5',$,$,$,$,$,$,$); -#965=IFCMATERIALPROFILESET($,$,(#967),$); -#966=IFCRELASSOCIATESMATERIAL('1acbHzQ2v4Bgxu9h8G5JKu',$,$,$,(#964),#965); -#967=IFCMATERIALPROFILE($,$,#17,#955,$,$); -#968=IFCLSHAPEPROFILEDEF(.AREA.,$,$,40.,$,3.,$,$,$); -#969=IFCBEAMTYPE('2QRmScMwPDwgoCx5iM3d0a',$,'40EA3',$,$,$,$,$,$,$); -#970=IFCMATERIALPROFILESET($,$,(#972),$); -#971=IFCRELASSOCIATESMATERIAL('1NH7Nyp4HECQ6Fr3OEQXrr',$,$,$,(#969),#970); -#972=IFCMATERIALPROFILE($,$,#17,#968,$,$); -#973=IFCMEMBERTYPE('1myBpqEOXAPxca7YGWrIPU',$,'40EA3',$,$,$,$,$,$,$); -#974=IFCMATERIALPROFILESET($,$,(#976),$); -#975=IFCRELASSOCIATESMATERIAL('3D$YycvBf2wP1b4Wh$9Rhf',$,$,$,(#973),#974); -#976=IFCMATERIALPROFILE($,$,#17,#968,$,$); -#977=IFCCOLUMNTYPE('1_sJTgnJPF9Pwdi6vHWtUC',$,'40EA3',$,$,$,$,$,$,$); -#978=IFCMATERIALPROFILESET($,$,(#980),$); -#979=IFCRELASSOCIATESMATERIAL('1_Fj88amv4XvAOhBrZrf4R',$,$,$,(#977),#978); -#980=IFCMATERIALPROFILE($,$,#17,#968,$,$); -#981=IFCLSHAPEPROFILEDEF(.AREA.,$,$,30.,$,6.,$,$,$); -#982=IFCBEAMTYPE('3xlIlmw55APOU0UZ_IxwfW',$,'30EA6',$,$,$,$,$,$,$); -#983=IFCMATERIALPROFILESET($,$,(#985),$); -#984=IFCRELASSOCIATESMATERIAL('1H1cdJLTX5jwenIViDQcmP',$,$,$,(#982),#983); -#985=IFCMATERIALPROFILE($,$,#17,#981,$,$); -#986=IFCMEMBERTYPE('1s1nK28x9AqBjt21tJx$hN',$,'30EA6',$,$,$,$,$,$,$); -#987=IFCMATERIALPROFILESET($,$,(#989),$); -#988=IFCRELASSOCIATESMATERIAL('0vanyrd494XgSYajdBDue6',$,$,$,(#986),#987); -#989=IFCMATERIALPROFILE($,$,#17,#981,$,$); -#990=IFCCOLUMNTYPE('373D4JoHX9ZOe1WXSo8zrt',$,'30EA6',$,$,$,$,$,$,$); -#991=IFCMATERIALPROFILESET($,$,(#993),$); -#992=IFCRELASSOCIATESMATERIAL('0xD1KVc7nC$gbmTe88V13C',$,$,$,(#990),#991); -#993=IFCMATERIALPROFILE($,$,#17,#981,$,$); -#994=IFCLSHAPEPROFILEDEF(.AREA.,$,$,30.,$,4.6,$,$,$); -#995=IFCBEAMTYPE('0A_wj9Z2PCTRVugLAmlikg',$,'30EA5',$,$,$,$,$,$,$); -#996=IFCMATERIALPROFILESET($,$,(#998),$); -#997=IFCRELASSOCIATESMATERIAL('1QCLpry4z0qPOVDbP8_SHt',$,$,$,(#995),#996); -#998=IFCMATERIALPROFILE($,$,#17,#994,$,$); -#999=IFCMEMBERTYPE('1nv38otlTBzgmrfBCbFJU6',$,'30EA5',$,$,$,$,$,$,$); -#1000=IFCMATERIALPROFILESET($,$,(#1002),$); -#1001=IFCRELASSOCIATESMATERIAL('2pl7yFAyj1mh2egDZiaXlG',$,$,$,(#999),#1000); -#1002=IFCMATERIALPROFILE($,$,#17,#994,$,$); -#1003=IFCCOLUMNTYPE('2kuTa0ZR9B4R4uWFKTsJn3',$,'30EA5',$,$,$,$,$,$,$); -#1004=IFCMATERIALPROFILESET($,$,(#1006),$); -#1005=IFCRELASSOCIATESMATERIAL('3WyR0i8Nb5xgjv28ZKAIsC',$,$,$,(#1003),#1004); -#1006=IFCMATERIALPROFILE($,$,#17,#994,$,$); -#1007=IFCLSHAPEPROFILEDEF(.AREA.,$,$,30.,$,3.,$,$,$); -#1008=IFCBEAMTYPE('2fGTibVAfEXOQW3gnkZm62',$,'30EA3',$,$,$,$,$,$,$); -#1009=IFCMATERIALPROFILESET($,$,(#1011),$); -#1010=IFCRELASSOCIATESMATERIAL('128JlnHVXClOlHTWuKH9OX',$,$,$,(#1008),#1009); -#1011=IFCMATERIALPROFILE($,$,#17,#1007,$,$); -#1012=IFCMEMBERTYPE('1O42V6GgPByQulZTb8zAX0',$,'30EA3',$,$,$,$,$,$,$); -#1013=IFCMATERIALPROFILESET($,$,(#1015),$); -#1014=IFCRELASSOCIATESMATERIAL('3w5cT0CoTA2efpTJXQ2wqr',$,$,$,(#1012),#1013); -#1015=IFCMATERIALPROFILE($,$,#17,#1007,$,$); -#1016=IFCCOLUMNTYPE('2zDXNT0Q5F3ACVIpO6S8cI',$,'30EA3',$,$,$,$,$,$,$); -#1017=IFCMATERIALPROFILESET($,$,(#1019),$); -#1018=IFCRELASSOCIATESMATERIAL('2bBRjIzYD1RQSAdPXIYme3',$,$,$,(#1016),#1017); -#1019=IFCMATERIALPROFILE($,$,#17,#1007,$,$); -#1020=IFCLSHAPEPROFILEDEF(.AREA.,$,$,25.,$,6.,$,$,$); -#1021=IFCBEAMTYPE('1cm0$vxqX0TgJe66Z2hQir',$,'25EA6',$,$,$,$,$,$,$); -#1022=IFCMATERIALPROFILESET($,$,(#1024),$); -#1023=IFCRELASSOCIATESMATERIAL('2JPCZKJjz6UxRsmRdp10n7',$,$,$,(#1021),#1022); -#1024=IFCMATERIALPROFILE($,$,#17,#1020,$,$); -#1025=IFCMEMBERTYPE('0qEv1unOPFHw5av$pylNeO',$,'25EA6',$,$,$,$,$,$,$); -#1026=IFCMATERIALPROFILESET($,$,(#1028),$); -#1027=IFCRELASSOCIATESMATERIAL('2DL8V4dEvEHw2AXZUgjoOY',$,$,$,(#1025),#1026); -#1028=IFCMATERIALPROFILE($,$,#17,#1020,$,$); -#1029=IFCCOLUMNTYPE('1t0yG6G$H98vg7HBBLJrBm',$,'25EA6',$,$,$,$,$,$,$); -#1030=IFCMATERIALPROFILESET($,$,(#1032),$); -#1031=IFCRELASSOCIATESMATERIAL('1FnoyZ45LB1R7OpwbK6y0T',$,$,$,(#1029),#1030); -#1032=IFCMATERIALPROFILE($,$,#17,#1020,$,$); -#1033=IFCLSHAPEPROFILEDEF(.AREA.,$,$,25.,$,4.6,$,$,$); -#1034=IFCBEAMTYPE('0CFF5zOUj1Dvaybm3QXNyV',$,'25EA5',$,$,$,$,$,$,$); -#1035=IFCMATERIALPROFILESET($,$,(#1037),$); -#1036=IFCRELASSOCIATESMATERIAL('1PzIzabbn0i89t72$vgEnH',$,$,$,(#1034),#1035); -#1037=IFCMATERIALPROFILE($,$,#17,#1033,$,$); -#1038=IFCMEMBERTYPE('0OTNcl$CjAHQL1u$vaUwrd',$,'25EA5',$,$,$,$,$,$,$); -#1039=IFCMATERIALPROFILESET($,$,(#1041),$); -#1040=IFCRELASSOCIATESMATERIAL('3k4twmoY1E1xq52mXSCDhi',$,$,$,(#1038),#1039); -#1041=IFCMATERIALPROFILE($,$,#17,#1033,$,$); -#1042=IFCCOLUMNTYPE('1ZwLROr_b6JOq2jmhSZQv3',$,'25EA5',$,$,$,$,$,$,$); -#1043=IFCMATERIALPROFILESET($,$,(#1045),$); -#1044=IFCRELASSOCIATESMATERIAL('3CSCXqA8DDYRF2$vcsDqJL',$,$,$,(#1042),#1043); -#1045=IFCMATERIALPROFILE($,$,#17,#1033,$,$); -#1046=IFCLSHAPEPROFILEDEF(.AREA.,$,$,25.,$,3.,$,$,$); -#1047=IFCBEAMTYPE('0vRvZqLvjClhnLhA7gSL0D',$,'25EA3',$,$,$,$,$,$,$); -#1048=IFCMATERIALPROFILESET($,$,(#1050),$); -#1049=IFCRELASSOCIATESMATERIAL('21TKBbvBLBshxLXCq9ysi7',$,$,$,(#1047),#1048); -#1050=IFCMATERIALPROFILE($,$,#17,#1046,$,$); -#1051=IFCMEMBERTYPE('3BGqPDAL93kAHRtBBmKfDh',$,'25EA3',$,$,$,$,$,$,$); -#1052=IFCMATERIALPROFILESET($,$,(#1054),$); -#1053=IFCRELASSOCIATESMATERIAL('2RvvbFqJ532AG$LBQor5aE',$,$,$,(#1051),#1052); -#1054=IFCMATERIALPROFILE($,$,#17,#1046,$,$); -#1055=IFCCOLUMNTYPE('1BuavfKhbCoQfko3OTLbr1',$,'25EA3',$,$,$,$,$,$,$); -#1056=IFCMATERIALPROFILESET($,$,(#1058),$); -#1057=IFCRELASSOCIATESMATERIAL('1W38ko_1n8RxZzX_2fzY5X',$,$,$,(#1055),#1056); -#1058=IFCMATERIALPROFILE($,$,#17,#1046,$,$); -#1059=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,100.,12.,$,$,$); -#1060=IFCBEAMTYPE('1MEJnSGwTAzAIZGHWdYszU',$,'150x100UA12',$,$,$,$,$,$,$); -#1061=IFCMATERIALPROFILESET($,$,(#1063),$); -#1062=IFCRELASSOCIATESMATERIAL('2cFfscD017EPh_sSHI3iYi',$,$,$,(#1060),#1061); -#1063=IFCMATERIALPROFILE($,$,#17,#1059,$,$); -#1064=IFCMEMBERTYPE('1igkITcpj40fnhKuQ0yVeN',$,'150x100UA12',$,$,$,$,$,$,$); -#1065=IFCMATERIALPROFILESET($,$,(#1067),$); -#1066=IFCRELASSOCIATESMATERIAL('16Zuqbhf91kA_qncZFVURC',$,$,$,(#1064),#1065); -#1067=IFCMATERIALPROFILE($,$,#17,#1059,$,$); -#1068=IFCCOLUMNTYPE('3wYoLt9Uf4dxgJK1rADURC',$,'150x100UA12',$,$,$,$,$,$,$); -#1069=IFCMATERIALPROFILESET($,$,(#1071),$); -#1070=IFCRELASSOCIATESMATERIAL('0vWImg8kjC_8NZO_iJI0ag',$,$,$,(#1068),#1069); -#1071=IFCMATERIALPROFILE($,$,#17,#1059,$,$); -#1072=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,100.,9.5,$,$,$); -#1073=IFCBEAMTYPE('3wN$BkXFT7kxfRbU2X5n24',$,'150x100UA10',$,$,$,$,$,$,$); -#1074=IFCMATERIALPROFILESET($,$,(#1076),$); -#1075=IFCRELASSOCIATESMATERIAL('2v820TMxr2WOmvn7l4FCv1',$,$,$,(#1073),#1074); -#1076=IFCMATERIALPROFILE($,$,#17,#1072,$,$); -#1077=IFCMEMBERTYPE('1OVmxJ0BD5Sx8jYcjJSbNc',$,'150x100UA10',$,$,$,$,$,$,$); -#1078=IFCMATERIALPROFILESET($,$,(#1080),$); -#1079=IFCRELASSOCIATESMATERIAL('3TBGnVpTf7ef5MzLTDi2$Q',$,$,$,(#1077),#1078); -#1080=IFCMATERIALPROFILE($,$,#17,#1072,$,$); -#1081=IFCCOLUMNTYPE('3cr7$er9XDDRLf$m0pitfg',$,'150x100UA10',$,$,$,$,$,$,$); -#1082=IFCMATERIALPROFILESET($,$,(#1084),$); -#1083=IFCRELASSOCIATESMATERIAL('3rFTU08UvC5hg1w7aeFndU',$,$,$,(#1081),#1082); -#1084=IFCMATERIALPROFILE($,$,#17,#1072,$,$); -#1085=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,90.,15.8,$,$,$); -#1086=IFCBEAMTYPE('2QTrugox5BwBt0szx1nwQp',$,'150x90UA16',$,$,$,$,$,$,$); -#1087=IFCMATERIALPROFILESET($,$,(#1089),$); -#1088=IFCRELASSOCIATESMATERIAL('3VBpWiWzn7IwhPCYoZcvrS',$,$,$,(#1086),#1087); -#1089=IFCMATERIALPROFILE($,$,#17,#1085,$,$); -#1090=IFCMEMBERTYPE('2UBexajAbDcQUPf5jHfnMK',$,'150x90UA16',$,$,$,$,$,$,$); -#1091=IFCMATERIALPROFILESET($,$,(#1093),$); -#1092=IFCRELASSOCIATESMATERIAL('0QoML6BFL5MxWmvwqqQKs0',$,$,$,(#1090),#1091); -#1093=IFCMATERIALPROFILE($,$,#17,#1085,$,$); -#1094=IFCCOLUMNTYPE('1YZIHPdc1F2hq8DXQ_AnVs',$,'150x90UA16',$,$,$,$,$,$,$); -#1095=IFCMATERIALPROFILESET($,$,(#1097),$); -#1096=IFCRELASSOCIATESMATERIAL('3tK7LYhxP8GgKxyGWL4IMw',$,$,$,(#1094),#1095); -#1097=IFCMATERIALPROFILE($,$,#17,#1085,$,$); -#1098=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,90.,12.,$,$,$); -#1099=IFCBEAMTYPE('1AfyMiDmjCVxQTl78gDjc0',$,'150x90UA12',$,$,$,$,$,$,$); -#1100=IFCMATERIALPROFILESET($,$,(#1102),$); -#1101=IFCRELASSOCIATESMATERIAL('0fW_T4UKv7rRlBYRzJ5L0M',$,$,$,(#1099),#1100); -#1102=IFCMATERIALPROFILE($,$,#17,#1098,$,$); -#1103=IFCMEMBERTYPE('2$3k1gjmf3$BVcJK4$av_M',$,'150x90UA12',$,$,$,$,$,$,$); -#1104=IFCMATERIALPROFILESET($,$,(#1106),$); -#1105=IFCRELASSOCIATESMATERIAL('2Ud8AEXEDFM81Y99cXVBwG',$,$,$,(#1103),#1104); -#1106=IFCMATERIALPROFILE($,$,#17,#1098,$,$); -#1107=IFCCOLUMNTYPE('15Ql0JMeH8q9ukBhZih1nO',$,'150x90UA12',$,$,$,$,$,$,$); -#1108=IFCMATERIALPROFILESET($,$,(#1110),$); -#1109=IFCRELASSOCIATESMATERIAL('1EeMlWt0T0_gIJyF8ueK1R',$,$,$,(#1107),#1108); -#1110=IFCMATERIALPROFILE($,$,#17,#1098,$,$); -#1111=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,90.,9.5,$,$,$); -#1112=IFCBEAMTYPE('0nMH6qMPH2kB_aAoC709ac',$,'150x90UA10',$,$,$,$,$,$,$); -#1113=IFCMATERIALPROFILESET($,$,(#1115),$); -#1114=IFCRELASSOCIATESMATERIAL('20iPEQPBr2Hf$qyzB$ihHU',$,$,$,(#1112),#1113); -#1115=IFCMATERIALPROFILE($,$,#17,#1111,$,$); -#1116=IFCMEMBERTYPE('0Yyb2mgWH9m8a___qaqcx4',$,'150x90UA10',$,$,$,$,$,$,$); -#1117=IFCMATERIALPROFILESET($,$,(#1119),$); -#1118=IFCRELASSOCIATESMATERIAL('19sXM6rfH2WPu3P$DEtscY',$,$,$,(#1116),#1117); -#1119=IFCMATERIALPROFILE($,$,#17,#1111,$,$); -#1120=IFCCOLUMNTYPE('2GrGNVk916eBdzQtQy2wOf',$,'150x90UA10',$,$,$,$,$,$,$); -#1121=IFCMATERIALPROFILESET($,$,(#1123),$); -#1122=IFCRELASSOCIATESMATERIAL('0GndQLXij968K3O_CM4pJs',$,$,$,(#1120),#1121); -#1123=IFCMATERIALPROFILE($,$,#17,#1111,$,$); -#1124=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,90.,7.8,$,$,$); -#1125=IFCBEAMTYPE('1xIo7y70bCzwGnkhr6gh27',$,'150x90UA8',$,$,$,$,$,$,$); -#1126=IFCMATERIALPROFILESET($,$,(#1128),$); -#1127=IFCRELASSOCIATESMATERIAL('2YexBdFAvAnwzBZFEvtB4_',$,$,$,(#1125),#1126); -#1128=IFCMATERIALPROFILE($,$,#17,#1124,$,$); -#1129=IFCMEMBERTYPE('1Dwx2pt9n1Vvbd3bFh6qJo',$,'150x90UA8',$,$,$,$,$,$,$); -#1130=IFCMATERIALPROFILESET($,$,(#1132),$); -#1131=IFCRELASSOCIATESMATERIAL('2vp9MAJfTBbABXenCTgWQ8',$,$,$,(#1129),#1130); -#1132=IFCMATERIALPROFILE($,$,#17,#1124,$,$); -#1133=IFCCOLUMNTYPE('1UbdqBOwH21AJHvjOz82ZS',$,'150x90UA8',$,$,$,$,$,$,$); -#1134=IFCMATERIALPROFILESET($,$,(#1136),$); -#1135=IFCRELASSOCIATESMATERIAL('1cYXj2zvL7DQOOn2Cg6h88',$,$,$,(#1133),#1134); -#1136=IFCMATERIALPROFILE($,$,#17,#1124,$,$); -#1137=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,75.,12.,$,$,$); -#1138=IFCBEAMTYPE('3Saqyc9b174gWbvgVWNR$f',$,'125x75UA12',$,$,$,$,$,$,$); -#1139=IFCMATERIALPROFILESET($,$,(#1141),$); -#1140=IFCRELASSOCIATESMATERIAL('1YpZjx741Apha_MokojVtv',$,$,$,(#1138),#1139); -#1141=IFCMATERIALPROFILE($,$,#17,#1137,$,$); -#1142=IFCMEMBERTYPE('16QVAEah90EwHYppRtgYSN',$,'125x75UA12',$,$,$,$,$,$,$); -#1143=IFCMATERIALPROFILESET($,$,(#1145),$); -#1144=IFCRELASSOCIATESMATERIAL('0QF7rLvwn77QpWr1zHpDLi',$,$,$,(#1142),#1143); -#1145=IFCMATERIALPROFILE($,$,#17,#1137,$,$); -#1146=IFCCOLUMNTYPE('1yTKUK4UTD8vpqYoU4FLxk',$,'125x75UA12',$,$,$,$,$,$,$); -#1147=IFCMATERIALPROFILESET($,$,(#1149),$); -#1148=IFCRELASSOCIATESMATERIAL('3AP_Xvde97Qhr9qp3hYaUu',$,$,$,(#1146),#1147); -#1149=IFCMATERIALPROFILE($,$,#17,#1137,$,$); -#1150=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,75.,9.5,$,$,$); -#1151=IFCBEAMTYPE('3goXR2qlXCRB7dWbLHllAi',$,'125x75UA10',$,$,$,$,$,$,$); -#1152=IFCMATERIALPROFILESET($,$,(#1154),$); -#1153=IFCRELASSOCIATESMATERIAL('1LFF_BtFD7mR0KQ_pQlrzd',$,$,$,(#1151),#1152); -#1154=IFCMATERIALPROFILE($,$,#17,#1150,$,$); -#1155=IFCMEMBERTYPE('2IcFpI5Sn7$8zaclVpX_f3',$,'125x75UA10',$,$,$,$,$,$,$); -#1156=IFCMATERIALPROFILESET($,$,(#1158),$); -#1157=IFCRELASSOCIATESMATERIAL('3vKGKrDqL4Ag3oacQKkfVZ',$,$,$,(#1155),#1156); -#1158=IFCMATERIALPROFILE($,$,#17,#1150,$,$); -#1159=IFCCOLUMNTYPE('3HjnwE4fX2Bg9NmD$dy9je',$,'125x75UA10',$,$,$,$,$,$,$); -#1160=IFCMATERIALPROFILESET($,$,(#1162),$); -#1161=IFCRELASSOCIATESMATERIAL('3AztgYdrH36BhL10SwJ40K',$,$,$,(#1159),#1160); -#1162=IFCMATERIALPROFILE($,$,#17,#1150,$,$); -#1163=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,75.,7.8,$,$,$); -#1164=IFCBEAMTYPE('0cPr3EbRT99PKMy9V_EaL2',$,'125x75UA8',$,$,$,$,$,$,$); -#1165=IFCMATERIALPROFILESET($,$,(#1167),$); -#1166=IFCRELASSOCIATESMATERIAL('0$j9XKV9D8DvPPwgXvUMLm',$,$,$,(#1164),#1165); -#1167=IFCMATERIALPROFILE($,$,#17,#1163,$,$); -#1168=IFCMEMBERTYPE('0vlLb2PyTA_hPr1R8CzLKp',$,'125x75UA8',$,$,$,$,$,$,$); -#1169=IFCMATERIALPROFILESET($,$,(#1171),$); -#1170=IFCRELASSOCIATESMATERIAL('0LbTBtnX13B8VBQ7cJ_Isv',$,$,$,(#1168),#1169); -#1171=IFCMATERIALPROFILE($,$,#17,#1163,$,$); -#1172=IFCCOLUMNTYPE('2Mz3ns$2b5WfiRmncK4bYz',$,'125x75UA8',$,$,$,$,$,$,$); -#1173=IFCMATERIALPROFILESET($,$,(#1175),$); -#1174=IFCRELASSOCIATESMATERIAL('1aKshxZjj1_fi5$2jPXA3$',$,$,$,(#1172),#1173); -#1175=IFCMATERIALPROFILE($,$,#17,#1163,$,$); -#1176=IFCLSHAPEPROFILEDEF(.AREA.,$,$,125.,75.,6.,$,$,$); -#1177=IFCBEAMTYPE('1N6349rpT2yv3UFd5W5wu$',$,'125x75UA6',$,$,$,$,$,$,$); -#1178=IFCMATERIALPROFILESET($,$,(#1180),$); -#1179=IFCRELASSOCIATESMATERIAL('1W5OHTNVnFdB7OfYg$FG3R',$,$,$,(#1177),#1178); -#1180=IFCMATERIALPROFILE($,$,#17,#1176,$,$); -#1181=IFCMEMBERTYPE('3T$FUPzC9C3RTLFeO95fdB',$,'125x75UA6',$,$,$,$,$,$,$); -#1182=IFCMATERIALPROFILESET($,$,(#1184),$); -#1183=IFCRELASSOCIATESMATERIAL('2e75H8Ogb9h8ooJ5YVP6T3',$,$,$,(#1181),#1182); -#1184=IFCMATERIALPROFILE($,$,#17,#1176,$,$); -#1185=IFCCOLUMNTYPE('2ifOS31drEaAfwEpuj5udn',$,'125x75UA6',$,$,$,$,$,$,$); -#1186=IFCMATERIALPROFILESET($,$,(#1188),$); -#1187=IFCRELASSOCIATESMATERIAL('1gUsg5nWT6e9pt$VDVy4yg',$,$,$,(#1185),#1186); -#1188=IFCMATERIALPROFILE($,$,#17,#1176,$,$); -#1189=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,75.,9.5,$,$,$); -#1190=IFCBEAMTYPE('27OXKGxvzCzuTjk3xUSJI9',$,'100x75UA10',$,$,$,$,$,$,$); -#1191=IFCMATERIALPROFILESET($,$,(#1193),$); -#1192=IFCRELASSOCIATESMATERIAL('2vwvgIaXr549t0mq5emoZv',$,$,$,(#1190),#1191); -#1193=IFCMATERIALPROFILE($,$,#17,#1189,$,$); -#1194=IFCMEMBERTYPE('12tpMCjvTE_8v7Rml35E72',$,'100x75UA10',$,$,$,$,$,$,$); -#1195=IFCMATERIALPROFILESET($,$,(#1197),$); -#1196=IFCRELASSOCIATESMATERIAL('0vOeGwIkH39Og51Xxu9D_7',$,$,$,(#1194),#1195); -#1197=IFCMATERIALPROFILE($,$,#17,#1189,$,$); -#1198=IFCCOLUMNTYPE('2dqSfiQgD7hvisc16MHX2$',$,'100x75UA10',$,$,$,$,$,$,$); -#1199=IFCMATERIALPROFILESET($,$,(#1201),$); -#1200=IFCRELASSOCIATESMATERIAL('2v16cMODbFfvROShTecrvF',$,$,$,(#1198),#1199); -#1201=IFCMATERIALPROFILE($,$,#17,#1189,$,$); -#1202=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,75.,7.8,$,$,$); -#1203=IFCBEAMTYPE('22EtudB2bAlx6$Db6F_XFm',$,'100x75UA8',$,$,$,$,$,$,$); -#1204=IFCMATERIALPROFILESET($,$,(#1206),$); -#1205=IFCRELASSOCIATESMATERIAL('1OaeCqXFn8CgiXAZkIgyP1',$,$,$,(#1203),#1204); -#1206=IFCMATERIALPROFILE($,$,#17,#1202,$,$); -#1207=IFCMEMBERTYPE('0y2fXzt8PF49e4d7FJRaR9',$,'100x75UA8',$,$,$,$,$,$,$); -#1208=IFCMATERIALPROFILESET($,$,(#1210),$); -#1209=IFCRELASSOCIATESMATERIAL('1BazAZL55EKw4qk6YooxXp',$,$,$,(#1207),#1208); -#1210=IFCMATERIALPROFILE($,$,#17,#1202,$,$); -#1211=IFCCOLUMNTYPE('23FHtmNEjBIu08Q1l8Bqcv',$,'100x75UA8',$,$,$,$,$,$,$); -#1212=IFCMATERIALPROFILESET($,$,(#1214),$); -#1213=IFCRELASSOCIATESMATERIAL('3HANZeTvbCGAn6LKgcHzKb',$,$,$,(#1211),#1212); -#1214=IFCMATERIALPROFILE($,$,#17,#1202,$,$); -#1215=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,75.,6.,$,$,$); -#1216=IFCBEAMTYPE('1r0cbh0OTDHuTgs81KVsn$',$,'100x75UA6',$,$,$,$,$,$,$); -#1217=IFCMATERIALPROFILESET($,$,(#1219),$); -#1218=IFCRELASSOCIATESMATERIAL('34uppMlDf5$e34vp5z_tzE',$,$,$,(#1216),#1217); -#1219=IFCMATERIALPROFILE($,$,#17,#1215,$,$); -#1220=IFCMEMBERTYPE('3GQaIa3SPAcBwHtB7RS6UA',$,'100x75UA6',$,$,$,$,$,$,$); -#1221=IFCMATERIALPROFILESET($,$,(#1223),$); -#1222=IFCRELASSOCIATESMATERIAL('1AVxaJd79AF8Dj7zAbowxb',$,$,$,(#1220),#1221); -#1223=IFCMATERIALPROFILE($,$,#17,#1215,$,$); -#1224=IFCCOLUMNTYPE('3dkExwlv552vBBsHX2nE0X',$,'100x75UA6',$,$,$,$,$,$,$); -#1225=IFCMATERIALPROFILESET($,$,(#1227),$); -#1226=IFCRELASSOCIATESMATERIAL('0XTOcQjwzD5vuOW2aUuUGj',$,$,$,(#1224),#1225); -#1227=IFCMATERIALPROFILE($,$,#17,#1215,$,$); -#1228=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,50.,7.8,$,$,$); -#1229=IFCBEAMTYPE('3aCuZ4ROzDT9vtzTIwt0$J',$,'75x50UA8',$,$,$,$,$,$,$); -#1230=IFCMATERIALPROFILESET($,$,(#1232),$); -#1231=IFCRELASSOCIATESMATERIAL('0YpSdrptb2nROHUNjkC6te',$,$,$,(#1229),#1230); -#1232=IFCMATERIALPROFILE($,$,#17,#1228,$,$); -#1233=IFCMEMBERTYPE('0ooAP2X8r1dRnJik60lUS7',$,'75x50UA8',$,$,$,$,$,$,$); -#1234=IFCMATERIALPROFILESET($,$,(#1236),$); -#1235=IFCRELASSOCIATESMATERIAL('027_t1ybz55xThDACsxnk9',$,$,$,(#1233),#1234); -#1236=IFCMATERIALPROFILE($,$,#17,#1228,$,$); -#1237=IFCCOLUMNTYPE('2sui3FrAX4F9lqFH9MBVAu',$,'75x50UA8',$,$,$,$,$,$,$); -#1238=IFCMATERIALPROFILESET($,$,(#1240),$); -#1239=IFCRELASSOCIATESMATERIAL('2O01LSqo5BVgoMB9dUGEAM',$,$,$,(#1237),#1238); -#1240=IFCMATERIALPROFILE($,$,#17,#1228,$,$); -#1241=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,50.,6.,$,$,$); -#1242=IFCBEAMTYPE('0IUpfMxCHABuf8X3paqqc2',$,'75x50UA6',$,$,$,$,$,$,$); -#1243=IFCMATERIALPROFILESET($,$,(#1245),$); -#1244=IFCRELASSOCIATESMATERIAL('3MSwEiLGr9ee1vmhupKtih',$,$,$,(#1242),#1243); -#1245=IFCMATERIALPROFILE($,$,#17,#1241,$,$); -#1246=IFCMEMBERTYPE('3xd1PR2MrEWg5aDB6R5uFD',$,'75x50UA6',$,$,$,$,$,$,$); -#1247=IFCMATERIALPROFILESET($,$,(#1249),$); -#1248=IFCRELASSOCIATESMATERIAL('05$NPEIzLBkvxs2Hm294bt',$,$,$,(#1246),#1247); -#1249=IFCMATERIALPROFILE($,$,#17,#1241,$,$); -#1250=IFCCOLUMNTYPE('2HzO8pvpbAneQbqzImtay6',$,'75x50UA6',$,$,$,$,$,$,$); -#1251=IFCMATERIALPROFILESET($,$,(#1253),$); -#1252=IFCRELASSOCIATESMATERIAL('0wlOuSk5nBE8Xwc4yfji7c',$,$,$,(#1250),#1251); -#1253=IFCMATERIALPROFILE($,$,#17,#1241,$,$); -#1254=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,50.,4.6,$,$,$); -#1255=IFCBEAMTYPE('2zK5Q72_b4TvwBlhB9MPtq',$,'75x50UA5',$,$,$,$,$,$,$); -#1256=IFCMATERIALPROFILESET($,$,(#1258),$); -#1257=IFCRELASSOCIATESMATERIAL('2o9mKPWHL9K9$hRnxK$wh5',$,$,$,(#1255),#1256); -#1258=IFCMATERIALPROFILE($,$,#17,#1254,$,$); -#1259=IFCMEMBERTYPE('2yWVkOIFb5BQgNXywpYH3R',$,'75x50UA5',$,$,$,$,$,$,$); -#1260=IFCMATERIALPROFILESET($,$,(#1262),$); -#1261=IFCRELASSOCIATESMATERIAL('2mwdTg0br6uvUsl6RspA_1',$,$,$,(#1259),#1260); -#1262=IFCMATERIALPROFILE($,$,#17,#1254,$,$); -#1263=IFCCOLUMNTYPE('1NDXDhm3j6t8zDCcU4Gk$P',$,'75x50UA5',$,$,$,$,$,$,$); -#1264=IFCMATERIALPROFILESET($,$,(#1266),$); -#1265=IFCRELASSOCIATESMATERIAL('0HahvwXfP40xA8Wrk6x9yg',$,$,$,(#1263),#1264); -#1266=IFCMATERIALPROFILE($,$,#17,#1254,$,$); -#1267=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,50.,7.8,$,$,$); -#1268=IFCBEAMTYPE('0K1Lsz2L95Q90pv9DRzuX6',$,'65x50UA8',$,$,$,$,$,$,$); -#1269=IFCMATERIALPROFILESET($,$,(#1271),$); -#1270=IFCRELASSOCIATESMATERIAL('1uyGhNEMD5$eYdgPZITi0u',$,$,$,(#1268),#1269); -#1271=IFCMATERIALPROFILE($,$,#17,#1267,$,$); -#1272=IFCMEMBERTYPE('2cHsN5dyv9agv4xSPGhOYT',$,'65x50UA8',$,$,$,$,$,$,$); -#1273=IFCMATERIALPROFILESET($,$,(#1275),$); -#1274=IFCRELASSOCIATESMATERIAL('1CqYpwAbH5IOKKUnlFRdK6',$,$,$,(#1272),#1273); -#1275=IFCMATERIALPROFILE($,$,#17,#1267,$,$); -#1276=IFCCOLUMNTYPE('0gZpn$vUb5buV_$mUpPZiJ',$,'65x50UA8',$,$,$,$,$,$,$); -#1277=IFCMATERIALPROFILESET($,$,(#1279),$); -#1278=IFCRELASSOCIATESMATERIAL('0Jxy295iD9KubsV$u$ucd5',$,$,$,(#1276),#1277); -#1279=IFCMATERIALPROFILE($,$,#17,#1267,$,$); -#1280=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,50.,6.,$,$,$); -#1281=IFCBEAMTYPE('3xZvlqnqbBe9SM1pV3$oKz',$,'65x50UA6',$,$,$,$,$,$,$); -#1282=IFCMATERIALPROFILESET($,$,(#1284),$); -#1283=IFCRELASSOCIATESMATERIAL('1z17C2CUvELuU0ySzT8N6R',$,$,$,(#1281),#1282); -#1284=IFCMATERIALPROFILE($,$,#17,#1280,$,$); -#1285=IFCMEMBERTYPE('1My_qOn0X9KfmIvbH4l3_p',$,'65x50UA6',$,$,$,$,$,$,$); -#1286=IFCMATERIALPROFILESET($,$,(#1288),$); -#1287=IFCRELASSOCIATESMATERIAL('2VA0YxrM53tgwN9XvA2Le2',$,$,$,(#1285),#1286); -#1288=IFCMATERIALPROFILE($,$,#17,#1280,$,$); -#1289=IFCCOLUMNTYPE('3vtByhLnn2seJnRWm4JODj',$,'65x50UA6',$,$,$,$,$,$,$); -#1290=IFCMATERIALPROFILESET($,$,(#1292),$); -#1291=IFCRELASSOCIATESMATERIAL('1YG17i9sfCj8608ks3xA6h',$,$,$,(#1289),#1290); -#1292=IFCMATERIALPROFILE($,$,#17,#1280,$,$); -#1293=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,50.,4.6,$,$,$); -#1294=IFCBEAMTYPE('1vzq3ZaXr7fvjcJ1pVRGNS',$,'65x50UA5',$,$,$,$,$,$,$); -#1295=IFCMATERIALPROFILESET($,$,(#1297),$); -#1296=IFCRELASSOCIATESMATERIAL('0hQBPOXgn2uPkPw4zAYnXK',$,$,$,(#1294),#1295); -#1297=IFCMATERIALPROFILE($,$,#17,#1293,$,$); -#1298=IFCMEMBERTYPE('2zDustQVD02wc340BPH_FB',$,'65x50UA5',$,$,$,$,$,$,$); -#1299=IFCMATERIALPROFILESET($,$,(#1301),$); -#1300=IFCRELASSOCIATESMATERIAL('1ag35m$Vz1_gEnjCPK7GFn',$,$,$,(#1298),#1299); -#1301=IFCMATERIALPROFILE($,$,#17,#1293,$,$); -#1302=IFCCOLUMNTYPE('3OANlr6Zn7xgAmLBBYdAb3',$,'65x50UA5',$,$,$,$,$,$,$); -#1303=IFCMATERIALPROFILESET($,$,(#1305),$); -#1304=IFCRELASSOCIATESMATERIAL('1qKOZHsbT8vgss4Uh3gAMV',$,$,$,(#1302),#1303); -#1305=IFCMATERIALPROFILE($,$,#17,#1293,$,$); -#1306=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,7.5,2.6); -#1307=IFCBEAMTYPE('1QMuUwVK5EVg6tqTfQPxjz',$,'15CHS26',$,$,$,$,$,$,$); -#1308=IFCMATERIALPROFILESET($,$,(#1310),$); -#1309=IFCRELASSOCIATESMATERIAL('3pyy_KitrB_PiXU1B12Jg1',$,$,$,(#1307),#1308); -#1310=IFCMATERIALPROFILE($,$,#17,#1306,$,$); -#1311=IFCMEMBERTYPE('0qiNU_VLDCZOExdsT9tAcW',$,'15CHS26',$,$,$,$,$,$,$); -#1312=IFCMATERIALPROFILESET($,$,(#1314),$); -#1313=IFCRELASSOCIATESMATERIAL('2UsBj1SZn7Nu0KDqFkjjrH',$,$,$,(#1311),#1312); -#1314=IFCMATERIALPROFILE($,$,#17,#1306,$,$); -#1315=IFCCOLUMNTYPE('1qGt_XVLjBeBtrG7BnTH5r',$,'15CHS26',$,$,$,$,$,$,$); -#1316=IFCMATERIALPROFILESET($,$,(#1318),$); -#1317=IFCRELASSOCIATESMATERIAL('2tKeEsjabBvPtcXnoZWxFb',$,$,$,(#1315),#1316); -#1318=IFCMATERIALPROFILE($,$,#17,#1306,$,$); -#1319=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.,2.6); -#1320=IFCBEAMTYPE('3qDmo2YX9B2u4lQeF0ErdH',$,'20CHS26',$,$,$,$,$,$,$); -#1321=IFCMATERIALPROFILESET($,$,(#1323),$); -#1322=IFCRELASSOCIATESMATERIAL('32T39o3J1CAwIXZOBUeh0q',$,$,$,(#1320),#1321); -#1323=IFCMATERIALPROFILE($,$,#17,#1319,$,$); -#1324=IFCMEMBERTYPE('2$krdQpez8MuOB8Rm44H_U',$,'20CHS26',$,$,$,$,$,$,$); -#1325=IFCMATERIALPROFILESET($,$,(#1327),$); -#1326=IFCRELASSOCIATESMATERIAL('1l5nLVBFv1QBhkVopcQXFp',$,$,$,(#1324),#1325); -#1327=IFCMATERIALPROFILE($,$,#17,#1319,$,$); -#1328=IFCCOLUMNTYPE('0oKIo6JS1BzhUhKca1dp61',$,'20CHS26',$,$,$,$,$,$,$); -#1329=IFCMATERIALPROFILESET($,$,(#1331),$); -#1330=IFCRELASSOCIATESMATERIAL('3TkwF0Ja566u$4sMqD0QBl',$,$,$,(#1328),#1329); -#1331=IFCMATERIALPROFILE($,$,#17,#1319,$,$); -#1332=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.,3.2); -#1333=IFCBEAMTYPE('2AALhRPWT4dBqDkJ$0DPJX',$,'20CHS32',$,$,$,$,$,$,$); -#1334=IFCMATERIALPROFILESET($,$,(#1336),$); -#1335=IFCRELASSOCIATESMATERIAL('0Pc_Fd8ZH1w9ZDg$IG2DYb',$,$,$,(#1333),#1334); -#1336=IFCMATERIALPROFILE($,$,#17,#1332,$,$); -#1337=IFCMEMBERTYPE('2pedSDjPrDkOuHiNedbYNv',$,'20CHS32',$,$,$,$,$,$,$); -#1338=IFCMATERIALPROFILESET($,$,(#1340),$); -#1339=IFCRELASSOCIATESMATERIAL('0PVJRCITzBrAdqdK1R_sj1',$,$,$,(#1337),#1338); -#1340=IFCMATERIALPROFILE($,$,#17,#1332,$,$); -#1341=IFCCOLUMNTYPE('0W978a6HXFlxrYCH8lpb3c',$,'20CHS32',$,$,$,$,$,$,$); -#1342=IFCMATERIALPROFILESET($,$,(#1344),$); -#1343=IFCRELASSOCIATESMATERIAL('1LT2aGrRH72QDO1h9ihq7r',$,$,$,(#1341),#1342); -#1344=IFCMATERIALPROFILE($,$,#17,#1332,$,$); -#1345=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.,4.); -#1346=IFCBEAMTYPE('3U7QyRlnPBfe4mYPAsuQdF',$,'20CHS40',$,$,$,$,$,$,$); -#1347=IFCMATERIALPROFILESET($,$,(#1349),$); -#1348=IFCRELASSOCIATESMATERIAL('3Sc7NN8x93KfRjDBvNu_is',$,$,$,(#1346),#1347); -#1349=IFCMATERIALPROFILE($,$,#17,#1345,$,$); -#1350=IFCMEMBERTYPE('24KMatuSn1Mwt1j5I69Yxp',$,'20CHS40',$,$,$,$,$,$,$); -#1351=IFCMATERIALPROFILESET($,$,(#1353),$); -#1352=IFCRELASSOCIATESMATERIAL('0am9oCqO9B0Puk$yFkYosY',$,$,$,(#1350),#1351); -#1353=IFCMATERIALPROFILE($,$,#17,#1345,$,$); -#1354=IFCCOLUMNTYPE('1pwB2jQkv16hjAbwI_GRtj',$,'20CHS40',$,$,$,$,$,$,$); -#1355=IFCMATERIALPROFILESET($,$,(#1357),$); -#1356=IFCRELASSOCIATESMATERIAL('3Gd76iKb9E4u05D$VvlGAm',$,$,$,(#1354),#1355); -#1357=IFCMATERIALPROFILE($,$,#17,#1345,$,$); -#1358=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,12.5,3.2); -#1359=IFCBEAMTYPE('2OCzXdGiLBxvahzqUgEI$V',$,'25CHS32',$,$,$,$,$,$,$); -#1360=IFCMATERIALPROFILESET($,$,(#1362),$); -#1361=IFCRELASSOCIATESMATERIAL('2dZMNN8LnDIfU1vU781YDq',$,$,$,(#1359),#1360); -#1362=IFCMATERIALPROFILE($,$,#17,#1358,$,$); -#1363=IFCMEMBERTYPE('2kVYaGHq14H9RN6b2hBGeV',$,'25CHS32',$,$,$,$,$,$,$); -#1364=IFCMATERIALPROFILESET($,$,(#1366),$); -#1365=IFCRELASSOCIATESMATERIAL('1cFJNe1ur6Vx_sj2WJwGxh',$,$,$,(#1363),#1364); -#1366=IFCMATERIALPROFILE($,$,#17,#1358,$,$); -#1367=IFCCOLUMNTYPE('0JB$k1OebFABmZa9u10r4O',$,'25CHS32',$,$,$,$,$,$,$); -#1368=IFCMATERIALPROFILESET($,$,(#1370),$); -#1369=IFCRELASSOCIATESMATERIAL('29BxcSDATDgvi26y9gmlpn',$,$,$,(#1367),#1368); -#1370=IFCMATERIALPROFILE($,$,#17,#1358,$,$); -#1371=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,12.5,4.); -#1372=IFCBEAMTYPE('1X6GJeUJ1E2eyCo46NuuTu',$,'25CHS40',$,$,$,$,$,$,$); -#1373=IFCMATERIALPROFILESET($,$,(#1375),$); -#1374=IFCRELASSOCIATESMATERIAL('18wAsL7en5OfyjbTGDH6Lv',$,$,$,(#1372),#1373); -#1375=IFCMATERIALPROFILE($,$,#17,#1371,$,$); -#1376=IFCMEMBERTYPE('20Rj24gKT0Ivp_9jJKO7Im',$,'25CHS40',$,$,$,$,$,$,$); -#1377=IFCMATERIALPROFILESET($,$,(#1379),$); -#1378=IFCRELASSOCIATESMATERIAL('3jCAGBefj7ReUxmu37vzZh',$,$,$,(#1376),#1377); -#1379=IFCMATERIALPROFILE($,$,#17,#1371,$,$); -#1380=IFCCOLUMNTYPE('07vWniE9T3$uY2RYK$tkxA',$,'25CHS40',$,$,$,$,$,$,$); -#1381=IFCMATERIALPROFILESET($,$,(#1383),$); -#1382=IFCRELASSOCIATESMATERIAL('2IMmQkVj1F1Batvx7pkIJz',$,$,$,(#1380),#1381); -#1383=IFCMATERIALPROFILE($,$,#17,#1371,$,$); -#1384=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.,3.2); -#1385=IFCBEAMTYPE('0BcwJ2FsHCjQ$uIvxKklHf',$,'32CHS32',$,$,$,$,$,$,$); -#1386=IFCMATERIALPROFILESET($,$,(#1388),$); -#1387=IFCRELASSOCIATESMATERIAL('3UvFD6MW55zBjUlMK4fiG9',$,$,$,(#1385),#1386); -#1388=IFCMATERIALPROFILE($,$,#17,#1384,$,$); -#1389=IFCMEMBERTYPE('3WrUgv1qz2uPxFdtte83Om',$,'32CHS32',$,$,$,$,$,$,$); -#1390=IFCMATERIALPROFILESET($,$,(#1392),$); -#1391=IFCRELASSOCIATESMATERIAL('1Hm_kmwGHAZAMguFVayPLI',$,$,$,(#1389),#1390); -#1392=IFCMATERIALPROFILE($,$,#17,#1384,$,$); -#1393=IFCCOLUMNTYPE('09LpInrtj3s9tAP0j39W5C',$,'32CHS32',$,$,$,$,$,$,$); -#1394=IFCMATERIALPROFILESET($,$,(#1396),$); -#1395=IFCRELASSOCIATESMATERIAL('1BYqMsH7DEEgKtw7yUK70z',$,$,$,(#1393),#1394); -#1396=IFCMATERIALPROFILE($,$,#17,#1384,$,$); -#1397=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.,4.); -#1398=IFCBEAMTYPE('3xyV1JuPL4Q9laG0$ZnN01',$,'32CHS40',$,$,$,$,$,$,$); -#1399=IFCMATERIALPROFILESET($,$,(#1401),$); -#1400=IFCRELASSOCIATESMATERIAL('35Gu42C3fEteFu81j8zJOF',$,$,$,(#1398),#1399); -#1401=IFCMATERIALPROFILE($,$,#17,#1397,$,$); -#1402=IFCMEMBERTYPE('0GehkzM$12AArWGM4vm7_$',$,'32CHS40',$,$,$,$,$,$,$); -#1403=IFCMATERIALPROFILESET($,$,(#1405),$); -#1404=IFCRELASSOCIATESMATERIAL('23d6pZQdHBMevNasqwYNSA',$,$,$,(#1402),#1403); -#1405=IFCMATERIALPROFILE($,$,#17,#1397,$,$); -#1406=IFCCOLUMNTYPE('3josk7pSfCOgYt06f$udck',$,'32CHS40',$,$,$,$,$,$,$); -#1407=IFCMATERIALPROFILESET($,$,(#1409),$); -#1408=IFCRELASSOCIATESMATERIAL('3Sxw5AVZv5ie9ZM8edk_sH',$,$,$,(#1406),#1407); -#1409=IFCMATERIALPROFILE($,$,#17,#1397,$,$); -#1410=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,3.2); -#1411=IFCBEAMTYPE('042aabLlz8$8c3weZyjUoc',$,'40CHS32',$,$,$,$,$,$,$); -#1412=IFCMATERIALPROFILESET($,$,(#1414),$); -#1413=IFCRELASSOCIATESMATERIAL('1egp48iTD1UQ21Err$buGN',$,$,$,(#1411),#1412); -#1414=IFCMATERIALPROFILE($,$,#17,#1410,$,$); -#1415=IFCMEMBERTYPE('06D2l38mLF0Qf6tcVgVgfr',$,'40CHS32',$,$,$,$,$,$,$); -#1416=IFCMATERIALPROFILESET($,$,(#1418),$); -#1417=IFCRELASSOCIATESMATERIAL('0kIhpFGZj4Furm_mlvyb1S',$,$,$,(#1415),#1416); -#1418=IFCMATERIALPROFILE($,$,#17,#1410,$,$); -#1419=IFCCOLUMNTYPE('0LgdkucpPFc8_W81R4ctw2',$,'40CHS32',$,$,$,$,$,$,$); -#1420=IFCMATERIALPROFILESET($,$,(#1422),$); -#1421=IFCRELASSOCIATESMATERIAL('1JJnWbF6T8d8M$PwPC1Vp3',$,$,$,(#1419),#1420); -#1422=IFCMATERIALPROFILE($,$,#17,#1410,$,$); -#1423=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,4.); -#1424=IFCBEAMTYPE('1cFycRfQn6MReKJGYDD1mE',$,'40CHS40',$,$,$,$,$,$,$); -#1425=IFCMATERIALPROFILESET($,$,(#1427),$); -#1426=IFCRELASSOCIATESMATERIAL('0laJwhp7n0RAoVlHMlotzA',$,$,$,(#1424),#1425); -#1427=IFCMATERIALPROFILE($,$,#17,#1423,$,$); -#1428=IFCMEMBERTYPE('3mnsx8Eor3U9zlxgsT6ye1',$,'40CHS40',$,$,$,$,$,$,$); -#1429=IFCMATERIALPROFILESET($,$,(#1431),$); -#1430=IFCRELASSOCIATESMATERIAL('1tAxIdJUb01vRb$WCHAnV1',$,$,$,(#1428),#1429); -#1431=IFCMATERIALPROFILE($,$,#17,#1423,$,$); -#1432=IFCCOLUMNTYPE('0xoWw8gN9FpQ5I$7N8Bzxf',$,'40CHS40',$,$,$,$,$,$,$); -#1433=IFCMATERIALPROFILESET($,$,(#1435),$); -#1434=IFCRELASSOCIATESMATERIAL('2ZfiWIzNL599JlOGwIlKEn',$,$,$,(#1432),#1433); -#1435=IFCMATERIALPROFILE($,$,#17,#1423,$,$); -#1436=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,5.4); -#1437=IFCBEAMTYPE('0w5N2GIp5B7vKzbItj6_$0',$,'40CHS54',$,$,$,$,$,$,$); -#1438=IFCMATERIALPROFILESET($,$,(#1440),$); -#1439=IFCRELASSOCIATESMATERIAL('3DEb4Ym_9E6fuk7j3OprQ1',$,$,$,(#1437),#1438); -#1440=IFCMATERIALPROFILE($,$,#17,#1436,$,$); -#1441=IFCMEMBERTYPE('1mDS7_fGv9UvllTeVCmQOJ',$,'40CHS54',$,$,$,$,$,$,$); -#1442=IFCMATERIALPROFILESET($,$,(#1444),$); -#1443=IFCRELASSOCIATESMATERIAL('2SIzL6A5141vVFV0Udgnk5',$,$,$,(#1441),#1442); -#1444=IFCMATERIALPROFILE($,$,#17,#1436,$,$); -#1445=IFCCOLUMNTYPE('0OgUoxifb5ZOMZN1iEERie',$,'40CHS54',$,$,$,$,$,$,$); -#1446=IFCMATERIALPROFILESET($,$,(#1448),$); -#1447=IFCRELASSOCIATESMATERIAL('0xM70py$H3g9azNXjHC9TE',$,$,$,(#1445),#1446); -#1448=IFCMATERIALPROFILE($,$,#17,#1436,$,$); -#1449=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,3.6); -#1450=IFCBEAMTYPE('0Gq9tzdv9A8u9Gk_WWsxVX',$,'50CHS36',$,$,$,$,$,$,$); -#1451=IFCMATERIALPROFILESET($,$,(#1453),$); -#1452=IFCRELASSOCIATESMATERIAL('1suOysdzHDUgOu6p6JIrNd',$,$,$,(#1450),#1451); -#1453=IFCMATERIALPROFILE($,$,#17,#1449,$,$); -#1454=IFCMEMBERTYPE('1uBcm0TGL0JPBr870J6asT',$,'50CHS36',$,$,$,$,$,$,$); -#1455=IFCMATERIALPROFILESET($,$,(#1457),$); -#1456=IFCRELASSOCIATESMATERIAL('1AuhKjuLv0WxxYUYpdvDga',$,$,$,(#1454),#1455); -#1457=IFCMATERIALPROFILE($,$,#17,#1449,$,$); -#1458=IFCCOLUMNTYPE('1bAaeM1KfCYxDLUfi633H5',$,'50CHS36',$,$,$,$,$,$,$); -#1459=IFCMATERIALPROFILESET($,$,(#1461),$); -#1460=IFCRELASSOCIATESMATERIAL('0gLkQO3aT4dxvUQVGD6FQH',$,$,$,(#1458),#1459); -#1461=IFCMATERIALPROFILE($,$,#17,#1449,$,$); -#1462=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,4.5); -#1463=IFCBEAMTYPE('0lFBaF4_j2YumjWGeVc3p$',$,'50CHS45',$,$,$,$,$,$,$); -#1464=IFCMATERIALPROFILESET($,$,(#1466),$); -#1465=IFCRELASSOCIATESMATERIAL('0qqCiVdKr4WgAJMXf18bhS',$,$,$,(#1463),#1464); -#1466=IFCMATERIALPROFILE($,$,#17,#1462,$,$); -#1467=IFCMEMBERTYPE('1seEOkGrT0qwy0IeTs31UE',$,'50CHS45',$,$,$,$,$,$,$); -#1468=IFCMATERIALPROFILESET($,$,(#1470),$); -#1469=IFCRELASSOCIATESMATERIAL('2g6NUrCK945OhOlc_wA3w0',$,$,$,(#1467),#1468); -#1470=IFCMATERIALPROFILE($,$,#17,#1462,$,$); -#1471=IFCCOLUMNTYPE('35WEBbJ65DKgj8_ACTBYRq',$,'50CHS45',$,$,$,$,$,$,$); -#1472=IFCMATERIALPROFILESET($,$,(#1474),$); -#1473=IFCRELASSOCIATESMATERIAL('2v1vtxfOH5W9FYqqkMYvN4',$,$,$,(#1471),#1472); -#1474=IFCMATERIALPROFILE($,$,#17,#1462,$,$); -#1475=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,5.9); -#1476=IFCBEAMTYPE('0HDbG4cOn7EeoEblNaRFI3',$,'50CHS59',$,$,$,$,$,$,$); -#1477=IFCMATERIALPROFILESET($,$,(#1479),$); -#1478=IFCRELASSOCIATESMATERIAL('2sh4OO91n5Rx7MJDgrmQ2u',$,$,$,(#1476),#1477); -#1479=IFCMATERIALPROFILE($,$,#17,#1475,$,$); -#1480=IFCMEMBERTYPE('1ivKYx3IvEVQ3PQRb5bolr',$,'50CHS59',$,$,$,$,$,$,$); -#1481=IFCMATERIALPROFILESET($,$,(#1483),$); -#1482=IFCRELASSOCIATESMATERIAL('30xgYwYyTEuBku$Pl27Kjd',$,$,$,(#1480),#1481); -#1483=IFCMATERIALPROFILE($,$,#17,#1475,$,$); -#1484=IFCCOLUMNTYPE('2cyGbyHU1Cu87$1OUGd8NU',$,'50CHS59',$,$,$,$,$,$,$); -#1485=IFCMATERIALPROFILESET($,$,(#1487),$); -#1486=IFCRELASSOCIATESMATERIAL('0X0ACMOO5908hblAayhNqR',$,$,$,(#1484),#1485); -#1487=IFCMATERIALPROFILE($,$,#17,#1475,$,$); -#1488=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,32.5,3.6); -#1489=IFCBEAMTYPE('3BrlrS$3f2LRBR57wMujJ9',$,'65CHS36',$,$,$,$,$,$,$); -#1490=IFCMATERIALPROFILESET($,$,(#1492),$); -#1491=IFCRELASSOCIATESMATERIAL('3MjUBNiS52zPbLXizEOPPM',$,$,$,(#1489),#1490); -#1492=IFCMATERIALPROFILE($,$,#17,#1488,$,$); -#1493=IFCMEMBERTYPE('0BDVRB1hz0qg01SOmRJDFZ',$,'65CHS36',$,$,$,$,$,$,$); -#1494=IFCMATERIALPROFILESET($,$,(#1496),$); -#1495=IFCRELASSOCIATESMATERIAL('21Idr2t9b7ZeWm7vxtbfGl',$,$,$,(#1493),#1494); -#1496=IFCMATERIALPROFILE($,$,#17,#1488,$,$); -#1497=IFCCOLUMNTYPE('2$KnJgCpr0$hQ5rma4uCCc',$,'65CHS36',$,$,$,$,$,$,$); -#1498=IFCMATERIALPROFILESET($,$,(#1500),$); -#1499=IFCRELASSOCIATESMATERIAL('2Ge5DXr9TBpuAuOxDJt3lU',$,$,$,(#1497),#1498); -#1500=IFCMATERIALPROFILE($,$,#17,#1488,$,$); -#1501=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,32.5,4.5); -#1502=IFCBEAMTYPE('3myxwPGpr94Buw5RyvoQjt',$,'65CHS45',$,$,$,$,$,$,$); -#1503=IFCMATERIALPROFILESET($,$,(#1505),$); -#1504=IFCRELASSOCIATESMATERIAL('1tRmMMOez7EA01T3GAvpOz',$,$,$,(#1502),#1503); -#1505=IFCMATERIALPROFILE($,$,#17,#1501,$,$); -#1506=IFCMEMBERTYPE('04tTUbb8jDBf6yYXPBFBEN',$,'65CHS45',$,$,$,$,$,$,$); -#1507=IFCMATERIALPROFILESET($,$,(#1509),$); -#1508=IFCRELASSOCIATESMATERIAL('11kwzjOjHCEQo2RESS0RXE',$,$,$,(#1506),#1507); -#1509=IFCMATERIALPROFILE($,$,#17,#1501,$,$); -#1510=IFCCOLUMNTYPE('3BZV3tiWX2VBv5740DjnsV',$,'65CHS45',$,$,$,$,$,$,$); -#1511=IFCMATERIALPROFILESET($,$,(#1513),$); -#1512=IFCRELASSOCIATESMATERIAL('2IqK2E5b95QR5VjrGURWJI',$,$,$,(#1510),#1511); -#1513=IFCMATERIALPROFILE($,$,#17,#1501,$,$); -#1514=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,32.5,5.9); -#1515=IFCBEAMTYPE('2$mhVvfHr8BAl8w2df$k50',$,'65CHS59',$,$,$,$,$,$,$); -#1516=IFCMATERIALPROFILESET($,$,(#1518),$); -#1517=IFCRELASSOCIATESMATERIAL('24lD6p8k534PCyTCTKFsed',$,$,$,(#1515),#1516); -#1518=IFCMATERIALPROFILE($,$,#17,#1514,$,$); -#1519=IFCMEMBERTYPE('3QSwMaI0DCGf18GZMxxafB',$,'65CHS59',$,$,$,$,$,$,$); -#1520=IFCMATERIALPROFILESET($,$,(#1522),$); -#1521=IFCRELASSOCIATESMATERIAL('0StbChAKXFtO2U7ZJF5EWB',$,$,$,(#1519),#1520); -#1522=IFCMATERIALPROFILE($,$,#17,#1514,$,$); -#1523=IFCCOLUMNTYPE('2J6eYw8zTBlgsiOpJLfpWt',$,'65CHS59',$,$,$,$,$,$,$); -#1524=IFCMATERIALPROFILESET($,$,(#1526),$); -#1525=IFCRELASSOCIATESMATERIAL('2_41EVCR96c9yERZMKMgKs',$,$,$,(#1523),#1524); -#1526=IFCMATERIALPROFILE($,$,#17,#1514,$,$); -#1527=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,4.); -#1528=IFCBEAMTYPE('2FF6BQLZrCT9OzETW3p6DH',$,'80CHS40',$,$,$,$,$,$,$); -#1529=IFCMATERIALPROFILESET($,$,(#1531),$); -#1530=IFCRELASSOCIATESMATERIAL('23gPzBPgX97fdcC$vepJw$',$,$,$,(#1528),#1529); -#1531=IFCMATERIALPROFILE($,$,#17,#1527,$,$); -#1532=IFCMEMBERTYPE('30mQsrQET0nAdSfuOk$vWI',$,'80CHS40',$,$,$,$,$,$,$); -#1533=IFCMATERIALPROFILESET($,$,(#1535),$); -#1534=IFCRELASSOCIATESMATERIAL('2Lvcj$R2L4JgjKn8G7$_eC',$,$,$,(#1532),#1533); -#1535=IFCMATERIALPROFILE($,$,#17,#1527,$,$); -#1536=IFCCOLUMNTYPE('2MfRWTkv9CZO8OspIjTN3G',$,'80CHS40',$,$,$,$,$,$,$); -#1537=IFCMATERIALPROFILESET($,$,(#1539),$); -#1538=IFCRELASSOCIATESMATERIAL('2zYNyYSZ54cAjWNl5GyK0N',$,$,$,(#1536),#1537); -#1539=IFCMATERIALPROFILE($,$,#17,#1527,$,$); -#1540=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,5.); -#1541=IFCBEAMTYPE('3ZLEiht4f8z9Z7dkyYZDGR',$,'80CHS50',$,$,$,$,$,$,$); -#1542=IFCMATERIALPROFILESET($,$,(#1544),$); -#1543=IFCRELASSOCIATESMATERIAL('32dwqzQzHDKev2gYRe6p6e',$,$,$,(#1541),#1542); -#1544=IFCMATERIALPROFILE($,$,#17,#1540,$,$); -#1545=IFCMEMBERTYPE('2XyHgLFTn0XhFjg1oCCSu8',$,'80CHS50',$,$,$,$,$,$,$); -#1546=IFCMATERIALPROFILESET($,$,(#1548),$); -#1547=IFCRELASSOCIATESMATERIAL('2bx$9RWq5Fl81Ek8mSUhb$',$,$,$,(#1545),#1546); -#1548=IFCMATERIALPROFILE($,$,#17,#1540,$,$); -#1549=IFCCOLUMNTYPE('2_UvVuQvnB$vrMoGhogVTF',$,'80CHS50',$,$,$,$,$,$,$); -#1550=IFCMATERIALPROFILESET($,$,(#1552),$); -#1551=IFCRELASSOCIATESMATERIAL('1bQJgVVUPCC9tODG0YGuFT',$,$,$,(#1549),#1550); -#1552=IFCMATERIALPROFILE($,$,#17,#1540,$,$); -#1553=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,5.9); -#1554=IFCBEAMTYPE('2H9EX_ARXD8fcFPDjzFhvW',$,'80CHS59',$,$,$,$,$,$,$); -#1555=IFCMATERIALPROFILESET($,$,(#1557),$); -#1556=IFCRELASSOCIATESMATERIAL('1e7YxY3Pn2LfEZREO1Egq2',$,$,$,(#1554),#1555); -#1557=IFCMATERIALPROFILE($,$,#17,#1553,$,$); -#1558=IFCMEMBERTYPE('3Q5sop$A5Ao9enRchxhd$2',$,'80CHS59',$,$,$,$,$,$,$); -#1559=IFCMATERIALPROFILESET($,$,(#1561),$); -#1560=IFCRELASSOCIATESMATERIAL('1iWt0Itav1N9YB0FZn5ODx',$,$,$,(#1558),#1559); -#1561=IFCMATERIALPROFILE($,$,#17,#1553,$,$); -#1562=IFCCOLUMNTYPE('0MZZT676r3ShTZCspQhWJq',$,'80CHS59',$,$,$,$,$,$,$); -#1563=IFCMATERIALPROFILESET($,$,(#1565),$); -#1564=IFCRELASSOCIATESMATERIAL('2X4C2$Dev8GOtbr_IS3A3A',$,$,$,(#1562),#1563); -#1565=IFCMATERIALPROFILE($,$,#17,#1553,$,$); -#1566=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,45.,4.); -#1567=IFCBEAMTYPE('1MMl9zFd9FN9XdFjih4D4y',$,'90CHS40',$,$,$,$,$,$,$); -#1568=IFCMATERIALPROFILESET($,$,(#1570),$); -#1569=IFCRELASSOCIATESMATERIAL('2iL7Svb6XCD99q1V0FYMEh',$,$,$,(#1567),#1568); -#1570=IFCMATERIALPROFILE($,$,#17,#1566,$,$); -#1571=IFCMEMBERTYPE('1ySAINc_57th$6vraJlYY8',$,'90CHS40',$,$,$,$,$,$,$); -#1572=IFCMATERIALPROFILESET($,$,(#1574),$); -#1573=IFCRELASSOCIATESMATERIAL('2XTcfGIOX1o89jQGxOmDWU',$,$,$,(#1571),#1572); -#1574=IFCMATERIALPROFILE($,$,#17,#1566,$,$); -#1575=IFCCOLUMNTYPE('0oPIrOSOTEgABm0PQaObKb',$,'90CHS40',$,$,$,$,$,$,$); -#1576=IFCMATERIALPROFILESET($,$,(#1578),$); -#1577=IFCRELASSOCIATESMATERIAL('0v5Ca__M57_BUWRoPA8zTC',$,$,$,(#1575),#1576); -#1578=IFCMATERIALPROFILE($,$,#17,#1566,$,$); -#1579=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,45.,5.); -#1580=IFCBEAMTYPE('27LHhxxMLDWAZFOTcu5Jl$',$,'90CHS50',$,$,$,$,$,$,$); -#1581=IFCMATERIALPROFILESET($,$,(#1583),$); -#1582=IFCRELASSOCIATESMATERIAL('1QQn1iHZr5PAH2swB7hrWj',$,$,$,(#1580),#1581); -#1583=IFCMATERIALPROFILE($,$,#17,#1579,$,$); -#1584=IFCMEMBERTYPE('1B_rm8kND5Mf_Bo63OqNeV',$,'90CHS50',$,$,$,$,$,$,$); -#1585=IFCMATERIALPROFILESET($,$,(#1587),$); -#1586=IFCRELASSOCIATESMATERIAL('2cnOChVif9mfVG97DitJCX',$,$,$,(#1584),#1585); -#1587=IFCMATERIALPROFILE($,$,#17,#1579,$,$); -#1588=IFCCOLUMNTYPE('2VBde3toXBUR4i7tqxmhe6',$,'90CHS50',$,$,$,$,$,$,$); -#1589=IFCMATERIALPROFILESET($,$,(#1591),$); -#1590=IFCRELASSOCIATESMATERIAL('0UFTeFUQ55IQ_AE3BiJN$Y',$,$,$,(#1588),#1589); -#1591=IFCMATERIALPROFILE($,$,#17,#1579,$,$); -#1592=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,4.5); -#1593=IFCBEAMTYPE('23jAQWQODC$OLme1sqvPKR',$,'100CHS45',$,$,$,$,$,$,$); -#1594=IFCMATERIALPROFILESET($,$,(#1596),$); -#1595=IFCRELASSOCIATESMATERIAL('1bVHPSaOH0QeESdJBMzS8l',$,$,$,(#1593),#1594); -#1596=IFCMATERIALPROFILE($,$,#17,#1592,$,$); -#1597=IFCMEMBERTYPE('0ExDlPLWnBQPiSBlE4BeNm',$,'100CHS45',$,$,$,$,$,$,$); -#1598=IFCMATERIALPROFILESET($,$,(#1600),$); -#1599=IFCRELASSOCIATESMATERIAL('1mP82z5K98GBlh6OfieX$6',$,$,$,(#1597),#1598); -#1600=IFCMATERIALPROFILE($,$,#17,#1592,$,$); -#1601=IFCCOLUMNTYPE('34F0beTrH43Bif2TijyyIx',$,'100CHS45',$,$,$,$,$,$,$); -#1602=IFCMATERIALPROFILESET($,$,(#1604),$); -#1603=IFCRELASSOCIATESMATERIAL('241u5e0uj9YOxGKXx2Q9o9',$,$,$,(#1601),#1602); -#1604=IFCMATERIALPROFILE($,$,#17,#1592,$,$); -#1605=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,5.4); -#1606=IFCBEAMTYPE('1_AX4YVojEe9GuEeFjDy$t',$,'100CHS54',$,$,$,$,$,$,$); -#1607=IFCMATERIALPROFILESET($,$,(#1609),$); -#1608=IFCRELASSOCIATESMATERIAL('2Fyl_MDI5FMRV$ed6adyh4',$,$,$,(#1606),#1607); -#1609=IFCMATERIALPROFILE($,$,#17,#1605,$,$); -#1610=IFCMEMBERTYPE('3NNXGhVCXE5Ajwz4Ro_BrG',$,'100CHS54',$,$,$,$,$,$,$); -#1611=IFCMATERIALPROFILESET($,$,(#1613),$); -#1612=IFCRELASSOCIATESMATERIAL('2uggRqDBf8vextAc_nuOmb',$,$,$,(#1610),#1611); -#1613=IFCMATERIALPROFILE($,$,#17,#1605,$,$); -#1614=IFCCOLUMNTYPE('2xWFyLaTn57gGAXNAYkEqA',$,'100CHS54',$,$,$,$,$,$,$); -#1615=IFCMATERIALPROFILESET($,$,(#1617),$); -#1616=IFCRELASSOCIATESMATERIAL('0fwubZbL52AO0KpPoR744S',$,$,$,(#1614),#1615); -#1617=IFCMATERIALPROFILE($,$,#17,#1605,$,$); -#1618=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,62.5,5.); -#1619=IFCBEAMTYPE('0e1ufufAvATRjuLSzssUpm',$,'125CHS50',$,$,$,$,$,$,$); -#1620=IFCMATERIALPROFILESET($,$,(#1622),$); -#1621=IFCRELASSOCIATESMATERIAL('0rvyEwuSL9awsjaqlpqpjm',$,$,$,(#1619),#1620); -#1622=IFCMATERIALPROFILE($,$,#17,#1618,$,$); -#1623=IFCMEMBERTYPE('1oehjTPBP07vrzEdAkqB0T',$,'125CHS50',$,$,$,$,$,$,$); -#1624=IFCMATERIALPROFILESET($,$,(#1626),$); -#1625=IFCRELASSOCIATESMATERIAL('33d7LazaX2IvqDFfqGJh2M',$,$,$,(#1623),#1624); -#1626=IFCMATERIALPROFILE($,$,#17,#1618,$,$); -#1627=IFCCOLUMNTYPE('2PYsR4vxnFjASiwZbhOuIR',$,'125CHS50',$,$,$,$,$,$,$); -#1628=IFCMATERIALPROFILESET($,$,(#1630),$); -#1629=IFCRELASSOCIATESMATERIAL('3i4Wnk7V54UeQZsTIQN9Uv',$,$,$,(#1627),#1628); -#1630=IFCMATERIALPROFILE($,$,#17,#1618,$,$); -#1631=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,62.5,5.4); -#1632=IFCBEAMTYPE('0_MHYZx8XBFBhC8AeR6AC0',$,'125CHS54',$,$,$,$,$,$,$); -#1633=IFCMATERIALPROFILESET($,$,(#1635),$); -#1634=IFCRELASSOCIATESMATERIAL('1IwJ4k94fB1x3Irxv43j0p',$,$,$,(#1632),#1633); -#1635=IFCMATERIALPROFILE($,$,#17,#1631,$,$); -#1636=IFCMEMBERTYPE('39PR5LWu51WOT_f57$tHVN',$,'125CHS54',$,$,$,$,$,$,$); -#1637=IFCMATERIALPROFILESET($,$,(#1639),$); -#1638=IFCRELASSOCIATESMATERIAL('2nUWT1Y9912hwvvbrOsPKo',$,$,$,(#1636),#1637); -#1639=IFCMATERIALPROFILE($,$,#17,#1631,$,$); -#1640=IFCCOLUMNTYPE('2w4h1kb7v4Kx6kJLKQKidy',$,'125CHS54',$,$,$,$,$,$,$); -#1641=IFCMATERIALPROFILESET($,$,(#1643),$); -#1642=IFCRELASSOCIATESMATERIAL('3_r50y2xn91xt$BJc7NId3',$,$,$,(#1640),#1641); -#1643=IFCMATERIALPROFILE($,$,#17,#1631,$,$); -#1644=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,5.); -#1645=IFCBEAMTYPE('2OZIftZPn7hAYzgzzKU96h',$,'150CHS50',$,$,$,$,$,$,$); -#1646=IFCMATERIALPROFILESET($,$,(#1648),$); -#1647=IFCRELASSOCIATESMATERIAL('1R3qHrO$r7kuUdjRWBRx$W',$,$,$,(#1645),#1646); -#1648=IFCMATERIALPROFILE($,$,#17,#1644,$,$); -#1649=IFCMEMBERTYPE('3Z1XQEbWz0LuzNLUAziiNP',$,'150CHS50',$,$,$,$,$,$,$); -#1650=IFCMATERIALPROFILESET($,$,(#1652),$); -#1651=IFCRELASSOCIATESMATERIAL('3ghiMHDWn6oexSwRt8PaBR',$,$,$,(#1649),#1650); -#1652=IFCMATERIALPROFILE($,$,#17,#1644,$,$); -#1653=IFCCOLUMNTYPE('3Imft_uXjBWfYXqOxeBXvJ',$,'150CHS50',$,$,$,$,$,$,$); -#1654=IFCMATERIALPROFILESET($,$,(#1656),$); -#1655=IFCRELASSOCIATESMATERIAL('1kYln_YYL85uggvwl7Yf3F',$,$,$,(#1653),#1654); -#1656=IFCMATERIALPROFILE($,$,#17,#1644,$,$); -#1657=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,5.4); -#1658=IFCBEAMTYPE('0vX2XjVG111f29OLFAlDmD',$,'150CHS54',$,$,$,$,$,$,$); -#1659=IFCMATERIALPROFILESET($,$,(#1661),$); -#1660=IFCRELASSOCIATESMATERIAL('1hjKHLjFX9zPsbuLMXiTCb',$,$,$,(#1658),#1659); -#1661=IFCMATERIALPROFILE($,$,#17,#1657,$,$); -#1662=IFCMEMBERTYPE('2s48$RUsb2JRhhYMb9Uwo5',$,'150CHS54',$,$,$,$,$,$,$); -#1663=IFCMATERIALPROFILESET($,$,(#1665),$); -#1664=IFCRELASSOCIATESMATERIAL('0XFORd9XT52PvpStInEYLs',$,$,$,(#1662),#1663); -#1665=IFCMATERIALPROFILE($,$,#17,#1657,$,$); -#1666=IFCCOLUMNTYPE('3Hk8egJcD1AwIa4chCzETC',$,'150CHS54',$,$,$,$,$,$,$); -#1667=IFCMATERIALPROFILESET($,$,(#1669),$); -#1668=IFCRELASSOCIATESMATERIAL('3XAvuxMFn7$RDrUTkVj0rt',$,$,$,(#1666),#1667); -#1669=IFCMATERIALPROFILE($,$,#17,#1657,$,$); -#1670=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.,2.); -#1671=IFCBEAMTYPE('2utY7X1_P8PhxA8i3aRBsX',$,'20CHS20',$,$,$,$,$,$,$); -#1672=IFCMATERIALPROFILESET($,$,(#1674),$); -#1673=IFCRELASSOCIATESMATERIAL('23fGcwgj5CXRzl6yn5NxHB',$,$,$,(#1671),#1672); -#1674=IFCMATERIALPROFILE($,$,#17,#1670,$,$); -#1675=IFCMEMBERTYPE('19I17Da858UQmasct9K0ZG',$,'20CHS20',$,$,$,$,$,$,$); -#1676=IFCMATERIALPROFILESET($,$,(#1678),$); -#1677=IFCRELASSOCIATESMATERIAL('1kE2H57WPByw0UyulwEHHS',$,$,$,(#1675),#1676); -#1678=IFCMATERIALPROFILE($,$,#17,#1670,$,$); -#1679=IFCCOLUMNTYPE('2xvsFsAHPA4Qegs1I3ehVX',$,'20CHS20',$,$,$,$,$,$,$); -#1680=IFCMATERIALPROFILESET($,$,(#1682),$); -#1681=IFCRELASSOCIATESMATERIAL('2$cRWKDGn3QxdlCiqaIsG6',$,$,$,(#1679),#1680); -#1682=IFCMATERIALPROFILE($,$,#17,#1670,$,$); -#1683=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.,2.3); -#1684=IFCBEAMTYPE('1Uc1ZYyynBB8B3hhGfAWQL',$,'20CHS23',$,$,$,$,$,$,$); -#1685=IFCMATERIALPROFILESET($,$,(#1687),$); -#1686=IFCRELASSOCIATESMATERIAL('3ODASVGUz3mQOs9yVQOjo2',$,$,$,(#1684),#1685); -#1687=IFCMATERIALPROFILE($,$,#17,#1683,$,$); -#1688=IFCMEMBERTYPE('1PoQ9DaV53fw4O1UFOpQ2W',$,'20CHS23',$,$,$,$,$,$,$); -#1689=IFCMATERIALPROFILESET($,$,(#1691),$); -#1690=IFCRELASSOCIATESMATERIAL('2wwgZlYBXAxAbRw_1iQhiC',$,$,$,(#1688),#1689); -#1691=IFCMATERIALPROFILE($,$,#17,#1683,$,$); -#1692=IFCCOLUMNTYPE('3MAO1DGGT5t8f7$k09WRGB',$,'20CHS23',$,$,$,$,$,$,$); -#1693=IFCMATERIALPROFILESET($,$,(#1695),$); -#1694=IFCRELASSOCIATESMATERIAL('0PpvWVtOL2iRXr6P6KgmWm',$,$,$,(#1692),#1693); -#1695=IFCMATERIALPROFILE($,$,#17,#1683,$,$); -#1696=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,12.5,2.); -#1697=IFCBEAMTYPE('0ih8t_stT3IgTa3qHHbDyp',$,'25CHS20',$,$,$,$,$,$,$); -#1698=IFCMATERIALPROFILESET($,$,(#1700),$); -#1699=IFCRELASSOCIATESMATERIAL('3x1O12i45C1AD1vUjgzdhW',$,$,$,(#1697),#1698); -#1700=IFCMATERIALPROFILE($,$,#17,#1696,$,$); -#1701=IFCMEMBERTYPE('1WNv4w9MrDwucUUUMerLPk',$,'25CHS20',$,$,$,$,$,$,$); -#1702=IFCMATERIALPROFILESET($,$,(#1704),$); -#1703=IFCRELASSOCIATESMATERIAL('1GqSscmGX0bQRaTQNO1gQp',$,$,$,(#1701),#1702); -#1704=IFCMATERIALPROFILE($,$,#17,#1696,$,$); -#1705=IFCCOLUMNTYPE('0bhgoRXET9igpv4F3pvCNW',$,'25CHS20',$,$,$,$,$,$,$); -#1706=IFCMATERIALPROFILESET($,$,(#1708),$); -#1707=IFCRELASSOCIATESMATERIAL('2WuZqAjzL4hA7Ul4LJB1WG',$,$,$,(#1705),#1706); -#1708=IFCMATERIALPROFILE($,$,#17,#1696,$,$); -#1709=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,12.5,2.6); -#1710=IFCBEAMTYPE('36oHSQZurF9vYZw6e3Bhm$',$,'25CHS26',$,$,$,$,$,$,$); -#1711=IFCMATERIALPROFILESET($,$,(#1713),$); -#1712=IFCRELASSOCIATESMATERIAL('0zk1ymgDL6w9DXiNJ1mzdw',$,$,$,(#1710),#1711); -#1713=IFCMATERIALPROFILE($,$,#17,#1709,$,$); -#1714=IFCMEMBERTYPE('1zdl7F$Nj9RPJSXoYEjaZj',$,'25CHS26',$,$,$,$,$,$,$); -#1715=IFCMATERIALPROFILESET($,$,(#1717),$); -#1716=IFCRELASSOCIATESMATERIAL('2tkUqd4CfADh49j6Q7J1jP',$,$,$,(#1714),#1715); -#1717=IFCMATERIALPROFILE($,$,#17,#1709,$,$); -#1718=IFCCOLUMNTYPE('0N6XqPF7545QCdvQqGVoeX',$,'25CHS26',$,$,$,$,$,$,$); -#1719=IFCMATERIALPROFILESET($,$,(#1721),$); -#1720=IFCRELASSOCIATESMATERIAL('0$b9ifZrf5R8Nm2Xzm1THC',$,$,$,(#1718),#1719); -#1721=IFCMATERIALPROFILE($,$,#17,#1709,$,$); -#1722=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.,2.); -#1723=IFCBEAMTYPE('1HGCaqb$95fho1gE3Z4w5W',$,'32CHS20',$,$,$,$,$,$,$); -#1724=IFCMATERIALPROFILESET($,$,(#1726),$); -#1725=IFCRELASSOCIATESMATERIAL('3M8YFx4YX64foi1KpHnLIX',$,$,$,(#1723),#1724); -#1726=IFCMATERIALPROFILE($,$,#17,#1722,$,$); -#1727=IFCMEMBERTYPE('0i1OkUaSnCbgl2Vdowijkq',$,'32CHS20',$,$,$,$,$,$,$); -#1728=IFCMATERIALPROFILESET($,$,(#1730),$); -#1729=IFCRELASSOCIATESMATERIAL('1eqAV1oS1Ce8bC2cXMm2XN',$,$,$,(#1727),#1728); -#1730=IFCMATERIALPROFILE($,$,#17,#1722,$,$); -#1731=IFCCOLUMNTYPE('27TJVcTtX5xvC8d0UsEByd',$,'32CHS20',$,$,$,$,$,$,$); -#1732=IFCMATERIALPROFILESET($,$,(#1734),$); -#1733=IFCRELASSOCIATESMATERIAL('28Hnaxaov06fnWLPLAE1C2',$,$,$,(#1731),#1732); -#1734=IFCMATERIALPROFILE($,$,#17,#1722,$,$); -#1735=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.,2.6); -#1736=IFCBEAMTYPE('2O3goMo_nDUhHmCrK3AqMX',$,'32CHS26',$,$,$,$,$,$,$); -#1737=IFCMATERIALPROFILESET($,$,(#1739),$); -#1738=IFCRELASSOCIATESMATERIAL('1Ywhd1quDA29nfP0ZrDfNT',$,$,$,(#1736),#1737); -#1739=IFCMATERIALPROFILE($,$,#17,#1735,$,$); -#1740=IFCMEMBERTYPE('2BO7yYsGv9pxqJtb9eWOQv',$,'32CHS26',$,$,$,$,$,$,$); -#1741=IFCMATERIALPROFILESET($,$,(#1743),$); -#1742=IFCRELASSOCIATESMATERIAL('1h$DSlr95A6QLFzfz11lZx',$,$,$,(#1740),#1741); -#1743=IFCMATERIALPROFILE($,$,#17,#1735,$,$); -#1744=IFCCOLUMNTYPE('0fKUcS_BbBKxqWiNZabjfK',$,'32CHS26',$,$,$,$,$,$,$); -#1745=IFCMATERIALPROFILESET($,$,(#1747),$); -#1746=IFCRELASSOCIATESMATERIAL('0ta4CfQEX35uyr_DoZhbpt',$,$,$,(#1744),#1745); -#1747=IFCMATERIALPROFILE($,$,#17,#1735,$,$); -#1748=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,2.3); -#1749=IFCBEAMTYPE('33Ky2t2db2lhg8mZekoCt2',$,'40CHS23',$,$,$,$,$,$,$); -#1750=IFCMATERIALPROFILESET($,$,(#1752),$); -#1751=IFCRELASSOCIATESMATERIAL('3wTa$0F9DEDB1f$E955jua',$,$,$,(#1749),#1750); -#1752=IFCMATERIALPROFILE($,$,#17,#1748,$,$); -#1753=IFCMEMBERTYPE('20NWyiCgvClBUGNaVMp79y',$,'40CHS23',$,$,$,$,$,$,$); -#1754=IFCMATERIALPROFILESET($,$,(#1756),$); -#1755=IFCRELASSOCIATESMATERIAL('1VSW0pSP56T9ACpNLFMcBS',$,$,$,(#1753),#1754); -#1756=IFCMATERIALPROFILE($,$,#17,#1748,$,$); -#1757=IFCCOLUMNTYPE('0HgiSiF7bCyfz5lsCTtHML',$,'40CHS23',$,$,$,$,$,$,$); -#1758=IFCMATERIALPROFILESET($,$,(#1760),$); -#1759=IFCRELASSOCIATESMATERIAL('3SpHWHLnD57Qp6ShHvi4o2',$,$,$,(#1757),#1758); -#1760=IFCMATERIALPROFILE($,$,#17,#1748,$,$); -#1761=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,2.9); -#1762=IFCBEAMTYPE('2O3J1lFkrCdQzL2ltlKirT',$,'40CHS29',$,$,$,$,$,$,$); -#1763=IFCMATERIALPROFILESET($,$,(#1765),$); -#1764=IFCRELASSOCIATESMATERIAL('1mqv6NvB9FFA_5CAUIz03I',$,$,$,(#1762),#1763); -#1765=IFCMATERIALPROFILE($,$,#17,#1761,$,$); -#1766=IFCMEMBERTYPE('0ANNbzpND6IRfTy46hf_Z2',$,'40CHS29',$,$,$,$,$,$,$); -#1767=IFCMATERIALPROFILESET($,$,(#1769),$); -#1768=IFCRELASSOCIATESMATERIAL('15mlxWLn1F1xH6QGW$ALco',$,$,$,(#1766),#1767); -#1769=IFCMATERIALPROFILE($,$,#17,#1761,$,$); -#1770=IFCCOLUMNTYPE('3zVcSVaX5FDewQGAB8knYk',$,'40CHS29',$,$,$,$,$,$,$); -#1771=IFCMATERIALPROFILESET($,$,(#1773),$); -#1772=IFCRELASSOCIATESMATERIAL('18RTLJXRPBWQORafNhhcY6',$,$,$,(#1770),#1771); -#1773=IFCMATERIALPROFILE($,$,#17,#1761,$,$); -#1774=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,2.3); -#1775=IFCBEAMTYPE('3b0WviLjHA3P1axyKeLa$J',$,'50CHS23',$,$,$,$,$,$,$); -#1776=IFCMATERIALPROFILESET($,$,(#1778),$); -#1777=IFCRELASSOCIATESMATERIAL('3meqEur4f2pf2AU3jc1h1z',$,$,$,(#1775),#1776); -#1778=IFCMATERIALPROFILE($,$,#17,#1774,$,$); -#1779=IFCMEMBERTYPE('17Sh8qA9D7WA7JvtiOddyA',$,'50CHS23',$,$,$,$,$,$,$); -#1780=IFCMATERIALPROFILESET($,$,(#1782),$); -#1781=IFCRELASSOCIATESMATERIAL('1wWnGcDG99zwA0U94rp1n8',$,$,$,(#1779),#1780); -#1782=IFCMATERIALPROFILE($,$,#17,#1774,$,$); -#1783=IFCCOLUMNTYPE('2G5NMIJKL7xBVbI86RJjB1',$,'50CHS23',$,$,$,$,$,$,$); -#1784=IFCMATERIALPROFILESET($,$,(#1786),$); -#1785=IFCRELASSOCIATESMATERIAL('1PtSI9wQnELBplqbOnxNue',$,$,$,(#1783),#1784); -#1786=IFCMATERIALPROFILE($,$,#17,#1774,$,$); -#1787=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,2.9); -#1788=IFCBEAMTYPE('3nOkfLC7D9xv0g5W0QnZpN',$,'50CHS29',$,$,$,$,$,$,$); -#1789=IFCMATERIALPROFILESET($,$,(#1791),$); -#1790=IFCRELASSOCIATESMATERIAL('0FCNsKTdH8xvt_aN9$QO9x',$,$,$,(#1788),#1789); -#1791=IFCMATERIALPROFILE($,$,#17,#1787,$,$); -#1792=IFCMEMBERTYPE('2yktUMPhzFlB3etGQH10Gw',$,'50CHS29',$,$,$,$,$,$,$); -#1793=IFCMATERIALPROFILESET($,$,(#1795),$); -#1794=IFCRELASSOCIATESMATERIAL('2T8nkWLEn3lR1yJbaf3tFT',$,$,$,(#1792),#1793); -#1795=IFCMATERIALPROFILE($,$,#17,#1787,$,$); -#1796=IFCCOLUMNTYPE('1YGdXgYgD0GexPMhEvw$wu',$,'50CHS29',$,$,$,$,$,$,$); -#1797=IFCMATERIALPROFILESET($,$,(#1799),$); -#1798=IFCRELASSOCIATESMATERIAL('3y0Wa4gmLEahZ8CEB_a9fj',$,$,$,(#1796),#1797); -#1799=IFCMATERIALPROFILE($,$,#17,#1787,$,$); -#1800=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,32.5,2.3); -#1801=IFCBEAMTYPE('3JKtZzTQDAvBCEkE8RhCbd',$,'65CHS23',$,$,$,$,$,$,$); -#1802=IFCMATERIALPROFILESET($,$,(#1804),$); -#1803=IFCRELASSOCIATESMATERIAL('1qtHsemVD1EODnZIYAdSs$',$,$,$,(#1801),#1802); -#1804=IFCMATERIALPROFILE($,$,#17,#1800,$,$); -#1805=IFCMEMBERTYPE('37KVvArSP2NOX2TZtmxw8N',$,'65CHS23',$,$,$,$,$,$,$); -#1806=IFCMATERIALPROFILESET($,$,(#1808),$); -#1807=IFCRELASSOCIATESMATERIAL('1vtq6gGenA2xIjD91cTBvt',$,$,$,(#1805),#1806); -#1808=IFCMATERIALPROFILE($,$,#17,#1800,$,$); -#1809=IFCCOLUMNTYPE('3Dv6iCqE94fwo7k_VvUGGx',$,'65CHS23',$,$,$,$,$,$,$); -#1810=IFCMATERIALPROFILESET($,$,(#1812),$); -#1811=IFCRELASSOCIATESMATERIAL('2wclUkcp14Xgk5OHoxtTT7',$,$,$,(#1809),#1810); -#1812=IFCMATERIALPROFILE($,$,#17,#1800,$,$); -#1813=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,32.5,3.2); -#1814=IFCBEAMTYPE('0GRpf93Xz01esvb7IH1a_Q',$,'65CHS32',$,$,$,$,$,$,$); -#1815=IFCMATERIALPROFILESET($,$,(#1817),$); -#1816=IFCRELASSOCIATESMATERIAL('2HS7gKQSz1w8PUc7E6P7U2',$,$,$,(#1814),#1815); -#1817=IFCMATERIALPROFILE($,$,#17,#1813,$,$); -#1818=IFCMEMBERTYPE('2m_P$E2L17qhlXlvOKVleu',$,'65CHS32',$,$,$,$,$,$,$); -#1819=IFCMATERIALPROFILESET($,$,(#1821),$); -#1820=IFCRELASSOCIATESMATERIAL('3OtkLNF4LBLg7tkC$z85kI',$,$,$,(#1818),#1819); -#1821=IFCMATERIALPROFILE($,$,#17,#1813,$,$); -#1822=IFCCOLUMNTYPE('1ZM95j16j0GxPdU8eOEVQp',$,'65CHS32',$,$,$,$,$,$,$); -#1823=IFCMATERIALPROFILESET($,$,(#1825),$); -#1824=IFCRELASSOCIATESMATERIAL('25EbZMi1X7UAalNRwHfsw4',$,$,$,(#1822),#1823); -#1825=IFCMATERIALPROFILE($,$,#17,#1813,$,$); -#1826=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,2.6); -#1827=IFCBEAMTYPE('1$OHUKVy18FhNSorYlPapL',$,'80CHS26',$,$,$,$,$,$,$); -#1828=IFCMATERIALPROFILESET($,$,(#1830),$); -#1829=IFCRELASSOCIATESMATERIAL('1XvhhdCC14Rv1wOY3yEhJI',$,$,$,(#1827),#1828); -#1830=IFCMATERIALPROFILE($,$,#17,#1826,$,$); -#1831=IFCMEMBERTYPE('3$jIrP5cb4PB13C8cck7VL',$,'80CHS26',$,$,$,$,$,$,$); -#1832=IFCMATERIALPROFILESET($,$,(#1834),$); -#1833=IFCRELASSOCIATESMATERIAL('1Lx3gLsBnEXRfWdd2MXGNP',$,$,$,(#1831),#1832); -#1834=IFCMATERIALPROFILE($,$,#17,#1826,$,$); -#1835=IFCCOLUMNTYPE('0yFxVNVdf9SAJ2KWmHVQ7t',$,'80CHS26',$,$,$,$,$,$,$); -#1836=IFCMATERIALPROFILESET($,$,(#1838),$); -#1837=IFCRELASSOCIATESMATERIAL('0rbJNWmAj9Gg4Gs9p_VzPL',$,$,$,(#1835),#1836); -#1838=IFCMATERIALPROFILE($,$,#17,#1826,$,$); -#1839=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,3.2); -#1840=IFCBEAMTYPE('2PjX6DFFP0gBJ$hE9e1s$Q',$,'80CHS32',$,$,$,$,$,$,$); -#1841=IFCMATERIALPROFILESET($,$,(#1843),$); -#1842=IFCRELASSOCIATESMATERIAL('0cZfAvJEH30xeNZsdDDLGK',$,$,$,(#1840),#1841); -#1843=IFCMATERIALPROFILE($,$,#17,#1839,$,$); -#1844=IFCMEMBERTYPE('1q74aVwu5F_f$_GugSAXeW',$,'80CHS32',$,$,$,$,$,$,$); -#1845=IFCMATERIALPROFILESET($,$,(#1847),$); -#1846=IFCRELASSOCIATESMATERIAL('0z$Y24Bq1BlO_SGNg7KUzX',$,$,$,(#1844),#1845); -#1847=IFCMATERIALPROFILE($,$,#17,#1839,$,$); -#1848=IFCCOLUMNTYPE('3IO0p3arz0cummc6tUQC$i',$,'80CHS32',$,$,$,$,$,$,$); -#1849=IFCMATERIALPROFILESET($,$,(#1851),$); -#1850=IFCRELASSOCIATESMATERIAL('2NouxdSR50$OzqTPptyF0P',$,$,$,(#1848),#1849); -#1851=IFCMATERIALPROFILE($,$,#17,#1839,$,$); -#1852=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,45.,2.6); -#1853=IFCBEAMTYPE('1cAbUvsir88P1na$ZRimVG',$,'90CHS26',$,$,$,$,$,$,$); -#1854=IFCMATERIALPROFILESET($,$,(#1856),$); -#1855=IFCRELASSOCIATESMATERIAL('10g5d0OEv9dB0EwOXBqFmy',$,$,$,(#1853),#1854); -#1856=IFCMATERIALPROFILE($,$,#17,#1852,$,$); -#1857=IFCMEMBERTYPE('0lbWe_2K95dRl0zINzBhXw',$,'90CHS26',$,$,$,$,$,$,$); -#1858=IFCMATERIALPROFILESET($,$,(#1860),$); -#1859=IFCRELASSOCIATESMATERIAL('1kLiv5fpP9CvQ0EQug_uAv',$,$,$,(#1857),#1858); -#1860=IFCMATERIALPROFILE($,$,#17,#1852,$,$); -#1861=IFCCOLUMNTYPE('0SnUGrA_XAlxv5YK4_9fni',$,'90CHS26',$,$,$,$,$,$,$); -#1862=IFCMATERIALPROFILESET($,$,(#1864),$); -#1863=IFCRELASSOCIATESMATERIAL('1oObAM50j3own8r9BmcmFi',$,$,$,(#1861),#1862); -#1864=IFCMATERIALPROFILE($,$,#17,#1852,$,$); -#1865=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,45.,3.2); -#1866=IFCBEAMTYPE('1ahe5_Hyr77O$z06tkNFlX',$,'90CHS32',$,$,$,$,$,$,$); -#1867=IFCMATERIALPROFILESET($,$,(#1869),$); -#1868=IFCRELASSOCIATESMATERIAL('1k4f3NdiH9jgWNugvhqut1',$,$,$,(#1866),#1867); -#1869=IFCMATERIALPROFILE($,$,#17,#1865,$,$); -#1870=IFCMEMBERTYPE('0geHxLNpT0SAqC3b_qrCwg',$,'90CHS32',$,$,$,$,$,$,$); -#1871=IFCMATERIALPROFILESET($,$,(#1873),$); -#1872=IFCRELASSOCIATESMATERIAL('2otSQof218nxHr3ZqD0Wt4',$,$,$,(#1870),#1871); -#1873=IFCMATERIALPROFILE($,$,#17,#1865,$,$); -#1874=IFCCOLUMNTYPE('0JyewqsQvE$e9X9wen25Wn',$,'90CHS32',$,$,$,$,$,$,$); -#1875=IFCMATERIALPROFILESET($,$,(#1877),$); -#1876=IFCRELASSOCIATESMATERIAL('3orDa4mjvAlfkavg3HgI$v',$,$,$,(#1874),#1875); -#1877=IFCMATERIALPROFILE($,$,#17,#1865,$,$); -#1878=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,3.2); -#1879=IFCBEAMTYPE('0VoX9VOxnCTvNTx0dkjqrn',$,'100CHS32',$,$,$,$,$,$,$); -#1880=IFCMATERIALPROFILESET($,$,(#1882),$); -#1881=IFCRELASSOCIATESMATERIAL('11XZoab$j7gQKWiR2ijR27',$,$,$,(#1879),#1880); -#1882=IFCMATERIALPROFILE($,$,#17,#1878,$,$); -#1883=IFCMEMBERTYPE('2AI5O0OG92N8uVxkdfOCyp',$,'100CHS32',$,$,$,$,$,$,$); -#1884=IFCMATERIALPROFILESET($,$,(#1886),$); -#1885=IFCRELASSOCIATESMATERIAL('03yurwHP9FIfVQwJZtp0x$',$,$,$,(#1883),#1884); -#1886=IFCMATERIALPROFILE($,$,#17,#1878,$,$); -#1887=IFCCOLUMNTYPE('2_sAfnYhrBWu0eH48p_dMp',$,'100CHS32',$,$,$,$,$,$,$); -#1888=IFCMATERIALPROFILESET($,$,(#1890),$); -#1889=IFCRELASSOCIATESMATERIAL('1SfBNbe5D06e9QvP0sTR4n',$,$,$,(#1887),#1888); -#1890=IFCMATERIALPROFILE($,$,#17,#1878,$,$); -#1891=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,3.6); -#1892=IFCBEAMTYPE('2VkagMh3XA_vOEtuqEIl0J',$,'100CHS36',$,$,$,$,$,$,$); -#1893=IFCMATERIALPROFILESET($,$,(#1895),$); -#1894=IFCRELASSOCIATESMATERIAL('3F3EVno8nFdxt37OOVn8Sw',$,$,$,(#1892),#1893); -#1895=IFCMATERIALPROFILE($,$,#17,#1891,$,$); -#1896=IFCMEMBERTYPE('10uK7ZZjX0Ogj7T_3z5yRd',$,'100CHS36',$,$,$,$,$,$,$); -#1897=IFCMATERIALPROFILESET($,$,(#1899),$); -#1898=IFCRELASSOCIATESMATERIAL('3INjshKyT2Mgk_nnQxG6Qb',$,$,$,(#1896),#1897); -#1899=IFCMATERIALPROFILE($,$,#17,#1891,$,$); -#1900=IFCCOLUMNTYPE('2VRUPd8lHEq8n$3QGRzhD6',$,'100CHS36',$,$,$,$,$,$,$); -#1901=IFCMATERIALPROFILESET($,$,(#1903),$); -#1902=IFCRELASSOCIATESMATERIAL('1bvf$8QlfEKAk6KjFwo3ax',$,$,$,(#1900),#1901); -#1903=IFCMATERIALPROFILE($,$,#17,#1891,$,$); -#1904=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,62.5,3.); -#1905=IFCBEAMTYPE('26CD0Zprf6buC1ZeIGkqiz',$,'125CHS30',$,$,$,$,$,$,$); -#1906=IFCMATERIALPROFILESET($,$,(#1908),$); -#1907=IFCRELASSOCIATESMATERIAL('15b77zg7rD3fVpN$gQCowM',$,$,$,(#1905),#1906); -#1908=IFCMATERIALPROFILE($,$,#17,#1904,$,$); -#1909=IFCMEMBERTYPE('2$957zKCP6v94awFl5woo7',$,'125CHS30',$,$,$,$,$,$,$); -#1910=IFCMATERIALPROFILESET($,$,(#1912),$); -#1911=IFCRELASSOCIATESMATERIAL('2L17A61En9$epoqCluYrHJ',$,$,$,(#1909),#1910); -#1912=IFCMATERIALPROFILE($,$,#17,#1904,$,$); -#1913=IFCCOLUMNTYPE('0TMwyle1bDVBJonrbMAnTh',$,'125CHS30',$,$,$,$,$,$,$); -#1914=IFCMATERIALPROFILESET($,$,(#1916),$); -#1915=IFCRELASSOCIATESMATERIAL('2kQ1kgOx1CNwioi5WtmApE',$,$,$,(#1913),#1914); -#1916=IFCMATERIALPROFILE($,$,#17,#1904,$,$); -#1917=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,62.5,3.5); -#1918=IFCBEAMTYPE('2lI7Iiz1f5BPaxaj3Iky5n',$,'125CHS35',$,$,$,$,$,$,$); -#1919=IFCMATERIALPROFILESET($,$,(#1921),$); -#1920=IFCRELASSOCIATESMATERIAL('1A5FACqprF09xV1DhYrCzM',$,$,$,(#1918),#1919); -#1921=IFCMATERIALPROFILE($,$,#17,#1917,$,$); -#1922=IFCMEMBERTYPE('2u5yS13LD3lecFg5dfWTEv',$,'125CHS35',$,$,$,$,$,$,$); -#1923=IFCMATERIALPROFILESET($,$,(#1925),$); -#1924=IFCRELASSOCIATESMATERIAL('1mfjZXKx5Ax9j1HutR9Qa8',$,$,$,(#1922),#1923); -#1925=IFCMATERIALPROFILE($,$,#17,#1917,$,$); -#1926=IFCCOLUMNTYPE('2eGi0T7r1C1vfPFTyte5lp',$,'125CHS35',$,$,$,$,$,$,$); -#1927=IFCMATERIALPROFILESET($,$,(#1929),$); -#1928=IFCRELASSOCIATESMATERIAL('3Cja7hsgv4Whzc0Irbi8gX',$,$,$,(#1926),#1927); -#1929=IFCMATERIALPROFILE($,$,#17,#1917,$,$); -#1930=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,3.); -#1931=IFCBEAMTYPE('37qCvs1z9B4AjShwoYMjVs',$,'150CHS30',$,$,$,$,$,$,$); -#1932=IFCMATERIALPROFILESET($,$,(#1934),$); -#1933=IFCRELASSOCIATESMATERIAL('3fb$OiNKbDVBSkDzUnQ9zL',$,$,$,(#1931),#1932); -#1934=IFCMATERIALPROFILE($,$,#17,#1930,$,$); -#1935=IFCMEMBERTYPE('1dNESJNczCzQ2tjwKuo1i3',$,'150CHS30',$,$,$,$,$,$,$); -#1936=IFCMATERIALPROFILESET($,$,(#1938),$); -#1937=IFCRELASSOCIATESMATERIAL('0vykQigQr8xBmDVBWfUdVL',$,$,$,(#1935),#1936); -#1938=IFCMATERIALPROFILE($,$,#17,#1930,$,$); -#1939=IFCCOLUMNTYPE('2Hbyyn7eHDjAUOynLPobG2',$,'150CHS30',$,$,$,$,$,$,$); -#1940=IFCMATERIALPROFILESET($,$,(#1942),$); -#1941=IFCRELASSOCIATESMATERIAL('1jWlkqVUb2aQ23TUnRElvy',$,$,$,(#1939),#1940); -#1942=IFCMATERIALPROFILE($,$,#17,#1930,$,$); -#1943=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,3.5); -#1944=IFCBEAMTYPE('3hEAwmMAD4TuPtG2JesTZC',$,'150CHS35',$,$,$,$,$,$,$); -#1945=IFCMATERIALPROFILESET($,$,(#1947),$); -#1946=IFCRELASSOCIATESMATERIAL('2_Ttam2or9FwEcFvCRcG7W',$,$,$,(#1944),#1945); -#1947=IFCMATERIALPROFILE($,$,#17,#1943,$,$); -#1948=IFCMEMBERTYPE('0EYrLuaMLB4QKM7qANhPE_',$,'150CHS35',$,$,$,$,$,$,$); -#1949=IFCMATERIALPROFILESET($,$,(#1951),$); -#1950=IFCRELASSOCIATESMATERIAL('2CmceLMN570esyiDU4Tmyo',$,$,$,(#1948),#1949); -#1951=IFCMATERIALPROFILE($,$,#17,#1943,$,$); -#1952=IFCCOLUMNTYPE('1KkB6gD8rASAC$jh45EK97',$,'150CHS35',$,$,$,$,$,$,$); -#1953=IFCMATERIALPROFILESET($,$,(#1955),$); -#1954=IFCRELASSOCIATESMATERIAL('05vWRLYh985e9aFjgetGUW',$,$,$,(#1952),#1953); -#1955=IFCMATERIALPROFILE($,$,#17,#1943,$,$); -#1956=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,4.8); -#1957=IFCBEAMTYPE('2pHyNH6cn5KAmTnhhJy04U',$,'168CHS48',$,$,$,$,$,$,$); -#1958=IFCMATERIALPROFILESET($,$,(#1960),$); -#1959=IFCRELASSOCIATESMATERIAL('28LZAuFtL7$QY10RMePWF7',$,$,$,(#1957),#1958); -#1960=IFCMATERIALPROFILE($,$,#17,#1956,$,$); -#1961=IFCMEMBERTYPE('0L808wu3T2pfMKgGl1dw_7',$,'168CHS48',$,$,$,$,$,$,$); -#1962=IFCMATERIALPROFILESET($,$,(#1964),$); -#1963=IFCRELASSOCIATESMATERIAL('3L0bQfrNzFew5T9DdnCUBK',$,$,$,(#1961),#1962); -#1964=IFCMATERIALPROFILE($,$,#17,#1956,$,$); -#1965=IFCCOLUMNTYPE('2fDsFfuab1jxeQ119Uvd2b',$,'168CHS48',$,$,$,$,$,$,$); -#1966=IFCMATERIALPROFILESET($,$,(#1968),$); -#1967=IFCRELASSOCIATESMATERIAL('0txDEYx_P9kfciILP6UscL',$,$,$,(#1965),#1966); -#1968=IFCMATERIALPROFILE($,$,#17,#1956,$,$); -#1969=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,6.4); -#1970=IFCBEAMTYPE('0_AH4lwgj2Uec5JzyBifJQ',$,'168CHS64',$,$,$,$,$,$,$); -#1971=IFCMATERIALPROFILESET($,$,(#1973),$); -#1972=IFCRELASSOCIATESMATERIAL('0KoYncFy92CAGLdQsN4Hi_',$,$,$,(#1970),#1971); -#1973=IFCMATERIALPROFILE($,$,#17,#1969,$,$); -#1974=IFCMEMBERTYPE('2grMeRb514IBnSn4CBZ6uE',$,'168CHS64',$,$,$,$,$,$,$); -#1975=IFCMATERIALPROFILESET($,$,(#1977),$); -#1976=IFCRELASSOCIATESMATERIAL('2k5L03IeD9sOoxvQOL07Uz',$,$,$,(#1974),#1975); -#1977=IFCMATERIALPROFILE($,$,#17,#1969,$,$); -#1978=IFCCOLUMNTYPE('1xIsbGsv51hR3rhqYL0Rl4',$,'168CHS64',$,$,$,$,$,$,$); -#1979=IFCMATERIALPROFILESET($,$,(#1981),$); -#1980=IFCRELASSOCIATESMATERIAL('1CkmEwN5L5Pu7mpIt$ADY3',$,$,$,(#1978),#1979); -#1981=IFCMATERIALPROFILE($,$,#17,#1969,$,$); -#1982=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,7.1); -#1983=IFCBEAMTYPE('26Q6DC73r8BwvAZyakrwfL',$,'168CHS71',$,$,$,$,$,$,$); -#1984=IFCMATERIALPROFILESET($,$,(#1986),$); -#1985=IFCRELASSOCIATESMATERIAL('2Ts1g49EzDBwA1shZBU2p8',$,$,$,(#1983),#1984); -#1986=IFCMATERIALPROFILE($,$,#17,#1982,$,$); -#1987=IFCMEMBERTYPE('2wYMg1$0b9SQSCKbzbLags',$,'168CHS71',$,$,$,$,$,$,$); -#1988=IFCMATERIALPROFILESET($,$,(#1990),$); -#1989=IFCRELASSOCIATESMATERIAL('2fZot1WwXFPPJx9gL8zkDE',$,$,$,(#1987),#1988); -#1990=IFCMATERIALPROFILE($,$,#17,#1982,$,$); -#1991=IFCCOLUMNTYPE('2_vUY7i1f9OAs9X4Pd_97f',$,'168CHS71',$,$,$,$,$,$,$); -#1992=IFCMATERIALPROFILESET($,$,(#1994),$); -#1993=IFCRELASSOCIATESMATERIAL('1RpkPIOB93MftRGBkS_CWI',$,$,$,(#1991),#1992); -#1994=IFCMATERIALPROFILE($,$,#17,#1982,$,$); -#1995=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,11.); -#1996=IFCBEAMTYPE('2YPkKpJu93Ng3s16rRu70Q',$,'168CHS110',$,$,$,$,$,$,$); -#1997=IFCMATERIALPROFILESET($,$,(#1999),$); -#1998=IFCRELASSOCIATESMATERIAL('07iNpJLpb33hkgpuMPl8Fh',$,$,$,(#1996),#1997); -#1999=IFCMATERIALPROFILE($,$,#17,#1995,$,$); -#2000=IFCMEMBERTYPE('0_KzCf5AHCM8xIxa21kw2I',$,'168CHS110',$,$,$,$,$,$,$); -#2001=IFCMATERIALPROFILESET($,$,(#2003),$); -#2002=IFCRELASSOCIATESMATERIAL('3kPQGUHoD4XwtrYaCISVG9',$,$,$,(#2000),#2001); -#2003=IFCMATERIALPROFILE($,$,#17,#1995,$,$); -#2004=IFCCOLUMNTYPE('0uYFsDaiv5c9o3iyDO_V8l',$,'168CHS110',$,$,$,$,$,$,$); -#2005=IFCMATERIALPROFILESET($,$,(#2007),$); -#2006=IFCRELASSOCIATESMATERIAL('1QvDzU_C9ANOPnakzaAlpw',$,$,$,(#2004),#2005); -#2007=IFCMATERIALPROFILE($,$,#17,#1995,$,$); -#2008=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,4.8); -#2009=IFCBEAMTYPE('0yCStFXub9N9p7emXS_Dto',$,'219CHS48',$,$,$,$,$,$,$); -#2010=IFCMATERIALPROFILESET($,$,(#2012),$); -#2011=IFCRELASSOCIATESMATERIAL('2JBOD_g1n8IxKzNag$gC32',$,$,$,(#2009),#2010); -#2012=IFCMATERIALPROFILE($,$,#17,#2008,$,$); -#2013=IFCMEMBERTYPE('3qUNngRd16gR6YB3XnmArw',$,'219CHS48',$,$,$,$,$,$,$); -#2014=IFCMATERIALPROFILESET($,$,(#2016),$); -#2015=IFCRELASSOCIATESMATERIAL('0gGazwZ9v7wwnS32ed4xQj',$,$,$,(#2013),#2014); -#2016=IFCMATERIALPROFILE($,$,#17,#2008,$,$); -#2017=IFCCOLUMNTYPE('0BBB3KM7PE1RcdzzcxVmbM',$,'219CHS48',$,$,$,$,$,$,$); -#2018=IFCMATERIALPROFILESET($,$,(#2020),$); -#2019=IFCRELASSOCIATESMATERIAL('3cf9ttVlH75hCdQc7qf6ME',$,$,$,(#2017),#2018); -#2020=IFCMATERIALPROFILE($,$,#17,#2008,$,$); -#2021=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,6.4); -#2022=IFCBEAMTYPE('1LWMYr6O9AERvq4tv1Ui3o',$,'219CHS64',$,$,$,$,$,$,$); -#2023=IFCMATERIALPROFILESET($,$,(#2025),$); -#2024=IFCRELASSOCIATESMATERIAL('1aRZdppR9BlhBwNy0knVYJ',$,$,$,(#2022),#2023); -#2025=IFCMATERIALPROFILE($,$,#17,#2021,$,$); -#2026=IFCMEMBERTYPE('21k0Wa62DF0hfZ09Q1i3IG',$,'219CHS64',$,$,$,$,$,$,$); -#2027=IFCMATERIALPROFILESET($,$,(#2029),$); -#2028=IFCRELASSOCIATESMATERIAL('38FcUHSzzDVPGijKPQ_nZR',$,$,$,(#2026),#2027); -#2029=IFCMATERIALPROFILE($,$,#17,#2021,$,$); -#2030=IFCCOLUMNTYPE('0069kUgx92axqf58gZ7g_I',$,'219CHS64',$,$,$,$,$,$,$); -#2031=IFCMATERIALPROFILESET($,$,(#2033),$); -#2032=IFCRELASSOCIATESMATERIAL('1Dx6eb02L4PfRWylpADDpR',$,$,$,(#2030),#2031); -#2033=IFCMATERIALPROFILE($,$,#17,#2021,$,$); -#2034=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,8.2); -#2035=IFCBEAMTYPE('19cgYMZ9LDgQaqWujl6RJk',$,'219CHS82',$,$,$,$,$,$,$); -#2036=IFCMATERIALPROFILESET($,$,(#2038),$); -#2037=IFCRELASSOCIATESMATERIAL('1WpdhpFtj9KgXmiTCWSkeZ',$,$,$,(#2035),#2036); -#2038=IFCMATERIALPROFILE($,$,#17,#2034,$,$); -#2039=IFCMEMBERTYPE('3GHG0MG75CSPhufXihfQrG',$,'219CHS82',$,$,$,$,$,$,$); -#2040=IFCMATERIALPROFILESET($,$,(#2042),$); -#2041=IFCRELASSOCIATESMATERIAL('3tiE1fJLT9bQafoOvw1WiU',$,$,$,(#2039),#2040); -#2042=IFCMATERIALPROFILE($,$,#17,#2034,$,$); -#2043=IFCCOLUMNTYPE('2gOhfAAGDEcQTL6sJJQTbh',$,'219CHS82',$,$,$,$,$,$,$); -#2044=IFCMATERIALPROFILESET($,$,(#2046),$); -#2045=IFCRELASSOCIATESMATERIAL('2a3DCs91f0sRWC86yH2JEv',$,$,$,(#2043),#2044); -#2046=IFCMATERIALPROFILE($,$,#17,#2034,$,$); -#2047=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,4.8); -#2048=IFCBEAMTYPE('2Hh$FzEc5EDxYCSH9L5R$d',$,'273CHS48',$,$,$,$,$,$,$); -#2049=IFCMATERIALPROFILESET($,$,(#2051),$); -#2050=IFCRELASSOCIATESMATERIAL('3UCSWpSEPD08wcL2e5lSLU',$,$,$,(#2048),#2049); -#2051=IFCMATERIALPROFILE($,$,#17,#2047,$,$); -#2052=IFCMEMBERTYPE('1XCumYFVj3mAk2sxsPABcp',$,'273CHS48',$,$,$,$,$,$,$); -#2053=IFCMATERIALPROFILESET($,$,(#2055),$); -#2054=IFCRELASSOCIATESMATERIAL('3v$lYXiLPFI86vFHTwf2sm',$,$,$,(#2052),#2053); -#2055=IFCMATERIALPROFILE($,$,#17,#2047,$,$); -#2056=IFCCOLUMNTYPE('3QMeWxpcL80wj_zTD7s3o_',$,'273CHS48',$,$,$,$,$,$,$); -#2057=IFCMATERIALPROFILESET($,$,(#2059),$); -#2058=IFCRELASSOCIATESMATERIAL('1pk5l9JaL9LQyN3tKyx5p9',$,$,$,(#2056),#2057); -#2059=IFCMATERIALPROFILE($,$,#17,#2047,$,$); -#2060=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,6.4); -#2061=IFCBEAMTYPE('2fHEaeFtj2qvFm6Pihz3i$',$,'273CHS64',$,$,$,$,$,$,$); -#2062=IFCMATERIALPROFILESET($,$,(#2064),$); -#2063=IFCRELASSOCIATESMATERIAL('0NeXddmAv8ghjC7SxolHJ2',$,$,$,(#2061),#2062); -#2064=IFCMATERIALPROFILE($,$,#17,#2060,$,$); -#2065=IFCMEMBERTYPE('1v4p0qNRvAZPaN0k8eIsAZ',$,'273CHS64',$,$,$,$,$,$,$); -#2066=IFCMATERIALPROFILESET($,$,(#2068),$); -#2067=IFCRELASSOCIATESMATERIAL('0orL9$HZz3juE06N7i$uXW',$,$,$,(#2065),#2066); -#2068=IFCMATERIALPROFILE($,$,#17,#2060,$,$); -#2069=IFCCOLUMNTYPE('2FvL57AJn1UOKW3Zeoytjv',$,'273CHS64',$,$,$,$,$,$,$); -#2070=IFCMATERIALPROFILESET($,$,(#2072),$); -#2071=IFCRELASSOCIATESMATERIAL('0sl3lR2A14i8Y5DMi2ZNTl',$,$,$,(#2069),#2070); -#2072=IFCMATERIALPROFILE($,$,#17,#2060,$,$); -#2073=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,9.3); -#2074=IFCBEAMTYPE('0XR02BerT5fPi5LJnxbOcP',$,'273CHS93',$,$,$,$,$,$,$); -#2075=IFCMATERIALPROFILESET($,$,(#2077),$); -#2076=IFCRELASSOCIATESMATERIAL('2HTDYMyAP9BBQE4$SjofE7',$,$,$,(#2074),#2075); -#2077=IFCMATERIALPROFILE($,$,#17,#2073,$,$); -#2078=IFCMEMBERTYPE('26g0Hk1Q9008pGJiagZ0my',$,'273CHS93',$,$,$,$,$,$,$); -#2079=IFCMATERIALPROFILESET($,$,(#2081),$); -#2080=IFCRELASSOCIATESMATERIAL('3io5Kl_kHBPfoLMw70hvgo',$,$,$,(#2078),#2079); -#2081=IFCMATERIALPROFILE($,$,#17,#2073,$,$); -#2082=IFCCOLUMNTYPE('1Rcb1AvdH2ifavEoH4blSe',$,'273CHS93',$,$,$,$,$,$,$); -#2083=IFCMATERIALPROFILESET($,$,(#2085),$); -#2084=IFCRELASSOCIATESMATERIAL('0iqK6rbbz869ONZClmAv6Y',$,$,$,(#2082),#2083); -#2085=IFCMATERIALPROFILE($,$,#17,#2073,$,$); -#2086=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,12.7); -#2087=IFCBEAMTYPE('0Y0b4ndbT0yQZ8GbCNdH8$',$,'273CHS127',$,$,$,$,$,$,$); -#2088=IFCMATERIALPROFILESET($,$,(#2090),$); -#2089=IFCRELASSOCIATESMATERIAL('0ZG1EZxOv72QZtSyj$CWUJ',$,$,$,(#2087),#2088); -#2090=IFCMATERIALPROFILE($,$,#17,#2086,$,$); -#2091=IFCMEMBERTYPE('0ZSaFH1P14VOcOGVllrkhM',$,'273CHS127',$,$,$,$,$,$,$); -#2092=IFCMATERIALPROFILESET($,$,(#2094),$); -#2093=IFCRELASSOCIATESMATERIAL('2WITII_U1FIvYAupOnMD6m',$,$,$,(#2091),#2092); -#2094=IFCMATERIALPROFILE($,$,#17,#2086,$,$); -#2095=IFCCOLUMNTYPE('2mVDxvGQT6fPnXs$I$X98Q',$,'273CHS127',$,$,$,$,$,$,$); -#2096=IFCMATERIALPROFILESET($,$,(#2098),$); -#2097=IFCRELASSOCIATESMATERIAL('1eQ4PviqrEJAzpBpp4iEMl',$,$,$,(#2095),#2096); -#2098=IFCMATERIALPROFILE($,$,#17,#2086,$,$); -#2099=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,4.8); -#2100=IFCBEAMTYPE('1EeNHLUs18pgHyRL1HyMU1',$,'324CHS48',$,$,$,$,$,$,$); -#2101=IFCMATERIALPROFILESET($,$,(#2103),$); -#2102=IFCRELASSOCIATESMATERIAL('01OA8qHtD8kPthmLuEaDqx',$,$,$,(#2100),#2101); -#2103=IFCMATERIALPROFILE($,$,#17,#2099,$,$); -#2104=IFCMEMBERTYPE('2dRh4uAlz5EQSIbuFkUcgr',$,'324CHS48',$,$,$,$,$,$,$); -#2105=IFCMATERIALPROFILESET($,$,(#2107),$); -#2106=IFCRELASSOCIATESMATERIAL('3MXejMuVb8lAKO8bu1gZqh',$,$,$,(#2104),#2105); -#2107=IFCMATERIALPROFILE($,$,#17,#2099,$,$); -#2108=IFCCOLUMNTYPE('3bdMtnTbb8NQGqjo0eNNb2',$,'324CHS48',$,$,$,$,$,$,$); -#2109=IFCMATERIALPROFILESET($,$,(#2111),$); -#2110=IFCRELASSOCIATESMATERIAL('31kTg6K3r8PAQuwJki429t',$,$,$,(#2108),#2109); -#2111=IFCMATERIALPROFILE($,$,#17,#2099,$,$); -#2112=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,6.4); -#2113=IFCBEAMTYPE('3T1_bBbmzC7Bl1ymDgQjl2',$,'324CHS64',$,$,$,$,$,$,$); -#2114=IFCMATERIALPROFILESET($,$,(#2116),$); -#2115=IFCRELASSOCIATESMATERIAL('3gcnPa$nr7CPuwKVAPRYpV',$,$,$,(#2113),#2114); -#2116=IFCMATERIALPROFILE($,$,#17,#2112,$,$); -#2117=IFCMEMBERTYPE('2$nqZiBhjAq9aj8X1$oygJ',$,'324CHS64',$,$,$,$,$,$,$); -#2118=IFCMATERIALPROFILESET($,$,(#2120),$); -#2119=IFCRELASSOCIATESMATERIAL('3zKC7EC1H6ig8AGFU6jWVD',$,$,$,(#2117),#2118); -#2120=IFCMATERIALPROFILE($,$,#17,#2112,$,$); -#2121=IFCCOLUMNTYPE('08$ABEMV1ExQa2jqVuESsk',$,'324CHS64',$,$,$,$,$,$,$); -#2122=IFCMATERIALPROFILESET($,$,(#2124),$); -#2123=IFCRELASSOCIATESMATERIAL('2ctbRFiIf86huMTU80gwYy',$,$,$,(#2121),#2122); -#2124=IFCMATERIALPROFILE($,$,#17,#2112,$,$); -#2125=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,9.5); -#2126=IFCBEAMTYPE('3lJ3xtAC19oQWbuIktKcvC',$,'324CHS95',$,$,$,$,$,$,$); -#2127=IFCMATERIALPROFILESET($,$,(#2129),$); -#2128=IFCRELASSOCIATESMATERIAL('2uDPhi4QbFXAfHn54Ifg$G',$,$,$,(#2126),#2127); -#2129=IFCMATERIALPROFILE($,$,#17,#2125,$,$); -#2130=IFCMEMBERTYPE('0YArfMvaX6Z83$5g9BiApN',$,'324CHS95',$,$,$,$,$,$,$); -#2131=IFCMATERIALPROFILESET($,$,(#2133),$); -#2132=IFCRELASSOCIATESMATERIAL('2F6OKO39nEP8x5IpOTjUWQ',$,$,$,(#2130),#2131); -#2133=IFCMATERIALPROFILE($,$,#17,#2125,$,$); -#2134=IFCCOLUMNTYPE('1NOKfQi39AjAtzZGw7mWY5',$,'324CHS95',$,$,$,$,$,$,$); -#2135=IFCMATERIALPROFILESET($,$,(#2137),$); -#2136=IFCRELASSOCIATESMATERIAL('2CV0ypgTnFmeZayxXNL5iM',$,$,$,(#2134),#2135); -#2137=IFCMATERIALPROFILE($,$,#17,#2125,$,$); -#2138=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,12.7); -#2139=IFCBEAMTYPE('1tyYASj3XDtun0NK1AiEFz',$,'324CHS127',$,$,$,$,$,$,$); -#2140=IFCMATERIALPROFILESET($,$,(#2142),$); -#2141=IFCRELASSOCIATESMATERIAL('0umhzRJaz9_8nVhFUtkzZS',$,$,$,(#2139),#2140); -#2142=IFCMATERIALPROFILE($,$,#17,#2138,$,$); -#2143=IFCMEMBERTYPE('3yZA2xtonABB0XW7gxRsN4',$,'324CHS127',$,$,$,$,$,$,$); -#2144=IFCMATERIALPROFILESET($,$,(#2146),$); -#2145=IFCRELASSOCIATESMATERIAL('2waa3m62jC7BoC_R9NM_rV',$,$,$,(#2143),#2144); -#2146=IFCMATERIALPROFILE($,$,#17,#2138,$,$); -#2147=IFCCOLUMNTYPE('0hh3U8W9n4ievXD44pmCvx',$,'324CHS127',$,$,$,$,$,$,$); -#2148=IFCMATERIALPROFILESET($,$,(#2150),$); -#2149=IFCRELASSOCIATESMATERIAL('3kVSyHE$PDPfK2gClHk5pc',$,$,$,(#2147),#2148); -#2150=IFCMATERIALPROFILE($,$,#17,#2138,$,$); -#2151=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,4.8); -#2152=IFCBEAMTYPE('0cq7t3d9TEROFF5cUl1HLc',$,'356CHS48',$,$,$,$,$,$,$); -#2153=IFCMATERIALPROFILESET($,$,(#2155),$); -#2154=IFCRELASSOCIATESMATERIAL('2lS9w1cLD5yhJiraXCEWkV',$,$,$,(#2152),#2153); -#2155=IFCMATERIALPROFILE($,$,#17,#2151,$,$); -#2156=IFCMEMBERTYPE('35XUekBNrFjBGNMwdTyUVN',$,'356CHS48',$,$,$,$,$,$,$); -#2157=IFCMATERIALPROFILESET($,$,(#2159),$); -#2158=IFCRELASSOCIATESMATERIAL('1XgQXHNo18_9GYa_qeEKx2',$,$,$,(#2156),#2157); -#2159=IFCMATERIALPROFILE($,$,#17,#2151,$,$); -#2160=IFCCOLUMNTYPE('1ifF3Ksxr7eBQjVnHT829Y',$,'356CHS48',$,$,$,$,$,$,$); -#2161=IFCMATERIALPROFILESET($,$,(#2163),$); -#2162=IFCRELASSOCIATESMATERIAL('3rU9iwGon9IuTVBqOT_R5f',$,$,$,(#2160),#2161); -#2163=IFCMATERIALPROFILE($,$,#17,#2151,$,$); -#2164=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,6.4); -#2165=IFCBEAMTYPE('0QHjSu9Cv6_fSAIvrYm_ra',$,'356CHS64',$,$,$,$,$,$,$); -#2166=IFCMATERIALPROFILESET($,$,(#2168),$); -#2167=IFCRELASSOCIATESMATERIAL('0MGLiughHCpeprORH8lBrl',$,$,$,(#2165),#2166); -#2168=IFCMATERIALPROFILE($,$,#17,#2164,$,$); -#2169=IFCMEMBERTYPE('0iAmjl7K53lv4No_8v32ec',$,'356CHS64',$,$,$,$,$,$,$); -#2170=IFCMATERIALPROFILESET($,$,(#2172),$); -#2171=IFCRELASSOCIATESMATERIAL('3tjKF6WrzCPwNKBEysX6kI',$,$,$,(#2169),#2170); -#2172=IFCMATERIALPROFILE($,$,#17,#2164,$,$); -#2173=IFCCOLUMNTYPE('1X9ZutoLr5OOBJjELC$4R5',$,'356CHS64',$,$,$,$,$,$,$); -#2174=IFCMATERIALPROFILESET($,$,(#2176),$); -#2175=IFCRELASSOCIATESMATERIAL('1OtOEMz$X6hfeXmpEgy5ZU',$,$,$,(#2173),#2174); -#2176=IFCMATERIALPROFILE($,$,#17,#2164,$,$); -#2177=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,9.5); -#2178=IFCBEAMTYPE('3zX$P10knFYvQhC1M4IkG6',$,'356CHS95',$,$,$,$,$,$,$); -#2179=IFCMATERIALPROFILESET($,$,(#2181),$); -#2180=IFCRELASSOCIATESMATERIAL('3YO6u5XRjAWOcr0lfgOd_i',$,$,$,(#2178),#2179); -#2181=IFCMATERIALPROFILE($,$,#17,#2177,$,$); -#2182=IFCMEMBERTYPE('14RlKQVsvErx5GSj3jyXjL',$,'356CHS95',$,$,$,$,$,$,$); -#2183=IFCMATERIALPROFILESET($,$,(#2185),$); -#2184=IFCRELASSOCIATESMATERIAL('0VucezcYL24fHsBWBuy3xa',$,$,$,(#2182),#2183); -#2185=IFCMATERIALPROFILE($,$,#17,#2177,$,$); -#2186=IFCCOLUMNTYPE('2gh1_g3gPEAv9eFcqW4$p2',$,'356CHS95',$,$,$,$,$,$,$); -#2187=IFCMATERIALPROFILESET($,$,(#2189),$); -#2188=IFCRELASSOCIATESMATERIAL('0vlGNl$O598fQcltXVblKT',$,$,$,(#2186),#2187); -#2189=IFCMATERIALPROFILE($,$,#17,#2177,$,$); -#2190=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,12.7); -#2191=IFCBEAMTYPE('3R9BkqZy1BwAXUQ9Cj8gEW',$,'356CHS127',$,$,$,$,$,$,$); -#2192=IFCMATERIALPROFILESET($,$,(#2194),$); -#2193=IFCRELASSOCIATESMATERIAL('1aCeBMQXL9Ox4NRp6EHm9t',$,$,$,(#2191),#2192); -#2194=IFCMATERIALPROFILE($,$,#17,#2190,$,$); -#2195=IFCMEMBERTYPE('2f0UipYbv7neo1SYCnhlll',$,'356CHS127',$,$,$,$,$,$,$); -#2196=IFCMATERIALPROFILESET($,$,(#2198),$); -#2197=IFCRELASSOCIATESMATERIAL('0nmgsZ5sb01PENnaqSLU3a',$,$,$,(#2195),#2196); -#2198=IFCMATERIALPROFILE($,$,#17,#2190,$,$); -#2199=IFCCOLUMNTYPE('3ievqMyaf7KvTMluo9N6Ya',$,'356CHS127',$,$,$,$,$,$,$); -#2200=IFCMATERIALPROFILESET($,$,(#2202),$); -#2201=IFCRELASSOCIATESMATERIAL('3GK8PSYy52GfNMmmohrL75',$,$,$,(#2199),#2200); -#2202=IFCMATERIALPROFILE($,$,#17,#2190,$,$); -#2203=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,4.8); -#2204=IFCBEAMTYPE('1eAusMjpf71g9UjZtKKa1W',$,'406CHS48',$,$,$,$,$,$,$); -#2205=IFCMATERIALPROFILESET($,$,(#2207),$); -#2206=IFCRELASSOCIATESMATERIAL('3DrfJBIUbDlxyCCBE8qhpC',$,$,$,(#2204),#2205); -#2207=IFCMATERIALPROFILE($,$,#17,#2203,$,$); -#2208=IFCMEMBERTYPE('2VVL7ODjX5mv9VztehHaEF',$,'406CHS48',$,$,$,$,$,$,$); -#2209=IFCMATERIALPROFILESET($,$,(#2211),$); -#2210=IFCRELASSOCIATESMATERIAL('3a9$Xz3iPAuA_f3X1cnhbh',$,$,$,(#2208),#2209); -#2211=IFCMATERIALPROFILE($,$,#17,#2203,$,$); -#2212=IFCCOLUMNTYPE('3$nwSmxcz9cxUfR19WlIzm',$,'406CHS48',$,$,$,$,$,$,$); -#2213=IFCMATERIALPROFILESET($,$,(#2215),$); -#2214=IFCRELASSOCIATESMATERIAL('3qLJxeDqX8CeVhHlT2LGfW',$,$,$,(#2212),#2213); -#2215=IFCMATERIALPROFILE($,$,#17,#2203,$,$); -#2216=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,6.4); -#2217=IFCBEAMTYPE('1zpGOcMXL7zfGSzxXWzl2i',$,'406CHS64',$,$,$,$,$,$,$); -#2218=IFCMATERIALPROFILESET($,$,(#2220),$); -#2219=IFCRELASSOCIATESMATERIAL('3RzckWTOzAzP0gwpPNmXRP',$,$,$,(#2217),#2218); -#2220=IFCMATERIALPROFILE($,$,#17,#2216,$,$); -#2221=IFCMEMBERTYPE('3Ob_qwS75DE88fswyMLV$s',$,'406CHS64',$,$,$,$,$,$,$); -#2222=IFCMATERIALPROFILESET($,$,(#2224),$); -#2223=IFCRELASSOCIATESMATERIAL('3tr2nNFYP0GxpwvYmYIh8$',$,$,$,(#2221),#2222); -#2224=IFCMATERIALPROFILE($,$,#17,#2216,$,$); -#2225=IFCCOLUMNTYPE('3gl9wdPfjE2ulBpJ7j$7ch',$,'406CHS64',$,$,$,$,$,$,$); -#2226=IFCMATERIALPROFILESET($,$,(#2228),$); -#2227=IFCRELASSOCIATESMATERIAL('07m$7hCk55qv4M3xpkgXRT',$,$,$,(#2225),#2226); -#2228=IFCMATERIALPROFILE($,$,#17,#2216,$,$); -#2229=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,9.5); -#2230=IFCBEAMTYPE('3EbFtIB35CrhCfAWUdhI0Y',$,'406CHS95',$,$,$,$,$,$,$); -#2231=IFCMATERIALPROFILESET($,$,(#2233),$); -#2232=IFCRELASSOCIATESMATERIAL('0ljIoml6X9Bv6lambE50MJ',$,$,$,(#2230),#2231); -#2233=IFCMATERIALPROFILE($,$,#17,#2229,$,$); -#2234=IFCMEMBERTYPE('2EjTj5rSz34wHp3BUQ8Csy',$,'406CHS95',$,$,$,$,$,$,$); -#2235=IFCMATERIALPROFILESET($,$,(#2237),$); -#2236=IFCRELASSOCIATESMATERIAL('1Gnb6RXnz6ie71DyOUiy53',$,$,$,(#2234),#2235); -#2237=IFCMATERIALPROFILE($,$,#17,#2229,$,$); -#2238=IFCCOLUMNTYPE('07ax03wvr83PXstEheF5R8',$,'406CHS95',$,$,$,$,$,$,$); -#2239=IFCMATERIALPROFILESET($,$,(#2241),$); -#2240=IFCRELASSOCIATESMATERIAL('1GnzvMSNzFtenAc$C1rEKF',$,$,$,(#2238),#2239); -#2241=IFCMATERIALPROFILE($,$,#17,#2229,$,$); -#2242=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,12.7); -#2243=IFCBEAMTYPE('0t1Wck$oz0Ru7ozpClnUBb',$,'406CHS127',$,$,$,$,$,$,$); -#2244=IFCMATERIALPROFILESET($,$,(#2246),$); -#2245=IFCRELASSOCIATESMATERIAL('32HPwT5G176u8qG9Y2$3Xd',$,$,$,(#2243),#2244); -#2246=IFCMATERIALPROFILE($,$,#17,#2242,$,$); -#2247=IFCMEMBERTYPE('0PMfahHmf0P8cNnCHd$HAN',$,'406CHS127',$,$,$,$,$,$,$); -#2248=IFCMATERIALPROFILESET($,$,(#2250),$); -#2249=IFCRELASSOCIATESMATERIAL('1CwFxkLl54_uiZQ078bBHw',$,$,$,(#2247),#2248); -#2250=IFCMATERIALPROFILE($,$,#17,#2242,$,$); -#2251=IFCCOLUMNTYPE('0KRvbJnMr0iu3Yrqui1prl',$,'406CHS127',$,$,$,$,$,$,$); -#2252=IFCMATERIALPROFILESET($,$,(#2254),$); -#2253=IFCRELASSOCIATESMATERIAL('03bTZyK$1DLuWd3BJGw90N',$,$,$,(#2251),#2252); -#2254=IFCMATERIALPROFILE($,$,#17,#2242,$,$); -#2255=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,6.4); -#2256=IFCBEAMTYPE('01gVs4vYL04fRg88cAEEtA',$,'457CHS64',$,$,$,$,$,$,$); -#2257=IFCMATERIALPROFILESET($,$,(#2259),$); -#2258=IFCRELASSOCIATESMATERIAL('2YvkQKsvD4xPmanWnKW11t',$,$,$,(#2256),#2257); -#2259=IFCMATERIALPROFILE($,$,#17,#2255,$,$); -#2260=IFCMEMBERTYPE('2oCEQ5KN5CyO2p3AscUlPj',$,'457CHS64',$,$,$,$,$,$,$); -#2261=IFCMATERIALPROFILESET($,$,(#2263),$); -#2262=IFCRELASSOCIATESMATERIAL('2GbmB$gITAUAB2NVzQoAW6',$,$,$,(#2260),#2261); -#2263=IFCMATERIALPROFILE($,$,#17,#2255,$,$); -#2264=IFCCOLUMNTYPE('31LIWxTvv0e9f2aEXguruJ',$,'457CHS64',$,$,$,$,$,$,$); -#2265=IFCMATERIALPROFILESET($,$,(#2267),$); -#2266=IFCRELASSOCIATESMATERIAL('25jONVyaf0K959n3efIR3G',$,$,$,(#2264),#2265); -#2267=IFCMATERIALPROFILE($,$,#17,#2255,$,$); -#2268=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,9.5); -#2269=IFCBEAMTYPE('0yTW_ifEz06h995VxWOAaN',$,'457CHS95',$,$,$,$,$,$,$); -#2270=IFCMATERIALPROFILESET($,$,(#2272),$); -#2271=IFCRELASSOCIATESMATERIAL('2i5BUUmp97xBPG$p0LPQY6',$,$,$,(#2269),#2270); -#2272=IFCMATERIALPROFILE($,$,#17,#2268,$,$); -#2273=IFCMEMBERTYPE('3xVQl6tff2HQda4uLqLGPM',$,'457CHS95',$,$,$,$,$,$,$); -#2274=IFCMATERIALPROFILESET($,$,(#2276),$); -#2275=IFCRELASSOCIATESMATERIAL('3rL2_hkAP2HBDAeGUty$Iz',$,$,$,(#2273),#2274); -#2276=IFCMATERIALPROFILE($,$,#17,#2268,$,$); -#2277=IFCCOLUMNTYPE('1yhOAP52z6tBW8MxEES5tU',$,'457CHS95',$,$,$,$,$,$,$); -#2278=IFCMATERIALPROFILESET($,$,(#2280),$); -#2279=IFCRELASSOCIATESMATERIAL('1oXAYqDJT7DBJxKoiixngQ',$,$,$,(#2277),#2278); -#2280=IFCMATERIALPROFILE($,$,#17,#2268,$,$); -#2281=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,12.7); -#2282=IFCBEAMTYPE('310ICZN2r9FviG9neQSmdo',$,'457CHS127',$,$,$,$,$,$,$); -#2283=IFCMATERIALPROFILESET($,$,(#2285),$); -#2284=IFCRELASSOCIATESMATERIAL('3$DWj3SML7pxapD8tYYwpC',$,$,$,(#2282),#2283); -#2285=IFCMATERIALPROFILE($,$,#17,#2281,$,$); -#2286=IFCMEMBERTYPE('3lMWIYY2v9i9YcX2SkTdrc',$,'457CHS127',$,$,$,$,$,$,$); -#2287=IFCMATERIALPROFILESET($,$,(#2289),$); -#2288=IFCRELASSOCIATESMATERIAL('3yiGbREcfFsPAjNGEO$yYE',$,$,$,(#2286),#2287); -#2289=IFCMATERIALPROFILE($,$,#17,#2281,$,$); -#2290=IFCCOLUMNTYPE('31YlqkLwz1iOsDZbZRfSde',$,'457CHS127',$,$,$,$,$,$,$); -#2291=IFCMATERIALPROFILESET($,$,(#2293),$); -#2292=IFCRELASSOCIATESMATERIAL('0Q7HQ$PAnDewIhp0Zl7vzu',$,$,$,(#2290),#2291); -#2293=IFCMATERIALPROFILE($,$,#17,#2281,$,$); -#2294=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,6.4); -#2295=IFCBEAMTYPE('1InAyBVunD99NIBVBFU8nI',$,'508CHS64',$,$,$,$,$,$,$); -#2296=IFCMATERIALPROFILESET($,$,(#2298),$); -#2297=IFCRELASSOCIATESMATERIAL('0qKVsl4r14t8r3fhl4$QdG',$,$,$,(#2295),#2296); -#2298=IFCMATERIALPROFILE($,$,#17,#2294,$,$); -#2299=IFCMEMBERTYPE('28f4$$N6T3EvLLlvd8kfHa',$,'508CHS64',$,$,$,$,$,$,$); -#2300=IFCMATERIALPROFILESET($,$,(#2302),$); -#2301=IFCRELASSOCIATESMATERIAL('342dH0Yfj6Ex49tMhdLJQM',$,$,$,(#2299),#2300); -#2302=IFCMATERIALPROFILE($,$,#17,#2294,$,$); -#2303=IFCCOLUMNTYPE('2YZkxUlpX9BhVHccRQod57',$,'508CHS64',$,$,$,$,$,$,$); -#2304=IFCMATERIALPROFILESET($,$,(#2306),$); -#2305=IFCRELASSOCIATESMATERIAL('3xRDEQAar7oPH6jgRGyAnY',$,$,$,(#2303),#2304); -#2306=IFCMATERIALPROFILE($,$,#17,#2294,$,$); -#2307=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,9.5); -#2308=IFCBEAMTYPE('0iWnNknWn6O9oyuFksNvHp',$,'508CHS95',$,$,$,$,$,$,$); -#2309=IFCMATERIALPROFILESET($,$,(#2311),$); -#2310=IFCRELASSOCIATESMATERIAL('2ZiPa6f99DyuiYOdw6bPKl',$,$,$,(#2308),#2309); -#2311=IFCMATERIALPROFILE($,$,#17,#2307,$,$); -#2312=IFCMEMBERTYPE('0LA7tyOrrAjRvydvckQYBg',$,'508CHS95',$,$,$,$,$,$,$); -#2313=IFCMATERIALPROFILESET($,$,(#2315),$); -#2314=IFCRELASSOCIATESMATERIAL('1UN4IBpYP2m9LTH5OkLthk',$,$,$,(#2312),#2313); -#2315=IFCMATERIALPROFILE($,$,#17,#2307,$,$); -#2316=IFCCOLUMNTYPE('2$tMVi8nX6tQ4yUO$QSDMK',$,'508CHS95',$,$,$,$,$,$,$); -#2317=IFCMATERIALPROFILESET($,$,(#2319),$); -#2318=IFCRELASSOCIATESMATERIAL('32KfRZRdfCG8oSt8AmfqfZ',$,$,$,(#2316),#2317); -#2319=IFCMATERIALPROFILE($,$,#17,#2307,$,$); -#2320=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,12.7); -#2321=IFCBEAMTYPE('3SCSipn7TFsBUb4eSRN0Gg',$,'508CHS127',$,$,$,$,$,$,$); -#2322=IFCMATERIALPROFILESET($,$,(#2324),$); -#2323=IFCRELASSOCIATESMATERIAL('0fkNbWaWj8QhjmSrlhoB7I',$,$,$,(#2321),#2322); -#2324=IFCMATERIALPROFILE($,$,#17,#2320,$,$); -#2325=IFCMEMBERTYPE('3xsDrQrHr6YBGB62Cb0iGQ',$,'508CHS127',$,$,$,$,$,$,$); -#2326=IFCMATERIALPROFILESET($,$,(#2328),$); -#2327=IFCRELASSOCIATESMATERIAL('1HXmInEvj3MR82LVU7o5QD',$,$,$,(#2325),#2326); -#2328=IFCMATERIALPROFILE($,$,#17,#2320,$,$); -#2329=IFCCOLUMNTYPE('0fV9ArAWX4kezm6QQ$biy$',$,'508CHS127',$,$,$,$,$,$,$); -#2330=IFCMATERIALPROFILESET($,$,(#2332),$); -#2331=IFCRELASSOCIATESMATERIAL('0BmScOL3rEUuCgFe$3Ijv8',$,$,$,(#2329),#2330); -#2332=IFCMATERIALPROFILE($,$,#17,#2320,$,$); -#2333=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,6.4); -#2334=IFCBEAMTYPE('3P9m1ttMHBlvIG0hmhtNZd',$,'610CHS64',$,$,$,$,$,$,$); -#2335=IFCMATERIALPROFILESET($,$,(#2337),$); -#2336=IFCRELASSOCIATESMATERIAL('33R0iYWI16cRAhy7jfA8qj',$,$,$,(#2334),#2335); -#2337=IFCMATERIALPROFILE($,$,#17,#2333,$,$); -#2338=IFCMEMBERTYPE('2v5iEVjCb5dwHEoYXZoOMP',$,'610CHS64',$,$,$,$,$,$,$); -#2339=IFCMATERIALPROFILESET($,$,(#2341),$); -#2340=IFCRELASSOCIATESMATERIAL('295stVNkTD6gHtRGSVMqex',$,$,$,(#2338),#2339); -#2341=IFCMATERIALPROFILE($,$,#17,#2333,$,$); -#2342=IFCCOLUMNTYPE('03hz7YOAX4mfjKhNC0LqIV',$,'610CHS64',$,$,$,$,$,$,$); -#2343=IFCMATERIALPROFILESET($,$,(#2345),$); -#2344=IFCRELASSOCIATESMATERIAL('22uFuQ7F5Em8Am0AiykBz1',$,$,$,(#2342),#2343); -#2345=IFCMATERIALPROFILE($,$,#17,#2333,$,$); -#2346=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,9.5); -#2347=IFCBEAMTYPE('3z_s7wcOX8ov7ih8sEm7vc',$,'610CHS95',$,$,$,$,$,$,$); -#2348=IFCMATERIALPROFILESET($,$,(#2350),$); -#2349=IFCRELASSOCIATESMATERIAL('0FoIwfsab8WPBRuAuXueDM',$,$,$,(#2347),#2348); -#2350=IFCMATERIALPROFILE($,$,#17,#2346,$,$); -#2351=IFCMEMBERTYPE('1gYxP8rNr9Tfixp9VpDXep',$,'610CHS95',$,$,$,$,$,$,$); -#2352=IFCMATERIALPROFILESET($,$,(#2354),$); -#2353=IFCRELASSOCIATESMATERIAL('2FYAhctZXCDQQHUTObHPys',$,$,$,(#2351),#2352); -#2354=IFCMATERIALPROFILE($,$,#17,#2346,$,$); -#2355=IFCCOLUMNTYPE('3WpHpFGtr1ZuuzRpVffNWv',$,'610CHS95',$,$,$,$,$,$,$); -#2356=IFCMATERIALPROFILESET($,$,(#2358),$); -#2357=IFCRELASSOCIATESMATERIAL('2Z45amIK19NfHx5ukAmYhq',$,$,$,(#2355),#2356); -#2358=IFCMATERIALPROFILE($,$,#17,#2346,$,$); -#2359=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,12.7); -#2360=IFCBEAMTYPE('1z1HmZXf52y89OktQHFcJN',$,'610CHS127',$,$,$,$,$,$,$); -#2361=IFCMATERIALPROFILESET($,$,(#2363),$); -#2362=IFCRELASSOCIATESMATERIAL('3kYDj8Hsj6eRASMWi75gMo',$,$,$,(#2360),#2361); -#2363=IFCMATERIALPROFILE($,$,#17,#2359,$,$); -#2364=IFCMEMBERTYPE('0ov1xMOmbARATE8NxzqoJ_',$,'610CHS127',$,$,$,$,$,$,$); -#2365=IFCMATERIALPROFILESET($,$,(#2367),$); -#2366=IFCRELASSOCIATESMATERIAL('3IAWMpR8vBL8B9QLFG_ABv',$,$,$,(#2364),#2365); -#2367=IFCMATERIALPROFILE($,$,#17,#2359,$,$); -#2368=IFCCOLUMNTYPE('33xefWCw59KBm8SxNM3CD1',$,'610CHS127',$,$,$,$,$,$,$); -#2369=IFCMATERIALPROFILESET($,$,(#2371),$); -#2370=IFCRELASSOCIATESMATERIAL('3E62I5Isb6lQztCWUuu1lA',$,$,$,(#2368),#2369); -#2371=IFCMATERIALPROFILE($,$,#17,#2359,$,$); -#2372=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,4.); -#2373=IFCBEAMTYPE('1F3K1bG1z94BAqp6WQWiuy',$,'168CHS40',$,$,$,$,$,$,$); -#2374=IFCMATERIALPROFILESET($,$,(#2376),$); -#2375=IFCRELASSOCIATESMATERIAL('0JcLgXRZ5CawtXAJD8tPDP',$,$,$,(#2373),#2374); -#2376=IFCMATERIALPROFILE($,$,#17,#2372,$,$); -#2377=IFCMEMBERTYPE('347gSmNNX9RApxTmYgwTF$',$,'168CHS40',$,$,$,$,$,$,$); -#2378=IFCMATERIALPROFILESET($,$,(#2380),$); -#2379=IFCRELASSOCIATESMATERIAL('3NlYyg9EjB_gVnGyRrnK5U',$,$,$,(#2377),#2378); -#2380=IFCMATERIALPROFILE($,$,#17,#2372,$,$); -#2381=IFCCOLUMNTYPE('0LUMe_v1T97uektFDX_6Ye',$,'168CHS40',$,$,$,$,$,$,$); -#2382=IFCMATERIALPROFILESET($,$,(#2384),$); -#2383=IFCRELASSOCIATESMATERIAL('0GmoyGoYL3_Ax7dduHRGNC',$,$,$,(#2381),#2382); -#2384=IFCMATERIALPROFILE($,$,#17,#2372,$,$); -#2385=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,5.); -#2386=IFCBEAMTYPE('192awj8ez2$BrBwbxWWCE4',$,'168CHS50',$,$,$,$,$,$,$); -#2387=IFCMATERIALPROFILESET($,$,(#2389),$); -#2388=IFCRELASSOCIATESMATERIAL('3i5qWKEP17_gfZIRDe_6r9',$,$,$,(#2386),#2387); -#2389=IFCMATERIALPROFILE($,$,#17,#2385,$,$); -#2390=IFCMEMBERTYPE('0e928ZiRj3sgkpmKdzYyx5',$,'168CHS50',$,$,$,$,$,$,$); -#2391=IFCMATERIALPROFILESET($,$,(#2393),$); -#2392=IFCRELASSOCIATESMATERIAL('1wbq770HTEH98xygtt2tAh',$,$,$,(#2390),#2391); -#2393=IFCMATERIALPROFILE($,$,#17,#2385,$,$); -#2394=IFCCOLUMNTYPE('03hsPpXtL3aPz9nex_BIgc',$,'168CHS50',$,$,$,$,$,$,$); -#2395=IFCMATERIALPROFILESET($,$,(#2397),$); -#2396=IFCRELASSOCIATESMATERIAL('0rWJ1Npz55wRHNbHcj8APp',$,$,$,(#2394),#2395); -#2397=IFCMATERIALPROFILE($,$,#17,#2385,$,$); -#2398=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,6.); -#2399=IFCBEAMTYPE('2tRLyi_Az1eBNFT1ZuedHn',$,'168CHS60',$,$,$,$,$,$,$); -#2400=IFCMATERIALPROFILESET($,$,(#2402),$); -#2401=IFCRELASSOCIATESMATERIAL('0Zop_tU79EIP7p9Cqw13Ix',$,$,$,(#2399),#2400); -#2402=IFCMATERIALPROFILE($,$,#17,#2398,$,$); -#2403=IFCMEMBERTYPE('3jXd2wXtz6gOyMryCn8LLJ',$,'168CHS60',$,$,$,$,$,$,$); -#2404=IFCMATERIALPROFILESET($,$,(#2406),$); -#2405=IFCRELASSOCIATESMATERIAL('2ZJbLm7ib0tBAtdLl4tghC',$,$,$,(#2403),#2404); -#2406=IFCMATERIALPROFILE($,$,#17,#2398,$,$); -#2407=IFCCOLUMNTYPE('3PBuG7bjPE9eQWi8Q1UxKc',$,'168CHS60',$,$,$,$,$,$,$); -#2408=IFCMATERIALPROFILESET($,$,(#2410),$); -#2409=IFCRELASSOCIATESMATERIAL('0wItonJD50VRfdcwzFqJzk',$,$,$,(#2407),#2408); -#2410=IFCMATERIALPROFILE($,$,#17,#2398,$,$); -#2411=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,8.); -#2412=IFCBEAMTYPE('1lQS0OcF90WfO8mKHWDhMB',$,'168CHS80',$,$,$,$,$,$,$); -#2413=IFCMATERIALPROFILESET($,$,(#2415),$); -#2414=IFCRELASSOCIATESMATERIAL('3Zqr0U_L1Egev_ujzEETrG',$,$,$,(#2412),#2413); -#2415=IFCMATERIALPROFILE($,$,#17,#2411,$,$); -#2416=IFCMEMBERTYPE('0kS4QkoobDhg2uZJzjkZbI',$,'168CHS80',$,$,$,$,$,$,$); -#2417=IFCMATERIALPROFILESET($,$,(#2419),$); -#2418=IFCRELASSOCIATESMATERIAL('0MJaLy4rnBD9dag9rPmbMQ',$,$,$,(#2416),#2417); -#2419=IFCMATERIALPROFILE($,$,#17,#2411,$,$); -#2420=IFCCOLUMNTYPE('1JE4XHXFf7RQ4$O7p3W_Xi',$,'168CHS80',$,$,$,$,$,$,$); -#2421=IFCMATERIALPROFILESET($,$,(#2423),$); -#2422=IFCRELASSOCIATESMATERIAL('29$r6MSIT8Vu1wcJYVPRM8',$,$,$,(#2420),#2421); -#2423=IFCMATERIALPROFILE($,$,#17,#2411,$,$); -#2424=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,10.); -#2425=IFCBEAMTYPE('1jfZx1EAv6gvk16h3$RmnF',$,'168CHS100',$,$,$,$,$,$,$); -#2426=IFCMATERIALPROFILESET($,$,(#2428),$); -#2427=IFCRELASSOCIATESMATERIAL('1qTaqPT2vBFu261S8vK4zQ',$,$,$,(#2425),#2426); -#2428=IFCMATERIALPROFILE($,$,#17,#2424,$,$); -#2429=IFCMEMBERTYPE('0bqPFwetr7rureh2n$w6DZ',$,'168CHS100',$,$,$,$,$,$,$); -#2430=IFCMATERIALPROFILESET($,$,(#2432),$); -#2431=IFCRELASSOCIATESMATERIAL('3KFN9PJIT8ERf1TZ$AO0NP',$,$,$,(#2429),#2430); -#2432=IFCMATERIALPROFILE($,$,#17,#2424,$,$); -#2433=IFCCOLUMNTYPE('2s0XaKxVvA4vkRvg_1xb7c',$,'168CHS100',$,$,$,$,$,$,$); -#2434=IFCMATERIALPROFILESET($,$,(#2436),$); -#2435=IFCRELASSOCIATESMATERIAL('0QOF8MXS566BhjHRMIk5p0',$,$,$,(#2433),#2434); -#2436=IFCMATERIALPROFILE($,$,#17,#2424,$,$); -#2437=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,5.); -#2438=IFCBEAMTYPE('2K07Sl_fjCGPGIHplz0aDV',$,'219CHS50',$,$,$,$,$,$,$); -#2439=IFCMATERIALPROFILESET($,$,(#2441),$); -#2440=IFCRELASSOCIATESMATERIAL('2Fcjz5_X11vANxkzgPnTcR',$,$,$,(#2438),#2439); -#2441=IFCMATERIALPROFILE($,$,#17,#2437,$,$); -#2442=IFCMEMBERTYPE('2snc4uga17P8AdOhREStCj',$,'219CHS50',$,$,$,$,$,$,$); -#2443=IFCMATERIALPROFILESET($,$,(#2445),$); -#2444=IFCRELASSOCIATESMATERIAL('1A7qama4XDsO_vOejLI61G',$,$,$,(#2442),#2443); -#2445=IFCMATERIALPROFILE($,$,#17,#2437,$,$); -#2446=IFCCOLUMNTYPE('3LB3$2bl9CoRzuear10Tfp',$,'219CHS50',$,$,$,$,$,$,$); -#2447=IFCMATERIALPROFILESET($,$,(#2449),$); -#2448=IFCRELASSOCIATESMATERIAL('20BJj_BNH7aAptGD2aGjhM',$,$,$,(#2446),#2447); -#2449=IFCMATERIALPROFILE($,$,#17,#2437,$,$); -#2450=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,6.); -#2451=IFCBEAMTYPE('0nYstS3hzFBQ_iC56ixhet',$,'219CHS60',$,$,$,$,$,$,$); -#2452=IFCMATERIALPROFILESET($,$,(#2454),$); -#2453=IFCRELASSOCIATESMATERIAL('2juQx5Ev1EBPYSpnhOMNoM',$,$,$,(#2451),#2452); -#2454=IFCMATERIALPROFILE($,$,#17,#2450,$,$); -#2455=IFCMEMBERTYPE('0d7PxF1BT4lASH8lVKnp4t',$,'219CHS60',$,$,$,$,$,$,$); -#2456=IFCMATERIALPROFILESET($,$,(#2458),$); -#2457=IFCRELASSOCIATESMATERIAL('077x5uwOz3bhFx9dYIooIl',$,$,$,(#2455),#2456); -#2458=IFCMATERIALPROFILE($,$,#17,#2450,$,$); -#2459=IFCCOLUMNTYPE('0qWk_mH3X9DQOvfseqOgwT',$,'219CHS60',$,$,$,$,$,$,$); -#2460=IFCMATERIALPROFILESET($,$,(#2462),$); -#2461=IFCRELASSOCIATESMATERIAL('2CvOBX9ab4mhfbiQjDCoOO',$,$,$,(#2459),#2460); -#2462=IFCMATERIALPROFILE($,$,#17,#2450,$,$); -#2463=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,8.); -#2464=IFCBEAMTYPE('3nmXC45vf5_xVPsrUnrQPJ',$,'219CHS80',$,$,$,$,$,$,$); -#2465=IFCMATERIALPROFILESET($,$,(#2467),$); -#2466=IFCRELASSOCIATESMATERIAL('2XuBU6Ybf3vgbNKspCLSOJ',$,$,$,(#2464),#2465); -#2467=IFCMATERIALPROFILE($,$,#17,#2463,$,$); -#2468=IFCMEMBERTYPE('3oOY$ifUb5tui21QlnmQZi',$,'219CHS80',$,$,$,$,$,$,$); -#2469=IFCMATERIALPROFILESET($,$,(#2471),$); -#2470=IFCRELASSOCIATESMATERIAL('2qPzRJ1PD2IPxJkwIi85am',$,$,$,(#2468),#2469); -#2471=IFCMATERIALPROFILE($,$,#17,#2463,$,$); -#2472=IFCCOLUMNTYPE('1DTEPzR3r83hqfHf6xDcRy',$,'219CHS80',$,$,$,$,$,$,$); -#2473=IFCMATERIALPROFILESET($,$,(#2475),$); -#2474=IFCRELASSOCIATESMATERIAL('1hivzoSF59aOEBewlspNWm',$,$,$,(#2472),#2473); -#2475=IFCMATERIALPROFILE($,$,#17,#2463,$,$); -#2476=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,10.); -#2477=IFCBEAMTYPE('2aPPLmr$HA1wWNbTDoSBOz',$,'219CHS100',$,$,$,$,$,$,$); -#2478=IFCMATERIALPROFILESET($,$,(#2480),$); -#2479=IFCRELASSOCIATESMATERIAL('2KM6NZI893$RCZNMn$Qqn9',$,$,$,(#2477),#2478); -#2480=IFCMATERIALPROFILE($,$,#17,#2476,$,$); -#2481=IFCMEMBERTYPE('3U7dp1n0zFQB3EZDRUQ9ly',$,'219CHS100',$,$,$,$,$,$,$); -#2482=IFCMATERIALPROFILESET($,$,(#2484),$); -#2483=IFCRELASSOCIATESMATERIAL('3oMpsA0C1D$ONVxsJSQk10',$,$,$,(#2481),#2482); -#2484=IFCMATERIALPROFILE($,$,#17,#2476,$,$); -#2485=IFCCOLUMNTYPE('0buw$I$6nEnxONzGSHSC6p',$,'219CHS100',$,$,$,$,$,$,$); -#2486=IFCMATERIALPROFILESET($,$,(#2488),$); -#2487=IFCRELASSOCIATESMATERIAL('1YKbfD7o19ler9TixjKURf',$,$,$,(#2485),#2486); -#2488=IFCMATERIALPROFILE($,$,#17,#2476,$,$); -#2489=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,12.5); -#2490=IFCBEAMTYPE('2o75yXGdjBW8QSbwjDyrUd',$,'219CHS125',$,$,$,$,$,$,$); -#2491=IFCMATERIALPROFILESET($,$,(#2493),$); -#2492=IFCRELASSOCIATESMATERIAL('24f_f3ZUb1VANXOv$HcaUF',$,$,$,(#2490),#2491); -#2493=IFCMATERIALPROFILE($,$,#17,#2489,$,$); -#2494=IFCMEMBERTYPE('2UKDnjkkX4ovTS0KLXKqBX',$,'219CHS125',$,$,$,$,$,$,$); -#2495=IFCMATERIALPROFILESET($,$,(#2497),$); -#2496=IFCRELASSOCIATESMATERIAL('22U9rtT9T6MPtMgtU8pGWX',$,$,$,(#2494),#2495); -#2497=IFCMATERIALPROFILE($,$,#17,#2489,$,$); -#2498=IFCCOLUMNTYPE('3yyIfT9RXBHfSmvVczCzM8',$,'219CHS125',$,$,$,$,$,$,$); -#2499=IFCMATERIALPROFILESET($,$,(#2501),$); -#2500=IFCRELASSOCIATESMATERIAL('3GsBb7iPz33xe9FtmkLX9t',$,$,$,(#2498),#2499); -#2501=IFCMATERIALPROFILE($,$,#17,#2489,$,$); -#2502=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,5.); -#2503=IFCBEAMTYPE('2uV46$3$vCwfpNjJWhz2B4',$,'273CHS50',$,$,$,$,$,$,$); -#2504=IFCMATERIALPROFILESET($,$,(#2506),$); -#2505=IFCRELASSOCIATESMATERIAL('3Lf3yOICj1Nh1UcCiLPfF7',$,$,$,(#2503),#2504); -#2506=IFCMATERIALPROFILE($,$,#17,#2502,$,$); -#2507=IFCMEMBERTYPE('24L1qUo154WPdUHN54nDVk',$,'273CHS50',$,$,$,$,$,$,$); -#2508=IFCMATERIALPROFILESET($,$,(#2510),$); -#2509=IFCRELASSOCIATESMATERIAL('3_GqP7y6n7svDpUuo73HBt',$,$,$,(#2507),#2508); -#2510=IFCMATERIALPROFILE($,$,#17,#2502,$,$); -#2511=IFCCOLUMNTYPE('06DAnC_s949gaInyqP7kBy',$,'273CHS50',$,$,$,$,$,$,$); -#2512=IFCMATERIALPROFILESET($,$,(#2514),$); -#2513=IFCRELASSOCIATESMATERIAL('2hz6UXC_T8vuSApl9NDc1o',$,$,$,(#2511),#2512); -#2514=IFCMATERIALPROFILE($,$,#17,#2502,$,$); -#2515=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,6.); -#2516=IFCBEAMTYPE('1A6tfVjFD5681VPnCppTDC',$,'273CHS60',$,$,$,$,$,$,$); -#2517=IFCMATERIALPROFILESET($,$,(#2519),$); -#2518=IFCRELASSOCIATESMATERIAL('3qphExZG9EuRVO_NA0iqSv',$,$,$,(#2516),#2517); -#2519=IFCMATERIALPROFILE($,$,#17,#2515,$,$); -#2520=IFCMEMBERTYPE('2PhQnrcW9EDub3zymow3nJ',$,'273CHS60',$,$,$,$,$,$,$); -#2521=IFCMATERIALPROFILESET($,$,(#2523),$); -#2522=IFCRELASSOCIATESMATERIAL('3uFojGG0n3F9uFSm46l9E2',$,$,$,(#2520),#2521); -#2523=IFCMATERIALPROFILE($,$,#17,#2515,$,$); -#2524=IFCCOLUMNTYPE('2In1pn_k5Ae9YBmILQgjCZ',$,'273CHS60',$,$,$,$,$,$,$); -#2525=IFCMATERIALPROFILESET($,$,(#2527),$); -#2526=IFCRELASSOCIATESMATERIAL('3dEX5mwdTAxvgJdkawXIOi',$,$,$,(#2524),#2525); -#2527=IFCMATERIALPROFILE($,$,#17,#2515,$,$); -#2528=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,8.); -#2529=IFCBEAMTYPE('11eLYvtjb4MujCLXJJ8$rv',$,'273CHS80',$,$,$,$,$,$,$); -#2530=IFCMATERIALPROFILESET($,$,(#2532),$); -#2531=IFCRELASSOCIATESMATERIAL('0nV1QxenfBJ9Xtc2HeCQm_',$,$,$,(#2529),#2530); -#2532=IFCMATERIALPROFILE($,$,#17,#2528,$,$); -#2533=IFCMEMBERTYPE('0NszVMtSD44vBM55Xee0$L',$,'273CHS80',$,$,$,$,$,$,$); -#2534=IFCMATERIALPROFILESET($,$,(#2536),$); -#2535=IFCRELASSOCIATESMATERIAL('0hnSSGm_T6MvkEY0te6L2R',$,$,$,(#2533),#2534); -#2536=IFCMATERIALPROFILE($,$,#17,#2528,$,$); -#2537=IFCCOLUMNTYPE('286aKKfQnCm9RI1ckTBV6Z',$,'273CHS80',$,$,$,$,$,$,$); -#2538=IFCMATERIALPROFILESET($,$,(#2540),$); -#2539=IFCRELASSOCIATESMATERIAL('2CEm6JCCvCfgsF4JlLbJzm',$,$,$,(#2537),#2538); -#2540=IFCMATERIALPROFILE($,$,#17,#2528,$,$); -#2541=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,10.); -#2542=IFCBEAMTYPE('2E6FRIeXX1bOoJcf7zlyms',$,'273CHS100',$,$,$,$,$,$,$); -#2543=IFCMATERIALPROFILESET($,$,(#2545),$); -#2544=IFCRELASSOCIATESMATERIAL('0uneKvc9T70wBh0_I9qrZ5',$,$,$,(#2542),#2543); -#2545=IFCMATERIALPROFILE($,$,#17,#2541,$,$); -#2546=IFCMEMBERTYPE('2Z4QEgel926vN7rQ5bE_Nb',$,'273CHS100',$,$,$,$,$,$,$); -#2547=IFCMATERIALPROFILESET($,$,(#2549),$); -#2548=IFCRELASSOCIATESMATERIAL('1sJqWl$7nFT8YDIV62rQLs',$,$,$,(#2546),#2547); -#2549=IFCMATERIALPROFILE($,$,#17,#2541,$,$); -#2550=IFCCOLUMNTYPE('3$yZ4IZurAUgfiL9rmgz9U',$,'273CHS100',$,$,$,$,$,$,$); -#2551=IFCMATERIALPROFILESET($,$,(#2553),$); -#2552=IFCRELASSOCIATESMATERIAL('3pSoWqX9zCNfzrWCabiRBd',$,$,$,(#2550),#2551); -#2553=IFCMATERIALPROFILE($,$,#17,#2541,$,$); -#2554=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.55,12.5); -#2555=IFCBEAMTYPE('0d8roT$lL1Ru$s$HFagyWl',$,'273CHS125',$,$,$,$,$,$,$); -#2556=IFCMATERIALPROFILESET($,$,(#2558),$); -#2557=IFCRELASSOCIATESMATERIAL('0NNkpQ0cz1YxcH1TDBF28B',$,$,$,(#2555),#2556); -#2558=IFCMATERIALPROFILE($,$,#17,#2554,$,$); -#2559=IFCMEMBERTYPE('1sJHdxSvj5YgSdwH$OtL2x',$,'273CHS125',$,$,$,$,$,$,$); -#2560=IFCMATERIALPROFILESET($,$,(#2562),$); -#2561=IFCRELASSOCIATESMATERIAL('1eeLmVOFX2CxYHicBH5hUt',$,$,$,(#2559),#2560); -#2562=IFCMATERIALPROFILE($,$,#17,#2554,$,$); -#2563=IFCCOLUMNTYPE('1JLDeSHYr5hO4sj$hohWme',$,'273CHS125',$,$,$,$,$,$,$); -#2564=IFCMATERIALPROFILESET($,$,(#2566),$); -#2565=IFCRELASSOCIATESMATERIAL('1X03y6XpH01RuQHMiHGuRo',$,$,$,(#2563),#2564); -#2566=IFCMATERIALPROFILE($,$,#17,#2554,$,$); -#2567=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,6.); -#2568=IFCBEAMTYPE('3bUbRfLln17gWYhF22PgoV',$,'324CHS60',$,$,$,$,$,$,$); -#2569=IFCMATERIALPROFILESET($,$,(#2571),$); -#2570=IFCRELASSOCIATESMATERIAL('3ZSNVIqbD5NP0BuWYYWJh4',$,$,$,(#2568),#2569); -#2571=IFCMATERIALPROFILE($,$,#17,#2567,$,$); -#2572=IFCMEMBERTYPE('1vmQ6r$hL3ePbz29$uWkJN',$,'324CHS60',$,$,$,$,$,$,$); -#2573=IFCMATERIALPROFILESET($,$,(#2575),$); -#2574=IFCRELASSOCIATESMATERIAL('0$WieC8D55XRCMMmXzouBq',$,$,$,(#2572),#2573); -#2575=IFCMATERIALPROFILE($,$,#17,#2567,$,$); -#2576=IFCCOLUMNTYPE('1eRqpsXf16Bw4zsURWT3D6',$,'324CHS60',$,$,$,$,$,$,$); -#2577=IFCMATERIALPROFILESET($,$,(#2579),$); -#2578=IFCRELASSOCIATESMATERIAL('3yUt27t0553O4xlf1pv_NW',$,$,$,(#2576),#2577); -#2579=IFCMATERIALPROFILE($,$,#17,#2567,$,$); -#2580=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,8.); -#2581=IFCBEAMTYPE('2gaUCo30b4dxUf8BSNw1Nx',$,'324CHS80',$,$,$,$,$,$,$); -#2582=IFCMATERIALPROFILESET($,$,(#2584),$); -#2583=IFCRELASSOCIATESMATERIAL('1JQaWBUtb2$vpsBXTdNpDt',$,$,$,(#2581),#2582); -#2584=IFCMATERIALPROFILE($,$,#17,#2580,$,$); -#2585=IFCMEMBERTYPE('0MOK47Ts5BeAIOdudmi6by',$,'324CHS80',$,$,$,$,$,$,$); -#2586=IFCMATERIALPROFILESET($,$,(#2588),$); -#2587=IFCRELASSOCIATESMATERIAL('1xQRvFRN54ZOFBWoH4LygJ',$,$,$,(#2585),#2586); -#2588=IFCMATERIALPROFILE($,$,#17,#2580,$,$); -#2589=IFCCOLUMNTYPE('3Lsz2bEgXCCBdrxwQnnKog',$,'324CHS80',$,$,$,$,$,$,$); -#2590=IFCMATERIALPROFILESET($,$,(#2592),$); -#2591=IFCRELASSOCIATESMATERIAL('0$38gcINzBsOmS2dbzt8Lw',$,$,$,(#2589),#2590); -#2592=IFCMATERIALPROFILE($,$,#17,#2580,$,$); -#2593=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,10.); -#2594=IFCBEAMTYPE('1Z5BxR2yP4x8OYV0xTPeKI',$,'324CHS100',$,$,$,$,$,$,$); -#2595=IFCMATERIALPROFILESET($,$,(#2597),$); -#2596=IFCRELASSOCIATESMATERIAL('26_PNCVLX0uQqDRXrHarqL',$,$,$,(#2594),#2595); -#2597=IFCMATERIALPROFILE($,$,#17,#2593,$,$); -#2598=IFCMEMBERTYPE('2ekk2VxH11kvKIQbx2xAuw',$,'324CHS100',$,$,$,$,$,$,$); -#2599=IFCMATERIALPROFILESET($,$,(#2601),$); -#2600=IFCRELASSOCIATESMATERIAL('3G4V54XHz9ORQ$IQgiBeud',$,$,$,(#2598),#2599); -#2601=IFCMATERIALPROFILE($,$,#17,#2593,$,$); -#2602=IFCCOLUMNTYPE('1NSi0D9yf9Nx4mdRHvbNxZ',$,'324CHS100',$,$,$,$,$,$,$); -#2603=IFCMATERIALPROFILESET($,$,(#2605),$); -#2604=IFCRELASSOCIATESMATERIAL('318yN2P5j22wiz$ZhIvJVn',$,$,$,(#2602),#2603); -#2605=IFCMATERIALPROFILE($,$,#17,#2593,$,$); -#2606=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,12.5); -#2607=IFCBEAMTYPE('2jB8AzR6HDMhERE6AO5tEw',$,'324CHS125',$,$,$,$,$,$,$); -#2608=IFCMATERIALPROFILESET($,$,(#2610),$); -#2609=IFCRELASSOCIATESMATERIAL('3FP6XeZvTF$9_QTSxnYTcP',$,$,$,(#2607),#2608); -#2610=IFCMATERIALPROFILE($,$,#17,#2606,$,$); -#2611=IFCMEMBERTYPE('0HScHAQbv7mhw3c8Y2zy8e',$,'324CHS125',$,$,$,$,$,$,$); -#2612=IFCMATERIALPROFILESET($,$,(#2614),$); -#2613=IFCRELASSOCIATESMATERIAL('1VXmEp2fLEbBlE2M$F7L$s',$,$,$,(#2611),#2612); -#2614=IFCMATERIALPROFILE($,$,#17,#2606,$,$); -#2615=IFCCOLUMNTYPE('0kYc4e4850AhyUEnxIqZYB',$,'324CHS125',$,$,$,$,$,$,$); -#2616=IFCMATERIALPROFILESET($,$,(#2618),$); -#2617=IFCRELASSOCIATESMATERIAL('3sxq2b9Xz8Ne7SSG4Nwtng',$,$,$,(#2615),#2616); -#2618=IFCMATERIALPROFILE($,$,#17,#2606,$,$); -#2619=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,8.); -#2620=IFCBEAMTYPE('2K033p$ir1RO4K8ImAwd0d',$,'356CHS80',$,$,$,$,$,$,$); -#2621=IFCMATERIALPROFILESET($,$,(#2623),$); -#2622=IFCRELASSOCIATESMATERIAL('1TWRrrdvr1mBTsYtrETyKs',$,$,$,(#2620),#2621); -#2623=IFCMATERIALPROFILE($,$,#17,#2619,$,$); -#2624=IFCMEMBERTYPE('0T0pEaQwz0UvU5npeFhEZG',$,'356CHS80',$,$,$,$,$,$,$); -#2625=IFCMATERIALPROFILESET($,$,(#2627),$); -#2626=IFCRELASSOCIATESMATERIAL('1t1B7oadH8QBNlsQ62Gj8T',$,$,$,(#2624),#2625); -#2627=IFCMATERIALPROFILE($,$,#17,#2619,$,$); -#2628=IFCCOLUMNTYPE('2zqGtXDvv6shUHsh5vMk7m',$,'356CHS80',$,$,$,$,$,$,$); -#2629=IFCMATERIALPROFILESET($,$,(#2631),$); -#2630=IFCRELASSOCIATESMATERIAL('3UXL3$Uu9EjuULsgqq1Dcu',$,$,$,(#2628),#2629); -#2631=IFCMATERIALPROFILE($,$,#17,#2619,$,$); -#2632=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,10.); -#2633=IFCBEAMTYPE('0BQWXINsr5nw3SNWFEyQVm',$,'356CHS100',$,$,$,$,$,$,$); -#2634=IFCMATERIALPROFILESET($,$,(#2636),$); -#2635=IFCRELASSOCIATESMATERIAL('0RTmF1$yf9auMS7Rvc945c',$,$,$,(#2633),#2634); -#2636=IFCMATERIALPROFILE($,$,#17,#2632,$,$); -#2637=IFCMEMBERTYPE('2LgrAIkn9AYwGeKdgSMf5U',$,'356CHS100',$,$,$,$,$,$,$); -#2638=IFCMATERIALPROFILESET($,$,(#2640),$); -#2639=IFCRELASSOCIATESMATERIAL('0llbbzMo5D$AxeCRxXz9jv',$,$,$,(#2637),#2638); -#2640=IFCMATERIALPROFILE($,$,#17,#2632,$,$); -#2641=IFCCOLUMNTYPE('0jATq39RL4swE_lUa$qGtj',$,'356CHS100',$,$,$,$,$,$,$); -#2642=IFCMATERIALPROFILESET($,$,(#2644),$); -#2643=IFCRELASSOCIATESMATERIAL('27TX4_Llj3Jw4haIKkiqw5',$,$,$,(#2641),#2642); -#2644=IFCMATERIALPROFILE($,$,#17,#2632,$,$); -#2645=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,12.5); -#2646=IFCBEAMTYPE('3SVy6crID8awcBh4nwSatB',$,'356CHS125',$,$,$,$,$,$,$); -#2647=IFCMATERIALPROFILESET($,$,(#2649),$); -#2648=IFCRELASSOCIATESMATERIAL('03WPsWJBPCoQEqQPDY_nC_',$,$,$,(#2646),#2647); -#2649=IFCMATERIALPROFILE($,$,#17,#2645,$,$); -#2650=IFCMEMBERTYPE('35q5V6kK93FvIDJIXLVFLh',$,'356CHS125',$,$,$,$,$,$,$); -#2651=IFCMATERIALPROFILESET($,$,(#2653),$); -#2652=IFCRELASSOCIATESMATERIAL('068FTt7Mz8Z9303ouULqiW',$,$,$,(#2650),#2651); -#2653=IFCMATERIALPROFILE($,$,#17,#2645,$,$); -#2654=IFCCOLUMNTYPE('3B9q3E2Rj1gAZZWtgW2NcN',$,'356CHS125',$,$,$,$,$,$,$); -#2655=IFCMATERIALPROFILESET($,$,(#2657),$); -#2656=IFCRELASSOCIATESMATERIAL('2DMM0tfR5CRfyuJ$7kYl9s',$,$,$,(#2654),#2655); -#2657=IFCMATERIALPROFILE($,$,#17,#2645,$,$); -#2658=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,16.); -#2659=IFCBEAMTYPE('1eq4tWpzf9jgVSjKTSWa9x',$,'356CHS160',$,$,$,$,$,$,$); -#2660=IFCMATERIALPROFILESET($,$,(#2662),$); -#2661=IFCRELASSOCIATESMATERIAL('2ayKbKMrX7cxwDaCsVQlat',$,$,$,(#2659),#2660); -#2662=IFCMATERIALPROFILE($,$,#17,#2658,$,$); -#2663=IFCMEMBERTYPE('0lYV2QCIX6pAL15dMEg10g',$,'356CHS160',$,$,$,$,$,$,$); -#2664=IFCMATERIALPROFILESET($,$,(#2666),$); -#2665=IFCRELASSOCIATESMATERIAL('1ASC0QXV172wsYPu87omUW',$,$,$,(#2663),#2664); -#2666=IFCMATERIALPROFILE($,$,#17,#2658,$,$); -#2667=IFCCOLUMNTYPE('1F3uTDAsr4ZAUGQTXGT7F2',$,'356CHS160',$,$,$,$,$,$,$); -#2668=IFCMATERIALPROFILESET($,$,(#2670),$); -#2669=IFCRELASSOCIATESMATERIAL('2etLFvOgnCrulM6sY_9_Wl',$,$,$,(#2667),#2668); -#2670=IFCMATERIALPROFILE($,$,#17,#2658,$,$); -#2671=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,8.); -#2672=IFCBEAMTYPE('3lokyMWzf5vOu1S65opZLf',$,'406CHS80',$,$,$,$,$,$,$); -#2673=IFCMATERIALPROFILESET($,$,(#2675),$); -#2674=IFCRELASSOCIATESMATERIAL('1$Zr2uZif8RgbxBFErJPGB',$,$,$,(#2672),#2673); -#2675=IFCMATERIALPROFILE($,$,#17,#2671,$,$); -#2676=IFCMEMBERTYPE('0E2LMa0mT2nxx8VfB9NaSG',$,'406CHS80',$,$,$,$,$,$,$); -#2677=IFCMATERIALPROFILESET($,$,(#2679),$); -#2678=IFCRELASSOCIATESMATERIAL('28eDcLi7zCIPtZr0AmhvEk',$,$,$,(#2676),#2677); -#2679=IFCMATERIALPROFILE($,$,#17,#2671,$,$); -#2680=IFCCOLUMNTYPE('0ZdTMOQZ59bQVWFCiF9mjX',$,'406CHS80',$,$,$,$,$,$,$); -#2681=IFCMATERIALPROFILESET($,$,(#2683),$); -#2682=IFCRELASSOCIATESMATERIAL('3GP2qvOhbDMOGn6PimoB6S',$,$,$,(#2680),#2681); -#2683=IFCMATERIALPROFILE($,$,#17,#2671,$,$); -#2684=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,10.); -#2685=IFCBEAMTYPE('2hdNdskCL8uvCS5E2JOsP6',$,'406CHS100',$,$,$,$,$,$,$); -#2686=IFCMATERIALPROFILESET($,$,(#2688),$); -#2687=IFCRELASSOCIATESMATERIAL('3DjGIzUv9AMeV4PmzbcBFG',$,$,$,(#2685),#2686); -#2688=IFCMATERIALPROFILE($,$,#17,#2684,$,$); -#2689=IFCMEMBERTYPE('2O2C63Tx92nhztXp2gP1qD',$,'406CHS100',$,$,$,$,$,$,$); -#2690=IFCMATERIALPROFILESET($,$,(#2692),$); -#2691=IFCRELASSOCIATESMATERIAL('3SY_k0DTr1fvkLmneNNAzi',$,$,$,(#2689),#2690); -#2692=IFCMATERIALPROFILE($,$,#17,#2684,$,$); -#2693=IFCCOLUMNTYPE('3rsadxBoT7KRKfeEMUKOjh',$,'406CHS100',$,$,$,$,$,$,$); -#2694=IFCMATERIALPROFILESET($,$,(#2696),$); -#2695=IFCRELASSOCIATESMATERIAL('0H3rsZLPX4qPvg4drkEdgM',$,$,$,(#2693),#2694); -#2696=IFCMATERIALPROFILE($,$,#17,#2684,$,$); -#2697=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,12.); -#2698=IFCBEAMTYPE('3aO0O6EpvABfomsNmwRt$w',$,'406CHS120',$,$,$,$,$,$,$); -#2699=IFCMATERIALPROFILESET($,$,(#2701),$); -#2700=IFCRELASSOCIATESMATERIAL('2uIe8Crh1FKBDFnWVmOi8D',$,$,$,(#2698),#2699); -#2701=IFCMATERIALPROFILE($,$,#17,#2697,$,$); -#2702=IFCMEMBERTYPE('3XuTAXKW93pgbpduo5rlSl',$,'406CHS120',$,$,$,$,$,$,$); -#2703=IFCMATERIALPROFILESET($,$,(#2705),$); -#2704=IFCRELASSOCIATESMATERIAL('2KRmy$PKv5DeKbO9G3SX_Q',$,$,$,(#2702),#2703); -#2705=IFCMATERIALPROFILE($,$,#17,#2697,$,$); -#2706=IFCCOLUMNTYPE('3UDcFO0$DCePbjiwKluN73',$,'406CHS120',$,$,$,$,$,$,$); -#2707=IFCMATERIALPROFILESET($,$,(#2709),$); -#2708=IFCRELASSOCIATESMATERIAL('3KytOchxfDfgknOAegLjUx',$,$,$,(#2706),#2707); -#2709=IFCMATERIALPROFILE($,$,#17,#2697,$,$); -#2710=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,16.); -#2711=IFCBEAMTYPE('0qXXpZMBXBkxA7f29D$sM7',$,'406CHS160',$,$,$,$,$,$,$); -#2712=IFCMATERIALPROFILESET($,$,(#2714),$); -#2713=IFCRELASSOCIATESMATERIAL('2TIK3ZiXfEKwj2y$5sLp1T',$,$,$,(#2711),#2712); -#2714=IFCMATERIALPROFILE($,$,#17,#2710,$,$); -#2715=IFCMEMBERTYPE('1B$cQYdyz84hyDfvWTqsdh',$,'406CHS160',$,$,$,$,$,$,$); -#2716=IFCMATERIALPROFILESET($,$,(#2718),$); -#2717=IFCRELASSOCIATESMATERIAL('1z1RGlTIzEPxxqCOEKQKbw',$,$,$,(#2715),#2716); -#2718=IFCMATERIALPROFILE($,$,#17,#2710,$,$); -#2719=IFCCOLUMNTYPE('3c$Ct8GwzFAQ0zsJygS60K',$,'406CHS160',$,$,$,$,$,$,$); -#2720=IFCMATERIALPROFILESET($,$,(#2722),$); -#2721=IFCRELASSOCIATESMATERIAL('1PH5dgUDb5gRJbCRoRvwU6',$,$,$,(#2719),#2720); -#2722=IFCMATERIALPROFILE($,$,#17,#2710,$,$); -#2723=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,10.); -#2724=IFCBEAMTYPE('0hjGEJkSf1AgWZsLuo28k6',$,'457CHS100',$,$,$,$,$,$,$); -#2725=IFCMATERIALPROFILESET($,$,(#2727),$); -#2726=IFCRELASSOCIATESMATERIAL('3GZ_jUeTHAw8HtU9FrIHbi',$,$,$,(#2724),#2725); -#2727=IFCMATERIALPROFILE($,$,#17,#2723,$,$); -#2728=IFCMEMBERTYPE('1ZHymkx5n5_g7rtyoq07wJ',$,'457CHS100',$,$,$,$,$,$,$); -#2729=IFCMATERIALPROFILESET($,$,(#2731),$); -#2730=IFCRELASSOCIATESMATERIAL('2Fw3fUdjT6sxjqA5hOTpO8',$,$,$,(#2728),#2729); -#2731=IFCMATERIALPROFILE($,$,#17,#2723,$,$); -#2732=IFCCOLUMNTYPE('0KA4Qj8VzBSw4uE8tlf2Bc',$,'457CHS100',$,$,$,$,$,$,$); -#2733=IFCMATERIALPROFILESET($,$,(#2735),$); -#2734=IFCRELASSOCIATESMATERIAL('1Xtbia1050sOY$HTIPigum',$,$,$,(#2732),#2733); -#2735=IFCMATERIALPROFILE($,$,#17,#2723,$,$); -#2736=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,12.5); -#2737=IFCBEAMTYPE('1nyezq3wf7FecavVtPCJUe',$,'457CHS125',$,$,$,$,$,$,$); -#2738=IFCMATERIALPROFILESET($,$,(#2740),$); -#2739=IFCRELASSOCIATESMATERIAL('3iuAM7Fk943QhPKnuu$sS$',$,$,$,(#2737),#2738); -#2740=IFCMATERIALPROFILE($,$,#17,#2736,$,$); -#2741=IFCMEMBERTYPE('2t1QNjsc9FYBMiC5jSgqPf',$,'457CHS125',$,$,$,$,$,$,$); -#2742=IFCMATERIALPROFILESET($,$,(#2744),$); -#2743=IFCRELASSOCIATESMATERIAL('32qaKcDfP7xRd1CVvnEjFU',$,$,$,(#2741),#2742); -#2744=IFCMATERIALPROFILE($,$,#17,#2736,$,$); -#2745=IFCCOLUMNTYPE('2jT5Pw9tr7QgNXwAPAG$Gt',$,'457CHS125',$,$,$,$,$,$,$); -#2746=IFCMATERIALPROFILESET($,$,(#2748),$); -#2747=IFCRELASSOCIATESMATERIAL('3I8wRUyaH9Rf9KQ_Y1Tg4X',$,$,$,(#2745),#2746); -#2748=IFCMATERIALPROFILE($,$,#17,#2736,$,$); -#2749=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,16.); -#2750=IFCBEAMTYPE('1EDnUjJurBRee_0qmC0C7I',$,'457CHS160',$,$,$,$,$,$,$); -#2751=IFCMATERIALPROFILESET($,$,(#2753),$); -#2752=IFCRELASSOCIATESMATERIAL('2OmegOk8vFPgvaP_2ZHmLw',$,$,$,(#2750),#2751); -#2753=IFCMATERIALPROFILE($,$,#17,#2749,$,$); -#2754=IFCMEMBERTYPE('1PnUY4Vdf90uBROA6nAMI6',$,'457CHS160',$,$,$,$,$,$,$); -#2755=IFCMATERIALPROFILESET($,$,(#2757),$); -#2756=IFCRELASSOCIATESMATERIAL('310fhNMu987wauN$KrATOB',$,$,$,(#2754),#2755); -#2757=IFCMATERIALPROFILE($,$,#17,#2749,$,$); -#2758=IFCCOLUMNTYPE('3vjmv2XsL0ovmQEkd88Q3b',$,'457CHS160',$,$,$,$,$,$,$); -#2759=IFCMATERIALPROFILESET($,$,(#2761),$); -#2760=IFCRELASSOCIATESMATERIAL('1Q5JngWJL15xMjqOLtuGM4',$,$,$,(#2758),#2759); -#2761=IFCMATERIALPROFILE($,$,#17,#2749,$,$); -#2762=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,10.); -#2763=IFCBEAMTYPE('04MARyl$P7dRjlwIQqhBE4',$,'508CHS100',$,$,$,$,$,$,$); -#2764=IFCMATERIALPROFILESET($,$,(#2766),$); -#2765=IFCRELASSOCIATESMATERIAL('0mpDqOlFb45fR085SZgpAm',$,$,$,(#2763),#2764); -#2766=IFCMATERIALPROFILE($,$,#17,#2762,$,$); -#2767=IFCMEMBERTYPE('1SAErI_7n3KwxP_x9s5Ygq',$,'508CHS100',$,$,$,$,$,$,$); -#2768=IFCMATERIALPROFILESET($,$,(#2770),$); -#2769=IFCRELASSOCIATESMATERIAL('3X1Q1hSS94GuQINXnTRKnX',$,$,$,(#2767),#2768); -#2770=IFCMATERIALPROFILE($,$,#17,#2762,$,$); -#2771=IFCCOLUMNTYPE('2OHLScLebCkwryHuYgqfHJ',$,'508CHS100',$,$,$,$,$,$,$); -#2772=IFCMATERIALPROFILESET($,$,(#2774),$); -#2773=IFCRELASSOCIATESMATERIAL('3Y$ZfKw$z6qQbewwGhY3qM',$,$,$,(#2771),#2772); -#2774=IFCMATERIALPROFILE($,$,#17,#2762,$,$); -#2775=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,12.5); -#2776=IFCBEAMTYPE('2sR5MGzX5BDvcjJEXks435',$,'508CHS125',$,$,$,$,$,$,$); -#2777=IFCMATERIALPROFILESET($,$,(#2779),$); -#2778=IFCRELASSOCIATESMATERIAL('3su_zH4UjC5gYjoleZVgFH',$,$,$,(#2776),#2777); -#2779=IFCMATERIALPROFILE($,$,#17,#2775,$,$); -#2780=IFCMEMBERTYPE('2DKkcplAf0og8xTMuw8xgo',$,'508CHS125',$,$,$,$,$,$,$); -#2781=IFCMATERIALPROFILESET($,$,(#2783),$); -#2782=IFCRELASSOCIATESMATERIAL('1rzcJlUCvAIRDraiYBDuml',$,$,$,(#2780),#2781); -#2783=IFCMATERIALPROFILE($,$,#17,#2775,$,$); -#2784=IFCCOLUMNTYPE('1KGSArwZ9E2gORWN1pRM3l',$,'508CHS125',$,$,$,$,$,$,$); -#2785=IFCMATERIALPROFILESET($,$,(#2787),$); -#2786=IFCRELASSOCIATESMATERIAL('0pV_31LJTD3BHuXzo3pkGK',$,$,$,(#2784),#2785); -#2787=IFCMATERIALPROFILE($,$,#17,#2775,$,$); -#2788=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,16.); -#2789=IFCBEAMTYPE('1kMwFWAYX5oOq1d3RzxOpc',$,'508CHS160',$,$,$,$,$,$,$); -#2790=IFCMATERIALPROFILESET($,$,(#2792),$); -#2791=IFCRELASSOCIATESMATERIAL('3KK8hnm2j6exvwXeKtBUX0',$,$,$,(#2789),#2790); -#2792=IFCMATERIALPROFILE($,$,#17,#2788,$,$); -#2793=IFCMEMBERTYPE('0W42hsfpL0QPLX6K0oGMLQ',$,'508CHS160',$,$,$,$,$,$,$); -#2794=IFCMATERIALPROFILESET($,$,(#2796),$); -#2795=IFCRELASSOCIATESMATERIAL('3McauUmbP01wD6M1dI5a7V',$,$,$,(#2793),#2794); -#2796=IFCMATERIALPROFILE($,$,#17,#2788,$,$); -#2797=IFCCOLUMNTYPE('0sXO13CFv05RcYC9z1QdGO',$,'508CHS160',$,$,$,$,$,$,$); -#2798=IFCMATERIALPROFILESET($,$,(#2800),$); -#2799=IFCRELASSOCIATESMATERIAL('2ZGVUtvqTACwH7eUFnyauN',$,$,$,(#2797),#2798); -#2800=IFCMATERIALPROFILE($,$,#17,#2788,$,$); -#2801=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,13.,13.,1.8,$,$); -#2802=IFCBEAMTYPE('0$L8S4TOn2686cijRft4pk',$,'13SHS18',$,$,$,$,$,$,$); -#2803=IFCMATERIALPROFILESET($,$,(#2805),$); -#2804=IFCRELASSOCIATESMATERIAL('3f_C7CM915FQMrTFexMg1d',$,$,$,(#2802),#2803); -#2805=IFCMATERIALPROFILE($,$,#17,#2801,$,$); -#2806=IFCMEMBERTYPE('2Nhg51JZHCtvxIzyslyQYk',$,'13SHS18',$,$,$,$,$,$,$); -#2807=IFCMATERIALPROFILESET($,$,(#2809),$); -#2808=IFCRELASSOCIATESMATERIAL('2Px0GdROnEg8m9FL4rT5aS',$,$,$,(#2806),#2807); -#2809=IFCMATERIALPROFILE($,$,#17,#2801,$,$); -#2810=IFCCOLUMNTYPE('10wtnhxY135QLa3nuLV3tS',$,'13SHS18',$,$,$,$,$,$,$); -#2811=IFCMATERIALPROFILESET($,$,(#2813),$); -#2812=IFCRELASSOCIATESMATERIAL('2DzeP3l09Aifu3SJm8rAuR',$,$,$,(#2810),#2811); -#2813=IFCMATERIALPROFILE($,$,#17,#2801,$,$); -#2814=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,15.,15.,1.8,$,$); -#2815=IFCBEAMTYPE('0d4MVybEjAjPleBcZbEmEN',$,'15SHS18',$,$,$,$,$,$,$); -#2816=IFCMATERIALPROFILESET($,$,(#2818),$); -#2817=IFCRELASSOCIATESMATERIAL('0EnGPkIp19hAkp2Aqrhjxi',$,$,$,(#2815),#2816); -#2818=IFCMATERIALPROFILE($,$,#17,#2814,$,$); -#2819=IFCMEMBERTYPE('0PIS6OczfFIw0i4_J7KaCE',$,'15SHS18',$,$,$,$,$,$,$); -#2820=IFCMATERIALPROFILESET($,$,(#2822),$); -#2821=IFCRELASSOCIATESMATERIAL('3Q6g8QbrP9AfMY2LGGxecv',$,$,$,(#2819),#2820); -#2822=IFCMATERIALPROFILE($,$,#17,#2814,$,$); -#2823=IFCCOLUMNTYPE('3h10gf7zf0L8qCIlnPFtdQ',$,'15SHS18',$,$,$,$,$,$,$); -#2824=IFCMATERIALPROFILESET($,$,(#2826),$); -#2825=IFCRELASSOCIATESMATERIAL('2w2aX0Qur0qxs7MeF7wjBc',$,$,$,(#2823),#2824); -#2826=IFCMATERIALPROFILE($,$,#17,#2814,$,$); -#2827=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,20.,1.6,$,$); -#2828=IFCBEAMTYPE('0MQ4jAG793fuMKCw2XCiC7',$,'20SHS16',$,$,$,$,$,$,$); -#2829=IFCMATERIALPROFILESET($,$,(#2831),$); -#2830=IFCRELASSOCIATESMATERIAL('0c_hFBXPr5aQ6LevEMkEcp',$,$,$,(#2828),#2829); -#2831=IFCMATERIALPROFILE($,$,#17,#2827,$,$); -#2832=IFCMEMBERTYPE('3ijADnwHf9LwTxVMKKPEZG',$,'20SHS16',$,$,$,$,$,$,$); -#2833=IFCMATERIALPROFILESET($,$,(#2835),$); -#2834=IFCRELASSOCIATESMATERIAL('0_QL4H3_zEshVDijIsxUqO',$,$,$,(#2832),#2833); -#2835=IFCMATERIALPROFILE($,$,#17,#2827,$,$); -#2836=IFCCOLUMNTYPE('19yiEGP4rExxYl8IVAzF8X',$,'20SHS16',$,$,$,$,$,$,$); -#2837=IFCMATERIALPROFILESET($,$,(#2839),$); -#2838=IFCRELASSOCIATESMATERIAL('2gOUuhFED56B$auJbjgcH5',$,$,$,(#2836),#2837); -#2839=IFCMATERIALPROFILE($,$,#17,#2827,$,$); -#2840=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,20.,20.,2.,$,$); -#2841=IFCBEAMTYPE('20fmuAMyP3hPjzs0HEyvb5',$,'20SHS20',$,$,$,$,$,$,$); -#2842=IFCMATERIALPROFILESET($,$,(#2844),$); -#2843=IFCRELASSOCIATESMATERIAL('0r2rWJ5bL2w8rrRbt96CcM',$,$,$,(#2841),#2842); -#2844=IFCMATERIALPROFILE($,$,#17,#2840,$,$); -#2845=IFCMEMBERTYPE('3MeczntuD3Hw9roTfE90ga',$,'20SHS20',$,$,$,$,$,$,$); -#2846=IFCMATERIALPROFILESET($,$,(#2848),$); -#2847=IFCRELASSOCIATESMATERIAL('2VROZtsir0gQPzgWvPF0Gl',$,$,$,(#2845),#2846); -#2848=IFCMATERIALPROFILE($,$,#17,#2840,$,$); -#2849=IFCCOLUMNTYPE('2T7PSrB_X9K8A3FruE26MV',$,'20SHS20',$,$,$,$,$,$,$); -#2850=IFCMATERIALPROFILESET($,$,(#2852),$); -#2851=IFCRELASSOCIATESMATERIAL('0nq2ONb4P1tutxdlLujp0X',$,$,$,(#2849),#2850); -#2852=IFCMATERIALPROFILE($,$,#17,#2840,$,$); -#2853=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,25.,1.6,$,$); -#2854=IFCBEAMTYPE('10NTcYrQbCTfkwJWlXbfRk',$,'25SHS16',$,$,$,$,$,$,$); -#2855=IFCMATERIALPROFILESET($,$,(#2857),$); -#2856=IFCRELASSOCIATESMATERIAL('2m1Nmahr5CNvtYhWXSZ1Lb',$,$,$,(#2854),#2855); -#2857=IFCMATERIALPROFILE($,$,#17,#2853,$,$); -#2858=IFCMEMBERTYPE('3FfBHDp3zEJu1OUTozNxOf',$,'25SHS16',$,$,$,$,$,$,$); -#2859=IFCMATERIALPROFILESET($,$,(#2861),$); -#2860=IFCRELASSOCIATESMATERIAL('2wTu$89ULEbvTGfDdgcQE1',$,$,$,(#2858),#2859); -#2861=IFCMATERIALPROFILE($,$,#17,#2853,$,$); -#2862=IFCCOLUMNTYPE('2HTFjA_vb0Zf94f$pSpbBA',$,'25SHS16',$,$,$,$,$,$,$); -#2863=IFCMATERIALPROFILESET($,$,(#2865),$); -#2864=IFCRELASSOCIATESMATERIAL('3LRl7vbfj0$weg02kV4IwW',$,$,$,(#2862),#2863); -#2865=IFCMATERIALPROFILE($,$,#17,#2853,$,$); -#2866=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,25.,2.,$,$); -#2867=IFCBEAMTYPE('0j9mIdNVr2tQ93vyrkUXqy',$,'25SHS20',$,$,$,$,$,$,$); -#2868=IFCMATERIALPROFILESET($,$,(#2870),$); -#2869=IFCRELASSOCIATESMATERIAL('1M3Ul3Y6v4ShNSYkHwxKVG',$,$,$,(#2867),#2868); -#2870=IFCMATERIALPROFILE($,$,#17,#2866,$,$); -#2871=IFCMEMBERTYPE('2Er_k2OAfBHRlBUhzD_5TW',$,'25SHS20',$,$,$,$,$,$,$); -#2872=IFCMATERIALPROFILESET($,$,(#2874),$); -#2873=IFCRELASSOCIATESMATERIAL('3WEDIDQmr5queiuygnio7N',$,$,$,(#2871),#2872); -#2874=IFCMATERIALPROFILE($,$,#17,#2866,$,$); -#2875=IFCCOLUMNTYPE('0Evg4F2wjE3Q8HoExX3bmC',$,'25SHS20',$,$,$,$,$,$,$); -#2876=IFCMATERIALPROFILESET($,$,(#2878),$); -#2877=IFCRELASSOCIATESMATERIAL('1S$HwfaXr1ch5MeqA25kYM',$,$,$,(#2875),#2876); -#2878=IFCMATERIALPROFILE($,$,#17,#2866,$,$); -#2879=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,25.,2.5,$,$); -#2880=IFCBEAMTYPE('15_bqcdTj2LwXa7ov6n5qi',$,'25SHS25',$,$,$,$,$,$,$); -#2881=IFCMATERIALPROFILESET($,$,(#2883),$); -#2882=IFCRELASSOCIATESMATERIAL('0tvn0FQ5nAc9zqxSvUXI1l',$,$,$,(#2880),#2881); -#2883=IFCMATERIALPROFILE($,$,#17,#2879,$,$); -#2884=IFCMEMBERTYPE('2Tdy07QLr43PI8QMf1Z0ax',$,'25SHS25',$,$,$,$,$,$,$); -#2885=IFCMATERIALPROFILESET($,$,(#2887),$); -#2886=IFCRELASSOCIATESMATERIAL('3OG6l$5$f3be_y3iWdj9vJ',$,$,$,(#2884),#2885); -#2887=IFCMATERIALPROFILE($,$,#17,#2879,$,$); -#2888=IFCCOLUMNTYPE('0$cYMN$vX23u8kXXLEF16o',$,'25SHS25',$,$,$,$,$,$,$); -#2889=IFCMATERIALPROFILESET($,$,(#2891),$); -#2890=IFCRELASSOCIATESMATERIAL('2RoxNBW6PCoBIUHQa4q4HI',$,$,$,(#2888),#2889); -#2891=IFCMATERIALPROFILE($,$,#17,#2879,$,$); -#2892=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,25.,25.,3.,$,$); -#2893=IFCBEAMTYPE('2LPg3qnMH5JvhWqvwmaTPA',$,'25SHS30',$,$,$,$,$,$,$); -#2894=IFCMATERIALPROFILESET($,$,(#2896),$); -#2895=IFCRELASSOCIATESMATERIAL('1uCaStHrfEvOPhFaBYDJ2E',$,$,$,(#2893),#2894); -#2896=IFCMATERIALPROFILE($,$,#17,#2892,$,$); -#2897=IFCMEMBERTYPE('0GHl0zye54PhDdg32va2Y0',$,'25SHS30',$,$,$,$,$,$,$); -#2898=IFCMATERIALPROFILESET($,$,(#2900),$); -#2899=IFCRELASSOCIATESMATERIAL('3sneqFRuXEsvJDjaZobgx7',$,$,$,(#2897),#2898); -#2900=IFCMATERIALPROFILE($,$,#17,#2892,$,$); -#2901=IFCCOLUMNTYPE('1qWK7UVf5CHBG2RTLKuqpv',$,'25SHS30',$,$,$,$,$,$,$); -#2902=IFCMATERIALPROFILESET($,$,(#2904),$); -#2903=IFCRELASSOCIATESMATERIAL('0uPndaK6L30vUMfYNBfJVE',$,$,$,(#2901),#2902); -#2904=IFCMATERIALPROFILE($,$,#17,#2892,$,$); -#2905=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,30.,1.6,$,$); -#2906=IFCBEAMTYPE('1_RSp2eIjCkvTGE3rnFwKC',$,'30SHS16',$,$,$,$,$,$,$); -#2907=IFCMATERIALPROFILESET($,$,(#2909),$); -#2908=IFCRELASSOCIATESMATERIAL('2qwqYuo9r4DxDAw1_qNVQs',$,$,$,(#2906),#2907); -#2909=IFCMATERIALPROFILE($,$,#17,#2905,$,$); -#2910=IFCMEMBERTYPE('26_9lypWT4$BJTlo_c1blA',$,'30SHS16',$,$,$,$,$,$,$); -#2911=IFCMATERIALPROFILESET($,$,(#2913),$); -#2912=IFCRELASSOCIATESMATERIAL('2Zv7oF3LLCNfkXQEyWQGc6',$,$,$,(#2910),#2911); -#2913=IFCMATERIALPROFILE($,$,#17,#2905,$,$); -#2914=IFCCOLUMNTYPE('3Vjzbnj5T4$AAPzYc2xIPp',$,'30SHS16',$,$,$,$,$,$,$); -#2915=IFCMATERIALPROFILESET($,$,(#2917),$); -#2916=IFCRELASSOCIATESMATERIAL('3CSp2aCBfBnhvl4$vTmYhT',$,$,$,(#2914),#2915); -#2917=IFCMATERIALPROFILE($,$,#17,#2905,$,$); -#2918=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,30.,2.,$,$); -#2919=IFCBEAMTYPE('3kDhzrqx1Fd97B2bMprKu$',$,'30SHS20',$,$,$,$,$,$,$); -#2920=IFCMATERIALPROFILESET($,$,(#2922),$); -#2921=IFCRELASSOCIATESMATERIAL('3y2t8BOtvFwBWDU6z0rNQX',$,$,$,(#2919),#2920); -#2922=IFCMATERIALPROFILE($,$,#17,#2918,$,$); -#2923=IFCMEMBERTYPE('3C6LNtJDP9meG_MSL54ty7',$,'30SHS20',$,$,$,$,$,$,$); -#2924=IFCMATERIALPROFILESET($,$,(#2926),$); -#2925=IFCRELASSOCIATESMATERIAL('2iNGAzvlfAa95txlLeuDgv',$,$,$,(#2923),#2924); -#2926=IFCMATERIALPROFILE($,$,#17,#2918,$,$); -#2927=IFCCOLUMNTYPE('1wnHsqn9r1A9MUT5cff9tY',$,'30SHS20',$,$,$,$,$,$,$); -#2928=IFCMATERIALPROFILESET($,$,(#2930),$); -#2929=IFCRELASSOCIATESMATERIAL('0h1IL3Ob1Btx4p$2wxfu9T',$,$,$,(#2927),#2928); -#2930=IFCMATERIALPROFILE($,$,#17,#2918,$,$); -#2931=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,30.,2.5,$,$); -#2932=IFCBEAMTYPE('2Lqszobff4N88tcNCqj8C_',$,'30SHS25',$,$,$,$,$,$,$); -#2933=IFCMATERIALPROFILESET($,$,(#2935),$); -#2934=IFCRELASSOCIATESMATERIAL('0$exAWzobB9Or6qUP0xizC',$,$,$,(#2932),#2933); -#2935=IFCMATERIALPROFILE($,$,#17,#2931,$,$); -#2936=IFCMEMBERTYPE('0_4H4utxr3jwibg38fFqov',$,'30SHS25',$,$,$,$,$,$,$); -#2937=IFCMATERIALPROFILESET($,$,(#2939),$); -#2938=IFCRELASSOCIATESMATERIAL('17p8i8MXH1evZRnCFZHi8s',$,$,$,(#2936),#2937); -#2939=IFCMATERIALPROFILE($,$,#17,#2931,$,$); -#2940=IFCCOLUMNTYPE('0Um2ide1n3L95D_1Fn$k9v',$,'30SHS25',$,$,$,$,$,$,$); -#2941=IFCMATERIALPROFILESET($,$,(#2943),$); -#2942=IFCRELASSOCIATESMATERIAL('0SF6IhuK16xhrfY6BcIiH3',$,$,$,(#2940),#2941); -#2943=IFCMATERIALPROFILE($,$,#17,#2931,$,$); -#2944=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,30.,3.,$,$); -#2945=IFCBEAMTYPE('0UcIjn_FjF1fqr$oPOlWYL',$,'30SHS30',$,$,$,$,$,$,$); -#2946=IFCMATERIALPROFILESET($,$,(#2948),$); -#2947=IFCRELASSOCIATESMATERIAL('0SLyu1B_9BJvwpTYGtmONk',$,$,$,(#2945),#2946); -#2948=IFCMATERIALPROFILE($,$,#17,#2944,$,$); -#2949=IFCMEMBERTYPE('2JUi_K0xn7LBxT6uVyeZ9C',$,'30SHS30',$,$,$,$,$,$,$); -#2950=IFCMATERIALPROFILESET($,$,(#2952),$); -#2951=IFCRELASSOCIATESMATERIAL('1sm8cSqTv1$80YwLlGknXg',$,$,$,(#2949),#2950); -#2952=IFCMATERIALPROFILE($,$,#17,#2944,$,$); -#2953=IFCCOLUMNTYPE('13ztGyKVX4zxw5gCAwSROz',$,'30SHS30',$,$,$,$,$,$,$); -#2954=IFCMATERIALPROFILESET($,$,(#2956),$); -#2955=IFCRELASSOCIATESMATERIAL('14xspwty99OwH$Y8Jbexpk',$,$,$,(#2953),#2954); -#2956=IFCMATERIALPROFILE($,$,#17,#2944,$,$); -#2957=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,35.,35.,1.6,$,$); -#2958=IFCBEAMTYPE('1EtI53MJv8YvPL4Ypt9gbO',$,'35SHS16',$,$,$,$,$,$,$); -#2959=IFCMATERIALPROFILESET($,$,(#2961),$); -#2960=IFCRELASSOCIATESMATERIAL('1sfAoP99T1wRnSa7Vu6S$9',$,$,$,(#2958),#2959); -#2961=IFCMATERIALPROFILE($,$,#17,#2957,$,$); -#2962=IFCMEMBERTYPE('0V7efAShn81gkra_BB3pm6',$,'35SHS16',$,$,$,$,$,$,$); -#2963=IFCMATERIALPROFILESET($,$,(#2965),$); -#2964=IFCRELASSOCIATESMATERIAL('2GzVjC39z8d89qrkosMVcj',$,$,$,(#2962),#2963); -#2965=IFCMATERIALPROFILE($,$,#17,#2957,$,$); -#2966=IFCCOLUMNTYPE('0AoQpTgnT7qBV_OKbn9ipr',$,'35SHS16',$,$,$,$,$,$,$); -#2967=IFCMATERIALPROFILESET($,$,(#2969),$); -#2968=IFCRELASSOCIATESMATERIAL('3Tc6T1skn869t$xeuqOuav',$,$,$,(#2966),#2967); -#2969=IFCMATERIALPROFILE($,$,#17,#2957,$,$); -#2970=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,35.,35.,2.,$,$); -#2971=IFCBEAMTYPE('2sGLNNOf9CAeCs_7wOt6gP',$,'35SHS20',$,$,$,$,$,$,$); -#2972=IFCMATERIALPROFILESET($,$,(#2974),$); -#2973=IFCRELASSOCIATESMATERIAL('35_2uPc192bP2h21L2129F',$,$,$,(#2971),#2972); -#2974=IFCMATERIALPROFILE($,$,#17,#2970,$,$); -#2975=IFCMEMBERTYPE('2BPy01Pu53T8FlcIQPOarT',$,'35SHS20',$,$,$,$,$,$,$); -#2976=IFCMATERIALPROFILESET($,$,(#2978),$); -#2977=IFCRELASSOCIATESMATERIAL('2CZKF6ZXT4Q84PEI4HtOgq',$,$,$,(#2975),#2976); -#2978=IFCMATERIALPROFILE($,$,#17,#2970,$,$); -#2979=IFCCOLUMNTYPE('1U$eCpMhj9rQMr7NuTeKzP',$,'35SHS20',$,$,$,$,$,$,$); -#2980=IFCMATERIALPROFILESET($,$,(#2982),$); -#2981=IFCRELASSOCIATESMATERIAL('3u7NSlmVjDH9Hlp0dIzo2v',$,$,$,(#2979),#2980); -#2982=IFCMATERIALPROFILE($,$,#17,#2970,$,$); -#2983=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,35.,35.,2.5,$,$); -#2984=IFCBEAMTYPE('1Dna7rRKL7yejxlisvc5gl',$,'35SHS25',$,$,$,$,$,$,$); -#2985=IFCMATERIALPROFILESET($,$,(#2987),$); -#2986=IFCRELASSOCIATESMATERIAL('1tctrWxZz4XA6AOXJQT74Y',$,$,$,(#2984),#2985); -#2987=IFCMATERIALPROFILE($,$,#17,#2983,$,$); -#2988=IFCMEMBERTYPE('2ebaq2BCb0whQDx9wr1_Es',$,'35SHS25',$,$,$,$,$,$,$); -#2989=IFCMATERIALPROFILESET($,$,(#2991),$); -#2990=IFCRELASSOCIATESMATERIAL('1f_4HPsaf2_h$C4nGMJ275',$,$,$,(#2988),#2989); -#2991=IFCMATERIALPROFILE($,$,#17,#2983,$,$); -#2992=IFCCOLUMNTYPE('32566uWpX6WOEZYv$u4VxQ',$,'35SHS25',$,$,$,$,$,$,$); -#2993=IFCMATERIALPROFILESET($,$,(#2995),$); -#2994=IFCRELASSOCIATESMATERIAL('3ovVlblvj1Aejjj9DThygR',$,$,$,(#2992),#2993); -#2995=IFCMATERIALPROFILE($,$,#17,#2983,$,$); -#2996=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,35.,35.,3.,$,$); -#2997=IFCBEAMTYPE('0Ec7KZBW1BZQYz9mSPIDxl',$,'35SHS30',$,$,$,$,$,$,$); -#2998=IFCMATERIALPROFILESET($,$,(#3000),$); -#2999=IFCRELASSOCIATESMATERIAL('0l_QXSr4j0zgWVojZPz2lB',$,$,$,(#2997),#2998); -#3000=IFCMATERIALPROFILE($,$,#17,#2996,$,$); -#3001=IFCMEMBERTYPE('1bw_ruLKL5HQJuBxWLNvy$',$,'35SHS30',$,$,$,$,$,$,$); -#3002=IFCMATERIALPROFILESET($,$,(#3004),$); -#3003=IFCRELASSOCIATESMATERIAL('0et1$TQaP8svCdqsdhqjkG',$,$,$,(#3001),#3002); -#3004=IFCMATERIALPROFILE($,$,#17,#2996,$,$); -#3005=IFCCOLUMNTYPE('2$Z8EQ0CX7LO67u1dZ4i4R',$,'35SHS30',$,$,$,$,$,$,$); -#3006=IFCMATERIALPROFILESET($,$,(#3008),$); -#3007=IFCRELASSOCIATESMATERIAL('1P0_9GH1DFJgQmn7RVGSoF',$,$,$,(#3005),#3006); -#3008=IFCMATERIALPROFILE($,$,#17,#2996,$,$); -#3009=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,1.6,$,$); -#3010=IFCBEAMTYPE('1WMGPlAyT2CO7qZl1eNua2',$,'40SHS16',$,$,$,$,$,$,$); -#3011=IFCMATERIALPROFILESET($,$,(#3013),$); -#3012=IFCRELASSOCIATESMATERIAL('0zzTTJSFf1P8fv$zSZR7z5',$,$,$,(#3010),#3011); -#3013=IFCMATERIALPROFILE($,$,#17,#3009,$,$); -#3014=IFCMEMBERTYPE('1H_meBh2LDvep4aDXYk3SN',$,'40SHS16',$,$,$,$,$,$,$); -#3015=IFCMATERIALPROFILESET($,$,(#3017),$); -#3016=IFCRELASSOCIATESMATERIAL('3d6Z7C8056NultmO7GyvzZ',$,$,$,(#3014),#3015); -#3017=IFCMATERIALPROFILE($,$,#17,#3009,$,$); -#3018=IFCCOLUMNTYPE('3Wvwq0le58fxxHk9sCQYux',$,'40SHS16',$,$,$,$,$,$,$); -#3019=IFCMATERIALPROFILESET($,$,(#3021),$); -#3020=IFCRELASSOCIATESMATERIAL('3_vMrNiwj6aul_x7$KuIqc',$,$,$,(#3018),#3019); -#3021=IFCMATERIALPROFILE($,$,#17,#3009,$,$); -#3022=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,2.,$,$); -#3023=IFCBEAMTYPE('3PwKNkJmX0XAI7_fq1Gcs0',$,'40SHS20',$,$,$,$,$,$,$); -#3024=IFCMATERIALPROFILESET($,$,(#3026),$); -#3025=IFCRELASSOCIATESMATERIAL('1iZE4JuLT7_9fkssko_top',$,$,$,(#3023),#3024); -#3026=IFCMATERIALPROFILE($,$,#17,#3022,$,$); -#3027=IFCMEMBERTYPE('1DT81g4GXDNQy4k1SStWtl',$,'40SHS20',$,$,$,$,$,$,$); -#3028=IFCMATERIALPROFILESET($,$,(#3030),$); -#3029=IFCRELASSOCIATESMATERIAL('2QJ7o9epn5NRfqCZaC2tgd',$,$,$,(#3027),#3028); -#3030=IFCMATERIALPROFILE($,$,#17,#3022,$,$); -#3031=IFCCOLUMNTYPE('0Z08zz6pT6aP467G0mAGhL',$,'40SHS20',$,$,$,$,$,$,$); -#3032=IFCMATERIALPROFILESET($,$,(#3034),$); -#3033=IFCRELASSOCIATESMATERIAL('1fHqcz_ArDS801bmOjfjC$',$,$,$,(#3031),#3032); -#3034=IFCMATERIALPROFILE($,$,#17,#3022,$,$); -#3035=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,2.5,$,$); -#3036=IFCBEAMTYPE('3nBpYiZPf4n8hHockRLJBV',$,'40SHS25',$,$,$,$,$,$,$); -#3037=IFCMATERIALPROFILESET($,$,(#3039),$); -#3038=IFCRELASSOCIATESMATERIAL('1EZesBdl17nhlmoj3UHHOO',$,$,$,(#3036),#3037); -#3039=IFCMATERIALPROFILE($,$,#17,#3035,$,$); -#3040=IFCMEMBERTYPE('2k5$REi61DnRxoBNusecha',$,'40SHS25',$,$,$,$,$,$,$); -#3041=IFCMATERIALPROFILESET($,$,(#3043),$); -#3042=IFCRELASSOCIATESMATERIAL('17Qke8AmD9kxuKayYH4ubZ',$,$,$,(#3040),#3041); -#3043=IFCMATERIALPROFILE($,$,#17,#3035,$,$); -#3044=IFCCOLUMNTYPE('0S9YRaZjzB7RzkBkXcFh5d',$,'40SHS25',$,$,$,$,$,$,$); -#3045=IFCMATERIALPROFILESET($,$,(#3047),$); -#3046=IFCRELASSOCIATESMATERIAL('0WnqRp2Ef2M8Xt9qq7xwi6',$,$,$,(#3044),#3045); -#3047=IFCMATERIALPROFILE($,$,#17,#3035,$,$); -#3048=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,3.,$,$); -#3049=IFCBEAMTYPE('0OEBGcItXDdfO9sc4jTbAp',$,'40SHS30',$,$,$,$,$,$,$); -#3050=IFCMATERIALPROFILESET($,$,(#3052),$); -#3051=IFCRELASSOCIATESMATERIAL('27JbJr6jjEEgHIXaQORG2c',$,$,$,(#3049),#3050); -#3052=IFCMATERIALPROFILE($,$,#17,#3048,$,$); -#3053=IFCMEMBERTYPE('0BwywiEDv9DQAPis54HUKv',$,'40SHS30',$,$,$,$,$,$,$); -#3054=IFCMATERIALPROFILESET($,$,(#3056),$); -#3055=IFCRELASSOCIATESMATERIAL('2xTN2y7N9BmBgymix9WP9a',$,$,$,(#3053),#3054); -#3056=IFCMATERIALPROFILE($,$,#17,#3048,$,$); -#3057=IFCCOLUMNTYPE('30ujr6Vaj0Swr2f0evXjAa',$,'40SHS30',$,$,$,$,$,$,$); -#3058=IFCMATERIALPROFILESET($,$,(#3060),$); -#3059=IFCRELASSOCIATESMATERIAL('3UptOxrNP3zvxq1DGcuf8_',$,$,$,(#3057),#3058); -#3060=IFCMATERIALPROFILE($,$,#17,#3048,$,$); -#3061=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,4.,$,$); -#3062=IFCBEAMTYPE('3Gu7DAWc15ZB6RL1xWItFT',$,'40SHS40',$,$,$,$,$,$,$); -#3063=IFCMATERIALPROFILESET($,$,(#3065),$); -#3064=IFCRELASSOCIATESMATERIAL('1BiXytRTH8EhQPpOmAKhDx',$,$,$,(#3062),#3063); -#3065=IFCMATERIALPROFILE($,$,#17,#3061,$,$); -#3066=IFCMEMBERTYPE('0eTHK3L0D5PglGmEgKp1Rk',$,'40SHS40',$,$,$,$,$,$,$); -#3067=IFCMATERIALPROFILESET($,$,(#3069),$); -#3068=IFCRELASSOCIATESMATERIAL('0N4pPB2h9Dz9xQ_zPcPGJ6',$,$,$,(#3066),#3067); -#3069=IFCMATERIALPROFILE($,$,#17,#3061,$,$); -#3070=IFCCOLUMNTYPE('3UjFyNqeH8kRYQyOYNUBmG',$,'40SHS40',$,$,$,$,$,$,$); -#3071=IFCMATERIALPROFILESET($,$,(#3073),$); -#3072=IFCRELASSOCIATESMATERIAL('0tlMmF_yTFYA6Ww6Q2zTPc',$,$,$,(#3070),#3071); -#3073=IFCMATERIALPROFILE($,$,#17,#3061,$,$); -#3074=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,1.6,$,$); -#3075=IFCBEAMTYPE('0IZDq2Vlb41hET3PoeBIwF',$,'50SHS16',$,$,$,$,$,$,$); -#3076=IFCMATERIALPROFILESET($,$,(#3078),$); -#3077=IFCRELASSOCIATESMATERIAL('3z5N$QSaDBA9mUqmFoA4yb',$,$,$,(#3075),#3076); -#3078=IFCMATERIALPROFILE($,$,#17,#3074,$,$); -#3079=IFCMEMBERTYPE('1JtqY0tjDADgwWSAEbV1S$',$,'50SHS16',$,$,$,$,$,$,$); -#3080=IFCMATERIALPROFILESET($,$,(#3082),$); -#3081=IFCRELASSOCIATESMATERIAL('0yLo77Zin4pBTzDJUdNSXR',$,$,$,(#3079),#3080); -#3082=IFCMATERIALPROFILE($,$,#17,#3074,$,$); -#3083=IFCCOLUMNTYPE('138gjC$urBEeTlff_szm$5',$,'50SHS16',$,$,$,$,$,$,$); -#3084=IFCMATERIALPROFILESET($,$,(#3086),$); -#3085=IFCRELASSOCIATESMATERIAL('03HfQ8BpT4fv8MQQUoXRqA',$,$,$,(#3083),#3084); -#3086=IFCMATERIALPROFILE($,$,#17,#3074,$,$); -#3087=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,2.,$,$); -#3088=IFCBEAMTYPE('2qUoFY7w1BQhfRyKHtGu4y',$,'50SHS20',$,$,$,$,$,$,$); -#3089=IFCMATERIALPROFILESET($,$,(#3091),$); -#3090=IFCRELASSOCIATESMATERIAL('08i84dJlf2oOxKi2eTn3_c',$,$,$,(#3088),#3089); -#3091=IFCMATERIALPROFILE($,$,#17,#3087,$,$); -#3092=IFCMEMBERTYPE('3J3tMPd1T2ReKX0Vyqcf_O',$,'50SHS20',$,$,$,$,$,$,$); -#3093=IFCMATERIALPROFILESET($,$,(#3095),$); -#3094=IFCRELASSOCIATESMATERIAL('0lbQj3fMXEMfC0bN6rOaIu',$,$,$,(#3092),#3093); -#3095=IFCMATERIALPROFILE($,$,#17,#3087,$,$); -#3096=IFCCOLUMNTYPE('0wBBpAjJf5EQ1dkHNPTWIo',$,'50SHS20',$,$,$,$,$,$,$); -#3097=IFCMATERIALPROFILESET($,$,(#3099),$); -#3098=IFCRELASSOCIATESMATERIAL('0$DQAI6gH8uOC54BO9FeXr',$,$,$,(#3096),#3097); -#3099=IFCMATERIALPROFILE($,$,#17,#3087,$,$); -#3100=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,2.5,$,$); -#3101=IFCBEAMTYPE('2IiloVUIX4GAVGsyYqQs0C',$,'50SHS25',$,$,$,$,$,$,$); -#3102=IFCMATERIALPROFILESET($,$,(#3104),$); -#3103=IFCRELASSOCIATESMATERIAL('1Z1g$fJfvDmPA2nQFXitlc',$,$,$,(#3101),#3102); -#3104=IFCMATERIALPROFILE($,$,#17,#3100,$,$); -#3105=IFCMEMBERTYPE('2joJ5gAW90A85IkRGEbcu2',$,'50SHS25',$,$,$,$,$,$,$); -#3106=IFCMATERIALPROFILESET($,$,(#3108),$); -#3107=IFCRELASSOCIATESMATERIAL('0Na_GsE6P3xerwWuqDVcLP',$,$,$,(#3105),#3106); -#3108=IFCMATERIALPROFILE($,$,#17,#3100,$,$); -#3109=IFCCOLUMNTYPE('0H0inI6OPF_wL7$yK1vOE3',$,'50SHS25',$,$,$,$,$,$,$); -#3110=IFCMATERIALPROFILESET($,$,(#3112),$); -#3111=IFCRELASSOCIATESMATERIAL('0yaV_HPwP2JBeQseTZd8z_',$,$,$,(#3109),#3110); -#3112=IFCMATERIALPROFILE($,$,#17,#3100,$,$); -#3113=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,3.,$,$); -#3114=IFCBEAMTYPE('0PjFY14tfEX9R3NFaRT$G1',$,'50SHS30',$,$,$,$,$,$,$); -#3115=IFCMATERIALPROFILESET($,$,(#3117),$); -#3116=IFCRELASSOCIATESMATERIAL('1D6jKgD7XCcA3EmC_scjOc',$,$,$,(#3114),#3115); -#3117=IFCMATERIALPROFILE($,$,#17,#3113,$,$); -#3118=IFCMEMBERTYPE('3GcyEVRtn8lQsu_mwnPgtr',$,'50SHS30',$,$,$,$,$,$,$); -#3119=IFCMATERIALPROFILESET($,$,(#3121),$); -#3120=IFCRELASSOCIATESMATERIAL('2Mbb00W2DDh8dYgUpfyCD_',$,$,$,(#3118),#3119); -#3121=IFCMATERIALPROFILE($,$,#17,#3113,$,$); -#3122=IFCCOLUMNTYPE('0uYnam6uz0d9bxqNKlUS4$',$,'50SHS30',$,$,$,$,$,$,$); -#3123=IFCMATERIALPROFILESET($,$,(#3125),$); -#3124=IFCRELASSOCIATESMATERIAL('0GNeDu3rb5UuY1MieyKOOe',$,$,$,(#3122),#3123); -#3125=IFCMATERIALPROFILE($,$,#17,#3113,$,$); -#3126=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,4.,$,$); -#3127=IFCBEAMTYPE('2IsZT6pGr6593edGrFo4VC',$,'50SHS40',$,$,$,$,$,$,$); -#3128=IFCMATERIALPROFILESET($,$,(#3130),$); -#3129=IFCRELASSOCIATESMATERIAL('1DtcT4d$v148g4bjIAxkRU',$,$,$,(#3127),#3128); -#3130=IFCMATERIALPROFILE($,$,#17,#3126,$,$); -#3131=IFCMEMBERTYPE('0sVrbwQ597weKycVMz1JZc',$,'50SHS40',$,$,$,$,$,$,$); -#3132=IFCMATERIALPROFILESET($,$,(#3134),$); -#3133=IFCRELASSOCIATESMATERIAL('1ItG0T$mr2LOXLaouQ7yP8',$,$,$,(#3131),#3132); -#3134=IFCMATERIALPROFILE($,$,#17,#3126,$,$); -#3135=IFCCOLUMNTYPE('0QtDe2ZPLByAkTb3SOabUo',$,'50SHS40',$,$,$,$,$,$,$); -#3136=IFCMATERIALPROFILESET($,$,(#3138),$); -#3137=IFCRELASSOCIATESMATERIAL('1iSiPWzdr09hs6tRXXLxpg',$,$,$,(#3135),#3136); -#3138=IFCMATERIALPROFILE($,$,#17,#3126,$,$); -#3139=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,5.,$,$); -#3140=IFCBEAMTYPE('1CZ4B3nLnDShy1WoY$NKfa',$,'50SHS50',$,$,$,$,$,$,$); -#3141=IFCMATERIALPROFILESET($,$,(#3143),$); -#3142=IFCRELASSOCIATESMATERIAL('0zz19loEP2L8o_Xq9gGlIT',$,$,$,(#3140),#3141); -#3143=IFCMATERIALPROFILE($,$,#17,#3139,$,$); -#3144=IFCMEMBERTYPE('2ExH25Y_9EBeGHcUNxk$nr',$,'50SHS50',$,$,$,$,$,$,$); -#3145=IFCMATERIALPROFILESET($,$,(#3147),$); -#3146=IFCRELASSOCIATESMATERIAL('0NCPsPn1H2lPdNoaA17Ibk',$,$,$,(#3144),#3145); -#3147=IFCMATERIALPROFILE($,$,#17,#3139,$,$); -#3148=IFCCOLUMNTYPE('0BNAxdkRD518etsUW6w4vl',$,'50SHS50',$,$,$,$,$,$,$); -#3149=IFCMATERIALPROFILESET($,$,(#3151),$); -#3150=IFCRELASSOCIATESMATERIAL('04pTFdhyz03ub_uBqOXcfW',$,$,$,(#3148),#3149); -#3151=IFCMATERIALPROFILE($,$,#17,#3139,$,$); -#3152=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,6.,$,$); -#3153=IFCBEAMTYPE('2ODd6HXoL3EuXbx6TbAvV_',$,'50SHS60',$,$,$,$,$,$,$); -#3154=IFCMATERIALPROFILESET($,$,(#3156),$); -#3155=IFCRELASSOCIATESMATERIAL('1MACUE$61F$hSTuGMzpiYG',$,$,$,(#3153),#3154); -#3156=IFCMATERIALPROFILE($,$,#17,#3152,$,$); -#3157=IFCMEMBERTYPE('0H66b1gnDFgv10iPZHpqal',$,'50SHS60',$,$,$,$,$,$,$); -#3158=IFCMATERIALPROFILESET($,$,(#3160),$); -#3159=IFCRELASSOCIATESMATERIAL('0dOn_z3l1Fy9hLYxObZwcT',$,$,$,(#3157),#3158); -#3160=IFCMATERIALPROFILE($,$,#17,#3152,$,$); -#3161=IFCCOLUMNTYPE('3Ram1w1WTCpvBGsZuHzGYd',$,'50SHS60',$,$,$,$,$,$,$); -#3162=IFCMATERIALPROFILESET($,$,(#3164),$); -#3163=IFCRELASSOCIATESMATERIAL('3MKknWP$zDjPNQoSa6FSeP',$,$,$,(#3161),#3162); -#3164=IFCMATERIALPROFILE($,$,#17,#3152,$,$); -#3165=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,1.6,$,$); -#3166=IFCBEAMTYPE('2IhV0k1hPFOAgP3rCKp0KL',$,'65SHS16',$,$,$,$,$,$,$); -#3167=IFCMATERIALPROFILESET($,$,(#3169),$); -#3168=IFCRELASSOCIATESMATERIAL('0lAWg2G$z5I812ALs7YJAQ',$,$,$,(#3166),#3167); -#3169=IFCMATERIALPROFILE($,$,#17,#3165,$,$); -#3170=IFCMEMBERTYPE('2lo_u_0QP1BOTmtURsU_H_',$,'65SHS16',$,$,$,$,$,$,$); -#3171=IFCMATERIALPROFILESET($,$,(#3173),$); -#3172=IFCRELASSOCIATESMATERIAL('1ewq4jOInBqxzjtDYt00IG',$,$,$,(#3170),#3171); -#3173=IFCMATERIALPROFILE($,$,#17,#3165,$,$); -#3174=IFCCOLUMNTYPE('044svHf7r4IvJFZKKm$jCM',$,'65SHS16',$,$,$,$,$,$,$); -#3175=IFCMATERIALPROFILESET($,$,(#3177),$); -#3176=IFCRELASSOCIATESMATERIAL('08iX6BjGH4q8is5u5p4w1t',$,$,$,(#3174),#3175); -#3177=IFCMATERIALPROFILE($,$,#17,#3165,$,$); -#3178=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,2.,$,$); -#3179=IFCBEAMTYPE('1k2SUCiVzB39rLfbaivLyK',$,'65SHS20',$,$,$,$,$,$,$); -#3180=IFCMATERIALPROFILESET($,$,(#3182),$); -#3181=IFCRELASSOCIATESMATERIAL('22W7v3JK56EOWKpR$QQYaF',$,$,$,(#3179),#3180); -#3182=IFCMATERIALPROFILE($,$,#17,#3178,$,$); -#3183=IFCMEMBERTYPE('1o9pswr8T9vwenhzK2P5W_',$,'65SHS20',$,$,$,$,$,$,$); -#3184=IFCMATERIALPROFILESET($,$,(#3186),$); -#3185=IFCRELASSOCIATESMATERIAL('2Ds5Jkvnf9BvgdRtt5muFm',$,$,$,(#3183),#3184); -#3186=IFCMATERIALPROFILE($,$,#17,#3178,$,$); -#3187=IFCCOLUMNTYPE('229mwyCrT6og4EhqtwDmHp',$,'65SHS20',$,$,$,$,$,$,$); -#3188=IFCMATERIALPROFILESET($,$,(#3190),$); -#3189=IFCRELASSOCIATESMATERIAL('1PEcariKP1vg4evM0nW3s$',$,$,$,(#3187),#3188); -#3190=IFCMATERIALPROFILE($,$,#17,#3178,$,$); -#3191=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,2.5,$,$); -#3192=IFCBEAMTYPE('2yRQ2NatnAp9nJhqQNHsZd',$,'65SHS25',$,$,$,$,$,$,$); -#3193=IFCMATERIALPROFILESET($,$,(#3195),$); -#3194=IFCRELASSOCIATESMATERIAL('1MpXnMCuj1LQZSxjCmA3wc',$,$,$,(#3192),#3193); -#3195=IFCMATERIALPROFILE($,$,#17,#3191,$,$); -#3196=IFCMEMBERTYPE('0_G3bKx992mBf5tjDkQMOU',$,'65SHS25',$,$,$,$,$,$,$); -#3197=IFCMATERIALPROFILESET($,$,(#3199),$); -#3198=IFCRELASSOCIATESMATERIAL('0oIJeljqv57R_q2hFObf9u',$,$,$,(#3196),#3197); -#3199=IFCMATERIALPROFILE($,$,#17,#3191,$,$); -#3200=IFCCOLUMNTYPE('0dE5BeVTjC0vRuL8kTmPm0',$,'65SHS25',$,$,$,$,$,$,$); -#3201=IFCMATERIALPROFILESET($,$,(#3203),$); -#3202=IFCRELASSOCIATESMATERIAL('2pkGZuSUr3APivWLH$V6Qb',$,$,$,(#3200),#3201); -#3203=IFCMATERIALPROFILE($,$,#17,#3191,$,$); -#3204=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,3.,$,$); -#3205=IFCBEAMTYPE('2rS_qV57bDXQTFJ1mNLfxu',$,'65SHS30',$,$,$,$,$,$,$); -#3206=IFCMATERIALPROFILESET($,$,(#3208),$); -#3207=IFCRELASSOCIATESMATERIAL('1lr9oRaO16_A9j$TvlDFrH',$,$,$,(#3205),#3206); -#3208=IFCMATERIALPROFILE($,$,#17,#3204,$,$); -#3209=IFCMEMBERTYPE('0gfqhU5jr9OQM9Kif9_vAf',$,'65SHS30',$,$,$,$,$,$,$); -#3210=IFCMATERIALPROFILESET($,$,(#3212),$); -#3211=IFCRELASSOCIATESMATERIAL('274wrAt6H2T91lQcvheqqP',$,$,$,(#3209),#3210); -#3212=IFCMATERIALPROFILE($,$,#17,#3204,$,$); -#3213=IFCCOLUMNTYPE('3LvDJ8wD9DgQEnckgSQbbO',$,'65SHS30',$,$,$,$,$,$,$); -#3214=IFCMATERIALPROFILESET($,$,(#3216),$); -#3215=IFCRELASSOCIATESMATERIAL('2HMjk9IiP4HuEgzfh$76Qb',$,$,$,(#3213),#3214); -#3216=IFCMATERIALPROFILE($,$,#17,#3204,$,$); -#3217=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,4.,$,$); -#3218=IFCBEAMTYPE('1vxmAhX25CFgcANpGCIz88',$,'65SHS40',$,$,$,$,$,$,$); -#3219=IFCMATERIALPROFILESET($,$,(#3221),$); -#3220=IFCRELASSOCIATESMATERIAL('2fw5OB1SDB9hesrHM98CGK',$,$,$,(#3218),#3219); -#3221=IFCMATERIALPROFILE($,$,#17,#3217,$,$); -#3222=IFCMEMBERTYPE('3Od1Ew7Mb4xOF546R3XCx6',$,'65SHS40',$,$,$,$,$,$,$); -#3223=IFCMATERIALPROFILESET($,$,(#3225),$); -#3224=IFCRELASSOCIATESMATERIAL('2w5KWTlhb9CvaVfkfl1Q68',$,$,$,(#3222),#3223); -#3225=IFCMATERIALPROFILE($,$,#17,#3217,$,$); -#3226=IFCCOLUMNTYPE('2K0MpB2Mb7KA8H5FbxbzNb',$,'65SHS40',$,$,$,$,$,$,$); -#3227=IFCMATERIALPROFILESET($,$,(#3229),$); -#3228=IFCRELASSOCIATESMATERIAL('0mNM$jlu9AVhdbcEzyxnmz',$,$,$,(#3226),#3227); -#3229=IFCMATERIALPROFILE($,$,#17,#3217,$,$); -#3230=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,5.,$,$); -#3231=IFCBEAMTYPE('0zQ1UuQ6z2iQuijEyUHKSC',$,'65SHS50',$,$,$,$,$,$,$); -#3232=IFCMATERIALPROFILESET($,$,(#3234),$); -#3233=IFCRELASSOCIATESMATERIAL('1Ng0P6caTD$P_7mPZtTq2U',$,$,$,(#3231),#3232); -#3234=IFCMATERIALPROFILE($,$,#17,#3230,$,$); -#3235=IFCMEMBERTYPE('2ujLI$sXf0IQAZBiu80k6_',$,'65SHS50',$,$,$,$,$,$,$); -#3236=IFCMATERIALPROFILESET($,$,(#3238),$); -#3237=IFCRELASSOCIATESMATERIAL('3L6aovbbr9Ogj73R4LxSNs',$,$,$,(#3235),#3236); -#3238=IFCMATERIALPROFILE($,$,#17,#3230,$,$); -#3239=IFCCOLUMNTYPE('1mwPsmEdbEPA4eqcglxIH1',$,'65SHS50',$,$,$,$,$,$,$); -#3240=IFCMATERIALPROFILESET($,$,(#3242),$); -#3241=IFCRELASSOCIATESMATERIAL('01i1c3ZnH2meL5hVS2c5RK',$,$,$,(#3239),#3240); -#3242=IFCMATERIALPROFILE($,$,#17,#3230,$,$); -#3243=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,65.,6.,$,$); -#3244=IFCBEAMTYPE('1VybpXiBDDiP2TcRSa0$6e',$,'65SHS60',$,$,$,$,$,$,$); -#3245=IFCMATERIALPROFILESET($,$,(#3247),$); -#3246=IFCRELASSOCIATESMATERIAL('23Z$uYw0j8RRx$fdyver_$',$,$,$,(#3244),#3245); -#3247=IFCMATERIALPROFILE($,$,#17,#3243,$,$); -#3248=IFCMEMBERTYPE('2I1bSi6oDDJREHOX$utsOw',$,'65SHS60',$,$,$,$,$,$,$); -#3249=IFCMATERIALPROFILESET($,$,(#3251),$); -#3250=IFCRELASSOCIATESMATERIAL('3J5UDHfYf01OFPGqcLdFP6',$,$,$,(#3248),#3249); -#3251=IFCMATERIALPROFILE($,$,#17,#3243,$,$); -#3252=IFCCOLUMNTYPE('0dk6qW5gT0EOac4nqgY2Y3',$,'65SHS60',$,$,$,$,$,$,$); -#3253=IFCMATERIALPROFILESET($,$,(#3255),$); -#3254=IFCRELASSOCIATESMATERIAL('1scdr8WSDDUAyP34V0XfQH',$,$,$,(#3252),#3253); -#3255=IFCMATERIALPROFILE($,$,#17,#3243,$,$); -#3256=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,2.,$,$); -#3257=IFCBEAMTYPE('1TtPyXwZ93lfxJPmmE4jEb',$,'75SHS20',$,$,$,$,$,$,$); -#3258=IFCMATERIALPROFILESET($,$,(#3260),$); -#3259=IFCRELASSOCIATESMATERIAL('2kgIKKT690BhAdFFQ6noX7',$,$,$,(#3257),#3258); -#3260=IFCMATERIALPROFILE($,$,#17,#3256,$,$); -#3261=IFCMEMBERTYPE('26J5EsHJr9buVL$PhdAys6',$,'75SHS20',$,$,$,$,$,$,$); -#3262=IFCMATERIALPROFILESET($,$,(#3264),$); -#3263=IFCRELASSOCIATESMATERIAL('0iaXyqwCn5ugAHrfYIAfzj',$,$,$,(#3261),#3262); -#3264=IFCMATERIALPROFILE($,$,#17,#3256,$,$); -#3265=IFCCOLUMNTYPE('25URsOJOz2UvSJkduL048m',$,'75SHS20',$,$,$,$,$,$,$); -#3266=IFCMATERIALPROFILESET($,$,(#3268),$); -#3267=IFCRELASSOCIATESMATERIAL('3wm2cIfc50ZxagogI7YWPJ',$,$,$,(#3265),#3266); -#3268=IFCMATERIALPROFILE($,$,#17,#3256,$,$); -#3269=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,2.5,$,$); -#3270=IFCBEAMTYPE('2NqzT9PEb15PnQoSPfW7iB',$,'75SHS25',$,$,$,$,$,$,$); -#3271=IFCMATERIALPROFILESET($,$,(#3273),$); -#3272=IFCRELASSOCIATESMATERIAL('02iGfpWPj46QzqqhlUjKNq',$,$,$,(#3270),#3271); -#3273=IFCMATERIALPROFILE($,$,#17,#3269,$,$); -#3274=IFCMEMBERTYPE('3EDbBvLyT189XGSw92xWHp',$,'75SHS25',$,$,$,$,$,$,$); -#3275=IFCMATERIALPROFILESET($,$,(#3277),$); -#3276=IFCRELASSOCIATESMATERIAL('3ZPT2iMQH4FuNnf0gyUBxE',$,$,$,(#3274),#3275); -#3277=IFCMATERIALPROFILE($,$,#17,#3269,$,$); -#3278=IFCCOLUMNTYPE('2L1CITZ5n5g8_iyhMoLy$3',$,'75SHS25',$,$,$,$,$,$,$); -#3279=IFCMATERIALPROFILESET($,$,(#3281),$); -#3280=IFCRELASSOCIATESMATERIAL('04vVpX$yv19ecNiyyCbrMW',$,$,$,(#3278),#3279); -#3281=IFCMATERIALPROFILE($,$,#17,#3269,$,$); -#3282=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,3.,$,$); -#3283=IFCBEAMTYPE('1ArRyCDKrBKud0K240kEGc',$,'75SHS30',$,$,$,$,$,$,$); -#3284=IFCMATERIALPROFILESET($,$,(#3286),$); -#3285=IFCRELASSOCIATESMATERIAL('2MtUDCjWf3OQf6hXLkP6AB',$,$,$,(#3283),#3284); -#3286=IFCMATERIALPROFILE($,$,#17,#3282,$,$); -#3287=IFCMEMBERTYPE('0tdHWd_zz3CPN5sUJ11ACc',$,'75SHS30',$,$,$,$,$,$,$); -#3288=IFCMATERIALPROFILESET($,$,(#3290),$); -#3289=IFCRELASSOCIATESMATERIAL('0TGKP7G7b91fXBTqLAJLXN',$,$,$,(#3287),#3288); -#3290=IFCMATERIALPROFILE($,$,#17,#3282,$,$); -#3291=IFCCOLUMNTYPE('1qNRAlFfn4OhsCiH7U1RzU',$,'75SHS30',$,$,$,$,$,$,$); -#3292=IFCMATERIALPROFILESET($,$,(#3294),$); -#3293=IFCRELASSOCIATESMATERIAL('10FuZ8cM93R9xiQPv0P2Yz',$,$,$,(#3291),#3292); -#3294=IFCMATERIALPROFILE($,$,#17,#3282,$,$); -#3295=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,3.5,$,$); -#3296=IFCBEAMTYPE('37KIK726v6X9JRI5km7g5Z',$,'75SHS35',$,$,$,$,$,$,$); -#3297=IFCMATERIALPROFILESET($,$,(#3299),$); -#3298=IFCRELASSOCIATESMATERIAL('3xuDezTYr1TQfcooh$7Q6e',$,$,$,(#3296),#3297); -#3299=IFCMATERIALPROFILE($,$,#17,#3295,$,$); -#3300=IFCMEMBERTYPE('0w6QmjmrnFv9QJ9jrxIoiq',$,'75SHS35',$,$,$,$,$,$,$); -#3301=IFCMATERIALPROFILESET($,$,(#3303),$); -#3302=IFCRELASSOCIATESMATERIAL('1wxEds1xD6R8weig8niSB_',$,$,$,(#3300),#3301); -#3303=IFCMATERIALPROFILE($,$,#17,#3295,$,$); -#3304=IFCCOLUMNTYPE('2jYleyxDv4bff8GG7CedpB',$,'75SHS35',$,$,$,$,$,$,$); -#3305=IFCMATERIALPROFILESET($,$,(#3307),$); -#3306=IFCRELASSOCIATESMATERIAL('1J3ge0KenDBR0kuDvZHBNV',$,$,$,(#3304),#3305); -#3307=IFCMATERIALPROFILE($,$,#17,#3295,$,$); -#3308=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,4.,$,$); -#3309=IFCBEAMTYPE('3NvOtxiQ1BfvPZ9g8E3736',$,'75SHS40',$,$,$,$,$,$,$); -#3310=IFCMATERIALPROFILESET($,$,(#3312),$); -#3311=IFCRELASSOCIATESMATERIAL('3FOLDsh05EMeo2PQlSd9dv',$,$,$,(#3309),#3310); -#3312=IFCMATERIALPROFILE($,$,#17,#3308,$,$); -#3313=IFCMEMBERTYPE('1yYM4tWLH4EwD7ribvUHPi',$,'75SHS40',$,$,$,$,$,$,$); -#3314=IFCMATERIALPROFILESET($,$,(#3316),$); -#3315=IFCRELASSOCIATESMATERIAL('2YleRdfa98rPAGR9wbTAna',$,$,$,(#3313),#3314); -#3316=IFCMATERIALPROFILE($,$,#17,#3308,$,$); -#3317=IFCCOLUMNTYPE('3$0HW_0SjESR1nQ90Dn$om',$,'75SHS40',$,$,$,$,$,$,$); -#3318=IFCMATERIALPROFILESET($,$,(#3320),$); -#3319=IFCRELASSOCIATESMATERIAL('1X3l_FEXzBCwdjUbYT6Haq',$,$,$,(#3317),#3318); -#3320=IFCMATERIALPROFILE($,$,#17,#3308,$,$); -#3321=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,5.,$,$); -#3322=IFCBEAMTYPE('3USuVcbqb6b8E0nmYqR4MD',$,'75SHS50',$,$,$,$,$,$,$); -#3323=IFCMATERIALPROFILESET($,$,(#3325),$); -#3324=IFCRELASSOCIATESMATERIAL('2DslnoQ9H1UhBZhSBwNq1a',$,$,$,(#3322),#3323); -#3325=IFCMATERIALPROFILE($,$,#17,#3321,$,$); -#3326=IFCMEMBERTYPE('0pQss5wUHFPgtJkYQDE6pm',$,'75SHS50',$,$,$,$,$,$,$); -#3327=IFCMATERIALPROFILESET($,$,(#3329),$); -#3328=IFCRELASSOCIATESMATERIAL('3v1dPhAS1DYg$7R2XclNoG',$,$,$,(#3326),#3327); -#3329=IFCMATERIALPROFILE($,$,#17,#3321,$,$); -#3330=IFCCOLUMNTYPE('1TyGj9VfX3Zhucr944N$la',$,'75SHS50',$,$,$,$,$,$,$); -#3331=IFCMATERIALPROFILESET($,$,(#3333),$); -#3332=IFCRELASSOCIATESMATERIAL('1ubTUrY8X0HQ89lrd4tKZb',$,$,$,(#3330),#3331); -#3333=IFCMATERIALPROFILE($,$,#17,#3321,$,$); -#3334=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,75.,6.,$,$); -#3335=IFCBEAMTYPE('3JnyKYdMD3zvxcQe8gwWzd',$,'75SHS60',$,$,$,$,$,$,$); -#3336=IFCMATERIALPROFILESET($,$,(#3338),$); -#3337=IFCRELASSOCIATESMATERIAL('06KrSIfVf2XRo4kYZUIbX9',$,$,$,(#3335),#3336); -#3338=IFCMATERIALPROFILE($,$,#17,#3334,$,$); -#3339=IFCMEMBERTYPE('3D9aPaGAjALB2C$GivMB1Z',$,'75SHS60',$,$,$,$,$,$,$); -#3340=IFCMATERIALPROFILESET($,$,(#3342),$); -#3341=IFCRELASSOCIATESMATERIAL('0T8Wu2UkPF3v6EsGX0CERu',$,$,$,(#3339),#3340); -#3342=IFCMATERIALPROFILE($,$,#17,#3334,$,$); -#3343=IFCCOLUMNTYPE('17Wv4WSEH2APqrTvxaDTQd',$,'75SHS60',$,$,$,$,$,$,$); -#3344=IFCMATERIALPROFILESET($,$,(#3346),$); -#3345=IFCRELASSOCIATESMATERIAL('09PFJax4T1fvNcb$kBq1tI',$,$,$,(#3343),#3344); -#3346=IFCMATERIALPROFILE($,$,#17,#3334,$,$); -#3347=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,89.,89.,2.,$,$); -#3348=IFCBEAMTYPE('05YjHt4x99yhprYGdDuY7v',$,'89SHS20',$,$,$,$,$,$,$); -#3349=IFCMATERIALPROFILESET($,$,(#3351),$); -#3350=IFCRELASSOCIATESMATERIAL('0WqyTUUQn02RcgtNOrM5tL',$,$,$,(#3348),#3349); -#3351=IFCMATERIALPROFILE($,$,#17,#3347,$,$); -#3352=IFCMEMBERTYPE('1ekmaAu1vAyQP9V8al5qwJ',$,'89SHS20',$,$,$,$,$,$,$); -#3353=IFCMATERIALPROFILESET($,$,(#3355),$); -#3354=IFCRELASSOCIATESMATERIAL('3mqVIVvU59uxMHjXN0u_5q',$,$,$,(#3352),#3353); -#3355=IFCMATERIALPROFILE($,$,#17,#3347,$,$); -#3356=IFCCOLUMNTYPE('2AOiNQJx50VAh1Sj_zx3yv',$,'89SHS20',$,$,$,$,$,$,$); -#3357=IFCMATERIALPROFILESET($,$,(#3359),$); -#3358=IFCRELASSOCIATESMATERIAL('1hGDlx9Xb7hh29zwMqvdVh',$,$,$,(#3356),#3357); -#3359=IFCMATERIALPROFILE($,$,#17,#3347,$,$); -#3360=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,89.,89.,3.5,$,$); -#3361=IFCBEAMTYPE('2RTgtAUgb3w9sBDO2qaKlP',$,'89SHS35',$,$,$,$,$,$,$); -#3362=IFCMATERIALPROFILESET($,$,(#3364),$); -#3363=IFCRELASSOCIATESMATERIAL('0e0rLZ8nTEpfq87ilzUdIF',$,$,$,(#3361),#3362); -#3364=IFCMATERIALPROFILE($,$,#17,#3360,$,$); -#3365=IFCMEMBERTYPE('19ead4RhH83ggo2aVakeil',$,'89SHS35',$,$,$,$,$,$,$); -#3366=IFCMATERIALPROFILESET($,$,(#3368),$); -#3367=IFCRELASSOCIATESMATERIAL('2p2a2HH896BOzSSWNvNjZm',$,$,$,(#3365),#3366); -#3368=IFCMATERIALPROFILE($,$,#17,#3360,$,$); -#3369=IFCCOLUMNTYPE('1VGvCN9DrBJwaExLDbUpSY',$,'89SHS35',$,$,$,$,$,$,$); -#3370=IFCMATERIALPROFILESET($,$,(#3372),$); -#3371=IFCRELASSOCIATESMATERIAL('3KFOe7bDrBwR9yyy1rPcps',$,$,$,(#3369),#3370); -#3372=IFCMATERIALPROFILE($,$,#17,#3360,$,$); -#3373=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,89.,89.,5.,$,$); -#3374=IFCBEAMTYPE('2cjtkhd$zDaesxmkIMg6Ir',$,'89SHS50',$,$,$,$,$,$,$); -#3375=IFCMATERIALPROFILESET($,$,(#3377),$); -#3376=IFCRELASSOCIATESMATERIAL('3ia4ZWadLDEO9OIRMCKjlM',$,$,$,(#3374),#3375); -#3377=IFCMATERIALPROFILE($,$,#17,#3373,$,$); -#3378=IFCMEMBERTYPE('2lt3ruW4f8XxCrxbhgaxl7',$,'89SHS50',$,$,$,$,$,$,$); -#3379=IFCMATERIALPROFILESET($,$,(#3381),$); -#3380=IFCRELASSOCIATESMATERIAL('2SuAVuuvX2aAYgen8BdgnM',$,$,$,(#3378),#3379); -#3381=IFCMATERIALPROFILE($,$,#17,#3373,$,$); -#3382=IFCCOLUMNTYPE('3lieb7SZf438iAaEM7v9_j',$,'89SHS50',$,$,$,$,$,$,$); -#3383=IFCMATERIALPROFILESET($,$,(#3385),$); -#3384=IFCRELASSOCIATESMATERIAL('2wjrXtdoXF4x$Mit7deSzV',$,$,$,(#3382),#3383); -#3385=IFCMATERIALPROFILE($,$,#17,#3373,$,$); -#3386=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,89.,89.,6.,$,$); -#3387=IFCBEAMTYPE('2x8k4ojGr3jQrNwnSUSHEI',$,'89SHS60',$,$,$,$,$,$,$); -#3388=IFCMATERIALPROFILESET($,$,(#3390),$); -#3389=IFCRELASSOCIATESMATERIAL('1Xlb$X5ZX2cuNQRJfRcSMu',$,$,$,(#3387),#3388); -#3390=IFCMATERIALPROFILE($,$,#17,#3386,$,$); -#3391=IFCMEMBERTYPE('1ElySzer90NPrikMqsnIPv',$,'89SHS60',$,$,$,$,$,$,$); -#3392=IFCMATERIALPROFILESET($,$,(#3394),$); -#3393=IFCRELASSOCIATESMATERIAL('3aRcteTeLD8QTp0ekQHwiJ',$,$,$,(#3391),#3392); -#3394=IFCMATERIALPROFILE($,$,#17,#3386,$,$); -#3395=IFCCOLUMNTYPE('0Tt9cYkq5CDxuYlZ0WBArb',$,'89SHS60',$,$,$,$,$,$,$); -#3396=IFCMATERIALPROFILESET($,$,(#3398),$); -#3397=IFCRELASSOCIATESMATERIAL('3idGb5oQDFpBLxehhkdXUm',$,$,$,(#3395),#3396); -#3398=IFCMATERIALPROFILE($,$,#17,#3386,$,$); -#3399=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,90.,90.,2.,$,$); -#3400=IFCBEAMTYPE('1w_o7vi69E2v8bJM69UPni',$,'90SHS20',$,$,$,$,$,$,$); -#3401=IFCMATERIALPROFILESET($,$,(#3403),$); -#3402=IFCRELASSOCIATESMATERIAL('19Kwrer4LA5RypChhfWssS',$,$,$,(#3400),#3401); -#3403=IFCMATERIALPROFILE($,$,#17,#3399,$,$); -#3404=IFCMEMBERTYPE('18E3pvUWT5Kxmlzpslf7Y7',$,'90SHS20',$,$,$,$,$,$,$); -#3405=IFCMATERIALPROFILESET($,$,(#3407),$); -#3406=IFCRELASSOCIATESMATERIAL('2YaimvL$9BqQdaIZ12JrfX',$,$,$,(#3404),#3405); -#3407=IFCMATERIALPROFILE($,$,#17,#3399,$,$); -#3408=IFCCOLUMNTYPE('2fznaSaJb0rwNGFBafP3X9',$,'90SHS20',$,$,$,$,$,$,$); -#3409=IFCMATERIALPROFILESET($,$,(#3411),$); -#3410=IFCRELASSOCIATESMATERIAL('370BRWFkr3Df9WjFIDLKNc',$,$,$,(#3408),#3409); -#3411=IFCMATERIALPROFILE($,$,#17,#3399,$,$); -#3412=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,90.,90.,2.5,$,$); -#3413=IFCBEAMTYPE('2rtKHU64j0wO20VPK0rD1m',$,'90SHS25',$,$,$,$,$,$,$); -#3414=IFCMATERIALPROFILESET($,$,(#3416),$); -#3415=IFCRELASSOCIATESMATERIAL('0mLtPDjpjDzRH8yThdlloJ',$,$,$,(#3413),#3414); -#3416=IFCMATERIALPROFILE($,$,#17,#3412,$,$); -#3417=IFCMEMBERTYPE('10bgS5c0L0rvW_tIx8A4rC',$,'90SHS25',$,$,$,$,$,$,$); -#3418=IFCMATERIALPROFILESET($,$,(#3420),$); -#3419=IFCRELASSOCIATESMATERIAL('2825Vq4ezBef7ODqGOm23e',$,$,$,(#3417),#3418); -#3420=IFCMATERIALPROFILE($,$,#17,#3412,$,$); -#3421=IFCCOLUMNTYPE('2OgAAjo7fAPxxoskjkwocu',$,'90SHS25',$,$,$,$,$,$,$); -#3422=IFCMATERIALPROFILESET($,$,(#3424),$); -#3423=IFCRELASSOCIATESMATERIAL('3cEieh6F984wNc_R7YoqWi',$,$,$,(#3421),#3422); -#3424=IFCMATERIALPROFILE($,$,#17,#3412,$,$); -#3425=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,2.,$,$); -#3426=IFCBEAMTYPE('26meCz63jE5wi_WR0GlE9D',$,'100SHS20',$,$,$,$,$,$,$); -#3427=IFCMATERIALPROFILESET($,$,(#3429),$); -#3428=IFCRELASSOCIATESMATERIAL('1iErB5T$r5kO4BWdkv0z8X',$,$,$,(#3426),#3427); -#3429=IFCMATERIALPROFILE($,$,#17,#3425,$,$); -#3430=IFCMEMBERTYPE('0YO5YRwQTB2wdxk01S4sjn',$,'100SHS20',$,$,$,$,$,$,$); -#3431=IFCMATERIALPROFILESET($,$,(#3433),$); -#3432=IFCRELASSOCIATESMATERIAL('2$F3O__Xf9WRnDESmUyz4$',$,$,$,(#3430),#3431); -#3433=IFCMATERIALPROFILE($,$,#17,#3425,$,$); -#3434=IFCCOLUMNTYPE('2YiEJGnqv0teJ6rLrvl2wU',$,'100SHS20',$,$,$,$,$,$,$); -#3435=IFCMATERIALPROFILESET($,$,(#3437),$); -#3436=IFCRELASSOCIATESMATERIAL('0bsE$j$G15zwCB6JTxie7Y',$,$,$,(#3434),#3435); -#3437=IFCMATERIALPROFILE($,$,#17,#3425,$,$); -#3438=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,2.5,$,$); -#3439=IFCBEAMTYPE('2_eQbrmqT7HgOkycJ9arD3',$,'100SHS25',$,$,$,$,$,$,$); -#3440=IFCMATERIALPROFILESET($,$,(#3442),$); -#3441=IFCRELASSOCIATESMATERIAL('2FzTx9EhzCDghhBnGS7Zh0',$,$,$,(#3439),#3440); -#3442=IFCMATERIALPROFILE($,$,#17,#3438,$,$); -#3443=IFCMEMBERTYPE('0q7MKMudz1DxZS6g3S2tSK',$,'100SHS25',$,$,$,$,$,$,$); -#3444=IFCMATERIALPROFILESET($,$,(#3446),$); -#3445=IFCRELASSOCIATESMATERIAL('2AFRxsNL5CmBTNT08B_IiF',$,$,$,(#3443),#3444); -#3446=IFCMATERIALPROFILE($,$,#17,#3438,$,$); -#3447=IFCCOLUMNTYPE('10655FSMvC8R2FgNJaYqC4',$,'100SHS25',$,$,$,$,$,$,$); -#3448=IFCMATERIALPROFILESET($,$,(#3450),$); -#3449=IFCRELASSOCIATESMATERIAL('1JZ2viBKH1xxIE8wpEVZUT',$,$,$,(#3447),#3448); -#3450=IFCMATERIALPROFILE($,$,#17,#3438,$,$); -#3451=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,3.,$,$); -#3452=IFCBEAMTYPE('3hrgT$ONnD9QGX_WXjmEnq',$,'100SHS30',$,$,$,$,$,$,$); -#3453=IFCMATERIALPROFILESET($,$,(#3455),$); -#3454=IFCRELASSOCIATESMATERIAL('0SRm_TMCDEJOviBaX7lMq9',$,$,$,(#3452),#3453); -#3455=IFCMATERIALPROFILE($,$,#17,#3451,$,$); -#3456=IFCMEMBERTYPE('119AvKtPPFdvaMtkC8iygZ',$,'100SHS30',$,$,$,$,$,$,$); -#3457=IFCMATERIALPROFILESET($,$,(#3459),$); -#3458=IFCRELASSOCIATESMATERIAL('21l_GHD0r32hO4e0tczSmZ',$,$,$,(#3456),#3457); -#3459=IFCMATERIALPROFILE($,$,#17,#3451,$,$); -#3460=IFCCOLUMNTYPE('2qltVstNj8QvpzrTi1rQ_a',$,'100SHS30',$,$,$,$,$,$,$); -#3461=IFCMATERIALPROFILESET($,$,(#3463),$); -#3462=IFCRELASSOCIATESMATERIAL('1YGzDbNeH0lvuxNxCJyyoi',$,$,$,(#3460),#3461); -#3463=IFCMATERIALPROFILE($,$,#17,#3451,$,$); -#3464=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,4.,$,$); -#3465=IFCBEAMTYPE('0M3fB_vqDBbfHBqlXVaaBp',$,'100SHS40',$,$,$,$,$,$,$); -#3466=IFCMATERIALPROFILESET($,$,(#3468),$); -#3467=IFCRELASSOCIATESMATERIAL('2EAjA3ue9AwBmLeSnS0SEU',$,$,$,(#3465),#3466); -#3468=IFCMATERIALPROFILE($,$,#17,#3464,$,$); -#3469=IFCMEMBERTYPE('0PHD3pBWD68BWTQppPkuS5',$,'100SHS40',$,$,$,$,$,$,$); -#3470=IFCMATERIALPROFILESET($,$,(#3472),$); -#3471=IFCRELASSOCIATESMATERIAL('2aUwT_S09Ale1nfA3Bojus',$,$,$,(#3469),#3470); -#3472=IFCMATERIALPROFILE($,$,#17,#3464,$,$); -#3473=IFCCOLUMNTYPE('2yvhTOYbT9lR$9iLyBjoZf',$,'100SHS40',$,$,$,$,$,$,$); -#3474=IFCMATERIALPROFILESET($,$,(#3476),$); -#3475=IFCRELASSOCIATESMATERIAL('0W2Q6dFPP1wgaOgm_DZEm1',$,$,$,(#3473),#3474); -#3476=IFCMATERIALPROFILE($,$,#17,#3464,$,$); -#3477=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,5.,$,$); -#3478=IFCBEAMTYPE('2zRLlES852dPMdAtjU6XYm',$,'100SHS50',$,$,$,$,$,$,$); -#3479=IFCMATERIALPROFILESET($,$,(#3481),$); -#3480=IFCRELASSOCIATESMATERIAL('1q_IeKggv4LQd$Y3ynoTw6',$,$,$,(#3478),#3479); -#3481=IFCMATERIALPROFILE($,$,#17,#3477,$,$); -#3482=IFCMEMBERTYPE('2lrfIHoxT8ZfDFLnpDId7d',$,'100SHS50',$,$,$,$,$,$,$); -#3483=IFCMATERIALPROFILESET($,$,(#3485),$); -#3484=IFCRELASSOCIATESMATERIAL('3APCVL1Mb4c8hbNv52iEKb',$,$,$,(#3482),#3483); -#3485=IFCMATERIALPROFILE($,$,#17,#3477,$,$); -#3486=IFCCOLUMNTYPE('00z_QjCn5FDh3L5eGfK6U6',$,'100SHS50',$,$,$,$,$,$,$); -#3487=IFCMATERIALPROFILESET($,$,(#3489),$); -#3488=IFCRELASSOCIATESMATERIAL('1oGRbrVs90xAKg7UXR9a2A',$,$,$,(#3486),#3487); -#3489=IFCMATERIALPROFILE($,$,#17,#3477,$,$); -#3490=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,6.,$,$); -#3491=IFCBEAMTYPE('15iJx4rn18FxMwCIUOVg9s',$,'100SHS60',$,$,$,$,$,$,$); -#3492=IFCMATERIALPROFILESET($,$,(#3494),$); -#3493=IFCRELASSOCIATESMATERIAL('0BkRCg9Fb0oRgC4IaD98ZC',$,$,$,(#3491),#3492); -#3494=IFCMATERIALPROFILE($,$,#17,#3490,$,$); -#3495=IFCMEMBERTYPE('1gl6a0t9z9IhVi3LiFyIz8',$,'100SHS60',$,$,$,$,$,$,$); -#3496=IFCMATERIALPROFILESET($,$,(#3498),$); -#3497=IFCRELASSOCIATESMATERIAL('1OdfApGnH2sxo6zwxvB4$q',$,$,$,(#3495),#3496); -#3498=IFCMATERIALPROFILE($,$,#17,#3490,$,$); -#3499=IFCCOLUMNTYPE('0VO2m5Dhz8eODd54irD4IM',$,'100SHS60',$,$,$,$,$,$,$); -#3500=IFCMATERIALPROFILESET($,$,(#3502),$); -#3501=IFCRELASSOCIATESMATERIAL('10KileEmP48xufI5y5OYhS',$,$,$,(#3499),#3500); -#3502=IFCMATERIALPROFILE($,$,#17,#3490,$,$); -#3503=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,8.,$,$); -#3504=IFCBEAMTYPE('3I7_1ksPT93OHLIBxGycUS',$,'100SHS80',$,$,$,$,$,$,$); -#3505=IFCMATERIALPROFILESET($,$,(#3507),$); -#3506=IFCRELASSOCIATESMATERIAL('2PmClzeUn8dO4lsY6xmtEI',$,$,$,(#3504),#3505); -#3507=IFCMATERIALPROFILE($,$,#17,#3503,$,$); -#3508=IFCMEMBERTYPE('2f7NbT38rBzxH7h2g_UOjt',$,'100SHS80',$,$,$,$,$,$,$); -#3509=IFCMATERIALPROFILESET($,$,(#3511),$); -#3510=IFCRELASSOCIATESMATERIAL('3$HElKMpX9$QhziQjR7jfJ',$,$,$,(#3508),#3509); -#3511=IFCMATERIALPROFILE($,$,#17,#3503,$,$); -#3512=IFCCOLUMNTYPE('2jl6EXrTvDGes$9d2OyKQh',$,'100SHS80',$,$,$,$,$,$,$); -#3513=IFCMATERIALPROFILESET($,$,(#3515),$); -#3514=IFCRELASSOCIATESMATERIAL('0XBSNUnGn29uX1pLbB16Fz',$,$,$,(#3512),#3513); -#3515=IFCMATERIALPROFILE($,$,#17,#3503,$,$); -#3516=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,9.,$,$); -#3517=IFCBEAMTYPE('20$c0QAXD4$eEltz1yTFAh',$,'100SHS90',$,$,$,$,$,$,$); -#3518=IFCMATERIALPROFILESET($,$,(#3520),$); -#3519=IFCRELASSOCIATESMATERIAL('1ZBHd_nG97X8n8wAbYUvPi',$,$,$,(#3517),#3518); -#3520=IFCMATERIALPROFILE($,$,#17,#3516,$,$); -#3521=IFCMEMBERTYPE('1iku9df7rB4uIdYIjxQYXN',$,'100SHS90',$,$,$,$,$,$,$); -#3522=IFCMATERIALPROFILESET($,$,(#3524),$); -#3523=IFCRELASSOCIATESMATERIAL('3NhmbDTtP51AwkfN$lr4pS',$,$,$,(#3521),#3522); -#3524=IFCMATERIALPROFILE($,$,#17,#3516,$,$); -#3525=IFCCOLUMNTYPE('31qGLt87b5Gh_VCqWQOpZC',$,'100SHS90',$,$,$,$,$,$,$); -#3526=IFCMATERIALPROFILESET($,$,(#3528),$); -#3527=IFCRELASSOCIATESMATERIAL('1G87GUVkL0ieuJyCnLuUbt',$,$,$,(#3525),#3526); -#3528=IFCMATERIALPROFILE($,$,#17,#3516,$,$); -#3529=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,10.,$,$); -#3530=IFCBEAMTYPE('2KMDVodnr5u8LtzU0VERbq',$,'100SHS100',$,$,$,$,$,$,$); -#3531=IFCMATERIALPROFILESET($,$,(#3533),$); -#3532=IFCRELASSOCIATESMATERIAL('3dqbhx7r155vC$nHP8zZYH',$,$,$,(#3530),#3531); -#3533=IFCMATERIALPROFILE($,$,#17,#3529,$,$); -#3534=IFCMEMBERTYPE('12L6cCGbf3khtronUtQ0$2',$,'100SHS100',$,$,$,$,$,$,$); -#3535=IFCMATERIALPROFILESET($,$,(#3537),$); -#3536=IFCRELASSOCIATESMATERIAL('11HR$hXITCZfezEAff0iPq',$,$,$,(#3534),#3535); -#3537=IFCMATERIALPROFILE($,$,#17,#3529,$,$); -#3538=IFCCOLUMNTYPE('2jg$uYXd90Rwg8xUSiPbUd',$,'100SHS100',$,$,$,$,$,$,$); -#3539=IFCMATERIALPROFILESET($,$,(#3541),$); -#3540=IFCRELASSOCIATESMATERIAL('1ATEPKUVX9qfz2EDE4Ap0D',$,$,$,(#3538),#3539); -#3541=IFCMATERIALPROFILE($,$,#17,#3529,$,$); -#3542=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,125.,4.,$,$); -#3543=IFCBEAMTYPE('3Dii3le493Kfq85ccUqtod',$,'125SHS40',$,$,$,$,$,$,$); -#3544=IFCMATERIALPROFILESET($,$,(#3546),$); -#3545=IFCRELASSOCIATESMATERIAL('3H6d1nc793pg24Kd8MOjOX',$,$,$,(#3543),#3544); -#3546=IFCMATERIALPROFILE($,$,#17,#3542,$,$); -#3547=IFCMEMBERTYPE('1bn0mAoPn6ZxxLfR7hN$7C',$,'125SHS40',$,$,$,$,$,$,$); -#3548=IFCMATERIALPROFILESET($,$,(#3550),$); -#3549=IFCRELASSOCIATESMATERIAL('0dfXNVCjv9KgdJG7_oOQ1b',$,$,$,(#3547),#3548); -#3550=IFCMATERIALPROFILE($,$,#17,#3542,$,$); -#3551=IFCCOLUMNTYPE('1hNFGD_QH1SBOVOr8r3Kpw',$,'125SHS40',$,$,$,$,$,$,$); -#3552=IFCMATERIALPROFILESET($,$,(#3554),$); -#3553=IFCRELASSOCIATESMATERIAL('2AvwrGcr57aOl60vFvFloM',$,$,$,(#3551),#3552); -#3554=IFCMATERIALPROFILE($,$,#17,#3542,$,$); -#3555=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,125.,5.,$,$); -#3556=IFCBEAMTYPE('35rKyporjE9e3sidhtIpFY',$,'125SHS50',$,$,$,$,$,$,$); -#3557=IFCMATERIALPROFILESET($,$,(#3559),$); -#3558=IFCRELASSOCIATESMATERIAL('2s1aRuVLTDVA4qJCqDUDmW',$,$,$,(#3556),#3557); -#3559=IFCMATERIALPROFILE($,$,#17,#3555,$,$); -#3560=IFCMEMBERTYPE('0bAf_y4afExQbb7NIDjKsJ',$,'125SHS50',$,$,$,$,$,$,$); -#3561=IFCMATERIALPROFILESET($,$,(#3563),$); -#3562=IFCRELASSOCIATESMATERIAL('1ITyiNBI53phuNbbqPS_lQ',$,$,$,(#3560),#3561); -#3563=IFCMATERIALPROFILE($,$,#17,#3555,$,$); -#3564=IFCCOLUMNTYPE('1pBm1wBrj6kvwxrg_nQA$K',$,'125SHS50',$,$,$,$,$,$,$); -#3565=IFCMATERIALPROFILESET($,$,(#3567),$); -#3566=IFCRELASSOCIATESMATERIAL('2hO8HthjDDEALmQy4tceHC',$,$,$,(#3564),#3565); -#3567=IFCMATERIALPROFILE($,$,#17,#3555,$,$); -#3568=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,125.,6.,$,$); -#3569=IFCBEAMTYPE('1gQdHjeET4gBRdrRM6l8Za',$,'125SHS60',$,$,$,$,$,$,$); -#3570=IFCMATERIALPROFILESET($,$,(#3572),$); -#3571=IFCRELASSOCIATESMATERIAL('2efeZJ1Gr6O8PsTOk7MjEN',$,$,$,(#3569),#3570); -#3572=IFCMATERIALPROFILE($,$,#17,#3568,$,$); -#3573=IFCMEMBERTYPE('3B57DW4BnEOu71pa3EH3r5',$,'125SHS60',$,$,$,$,$,$,$); -#3574=IFCMATERIALPROFILESET($,$,(#3576),$); -#3575=IFCRELASSOCIATESMATERIAL('01pOM$UT5ASAYV3PU3sqGW',$,$,$,(#3573),#3574); -#3576=IFCMATERIALPROFILE($,$,#17,#3568,$,$); -#3577=IFCCOLUMNTYPE('0I3T0FbZ122Rh5CjTbJZJu',$,'125SHS60',$,$,$,$,$,$,$); -#3578=IFCMATERIALPROFILESET($,$,(#3580),$); -#3579=IFCRELASSOCIATESMATERIAL('3IvE5MMpr2zhOshNik1wko',$,$,$,(#3577),#3578); -#3580=IFCMATERIALPROFILE($,$,#17,#3568,$,$); -#3581=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,125.,8.,$,$); -#3582=IFCBEAMTYPE('2_siNBUPz1BfgDWVmg_wuo',$,'125SHS80',$,$,$,$,$,$,$); -#3583=IFCMATERIALPROFILESET($,$,(#3585),$); -#3584=IFCRELASSOCIATESMATERIAL('0d3byTz7P5sxoRmU9vokDk',$,$,$,(#3582),#3583); -#3585=IFCMATERIALPROFILE($,$,#17,#3581,$,$); -#3586=IFCMEMBERTYPE('3CHIu9MZT0L8Gt0sMn6xch',$,'125SHS80',$,$,$,$,$,$,$); -#3587=IFCMATERIALPROFILESET($,$,(#3589),$); -#3588=IFCRELASSOCIATESMATERIAL('2lgTYDoqnC6Qnc58fVl3Cq',$,$,$,(#3586),#3587); -#3589=IFCMATERIALPROFILE($,$,#17,#3581,$,$); -#3590=IFCCOLUMNTYPE('0339HkoAb9OOVgbpkFT04j',$,'125SHS80',$,$,$,$,$,$,$); -#3591=IFCMATERIALPROFILESET($,$,(#3593),$); -#3592=IFCRELASSOCIATESMATERIAL('2pCYHB_e53hvc6k$S6kEPG',$,$,$,(#3590),#3591); -#3593=IFCMATERIALPROFILE($,$,#17,#3581,$,$); -#3594=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,125.,9.,$,$); -#3595=IFCBEAMTYPE('3bHcYpeFPEbwCAWt4l$fC7',$,'125SHS90',$,$,$,$,$,$,$); -#3596=IFCMATERIALPROFILESET($,$,(#3598),$); -#3597=IFCRELASSOCIATESMATERIAL('2mNiCKwE538QG6KJ$zeTKf',$,$,$,(#3595),#3596); -#3598=IFCMATERIALPROFILE($,$,#17,#3594,$,$); -#3599=IFCMEMBERTYPE('1zKEE08nP9Rvww3uTlBF4A',$,'125SHS90',$,$,$,$,$,$,$); -#3600=IFCMATERIALPROFILESET($,$,(#3602),$); -#3601=IFCRELASSOCIATESMATERIAL('0HtxfzA9XC2f1B0WPakJ4Z',$,$,$,(#3599),#3600); -#3602=IFCMATERIALPROFILE($,$,#17,#3594,$,$); -#3603=IFCCOLUMNTYPE('2Api2z0Uf8Pu6B8sCslUZb',$,'125SHS90',$,$,$,$,$,$,$); -#3604=IFCMATERIALPROFILESET($,$,(#3606),$); -#3605=IFCRELASSOCIATESMATERIAL('0Ml1lXOZr3IPFe2oD0dQ1z',$,$,$,(#3603),#3604); -#3606=IFCMATERIALPROFILE($,$,#17,#3594,$,$); -#3607=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,125.,10.,$,$); -#3608=IFCBEAMTYPE('25ewIx_rfB9xahn8P5gkEb',$,'125SHS100',$,$,$,$,$,$,$); -#3609=IFCMATERIALPROFILESET($,$,(#3611),$); -#3610=IFCRELASSOCIATESMATERIAL('0WPep_UbXEaOvllLRZvb4J',$,$,$,(#3608),#3609); -#3611=IFCMATERIALPROFILE($,$,#17,#3607,$,$); -#3612=IFCMEMBERTYPE('3YO0_wdWT7b8fKqygc3J4B',$,'125SHS100',$,$,$,$,$,$,$); -#3613=IFCMATERIALPROFILESET($,$,(#3615),$); -#3614=IFCRELASSOCIATESMATERIAL('2DZDMc23f0x8ZQJtGr6r8u',$,$,$,(#3612),#3613); -#3615=IFCMATERIALPROFILE($,$,#17,#3607,$,$); -#3616=IFCCOLUMNTYPE('2B4mBMVw12IOr4xxo0o6HU',$,'125SHS100',$,$,$,$,$,$,$); -#3617=IFCMATERIALPROFILESET($,$,(#3619),$); -#3618=IFCRELASSOCIATESMATERIAL('1rmrtWkh16n81DPMoLc$al',$,$,$,(#3616),#3617); -#3619=IFCMATERIALPROFILE($,$,#17,#3607,$,$); -#3620=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,4.,$,$); -#3621=IFCBEAMTYPE('07rKJ8Wc99kBHCxYn1VqLo',$,'150SHS40',$,$,$,$,$,$,$); -#3622=IFCMATERIALPROFILESET($,$,(#3624),$); -#3623=IFCRELASSOCIATESMATERIAL('2dOjV7$n5BeAnLTIIZiKHD',$,$,$,(#3621),#3622); -#3624=IFCMATERIALPROFILE($,$,#17,#3620,$,$); -#3625=IFCMEMBERTYPE('1xh$ntXlX0oxrOG_xBzbeX',$,'150SHS40',$,$,$,$,$,$,$); -#3626=IFCMATERIALPROFILESET($,$,(#3628),$); -#3627=IFCRELASSOCIATESMATERIAL('1_ldQJfeD3Qg$MIs4cl5KH',$,$,$,(#3625),#3626); -#3628=IFCMATERIALPROFILE($,$,#17,#3620,$,$); -#3629=IFCCOLUMNTYPE('2xE1LJRWL6UgYqe4JypA2H',$,'150SHS40',$,$,$,$,$,$,$); -#3630=IFCMATERIALPROFILESET($,$,(#3632),$); -#3631=IFCRELASSOCIATESMATERIAL('0nKhF_YuP9D9xrCnAX8l0K',$,$,$,(#3629),#3630); -#3632=IFCMATERIALPROFILE($,$,#17,#3620,$,$); -#3633=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,5.,$,$); -#3634=IFCBEAMTYPE('3u67$cCOHAOfUf$dkjn8IB',$,'150SHS50',$,$,$,$,$,$,$); -#3635=IFCMATERIALPROFILESET($,$,(#3637),$); -#3636=IFCRELASSOCIATESMATERIAL('3_lhGBpwXFOw8dTmAO8hNm',$,$,$,(#3634),#3635); -#3637=IFCMATERIALPROFILE($,$,#17,#3633,$,$); -#3638=IFCMEMBERTYPE('0X4$sP$S5EhAO_i0Jrg401',$,'150SHS50',$,$,$,$,$,$,$); -#3639=IFCMATERIALPROFILESET($,$,(#3641),$); -#3640=IFCRELASSOCIATESMATERIAL('1RKQvMAz91IQ3Abjl9kmwB',$,$,$,(#3638),#3639); -#3641=IFCMATERIALPROFILE($,$,#17,#3633,$,$); -#3642=IFCCOLUMNTYPE('1qonTKj4TFIQI1Jfz6ANnI',$,'150SHS50',$,$,$,$,$,$,$); -#3643=IFCMATERIALPROFILESET($,$,(#3645),$); -#3644=IFCRELASSOCIATESMATERIAL('0ryXo6eIn0sQPamqZnS_4H',$,$,$,(#3642),#3643); -#3645=IFCMATERIALPROFILE($,$,#17,#3633,$,$); -#3646=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,6.,$,$); -#3647=IFCBEAMTYPE('2Ppa2AsPzE_wwRJQxAHZ9A',$,'150SHS60',$,$,$,$,$,$,$); -#3648=IFCMATERIALPROFILESET($,$,(#3650),$); -#3649=IFCRELASSOCIATESMATERIAL('0ulicj8cLBe8xX3C9VhJTV',$,$,$,(#3647),#3648); -#3650=IFCMATERIALPROFILE($,$,#17,#3646,$,$); -#3651=IFCMEMBERTYPE('3V_EVQ3DL7q9Gci601tDLh',$,'150SHS60',$,$,$,$,$,$,$); -#3652=IFCMATERIALPROFILESET($,$,(#3654),$); -#3653=IFCRELASSOCIATESMATERIAL('08nh3y0AL5ye5hQfAG6G22',$,$,$,(#3651),#3652); -#3654=IFCMATERIALPROFILE($,$,#17,#3646,$,$); -#3655=IFCCOLUMNTYPE('2z_AMDDM16CuK0g5KZ7kBq',$,'150SHS60',$,$,$,$,$,$,$); -#3656=IFCMATERIALPROFILESET($,$,(#3658),$); -#3657=IFCRELASSOCIATESMATERIAL('0L7t9YLdj7HAiml4nxhsNf',$,$,$,(#3655),#3656); -#3658=IFCMATERIALPROFILE($,$,#17,#3646,$,$); -#3659=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,8.,$,$); -#3660=IFCBEAMTYPE('0YC$XZNPr0XBmAds4e6o$c',$,'150SHS80',$,$,$,$,$,$,$); -#3661=IFCMATERIALPROFILESET($,$,(#3663),$); -#3662=IFCRELASSOCIATESMATERIAL('1MTRKDYTb4zA0tUBnfULEx',$,$,$,(#3660),#3661); -#3663=IFCMATERIALPROFILE($,$,#17,#3659,$,$); -#3664=IFCMEMBERTYPE('3a2cnaoaPD7uGVf9ePlbbV',$,'150SHS80',$,$,$,$,$,$,$); -#3665=IFCMATERIALPROFILESET($,$,(#3667),$); -#3666=IFCRELASSOCIATESMATERIAL('1602VguSbAOARaNfZdKs2P',$,$,$,(#3664),#3665); -#3667=IFCMATERIALPROFILE($,$,#17,#3659,$,$); -#3668=IFCCOLUMNTYPE('1Ki56pEjL009v7mnhEoWrm',$,'150SHS80',$,$,$,$,$,$,$); -#3669=IFCMATERIALPROFILESET($,$,(#3671),$); -#3670=IFCRELASSOCIATESMATERIAL('36r4kk2S90tRm2f$IPFMzH',$,$,$,(#3668),#3669); -#3671=IFCMATERIALPROFILE($,$,#17,#3659,$,$); -#3672=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,9.,$,$); -#3673=IFCBEAMTYPE('39q_3WfWv8hPcsn0UGChrB',$,'150SHS90',$,$,$,$,$,$,$); -#3674=IFCMATERIALPROFILESET($,$,(#3676),$); -#3675=IFCRELASSOCIATESMATERIAL('1lUdtYkuf2NeEoSdKO4dKr',$,$,$,(#3673),#3674); -#3676=IFCMATERIALPROFILE($,$,#17,#3672,$,$); -#3677=IFCMEMBERTYPE('2WfyI$NS9DSOTOSGr5BkCF',$,'150SHS90',$,$,$,$,$,$,$); -#3678=IFCMATERIALPROFILESET($,$,(#3680),$); -#3679=IFCRELASSOCIATESMATERIAL('1JKpHZIGr83wwbIpnOhI_r',$,$,$,(#3677),#3678); -#3680=IFCMATERIALPROFILE($,$,#17,#3672,$,$); -#3681=IFCCOLUMNTYPE('23tAPUTmnDxuTbOUMMdg6d',$,'150SHS90',$,$,$,$,$,$,$); -#3682=IFCMATERIALPROFILESET($,$,(#3684),$); -#3683=IFCRELASSOCIATESMATERIAL('30G6PXOxbCcuF0etIeXRYm',$,$,$,(#3681),#3682); -#3684=IFCMATERIALPROFILE($,$,#17,#3672,$,$); -#3685=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,10.,$,$); -#3686=IFCBEAMTYPE('18uAQamxHB5RTH4fp0w4tS',$,'150SHS100',$,$,$,$,$,$,$); -#3687=IFCMATERIALPROFILESET($,$,(#3689),$); -#3688=IFCRELASSOCIATESMATERIAL('3_rSlzeTv3jhjsoca5W3Ho',$,$,$,(#3686),#3687); -#3689=IFCMATERIALPROFILE($,$,#17,#3685,$,$); -#3690=IFCMEMBERTYPE('2HOF2beOz0DghGh_4Efqhg',$,'150SHS100',$,$,$,$,$,$,$); -#3691=IFCMATERIALPROFILESET($,$,(#3693),$); -#3692=IFCRELASSOCIATESMATERIAL('0ZYKzMw79CUfe3dfwH5_Da',$,$,$,(#3690),#3691); -#3693=IFCMATERIALPROFILE($,$,#17,#3685,$,$); -#3694=IFCCOLUMNTYPE('0y_XWM5VzFpuPyPV5Lkcqq',$,'150SHS100',$,$,$,$,$,$,$); -#3695=IFCMATERIALPROFILESET($,$,(#3697),$); -#3696=IFCRELASSOCIATESMATERIAL('1t$w1Axir9zO6Lj2iikvAR',$,$,$,(#3694),#3695); -#3697=IFCMATERIALPROFILE($,$,#17,#3685,$,$); -#3698=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,5.,$,$); -#3699=IFCBEAMTYPE('3eAk8Y29n11P_GGIaHdvJ3',$,'200SHS50',$,$,$,$,$,$,$); -#3700=IFCMATERIALPROFILESET($,$,(#3702),$); -#3701=IFCRELASSOCIATESMATERIAL('3DR3kYC3X9mQdLykWCbo_0',$,$,$,(#3699),#3700); -#3702=IFCMATERIALPROFILE($,$,#17,#3698,$,$); -#3703=IFCMEMBERTYPE('2L1ArF9lf8394pp0Tqjzp0',$,'200SHS50',$,$,$,$,$,$,$); -#3704=IFCMATERIALPROFILESET($,$,(#3706),$); -#3705=IFCRELASSOCIATESMATERIAL('0ypDaysbv1axU1u5sSbLs$',$,$,$,(#3703),#3704); -#3706=IFCMATERIALPROFILE($,$,#17,#3698,$,$); -#3707=IFCCOLUMNTYPE('0w1q7hNA9D9uc3PZON7q9i',$,'200SHS50',$,$,$,$,$,$,$); -#3708=IFCMATERIALPROFILESET($,$,(#3710),$); -#3709=IFCRELASSOCIATESMATERIAL('1MEwFhWJ9BBRahKAO3pdH2',$,$,$,(#3707),#3708); -#3710=IFCMATERIALPROFILE($,$,#17,#3698,$,$); -#3711=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,6.,$,$); -#3712=IFCBEAMTYPE('3e4WmHceHDneUdCg7FADTF',$,'200SHS60',$,$,$,$,$,$,$); -#3713=IFCMATERIALPROFILESET($,$,(#3715),$); -#3714=IFCRELASSOCIATESMATERIAL('2NLSICZlHAAOM82IA3Scc0',$,$,$,(#3712),#3713); -#3715=IFCMATERIALPROFILE($,$,#17,#3711,$,$); -#3716=IFCMEMBERTYPE('2Q2OH8c59BAxC90iiYMZZ$',$,'200SHS60',$,$,$,$,$,$,$); -#3717=IFCMATERIALPROFILESET($,$,(#3719),$); -#3718=IFCRELASSOCIATESMATERIAL('20DoXd22L8thLWgESkvmCb',$,$,$,(#3716),#3717); -#3719=IFCMATERIALPROFILE($,$,#17,#3711,$,$); -#3720=IFCCOLUMNTYPE('1hqgvxNKL9EgSBiXRMWZRP',$,'200SHS60',$,$,$,$,$,$,$); -#3721=IFCMATERIALPROFILESET($,$,(#3723),$); -#3722=IFCRELASSOCIATESMATERIAL('1dLLNa_YnEbOtlr5PcOeKg',$,$,$,(#3720),#3721); -#3723=IFCMATERIALPROFILE($,$,#17,#3711,$,$); -#3724=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,8.,$,$); -#3725=IFCBEAMTYPE('0npCLkiFH1IQcpAltv0aSw',$,'200SHS80',$,$,$,$,$,$,$); -#3726=IFCMATERIALPROFILESET($,$,(#3728),$); -#3727=IFCRELASSOCIATESMATERIAL('0NrH9DPcj1vBbMszKppuG8',$,$,$,(#3725),#3726); -#3728=IFCMATERIALPROFILE($,$,#17,#3724,$,$); -#3729=IFCMEMBERTYPE('1Ox7YhLlX4ouoedGYVWy55',$,'200SHS80',$,$,$,$,$,$,$); -#3730=IFCMATERIALPROFILESET($,$,(#3732),$); -#3731=IFCRELASSOCIATESMATERIAL('19_bg0XUnCa9hGNDTqUNkt',$,$,$,(#3729),#3730); -#3732=IFCMATERIALPROFILE($,$,#17,#3724,$,$); -#3733=IFCCOLUMNTYPE('364e3qAy51vvCKONPrKZzi',$,'200SHS80',$,$,$,$,$,$,$); -#3734=IFCMATERIALPROFILESET($,$,(#3736),$); -#3735=IFCRELASSOCIATESMATERIAL('0ILivtTqX5uxE9g66kk827',$,$,$,(#3733),#3734); -#3736=IFCMATERIALPROFILE($,$,#17,#3724,$,$); -#3737=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,9.,$,$); -#3738=IFCBEAMTYPE('3A1vlHOKXCgx0x$ntQdZsx',$,'200SHS90',$,$,$,$,$,$,$); -#3739=IFCMATERIALPROFILESET($,$,(#3741),$); -#3740=IFCRELASSOCIATESMATERIAL('0ZNEM4C7rCFfhygWW9rFR6',$,$,$,(#3738),#3739); -#3741=IFCMATERIALPROFILE($,$,#17,#3737,$,$); -#3742=IFCMEMBERTYPE('0$JkyDEKL66B654AIHXV2I',$,'200SHS90',$,$,$,$,$,$,$); -#3743=IFCMATERIALPROFILESET($,$,(#3745),$); -#3744=IFCRELASSOCIATESMATERIAL('2YM1AaKk98kwjztSrMQ$VU',$,$,$,(#3742),#3743); -#3745=IFCMATERIALPROFILE($,$,#17,#3737,$,$); -#3746=IFCCOLUMNTYPE('0xsY7YgLXFa8HIoCBB3cu7',$,'200SHS90',$,$,$,$,$,$,$); -#3747=IFCMATERIALPROFILESET($,$,(#3749),$); -#3748=IFCRELASSOCIATESMATERIAL('0082fqFin28w$ysQrlndNF',$,$,$,(#3746),#3747); -#3749=IFCMATERIALPROFILE($,$,#17,#3737,$,$); -#3750=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,10.,$,$); -#3751=IFCBEAMTYPE('2r3xBncwP2wwW$y7JX3fCF',$,'200SHS100',$,$,$,$,$,$,$); -#3752=IFCMATERIALPROFILESET($,$,(#3754),$); -#3753=IFCRELASSOCIATESMATERIAL('3KYfDMI1LFF9Vre5wkeR9x',$,$,$,(#3751),#3752); -#3754=IFCMATERIALPROFILE($,$,#17,#3750,$,$); -#3755=IFCMEMBERTYPE('3sEBWYi7LEof1VNBFPsZMM',$,'200SHS100',$,$,$,$,$,$,$); -#3756=IFCMATERIALPROFILESET($,$,(#3758),$); -#3757=IFCRELASSOCIATESMATERIAL('1pUmqoUqP6C8HVfosMXLzk',$,$,$,(#3755),#3756); -#3758=IFCMATERIALPROFILE($,$,#17,#3750,$,$); -#3759=IFCCOLUMNTYPE('074b2lOEb7BR3t13GXhcJT',$,'200SHS100',$,$,$,$,$,$,$); -#3760=IFCMATERIALPROFILESET($,$,(#3762),$); -#3761=IFCRELASSOCIATESMATERIAL('0w0y_skEvDdPII_B1S6U$p',$,$,$,(#3759),#3760); -#3762=IFCMATERIALPROFILE($,$,#17,#3750,$,$); -#3763=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,12.5,$,$); -#3764=IFCBEAMTYPE('0Ldf3o3UL5Zfy2Achxzbb7',$,'200SHS125',$,$,$,$,$,$,$); -#3765=IFCMATERIALPROFILESET($,$,(#3767),$); -#3766=IFCRELASSOCIATESMATERIAL('25AGq_WnX47PyOfyHJ23E4',$,$,$,(#3764),#3765); -#3767=IFCMATERIALPROFILE($,$,#17,#3763,$,$); -#3768=IFCMEMBERTYPE('2JkONZR3rCJQRBOOYjOzEV',$,'200SHS125',$,$,$,$,$,$,$); -#3769=IFCMATERIALPROFILESET($,$,(#3771),$); -#3770=IFCRELASSOCIATESMATERIAL('3zL$DoJ6H0Cu07M$z8_wN9',$,$,$,(#3768),#3769); -#3771=IFCMATERIALPROFILE($,$,#17,#3763,$,$); -#3772=IFCCOLUMNTYPE('0BoAKAqOvCwBK4SnP_RaKK',$,'200SHS125',$,$,$,$,$,$,$); -#3773=IFCMATERIALPROFILESET($,$,(#3775),$); -#3774=IFCRELASSOCIATESMATERIAL('2xoCGnTon1gfqh$iciRJdA',$,$,$,(#3772),#3773); -#3775=IFCMATERIALPROFILE($,$,#17,#3763,$,$); -#3776=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,16.,$,$); -#3777=IFCBEAMTYPE('0fejaD8VP8xQdP4DAMqj2y',$,'200SHS160',$,$,$,$,$,$,$); -#3778=IFCMATERIALPROFILESET($,$,(#3780),$); -#3779=IFCRELASSOCIATESMATERIAL('1iKiHGvlL6eRVZ3Xv_DBBd',$,$,$,(#3777),#3778); -#3780=IFCMATERIALPROFILE($,$,#17,#3776,$,$); -#3781=IFCMEMBERTYPE('2CXnqXeW94O92XIusIDRWT',$,'200SHS160',$,$,$,$,$,$,$); -#3782=IFCMATERIALPROFILESET($,$,(#3784),$); -#3783=IFCRELASSOCIATESMATERIAL('3XrkgteVDEShnqTkdagzoT',$,$,$,(#3781),#3782); -#3784=IFCMATERIALPROFILE($,$,#17,#3776,$,$); -#3785=IFCCOLUMNTYPE('1hhEDBBUDDSAu2cUzqrLh$',$,'200SHS160',$,$,$,$,$,$,$); -#3786=IFCMATERIALPROFILESET($,$,(#3788),$); -#3787=IFCRELASSOCIATESMATERIAL('2Ki8zH1XvFdhSXJbMM9Igh',$,$,$,(#3785),#3786); -#3788=IFCMATERIALPROFILE($,$,#17,#3776,$,$); -#3789=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,6.,$,$); -#3790=IFCBEAMTYPE('3VbDwaS7T3dwAgqIbyvumN',$,'250SHS60',$,$,$,$,$,$,$); -#3791=IFCMATERIALPROFILESET($,$,(#3793),$); -#3792=IFCRELASSOCIATESMATERIAL('1Wqd9NstD1Iu4lkgDm23Zq',$,$,$,(#3790),#3791); -#3793=IFCMATERIALPROFILE($,$,#17,#3789,$,$); -#3794=IFCMEMBERTYPE('1WvApRAQ93PPfQ4Y8LYVxE',$,'250SHS60',$,$,$,$,$,$,$); -#3795=IFCMATERIALPROFILESET($,$,(#3797),$); -#3796=IFCRELASSOCIATESMATERIAL('2xjqZmZaL8PeXV2GxfpDRR',$,$,$,(#3794),#3795); -#3797=IFCMATERIALPROFILE($,$,#17,#3789,$,$); -#3798=IFCCOLUMNTYPE('2XlhVVBvD7lh3BLvvsoJKR',$,'250SHS60',$,$,$,$,$,$,$); -#3799=IFCMATERIALPROFILESET($,$,(#3801),$); -#3800=IFCRELASSOCIATESMATERIAL('2ivnRLRbP0zODpxKg8kb_$',$,$,$,(#3798),#3799); -#3801=IFCMATERIALPROFILE($,$,#17,#3789,$,$); -#3802=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,8.,$,$); -#3803=IFCBEAMTYPE('0Pa_sP97j5SPEoXoy8czTt',$,'250SHS80',$,$,$,$,$,$,$); -#3804=IFCMATERIALPROFILESET($,$,(#3806),$); -#3805=IFCRELASSOCIATESMATERIAL('2iKc6r$KrBb9g$4ot5pjps',$,$,$,(#3803),#3804); -#3806=IFCMATERIALPROFILE($,$,#17,#3802,$,$); -#3807=IFCMEMBERTYPE('0kS3$s_jr9LuYvv4dgcUsg',$,'250SHS80',$,$,$,$,$,$,$); -#3808=IFCMATERIALPROFILESET($,$,(#3810),$); -#3809=IFCRELASSOCIATESMATERIAL('2rAdp_V8L4Du49kMz9danx',$,$,$,(#3807),#3808); -#3810=IFCMATERIALPROFILE($,$,#17,#3802,$,$); -#3811=IFCCOLUMNTYPE('18rRlwtJ90PBBZXtzGV49h',$,'250SHS80',$,$,$,$,$,$,$); -#3812=IFCMATERIALPROFILESET($,$,(#3814),$); -#3813=IFCRELASSOCIATESMATERIAL('2XNHNe3816YPdz8MZHav16',$,$,$,(#3811),#3812); -#3814=IFCMATERIALPROFILE($,$,#17,#3802,$,$); -#3815=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,9.,$,$); -#3816=IFCBEAMTYPE('1v6oO7Hx14Oe7qntrJMESH',$,'250SHS90',$,$,$,$,$,$,$); -#3817=IFCMATERIALPROFILESET($,$,(#3819),$); -#3818=IFCRELASSOCIATESMATERIAL('0dH4F0LSH5WvXCWkM0ytpA',$,$,$,(#3816),#3817); -#3819=IFCMATERIALPROFILE($,$,#17,#3815,$,$); -#3820=IFCMEMBERTYPE('1JYxa97JH4gRi6bCviln55',$,'250SHS90',$,$,$,$,$,$,$); -#3821=IFCMATERIALPROFILESET($,$,(#3823),$); -#3822=IFCRELASSOCIATESMATERIAL('14O4zced95oQQl0RwgwBIC',$,$,$,(#3820),#3821); -#3823=IFCMATERIALPROFILE($,$,#17,#3815,$,$); -#3824=IFCCOLUMNTYPE('1nj6DO3u18chlX9ebdJ_MR',$,'250SHS90',$,$,$,$,$,$,$); -#3825=IFCMATERIALPROFILESET($,$,(#3827),$); -#3826=IFCRELASSOCIATESMATERIAL('37odPftpj2_8LQgMCbRbhD',$,$,$,(#3824),#3825); -#3827=IFCMATERIALPROFILE($,$,#17,#3815,$,$); -#3828=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,10.,$,$); -#3829=IFCBEAMTYPE('12FU8gQFD3lRlv761nvF$b',$,'250SHS100',$,$,$,$,$,$,$); -#3830=IFCMATERIALPROFILESET($,$,(#3832),$); -#3831=IFCRELASSOCIATESMATERIAL('2ZL3Vx0Y5C38AnFNBEtv3l',$,$,$,(#3829),#3830); -#3832=IFCMATERIALPROFILE($,$,#17,#3828,$,$); -#3833=IFCMEMBERTYPE('1Lyovf9GD7oeycrS263KH4',$,'250SHS100',$,$,$,$,$,$,$); -#3834=IFCMATERIALPROFILESET($,$,(#3836),$); -#3835=IFCRELASSOCIATESMATERIAL('3Ev45ueyfCifcXWOeNUVN2',$,$,$,(#3833),#3834); -#3836=IFCMATERIALPROFILE($,$,#17,#3828,$,$); -#3837=IFCCOLUMNTYPE('2Ia4Lm_$b1uBQ_In9FUCY3',$,'250SHS100',$,$,$,$,$,$,$); -#3838=IFCMATERIALPROFILESET($,$,(#3840),$); -#3839=IFCRELASSOCIATESMATERIAL('2rN04bsr92AwGm9ohIKu$d',$,$,$,(#3837),#3838); -#3840=IFCMATERIALPROFILE($,$,#17,#3828,$,$); -#3841=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,12.5,$,$); -#3842=IFCBEAMTYPE('0wCaJS4UX0dv54ofwDmvJz',$,'250SHS125',$,$,$,$,$,$,$); -#3843=IFCMATERIALPROFILESET($,$,(#3845),$); -#3844=IFCRELASSOCIATESMATERIAL('0ub43BKLv6M8Z8ThICHFLY',$,$,$,(#3842),#3843); -#3845=IFCMATERIALPROFILE($,$,#17,#3841,$,$); -#3846=IFCMEMBERTYPE('0Friz0jZ9A2hcpTDMV0puW',$,'250SHS125',$,$,$,$,$,$,$); -#3847=IFCMATERIALPROFILESET($,$,(#3849),$); -#3848=IFCRELASSOCIATESMATERIAL('1$wGfbaPH8gQZ060y$9670',$,$,$,(#3846),#3847); -#3849=IFCMATERIALPROFILE($,$,#17,#3841,$,$); -#3850=IFCCOLUMNTYPE('2GdJLxUebDRf8uuVZy4mF$',$,'250SHS125',$,$,$,$,$,$,$); -#3851=IFCMATERIALPROFILESET($,$,(#3853),$); -#3852=IFCRELASSOCIATESMATERIAL('0i016LahvFBRE9Kahlg8$l',$,$,$,(#3850),#3851); -#3853=IFCMATERIALPROFILE($,$,#17,#3841,$,$); -#3854=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,16.,$,$); -#3855=IFCBEAMTYPE('3x4Vdz4Ij4mfIhr0WNHRhr',$,'250SHS160',$,$,$,$,$,$,$); -#3856=IFCMATERIALPROFILESET($,$,(#3858),$); -#3857=IFCRELASSOCIATESMATERIAL('0MV$BHGh12TALu2iTNQ5I5',$,$,$,(#3855),#3856); -#3858=IFCMATERIALPROFILE($,$,#17,#3854,$,$); -#3859=IFCMEMBERTYPE('2941DzHPn28v5pkxuEKyY1',$,'250SHS160',$,$,$,$,$,$,$); -#3860=IFCMATERIALPROFILESET($,$,(#3862),$); -#3861=IFCRELASSOCIATESMATERIAL('3vY8dH$eXFBw1hiavix0p5',$,$,$,(#3859),#3860); -#3862=IFCMATERIALPROFILE($,$,#17,#3854,$,$); -#3863=IFCCOLUMNTYPE('1RekpI7rrAYQnmMdCAv32k',$,'250SHS160',$,$,$,$,$,$,$); -#3864=IFCMATERIALPROFILESET($,$,(#3866),$); -#3865=IFCRELASSOCIATESMATERIAL('242WboM$P1hPJetlurUImL',$,$,$,(#3863),#3864); -#3866=IFCMATERIALPROFILE($,$,#17,#3854,$,$); -#3867=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,6.,$,$); -#3868=IFCBEAMTYPE('3zDpxNXnz0UePptaR_F2d2',$,'300SHS60',$,$,$,$,$,$,$); -#3869=IFCMATERIALPROFILESET($,$,(#3871),$); -#3870=IFCRELASSOCIATESMATERIAL('1CbgCWSxXCtAPzdV3Tdcyt',$,$,$,(#3868),#3869); -#3871=IFCMATERIALPROFILE($,$,#17,#3867,$,$); -#3872=IFCMEMBERTYPE('09CbQt74vEs92i9Se1xqNP',$,'300SHS60',$,$,$,$,$,$,$); -#3873=IFCMATERIALPROFILESET($,$,(#3875),$); -#3874=IFCRELASSOCIATESMATERIAL('25VHE9L_9Fogn1SXGTjWEH',$,$,$,(#3872),#3873); -#3875=IFCMATERIALPROFILE($,$,#17,#3867,$,$); -#3876=IFCCOLUMNTYPE('0TlNcGg410jAMX77JpVj2Q',$,'300SHS60',$,$,$,$,$,$,$); -#3877=IFCMATERIALPROFILESET($,$,(#3879),$); -#3878=IFCRELASSOCIATESMATERIAL('1uRzYx$dz78gMcjoZ9Iko_',$,$,$,(#3876),#3877); -#3879=IFCMATERIALPROFILE($,$,#17,#3867,$,$); -#3880=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,8.,$,$); -#3881=IFCBEAMTYPE('3pBJ9N38b7ywfzr4WYpMsJ',$,'300SHS80',$,$,$,$,$,$,$); -#3882=IFCMATERIALPROFILESET($,$,(#3884),$); -#3883=IFCRELASSOCIATESMATERIAL('3UAj3EvKb4IvA4REmMKaa3',$,$,$,(#3881),#3882); -#3884=IFCMATERIALPROFILE($,$,#17,#3880,$,$); -#3885=IFCMEMBERTYPE('30o$H9XO52WP0DPQJUtZl6',$,'300SHS80',$,$,$,$,$,$,$); -#3886=IFCMATERIALPROFILESET($,$,(#3888),$); -#3887=IFCRELASSOCIATESMATERIAL('31EChJR0r1swTnmjWr$rxp',$,$,$,(#3885),#3886); -#3888=IFCMATERIALPROFILE($,$,#17,#3880,$,$); -#3889=IFCCOLUMNTYPE('1qLhz8KmL0vh5R8SFRHXvs',$,'300SHS80',$,$,$,$,$,$,$); -#3890=IFCMATERIALPROFILESET($,$,(#3892),$); -#3891=IFCRELASSOCIATESMATERIAL('0LkiByG198x8chBcE__W3h',$,$,$,(#3889),#3890); -#3892=IFCMATERIALPROFILE($,$,#17,#3880,$,$); -#3893=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,9.,$,$); -#3894=IFCBEAMTYPE('0ONVAUvHjCKfbs6fuyaVz3',$,'300SHS90',$,$,$,$,$,$,$); -#3895=IFCMATERIALPROFILESET($,$,(#3897),$); -#3896=IFCRELASSOCIATESMATERIAL('1StMHsxgj4T9Bn$ZGByc2e',$,$,$,(#3894),#3895); -#3897=IFCMATERIALPROFILE($,$,#17,#3893,$,$); -#3898=IFCMEMBERTYPE('0aAIIyGrT2x9u1IGfMgjf9',$,'300SHS90',$,$,$,$,$,$,$); -#3899=IFCMATERIALPROFILESET($,$,(#3901),$); -#3900=IFCRELASSOCIATESMATERIAL('3_BfGyhJXBcfUE1BKql7kk',$,$,$,(#3898),#3899); -#3901=IFCMATERIALPROFILE($,$,#17,#3893,$,$); -#3902=IFCCOLUMNTYPE('0FatvZBeL0OR0jAsKrSKcI',$,'300SHS90',$,$,$,$,$,$,$); -#3903=IFCMATERIALPROFILESET($,$,(#3905),$); -#3904=IFCRELASSOCIATESMATERIAL('2nYR3ZjynClPRMWKE2BRRN',$,$,$,(#3902),#3903); -#3905=IFCMATERIALPROFILE($,$,#17,#3893,$,$); -#3906=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,10.,$,$); -#3907=IFCBEAMTYPE('1q0L5qcwD21Al6wvdyPBIF',$,'300SHS100',$,$,$,$,$,$,$); -#3908=IFCMATERIALPROFILESET($,$,(#3910),$); -#3909=IFCRELASSOCIATESMATERIAL('0_nY6rsZj8GAR1VTX2T6mt',$,$,$,(#3907),#3908); -#3910=IFCMATERIALPROFILE($,$,#17,#3906,$,$); -#3911=IFCMEMBERTYPE('1kIydJQ1nDIhiJtuZ8iS0C',$,'300SHS100',$,$,$,$,$,$,$); -#3912=IFCMATERIALPROFILESET($,$,(#3914),$); -#3913=IFCRELASSOCIATESMATERIAL('2VmSWRulz5LhHHcoPgiO$U',$,$,$,(#3911),#3912); -#3914=IFCMATERIALPROFILE($,$,#17,#3906,$,$); -#3915=IFCCOLUMNTYPE('3Tgrdb2afB5vHwBS5HcBoG',$,'300SHS100',$,$,$,$,$,$,$); -#3916=IFCMATERIALPROFILESET($,$,(#3918),$); -#3917=IFCRELASSOCIATESMATERIAL('1lLn9jAzf7NPX$c5Q3xnlp',$,$,$,(#3915),#3916); -#3918=IFCMATERIALPROFILE($,$,#17,#3906,$,$); -#3919=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,12.5,$,$); -#3920=IFCBEAMTYPE('0VJ3uHDLrAjv3IsrrhFvBO',$,'300SHS125',$,$,$,$,$,$,$); -#3921=IFCMATERIALPROFILESET($,$,(#3923),$); -#3922=IFCRELASSOCIATESMATERIAL('2qxobpgRXA4vfFDwawXg67',$,$,$,(#3920),#3921); -#3923=IFCMATERIALPROFILE($,$,#17,#3919,$,$); -#3924=IFCMEMBERTYPE('33Nzq02x5EZeCj21BgNAnP',$,'300SHS125',$,$,$,$,$,$,$); -#3925=IFCMATERIALPROFILESET($,$,(#3927),$); -#3926=IFCRELASSOCIATESMATERIAL('2_h0pStirBdfp$33S9Huwf',$,$,$,(#3924),#3925); -#3927=IFCMATERIALPROFILE($,$,#17,#3919,$,$); -#3928=IFCCOLUMNTYPE('0QtsmLCGj7seyqCQQXJW7a',$,'300SHS125',$,$,$,$,$,$,$); -#3929=IFCMATERIALPROFILESET($,$,(#3931),$); -#3930=IFCRELASSOCIATESMATERIAL('2LDuAE3fT1BA3gE7NzVRPg',$,$,$,(#3928),#3929); -#3931=IFCMATERIALPROFILE($,$,#17,#3919,$,$); -#3932=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,16.,$,$); -#3933=IFCBEAMTYPE('1KLDPoS8LCSAt4VWKJxost',$,'300SHS160',$,$,$,$,$,$,$); -#3934=IFCMATERIALPROFILESET($,$,(#3936),$); -#3935=IFCRELASSOCIATESMATERIAL('1tus$xO5T8seBu0mhI73Jz',$,$,$,(#3933),#3934); -#3936=IFCMATERIALPROFILE($,$,#17,#3932,$,$); -#3937=IFCMEMBERTYPE('2M5v2gN2P2UAKlISC1MAA_',$,'300SHS160',$,$,$,$,$,$,$); -#3938=IFCMATERIALPROFILESET($,$,(#3940),$); -#3939=IFCRELASSOCIATESMATERIAL('2JmSnV4VH5j8GKCoj4Yj09',$,$,$,(#3937),#3938); -#3940=IFCMATERIALPROFILE($,$,#17,#3932,$,$); -#3941=IFCCOLUMNTYPE('11623lkpT03wOPbED08LrY',$,'300SHS160',$,$,$,$,$,$,$); -#3942=IFCMATERIALPROFILESET($,$,(#3944),$); -#3943=IFCRELASSOCIATESMATERIAL('1SN78I9ev7r85YoEeuRkhg',$,$,$,(#3941),#3942); -#3944=IFCMATERIALPROFILE($,$,#17,#3932,$,$); -#3945=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,8.,$,$); -#3946=IFCBEAMTYPE('1yVv$2ZFTBJguxhkYSp1cy',$,'350SHS80',$,$,$,$,$,$,$); -#3947=IFCMATERIALPROFILESET($,$,(#3949),$); -#3948=IFCRELASSOCIATESMATERIAL('1XkDtIJT97IwHbr3s3MzY3',$,$,$,(#3946),#3947); -#3949=IFCMATERIALPROFILE($,$,#17,#3945,$,$); -#3950=IFCMEMBERTYPE('2SrYUNlL17QAPVcmIbkgS9',$,'350SHS80',$,$,$,$,$,$,$); -#3951=IFCMATERIALPROFILESET($,$,(#3953),$); -#3952=IFCRELASSOCIATESMATERIAL('0sYRnGXpHBYh2UXs$VhuO1',$,$,$,(#3950),#3951); -#3953=IFCMATERIALPROFILE($,$,#17,#3945,$,$); -#3954=IFCCOLUMNTYPE('1s0GSf7BTF2eS06ktasITF',$,'350SHS80',$,$,$,$,$,$,$); -#3955=IFCMATERIALPROFILESET($,$,(#3957),$); -#3956=IFCRELASSOCIATESMATERIAL('3$uw6leT57yxbueqCCGqdH',$,$,$,(#3954),#3955); -#3957=IFCMATERIALPROFILE($,$,#17,#3945,$,$); -#3958=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,10.,$,$); -#3959=IFCBEAMTYPE('1X0rxdJrr9390T2XR0Wn$4',$,'350SHS100',$,$,$,$,$,$,$); -#3960=IFCMATERIALPROFILESET($,$,(#3962),$); -#3961=IFCRELASSOCIATESMATERIAL('0iS5iNv_X2kOMZni76DrJZ',$,$,$,(#3959),#3960); -#3962=IFCMATERIALPROFILE($,$,#17,#3958,$,$); -#3963=IFCMEMBERTYPE('2x00AXuq5E$Qm2HMRYQPNG',$,'350SHS100',$,$,$,$,$,$,$); -#3964=IFCMATERIALPROFILESET($,$,(#3966),$); -#3965=IFCRELASSOCIATESMATERIAL('0n$8vLSUP8Rvyv0HKLgJR3',$,$,$,(#3963),#3964); -#3966=IFCMATERIALPROFILE($,$,#17,#3958,$,$); -#3967=IFCCOLUMNTYPE('1BKCOx2dXCZQu_15SKbExh',$,'350SHS100',$,$,$,$,$,$,$); -#3968=IFCMATERIALPROFILESET($,$,(#3970),$); -#3969=IFCRELASSOCIATESMATERIAL('38_iDh0IDAZeNnWpFkQhGp',$,$,$,(#3967),#3968); -#3970=IFCMATERIALPROFILE($,$,#17,#3958,$,$); -#3971=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,12.5,$,$); -#3972=IFCBEAMTYPE('3T1g3XihX8tgzvPx8WlPWL',$,'350SHS125',$,$,$,$,$,$,$); -#3973=IFCMATERIALPROFILESET($,$,(#3975),$); -#3974=IFCRELASSOCIATESMATERIAL('0w08mcrTzA6ObARVXX0ovN',$,$,$,(#3972),#3973); -#3975=IFCMATERIALPROFILE($,$,#17,#3971,$,$); -#3976=IFCMEMBERTYPE('2koUZw7TfFgPUoEhY8q9Op',$,'350SHS125',$,$,$,$,$,$,$); -#3977=IFCMATERIALPROFILESET($,$,(#3979),$); -#3978=IFCRELASSOCIATESMATERIAL('0FeSFXHuTCDRpgMX3clW7k',$,$,$,(#3976),#3977); -#3979=IFCMATERIALPROFILE($,$,#17,#3971,$,$); -#3980=IFCCOLUMNTYPE('3C$$lSD015cBLZGNjGemd2',$,'350SHS125',$,$,$,$,$,$,$); -#3981=IFCMATERIALPROFILESET($,$,(#3983),$); -#3982=IFCRELASSOCIATESMATERIAL('1rU0jGrRzFKBRIOvHRx3vV',$,$,$,(#3980),#3981); -#3983=IFCMATERIALPROFILE($,$,#17,#3971,$,$); -#3984=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,16.,$,$); -#3985=IFCBEAMTYPE('1Ri3b7x$T31QLNm3ztrKD6',$,'350SHS160',$,$,$,$,$,$,$); -#3986=IFCMATERIALPROFILESET($,$,(#3988),$); -#3987=IFCRELASSOCIATESMATERIAL('1fFdhbt4z2GOi3o2dLeLNx',$,$,$,(#3985),#3986); -#3988=IFCMATERIALPROFILE($,$,#17,#3984,$,$); -#3989=IFCMEMBERTYPE('1dyfUqfN51Ov$u4ZVplMZ3',$,'350SHS160',$,$,$,$,$,$,$); -#3990=IFCMATERIALPROFILESET($,$,(#3992),$); -#3991=IFCRELASSOCIATESMATERIAL('1jPzIJbZ17exiuZdNMzX5i',$,$,$,(#3989),#3990); -#3992=IFCMATERIALPROFILE($,$,#17,#3984,$,$); -#3993=IFCCOLUMNTYPE('1UIAgxVv52oB_ZoutEWp2L',$,'350SHS160',$,$,$,$,$,$,$); -#3994=IFCMATERIALPROFILESET($,$,(#3996),$); -#3995=IFCRELASSOCIATESMATERIAL('2OcwghDWLCg81IP3OYpDYw',$,$,$,(#3993),#3994); -#3996=IFCMATERIALPROFILE($,$,#17,#3984,$,$); -#3997=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,6.,$,$); -#3998=IFCBEAMTYPE('2CFbno81n0kRMGUsWLpJpi',$,'400SHS60',$,$,$,$,$,$,$); -#3999=IFCMATERIALPROFILESET($,$,(#4001),$); -#4000=IFCRELASSOCIATESMATERIAL('0pu2brMPH4gOPSqELul$qq',$,$,$,(#3998),#3999); -#4001=IFCMATERIALPROFILE($,$,#17,#3997,$,$); -#4002=IFCMEMBERTYPE('2z3BOii2XDtQnHERpuwt5E',$,'400SHS60',$,$,$,$,$,$,$); -#4003=IFCMATERIALPROFILESET($,$,(#4005),$); -#4004=IFCRELASSOCIATESMATERIAL('27yCXGAob68eQGMvUS7jqM',$,$,$,(#4002),#4003); -#4005=IFCMATERIALPROFILE($,$,#17,#3997,$,$); -#4006=IFCCOLUMNTYPE('2ak8psV75FcRczm7mZjj3W',$,'400SHS60',$,$,$,$,$,$,$); -#4007=IFCMATERIALPROFILESET($,$,(#4009),$); -#4008=IFCRELASSOCIATESMATERIAL('1tS4AF1cL1R99gnzRIUbJb',$,$,$,(#4006),#4007); -#4009=IFCMATERIALPROFILE($,$,#17,#3997,$,$); -#4010=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,9.,$,$); -#4011=IFCBEAMTYPE('1aXXODsWL0qO$r_GLf07FV',$,'400SHS90',$,$,$,$,$,$,$); -#4012=IFCMATERIALPROFILESET($,$,(#4014),$); -#4013=IFCRELASSOCIATESMATERIAL('0OuJEbsCjFGR$M_iNnVu9i',$,$,$,(#4011),#4012); -#4014=IFCMATERIALPROFILE($,$,#17,#4010,$,$); -#4015=IFCMEMBERTYPE('0bgyK2y3vFVBDGsXtz$h0R',$,'400SHS90',$,$,$,$,$,$,$); -#4016=IFCMATERIALPROFILESET($,$,(#4018),$); -#4017=IFCRELASSOCIATESMATERIAL('3Vx47Xtcf4ZxzO0smvTU77',$,$,$,(#4015),#4016); -#4018=IFCMATERIALPROFILE($,$,#17,#4010,$,$); -#4019=IFCCOLUMNTYPE('0D8rBH0Y9BHu3daLLuFxKR',$,'400SHS90',$,$,$,$,$,$,$); -#4020=IFCMATERIALPROFILESET($,$,(#4022),$); -#4021=IFCRELASSOCIATESMATERIAL('1_WwUUXffAGvn_$BSwtU$O',$,$,$,(#4019),#4020); -#4022=IFCMATERIALPROFILE($,$,#17,#4010,$,$); -#4023=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,10.,$,$); -#4024=IFCBEAMTYPE('1SdEvUSEz8uBZVWW3h1kLn',$,'400SHS100',$,$,$,$,$,$,$); -#4025=IFCMATERIALPROFILESET($,$,(#4027),$); -#4026=IFCRELASSOCIATESMATERIAL('1RQPwkXxD4kQySByyfftXd',$,$,$,(#4024),#4025); -#4027=IFCMATERIALPROFILE($,$,#17,#4023,$,$); -#4028=IFCMEMBERTYPE('1zLpyuLhbAtRDn9iOaoirT',$,'400SHS100',$,$,$,$,$,$,$); -#4029=IFCMATERIALPROFILESET($,$,(#4031),$); -#4030=IFCRELASSOCIATESMATERIAL('2Wtn8023T3t9eiglXeaXkz',$,$,$,(#4028),#4029); -#4031=IFCMATERIALPROFILE($,$,#17,#4023,$,$); -#4032=IFCCOLUMNTYPE('0GTG3jHqfEdBsLvFrIIN0f',$,'400SHS100',$,$,$,$,$,$,$); -#4033=IFCMATERIALPROFILESET($,$,(#4035),$); -#4034=IFCRELASSOCIATESMATERIAL('1Wd4T5PxLDmelJnO8ywfNT',$,$,$,(#4032),#4033); -#4035=IFCMATERIALPROFILE($,$,#17,#4023,$,$); -#4036=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,12.5,$,$); -#4037=IFCBEAMTYPE('0Uk81vJCbAv8gEKUbZdo7N',$,'400SHS125',$,$,$,$,$,$,$); -#4038=IFCMATERIALPROFILESET($,$,(#4040),$); -#4039=IFCRELASSOCIATESMATERIAL('03VXWlSE5C5gwmanZM0CnH',$,$,$,(#4037),#4038); -#4040=IFCMATERIALPROFILE($,$,#17,#4036,$,$); -#4041=IFCMEMBERTYPE('0WQC5Wgkr6EABE9J3ks4ZV',$,'400SHS125',$,$,$,$,$,$,$); -#4042=IFCMATERIALPROFILESET($,$,(#4044),$); -#4043=IFCRELASSOCIATESMATERIAL('0m5fPTB9rDgA6_SCg8KEFQ',$,$,$,(#4041),#4042); -#4044=IFCMATERIALPROFILE($,$,#17,#4036,$,$); -#4045=IFCCOLUMNTYPE('0cjynCtojEwAlajIUSE$qj',$,'400SHS125',$,$,$,$,$,$,$); -#4046=IFCMATERIALPROFILESET($,$,(#4048),$); -#4047=IFCRELASSOCIATESMATERIAL('1in9NSLtj0eeBR0UMX$cnq',$,$,$,(#4045),#4046); -#4048=IFCMATERIALPROFILE($,$,#17,#4036,$,$); -#4049=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,16.,$,$); -#4050=IFCBEAMTYPE('0lvhm2AHbCEfl8ENeAE1Se',$,'400SHS160',$,$,$,$,$,$,$); -#4051=IFCMATERIALPROFILESET($,$,(#4053),$); -#4052=IFCRELASSOCIATESMATERIAL('1y5tEsiTjBsw_1$Ecn8cgL',$,$,$,(#4050),#4051); -#4053=IFCMATERIALPROFILE($,$,#17,#4049,$,$); -#4054=IFCMEMBERTYPE('3T9IMustX4$B8FQpFA7hK3',$,'400SHS160',$,$,$,$,$,$,$); -#4055=IFCMATERIALPROFILESET($,$,(#4057),$); -#4056=IFCRELASSOCIATESMATERIAL('3$APYNhY54xv9jBE7BwynJ',$,$,$,(#4054),#4055); -#4057=IFCMATERIALPROFILE($,$,#17,#4049,$,$); -#4058=IFCCOLUMNTYPE('0EY2cUo2fAeQhBL828umRj',$,'400SHS160',$,$,$,$,$,$,$); -#4059=IFCMATERIALPROFILESET($,$,(#4061),$); -#4060=IFCRELASSOCIATESMATERIAL('1DHDFKJ$D8J85BidFUAkp5',$,$,$,(#4058),#4059); -#4061=IFCMATERIALPROFILE($,$,#17,#4049,$,$); -#4062=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,38.,25.,2.,$,$); -#4063=IFCBEAMTYPE('0eoWgNrEn9_frncRHdK6TG',$,'38x25RHS20',$,$,$,$,$,$,$); -#4064=IFCMATERIALPROFILESET($,$,(#4066),$); -#4065=IFCRELASSOCIATESMATERIAL('0OsxayVAv61vyQLBRNYIRt',$,$,$,(#4063),#4064); -#4066=IFCMATERIALPROFILE($,$,#17,#4062,$,$); -#4067=IFCMEMBERTYPE('103dfSUyzFWQH9hYer6pmk',$,'38x25RHS20',$,$,$,$,$,$,$); -#4068=IFCMATERIALPROFILESET($,$,(#4070),$); -#4069=IFCRELASSOCIATESMATERIAL('1vzszPsIrDBAMlhp6btX6Q',$,$,$,(#4067),#4068); -#4070=IFCMATERIALPROFILE($,$,#17,#4062,$,$); -#4071=IFCCOLUMNTYPE('2apVoZGbn5JO2Z_GXd_nEN',$,'38x25RHS20',$,$,$,$,$,$,$); -#4072=IFCMATERIALPROFILESET($,$,(#4074),$); -#4073=IFCRELASSOCIATESMATERIAL('018PRF0m52z9wdshG84CG2',$,$,$,(#4071),#4072); -#4074=IFCMATERIALPROFILE($,$,#17,#4062,$,$); -#4075=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,20.,1.6,$,$); -#4076=IFCBEAMTYPE('306hI4yPH8_RVkRz1YD2s$',$,'50x20RHS16',$,$,$,$,$,$,$); -#4077=IFCMATERIALPROFILESET($,$,(#4079),$); -#4078=IFCRELASSOCIATESMATERIAL('1sdqzfDHbFXf_yQqCCoZyc',$,$,$,(#4076),#4077); -#4079=IFCMATERIALPROFILE($,$,#17,#4075,$,$); -#4080=IFCMEMBERTYPE('1u2ZZD7HrDte$kNvUqPlka',$,'50x20RHS16',$,$,$,$,$,$,$); -#4081=IFCMATERIALPROFILESET($,$,(#4083),$); -#4082=IFCRELASSOCIATESMATERIAL('3_SjpOKsj7ZQSA4c8D$xDC',$,$,$,(#4080),#4081); -#4083=IFCMATERIALPROFILE($,$,#17,#4075,$,$); -#4084=IFCCOLUMNTYPE('3vUV5kALD339SoPD$Tjxvj',$,'50x20RHS16',$,$,$,$,$,$,$); -#4085=IFCMATERIALPROFILESET($,$,(#4087),$); -#4086=IFCRELASSOCIATESMATERIAL('2PKIpio3jEswj3lhnhfVZg',$,$,$,(#4084),#4085); -#4087=IFCMATERIALPROFILE($,$,#17,#4075,$,$); -#4088=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,20.,2.,$,$); -#4089=IFCBEAMTYPE('06r$PDy6T9qulwtzxdUIqy',$,'50x20RHS20',$,$,$,$,$,$,$); -#4090=IFCMATERIALPROFILESET($,$,(#4092),$); -#4091=IFCRELASSOCIATESMATERIAL('3p26OggQLAEgIx9to6V4ol',$,$,$,(#4089),#4090); -#4092=IFCMATERIALPROFILE($,$,#17,#4088,$,$); -#4093=IFCMEMBERTYPE('0vi3HZHe5BYhA5ogb_oUCB',$,'50x20RHS20',$,$,$,$,$,$,$); -#4094=IFCMATERIALPROFILESET($,$,(#4096),$); -#4095=IFCRELASSOCIATESMATERIAL('2KGBf0yhT8TRXLW0w6el57',$,$,$,(#4093),#4094); -#4096=IFCMATERIALPROFILE($,$,#17,#4088,$,$); -#4097=IFCCOLUMNTYPE('3ELH8AbBzBCAUDcwlFJRDv',$,'50x20RHS20',$,$,$,$,$,$,$); -#4098=IFCMATERIALPROFILESET($,$,(#4100),$); -#4099=IFCRELASSOCIATESMATERIAL('3LH6BDZQ5Eu8Ag61_X9xkV',$,$,$,(#4097),#4098); -#4100=IFCMATERIALPROFILE($,$,#17,#4088,$,$); -#4101=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,20.,2.5,$,$); -#4102=IFCBEAMTYPE('1wYWJAVXvCv9GnANigaOXH',$,'50x20RHS25',$,$,$,$,$,$,$); -#4103=IFCMATERIALPROFILESET($,$,(#4105),$); -#4104=IFCRELASSOCIATESMATERIAL('1Y_Sfo3WnAGeXpwAuQJ$5U',$,$,$,(#4102),#4103); -#4105=IFCMATERIALPROFILE($,$,#17,#4101,$,$); -#4106=IFCMEMBERTYPE('29Xn9_wvjBzxpSdOUPtBRt',$,'50x20RHS25',$,$,$,$,$,$,$); -#4107=IFCMATERIALPROFILESET($,$,(#4109),$); -#4108=IFCRELASSOCIATESMATERIAL('2Q4ox6FzP5iwO1mxuLW94h',$,$,$,(#4106),#4107); -#4109=IFCMATERIALPROFILE($,$,#17,#4101,$,$); -#4110=IFCCOLUMNTYPE('25HqwRB3L8te3PSvmjPA8P',$,'50x20RHS25',$,$,$,$,$,$,$); -#4111=IFCMATERIALPROFILESET($,$,(#4113),$); -#4112=IFCRELASSOCIATESMATERIAL('0Wsu39XRTB6QEKDoZo8_E9',$,$,$,(#4110),#4111); -#4113=IFCMATERIALPROFILE($,$,#17,#4101,$,$); -#4114=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,20.,3.,$,$); -#4115=IFCBEAMTYPE('3r67XoFNv60QxuqpUsFbXu',$,'50x20RHS30',$,$,$,$,$,$,$); -#4116=IFCMATERIALPROFILESET($,$,(#4118),$); -#4117=IFCRELASSOCIATESMATERIAL('1Co0PAvGvCCgLeS6fNajim',$,$,$,(#4115),#4116); -#4118=IFCMATERIALPROFILE($,$,#17,#4114,$,$); -#4119=IFCMEMBERTYPE('2SzUo62nHCw9l6YETJf0Ki',$,'50x20RHS30',$,$,$,$,$,$,$); -#4120=IFCMATERIALPROFILESET($,$,(#4122),$); -#4121=IFCRELASSOCIATESMATERIAL('19FwukxLn0EfeXUo_2HneP',$,$,$,(#4119),#4120); -#4122=IFCMATERIALPROFILE($,$,#17,#4114,$,$); -#4123=IFCCOLUMNTYPE('3KiwITtI9CbBn9TdHx9dhN',$,'50x20RHS30',$,$,$,$,$,$,$); -#4124=IFCMATERIALPROFILESET($,$,(#4126),$); -#4125=IFCRELASSOCIATESMATERIAL('2iloV4qzHBa8WQa5kzg7mA',$,$,$,(#4123),#4124); -#4126=IFCMATERIALPROFILE($,$,#17,#4114,$,$); -#4127=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,25.,1.6,$,$); -#4128=IFCBEAMTYPE('0F5Z3MGYT2U9lXvb3gHoU$',$,'50x25RHS16',$,$,$,$,$,$,$); -#4129=IFCMATERIALPROFILESET($,$,(#4131),$); -#4130=IFCRELASSOCIATESMATERIAL('3emBgq_zjCJf57TocNDCdn',$,$,$,(#4128),#4129); -#4131=IFCMATERIALPROFILE($,$,#17,#4127,$,$); -#4132=IFCMEMBERTYPE('2H6J72IiDFCxte8k7x0At7',$,'50x25RHS16',$,$,$,$,$,$,$); -#4133=IFCMATERIALPROFILESET($,$,(#4135),$); -#4134=IFCRELASSOCIATESMATERIAL('1x_mkIyzD1_AMwHILkDSIA',$,$,$,(#4132),#4133); -#4135=IFCMATERIALPROFILE($,$,#17,#4127,$,$); -#4136=IFCCOLUMNTYPE('24GvrW_UnDWA0DxbsY2xnu',$,'50x25RHS16',$,$,$,$,$,$,$); -#4137=IFCMATERIALPROFILESET($,$,(#4139),$); -#4138=IFCRELASSOCIATESMATERIAL('16i__y6IrC88SZP$9vq3y8',$,$,$,(#4136),#4137); -#4139=IFCMATERIALPROFILE($,$,#17,#4127,$,$); -#4140=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,25.,2.,$,$); -#4141=IFCBEAMTYPE('0_mAUn5pj2uBN_k4kU8Tzv',$,'50x25RHS20',$,$,$,$,$,$,$); -#4142=IFCMATERIALPROFILESET($,$,(#4144),$); -#4143=IFCRELASSOCIATESMATERIAL('2JQTg0cgTE1P8MIxySCU_R',$,$,$,(#4141),#4142); -#4144=IFCMATERIALPROFILE($,$,#17,#4140,$,$); -#4145=IFCMEMBERTYPE('1bBHQTXNzFcBffZuii6u9b',$,'50x25RHS20',$,$,$,$,$,$,$); -#4146=IFCMATERIALPROFILESET($,$,(#4148),$); -#4147=IFCRELASSOCIATESMATERIAL('3mm7HoA3T6ae4_6iZMEjmr',$,$,$,(#4145),#4146); -#4148=IFCMATERIALPROFILE($,$,#17,#4140,$,$); -#4149=IFCCOLUMNTYPE('1HaLnGRtnFPhaO0gIJpgTj',$,'50x25RHS20',$,$,$,$,$,$,$); -#4150=IFCMATERIALPROFILESET($,$,(#4152),$); -#4151=IFCRELASSOCIATESMATERIAL('3BA2b2qfLD89FJR1F34mKD',$,$,$,(#4149),#4150); -#4152=IFCMATERIALPROFILE($,$,#17,#4140,$,$); -#4153=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,25.,2.5,$,$); -#4154=IFCBEAMTYPE('3_q2hnTsf7UQnLKFq7y_nt',$,'50x25RHS25',$,$,$,$,$,$,$); -#4155=IFCMATERIALPROFILESET($,$,(#4157),$); -#4156=IFCRELASSOCIATESMATERIAL('1Fxk6mcNz7RRwtbx$sR50v',$,$,$,(#4154),#4155); -#4157=IFCMATERIALPROFILE($,$,#17,#4153,$,$); -#4158=IFCMEMBERTYPE('3WKFoITzrFvPtJBlLrLsLx',$,'50x25RHS25',$,$,$,$,$,$,$); -#4159=IFCMATERIALPROFILESET($,$,(#4161),$); -#4160=IFCRELASSOCIATESMATERIAL('1LXwGfnCf2AebOJaRrImWY',$,$,$,(#4158),#4159); -#4161=IFCMATERIALPROFILE($,$,#17,#4153,$,$); -#4162=IFCCOLUMNTYPE('1XRYOeDNv2X8qbfGeldfJu',$,'50x25RHS25',$,$,$,$,$,$,$); -#4163=IFCMATERIALPROFILESET($,$,(#4165),$); -#4164=IFCRELASSOCIATESMATERIAL('17kUryRRjAegUtutzPRNAS',$,$,$,(#4162),#4163); -#4165=IFCMATERIALPROFILE($,$,#17,#4153,$,$); -#4166=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,25.,3.,$,$); -#4167=IFCBEAMTYPE('3uUxQlDCr6XeIe$oFgDmNk',$,'50x25RHS30',$,$,$,$,$,$,$); -#4168=IFCMATERIALPROFILESET($,$,(#4170),$); -#4169=IFCRELASSOCIATESMATERIAL('1NXJe0OLnDVgT4F7MpFigR',$,$,$,(#4167),#4168); -#4170=IFCMATERIALPROFILE($,$,#17,#4166,$,$); -#4171=IFCMEMBERTYPE('3y4yV7h_r07AoCs51LTt15',$,'50x25RHS30',$,$,$,$,$,$,$); -#4172=IFCMATERIALPROFILESET($,$,(#4174),$); -#4173=IFCRELASSOCIATESMATERIAL('2LuCRWuDT4FQwxQbyyyoAQ',$,$,$,(#4171),#4172); -#4174=IFCMATERIALPROFILE($,$,#17,#4166,$,$); -#4175=IFCCOLUMNTYPE('3nZWWrU6v968QXxKWjTc4u',$,'50x25RHS30',$,$,$,$,$,$,$); -#4176=IFCMATERIALPROFILESET($,$,(#4178),$); -#4177=IFCRELASSOCIATESMATERIAL('1sMbI$W1vBOvSZ5gTW5QHu',$,$,$,(#4175),#4176); -#4178=IFCMATERIALPROFILE($,$,#17,#4166,$,$); -#4179=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,35.,2.,$,$); -#4180=IFCBEAMTYPE('0TS0sW2$TAahUTA8roxqG$',$,'65x35RHS20',$,$,$,$,$,$,$); -#4181=IFCMATERIALPROFILESET($,$,(#4183),$); -#4182=IFCRELASSOCIATESMATERIAL('0ohrqNaV5BtxFz$hPFo2G$',$,$,$,(#4180),#4181); -#4183=IFCMATERIALPROFILE($,$,#17,#4179,$,$); -#4184=IFCMEMBERTYPE('19IW5ovhj5mvY8z8tiplQL',$,'65x35RHS20',$,$,$,$,$,$,$); -#4185=IFCMATERIALPROFILESET($,$,(#4187),$); -#4186=IFCRELASSOCIATESMATERIAL('3JH29FR1LE7wOUYZEyPue6',$,$,$,(#4184),#4185); -#4187=IFCMATERIALPROFILE($,$,#17,#4179,$,$); -#4188=IFCCOLUMNTYPE('0ZwW82IkP0cgp1N22nT2dc',$,'65x35RHS20',$,$,$,$,$,$,$); -#4189=IFCMATERIALPROFILESET($,$,(#4191),$); -#4190=IFCRELASSOCIATESMATERIAL('37htLSnBzD1wENXhK_5cwu',$,$,$,(#4188),#4189); -#4191=IFCMATERIALPROFILE($,$,#17,#4179,$,$); -#4192=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,35.,2.5,$,$); -#4193=IFCBEAMTYPE('0jO_LqZmHChRPz0k88jnIo',$,'65x35RHS25',$,$,$,$,$,$,$); -#4194=IFCMATERIALPROFILESET($,$,(#4196),$); -#4195=IFCRELASSOCIATESMATERIAL('1EH02Ofz9Ec9ohdun34Oqg',$,$,$,(#4193),#4194); -#4196=IFCMATERIALPROFILE($,$,#17,#4192,$,$); -#4197=IFCMEMBERTYPE('0dF3VM$tz2_RXwoQ1Kclfx',$,'65x35RHS25',$,$,$,$,$,$,$); -#4198=IFCMATERIALPROFILESET($,$,(#4200),$); -#4199=IFCRELASSOCIATESMATERIAL('0D$o6pOZz0APBkvAHkpekp',$,$,$,(#4197),#4198); -#4200=IFCMATERIALPROFILE($,$,#17,#4192,$,$); -#4201=IFCCOLUMNTYPE('2KFH1VEEb5oAUljuvDLbjK',$,'65x35RHS25',$,$,$,$,$,$,$); -#4202=IFCMATERIALPROFILESET($,$,(#4204),$); -#4203=IFCRELASSOCIATESMATERIAL('0VHfVzTBf74wtXDNV51zW5',$,$,$,(#4201),#4202); -#4204=IFCMATERIALPROFILE($,$,#17,#4192,$,$); -#4205=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,35.,3.,$,$); -#4206=IFCBEAMTYPE('3B0_XECVTAkOJ_KHwPMxMe',$,'65x35RHS30',$,$,$,$,$,$,$); -#4207=IFCMATERIALPROFILESET($,$,(#4209),$); -#4208=IFCRELASSOCIATESMATERIAL('2R8H$NhbPAEgbbQL5$q9VB',$,$,$,(#4206),#4207); -#4209=IFCMATERIALPROFILE($,$,#17,#4205,$,$); -#4210=IFCMEMBERTYPE('3ipIsYn_f4jP9CbpnWDGXA',$,'65x35RHS30',$,$,$,$,$,$,$); -#4211=IFCMATERIALPROFILESET($,$,(#4213),$); -#4212=IFCRELASSOCIATESMATERIAL('2zRqz2yHf8Kg6rFK09yujb',$,$,$,(#4210),#4211); -#4213=IFCMATERIALPROFILE($,$,#17,#4205,$,$); -#4214=IFCCOLUMNTYPE('0A5qDOFGD8kebJ$7pNSGke',$,'65x35RHS30',$,$,$,$,$,$,$); -#4215=IFCMATERIALPROFILESET($,$,(#4217),$); -#4216=IFCRELASSOCIATESMATERIAL('23MytBRcTB_wV4iFbzWhkZ',$,$,$,(#4214),#4215); -#4217=IFCMATERIALPROFILE($,$,#17,#4205,$,$); -#4218=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,65.,35.,4.,$,$); -#4219=IFCBEAMTYPE('0H$o6d2Cn9Xv8JSZtYy1kO',$,'65x35RHS40',$,$,$,$,$,$,$); -#4220=IFCMATERIALPROFILESET($,$,(#4222),$); -#4221=IFCRELASSOCIATESMATERIAL('1JV06LZnn1uQSi6f1LlTAx',$,$,$,(#4219),#4220); -#4222=IFCMATERIALPROFILE($,$,#17,#4218,$,$); -#4223=IFCMEMBERTYPE('3yR$fZsIX0avQNZ7AOG2BR',$,'65x35RHS40',$,$,$,$,$,$,$); -#4224=IFCMATERIALPROFILESET($,$,(#4226),$); -#4225=IFCRELASSOCIATESMATERIAL('0XIWrtPHP9aOD2lROldrty',$,$,$,(#4223),#4224); -#4226=IFCMATERIALPROFILE($,$,#17,#4218,$,$); -#4227=IFCCOLUMNTYPE('1aW$f4PznDw97lwqMCwTjJ',$,'65x35RHS40',$,$,$,$,$,$,$); -#4228=IFCMATERIALPROFILESET($,$,(#4230),$); -#4229=IFCRELASSOCIATESMATERIAL('3LowFTHwn0hPiE4fqAU6Pw',$,$,$,(#4227),#4228); -#4230=IFCMATERIALPROFILE($,$,#17,#4218,$,$); -#4231=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,25.,1.6,$,$); -#4232=IFCBEAMTYPE('0iv4gZC$r5bgXmUpWY40gx',$,'75x25RHS16',$,$,$,$,$,$,$); -#4233=IFCMATERIALPROFILESET($,$,(#4235),$); -#4234=IFCRELASSOCIATESMATERIAL('18q0svi$X6MwSasNUJ90Jr',$,$,$,(#4232),#4233); -#4235=IFCMATERIALPROFILE($,$,#17,#4231,$,$); -#4236=IFCMEMBERTYPE('3Lt_Qqp0947AM6IlsWlumZ',$,'75x25RHS16',$,$,$,$,$,$,$); -#4237=IFCMATERIALPROFILESET($,$,(#4239),$); -#4238=IFCRELASSOCIATESMATERIAL('2nX9IJN1f7Dw1CU4c0yKaE',$,$,$,(#4236),#4237); -#4239=IFCMATERIALPROFILE($,$,#17,#4231,$,$); -#4240=IFCCOLUMNTYPE('3a7kor1QvAyB9Cwt8Vr$0K',$,'75x25RHS16',$,$,$,$,$,$,$); -#4241=IFCMATERIALPROFILESET($,$,(#4243),$); -#4242=IFCRELASSOCIATESMATERIAL('2e3TPvB690Afy4m3HIa5mG',$,$,$,(#4240),#4241); -#4243=IFCMATERIALPROFILE($,$,#17,#4231,$,$); -#4244=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,25.,2.,$,$); -#4245=IFCBEAMTYPE('3Kdtfs2jb8KfoxTaKtZ9nB',$,'75x25RHS20',$,$,$,$,$,$,$); -#4246=IFCMATERIALPROFILESET($,$,(#4248),$); -#4247=IFCRELASSOCIATESMATERIAL('2D_fYDjZ5Abf4cqQ8d1Xus',$,$,$,(#4245),#4246); -#4248=IFCMATERIALPROFILE($,$,#17,#4244,$,$); -#4249=IFCMEMBERTYPE('2r5rxoFgr3yvurjbnniOyl',$,'75x25RHS20',$,$,$,$,$,$,$); -#4250=IFCMATERIALPROFILESET($,$,(#4252),$); -#4251=IFCRELASSOCIATESMATERIAL('3mYYzVz6L5cwu$__AOyKt9',$,$,$,(#4249),#4250); -#4252=IFCMATERIALPROFILE($,$,#17,#4244,$,$); -#4253=IFCCOLUMNTYPE('3jCvPwuWn9PhleWsn$9W3e',$,'75x25RHS20',$,$,$,$,$,$,$); -#4254=IFCMATERIALPROFILESET($,$,(#4256),$); -#4255=IFCRELASSOCIATESMATERIAL('3_Pq5z2fX7Rw9o$Wil1t$9',$,$,$,(#4253),#4254); -#4256=IFCMATERIALPROFILE($,$,#17,#4244,$,$); -#4257=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,25.,2.5,$,$); -#4258=IFCBEAMTYPE('3wMYHGXMv2vAa6CVhCjBaw',$,'75x25RHS25',$,$,$,$,$,$,$); -#4259=IFCMATERIALPROFILESET($,$,(#4261),$); -#4260=IFCRELASSOCIATESMATERIAL('0SAmKA8LP07eFr$0Sbu3gF',$,$,$,(#4258),#4259); -#4261=IFCMATERIALPROFILE($,$,#17,#4257,$,$); -#4262=IFCMEMBERTYPE('25l4_hZUv4iebGLD8GkBD7',$,'75x25RHS25',$,$,$,$,$,$,$); -#4263=IFCMATERIALPROFILESET($,$,(#4265),$); -#4264=IFCRELASSOCIATESMATERIAL('0pcEZaNgbAfvHS$UryvxFi',$,$,$,(#4262),#4263); -#4265=IFCMATERIALPROFILE($,$,#17,#4257,$,$); -#4266=IFCCOLUMNTYPE('3Kh75RNAz1pRFicl7Wh301',$,'75x25RHS25',$,$,$,$,$,$,$); -#4267=IFCMATERIALPROFILESET($,$,(#4269),$); -#4268=IFCRELASSOCIATESMATERIAL('2EbRj9ubXF0vrw8DCCBskp',$,$,$,(#4266),#4267); -#4269=IFCMATERIALPROFILE($,$,#17,#4257,$,$); -#4270=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,1.6,$,$); -#4271=IFCBEAMTYPE('39ih37rjHBOv30xXlX1GGT',$,'75x50RHS16',$,$,$,$,$,$,$); -#4272=IFCMATERIALPROFILESET($,$,(#4274),$); -#4273=IFCRELASSOCIATESMATERIAL('1fYnEwmIzFqx2HQ9T0s3wP',$,$,$,(#4271),#4272); -#4274=IFCMATERIALPROFILE($,$,#17,#4270,$,$); -#4275=IFCMEMBERTYPE('2LvB__jEbAOfGiGo_vBl4J',$,'75x50RHS16',$,$,$,$,$,$,$); -#4276=IFCMATERIALPROFILESET($,$,(#4278),$); -#4277=IFCRELASSOCIATESMATERIAL('0AxICl05fB$eAelCRb0Uup',$,$,$,(#4275),#4276); -#4278=IFCMATERIALPROFILE($,$,#17,#4270,$,$); -#4279=IFCCOLUMNTYPE('1C5CUp9f561hTiUHcYNSGG',$,'75x50RHS16',$,$,$,$,$,$,$); -#4280=IFCMATERIALPROFILESET($,$,(#4282),$); -#4281=IFCRELASSOCIATESMATERIAL('1BtGCuKEHCSPJh1tFe_CY9',$,$,$,(#4279),#4280); -#4282=IFCMATERIALPROFILE($,$,#17,#4270,$,$); -#4283=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,2.,$,$); -#4284=IFCBEAMTYPE('3wg2E0ZcjBehbkALY9528C',$,'75x50RHS20',$,$,$,$,$,$,$); -#4285=IFCMATERIALPROFILESET($,$,(#4287),$); -#4286=IFCRELASSOCIATESMATERIAL('1x3vi54Pz0GPnl7mitouZ2',$,$,$,(#4284),#4285); -#4287=IFCMATERIALPROFILE($,$,#17,#4283,$,$); -#4288=IFCMEMBERTYPE('0KenOxw09E4eWt2vqu9duG',$,'75x50RHS20',$,$,$,$,$,$,$); -#4289=IFCMATERIALPROFILESET($,$,(#4291),$); -#4290=IFCRELASSOCIATESMATERIAL('35SuaJ66P7pBD9LsjikYvU',$,$,$,(#4288),#4289); -#4291=IFCMATERIALPROFILE($,$,#17,#4283,$,$); -#4292=IFCCOLUMNTYPE('3BpeM9EnnCGhzURhce8Xh_',$,'75x50RHS20',$,$,$,$,$,$,$); -#4293=IFCMATERIALPROFILESET($,$,(#4295),$); -#4294=IFCRELASSOCIATESMATERIAL('0PhABlpZ5C$P7YDRz_M50n',$,$,$,(#4292),#4293); -#4295=IFCMATERIALPROFILE($,$,#17,#4283,$,$); -#4296=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,2.5,$,$); -#4297=IFCBEAMTYPE('3e2nYa2GH5YumaXl3qY9P2',$,'75x50RHS25',$,$,$,$,$,$,$); -#4298=IFCMATERIALPROFILESET($,$,(#4300),$); -#4299=IFCRELASSOCIATESMATERIAL('0vCy1_W8H53gNx9CJLE4cW',$,$,$,(#4297),#4298); -#4300=IFCMATERIALPROFILE($,$,#17,#4296,$,$); -#4301=IFCMEMBERTYPE('2HLE2ihjv6z9HKdWvzMXJx',$,'75x50RHS25',$,$,$,$,$,$,$); -#4302=IFCMATERIALPROFILESET($,$,(#4304),$); -#4303=IFCRELASSOCIATESMATERIAL('3bemT6Djv9aACxnyg1U$wE',$,$,$,(#4301),#4302); -#4304=IFCMATERIALPROFILE($,$,#17,#4296,$,$); -#4305=IFCCOLUMNTYPE('3379$1jPDELRRkyn3ZukiY',$,'75x50RHS25',$,$,$,$,$,$,$); -#4306=IFCMATERIALPROFILESET($,$,(#4308),$); -#4307=IFCRELASSOCIATESMATERIAL('3J2NOi0mHDwuER5DRYdGrf',$,$,$,(#4305),#4306); -#4308=IFCMATERIALPROFILE($,$,#17,#4296,$,$); -#4309=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,3.,$,$); -#4310=IFCBEAMTYPE('21Kc8$Wt1EjhBbVqSfR3bU',$,'75x50RHS30',$,$,$,$,$,$,$); -#4311=IFCMATERIALPROFILESET($,$,(#4313),$); -#4312=IFCRELASSOCIATESMATERIAL('1sGxl$gUT4FgiOQqpW0yxo',$,$,$,(#4310),#4311); -#4313=IFCMATERIALPROFILE($,$,#17,#4309,$,$); -#4314=IFCMEMBERTYPE('0JUKkezpH0yhQiw82cWZF7',$,'75x50RHS30',$,$,$,$,$,$,$); -#4315=IFCMATERIALPROFILESET($,$,(#4317),$); -#4316=IFCRELASSOCIATESMATERIAL('153sNgTTL5ERd_KwQkirCZ',$,$,$,(#4314),#4315); -#4317=IFCMATERIALPROFILE($,$,#17,#4309,$,$); -#4318=IFCCOLUMNTYPE('2dlF9VIdX72BaEUZb34Tr4',$,'75x50RHS30',$,$,$,$,$,$,$); -#4319=IFCMATERIALPROFILESET($,$,(#4321),$); -#4320=IFCRELASSOCIATESMATERIAL('1zpcLprB95AujZmDQxhbL2',$,$,$,(#4318),#4319); -#4321=IFCMATERIALPROFILE($,$,#17,#4309,$,$); -#4322=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,4.,$,$); -#4323=IFCBEAMTYPE('2AlryHSIX6AeIyPC3AZ73K',$,'75x50RHS40',$,$,$,$,$,$,$); -#4324=IFCMATERIALPROFILESET($,$,(#4326),$); -#4325=IFCRELASSOCIATESMATERIAL('0vl4sjNePEU82Us4xsBC8j',$,$,$,(#4323),#4324); -#4326=IFCMATERIALPROFILE($,$,#17,#4322,$,$); -#4327=IFCMEMBERTYPE('2XFWzzEBXBMx8lYpuD_XQ2',$,'75x50RHS40',$,$,$,$,$,$,$); -#4328=IFCMATERIALPROFILESET($,$,(#4330),$); -#4329=IFCRELASSOCIATESMATERIAL('2yLF86P013$xq8x9$pt7gM',$,$,$,(#4327),#4328); -#4330=IFCMATERIALPROFILE($,$,#17,#4322,$,$); -#4331=IFCCOLUMNTYPE('3JJCn9Llv9LxEdqQCxJXZY',$,'75x50RHS40',$,$,$,$,$,$,$); -#4332=IFCMATERIALPROFILESET($,$,(#4334),$); -#4333=IFCRELASSOCIATESMATERIAL('1ybI7UHl5BsQkDIJkMtrhi',$,$,$,(#4331),#4332); -#4334=IFCMATERIALPROFILE($,$,#17,#4322,$,$); -#4335=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,5.,$,$); -#4336=IFCBEAMTYPE('0fe4qM2YP9WRhE_dU6JujL',$,'75x50RHS50',$,$,$,$,$,$,$); -#4337=IFCMATERIALPROFILESET($,$,(#4339),$); -#4338=IFCRELASSOCIATESMATERIAL('2GiTugOMn0A9V0l6_SUhzr',$,$,$,(#4336),#4337); -#4339=IFCMATERIALPROFILE($,$,#17,#4335,$,$); -#4340=IFCMEMBERTYPE('1IC5D_iU50awToVzAZgZlo',$,'75x50RHS50',$,$,$,$,$,$,$); -#4341=IFCMATERIALPROFILESET($,$,(#4343),$); -#4342=IFCRELASSOCIATESMATERIAL('3FlQ86cGH4nu1$gIPCCamt',$,$,$,(#4340),#4341); -#4343=IFCMATERIALPROFILE($,$,#17,#4335,$,$); -#4344=IFCCOLUMNTYPE('3JEaNceE18wvqRagE8zitX',$,'75x50RHS50',$,$,$,$,$,$,$); -#4345=IFCMATERIALPROFILESET($,$,(#4347),$); -#4346=IFCRELASSOCIATESMATERIAL('2GAdhJzwX32flbWtqGvi3c',$,$,$,(#4344),#4345); -#4347=IFCMATERIALPROFILE($,$,#17,#4335,$,$); -#4348=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,75.,50.,6.,$,$); -#4349=IFCBEAMTYPE('2Nme5VquzAD9eWWlkZMgWQ',$,'75x50RHS60',$,$,$,$,$,$,$); -#4350=IFCMATERIALPROFILESET($,$,(#4352),$); -#4351=IFCRELASSOCIATESMATERIAL('1iTffLJhHEkxOdYGOkayOm',$,$,$,(#4349),#4350); -#4352=IFCMATERIALPROFILE($,$,#17,#4348,$,$); -#4353=IFCMEMBERTYPE('3g8VC9rgb7ZAgnoZu97v2S',$,'75x50RHS60',$,$,$,$,$,$,$); -#4354=IFCMATERIALPROFILESET($,$,(#4356),$); -#4355=IFCRELASSOCIATESMATERIAL('2JYl5i_9j8_QL4ejRPul$T',$,$,$,(#4353),#4354); -#4356=IFCMATERIALPROFILE($,$,#17,#4348,$,$); -#4357=IFCCOLUMNTYPE('1I0ihAIkv7P8DXiXGT5m6M',$,'75x50RHS60',$,$,$,$,$,$,$); -#4358=IFCMATERIALPROFILESET($,$,(#4360),$); -#4359=IFCRELASSOCIATESMATERIAL('36PD1sM2jBrxjZwX1wgALS',$,$,$,(#4357),#4358); -#4360=IFCMATERIALPROFILE($,$,#17,#4348,$,$); -#4361=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,76.,38.,2.5,$,$); -#4362=IFCBEAMTYPE('1Cmi7kvzDBEP1XONtW03f5',$,'76x38RHS25',$,$,$,$,$,$,$); -#4363=IFCMATERIALPROFILESET($,$,(#4365),$); -#4364=IFCRELASSOCIATESMATERIAL('1plSQlpOf8YvbVs7mmo_Id',$,$,$,(#4362),#4363); -#4365=IFCMATERIALPROFILE($,$,#17,#4361,$,$); -#4366=IFCMEMBERTYPE('0QZOGNOuvEgwi9gPMqBaEm',$,'76x38RHS25',$,$,$,$,$,$,$); -#4367=IFCMATERIALPROFILESET($,$,(#4369),$); -#4368=IFCRELASSOCIATESMATERIAL('36WiQpf3vEfOs$TTMF11fp',$,$,$,(#4366),#4367); -#4369=IFCMATERIALPROFILE($,$,#17,#4361,$,$); -#4370=IFCCOLUMNTYPE('0kKx8N2xb3eAwxskd4xDiP',$,'76x38RHS25',$,$,$,$,$,$,$); -#4371=IFCMATERIALPROFILESET($,$,(#4373),$); -#4372=IFCRELASSOCIATESMATERIAL('3EGHXlZLf3KAPzYMchdhWN',$,$,$,(#4370),#4371); -#4373=IFCMATERIALPROFILE($,$,#17,#4361,$,$); -#4374=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,76.,38.,3.,$,$); -#4375=IFCBEAMTYPE('2sOsM_lkH5$B3$bnadqLKc',$,'76x38RHS30',$,$,$,$,$,$,$); -#4376=IFCMATERIALPROFILESET($,$,(#4378),$); -#4377=IFCRELASSOCIATESMATERIAL('146xtwG0H45xuU9bHEbHls',$,$,$,(#4375),#4376); -#4378=IFCMATERIALPROFILE($,$,#17,#4374,$,$); -#4379=IFCMEMBERTYPE('0MqhYv5Az0jgvXE56N5Fw0',$,'76x38RHS30',$,$,$,$,$,$,$); -#4380=IFCMATERIALPROFILESET($,$,(#4382),$); -#4381=IFCRELASSOCIATESMATERIAL('1I__2PEWb0Yg18v3umtzyk',$,$,$,(#4379),#4380); -#4382=IFCMATERIALPROFILE($,$,#17,#4374,$,$); -#4383=IFCCOLUMNTYPE('0PqLc1nQD8GfoGjJFptWxX',$,'76x38RHS30',$,$,$,$,$,$,$); -#4384=IFCMATERIALPROFILESET($,$,(#4386),$); -#4385=IFCRELASSOCIATESMATERIAL('1HG4XKpKz50RDqZsCKlqcE',$,$,$,(#4383),#4384); -#4386=IFCMATERIALPROFILE($,$,#17,#4374,$,$); -#4387=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,76.,38.,4.,$,$); -#4388=IFCBEAMTYPE('1VMQjCYeDEcggjECJuLBqs',$,'76x38RHS40',$,$,$,$,$,$,$); -#4389=IFCMATERIALPROFILESET($,$,(#4391),$); -#4390=IFCRELASSOCIATESMATERIAL('1OgXoRNsjDIvHZlDe5Z5I5',$,$,$,(#4388),#4389); -#4391=IFCMATERIALPROFILE($,$,#17,#4387,$,$); -#4392=IFCMEMBERTYPE('1hgNDfNkjD5Azsl8HuVsBQ',$,'76x38RHS40',$,$,$,$,$,$,$); -#4393=IFCMATERIALPROFILESET($,$,(#4395),$); -#4394=IFCRELASSOCIATESMATERIAL('3bWb4CRajFO8AR_QWdKdLr',$,$,$,(#4392),#4393); -#4395=IFCMATERIALPROFILE($,$,#17,#4387,$,$); -#4396=IFCCOLUMNTYPE('0CEYhmP8z1Pfr0ou0HTwIr',$,'76x38RHS40',$,$,$,$,$,$,$); -#4397=IFCMATERIALPROFILESET($,$,(#4399),$); -#4398=IFCRELASSOCIATESMATERIAL('14rb$S7_P4POUJsKrEPbbK',$,$,$,(#4396),#4397); -#4399=IFCMATERIALPROFILE($,$,#17,#4387,$,$); -#4400=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,1.6,$,$); -#4401=IFCBEAMTYPE('1cllL6mWf2phcOi79crrxA',$,'100x50RHS16',$,$,$,$,$,$,$); -#4402=IFCMATERIALPROFILESET($,$,(#4404),$); -#4403=IFCRELASSOCIATESMATERIAL('3jIao16cv9HBgIe6$5J4pr',$,$,$,(#4401),#4402); -#4404=IFCMATERIALPROFILE($,$,#17,#4400,$,$); -#4405=IFCMEMBERTYPE('1oUVFbVfj0pu5H1e4YvF7O',$,'100x50RHS16',$,$,$,$,$,$,$); -#4406=IFCMATERIALPROFILESET($,$,(#4408),$); -#4407=IFCRELASSOCIATESMATERIAL('02_rsCAP17g8L4MdNcxgjG',$,$,$,(#4405),#4406); -#4408=IFCMATERIALPROFILE($,$,#17,#4400,$,$); -#4409=IFCCOLUMNTYPE('2aJRhFYtL8VvXEjoxnpLW0',$,'100x50RHS16',$,$,$,$,$,$,$); -#4410=IFCMATERIALPROFILESET($,$,(#4412),$); -#4411=IFCRELASSOCIATESMATERIAL('3kYc$mH7j39xCM9ntZGqah',$,$,$,(#4409),#4410); -#4412=IFCMATERIALPROFILE($,$,#17,#4400,$,$); -#4413=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,2.,$,$); -#4414=IFCBEAMTYPE('2GNDdyFz52k9AJB03wBwI0',$,'100x50RHS20',$,$,$,$,$,$,$); -#4415=IFCMATERIALPROFILESET($,$,(#4417),$); -#4416=IFCRELASSOCIATESMATERIAL('1HTEKkYn9AJPm$K6jPUZ96',$,$,$,(#4414),#4415); -#4417=IFCMATERIALPROFILE($,$,#17,#4413,$,$); -#4418=IFCMEMBERTYPE('0d4YMenOL5wR1GAQiT6kUS',$,'100x50RHS20',$,$,$,$,$,$,$); -#4419=IFCMATERIALPROFILESET($,$,(#4421),$); -#4420=IFCRELASSOCIATESMATERIAL('1WLXXrnLrDFOeX_sT00EYU',$,$,$,(#4418),#4419); -#4421=IFCMATERIALPROFILE($,$,#17,#4413,$,$); -#4422=IFCCOLUMNTYPE('39lMH0NK13OwJiFb7pjeV4',$,'100x50RHS20',$,$,$,$,$,$,$); -#4423=IFCMATERIALPROFILESET($,$,(#4425),$); -#4424=IFCRELASSOCIATESMATERIAL('0_ZTevhJnCu8HlUc_h$WF4',$,$,$,(#4422),#4423); -#4425=IFCMATERIALPROFILE($,$,#17,#4413,$,$); -#4426=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,2.5,$,$); -#4427=IFCBEAMTYPE('2gzlmL2m52VPtTOeDHF97j',$,'100x50RHS25',$,$,$,$,$,$,$); -#4428=IFCMATERIALPROFILESET($,$,(#4430),$); -#4429=IFCRELASSOCIATESMATERIAL('2UscNf67TAthYv52BJRsMs',$,$,$,(#4427),#4428); -#4430=IFCMATERIALPROFILE($,$,#17,#4426,$,$); -#4431=IFCMEMBERTYPE('1ux$izQ6PCWxCMvJ$RfR99',$,'100x50RHS25',$,$,$,$,$,$,$); -#4432=IFCMATERIALPROFILESET($,$,(#4434),$); -#4433=IFCRELASSOCIATESMATERIAL('0HcMwKIpj5qQKE_c521Noz',$,$,$,(#4431),#4432); -#4434=IFCMATERIALPROFILE($,$,#17,#4426,$,$); -#4435=IFCCOLUMNTYPE('30J1oRbtXBJf33ERXr8MWS',$,'100x50RHS25',$,$,$,$,$,$,$); -#4436=IFCMATERIALPROFILESET($,$,(#4438),$); -#4437=IFCRELASSOCIATESMATERIAL('2UBE6oMZrCy97$STGVEX7c',$,$,$,(#4435),#4436); -#4438=IFCMATERIALPROFILE($,$,#17,#4426,$,$); -#4439=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,3.,$,$); -#4440=IFCBEAMTYPE('3D4$WFRu1A78J2$F2ZtRRV',$,'100x50RHS30',$,$,$,$,$,$,$); -#4441=IFCMATERIALPROFILESET($,$,(#4443),$); -#4442=IFCRELASSOCIATESMATERIAL('2TzXFXcdXBTgRAbigiFdhb',$,$,$,(#4440),#4441); -#4443=IFCMATERIALPROFILE($,$,#17,#4439,$,$); -#4444=IFCMEMBERTYPE('2yyZK_oR98OBgNJJFVL8jU',$,'100x50RHS30',$,$,$,$,$,$,$); -#4445=IFCMATERIALPROFILESET($,$,(#4447),$); -#4446=IFCRELASSOCIATESMATERIAL('1pVN6KZQr1qP2qpE6ioxko',$,$,$,(#4444),#4445); -#4447=IFCMATERIALPROFILE($,$,#17,#4439,$,$); -#4448=IFCCOLUMNTYPE('0R9APGkuz19fC6W3qIrlNc',$,'100x50RHS30',$,$,$,$,$,$,$); -#4449=IFCMATERIALPROFILESET($,$,(#4451),$); -#4450=IFCRELASSOCIATESMATERIAL('0epDiaPxT0dhMtsFkkYrwK',$,$,$,(#4448),#4449); -#4451=IFCMATERIALPROFILE($,$,#17,#4439,$,$); -#4452=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,3.5,$,$); -#4453=IFCBEAMTYPE('1gObV1UD5CXRA4vA2dPEYq',$,'100x50RHS35',$,$,$,$,$,$,$); -#4454=IFCMATERIALPROFILESET($,$,(#4456),$); -#4455=IFCRELASSOCIATESMATERIAL('1eKhgDjI137hwWtD1IFMwC',$,$,$,(#4453),#4454); -#4456=IFCMATERIALPROFILE($,$,#17,#4452,$,$); -#4457=IFCMEMBERTYPE('0pkQ0JfZbDGh7bBx2bbjdT',$,'100x50RHS35',$,$,$,$,$,$,$); -#4458=IFCMATERIALPROFILESET($,$,(#4460),$); -#4459=IFCRELASSOCIATESMATERIAL('322qn9$Zj2ruf8DyfVktf1',$,$,$,(#4457),#4458); -#4460=IFCMATERIALPROFILE($,$,#17,#4452,$,$); -#4461=IFCCOLUMNTYPE('1zSVEceDPF5BfbcpAjk554',$,'100x50RHS35',$,$,$,$,$,$,$); -#4462=IFCMATERIALPROFILESET($,$,(#4464),$); -#4463=IFCRELASSOCIATESMATERIAL('1tRCg1SiH2gv0CCz2DpWS$',$,$,$,(#4461),#4462); -#4464=IFCMATERIALPROFILE($,$,#17,#4452,$,$); -#4465=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,4.,$,$); -#4466=IFCBEAMTYPE('0j3nQYDPT2thmJTC8uTP5P',$,'100x50RHS40',$,$,$,$,$,$,$); -#4467=IFCMATERIALPROFILESET($,$,(#4469),$); -#4468=IFCRELASSOCIATESMATERIAL('3o8r85kuHAYe7JZsSaicCd',$,$,$,(#4466),#4467); -#4469=IFCMATERIALPROFILE($,$,#17,#4465,$,$); -#4470=IFCMEMBERTYPE('3nlXKjmBz9Yv9yTtuoMBRf',$,'100x50RHS40',$,$,$,$,$,$,$); -#4471=IFCMATERIALPROFILESET($,$,(#4473),$); -#4472=IFCRELASSOCIATESMATERIAL('3U609$_ob9YPT$oL3AwLMP',$,$,$,(#4470),#4471); -#4473=IFCMATERIALPROFILE($,$,#17,#4465,$,$); -#4474=IFCCOLUMNTYPE('0Hjrf4rOj1dP5awU09_m2e',$,'100x50RHS40',$,$,$,$,$,$,$); -#4475=IFCMATERIALPROFILESET($,$,(#4477),$); -#4476=IFCRELASSOCIATESMATERIAL('1pXO8YWRn69fu5vqm2muwm',$,$,$,(#4474),#4475); -#4477=IFCMATERIALPROFILE($,$,#17,#4465,$,$); -#4478=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,5.,$,$); -#4479=IFCBEAMTYPE('2zYA6dE$f0vQVAiffBjZxT',$,'100x50RHS50',$,$,$,$,$,$,$); -#4480=IFCMATERIALPROFILESET($,$,(#4482),$); -#4481=IFCRELASSOCIATESMATERIAL('1L3ClZaNT9dut5XSrB7fMp',$,$,$,(#4479),#4480); -#4482=IFCMATERIALPROFILE($,$,#17,#4478,$,$); -#4483=IFCMEMBERTYPE('28jMWBWKbDwA3z_vmVd0Rf',$,'100x50RHS50',$,$,$,$,$,$,$); -#4484=IFCMATERIALPROFILESET($,$,(#4486),$); -#4485=IFCRELASSOCIATESMATERIAL('05_9eP5JfCwhOV8VaLZk1j',$,$,$,(#4483),#4484); -#4486=IFCMATERIALPROFILE($,$,#17,#4478,$,$); -#4487=IFCCOLUMNTYPE('2OraN_VoPCHfF4b$Bm3g53',$,'100x50RHS50',$,$,$,$,$,$,$); -#4488=IFCMATERIALPROFILESET($,$,(#4490),$); -#4489=IFCRELASSOCIATESMATERIAL('2CfSCet5DEzPPD_EIrDD91',$,$,$,(#4487),#4488); -#4490=IFCMATERIALPROFILE($,$,#17,#4478,$,$); -#4491=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,50.,6.,$,$); -#4492=IFCBEAMTYPE('29BwcBrqTCiAxW6GkD13$k',$,'100x50RHS60',$,$,$,$,$,$,$); -#4493=IFCMATERIALPROFILESET($,$,(#4495),$); -#4494=IFCRELASSOCIATESMATERIAL('2tjPmdoMPDHRi7F8J3KmFu',$,$,$,(#4492),#4493); -#4495=IFCMATERIALPROFILE($,$,#17,#4491,$,$); -#4496=IFCMEMBERTYPE('2ZWuUe8oLA$uIIeLlCOQVe',$,'100x50RHS60',$,$,$,$,$,$,$); -#4497=IFCMATERIALPROFILESET($,$,(#4499),$); -#4498=IFCRELASSOCIATESMATERIAL('0se3dVmeP6Eek1L5DTRL4J',$,$,$,(#4496),#4497); -#4499=IFCMATERIALPROFILE($,$,#17,#4491,$,$); -#4500=IFCCOLUMNTYPE('2WIGWigHvCA8QInLNkN2iS',$,'100x50RHS60',$,$,$,$,$,$,$); -#4501=IFCMATERIALPROFILESET($,$,(#4503),$); -#4502=IFCRELASSOCIATESMATERIAL('1LxWN_gBvAUPzFFyl8ru0g',$,$,$,(#4500),#4501); -#4503=IFCMATERIALPROFILE($,$,#17,#4491,$,$); -#4504=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,102.,76.,3.5,$,$); -#4505=IFCBEAMTYPE('0KjvnWPQL2MBXEDcglOCOJ',$,'102x76RHS35',$,$,$,$,$,$,$); -#4506=IFCMATERIALPROFILESET($,$,(#4508),$); -#4507=IFCRELASSOCIATESMATERIAL('3PfD_CIMPBC81N35p9_TBz',$,$,$,(#4505),#4506); -#4508=IFCMATERIALPROFILE($,$,#17,#4504,$,$); -#4509=IFCMEMBERTYPE('08okpesAL3Hh_jCnkUzHle',$,'102x76RHS35',$,$,$,$,$,$,$); -#4510=IFCMATERIALPROFILESET($,$,(#4512),$); -#4511=IFCRELASSOCIATESMATERIAL('0$n4K9abP90e$Z0deZwMhO',$,$,$,(#4509),#4510); -#4512=IFCMATERIALPROFILE($,$,#17,#4504,$,$); -#4513=IFCCOLUMNTYPE('1n6fwFkLv4LOa5RwTsYaBU',$,'102x76RHS35',$,$,$,$,$,$,$); -#4514=IFCMATERIALPROFILESET($,$,(#4516),$); -#4515=IFCRELASSOCIATESMATERIAL('01p74S$BTAkwEZQ$KqpVs3',$,$,$,(#4513),#4514); -#4516=IFCMATERIALPROFILE($,$,#17,#4504,$,$); -#4517=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,102.,76.,5.,$,$); -#4518=IFCBEAMTYPE('3kWji70Jf9QwayiGOfRYPd',$,'102x76RHS50',$,$,$,$,$,$,$); -#4519=IFCMATERIALPROFILESET($,$,(#4521),$); -#4520=IFCRELASSOCIATESMATERIAL('3rCmZl2VP2AxzYF8eKB7hn',$,$,$,(#4518),#4519); -#4521=IFCMATERIALPROFILE($,$,#17,#4517,$,$); -#4522=IFCMEMBERTYPE('24mfgt3ODBWQkx$E_OfGXo',$,'102x76RHS50',$,$,$,$,$,$,$); -#4523=IFCMATERIALPROFILESET($,$,(#4525),$); -#4524=IFCRELASSOCIATESMATERIAL('06ORntVUL5UuZp_OexhN67',$,$,$,(#4522),#4523); -#4525=IFCMATERIALPROFILE($,$,#17,#4517,$,$); -#4526=IFCCOLUMNTYPE('1jC1Z5oKnDdOEYbu8Ve1Qt',$,'102x76RHS50',$,$,$,$,$,$,$); -#4527=IFCMATERIALPROFILESET($,$,(#4529),$); -#4528=IFCRELASSOCIATESMATERIAL('2jeSvbOYX9fuMzUdeP8h2n',$,$,$,(#4526),#4527); -#4529=IFCMATERIALPROFILE($,$,#17,#4517,$,$); -#4530=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,102.,76.,6.,$,$); -#4531=IFCBEAMTYPE('2F0MEYd1T4e8J9PWrCwX2l',$,'102x76RHS60',$,$,$,$,$,$,$); -#4532=IFCMATERIALPROFILESET($,$,(#4534),$); -#4533=IFCRELASSOCIATESMATERIAL('1gintraPX3BuvTrVHl15il',$,$,$,(#4531),#4532); -#4534=IFCMATERIALPROFILE($,$,#17,#4530,$,$); -#4535=IFCMEMBERTYPE('2fLh73p7j6iP1OoB$6HdwR',$,'102x76RHS60',$,$,$,$,$,$,$); -#4536=IFCMATERIALPROFILESET($,$,(#4538),$); -#4537=IFCRELASSOCIATESMATERIAL('0OqKeUCNDCPhWvZ8qrkjv7',$,$,$,(#4535),#4536); -#4538=IFCMATERIALPROFILE($,$,#17,#4530,$,$); -#4539=IFCCOLUMNTYPE('2UNJXHKFTABRplDP4kWaU2',$,'102x76RHS60',$,$,$,$,$,$,$); -#4540=IFCMATERIALPROFILESET($,$,(#4542),$); -#4541=IFCRELASSOCIATESMATERIAL('2whQYpZCv5k9bmTgoNnsU4',$,$,$,(#4539),#4540); -#4542=IFCMATERIALPROFILE($,$,#17,#4530,$,$); -#4543=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,75.,2.,$,$); -#4544=IFCBEAMTYPE('1QjKalbej8swdwN$N668zC',$,'125x75RHS20',$,$,$,$,$,$,$); -#4545=IFCMATERIALPROFILESET($,$,(#4547),$); -#4546=IFCRELASSOCIATESMATERIAL('3PkKUbW6X3qhjglB8g6S4o',$,$,$,(#4544),#4545); -#4547=IFCMATERIALPROFILE($,$,#17,#4543,$,$); -#4548=IFCMEMBERTYPE('1NtFV8_Yr1Vw7Sj1guP9EQ',$,'125x75RHS20',$,$,$,$,$,$,$); -#4549=IFCMATERIALPROFILESET($,$,(#4551),$); -#4550=IFCRELASSOCIATESMATERIAL('071K9EOpz9Gh3x5VcDIkDc',$,$,$,(#4548),#4549); -#4551=IFCMATERIALPROFILE($,$,#17,#4543,$,$); -#4552=IFCCOLUMNTYPE('2HPuyabmD8hQMrVsjzl0Ts',$,'125x75RHS20',$,$,$,$,$,$,$); -#4553=IFCMATERIALPROFILESET($,$,(#4555),$); -#4554=IFCRELASSOCIATESMATERIAL('2pcqNeaoD5RvPO2ogaa8Ix',$,$,$,(#4552),#4553); -#4555=IFCMATERIALPROFILE($,$,#17,#4543,$,$); -#4556=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,75.,2.5,$,$); -#4557=IFCBEAMTYPE('319cW$exn0uQ7hB1q0ejTG',$,'125x75RHS25',$,$,$,$,$,$,$); -#4558=IFCMATERIALPROFILESET($,$,(#4560),$); -#4559=IFCRELASSOCIATESMATERIAL('2Cwfy1qNn7zOtVCSIbsenH',$,$,$,(#4557),#4558); -#4560=IFCMATERIALPROFILE($,$,#17,#4556,$,$); -#4561=IFCMEMBERTYPE('38WL6ciZz3WRz1ch8v$koH',$,'125x75RHS25',$,$,$,$,$,$,$); -#4562=IFCMATERIALPROFILESET($,$,(#4564),$); -#4563=IFCRELASSOCIATESMATERIAL('0XfKGF$z96gfbmlIc6cX5d',$,$,$,(#4561),#4562); -#4564=IFCMATERIALPROFILE($,$,#17,#4556,$,$); -#4565=IFCCOLUMNTYPE('3aFDsfYoP20Rt9BB5iMTQT',$,'125x75RHS25',$,$,$,$,$,$,$); -#4566=IFCMATERIALPROFILESET($,$,(#4568),$); -#4567=IFCRELASSOCIATESMATERIAL('0Djk5ZLiv4$hwv54_hzVAi',$,$,$,(#4565),#4566); -#4568=IFCMATERIALPROFILE($,$,#17,#4556,$,$); -#4569=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,75.,3.,$,$); -#4570=IFCBEAMTYPE('3NB1IIllz7cRpTC7XMrkNh',$,'125x75RHS30',$,$,$,$,$,$,$); -#4571=IFCMATERIALPROFILESET($,$,(#4573),$); -#4572=IFCRELASSOCIATESMATERIAL('19gHsuP1fFFRwrO6sZNcII',$,$,$,(#4570),#4571); -#4573=IFCMATERIALPROFILE($,$,#17,#4569,$,$); -#4574=IFCMEMBERTYPE('2f6YXQVZn5YxUPQwX2pBrZ',$,'125x75RHS30',$,$,$,$,$,$,$); -#4575=IFCMATERIALPROFILESET($,$,(#4577),$); -#4576=IFCRELASSOCIATESMATERIAL('2Mv_xl$ZL5LeaSJPnYVUll',$,$,$,(#4574),#4575); -#4577=IFCMATERIALPROFILE($,$,#17,#4569,$,$); -#4578=IFCCOLUMNTYPE('3qnefFtnD0IukxnVQIDgfI',$,'125x75RHS30',$,$,$,$,$,$,$); -#4579=IFCMATERIALPROFILESET($,$,(#4581),$); -#4580=IFCRELASSOCIATESMATERIAL('3LqIpQoOn1px$5olLfIXQY',$,$,$,(#4578),#4579); -#4581=IFCMATERIALPROFILE($,$,#17,#4569,$,$); -#4582=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,75.,4.,$,$); -#4583=IFCBEAMTYPE('0X09njVTHDGwZVMfTcZUnL',$,'125x75RHS40',$,$,$,$,$,$,$); -#4584=IFCMATERIALPROFILESET($,$,(#4586),$); -#4585=IFCRELASSOCIATESMATERIAL('1wt9$hF0TD6ONmqiprmMJs',$,$,$,(#4583),#4584); -#4586=IFCMATERIALPROFILE($,$,#17,#4582,$,$); -#4587=IFCMEMBERTYPE('37rY3rvbz2kuTSBKGzQuwx',$,'125x75RHS40',$,$,$,$,$,$,$); -#4588=IFCMATERIALPROFILESET($,$,(#4590),$); -#4589=IFCRELASSOCIATESMATERIAL('0pKBVWQUf8VhGgFyOKNmQd',$,$,$,(#4587),#4588); -#4590=IFCMATERIALPROFILE($,$,#17,#4582,$,$); -#4591=IFCCOLUMNTYPE('36LNDMASL0DvrC3gksWt9O',$,'125x75RHS40',$,$,$,$,$,$,$); -#4592=IFCMATERIALPROFILESET($,$,(#4594),$); -#4593=IFCRELASSOCIATESMATERIAL('3ehUE984X5v9nCAH8zMb0k',$,$,$,(#4591),#4592); -#4594=IFCMATERIALPROFILE($,$,#17,#4582,$,$); -#4595=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,75.,5.,$,$); -#4596=IFCBEAMTYPE('15UCNWCqH52ABe1xA$DbJQ',$,'125x75RHS50',$,$,$,$,$,$,$); -#4597=IFCMATERIALPROFILESET($,$,(#4599),$); -#4598=IFCRELASSOCIATESMATERIAL('2X4jM6DXbDb9CXiEXXxzlO',$,$,$,(#4596),#4597); -#4599=IFCMATERIALPROFILE($,$,#17,#4595,$,$); -#4600=IFCMEMBERTYPE('2UNRi1R613qRKaEw2K1m32',$,'125x75RHS50',$,$,$,$,$,$,$); -#4601=IFCMATERIALPROFILESET($,$,(#4603),$); -#4602=IFCRELASSOCIATESMATERIAL('1vNz5lWaDBwubZfxiNE7GE',$,$,$,(#4600),#4601); -#4603=IFCMATERIALPROFILE($,$,#17,#4595,$,$); -#4604=IFCCOLUMNTYPE('04Zdcd4WnFGB$MjPNaoDWd',$,'125x75RHS50',$,$,$,$,$,$,$); -#4605=IFCMATERIALPROFILESET($,$,(#4607),$); -#4606=IFCRELASSOCIATESMATERIAL('0rped6Y4v1PvG_ULKjRSyo',$,$,$,(#4604),#4605); -#4607=IFCMATERIALPROFILE($,$,#17,#4595,$,$); -#4608=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,125.,75.,6.,$,$); -#4609=IFCBEAMTYPE('2KiE44R_zAQA9jnt0XgAXC',$,'125x75RHS60',$,$,$,$,$,$,$); -#4610=IFCMATERIALPROFILESET($,$,(#4612),$); -#4611=IFCRELASSOCIATESMATERIAL('0soS4LuW1C3fFpUyDWRNa9',$,$,$,(#4609),#4610); -#4612=IFCMATERIALPROFILE($,$,#17,#4608,$,$); -#4613=IFCMEMBERTYPE('3W4H7sIV1DZhteBzKzibWB',$,'125x75RHS60',$,$,$,$,$,$,$); -#4614=IFCMATERIALPROFILESET($,$,(#4616),$); -#4615=IFCRELASSOCIATESMATERIAL('2LNgEJFOfE8uVTAFjfRcjr',$,$,$,(#4613),#4614); -#4616=IFCMATERIALPROFILE($,$,#17,#4608,$,$); -#4617=IFCCOLUMNTYPE('1_IyoAGC58VAI6oKKA1H6J',$,'125x75RHS60',$,$,$,$,$,$,$); -#4618=IFCMATERIALPROFILESET($,$,(#4620),$); -#4619=IFCRELASSOCIATESMATERIAL('1ChyRKmnfEXhcIGXUSfTkj',$,$,$,(#4617),#4618); -#4620=IFCMATERIALPROFILE($,$,#17,#4608,$,$); -#4621=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,127.,51.,3.5,$,$); -#4622=IFCBEAMTYPE('2euiJz_CzBeOn0uzPCbwVi',$,'127x51RHS35',$,$,$,$,$,$,$); -#4623=IFCMATERIALPROFILESET($,$,(#4625),$); -#4624=IFCRELASSOCIATESMATERIAL('1U23d00w5CauC1oRBWzAN4',$,$,$,(#4622),#4623); -#4625=IFCMATERIALPROFILE($,$,#17,#4621,$,$); -#4626=IFCMEMBERTYPE('3bMActIFn8ruAO5NjGgKRR',$,'127x51RHS35',$,$,$,$,$,$,$); -#4627=IFCMATERIALPROFILESET($,$,(#4629),$); -#4628=IFCRELASSOCIATESMATERIAL('0w5sRXLsT8Xx6X7Sij1yOZ',$,$,$,(#4626),#4627); -#4629=IFCMATERIALPROFILE($,$,#17,#4621,$,$); -#4630=IFCCOLUMNTYPE('3tYKOMAK1CvuL982jVZvs4',$,'127x51RHS35',$,$,$,$,$,$,$); -#4631=IFCMATERIALPROFILESET($,$,(#4633),$); -#4632=IFCRELASSOCIATESMATERIAL('1RINIAtoz4tu4WHHMS5T9H',$,$,$,(#4630),#4631); -#4633=IFCMATERIALPROFILE($,$,#17,#4621,$,$); -#4634=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,127.,51.,5.,$,$); -#4635=IFCBEAMTYPE('3jfRAnypDEPOQWQkthFq0I',$,'127x51RHS50',$,$,$,$,$,$,$); -#4636=IFCMATERIALPROFILESET($,$,(#4638),$); -#4637=IFCRELASSOCIATESMATERIAL('29TlOSeiH1uxcQ4Sd_6AHK',$,$,$,(#4635),#4636); -#4638=IFCMATERIALPROFILE($,$,#17,#4634,$,$); -#4639=IFCMEMBERTYPE('0abaeP095FoPYEEz7Dndj5',$,'127x51RHS50',$,$,$,$,$,$,$); -#4640=IFCMATERIALPROFILESET($,$,(#4642),$); -#4641=IFCRELASSOCIATESMATERIAL('1J805JFfb2NOMFALdAFfSO',$,$,$,(#4639),#4640); -#4642=IFCMATERIALPROFILE($,$,#17,#4634,$,$); -#4643=IFCCOLUMNTYPE('1WduD$$8H7zuJtZC5F8fyX',$,'127x51RHS50',$,$,$,$,$,$,$); -#4644=IFCMATERIALPROFILESET($,$,(#4646),$); -#4645=IFCRELASSOCIATESMATERIAL('0t7Al1NvLBjBqsUcXV5UWH',$,$,$,(#4643),#4644); -#4646=IFCMATERIALPROFILE($,$,#17,#4634,$,$); -#4647=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,127.,51.,6.,$,$); -#4648=IFCBEAMTYPE('0CNfx01I9FIxouXybw8BEa',$,'127x51RHS60',$,$,$,$,$,$,$); -#4649=IFCMATERIALPROFILESET($,$,(#4651),$); -#4650=IFCRELASSOCIATESMATERIAL('2HQEzBWIX3aRyrhLXcxZBb',$,$,$,(#4648),#4649); -#4651=IFCMATERIALPROFILE($,$,#17,#4647,$,$); -#4652=IFCMEMBERTYPE('26fGGX66T4AgZesgPUEhnh',$,'127x51RHS60',$,$,$,$,$,$,$); -#4653=IFCMATERIALPROFILESET($,$,(#4655),$); -#4654=IFCRELASSOCIATESMATERIAL('3QdUuYqYvFivYIaA3qqgv5',$,$,$,(#4652),#4653); -#4655=IFCMATERIALPROFILE($,$,#17,#4647,$,$); -#4656=IFCCOLUMNTYPE('1GbPbV$lb7_usXKO_upjOB',$,'127x51RHS60',$,$,$,$,$,$,$); -#4657=IFCMATERIALPROFILESET($,$,(#4659),$); -#4658=IFCRELASSOCIATESMATERIAL('2Q83FB5mb80AhGRyBavhFN',$,$,$,(#4656),#4657); -#4659=IFCMATERIALPROFILE($,$,#17,#4647,$,$); -#4660=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,50.,2.,$,$); -#4661=IFCBEAMTYPE('1ElXGeGEz14eibRfLRTQal',$,'150x50RHS20',$,$,$,$,$,$,$); -#4662=IFCMATERIALPROFILESET($,$,(#4664),$); -#4663=IFCRELASSOCIATESMATERIAL('14V_N9pH9Clf8LRW$EyNrt',$,$,$,(#4661),#4662); -#4664=IFCMATERIALPROFILE($,$,#17,#4660,$,$); -#4665=IFCMEMBERTYPE('1o7OvGvFLAmeRsRMsW0F_o',$,'150x50RHS20',$,$,$,$,$,$,$); -#4666=IFCMATERIALPROFILESET($,$,(#4668),$); -#4667=IFCRELASSOCIATESMATERIAL('3K9NtCRd90mwUfEYwko5fT',$,$,$,(#4665),#4666); -#4668=IFCMATERIALPROFILE($,$,#17,#4660,$,$); -#4669=IFCCOLUMNTYPE('0GZcnnZgn5dwbezEU2mgms',$,'150x50RHS20',$,$,$,$,$,$,$); -#4670=IFCMATERIALPROFILESET($,$,(#4672),$); -#4671=IFCRELASSOCIATESMATERIAL('2htRjAQPj65RSIrJaaaoib',$,$,$,(#4669),#4670); -#4672=IFCMATERIALPROFILE($,$,#17,#4660,$,$); -#4673=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,50.,2.5,$,$); -#4674=IFCBEAMTYPE('0XpbAAKCn0swTpMO9eksZs',$,'150x50RHS25',$,$,$,$,$,$,$); -#4675=IFCMATERIALPROFILESET($,$,(#4677),$); -#4676=IFCRELASSOCIATESMATERIAL('30sUjkJnT6_95A4HLAHJy4',$,$,$,(#4674),#4675); -#4677=IFCMATERIALPROFILE($,$,#17,#4673,$,$); -#4678=IFCMEMBERTYPE('1zuLuUpTbBkRqr68E1nMjp',$,'150x50RHS25',$,$,$,$,$,$,$); -#4679=IFCMATERIALPROFILESET($,$,(#4681),$); -#4680=IFCRELASSOCIATESMATERIAL('29LfYMXsnFDOjzndIblEI2',$,$,$,(#4678),#4679); -#4681=IFCMATERIALPROFILE($,$,#17,#4673,$,$); -#4682=IFCCOLUMNTYPE('1Api91dLT8TQdFfBTLq7Sx',$,'150x50RHS25',$,$,$,$,$,$,$); -#4683=IFCMATERIALPROFILESET($,$,(#4685),$); -#4684=IFCRELASSOCIATESMATERIAL('0_k3IbfLX7dPpzqJe1ldPS',$,$,$,(#4682),#4683); -#4685=IFCMATERIALPROFILE($,$,#17,#4673,$,$); -#4686=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,50.,3.,$,$); -#4687=IFCBEAMTYPE('1VUnZrGPDCPeDJ_DcZpMSa',$,'150x50RHS30',$,$,$,$,$,$,$); -#4688=IFCMATERIALPROFILESET($,$,(#4690),$); -#4689=IFCRELASSOCIATESMATERIAL('0sdwKOSJf1GAgw_U4T9kq0',$,$,$,(#4687),#4688); -#4690=IFCMATERIALPROFILE($,$,#17,#4686,$,$); -#4691=IFCMEMBERTYPE('2LZ89wZWj5TfwBKaCqjXAW',$,'150x50RHS30',$,$,$,$,$,$,$); -#4692=IFCMATERIALPROFILESET($,$,(#4694),$); -#4693=IFCRELASSOCIATESMATERIAL('1ln_oUcAvBrABI_4nmc_U5',$,$,$,(#4691),#4692); -#4694=IFCMATERIALPROFILE($,$,#17,#4686,$,$); -#4695=IFCCOLUMNTYPE('24KReuQifAh8_LwhfoIITU',$,'150x50RHS30',$,$,$,$,$,$,$); -#4696=IFCMATERIALPROFILESET($,$,(#4698),$); -#4697=IFCRELASSOCIATESMATERIAL('3OR4QDpw5BzhVOh4FCMawj',$,$,$,(#4695),#4696); -#4698=IFCMATERIALPROFILE($,$,#17,#4686,$,$); -#4699=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,50.,4.,$,$); -#4700=IFCBEAMTYPE('0ArjzR6YH8h95fdn5WS65u',$,'150x50RHS40',$,$,$,$,$,$,$); -#4701=IFCMATERIALPROFILESET($,$,(#4703),$); -#4702=IFCRELASSOCIATESMATERIAL('1w9L78Ugn5QRMBLunDEM$P',$,$,$,(#4700),#4701); -#4703=IFCMATERIALPROFILE($,$,#17,#4699,$,$); -#4704=IFCMEMBERTYPE('3_cqmxe5H7Eu19l7QaazDB',$,'150x50RHS40',$,$,$,$,$,$,$); -#4705=IFCMATERIALPROFILESET($,$,(#4707),$); -#4706=IFCRELASSOCIATESMATERIAL('0NOWQFXSf9T9BedOrfmOAd',$,$,$,(#4704),#4705); -#4707=IFCMATERIALPROFILE($,$,#17,#4699,$,$); -#4708=IFCCOLUMNTYPE('2OVW8Lx7H1kvX800P7mPKj',$,'150x50RHS40',$,$,$,$,$,$,$); -#4709=IFCMATERIALPROFILESET($,$,(#4711),$); -#4710=IFCRELASSOCIATESMATERIAL('0x9ZHeocnBOAdfTSu1$jNC',$,$,$,(#4708),#4709); -#4711=IFCMATERIALPROFILE($,$,#17,#4699,$,$); -#4712=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,50.,5.,$,$); -#4713=IFCBEAMTYPE('3N4bj8kuDB6f5silOirUA2',$,'150x50RHS50',$,$,$,$,$,$,$); -#4714=IFCMATERIALPROFILESET($,$,(#4716),$); -#4715=IFCRELASSOCIATESMATERIAL('0Vjhcyr2L39RB6hiqL8ixI',$,$,$,(#4713),#4714); -#4716=IFCMATERIALPROFILE($,$,#17,#4712,$,$); -#4717=IFCMEMBERTYPE('2yU1zGMAz2dPMLTHwP0xVD',$,'150x50RHS50',$,$,$,$,$,$,$); -#4718=IFCMATERIALPROFILESET($,$,(#4720),$); -#4719=IFCRELASSOCIATESMATERIAL('0vt$G_Ed95YuuF3UiZF7QP',$,$,$,(#4717),#4718); -#4720=IFCMATERIALPROFILE($,$,#17,#4712,$,$); -#4721=IFCCOLUMNTYPE('3yhRyFC210ExvUDTlZhtVX',$,'150x50RHS50',$,$,$,$,$,$,$); -#4722=IFCMATERIALPROFILESET($,$,(#4724),$); -#4723=IFCRELASSOCIATESMATERIAL('3dku55qUP33R2vRdcTzd7w',$,$,$,(#4721),#4722); -#4724=IFCMATERIALPROFILE($,$,#17,#4712,$,$); -#4725=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,50.,6.,$,$); -#4726=IFCBEAMTYPE('1Um90JNvL9A9t0AQVfVMID',$,'150x50RHS60',$,$,$,$,$,$,$); -#4727=IFCMATERIALPROFILESET($,$,(#4729),$); -#4728=IFCRELASSOCIATESMATERIAL('3w_JT8iRH8PvxWsHCkoI6O',$,$,$,(#4726),#4727); -#4729=IFCMATERIALPROFILE($,$,#17,#4725,$,$); -#4730=IFCMEMBERTYPE('0GqlFG3MzF09Md2TPpBw1x',$,'150x50RHS60',$,$,$,$,$,$,$); -#4731=IFCMATERIALPROFILESET($,$,(#4733),$); -#4732=IFCRELASSOCIATESMATERIAL('2wG73tfpX5awAhN2WmRYlz',$,$,$,(#4730),#4731); -#4733=IFCMATERIALPROFILE($,$,#17,#4725,$,$); -#4734=IFCCOLUMNTYPE('1vCfei2w10qRWCB_Oew$mH',$,'150x50RHS60',$,$,$,$,$,$,$); -#4735=IFCMATERIALPROFILESET($,$,(#4737),$); -#4736=IFCRELASSOCIATESMATERIAL('1ngPt_w$95QPV$JahmHrpx',$,$,$,(#4734),#4735); -#4737=IFCMATERIALPROFILE($,$,#17,#4725,$,$); -#4738=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,76.,5.,$,$); -#4739=IFCBEAMTYPE('1XplcbDH90$wcFa8F2Yd5d',$,'150x76RHS50',$,$,$,$,$,$,$); -#4740=IFCMATERIALPROFILESET($,$,(#4742),$); -#4741=IFCRELASSOCIATESMATERIAL('3lo$ntw4f10uURpeDr3nsN',$,$,$,(#4739),#4740); -#4742=IFCMATERIALPROFILE($,$,#17,#4738,$,$); -#4743=IFCMEMBERTYPE('0jRqH_TMrAhwrFnMpxTMs0',$,'150x76RHS50',$,$,$,$,$,$,$); -#4744=IFCMATERIALPROFILESET($,$,(#4746),$); -#4745=IFCRELASSOCIATESMATERIAL('0jkBaj4BbE$R8AbtAZTAu5',$,$,$,(#4743),#4744); -#4746=IFCMATERIALPROFILE($,$,#17,#4738,$,$); -#4747=IFCCOLUMNTYPE('0oE4_2iRD1a89soJWSGzbl',$,'150x76RHS50',$,$,$,$,$,$,$); -#4748=IFCMATERIALPROFILESET($,$,(#4750),$); -#4749=IFCRELASSOCIATESMATERIAL('0FTLQjrZP6yhSJTUM7AZ3o',$,$,$,(#4747),#4748); -#4750=IFCMATERIALPROFILE($,$,#17,#4738,$,$); -#4751=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,76.,6.,$,$); -#4752=IFCBEAMTYPE('3zfUv2Hlv4DeXeQJPOe1aO',$,'150x76RHS60',$,$,$,$,$,$,$); -#4753=IFCMATERIALPROFILESET($,$,(#4755),$); -#4754=IFCRELASSOCIATESMATERIAL('2$Txo1HzvCDPSHmRfFXe6w',$,$,$,(#4752),#4753); -#4755=IFCMATERIALPROFILE($,$,#17,#4751,$,$); -#4756=IFCMEMBERTYPE('1X83TeWeDA2xvRfQ81drEa',$,'150x76RHS60',$,$,$,$,$,$,$); -#4757=IFCMATERIALPROFILESET($,$,(#4759),$); -#4758=IFCRELASSOCIATESMATERIAL('0Kkk9jUf9Eeh$c6KFwoeQf',$,$,$,(#4756),#4757); -#4759=IFCMATERIALPROFILE($,$,#17,#4751,$,$); -#4760=IFCCOLUMNTYPE('3GUKHv0m98RxhF8njoxOzh',$,'150x76RHS60',$,$,$,$,$,$,$); -#4761=IFCMATERIALPROFILESET($,$,(#4763),$); -#4762=IFCRELASSOCIATESMATERIAL('3tZTWyKzf1$h8jgfZArgy2',$,$,$,(#4760),#4761); -#4763=IFCMATERIALPROFILE($,$,#17,#4751,$,$); -#4764=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,100.,4.,$,$); -#4765=IFCBEAMTYPE('3IM8hV0AXCVRXNHCaPpzlA',$,'150x100RHS40',$,$,$,$,$,$,$); -#4766=IFCMATERIALPROFILESET($,$,(#4768),$); -#4767=IFCRELASSOCIATESMATERIAL('22wTw4$fPAtAit68Q7mcCq',$,$,$,(#4765),#4766); -#4768=IFCMATERIALPROFILE($,$,#17,#4764,$,$); -#4769=IFCMEMBERTYPE('0KyeXvBafEChECfWj8ZNPl',$,'150x100RHS40',$,$,$,$,$,$,$); -#4770=IFCMATERIALPROFILESET($,$,(#4772),$); -#4771=IFCRELASSOCIATESMATERIAL('0dASFRVPzFfP0W$j9a46UA',$,$,$,(#4769),#4770); -#4772=IFCMATERIALPROFILE($,$,#17,#4764,$,$); -#4773=IFCCOLUMNTYPE('1CH2U8sH97HvipUD7otX9o',$,'150x100RHS40',$,$,$,$,$,$,$); -#4774=IFCMATERIALPROFILESET($,$,(#4776),$); -#4775=IFCRELASSOCIATESMATERIAL('0OuyLSnHnEO8MNt1SbPMpO',$,$,$,(#4773),#4774); -#4776=IFCMATERIALPROFILE($,$,#17,#4764,$,$); -#4777=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,100.,5.,$,$); -#4778=IFCBEAMTYPE('33RbaaEp57x9IICWMoXamm',$,'150x100RHS50',$,$,$,$,$,$,$); -#4779=IFCMATERIALPROFILESET($,$,(#4781),$); -#4780=IFCRELASSOCIATESMATERIAL('2noEWWnfL4gxcrkWjComCK',$,$,$,(#4778),#4779); -#4781=IFCMATERIALPROFILE($,$,#17,#4777,$,$); -#4782=IFCMEMBERTYPE('3$$xr7X_jCluz0Tzgfa7mK',$,'150x100RHS50',$,$,$,$,$,$,$); -#4783=IFCMATERIALPROFILESET($,$,(#4785),$); -#4784=IFCRELASSOCIATESMATERIAL('0eVr7i7LHAkhKR1qSDuviN',$,$,$,(#4782),#4783); -#4785=IFCMATERIALPROFILE($,$,#17,#4777,$,$); -#4786=IFCCOLUMNTYPE('2ygpPIESXCGPKc6ku2NlA4',$,'150x100RHS50',$,$,$,$,$,$,$); -#4787=IFCMATERIALPROFILESET($,$,(#4789),$); -#4788=IFCRELASSOCIATESMATERIAL('3$nB$D7KT0QeeB6jy9GYbR',$,$,$,(#4786),#4787); -#4789=IFCMATERIALPROFILE($,$,#17,#4777,$,$); -#4790=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,100.,6.,$,$); -#4791=IFCBEAMTYPE('2TXsx1MML89edvknZALC0Q',$,'150x100RHS60',$,$,$,$,$,$,$); -#4792=IFCMATERIALPROFILESET($,$,(#4794),$); -#4793=IFCRELASSOCIATESMATERIAL('1APHtmKFTDcw10PxucJOJD',$,$,$,(#4791),#4792); -#4794=IFCMATERIALPROFILE($,$,#17,#4790,$,$); -#4795=IFCMEMBERTYPE('3KN87jXprDHemCsyTEtuc7',$,'150x100RHS60',$,$,$,$,$,$,$); -#4796=IFCMATERIALPROFILESET($,$,(#4798),$); -#4797=IFCRELASSOCIATESMATERIAL('1JFd$m$EL3gAVbLNhLQ6JS',$,$,$,(#4795),#4796); -#4798=IFCMATERIALPROFILE($,$,#17,#4790,$,$); -#4799=IFCCOLUMNTYPE('1AjSE$wL56eeRm2eAzgxfR',$,'150x100RHS60',$,$,$,$,$,$,$); -#4800=IFCMATERIALPROFILESET($,$,(#4802),$); -#4801=IFCRELASSOCIATESMATERIAL('2oZxk6qRXAFxIRhejrmXYn',$,$,$,(#4799),#4800); -#4802=IFCMATERIALPROFILE($,$,#17,#4790,$,$); -#4803=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,100.,8.,$,$); -#4804=IFCBEAMTYPE('34vvh6Cc5Cyh3d$QypZAGg',$,'150x100RHS80',$,$,$,$,$,$,$); -#4805=IFCMATERIALPROFILESET($,$,(#4807),$); -#4806=IFCRELASSOCIATESMATERIAL('0_v3iuahzDXxvtTu3SLCjq',$,$,$,(#4804),#4805); -#4807=IFCMATERIALPROFILE($,$,#17,#4803,$,$); -#4808=IFCMEMBERTYPE('1m_rAypHHFbfaGy3dMZNjF',$,'150x100RHS80',$,$,$,$,$,$,$); -#4809=IFCMATERIALPROFILESET($,$,(#4811),$); -#4810=IFCRELASSOCIATESMATERIAL('1KGYxK75T8cf562Nl6Hgno',$,$,$,(#4808),#4809); -#4811=IFCMATERIALPROFILE($,$,#17,#4803,$,$); -#4812=IFCCOLUMNTYPE('2BoHOSL$92gfM9zIO2oHE2',$,'150x100RHS80',$,$,$,$,$,$,$); -#4813=IFCMATERIALPROFILESET($,$,(#4815),$); -#4814=IFCRELASSOCIATESMATERIAL('0hjiQ6sq5DofR_JXcHlZ_P',$,$,$,(#4812),#4813); -#4815=IFCMATERIALPROFILE($,$,#17,#4803,$,$); -#4816=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,100.,9.,$,$); -#4817=IFCBEAMTYPE('1kg5XaAvDFjveRjAjbuzwY',$,'150x100RHS90',$,$,$,$,$,$,$); -#4818=IFCMATERIALPROFILESET($,$,(#4820),$); -#4819=IFCRELASSOCIATESMATERIAL('0FosBpyZP3tw4OHkD0KFw3',$,$,$,(#4817),#4818); -#4820=IFCMATERIALPROFILE($,$,#17,#4816,$,$); -#4821=IFCMEMBERTYPE('2frfD8E3z2MwKI2aRNTzf6',$,'150x100RHS90',$,$,$,$,$,$,$); -#4822=IFCMATERIALPROFILESET($,$,(#4824),$); -#4823=IFCRELASSOCIATESMATERIAL('3A3iutNtD8DhLiDQwZZbaw',$,$,$,(#4821),#4822); -#4824=IFCMATERIALPROFILE($,$,#17,#4816,$,$); -#4825=IFCCOLUMNTYPE('3ZzWs9IIT0Ph4JmoF9du9H',$,'150x100RHS90',$,$,$,$,$,$,$); -#4826=IFCMATERIALPROFILESET($,$,(#4828),$); -#4827=IFCRELASSOCIATESMATERIAL('1T0WI0LEDFmRWn8l6ZTjxi',$,$,$,(#4825),#4826); -#4828=IFCMATERIALPROFILE($,$,#17,#4816,$,$); -#4829=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,100.,10.,$,$); -#4830=IFCBEAMTYPE('0UAElQK997bw3sMs_jfnZq',$,'150x100RHS100',$,$,$,$,$,$,$); -#4831=IFCMATERIALPROFILESET($,$,(#4833),$); -#4832=IFCRELASSOCIATESMATERIAL('3CrsvbiXTADuojY9EMkO7X',$,$,$,(#4830),#4831); -#4833=IFCMATERIALPROFILE($,$,#17,#4829,$,$); -#4834=IFCMEMBERTYPE('3ilG04Z_T1sBorJ3vIbXXe',$,'150x100RHS100',$,$,$,$,$,$,$); -#4835=IFCMATERIALPROFILESET($,$,(#4837),$); -#4836=IFCRELASSOCIATESMATERIAL('3wdhmz8fH82RBp2OxAY_IN',$,$,$,(#4834),#4835); -#4837=IFCMATERIALPROFILE($,$,#17,#4829,$,$); -#4838=IFCCOLUMNTYPE('2ZKWyqlSrFq9pfyyhaGVrj',$,'150x100RHS100',$,$,$,$,$,$,$); -#4839=IFCMATERIALPROFILESET($,$,(#4841),$); -#4840=IFCRELASSOCIATESMATERIAL('1OSYDDmOv9QRjNE1YsxPB8',$,$,$,(#4838),#4839); -#4841=IFCMATERIALPROFILE($,$,#17,#4829,$,$); -#4842=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,100.,4.,$,$); -#4843=IFCBEAMTYPE('3KZSSb4QvBOQfI9SGQA_cc',$,'200x100RHS40',$,$,$,$,$,$,$); -#4844=IFCMATERIALPROFILESET($,$,(#4846),$); -#4845=IFCRELASSOCIATESMATERIAL('1GGREQXp54K8Ji0GEFLMtZ',$,$,$,(#4843),#4844); -#4846=IFCMATERIALPROFILE($,$,#17,#4842,$,$); -#4847=IFCMEMBERTYPE('3yNrFoSqP4XPSmtwz4FEuk',$,'200x100RHS40',$,$,$,$,$,$,$); -#4848=IFCMATERIALPROFILESET($,$,(#4850),$); -#4849=IFCRELASSOCIATESMATERIAL('1XR64uEpD60uHqUji_7sRq',$,$,$,(#4847),#4848); -#4850=IFCMATERIALPROFILE($,$,#17,#4842,$,$); -#4851=IFCCOLUMNTYPE('1zamo9AF96u8kPvQ5odOvv',$,'200x100RHS40',$,$,$,$,$,$,$); -#4852=IFCMATERIALPROFILESET($,$,(#4854),$); -#4853=IFCRELASSOCIATESMATERIAL('1nBi5Y3Tz73e0kHGM1qgxs',$,$,$,(#4851),#4852); -#4854=IFCMATERIALPROFILE($,$,#17,#4842,$,$); -#4855=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,100.,5.,$,$); -#4856=IFCBEAMTYPE('1OmeopkdTFGgBG8pQ2LApA',$,'200x100RHS50',$,$,$,$,$,$,$); -#4857=IFCMATERIALPROFILESET($,$,(#4859),$); -#4858=IFCRELASSOCIATESMATERIAL('3xgN_vHoX0i8EzKiZFY$OR',$,$,$,(#4856),#4857); -#4859=IFCMATERIALPROFILE($,$,#17,#4855,$,$); -#4860=IFCMEMBERTYPE('0EnOMCmMP7xPbF7dEKJ$xb',$,'200x100RHS50',$,$,$,$,$,$,$); -#4861=IFCMATERIALPROFILESET($,$,(#4863),$); -#4862=IFCRELASSOCIATESMATERIAL('1VvzEgsB52twjUgl7XRcdq',$,$,$,(#4860),#4861); -#4863=IFCMATERIALPROFILE($,$,#17,#4855,$,$); -#4864=IFCCOLUMNTYPE('0rGiLKTXDADOX$7EA1rSQ7',$,'200x100RHS50',$,$,$,$,$,$,$); -#4865=IFCMATERIALPROFILESET($,$,(#4867),$); -#4866=IFCRELASSOCIATESMATERIAL('15LHaxyEH3zfbwZNGWOqp7',$,$,$,(#4864),#4865); -#4867=IFCMATERIALPROFILE($,$,#17,#4855,$,$); -#4868=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,100.,6.,$,$); -#4869=IFCBEAMTYPE('1167GX8krCW8KBzUIkqyQk',$,'200x100RHS60',$,$,$,$,$,$,$); -#4870=IFCMATERIALPROFILESET($,$,(#4872),$); -#4871=IFCRELASSOCIATESMATERIAL('2wgGZYQln6SuN28fGSiRj4',$,$,$,(#4869),#4870); -#4872=IFCMATERIALPROFILE($,$,#17,#4868,$,$); -#4873=IFCMEMBERTYPE('0tGUr6Zmr9_ANQcZPONEjY',$,'200x100RHS60',$,$,$,$,$,$,$); -#4874=IFCMATERIALPROFILESET($,$,(#4876),$); -#4875=IFCRELASSOCIATESMATERIAL('388jL0MubDfuyzLcuMfrNd',$,$,$,(#4873),#4874); -#4876=IFCMATERIALPROFILE($,$,#17,#4868,$,$); -#4877=IFCCOLUMNTYPE('1wu_5YXej4HufUtEL2X64c',$,'200x100RHS60',$,$,$,$,$,$,$); -#4878=IFCMATERIALPROFILESET($,$,(#4880),$); -#4879=IFCRELASSOCIATESMATERIAL('3eKhR4Eof8QQ1uWLz3Hw46',$,$,$,(#4877),#4878); -#4880=IFCMATERIALPROFILE($,$,#17,#4868,$,$); -#4881=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,100.,8.,$,$); -#4882=IFCBEAMTYPE('3DwRDqAYj1yBvNdo4RSJD$',$,'200x100RHS80',$,$,$,$,$,$,$); -#4883=IFCMATERIALPROFILESET($,$,(#4885),$); -#4884=IFCRELASSOCIATESMATERIAL('0ZCUkw2UL5vgWVAkSUqdi1',$,$,$,(#4882),#4883); -#4885=IFCMATERIALPROFILE($,$,#17,#4881,$,$); -#4886=IFCMEMBERTYPE('3NYnnt54P6YBNd3qs0NDWv',$,'200x100RHS80',$,$,$,$,$,$,$); -#4887=IFCMATERIALPROFILESET($,$,(#4889),$); -#4888=IFCRELASSOCIATESMATERIAL('17qaA4KsX1oOyhAm6MuLVH',$,$,$,(#4886),#4887); -#4889=IFCMATERIALPROFILE($,$,#17,#4881,$,$); -#4890=IFCCOLUMNTYPE('2whd_u3zzBQPSo6qGCRy2d',$,'200x100RHS80',$,$,$,$,$,$,$); -#4891=IFCMATERIALPROFILESET($,$,(#4893),$); -#4892=IFCRELASSOCIATESMATERIAL('1wMTV6EQT0ce2zaM57Z1fO',$,$,$,(#4890),#4891); -#4893=IFCMATERIALPROFILE($,$,#17,#4881,$,$); -#4894=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,100.,9.,$,$); -#4895=IFCBEAMTYPE('3$RvLEk7z4ih1dc5t_PQmS',$,'200x100RHS90',$,$,$,$,$,$,$); -#4896=IFCMATERIALPROFILESET($,$,(#4898),$); -#4897=IFCRELASSOCIATESMATERIAL('0pNvoaMLvAtg0mFdzs6cds',$,$,$,(#4895),#4896); -#4898=IFCMATERIALPROFILE($,$,#17,#4894,$,$); -#4899=IFCMEMBERTYPE('1pC8$tZm17V9zSLHE5MVQo',$,'200x100RHS90',$,$,$,$,$,$,$); -#4900=IFCMATERIALPROFILESET($,$,(#4902),$); -#4901=IFCRELASSOCIATESMATERIAL('1_eL0G1hz2R8jVVjvvBByc',$,$,$,(#4899),#4900); -#4902=IFCMATERIALPROFILE($,$,#17,#4894,$,$); -#4903=IFCCOLUMNTYPE('2jxMftzRv4EgmUli736J$8',$,'200x100RHS90',$,$,$,$,$,$,$); -#4904=IFCMATERIALPROFILESET($,$,(#4906),$); -#4905=IFCRELASSOCIATESMATERIAL('2hfSF25Zf4ov2SQ138quRA',$,$,$,(#4903),#4904); -#4906=IFCMATERIALPROFILE($,$,#17,#4894,$,$); -#4907=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,100.,10.,$,$); -#4908=IFCBEAMTYPE('2yCRuhyJnF0R8FGEfn57fh',$,'200x100RHS100',$,$,$,$,$,$,$); -#4909=IFCMATERIALPROFILESET($,$,(#4911),$); -#4910=IFCRELASSOCIATESMATERIAL('1$nnhNaTn2VhQkcPCdUGqm',$,$,$,(#4908),#4909); -#4911=IFCMATERIALPROFILE($,$,#17,#4907,$,$); -#4912=IFCMEMBERTYPE('0tZYzdv6TFXBGfa3ZGJtxr',$,'200x100RHS100',$,$,$,$,$,$,$); -#4913=IFCMATERIALPROFILESET($,$,(#4915),$); -#4914=IFCRELASSOCIATESMATERIAL('0BXgFFva94bu2p1RsPPVV_',$,$,$,(#4912),#4913); -#4915=IFCMATERIALPROFILE($,$,#17,#4907,$,$); -#4916=IFCCOLUMNTYPE('34niLfQtLAMOagr7U_wM8a',$,'200x100RHS100',$,$,$,$,$,$,$); -#4917=IFCMATERIALPROFILESET($,$,(#4919),$); -#4918=IFCRELASSOCIATESMATERIAL('0iA_2qs3X2RvJPIEA2QrrE',$,$,$,(#4916),#4917); -#4919=IFCMATERIALPROFILE($,$,#17,#4907,$,$); -#4920=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,5.,$,$); -#4921=IFCBEAMTYPE('1mJC4jACb5gvfzm_LP3M5W',$,'250x150RHS50',$,$,$,$,$,$,$); -#4922=IFCMATERIALPROFILESET($,$,(#4924),$); -#4923=IFCRELASSOCIATESMATERIAL('26FKv$XwrA4hJv7y2Gvg9h',$,$,$,(#4921),#4922); -#4924=IFCMATERIALPROFILE($,$,#17,#4920,$,$); -#4925=IFCMEMBERTYPE('32uL5hkJrDEQH4FlTtniUN',$,'250x150RHS50',$,$,$,$,$,$,$); -#4926=IFCMATERIALPROFILESET($,$,(#4928),$); -#4927=IFCRELASSOCIATESMATERIAL('1aGiFC$G9ER8sqEaD1_lTF',$,$,$,(#4925),#4926); -#4928=IFCMATERIALPROFILE($,$,#17,#4920,$,$); -#4929=IFCCOLUMNTYPE('3YJcS4PdT70gw3mVZdOWIT',$,'250x150RHS50',$,$,$,$,$,$,$); -#4930=IFCMATERIALPROFILESET($,$,(#4932),$); -#4931=IFCRELASSOCIATESMATERIAL('0znqDUJp9D0OoAeV861Ejk',$,$,$,(#4929),#4930); -#4932=IFCMATERIALPROFILE($,$,#17,#4920,$,$); -#4933=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,6.,$,$); -#4934=IFCBEAMTYPE('29hsVdv7X2pR7zOecZp$SG',$,'250x150RHS60',$,$,$,$,$,$,$); -#4935=IFCMATERIALPROFILESET($,$,(#4937),$); -#4936=IFCRELASSOCIATESMATERIAL('16GRy3vCP2_xlBJXNuevnz',$,$,$,(#4934),#4935); -#4937=IFCMATERIALPROFILE($,$,#17,#4933,$,$); -#4938=IFCMEMBERTYPE('3y9LSil493BOriSbQpN9jc',$,'250x150RHS60',$,$,$,$,$,$,$); -#4939=IFCMATERIALPROFILESET($,$,(#4941),$); -#4940=IFCRELASSOCIATESMATERIAL('3k7_7SqQ93IhCtH4zVxuTS',$,$,$,(#4938),#4939); -#4941=IFCMATERIALPROFILE($,$,#17,#4933,$,$); -#4942=IFCCOLUMNTYPE('3K7bAVMBbC1RIDsPA26nTY',$,'250x150RHS60',$,$,$,$,$,$,$); -#4943=IFCMATERIALPROFILESET($,$,(#4945),$); -#4944=IFCRELASSOCIATESMATERIAL('0Bvwstl9DF5h9bU2Tsbr5j',$,$,$,(#4942),#4943); -#4945=IFCMATERIALPROFILE($,$,#17,#4933,$,$); -#4946=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,8.,$,$); -#4947=IFCBEAMTYPE('14LMbO23X9wePPF29IK$pQ',$,'250x150RHS80',$,$,$,$,$,$,$); -#4948=IFCMATERIALPROFILESET($,$,(#4950),$); -#4949=IFCRELASSOCIATESMATERIAL('1RWVmoqdzDxxx5bKC0YgTB',$,$,$,(#4947),#4948); -#4950=IFCMATERIALPROFILE($,$,#17,#4946,$,$); -#4951=IFCMEMBERTYPE('0kzgwyTv12mg5wsNflSpjm',$,'250x150RHS80',$,$,$,$,$,$,$); -#4952=IFCMATERIALPROFILESET($,$,(#4954),$); -#4953=IFCRELASSOCIATESMATERIAL('1ZTG25aOn6Ug86dvEqcIYQ',$,$,$,(#4951),#4952); -#4954=IFCMATERIALPROFILE($,$,#17,#4946,$,$); -#4955=IFCCOLUMNTYPE('2DUzDii3j4RBuG57fH$Xn1',$,'250x150RHS80',$,$,$,$,$,$,$); -#4956=IFCMATERIALPROFILESET($,$,(#4958),$); -#4957=IFCRELASSOCIATESMATERIAL('1zh6HtbF96JQjnzIGfV4Vo',$,$,$,(#4955),#4956); -#4958=IFCMATERIALPROFILE($,$,#17,#4946,$,$); -#4959=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,9.,$,$); -#4960=IFCBEAMTYPE('1dS3Y9$Uv9MuTTvRo_X4TK',$,'250x150RHS90',$,$,$,$,$,$,$); -#4961=IFCMATERIALPROFILESET($,$,(#4963),$); -#4962=IFCRELASSOCIATESMATERIAL('1OmR9kYwv5HfDJN2AZXreb',$,$,$,(#4960),#4961); -#4963=IFCMATERIALPROFILE($,$,#17,#4959,$,$); -#4964=IFCMEMBERTYPE('3rUlo8kwr4VB0v5g1Kx3aW',$,'250x150RHS90',$,$,$,$,$,$,$); -#4965=IFCMATERIALPROFILESET($,$,(#4967),$); -#4966=IFCRELASSOCIATESMATERIAL('0FSgzVoyn3ZgnphWCKPz8O',$,$,$,(#4964),#4965); -#4967=IFCMATERIALPROFILE($,$,#17,#4959,$,$); -#4968=IFCCOLUMNTYPE('2UUiSDdx1FOwep2M$6K7a_',$,'250x150RHS90',$,$,$,$,$,$,$); -#4969=IFCMATERIALPROFILESET($,$,(#4971),$); -#4970=IFCRELASSOCIATESMATERIAL('2acuoVxZL3uPF9A4jEroC7',$,$,$,(#4968),#4969); -#4971=IFCMATERIALPROFILE($,$,#17,#4959,$,$); -#4972=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,10.,$,$); -#4973=IFCBEAMTYPE('07Vkf_dMT7$AodpeY5ux9Z',$,'250x150RHS100',$,$,$,$,$,$,$); -#4974=IFCMATERIALPROFILESET($,$,(#4976),$); -#4975=IFCRELASSOCIATESMATERIAL('3GVedq_abCsAOGOljNgOWv',$,$,$,(#4973),#4974); -#4976=IFCMATERIALPROFILE($,$,#17,#4972,$,$); -#4977=IFCMEMBERTYPE('20qBJLZh92EREpLdyH1rb1',$,'250x150RHS100',$,$,$,$,$,$,$); -#4978=IFCMATERIALPROFILESET($,$,(#4980),$); -#4979=IFCRELASSOCIATESMATERIAL('2z0B5au290V82L2tTNUHJG',$,$,$,(#4977),#4978); -#4980=IFCMATERIALPROFILE($,$,#17,#4972,$,$); -#4981=IFCCOLUMNTYPE('0UZ3_CDc52Y8c6JBv1uWWt',$,'250x150RHS100',$,$,$,$,$,$,$); -#4982=IFCMATERIALPROFILESET($,$,(#4984),$); -#4983=IFCRELASSOCIATESMATERIAL('0VkZmVoT5EggXdYre1kJYB',$,$,$,(#4981),#4982); -#4984=IFCMATERIALPROFILE($,$,#17,#4972,$,$); -#4985=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,12.5,$,$); -#4986=IFCBEAMTYPE('3SgbOO47T5pwo3oEk2I7dy',$,'250x150RHS125',$,$,$,$,$,$,$); -#4987=IFCMATERIALPROFILESET($,$,(#4989),$); -#4988=IFCRELASSOCIATESMATERIAL('1uZkx8tmH7FhR1hkA02eS5',$,$,$,(#4986),#4987); -#4989=IFCMATERIALPROFILE($,$,#17,#4985,$,$); -#4990=IFCMEMBERTYPE('0J399mv012URhq1ZCufeQK',$,'250x150RHS125',$,$,$,$,$,$,$); -#4991=IFCMATERIALPROFILESET($,$,(#4993),$); -#4992=IFCRELASSOCIATESMATERIAL('3PFbpZl7T9J8iuKSH9pNFP',$,$,$,(#4990),#4991); -#4993=IFCMATERIALPROFILE($,$,#17,#4985,$,$); -#4994=IFCCOLUMNTYPE('2tmlA18pv3ufNWWdiCMESR',$,'250x150RHS125',$,$,$,$,$,$,$); -#4995=IFCMATERIALPROFILESET($,$,(#4997),$); -#4996=IFCRELASSOCIATESMATERIAL('0_otAjtqb9Nx5h24LgCWRw',$,$,$,(#4994),#4995); -#4997=IFCMATERIALPROFILE($,$,#17,#4985,$,$); -#4998=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,150.,16.,$,$); -#4999=IFCBEAMTYPE('2V6h_dWfDEOPFEqEZLKcmR',$,'250x150RHS160',$,$,$,$,$,$,$); -#5000=IFCMATERIALPROFILESET($,$,(#5002),$); -#5001=IFCRELASSOCIATESMATERIAL('1NWhNmug17_P5gMzSd0Zui',$,$,$,(#4999),#5000); -#5002=IFCMATERIALPROFILE($,$,#17,#4998,$,$); -#5003=IFCMEMBERTYPE('2bwwvF_xv2Q8WPmMkq0UL$',$,'250x150RHS160',$,$,$,$,$,$,$); -#5004=IFCMATERIALPROFILESET($,$,(#5006),$); -#5005=IFCRELASSOCIATESMATERIAL('0yTLPKc3X1zhPksUiGztAD',$,$,$,(#5003),#5004); -#5006=IFCMATERIALPROFILE($,$,#17,#4998,$,$); -#5007=IFCCOLUMNTYPE('1yVIVY0Lz5PQ1ygI2yAEA_',$,'250x150RHS160',$,$,$,$,$,$,$); -#5008=IFCMATERIALPROFILESET($,$,(#5010),$); -#5009=IFCRELASSOCIATESMATERIAL('26efkoC996pghMrSY7tczQ',$,$,$,(#5007),#5008); -#5010=IFCMATERIALPROFILE($,$,#17,#4998,$,$); -#5011=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,200.,6.,$,$); -#5012=IFCBEAMTYPE('0A81WX_gfEHe3ePJ63g_Wx',$,'300x200RHS60',$,$,$,$,$,$,$); -#5013=IFCMATERIALPROFILESET($,$,(#5015),$); -#5014=IFCRELASSOCIATESMATERIAL('2Fe7iPDcDCFvPNBETlg8hj',$,$,$,(#5012),#5013); -#5015=IFCMATERIALPROFILE($,$,#17,#5011,$,$); -#5016=IFCMEMBERTYPE('280YXnuEf2nQfVhtuFHQLl',$,'300x200RHS60',$,$,$,$,$,$,$); -#5017=IFCMATERIALPROFILESET($,$,(#5019),$); -#5018=IFCRELASSOCIATESMATERIAL('04JkKnifv0iwXP9ooiiyHo',$,$,$,(#5016),#5017); -#5019=IFCMATERIALPROFILE($,$,#17,#5011,$,$); -#5020=IFCCOLUMNTYPE('2nADrqUpj3vhkmVAox_MRP',$,'300x200RHS60',$,$,$,$,$,$,$); -#5021=IFCMATERIALPROFILESET($,$,(#5023),$); -#5022=IFCRELASSOCIATESMATERIAL('2uiGdYxX1C5e4jbrv3HlcH',$,$,$,(#5020),#5021); -#5023=IFCMATERIALPROFILE($,$,#17,#5011,$,$); -#5024=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,200.,8.,$,$); -#5025=IFCBEAMTYPE('2bRpy76OjAoQx60Kriiusc',$,'300x200RHS80',$,$,$,$,$,$,$); -#5026=IFCMATERIALPROFILESET($,$,(#5028),$); -#5027=IFCRELASSOCIATESMATERIAL('2mEYSPDtz6aO83AgC8Seu6',$,$,$,(#5025),#5026); -#5028=IFCMATERIALPROFILE($,$,#17,#5024,$,$); -#5029=IFCMEMBERTYPE('3gWL0bC6X2RR03FCCEv5Qz',$,'300x200RHS80',$,$,$,$,$,$,$); -#5030=IFCMATERIALPROFILESET($,$,(#5032),$); -#5031=IFCRELASSOCIATESMATERIAL('3Bg6qn6jnAjBR13XihEwPx',$,$,$,(#5029),#5030); -#5032=IFCMATERIALPROFILE($,$,#17,#5024,$,$); -#5033=IFCCOLUMNTYPE('1o3HSeGXX4GQXVQ4WEJgQa',$,'300x200RHS80',$,$,$,$,$,$,$); -#5034=IFCMATERIALPROFILESET($,$,(#5036),$); -#5035=IFCRELASSOCIATESMATERIAL('3ORQjZeU50avNrOUtSrzRK',$,$,$,(#5033),#5034); -#5036=IFCMATERIALPROFILE($,$,#17,#5024,$,$); -#5037=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,200.,9.,$,$); -#5038=IFCBEAMTYPE('2PPqobF9z7hO73zevnwRCF',$,'300x200RHS90',$,$,$,$,$,$,$); -#5039=IFCMATERIALPROFILESET($,$,(#5041),$); -#5040=IFCRELASSOCIATESMATERIAL('3Cwotcr2P1$htleFWIV9n4',$,$,$,(#5038),#5039); -#5041=IFCMATERIALPROFILE($,$,#17,#5037,$,$); -#5042=IFCMEMBERTYPE('1F8vN$LpX0lQ0P8EY2cbjf',$,'300x200RHS90',$,$,$,$,$,$,$); -#5043=IFCMATERIALPROFILESET($,$,(#5045),$); -#5044=IFCRELASSOCIATESMATERIAL('1r7jka2_L3dPjbwRPU8u0d',$,$,$,(#5042),#5043); -#5045=IFCMATERIALPROFILE($,$,#17,#5037,$,$); -#5046=IFCCOLUMNTYPE('33OoQDwD9B$hocFS6DOJOw',$,'300x200RHS90',$,$,$,$,$,$,$); -#5047=IFCMATERIALPROFILESET($,$,(#5049),$); -#5048=IFCRELASSOCIATESMATERIAL('3_PhO98yL9AfJwwJu659R$',$,$,$,(#5046),#5047); -#5049=IFCMATERIALPROFILE($,$,#17,#5037,$,$); -#5050=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,200.,10.,$,$); -#5051=IFCBEAMTYPE('15Uh4OxzP3w9xa2HsvGxba',$,'300x200RHS100',$,$,$,$,$,$,$); -#5052=IFCMATERIALPROFILESET($,$,(#5054),$); -#5053=IFCRELASSOCIATESMATERIAL('007Y1VnAP0MuaIW_sFrC4p',$,$,$,(#5051),#5052); -#5054=IFCMATERIALPROFILE($,$,#17,#5050,$,$); -#5055=IFCMEMBERTYPE('1oENyMDSn1mA65GTBx3mKs',$,'300x200RHS100',$,$,$,$,$,$,$); -#5056=IFCMATERIALPROFILESET($,$,(#5058),$); -#5057=IFCRELASSOCIATESMATERIAL('09izkOj0b8CBysx2NyhwW4',$,$,$,(#5055),#5056); -#5058=IFCMATERIALPROFILE($,$,#17,#5050,$,$); -#5059=IFCCOLUMNTYPE('2HiJAZoj50Y85z28iJGVsp',$,'300x200RHS100',$,$,$,$,$,$,$); -#5060=IFCMATERIALPROFILESET($,$,(#5062),$); -#5061=IFCRELASSOCIATESMATERIAL('0lMdUddaT9yAGC1YJz1KaA',$,$,$,(#5059),#5060); -#5062=IFCMATERIALPROFILE($,$,#17,#5050,$,$); -#5063=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,200.,12.5,$,$); -#5064=IFCBEAMTYPE('3eoZjCDRL7Tw3CZrNKN5ML',$,'300x200RHS125',$,$,$,$,$,$,$); -#5065=IFCMATERIALPROFILESET($,$,(#5067),$); -#5066=IFCRELASSOCIATESMATERIAL('1y44Z14497i9DEeF5L5QOH',$,$,$,(#5064),#5065); -#5067=IFCMATERIALPROFILE($,$,#17,#5063,$,$); -#5068=IFCMEMBERTYPE('3g_IRoLxvFuus4gbKnOo$A',$,'300x200RHS125',$,$,$,$,$,$,$); -#5069=IFCMATERIALPROFILESET($,$,(#5071),$); -#5070=IFCRELASSOCIATESMATERIAL('18qkoG6G93Phii8puXkRlo',$,$,$,(#5068),#5069); -#5071=IFCMATERIALPROFILE($,$,#17,#5063,$,$); -#5072=IFCCOLUMNTYPE('1xpFoIsW9AHRhAezgASDX6',$,'300x200RHS125',$,$,$,$,$,$,$); -#5073=IFCMATERIALPROFILESET($,$,(#5075),$); -#5074=IFCRELASSOCIATESMATERIAL('0EXS$1HHPD1xhXDMiNjPyo',$,$,$,(#5072),#5073); -#5075=IFCMATERIALPROFILE($,$,#17,#5063,$,$); -#5076=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,200.,16.,$,$); -#5077=IFCBEAMTYPE('3s79HjES95sexQJMdE0JSm',$,'300x200RHS160',$,$,$,$,$,$,$); -#5078=IFCMATERIALPROFILESET($,$,(#5080),$); -#5079=IFCRELASSOCIATESMATERIAL('1GUxAyJyP6N8Bi1rzZ$Xyk',$,$,$,(#5077),#5078); -#5080=IFCMATERIALPROFILE($,$,#17,#5076,$,$); -#5081=IFCMEMBERTYPE('35DwV_ZYvB2PzJ3Rw71rq4',$,'300x200RHS160',$,$,$,$,$,$,$); -#5082=IFCMATERIALPROFILESET($,$,(#5084),$); -#5083=IFCRELASSOCIATESMATERIAL('2pN34KZ9L7FRFf7Af9tnRP',$,$,$,(#5081),#5082); -#5084=IFCMATERIALPROFILE($,$,#17,#5076,$,$); -#5085=IFCCOLUMNTYPE('0nv4e_Mj987QV3Vda2Ht9C',$,'300x200RHS160',$,$,$,$,$,$,$); -#5086=IFCMATERIALPROFILESET($,$,(#5088),$); -#5087=IFCRELASSOCIATESMATERIAL('18tyar$Rn3uuF6QsdwEoub',$,$,$,(#5085),#5086); -#5088=IFCMATERIALPROFILE($,$,#17,#5076,$,$); -#5089=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,250.,6.,$,$); -#5090=IFCBEAMTYPE('2LlmmgaqnFkA$1EN3cZQhL',$,'350x250RHS60',$,$,$,$,$,$,$); -#5091=IFCMATERIALPROFILESET($,$,(#5093),$); -#5092=IFCRELASSOCIATESMATERIAL('1j8LVfLVL1IPBamyFTLjAW',$,$,$,(#5090),#5091); -#5093=IFCMATERIALPROFILE($,$,#17,#5089,$,$); -#5094=IFCMEMBERTYPE('2aCMozJin4jgGpb2HR4mGC',$,'350x250RHS60',$,$,$,$,$,$,$); -#5095=IFCMATERIALPROFILESET($,$,(#5097),$); -#5096=IFCRELASSOCIATESMATERIAL('0kNSkVqHbEHxfZK32EG4st',$,$,$,(#5094),#5095); -#5097=IFCMATERIALPROFILE($,$,#17,#5089,$,$); -#5098=IFCCOLUMNTYPE('03XWrPzmvEzuMm24icRyZd',$,'350x250RHS60',$,$,$,$,$,$,$); -#5099=IFCMATERIALPROFILESET($,$,(#5101),$); -#5100=IFCRELASSOCIATESMATERIAL('1fgT2U$A12YvkTElJ2$xLm',$,$,$,(#5098),#5099); -#5101=IFCMATERIALPROFILE($,$,#17,#5089,$,$); -#5102=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,250.,8.,$,$); -#5103=IFCBEAMTYPE('3_qcTGc_L33O0nEof9_OMG',$,'350x250RHS80',$,$,$,$,$,$,$); -#5104=IFCMATERIALPROFILESET($,$,(#5106),$); -#5105=IFCRELASSOCIATESMATERIAL('0Tw$fV4m9CwgQCUyoBanKV',$,$,$,(#5103),#5104); -#5106=IFCMATERIALPROFILE($,$,#17,#5102,$,$); -#5107=IFCMEMBERTYPE('26XRLBVgrAOO7BUU7Muogj',$,'350x250RHS80',$,$,$,$,$,$,$); -#5108=IFCMATERIALPROFILESET($,$,(#5110),$); -#5109=IFCRELASSOCIATESMATERIAL('2K0kVU8jv88Au7OysqICAH',$,$,$,(#5107),#5108); -#5110=IFCMATERIALPROFILE($,$,#17,#5102,$,$); -#5111=IFCCOLUMNTYPE('3xoCFHENXBdRutXq8PlzMv',$,'350x250RHS80',$,$,$,$,$,$,$); -#5112=IFCMATERIALPROFILESET($,$,(#5114),$); -#5113=IFCRELASSOCIATESMATERIAL('3aJtxrrLz2fvenCSq9kC2T',$,$,$,(#5111),#5112); -#5114=IFCMATERIALPROFILE($,$,#17,#5102,$,$); -#5115=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,250.,10.,$,$); -#5116=IFCBEAMTYPE('16wUG2E4b6JxHVLZt_747S',$,'350x250RHS100',$,$,$,$,$,$,$); -#5117=IFCMATERIALPROFILESET($,$,(#5119),$); -#5118=IFCRELASSOCIATESMATERIAL('3rRVCJ6HHD1BxooqkxRELl',$,$,$,(#5116),#5117); -#5119=IFCMATERIALPROFILE($,$,#17,#5115,$,$); -#5120=IFCMEMBERTYPE('1jM$fYOhHCRx41mNeLyMhU',$,'350x250RHS100',$,$,$,$,$,$,$); -#5121=IFCMATERIALPROFILESET($,$,(#5123),$); -#5122=IFCRELASSOCIATESMATERIAL('3PJ99PyADF1xf8X1Vh08wM',$,$,$,(#5120),#5121); -#5123=IFCMATERIALPROFILE($,$,#17,#5115,$,$); -#5124=IFCCOLUMNTYPE('1FokO19Fb1MwkoX5Ad3yIv',$,'350x250RHS100',$,$,$,$,$,$,$); -#5125=IFCMATERIALPROFILESET($,$,(#5127),$); -#5126=IFCRELASSOCIATESMATERIAL('2DM8p_VKr1AOcxomjMjSdS',$,$,$,(#5124),#5125); -#5127=IFCMATERIALPROFILE($,$,#17,#5115,$,$); -#5128=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,250.,12.5,$,$); -#5129=IFCBEAMTYPE('2l2ibplq10vQ1697VQ$AmR',$,'350x250RHS125',$,$,$,$,$,$,$); -#5130=IFCMATERIALPROFILESET($,$,(#5132),$); -#5131=IFCRELASSOCIATESMATERIAL('0Jtgxu5fDCihhKlc_PGlsR',$,$,$,(#5129),#5130); -#5132=IFCMATERIALPROFILE($,$,#17,#5128,$,$); -#5133=IFCMEMBERTYPE('2ANgRd8$1AWR4r14NA0Yly',$,'350x250RHS125',$,$,$,$,$,$,$); -#5134=IFCMATERIALPROFILESET($,$,(#5136),$); -#5135=IFCRELASSOCIATESMATERIAL('0HR3elTsD2bgxiJK$mZQy0',$,$,$,(#5133),#5134); -#5136=IFCMATERIALPROFILE($,$,#17,#5128,$,$); -#5137=IFCCOLUMNTYPE('3VT4uI5az5GPndHctyTFxc',$,'350x250RHS125',$,$,$,$,$,$,$); -#5138=IFCMATERIALPROFILESET($,$,(#5140),$); -#5139=IFCRELASSOCIATESMATERIAL('2EOyJdWj15dQCkg4Pq8br6',$,$,$,(#5137),#5138); -#5140=IFCMATERIALPROFILE($,$,#17,#5128,$,$); -#5141=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,250.,16.,$,$); -#5142=IFCBEAMTYPE('3MY9AW_in1cg4NtJxfVCx5',$,'350x250RHS160',$,$,$,$,$,$,$); -#5143=IFCMATERIALPROFILESET($,$,(#5145),$); -#5144=IFCRELASSOCIATESMATERIAL('3PSEvgAfH3nebK0IrJChgd',$,$,$,(#5142),#5143); -#5145=IFCMATERIALPROFILE($,$,#17,#5141,$,$); -#5146=IFCMEMBERTYPE('3vpYa_iY5Ey8YMWaDvMkA$',$,'350x250RHS160',$,$,$,$,$,$,$); -#5147=IFCMATERIALPROFILESET($,$,(#5149),$); -#5148=IFCRELASSOCIATESMATERIAL('0dCX9nhu9E39M8Dx9Ep4sv',$,$,$,(#5146),#5147); -#5149=IFCMATERIALPROFILE($,$,#17,#5141,$,$); -#5150=IFCCOLUMNTYPE('2Xm5wi68T1dQZUBhfwuRgN',$,'350x250RHS160',$,$,$,$,$,$,$); -#5151=IFCMATERIALPROFILESET($,$,(#5153),$); -#5152=IFCRELASSOCIATESMATERIAL('0HcabhsIH5Oe3crr9RCVqX',$,$,$,(#5150),#5151); -#5153=IFCMATERIALPROFILE($,$,#17,#5141,$,$); -#5154=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,200.,8.,$,$); -#5155=IFCBEAMTYPE('14dKycjxnCmuHxsmsAA8$1',$,'400x200RHS80',$,$,$,$,$,$,$); -#5156=IFCMATERIALPROFILESET($,$,(#5158),$); -#5157=IFCRELASSOCIATESMATERIAL('1rDp5sl3z1XxwfKvPTYMp3',$,$,$,(#5155),#5156); -#5158=IFCMATERIALPROFILE($,$,#17,#5154,$,$); -#5159=IFCMEMBERTYPE('2aODI4rMT9KvkYYSHjsE8q',$,'400x200RHS80',$,$,$,$,$,$,$); -#5160=IFCMATERIALPROFILESET($,$,(#5162),$); -#5161=IFCRELASSOCIATESMATERIAL('3nhAnupV5BbQ_5y_JQfj74',$,$,$,(#5159),#5160); -#5162=IFCMATERIALPROFILE($,$,#17,#5154,$,$); -#5163=IFCCOLUMNTYPE('3u4yVa$nr4TxAfGY9xtm4K',$,'400x200RHS80',$,$,$,$,$,$,$); -#5164=IFCMATERIALPROFILESET($,$,(#5166),$); -#5165=IFCRELASSOCIATESMATERIAL('2W76NF8cXA3gAkWfuoUC7e',$,$,$,(#5163),#5164); -#5166=IFCMATERIALPROFILE($,$,#17,#5154,$,$); -#5167=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,200.,10.,$,$); -#5168=IFCBEAMTYPE('2_ZwpOaZ97nhHS8Xkd8RYM',$,'400x200RHS100',$,$,$,$,$,$,$); -#5169=IFCMATERIALPROFILESET($,$,(#5171),$); -#5170=IFCRELASSOCIATESMATERIAL('2u4yWGRVT7Ag_RRau6Adu1',$,$,$,(#5168),#5169); -#5171=IFCMATERIALPROFILE($,$,#17,#5167,$,$); -#5172=IFCMEMBERTYPE('0$q6Z3Hun3kRmYRU73KWHp',$,'400x200RHS100',$,$,$,$,$,$,$); -#5173=IFCMATERIALPROFILESET($,$,(#5175),$); -#5174=IFCRELASSOCIATESMATERIAL('1pBnbCZZ52EgsoISU_qxK1',$,$,$,(#5172),#5173); -#5175=IFCMATERIALPROFILE($,$,#17,#5167,$,$); -#5176=IFCCOLUMNTYPE('09kQRg_svBM9CV4kT0g6rm',$,'400x200RHS100',$,$,$,$,$,$,$); -#5177=IFCMATERIALPROFILESET($,$,(#5179),$); -#5178=IFCRELASSOCIATESMATERIAL('2q8EL3wov1zPmIlCi6bqCF',$,$,$,(#5176),#5177); -#5179=IFCMATERIALPROFILE($,$,#17,#5167,$,$); -#5180=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,200.,12.5,$,$); -#5181=IFCBEAMTYPE('0cmAF7JV94UANapuNGrFjz',$,'400x200RHS125',$,$,$,$,$,$,$); -#5182=IFCMATERIALPROFILESET($,$,(#5184),$); -#5183=IFCRELASSOCIATESMATERIAL('1y5myS$lH1DxqQu9OHE7Lv',$,$,$,(#5181),#5182); -#5184=IFCMATERIALPROFILE($,$,#17,#5180,$,$); -#5185=IFCMEMBERTYPE('3YHvx4Hw56muVVmzBBRsfu',$,'400x200RHS125',$,$,$,$,$,$,$); -#5186=IFCMATERIALPROFILESET($,$,(#5188),$); -#5187=IFCRELASSOCIATESMATERIAL('0upwh$nNH8vejXXDnarZg0',$,$,$,(#5185),#5186); -#5188=IFCMATERIALPROFILE($,$,#17,#5180,$,$); -#5189=IFCCOLUMNTYPE('2wvMhSDH90sgRLNXkTJRpw',$,'400x200RHS125',$,$,$,$,$,$,$); -#5190=IFCMATERIALPROFILESET($,$,(#5192),$); -#5191=IFCRELASSOCIATESMATERIAL('1SmdKb691FfBaGTcNKwkIs',$,$,$,(#5189),#5190); -#5192=IFCMATERIALPROFILE($,$,#17,#5180,$,$); -#5193=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,200.,16.,$,$); -#5194=IFCBEAMTYPE('3$9oP$1STB4xhvesex7hum',$,'400x200RHS160',$,$,$,$,$,$,$); -#5195=IFCMATERIALPROFILESET($,$,(#5197),$); -#5196=IFCRELASSOCIATESMATERIAL('0$7bhBpln9IvSq$Qt0AfFq',$,$,$,(#5194),#5195); -#5197=IFCMATERIALPROFILE($,$,#17,#5193,$,$); -#5198=IFCMEMBERTYPE('0jEMZ0KavE9OPJ8CtptIF8',$,'400x200RHS160',$,$,$,$,$,$,$); -#5199=IFCMATERIALPROFILESET($,$,(#5201),$); -#5200=IFCRELASSOCIATESMATERIAL('0OxjE_pK1AYugvbzLOCwbm',$,$,$,(#5198),#5199); -#5201=IFCMATERIALPROFILE($,$,#17,#5193,$,$); -#5202=IFCCOLUMNTYPE('208nhCm$z6cPkb2pQSxNhC',$,'400x200RHS160',$,$,$,$,$,$,$); -#5203=IFCMATERIALPROFILESET($,$,(#5205),$); -#5204=IFCRELASSOCIATESMATERIAL('1darc5q0XE2BlPHXs80kva',$,$,$,(#5202),#5203); -#5205=IFCMATERIALPROFILE($,$,#17,#5193,$,$); -#5206=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,300.,8.,$,$); -#5207=IFCBEAMTYPE('1orr6MJAX3puhjVIgwkKt9',$,'400x300RHS80',$,$,$,$,$,$,$); -#5208=IFCMATERIALPROFILESET($,$,(#5210),$); -#5209=IFCRELASSOCIATESMATERIAL('3fo1jAF1rEMxD9UqaqgiPe',$,$,$,(#5207),#5208); -#5210=IFCMATERIALPROFILE($,$,#17,#5206,$,$); -#5211=IFCMEMBERTYPE('1er0Ux8gP9PujoPPQysoAl',$,'400x300RHS80',$,$,$,$,$,$,$); -#5212=IFCMATERIALPROFILESET($,$,(#5214),$); -#5213=IFCRELASSOCIATESMATERIAL('0TIgXp6rDAyxDBBw6ouAYJ',$,$,$,(#5211),#5212); -#5214=IFCMATERIALPROFILE($,$,#17,#5206,$,$); -#5215=IFCCOLUMNTYPE('39AsjazM90LhypTNGsrPMm',$,'400x300RHS80',$,$,$,$,$,$,$); -#5216=IFCMATERIALPROFILESET($,$,(#5218),$); -#5217=IFCRELASSOCIATESMATERIAL('3CB53IGFXFn83hdLli6gGf',$,$,$,(#5215),#5216); -#5218=IFCMATERIALPROFILE($,$,#17,#5206,$,$); -#5219=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,300.,10.,$,$); -#5220=IFCBEAMTYPE('1poIp53h518Qjg4XKsmxtt',$,'400x300RHS100',$,$,$,$,$,$,$); -#5221=IFCMATERIALPROFILESET($,$,(#5223),$); -#5222=IFCRELASSOCIATESMATERIAL('1p3SJsOvT0fv5sCaFP9OnI',$,$,$,(#5220),#5221); -#5223=IFCMATERIALPROFILE($,$,#17,#5219,$,$); -#5224=IFCMEMBERTYPE('2BngrOoTD5pxRySbhxyK35',$,'400x300RHS100',$,$,$,$,$,$,$); -#5225=IFCMATERIALPROFILESET($,$,(#5227),$); -#5226=IFCRELASSOCIATESMATERIAL('2nf1iTtTj6kwWgVQI6xGss',$,$,$,(#5224),#5225); -#5227=IFCMATERIALPROFILE($,$,#17,#5219,$,$); -#5228=IFCCOLUMNTYPE('32NjlWmKX0bOlSdE70fNB3',$,'400x300RHS100',$,$,$,$,$,$,$); -#5229=IFCMATERIALPROFILESET($,$,(#5231),$); -#5230=IFCRELASSOCIATESMATERIAL('1Ps52KXav7uAoduddbIuI1',$,$,$,(#5228),#5229); -#5231=IFCMATERIALPROFILE($,$,#17,#5219,$,$); -#5232=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,300.,12.5,$,$); -#5233=IFCBEAMTYPE('2KqjrrjEPE7PwfRRQfVjKU',$,'400x300RHS125',$,$,$,$,$,$,$); -#5234=IFCMATERIALPROFILESET($,$,(#5236),$); -#5235=IFCRELASSOCIATESMATERIAL('1rJAQa_eX3fBAgQZfur3te',$,$,$,(#5233),#5234); -#5236=IFCMATERIALPROFILE($,$,#17,#5232,$,$); -#5237=IFCMEMBERTYPE('2NIXCi_NPFrB1vCWGi0Ltk',$,'400x300RHS125',$,$,$,$,$,$,$); -#5238=IFCMATERIALPROFILESET($,$,(#5240),$); -#5239=IFCRELASSOCIATESMATERIAL('0aaQuNLM1D9vukPS2ej7vQ',$,$,$,(#5237),#5238); -#5240=IFCMATERIALPROFILE($,$,#17,#5232,$,$); -#5241=IFCCOLUMNTYPE('0YXGkBVQT4YxTs7sZlk25Z',$,'400x300RHS125',$,$,$,$,$,$,$); -#5242=IFCMATERIALPROFILESET($,$,(#5244),$); -#5243=IFCRELASSOCIATESMATERIAL('1$5EVErkf0Ufl_x1FSm9k4',$,$,$,(#5241),#5242); -#5244=IFCMATERIALPROFILE($,$,#17,#5232,$,$); -#5245=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,300.,16.,$,$); -#5246=IFCBEAMTYPE('0Uux9ATtz3ExK86fp$KGNH',$,'400x300RHS160',$,$,$,$,$,$,$); -#5247=IFCMATERIALPROFILESET($,$,(#5249),$); -#5248=IFCRELASSOCIATESMATERIAL('2jT4L9ErbFCA4yPKrIJ0ji',$,$,$,(#5246),#5247); -#5249=IFCMATERIALPROFILE($,$,#17,#5245,$,$); -#5250=IFCMEMBERTYPE('0jbnHPFsD7TQtEYwna1_3V',$,'400x300RHS160',$,$,$,$,$,$,$); -#5251=IFCMATERIALPROFILESET($,$,(#5253),$); -#5252=IFCRELASSOCIATESMATERIAL('1pmqaVT9n3EAXuf8aNA_Ts',$,$,$,(#5250),#5251); -#5253=IFCMATERIALPROFILE($,$,#17,#5245,$,$); -#5254=IFCCOLUMNTYPE('04BVPniB16GenoojdAsROm',$,'400x300RHS160',$,$,$,$,$,$,$); -#5255=IFCMATERIALPROFILESET($,$,(#5257),$); -#5256=IFCRELASSOCIATESMATERIAL('1DQf_sQrT1gwF_MV6Bd0Zq',$,$,$,(#5254),#5255); -#5257=IFCMATERIALPROFILE($,$,#17,#5245,$,$); -ENDSEC; -END-ISO-10303-21; diff --git a/src/blenderbim/blenderbim/bim/data/libraries/IFC4 EU Steel.ifc b/src/blenderbim/blenderbim/bim/data/libraries/IFC4 EU Steel.ifc deleted file mode 100644 index 8a7ae8c772..0000000000 --- a/src/blenderbim/blenderbim/bim/data/libraries/IFC4 EU Steel.ifc +++ /dev/null @@ -1,9270 +0,0 @@ -ISO-10303-21; -HEADER; -FILE_DESCRIPTION(('ViewDefinition[DesignTransferView]'),'2;1'); -FILE_NAME('/dev/null','2022-10-29T10:16:19+06:00',(),(),'IfcOpenShell v0.7.0-fa6bbf2d','IfcOpenShell v0.7.0-fa6bbf2d','Nobody'); -FILE_SCHEMA(('IFC4')); -ENDSEC; -DATA; -#1=IFCPROJECT('13B$QDEbXB58YKPn6qpnLl',$,'EU Steel Profiles Library',$,$,$,$,(#10,#14),#5); -#2=IFCPROJECTLIBRARY('19sTBPrYn5IO0bXYjFUn5q',$,'EU Steel Profiles Library',$,$,$,$,$,$); -#3=IFCRELDECLARES('2UyXcJxojA3RaMCrfMD5zA',$,$,$,#1,(#2)); -#4=IFCSIUNIT(*,.LENGTHUNIT.,.MILLI.,.METRE.); -#5=IFCUNITASSIGNMENT((#4)); -#6=IFCCARTESIANPOINT((0.,0.,0.)); -#7=IFCDIRECTION((0.,0.,1.)); -#8=IFCDIRECTION((1.,0.,0.)); -#9=IFCAXIS2PLACEMENT3D(#6,#7,#8); -#10=IFCGEOMETRICREPRESENTATIONCONTEXT($,'Model',3,1.E-05,#9,$); -#11=IFCCARTESIANPOINT((0.,0.,0.)); -#12=IFCDIRECTION((1.,0.,0.)); -#13=IFCAXIS2PLACEMENT2D(#11,#12); -#14=IFCGEOMETRICREPRESENTATIONCONTEXT($,'Plan',2,1.E-05,#13,$); -#15=IFCGEOMETRICREPRESENTATIONSUBCONTEXT('Body','Model',*,*,*,*,#10,$,.MODEL_VIEW.,$); -#16=IFCGEOMETRICREPRESENTATIONSUBCONTEXT('Annotation','Plan',*,*,*,*,#14,$,.PLAN_VIEW.,$); -#17=IFCMATERIAL('Unknown',$,$); -#18=IFCISHAPEPROFILEDEF(.AREA.,$,$,100.,96.,5.,8.,$,$,$); -#19=IFCBEAMTYPE('30NCqylQj5qxXxzecCg1gn',$,'HEA100',$,$,$,$,$,$,$); -#20=IFCMATERIALPROFILESET($,$,(#22),$); -#21=IFCRELASSOCIATESMATERIAL('2D3Vncw4TFcBgg32Y4B1Bc',$,$,$,(#19),#20); -#22=IFCMATERIALPROFILE($,$,#17,#18,$,$); -#23=IFCRELDECLARES('3uuHy67eP3MO8ja6mS9$er',$,$,$,#2,(#6338,#6472,#4947,#5081,#3690,#3824,#2299,#2433,#1775,#1042,#8591,#384,#7334,#9150,#7759,#1255,#7893,#6368,#6502,#5111,#7547,#3720,#8106,#8621,#414,#6715,#5324,#202,#4058,#8834,#8968,#7577,#6186,#19,#4929,#5662,#4271,#3538,#2880,#3014,#1489,#1623,#9172,#232,#366,#6524,#8998,#7607,#8340,#6949,#7083,#5558,#5692,#4301,#4435,#2910,#3044,#1653,#4089,#9202,#262,#7945,#6554,#5163,#3257,#3772,#1866,#475,#8158,#4331,#6767,#600,#5376,#5510,#4119,#9232,#2728,#2204,#80,#813,#3287,#4669,#5714,#8188,#4323,#6797,#6931,#3066,#5540,#6273,#4149,#4882,#3491,#3625,#2100,#2234,#843,#977,#7135,#5744,#8218,#4353,#4487,#3096,#1705,#314,#3521,#8431,#2264,#4700,#873,#3309,#1918,#8556,#2052,#7165,#661,#5774,#2477,#8769,#7378,#1211,#5987,#6121,#2256,#4730,#3339,#2815,#691,#1424,#8240,#33,#8374,#167,#6983,#6325,#8799,#7408,#7542,#3677,#6151,#2286,#4760,#895,#7196,#1029,#8270,#63,#7746,#1242,#6355,#5098,#3707,#8483,#2316,#7226,#5835,#5311,#3920,#2529,#9167,#2663,#7776,#1272,#6385,#8821,#7430,#6173,#7989,#6598,#6732,#2867,#5341,#1476,#3950,#219,#2693,#1302,#8851,#8985,#7460,#7594,#6203,#4812,#4288,#2897,#9198,#5371,#1506,#7807,#1640,#115,#6416,#249,#5025,#8881,#2377,#5150,#5584,#1853,#6966,#462,#5709,#4318,#2927,#5363,#9228,#7837,#5922,#4531,#3140,#3274,#1883,#492,#8041,#8175,#6650,#6784,#5393,#5527,#4002,#4136,#2745,#3478,#1354,#2087,#830,#1913,#4349,#2958,#8071,#1567,#8205,#6814,#5423,#1692,#4899,#3508,#2117,#8418,#2251,#7027,#860,#1905,#2988,#5761,#2464,#1073,#7365,#5974,#8448,#4583,#4717,#3192,#3326,#1935,#2069,#544,#678,#1103,#8652,#8786,#7395,#6004,#6138,#4613,#4747,#882,#3356,#1965,#1441,#8257,#50,#4960,#3569,#8682,#2178,#8816,#7425,#6034,#8470,#2303,#912,#7213,#9029,#7638,#2516,#4990,#1125,#8500,#8634,#7243,#7976,#5852,#6585,#5194,#5328,#3803,#3937,#2546,#2680,#1155,#1289,#8838,#631,#7447,#6056,#6190,#4799,#8006,#6615,#111,#6749,#5224,#5358,#3967,#6403,#2576,#5012,#3755,#8868,#6962,#7477,#5571,#4180,#9081,#2914,#7690,#1523,#7824,#6433,#5042,#3785,#4518,#2394,#3127,#1736,#1870,#345,#479,#8028,#9111,#9245,#5380,#7854,#3989,#6463,#2732,#5805,#4414,#4548,#3157,#3291,#1766,#1900,#509,#2945,#8058,#6801,#5410,#4019,#2113,#2628,#722,#7014,#5623,#4232,#4366,#2975,#8088,#1584,#1060,#3525,#8301,#8435,#4570,#7044,#3179,#5653,#1922,#4396,#3005,#3738,#2347,#2481,#9163,#956,#1090,#7906,#5991,#8465,#4600,#7074,#3209,#3343,#8119,#1952,#561,#7287,#3556,#2165,#774,#7412,#6021,#4630,#7625,#6234,#67,#4843,#4977,#1112,#3586,#8699,#2195,#1671,#8353,#8487,#280,#7096,#7230,#5839,#8912,#5181,#7655,#6264,#6398,#2533,#5007,#1142,#3616,#6052,#8517,#7126,#6602,#98,#5211,#3820,#3954,#8730,#2563,#7339,#1172,#6082,#4691,#7464,#4167,#2776,#1385,#1519,#6632,#9068,#128,#5241,#7677,#6286,#4895,#5029,#3638,#6845,#2381,#5454,#5588,#1723,#4197,#332,#2806,#1549,#9098,#158,#7707,#7841,#6316,#6450,#5059,#5792,#3668,#3144,#1753,#8054,#362,#6663,#496,#5272,#3881,#9128,#7737,#4006,#2615,#709,#5822,#4565,#3174,#1783,#4219,#6693,#2828,#1571,#4778,#3387,#1996,#2130,#8946,#739,#8288,#6897,#7031,#5506,#5640,#4249,#4383,#2858,#2992,#1601,#2334,#210,#943,#769,#8318,#1814,#8452,#6927,#423,#7061,#5670,#4279,#548,#2364,#8665,#9180,#973,#7274,#1107,#7789,#5883,#761,#8348,#4617,#1320,#8136,#6745,#5488,#6221,#8695,#4830,#7304,#3439,#3573,#2048,#2182,#791,#925,#8166,#8899,#7508,#7642,#6117,#6251,#4860,#4994,#3469,#3603,#2212,#821,#8504,#297,#7113,#5722,#3816,#8929,#2425,#7538,#1034,#7672,#6281,#8717,#4890,#7326,#1159,#5935,#6069,#4678,#7885,#6494,#1372,#3846,#5228,#8747,#7356,#7490,#6099,#6832,#4708,#5441,#4050,#4184,#2659,#2793,#1402,#1536,#145,#7694,#6303,#8777,#4912,#5046,#3655,#5471,#4080,#4214,#349,#8990,#2823,#5259,#1432,#3868,#9115,#2611,#7724,#6333,#4427,#3036,#7937,#1770,#6546,#379,#6680,#5289,#3898,#3374,#1250,#1983,#592,#726,#6884,#7967,#8101,#4236,#6710,#2845,#5319,#1454,#1588,#4661,#197,#3270,#3404,#2013,#2147,#8829,#622,#756,#8305,#1801,#6914,#410,#5657,#4266,#9042,#2875,#1484,#7785,#5870,#4479,#3088,#3222,#8335,#1831,#6944,#440,#8548,#7157,#7291,#3426,#5900,#2035,#4509,#778,#3252,#1861,#1203,#8019,#8153,#6762,#8578,#4847,#7321,#3456,#5930,#2065,#8366,#2199,#674,#6975,#808,#6143,#8916,#2412,#7525,#1021,#6268,#4877,#3486,#8396,#6481,#5090,#3699,#3833,#2442,#7555,#1051,#8600,#8734,#7209,#7343,#5952,#6086,#4561,#4695,#7768,#3304,#4037,#6511,#2646,#5120,#5254,#1389,#3863,#2472,#3517,#8630,#8764,#7373,#5982,#5458,#4067,#2676,#8977,#2810,#7586,#1419,#6195,#28,#3547,#6320,#3023,#1632,#241,#375,#7924,#4097,#6533,#9007,#5142,#3751,#3885,#2494,#1237,#4310,#579,#3053,#1662,#9211,#7820,#7954,#6563,#6697,#5172,#5306,#3915,#4648,#2524,#2000,#609,#5519,#4128,#9241,#2737,#7984,#6593,#2862,#1471,#8197,#2030,#639,#3075,#5549,#1684,#293,#427,#2243,#9059,#852,#9193,#986,#7802,#8535,#6411,#7144,#5753,#5887,#4362,#4496,#3105,#3239,#1714,#1848,#457,#1190,#8565,#7174,#670,#7308,#5783,#5917,#4526,#3135,#1220,#7521,#8036,#6130,#4739,#7204,#3473,#8249,#2082,#176,#8383,#6992,#5601,#4344,#5077,#3686,#6160,#2295,#2429,#904,#1038,#8587,#5939,#8413,#9146,#7022,#7755,#6364,#6498,#4973,#5107,#3716,#3850,#2325,#2459,#1068,#8617,#7360,#5969,#4578,#2672,#3187,#1281,#6394,#5137,#7573,#3746,#6182,#4791,#4925,#3534,#8647,#2143,#5350,#228,#4084,#8860,#8994,#5129,#7603,#6212,#4955,#5688,#3564,#4297,#2906,#3040,#1515,#1649,#258,#392,#6550,#9024,#5159,#7633,#3768,#3902,#2511,#1120,#4327,#2936,#3070,#7846,#1679,#4115,#288,#2724,#1333,#7971,#6580,#76,#5189,#3283,#1892,#8708,#8184,#6793,#626,#5402,#5536,#4145,#9258,#2754,#2230,#9046,#106,#839,#5740,#8214,#6823,#6957,#3092,#5566,#1701,#4175,#310,#444,#2126,#9076,#869,#7685,#7161,#657,#5770,#8244,#4379,#4513,#3122,#7898,#1731,#340,#6641,#5250,#8023,#8457,#4726,#3335,#1944,#8582,#2078,#7191,#687,#5800,#8236,#8795,#7404,#6013,#6147,#2282,#4756,#891,#3365,#2108,#717,#8266,#59,#8400,#6875,#7009,#5618,#6351,#4227,#7434,#3703,#6177,#2312,#4786,#921,#7222,#1055,#5831,#4440,#8296,#7772,#1268,#6381,#5124,#3733,#2342,#7252,#5337,#3946,#2555,#2689,#1298,#8847,#7456,#7590,#6065,#6199,#4808,#4942,#3417,#3551,#2160,#2893,#1502,#3976,#245,#2719,#1328,#8877,#2373,#9011,#7486,#7620,#6229,#4838,#4314,#2923,#9224,#1532,#7833,#1666,#6442,#275,#5051,#8907,#2403,#5176,#1879,#488,#6780,#2953,#5389,#9254,#7863,#3998,#2607,#2741,#1350,#93,#3166,#1909,#8725,#518,#8067,#8201,#6676,#6810,#5419,#5553,#4028,#4162,#2771,#3504,#1380,#9063,#856,#4375,#2984,#8097,#1593,#8231,#6840,#5449,#1718,#327,#8444,#7053,#1931,#4405,#540,#5787,#7915,#8049,#6658,#7391,#5267,#6000,#4609,#4743,#3218,#3352,#1961,#2095,#570,#704,#8253,#46,#6862,#5605,#8678,#8812,#7421,#6030,#6164,#4639,#4773,#908,#3382,#5818,#1991,#8283,#6377,#6892,#4986,#3595,#6060,#8496,#2329,#7105,#938,#7239,#5848,#4457,#3933,#2542,#1809,#5016,#1151,#1285,#7443,#8526,#8660,#4795,#7269,#5878,#6611,#5220,#5354,#3829,#3963,#2572,#2706,#1181,#1315,#8864,#7473,#6216,#4825,#3434,#2043,#137,#6429,#2602,#5038,#3647,#3781,#8894,#2390,#7503,#999,#9107,#2940,#7716,#7850,#3985,#6459,#2594,#5068,#1337,#3811,#4544,#2420,#3153,#1762,#1896,#371,#8712,#505,#9137,#5406,#7880,#4015,#6489,#2624,#8925,#2758,#1233,#1367,#1792,#6702,#535,#2971,#8084,#1580,#189,#6827,#5436,#4045,#8955,#748,#7564,#7040,#5649,#4258,#4392,#527,#3001,#8114,#1610,#9159,#1086,#7902,#6645,#8327,#8461,#4596,#7070,#3205,#5679,#5813,#1948,#4422,#557,#3031,#9189,#982,#7932,#6541,#6017,#4626,#3235,#3369,#8145,#1978,#6754,#587,#4106,#6879,#3582,#2191,#800,#7438,#934,#6047,#4656,#7092,#5701,#4444,#7651,#6260,#4869,#5003,#1138,#3612,#2221,#8379,#8513,#7122,#7256,#5731,#5865,#4474,#5207,#3083,#2559,#1168,#3642,#6078,#4687,#3296,#8543,#7152,#3421,#6628,#124,#5237,#3980,#8756,#2589,#1198,#3634,#6108,#4193,#2802,#1411,#1545,#9094,#154,#7703,#6312,#6446,#4921,#5055,#3664,#3798,#2273,#2407,#1749,#1016,#358,#2832,#1575,#9124,#184,#7733,#1229,#7867,#6342,#6476,#5085,#3694,#3170,#1779,#8080,#8595,#388,#6689,#522,#5298,#3907,#9154,#7763,#1259,#4032,#8808,#2641,#735,#8942,#7551,#5636,#8110,#4245,#6719,#2854,#1463,#1597,#206,#8972,#7581,#8314,#6923,#7057,#5532,#5666,#4275,#4409,#2884,#3018,#1627,#2360,#9176,#236,#969,#7919,#6528,#3231,#8344,#1840,#8478,#6953,#449,#7087,#5696,#8132,#4305,#6741,#574,#5484,#9206,#7300,#5909,#787,#4643,#8162,#6771,#5514,#6247,#4123,#4856,#3465,#3599,#2074,#2208,#817,#951,#7109,#5718,#8192,#4461,#7534,#6277,#4886,#5020,#3495,#3629,#8405,#2238,#4674,#847,#8530,#7139,#5748,#3842,#2451,#8743,#7352,#1185,#5961,#6095,#4704,#3313,#2789,#665,#1398,#141,#6299,#8773,#4908,#7382,#7516,#3651,#6125,#2260,#4734,#5467,#1003,#4076,#4210,#2685,#2819,#1428,#1562,#37,#171,#7720,#1216,#6329,#8803,#4938,#5072,#3681,#2290,#899,#9016,#5285,#1458,#3894,#2503,#9141,#2637,#7750,#1246,#6359,#7963,#1796,#6572,#405,#2841,#6706,#5315,#1450,#3924,#193,#2667,#1276,#2009,#8825,#618,#8959,#752,#7568,#6910,#7993,#8127,#4262,#6736,#2871,#5345,#1480,#7781,#1614,#89,#6390,#223,#8855,#8331,#1827,#6940,#436,#5683,#4292,#2901,#7811,#6420,#5896,#4505,#3114,#3248,#8361,#1857,#6970,#466,#8015,#8149,#6624,#6758,#5367,#5501,#8574,#4110,#7183,#7317,#3452,#5926,#2061,#4535,#804,#3278,#1887,#8045,#8179,#6788,#5397,#4873,#3482,#2091,#8392,#2225,#7001,#834,#5610,#2962,#5735,#2438,#1047,#4903,#3512,#5948,#8422,#4557,#3300,#5116,#3725,#3859,#2468,#1077,#8626,#8760,#7235,#7369,#5978,#6112,#4587,#4721,#3330,#4063,#1939,#1415,#24,#4934,#3543,#8656,#2152,#8790,#7399,#6008,#2277,#886,#4093,#2702,#9003,#2836,#7612,#1445,#54,#2490,#4964,#1099,#6346,#3049,#1658,#8474,#267,#8608,#401,#7217,#7950,#6559,#9033,#5168,#5302,#3777,#3911,#2520,#2654,#1129,#1263,#605,#9237,#7980,#6589,#85,#6723,#5198,#5332,#1467,#3941,#2550,#2026,#8842,#635,#6936,#7451,#5545,#4154,#2763,#8010,#6619,#9055,#2888,#7664,#1497,#7798,#6407,#8223,#4492,#3101,#5575,#1710,#1844,#319,#453,#8002,#9085,#9219,#7828,#8561,#6437,#7170,#5779,#5913,#4388,#4522,#3131,#3265,#1740,#1874,#483,#8032,#6775,#5384,#3993,#7200,#696,#5809,#5943,#4552,#6988,#3161,#5597,#4206,#4340,#2949,#8062,#6156,#4765,#3499,#8275,#8409,#6996,#7018,#5627,#4370,#5103,#2979,#3712,#2321,#2455,#930,#1064,#8613,#5965,#8439,#4574,#7048,#3183,#3317,#1926,#4999,#5133,#3742,#3876,#2351,#2485,#7261,#1094,#3530,#8643,#2139,#7386,#5995,#4604,#2698,#1307,#7599,#6208,#41,#4817,#4951,#3560,#8673,#2169,#1645,#254,#8886,#9020,#5155,#7629,#3764,#6238,#6372,#2507,#4981,#1116,#3590,#2932,#1541,#1675,#8491,#284,#418,#7100,#6576,#72,#9050,#5185,#7659,#3794,#3928,#8704,#2537,#7313,#1146,#7872,#4141,#2750,#1359,#7997,#1493,#6606,#102,#5215,#8210,#6819,#652,#5428,#5562,#1697,#4171,#306,#2780,#8938,#9072,#865,#132,#7681,#7815,#6290,#6424,#5033,#5766,#6849,#3118,#5592,#1727,#4201,#336,#6637,#470,#5246,#9102,#7711,#7187,#683,#5796,#4539,#3148,#1757,#6667,#5276,#4752,#3361,#1970,#2104,#713,#5826,#8262,#9120,#6871,#7005,#5480,#5614,#4223,#4357,#2966,#6039,#2308,#4782,#917,#3391,#2134,#743,#8292,#1788,#8426,#6901,#7035,#5644,#4253,#3729,#2338,#8639,#947,#7248,#1081,#5857,#4466,#8322,#1818,#4591,#3200,#1294,#3759,#2368,#4804,#8669,#7278,#3413,#2022,#2156,#765,#3972,#2581,#2715,#1324,#8140,#8873,#7482,#7616,#6091,#6225,#4834,#4968,#3443,#3577,#2186,#2919,#795,#1528,#271,#3790,#8903,#2399,#9037,#7512,#1008,#7646,#6255,#8691,#4864,#1133,#9250,#1558,#7859,#6468,#301,#1346,#8933,#5202,#8721,#514,#7330,#6073,#6806,#4682,#5415,#7889,#4024,#4158,#2633,#2767,#1376,#1510,#119,#7668,#8751,#8093,#8227,#6836,#5445,#5579,#4054,#4188,#323,#8964,#2797,#1406,#9089,#7698,#6307,#4401,#4916,#3010,#8123,#1619,#6866,#5475,#7911,#1744,#6520,#353,#6654,#5263,#3872,#7079,#3348,#1957,#4431,#566,#700,#6858,#7941,#8075,#6684,#7417,#5293,#6026,#4635,#4769,#3244,#3378,#1987,#2121,#596,#730,#8279,#6888,#5497,#5631,#4240,#2849,#4665,#3408,#5844,#2017,#4453,#3062,#3196,#8309,#1805,#6918,#3621,#8522,#2355,#7131,#964,#3400,#7265,#5874,#4483,#3959,#3226,#2568,#1835,#1177,#1311,#7469,#8552,#8686,#4821,#7295,#3430,#5904,#2039,#2173,#648,#782,#3855,#2598,#1207,#1341,#8890,#2386,#7499,#995,#6242,#4851,#3460,#1554,#8370,#163,#6979,#6455,#5064,#3673,#3807,#8920,#2416,#7529,#1025,#501,#9133,#7742,#7876,#4011,#6485,#2620,#5094,#1363,#3837,#2446,#8604,#397,#8738,#531,#7347,#5956,#5432,#4041,#6515,#2650,#8951,#2784,#7560,#1393,#6169,#6294,#6728,#2997,#1606,#215,#6853,#5462,#4071,#6507,#8981,#7066,#5675,#4284,#4418,#553,#3027,#1636,#9185,#7794,#7928,#6537,#6671,#5146,#5280,#3889,#4622,#2498,#5705,#1974,#4448,#583,#3057,#5493,#4102,#9215,#2711,#7958,#6567,#6043,#4652,#3261,#3395,#8171,#2004,#613,#5523,#4132,#6905,#3608,#2217,#826,#960,#8509,#7118,#5727,#5861,#4336,#4470,#3079,#3213,#1688,#1822,#431,#1164,#2247,#990,#8539,#7148,#644,#7282,#5757,#5891,#4500,#5233,#3109,#2585,#1194,#7495,#6104,#4713,#3322,#8569,#7178,#3447,#2056,#150,#8357,#8782,#1224,#3660,#6134,#2269,#878,#1012,#1437,#8387,#180,#7729)); -#24=IFCMEMBERTYPE('3SSBAsPAzFuewsHGJHq0Az',$,'HEA100',$,$,$,$,$,$,$); -#25=IFCMATERIALPROFILESET($,$,(#27),$); -#26=IFCRELASSOCIATESMATERIAL('2YNEnRY350zxDB2hvd6bPg',$,$,$,(#24),#25); -#27=IFCMATERIALPROFILE($,$,#17,#18,$,$); -#28=IFCCOLUMNTYPE('2T$YwJXYf6cRjXAfNSS6kC',$,'HEA100',$,$,$,$,$,$,$); -#29=IFCMATERIALPROFILESET($,$,(#31),$); -#30=IFCRELASSOCIATESMATERIAL('1ZoSTDMxj1bPxshGnbYMVL',$,$,$,(#28),#29); -#31=IFCMATERIALPROFILE($,$,#17,#18,$,$); -#32=IFCISHAPEPROFILEDEF(.AREA.,$,$,120.,114.,5.,8.,$,$,$); -#33=IFCBEAMTYPE('0pB4VDrI97lQYde3kN$j9$',$,'HEA120',$,$,$,$,$,$,$); -#34=IFCMATERIALPROFILESET($,$,(#36),$); -#35=IFCRELASSOCIATESMATERIAL('2Ig6qX2KfByxeEk7L3YKiZ',$,$,$,(#33),#34); -#36=IFCMATERIALPROFILE($,$,#17,#32,$,$); -#37=IFCMEMBERTYPE('2wH2irC7L1PhdyIljy4o2C',$,'HEA120',$,$,$,$,$,$,$); -#38=IFCMATERIALPROFILESET($,$,(#40),$); -#39=IFCRELASSOCIATESMATERIAL('1uYhn3BBD6xOQo_iikznnF',$,$,$,(#37),#38); -#40=IFCMATERIALPROFILE($,$,#17,#32,$,$); -#41=IFCCOLUMNTYPE('2ynr8_zjvA9e6FRa7dMpPc',$,'HEA120',$,$,$,$,$,$,$); -#42=IFCMATERIALPROFILESET($,$,(#44),$); -#43=IFCRELASSOCIATESMATERIAL('3C99cd5Bz6xRkM_690aE_M',$,$,$,(#41),#42); -#44=IFCMATERIALPROFILE($,$,#17,#32,$,$); -#45=IFCISHAPEPROFILEDEF(.AREA.,$,$,140.,133.,5.5,8.5,$,$,$); -#46=IFCBEAMTYPE('3CU6V$Atf3ZO7LUs3hSdTy',$,'HEA140',$,$,$,$,$,$,$); -#47=IFCMATERIALPROFILESET($,$,(#49),$); -#48=IFCRELASSOCIATESMATERIAL('1Y4P9Z4Hr8Nw8VI_UIYZlh',$,$,$,(#46),#47); -#49=IFCMATERIALPROFILE($,$,#17,#45,$,$); -#50=IFCMEMBERTYPE('0kAVvV_bf4RezxR51TQeyK',$,'HEA140',$,$,$,$,$,$,$); -#51=IFCMATERIALPROFILESET($,$,(#53),$); -#52=IFCRELASSOCIATESMATERIAL('3YEcUWblP3LxeJM$JsPGT6',$,$,$,(#50),#51); -#53=IFCMATERIALPROFILE($,$,#17,#45,$,$); -#54=IFCCOLUMNTYPE('23kTxKGiHDo9EhRCe7XZJ6',$,'HEA140',$,$,$,$,$,$,$); -#55=IFCMATERIALPROFILESET($,$,(#57),$); -#56=IFCRELASSOCIATESMATERIAL('05jaozJwP1JgMb05Wd4XSC',$,$,$,(#54),#55); -#57=IFCMATERIALPROFILE($,$,#17,#45,$,$); -#58=IFCISHAPEPROFILEDEF(.AREA.,$,$,160.,152.,6.,9.,$,$,$); -#59=IFCBEAMTYPE('1nX4x75N9F8eaaT5PiWdbS',$,'HEA160',$,$,$,$,$,$,$); -#60=IFCMATERIALPROFILESET($,$,(#62),$); -#61=IFCRELASSOCIATESMATERIAL('0T5ozIti50P87leH4WcYZZ',$,$,$,(#59),#60); -#62=IFCMATERIALPROFILE($,$,#17,#58,$,$); -#63=IFCMEMBERTYPE('1zpCLjuwn0pRvvMQwAQrJz',$,'HEA160',$,$,$,$,$,$,$); -#64=IFCMATERIALPROFILESET($,$,(#66),$); -#65=IFCRELASSOCIATESMATERIAL('0lTbwXmXDEOwZVNutUObEl',$,$,$,(#63),#64); -#66=IFCMATERIALPROFILE($,$,#17,#58,$,$); -#67=IFCCOLUMNTYPE('3ZHL_RsUrEGRB5Ulr_wmhV',$,'HEA160',$,$,$,$,$,$,$); -#68=IFCMATERIALPROFILESET($,$,(#70),$); -#69=IFCRELASSOCIATESMATERIAL('1IuupIfjT5zB$CJTZjdBkE',$,$,$,(#67),#68); -#70=IFCMATERIALPROFILE($,$,#17,#58,$,$); -#71=IFCISHAPEPROFILEDEF(.AREA.,$,$,180.,171.,6.,9.5,$,$,$); -#72=IFCBEAMTYPE('0r5llYTS94agX2meHxMP3Z',$,'HEA180',$,$,$,$,$,$,$); -#73=IFCMATERIALPROFILESET($,$,(#75),$); -#74=IFCRELASSOCIATESMATERIAL('3uoDFH0AjB9BdQOMJ4f65K',$,$,$,(#72),#73); -#75=IFCMATERIALPROFILE($,$,#17,#71,$,$); -#76=IFCMEMBERTYPE('1Am8x4$NLAEAI7m0qEbyFV',$,'HEA180',$,$,$,$,$,$,$); -#77=IFCMATERIALPROFILESET($,$,(#79),$); -#78=IFCRELASSOCIATESMATERIAL('3vTYd4c4LD4Av$pDq35TW4',$,$,$,(#76),#77); -#79=IFCMATERIALPROFILE($,$,#17,#71,$,$); -#80=IFCCOLUMNTYPE('1vTSMtJq9F0xnbyZ1lQDzd',$,'HEA180',$,$,$,$,$,$,$); -#81=IFCMATERIALPROFILESET($,$,(#83),$); -#82=IFCRELASSOCIATESMATERIAL('37LPteFcrEa86ilOViTSrp',$,$,$,(#80),#81); -#83=IFCMATERIALPROFILE($,$,#17,#71,$,$); -#84=IFCISHAPEPROFILEDEF(.AREA.,$,$,200.,190.,6.5,10.,$,$,$); -#85=IFCBEAMTYPE('2f_LK$cXjAdBqYtOW0phn2',$,'HEA200',$,$,$,$,$,$,$); -#86=IFCMATERIALPROFILESET($,$,(#88),$); -#87=IFCRELASSOCIATESMATERIAL('0hSgT8dunEXfcGCz2YrUUd',$,$,$,(#85),#86); -#88=IFCMATERIALPROFILE($,$,#17,#84,$,$); -#89=IFCMEMBERTYPE('2au7HCvp13VxV4RB_ruilQ',$,'HEA200',$,$,$,$,$,$,$); -#90=IFCMATERIALPROFILESET($,$,(#92),$); -#91=IFCRELASSOCIATESMATERIAL('0$l175WSj5T9BdCLMDbT1Y',$,$,$,(#89),#90); -#92=IFCMATERIALPROFILE($,$,#17,#84,$,$); -#93=IFCCOLUMNTYPE('1X_7OBBRfCVgRV19DqCjwF',$,'HEA200',$,$,$,$,$,$,$); -#94=IFCMATERIALPROFILESET($,$,(#96),$); -#95=IFCRELASSOCIATESMATERIAL('20F1dbUF14Yf2wlfTKa8KE',$,$,$,(#93),#94); -#96=IFCMATERIALPROFILE($,$,#17,#84,$,$); -#97=IFCISHAPEPROFILEDEF(.AREA.,$,$,220.,210.,7.,11.,$,$,$); -#98=IFCBEAMTYPE('2CZmHScRXBEx8Z8wDoyNK8',$,'HEA220',$,$,$,$,$,$,$); -#99=IFCMATERIALPROFILESET($,$,(#101),$); -#100=IFCRELASSOCIATESMATERIAL('0TLBwyZAD1U9vTjB6LqDeQ',$,$,$,(#98),#99); -#101=IFCMATERIALPROFILE($,$,#17,#97,$,$); -#102=IFCMEMBERTYPE('0cSSvJWSrEff3HpymifHvp',$,'HEA220',$,$,$,$,$,$,$); -#103=IFCMATERIALPROFILESET($,$,(#105),$); -#104=IFCRELASSOCIATESMATERIAL('3CIQrwE0bEIw9qdX_HTCE7',$,$,$,(#102),#103); -#105=IFCMATERIALPROFILE($,$,#17,#97,$,$); -#106=IFCCOLUMNTYPE('1dlg8YmmzF6AfGH3bT1jyd',$,'HEA220',$,$,$,$,$,$,$); -#107=IFCMATERIALPROFILESET($,$,(#109),$); -#108=IFCRELASSOCIATESMATERIAL('2q3fd2gUH7Vf$pwiC23lG0',$,$,$,(#106),#107); -#109=IFCMATERIALPROFILE($,$,#17,#97,$,$); -#110=IFCISHAPEPROFILEDEF(.AREA.,$,$,240.,230.,7.5,12.,$,$,$); -#111=IFCBEAMTYPE('2zgmxIX9zDMBAsq6YapYaf',$,'HEA240',$,$,$,$,$,$,$); -#112=IFCMATERIALPROFILESET($,$,(#114),$); -#113=IFCRELASSOCIATESMATERIAL('2mclWEyVXAHfWP3otqx8g4',$,$,$,(#111),#112); -#114=IFCMATERIALPROFILE($,$,#17,#110,$,$); -#115=IFCMEMBERTYPE('1byGtV53D2o8mvJ_UHcsqW',$,'HEA240',$,$,$,$,$,$,$); -#116=IFCMATERIALPROFILESET($,$,(#118),$); -#117=IFCRELASSOCIATESMATERIAL('1S8geumu54DxrOJdoGOc49',$,$,$,(#115),#116); -#118=IFCMATERIALPROFILE($,$,#17,#110,$,$); -#119=IFCCOLUMNTYPE('25b$iQ5sPBbgmHsTQ_GeTm',$,'HEA240',$,$,$,$,$,$,$); -#120=IFCMATERIALPROFILESET($,$,(#122),$); -#121=IFCRELASSOCIATESMATERIAL('0FXQnmlGr7DQyzVIdLAq2r',$,$,$,(#119),#120); -#122=IFCMATERIALPROFILE($,$,#17,#110,$,$); -#123=IFCISHAPEPROFILEDEF(.AREA.,$,$,260.,250.,7.5,12.5,$,$,$); -#124=IFCBEAMTYPE('3rOU_rwKP7jh6oMF8369Rd',$,'HEA260',$,$,$,$,$,$,$); -#125=IFCMATERIALPROFILESET($,$,(#127),$); -#126=IFCRELASSOCIATESMATERIAL('23nXMumrvF_PkfkbYI$HUh',$,$,$,(#124),#125); -#127=IFCMATERIALPROFILE($,$,#17,#123,$,$); -#128=IFCMEMBERTYPE('3D3ssMs1nDjOHUSGd7O1Ti',$,'HEA260',$,$,$,$,$,$,$); -#129=IFCMATERIALPROFILESET($,$,(#131),$); -#130=IFCRELASSOCIATESMATERIAL('2mtImiaAP0IhikJG3YE1vY',$,$,$,(#128),#129); -#131=IFCMATERIALPROFILE($,$,#17,#123,$,$); -#132=IFCCOLUMNTYPE('2bOewCvvrE4RFwQBBfCuiC',$,'HEA260',$,$,$,$,$,$,$); -#133=IFCMATERIALPROFILESET($,$,(#135),$); -#134=IFCRELASSOCIATESMATERIAL('1_QCYea4H66B5$TZwjCY4T',$,$,$,(#132),#133); -#135=IFCMATERIALPROFILE($,$,#17,#123,$,$); -#136=IFCISHAPEPROFILEDEF(.AREA.,$,$,280.,270.,8.,13.,$,$,$); -#137=IFCBEAMTYPE('2oeqWu0yb7qRue9KGzUPO5',$,'HEA280',$,$,$,$,$,$,$); -#138=IFCMATERIALPROFILESET($,$,(#140),$); -#139=IFCRELASSOCIATESMATERIAL('17yhH_0hLEzQUjV7Vuh7Ky',$,$,$,(#137),#138); -#140=IFCMATERIALPROFILE($,$,#17,#136,$,$); -#141=IFCMEMBERTYPE('1xci$hFVH6cP2oHD9lTSW2',$,'HEA280',$,$,$,$,$,$,$); -#142=IFCMATERIALPROFILESET($,$,(#144),$); -#143=IFCRELASSOCIATESMATERIAL('2KvU0iM3T0A9UWjz$mrUJG',$,$,$,(#141),#142); -#144=IFCMATERIALPROFILE($,$,#17,#136,$,$); -#145=IFCCOLUMNTYPE('3f2I0BT9b2o8HKaIojrGaP',$,'HEA280',$,$,$,$,$,$,$); -#146=IFCMATERIALPROFILESET($,$,(#148),$); -#147=IFCRELASSOCIATESMATERIAL('2wIAb89O1Ezuu_HR2HcUmI',$,$,$,(#145),#146); -#148=IFCMATERIALPROFILE($,$,#17,#136,$,$); -#149=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,290.,8.5,14.,$,$,$); -#150=IFCBEAMTYPE('1XmoNu9Z98vf5ETM8UpANH',$,'HEA300',$,$,$,$,$,$,$); -#151=IFCMATERIALPROFILESET($,$,(#153),$); -#152=IFCRELASSOCIATESMATERIAL('1lKFNcadn7nfWhG8xnTrHH',$,$,$,(#150),#151); -#153=IFCMATERIALPROFILE($,$,#17,#149,$,$); -#154=IFCMEMBERTYPE('2W7xPdRrj4TPtDlaXuSsMI',$,'HEA300',$,$,$,$,$,$,$); -#155=IFCMATERIALPROFILESET($,$,(#157),$); -#156=IFCRELASSOCIATESMATERIAL('0wLtiZ4hX9fwIPlSHZfHku',$,$,$,(#154),#155); -#157=IFCMATERIALPROFILE($,$,#17,#149,$,$); -#158=IFCCOLUMNTYPE('0L2Vw_vA9DJg5yEIdW00kq',$,'HEA300',$,$,$,$,$,$,$); -#159=IFCMATERIALPROFILESET($,$,(#161),$); -#160=IFCRELASSOCIATESMATERIAL('3M290Ig0v1cftyAhWWj4cf',$,$,$,(#158),#159); -#161=IFCMATERIALPROFILE($,$,#17,#149,$,$); -#162=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,310.,9.,15.5,$,$,$); -#163=IFCBEAMTYPE('1bUfYVBxH5XPwHhOb2hjQx',$,'HEA320',$,$,$,$,$,$,$); -#164=IFCMATERIALPROFILESET($,$,(#166),$); -#165=IFCRELASSOCIATESMATERIAL('2RbWMaqmX0ZecyoyXN3RCb',$,$,$,(#163),#164); -#166=IFCMATERIALPROFILE($,$,#17,#162,$,$); -#167=IFCMEMBERTYPE('1xs5gKGE9FPPSMpVCC4r89',$,'HEA320',$,$,$,$,$,$,$); -#168=IFCMATERIALPROFILESET($,$,(#170),$); -#169=IFCRELASSOCIATESMATERIAL('1TFEXUWcnDmvXs_2hg$8Xt',$,$,$,(#167),#168); -#170=IFCMATERIALPROFILE($,$,#17,#162,$,$); -#171=IFCCOLUMNTYPE('3MFt0v$7vDJ838DuvjFUDd',$,'HEA320',$,$,$,$,$,$,$); -#172=IFCMATERIALPROFILESET($,$,(#174),$); -#173=IFCRELASSOCIATESMATERIAL('0psaqmo050egoKmcX10H7a',$,$,$,(#171),#172); -#174=IFCMATERIALPROFILE($,$,#17,#162,$,$); -#175=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,330.,9.5,16.5,$,$,$); -#176=IFCBEAMTYPE('3hW34Ape1AOu26FLiJs3GL',$,'HEA340',$,$,$,$,$,$,$); -#177=IFCMATERIALPROFILESET($,$,(#179),$); -#178=IFCRELASSOCIATESMATERIAL('0g33ufxNvA6BB6$GLtAQBU',$,$,$,(#176),#177); -#179=IFCMATERIALPROFILE($,$,#17,#175,$,$); -#180=IFCMEMBERTYPE('3XmuCr7Dz8UhHeeaTe1DiR',$,'HEA340',$,$,$,$,$,$,$); -#181=IFCMATERIALPROFILESET($,$,(#183),$); -#182=IFCRELASSOCIATESMATERIAL('1E4RG47qHEkvQc8NMaWaZ7',$,$,$,(#180),#181); -#183=IFCMATERIALPROFILE($,$,#17,#175,$,$); -#184=IFCCOLUMNTYPE('38$_GJRmXAvf$QStO3zMHu',$,'HEA340',$,$,$,$,$,$,$); -#185=IFCMATERIALPROFILESET($,$,(#187),$); -#186=IFCRELASSOCIATESMATERIAL('0PMHsrGIDBPRH1roeCTM9J',$,$,$,(#184),#185); -#187=IFCMATERIALPROFILE($,$,#17,#175,$,$); -#188=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,350.,10.,17.5,$,$,$); -#189=IFCBEAMTYPE('0$wZ9drln6cflDBuEiM$NY',$,'HEA360',$,$,$,$,$,$,$); -#190=IFCMATERIALPROFILESET($,$,(#192),$); -#191=IFCRELASSOCIATESMATERIAL('1p284$6qX64gmyNfeH1uLQ',$,$,$,(#189),#190); -#192=IFCMATERIALPROFILE($,$,#17,#188,$,$); -#193=IFCMEMBERTYPE('0s1xUwilHBkvHVYlFFVY_5',$,'HEA360',$,$,$,$,$,$,$); -#194=IFCMATERIALPROFILESET($,$,(#196),$); -#195=IFCRELASSOCIATESMATERIAL('0VG_SjFxf0M97TOMypeakh',$,$,$,(#193),#194); -#196=IFCMATERIALPROFILE($,$,#17,#188,$,$); -#197=IFCCOLUMNTYPE('04PbQXjRzBRh87xmKqGWod',$,'HEA360',$,$,$,$,$,$,$); -#198=IFCMATERIALPROFILESET($,$,(#200),$); -#199=IFCRELASSOCIATESMATERIAL('0lq1KW7nP5buazPW_95iIv',$,$,$,(#197),#198); -#200=IFCMATERIALPROFILE($,$,#17,#188,$,$); -#201=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,390.,11.,19.,$,$,$); -#202=IFCBEAMTYPE('3UrjORt41AUQYBk_G8fIbx',$,'HEA400',$,$,$,$,$,$,$); -#203=IFCMATERIALPROFILESET($,$,(#205),$); -#204=IFCRELASSOCIATESMATERIAL('1gqUGAG0T2MeiLToIK7Fnq',$,$,$,(#202),#203); -#205=IFCMATERIALPROFILE($,$,#17,#201,$,$); -#206=IFCMEMBERTYPE('2MzmNXHe94ROTtdUh$K7zU',$,'HEA400',$,$,$,$,$,$,$); -#207=IFCMATERIALPROFILESET($,$,(#209),$); -#208=IFCRELASSOCIATESMATERIAL('21KBEmcOL4UvCD4hcQzNws',$,$,$,(#206),#207); -#209=IFCMATERIALPROFILE($,$,#17,#201,$,$); -#210=IFCCOLUMNTYPE('0lNwJkb8P40xPc4_6CJA6V',$,'HEA400',$,$,$,$,$,$,$); -#211=IFCMATERIALPROFILESET($,$,(#213),$); -#212=IFCRELASSOCIATESMATERIAL('0L5DjlUIfByx8_30ELsw9W',$,$,$,(#210),#211); -#213=IFCMATERIALPROFILE($,$,#17,#201,$,$); -#214=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,440.,11.5,21.,$,$,$); -#215=IFCBEAMTYPE('3tQHcG6fr2eQdpqX8EDY1a',$,'HEA450',$,$,$,$,$,$,$); -#216=IFCMATERIALPROFILESET($,$,(#218),$); -#217=IFCRELASSOCIATESMATERIAL('0YAYxr4PbDr9QT4TIVjgVX',$,$,$,(#215),#216); -#218=IFCMATERIALPROFILE($,$,#17,#214,$,$); -#219=IFCMEMBERTYPE('3CI0DqEOfCDvXdDGrNTE9Q',$,'HEA450',$,$,$,$,$,$,$); -#220=IFCMATERIALPROFILESET($,$,(#222),$); -#221=IFCRELASSOCIATESMATERIAL('2Izsp_Wdn9BgBzRtTtlY1G',$,$,$,(#219),#220); -#222=IFCMATERIALPROFILE($,$,#17,#214,$,$); -#223=IFCCOLUMNTYPE('0Dfh9fo6X1ghwgeWUYlLo2',$,'HEA450',$,$,$,$,$,$,$); -#224=IFCMATERIALPROFILESET($,$,(#226),$); -#225=IFCRELASSOCIATESMATERIAL('1cqRbOTRzDTA1yWmFb2YD8',$,$,$,(#223),#224); -#226=IFCMATERIALPROFILE($,$,#17,#214,$,$); -#227=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,490.,12.,23.,$,$,$); -#228=IFCBEAMTYPE('04NwGULKX0NBjLQDtOcllt',$,'HEA500',$,$,$,$,$,$,$); -#229=IFCMATERIALPROFILESET($,$,(#231),$); -#230=IFCRELASSOCIATESMATERIAL('1wzydVEUHDhwLt1sVscgiL',$,$,$,(#228),#229); -#231=IFCMATERIALPROFILE($,$,#17,#227,$,$); -#232=IFCMEMBERTYPE('0MTmi4bvr18RFmr2sb8gev',$,'HEA500',$,$,$,$,$,$,$); -#233=IFCMATERIALPROFILESET($,$,(#235),$); -#234=IFCRELASSOCIATESMATERIAL('2E1UTEoXTEaQnxz7cU0yAO',$,$,$,(#232),#233); -#235=IFCMATERIALPROFILE($,$,#17,#227,$,$); -#236=IFCCOLUMNTYPE('1CVY3IoZzEPxuUwSKqNDw$',$,'HEA500',$,$,$,$,$,$,$); -#237=IFCMATERIALPROFILESET($,$,(#239),$); -#238=IFCRELASSOCIATESMATERIAL('1LxobTSIv0VxUJSail7jkn',$,$,$,(#236),#237); -#239=IFCMATERIALPROFILE($,$,#17,#227,$,$); -#240=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,540.,12.5,24.,$,$,$); -#241=IFCBEAMTYPE('1SdjobsMH3yOqZg76mkeKx',$,'HEA550',$,$,$,$,$,$,$); -#242=IFCMATERIALPROFILESET($,$,(#244),$); -#243=IFCRELASSOCIATESMATERIAL('3UM96hhn51aeucFu6CqbaL',$,$,$,(#241),#242); -#244=IFCMATERIALPROFILE($,$,#17,#240,$,$); -#245=IFCMEMBERTYPE('0UwVk7bLvExv5sqJs1euhZ',$,'HEA550',$,$,$,$,$,$,$); -#246=IFCMATERIALPROFILESET($,$,(#248),$); -#247=IFCRELASSOCIATESMATERIAL('2EZuMaslP29hITn6qduZo3',$,$,$,(#245),#246); -#248=IFCMATERIALPROFILE($,$,#17,#240,$,$); -#249=IFCCOLUMNTYPE('2wnhJVQWP7eRs2NEiLn7Jg',$,'HEA550',$,$,$,$,$,$,$); -#250=IFCMATERIALPROFILESET($,$,(#252),$); -#251=IFCRELASSOCIATESMATERIAL('0iI3yqspPFJhLK6Hi0B1ZR',$,$,$,(#249),#250); -#252=IFCMATERIALPROFILE($,$,#17,#240,$,$); -#253=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,590.,13.,25.,$,$,$); -#254=IFCBEAMTYPE('05JPh6pMPA6eZx4uUzf$Hp',$,'HEA600',$,$,$,$,$,$,$); -#255=IFCMATERIALPROFILESET($,$,(#257),$); -#256=IFCRELASSOCIATESMATERIAL('06TJagLEjD4vdtEEJMntBr',$,$,$,(#254),#255); -#257=IFCMATERIALPROFILE($,$,#17,#253,$,$); -#258=IFCMEMBERTYPE('0RQo2jxtLFmeo8HA7CXBpg',$,'HEA600',$,$,$,$,$,$,$); -#259=IFCMATERIALPROFILESET($,$,(#261),$); -#260=IFCRELASSOCIATESMATERIAL('3BEYsyInv4YR_msjBpDdCi',$,$,$,(#258),#259); -#261=IFCMATERIALPROFILE($,$,#17,#253,$,$); -#262=IFCCOLUMNTYPE('2dNDBmL7z2axknsnY3PZTH',$,'HEA600',$,$,$,$,$,$,$); -#263=IFCMATERIALPROFILESET($,$,(#265),$); -#264=IFCRELASSOCIATESMATERIAL('3D1GGLjt5BhwXmczYaQij4',$,$,$,(#262),#263); -#265=IFCMATERIALPROFILE($,$,#17,#253,$,$); -#266=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,640.,13.5,26.,$,$,$); -#267=IFCBEAMTYPE('0lHmoI3Mn75wrOfj4i6jH5',$,'HEA650',$,$,$,$,$,$,$); -#268=IFCMATERIALPROFILESET($,$,(#270),$); -#269=IFCRELASSOCIATESMATERIAL('0HWkMxkJv6murIYkOrzDZp',$,$,$,(#267),#268); -#270=IFCMATERIALPROFILE($,$,#17,#266,$,$); -#271=IFCMEMBERTYPE('1YELCTvKLDc9LNNBn3HAVz',$,'HEA650',$,$,$,$,$,$,$); -#272=IFCMATERIALPROFILESET($,$,(#274),$); -#273=IFCRELASSOCIATESMATERIAL('2ZNNkP4Tr4HvdHkBeaxF1y',$,$,$,(#271),#272); -#274=IFCMATERIALPROFILE($,$,#17,#266,$,$); -#275=IFCCOLUMNTYPE('3bUP30dW53su6NEJFkjrGJ',$,'HEA650',$,$,$,$,$,$,$); -#276=IFCMATERIALPROFILESET($,$,(#278),$); -#277=IFCRELASSOCIATESMATERIAL('17IzTaI2bCaRHrrbgSE41$',$,$,$,(#275),#276); -#278=IFCMATERIALPROFILE($,$,#17,#266,$,$); -#279=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,690.,14.5,27.,$,$,$); -#280=IFCBEAMTYPE('1t_P$_OXL5BfZ3JOSo_aVA',$,'HEA700',$,$,$,$,$,$,$); -#281=IFCMATERIALPROFILESET($,$,(#283),$); -#282=IFCRELASSOCIATESMATERIAL('0ZN06obAPC4eJAKAxiuL4P',$,$,$,(#280),#281); -#283=IFCMATERIALPROFILE($,$,#17,#279,$,$); -#284=IFCMEMBERTYPE('1grhWD0QHFgAR6sJAcyqIQ',$,'HEA700',$,$,$,$,$,$,$); -#285=IFCMATERIALPROFILESET($,$,(#287),$); -#286=IFCRELASSOCIATESMATERIAL('1mmi$aLU16A90Y4Icareoa',$,$,$,(#284),#285); -#287=IFCMATERIALPROFILE($,$,#17,#279,$,$); -#288=IFCCOLUMNTYPE('3jABOQhQf4fuHMJ6JMTobz',$,'HEA700',$,$,$,$,$,$,$); -#289=IFCMATERIALPROFILESET($,$,(#291),$); -#290=IFCRELASSOCIATESMATERIAL('2KQAjgHxb80QtMJOAj8PUq',$,$,$,(#288),#289); -#291=IFCMATERIALPROFILE($,$,#17,#279,$,$); -#292=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,790.,15.,28.,$,$,$); -#293=IFCBEAMTYPE('2zYRS7UUjEox5mxMNFg1GG',$,'HEA800',$,$,$,$,$,$,$); -#294=IFCMATERIALPROFILESET($,$,(#296),$); -#295=IFCRELASSOCIATESMATERIAL('1vocLsDGbCzPtcdU$vIlZn',$,$,$,(#293),#294); -#296=IFCMATERIALPROFILE($,$,#17,#292,$,$); -#297=IFCMEMBERTYPE('3aPt2lt4TE7x8OMrZZqDVD',$,'HEA800',$,$,$,$,$,$,$); -#298=IFCMATERIALPROFILESET($,$,(#300),$); -#299=IFCRELASSOCIATESMATERIAL('2Jwk0AjB5Fc88IJUpD$V3z',$,$,$,(#297),#298); -#300=IFCMATERIALPROFILE($,$,#17,#292,$,$); -#301=IFCCOLUMNTYPE('001CBo0anBrfD3iB_c6h_0',$,'HEA800',$,$,$,$,$,$,$); -#302=IFCMATERIALPROFILESET($,$,(#304),$); -#303=IFCRELASSOCIATESMATERIAL('1B19cvYsn5fOkstxQgLN1b',$,$,$,(#301),#302); -#304=IFCMATERIALPROFILE($,$,#17,#292,$,$); -#305=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,890.,16.,30.,$,$,$); -#306=IFCBEAMTYPE('2esF6Wfm1C0Bea0ItlS90M',$,'HEA900',$,$,$,$,$,$,$); -#307=IFCMATERIALPROFILESET($,$,(#309),$); -#308=IFCRELASSOCIATESMATERIAL('1p3SGKqfLCmen$H2ocvKt$',$,$,$,(#306),#307); -#309=IFCMATERIALPROFILE($,$,#17,#305,$,$); -#310=IFCMEMBERTYPE('3DBKDwn7vDXhLNpX$937Hw',$,'HEA900',$,$,$,$,$,$,$); -#311=IFCMATERIALPROFILESET($,$,(#313),$); -#312=IFCRELASSOCIATESMATERIAL('2caOjvpXv0qg3mWXGtOjIx',$,$,$,(#310),#311); -#313=IFCMATERIALPROFILE($,$,#17,#305,$,$); -#314=IFCCOLUMNTYPE('1FmFF6$59FTg1o1bX9dgJ2',$,'HEA900',$,$,$,$,$,$,$); -#315=IFCMATERIALPROFILESET($,$,(#317),$); -#316=IFCRELASSOCIATESMATERIAL('3fFr7JM6v2pAUpzOJTCRn0',$,$,$,(#314),#315); -#317=IFCMATERIALPROFILE($,$,#17,#305,$,$); -#318=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,990.,16.5,31.,$,$,$); -#319=IFCBEAMTYPE('3pV_sKZSLBPwX2f$EV4eg0',$,'HEA1000',$,$,$,$,$,$,$); -#320=IFCMATERIALPROFILESET($,$,(#322),$); -#321=IFCRELASSOCIATESMATERIAL('1GI4woAzr8NwfqykqRm8I0',$,$,$,(#319),#320); -#322=IFCMATERIALPROFILE($,$,#17,#318,$,$); -#323=IFCMEMBERTYPE('11WPTzsLj3SxzpGDvVm$_E',$,'HEA1000',$,$,$,$,$,$,$); -#324=IFCMATERIALPROFILESET($,$,(#326),$); -#325=IFCRELASSOCIATESMATERIAL('1PinDBCZX0dgW39DT7DUfy',$,$,$,(#323),#324); -#326=IFCMATERIALPROFILE($,$,#17,#318,$,$); -#327=IFCCOLUMNTYPE('1M0Sz7mnb3MhlRlJXkjemC',$,'HEA1000',$,$,$,$,$,$,$); -#328=IFCMATERIALPROFILESET($,$,(#330),$); -#329=IFCRELASSOCIATESMATERIAL('0ILKXIEK5DU8WX_haOrGMy',$,$,$,(#327),#328); -#330=IFCMATERIALPROFILE($,$,#17,#318,$,$); -#331=IFCISHAPEPROFILEDEF(.AREA.,$,$,100.,91.,4.2,5.5,$,$,$); -#332=IFCBEAMTYPE('2aAqk_b_59mOGAgiUH5JT4',$,'HEAA100',$,$,$,$,$,$,$); -#333=IFCMATERIALPROFILESET($,$,(#335),$); -#334=IFCRELASSOCIATESMATERIAL('2yBYwjHZv5nwRv$BesbE1S',$,$,$,(#332),#333); -#335=IFCMATERIALPROFILE($,$,#17,#331,$,$); -#336=IFCMEMBERTYPE('0AL1l204H0QhscqzllloNf',$,'HEAA100',$,$,$,$,$,$,$); -#337=IFCMATERIALPROFILESET($,$,(#339),$); -#338=IFCRELASSOCIATESMATERIAL('0AwMCgkxz0GfofXGn5T49a',$,$,$,(#336),#337); -#339=IFCMATERIALPROFILE($,$,#17,#331,$,$); -#340=IFCCOLUMNTYPE('3CI94mXvfEV84dFUlTj6Cn',$,'HEAA100',$,$,$,$,$,$,$); -#341=IFCMATERIALPROFILESET($,$,(#343),$); -#342=IFCRELASSOCIATESMATERIAL('2E3GYaVrPBUQj0OilUL22H',$,$,$,(#340),#341); -#343=IFCMATERIALPROFILE($,$,#17,#331,$,$); -#344=IFCISHAPEPROFILEDEF(.AREA.,$,$,120.,109.,4.2,5.5,$,$,$); -#345=IFCBEAMTYPE('3V$U3eCeD2u8g_3h_lbgUR',$,'HEAA120',$,$,$,$,$,$,$); -#346=IFCMATERIALPROFILESET($,$,(#348),$); -#347=IFCRELASSOCIATESMATERIAL('0Z1cSVxvXDrwCKpJyNRv2A',$,$,$,(#345),#346); -#348=IFCMATERIALPROFILE($,$,#17,#344,$,$); -#349=IFCMEMBERTYPE('17OO7BA_58OBDhIlcuqF4H',$,'HEAA120',$,$,$,$,$,$,$); -#350=IFCMATERIALPROFILESET($,$,(#352),$); -#351=IFCRELASSOCIATESMATERIAL('3n4Buq5d963OBT2iYx4z1A',$,$,$,(#349),#350); -#352=IFCMATERIALPROFILE($,$,#17,#344,$,$); -#353=IFCCOLUMNTYPE('1ShrnycjnBTgM4uxI2kzvF',$,'HEAA120',$,$,$,$,$,$,$); -#354=IFCMATERIALPROFILESET($,$,(#356),$); -#355=IFCRELASSOCIATESMATERIAL('0GVTMh_CnEpv5Z3gQ5qioz',$,$,$,(#353),#354); -#356=IFCMATERIALPROFILE($,$,#17,#344,$,$); -#357=IFCISHAPEPROFILEDEF(.AREA.,$,$,140.,128.,4.3,6.,$,$,$); -#358=IFCBEAMTYPE('3Tk0P5_1DD2wPrYJA9GSzP',$,'HEAA140',$,$,$,$,$,$,$); -#359=IFCMATERIALPROFILESET($,$,(#361),$); -#360=IFCRELASSOCIATESMATERIAL('2p$uHypkj1$xGl$8RcIdjt',$,$,$,(#358),#359); -#361=IFCMATERIALPROFILE($,$,#17,#357,$,$); -#362=IFCMEMBERTYPE('2uBwP8Fo5AyPIJei2nFu6M',$,'HEAA140',$,$,$,$,$,$,$); -#363=IFCMATERIALPROFILESET($,$,(#365),$); -#364=IFCRELASSOCIATESMATERIAL('2$8s6eru12d9vDg576Ccdk',$,$,$,(#362),#363); -#365=IFCMATERIALPROFILE($,$,#17,#357,$,$); -#366=IFCCOLUMNTYPE('1AyvtM1hfAb9lmTDEv9P63',$,'HEAA140',$,$,$,$,$,$,$); -#367=IFCMATERIALPROFILESET($,$,(#369),$); -#368=IFCRELASSOCIATESMATERIAL('0d7h5gGdTAuPdCM_qppkGS',$,$,$,(#366),#367); -#369=IFCMATERIALPROFILE($,$,#17,#357,$,$); -#370=IFCISHAPEPROFILEDEF(.AREA.,$,$,160.,148.,4.5,7.,$,$,$); -#371=IFCBEAMTYPE('1zp5fxlxn0eAPXBcljhyMX',$,'HEAA160',$,$,$,$,$,$,$); -#372=IFCMATERIALPROFILESET($,$,(#374),$); -#373=IFCRELASSOCIATESMATERIAL('0UsiHca2vCqAAOmjSF1sPh',$,$,$,(#371),#372); -#374=IFCMATERIALPROFILE($,$,#17,#370,$,$); -#375=IFCMEMBERTYPE('2$jCLLQdz1L9_kbReeoJb3',$,'HEAA160',$,$,$,$,$,$,$); -#376=IFCMATERIALPROFILESET($,$,(#378),$); -#377=IFCRELASSOCIATESMATERIAL('0yNJs0B816qfM9uS0X0GWX',$,$,$,(#375),#376); -#378=IFCMATERIALPROFILE($,$,#17,#370,$,$); -#379=IFCCOLUMNTYPE('0Ck6RhpkvBYRISg2g_$lE4',$,'HEAA160',$,$,$,$,$,$,$); -#380=IFCMATERIALPROFILESET($,$,(#382),$); -#381=IFCRELASSOCIATESMATERIAL('00xixU3FL1RRo6bKg3Qjkd',$,$,$,(#379),#380); -#382=IFCMATERIALPROFILE($,$,#17,#370,$,$); -#383=IFCISHAPEPROFILEDEF(.AREA.,$,$,180.,167.,5.,7.5,$,$,$); -#384=IFCBEAMTYPE('1rIql4J7bFKuwf1gagiMmi',$,'HEAA180',$,$,$,$,$,$,$); -#385=IFCMATERIALPROFILESET($,$,(#387),$); -#386=IFCRELASSOCIATESMATERIAL('39Dobupa15bBAXKJpKBVPq',$,$,$,(#384),#385); -#387=IFCMATERIALPROFILE($,$,#17,#383,$,$); -#388=IFCMEMBERTYPE('3vqIBmkW15BeJgun2QfBHu',$,'HEAA180',$,$,$,$,$,$,$); -#389=IFCMATERIALPROFILESET($,$,(#391),$); -#390=IFCRELASSOCIATESMATERIAL('1tpR_ZgSb9MRwiMF6YkRXk',$,$,$,(#388),#389); -#391=IFCMATERIALPROFILE($,$,#17,#383,$,$); -#392=IFCCOLUMNTYPE('31hBqeb7f2CPObApJ9OuC5',$,'HEAA180',$,$,$,$,$,$,$); -#393=IFCMATERIALPROFILESET($,$,(#395),$); -#394=IFCRELASSOCIATESMATERIAL('1X1FPI7gf8reyWO8nVzoeo',$,$,$,(#392),#393); -#395=IFCMATERIALPROFILE($,$,#17,#383,$,$); -#396=IFCISHAPEPROFILEDEF(.AREA.,$,$,200.,186.,5.5,8.,$,$,$); -#397=IFCBEAMTYPE('1$4odaKzL0zvj_GIWPIj7l',$,'HEAA200',$,$,$,$,$,$,$); -#398=IFCMATERIALPROFILESET($,$,(#400),$); -#399=IFCRELASSOCIATESMATERIAL('3WZK3BEM16Fe6scEZm5SVi',$,$,$,(#397),#398); -#400=IFCMATERIALPROFILE($,$,#17,#396,$,$); -#401=IFCMEMBERTYPE('04AyZNNFD5$vBbv3UfGzYk',$,'HEAA200',$,$,$,$,$,$,$); -#402=IFCMATERIALPROFILESET($,$,(#404),$); -#403=IFCRELASSOCIATESMATERIAL('3pw2nGM3P01fRE1Y607sNr',$,$,$,(#401),#402); -#404=IFCMATERIALPROFILE($,$,#17,#396,$,$); -#405=IFCCOLUMNTYPE('24nfUCGEP9hfuV_CWDrR0y',$,'HEAA200',$,$,$,$,$,$,$); -#406=IFCMATERIALPROFILESET($,$,(#408),$); -#407=IFCRELASSOCIATESMATERIAL('1Fw1TbxVXC3AdqZd0a6kWa',$,$,$,(#405),#406); -#408=IFCMATERIALPROFILE($,$,#17,#396,$,$); -#409=IFCISHAPEPROFILEDEF(.AREA.,$,$,220.,205.,6.,8.5,$,$,$); -#410=IFCBEAMTYPE('2Tl3R4eab3cQ_jHceh5Nod',$,'HEAA220',$,$,$,$,$,$,$); -#411=IFCMATERIALPROFILESET($,$,(#413),$); -#412=IFCRELASSOCIATESMATERIAL('3S5o0mHszBe8L$7rr2tqe8',$,$,$,(#410),#411); -#413=IFCMATERIALPROFILE($,$,#17,#409,$,$); -#414=IFCMEMBERTYPE('0r_Cr1WID6Cuo2krpQv0M$',$,'HEAA220',$,$,$,$,$,$,$); -#415=IFCMATERIALPROFILESET($,$,(#417),$); -#416=IFCRELASSOCIATESMATERIAL('3fwtZsSFbDB8kolDpTALJ_',$,$,$,(#414),#415); -#417=IFCMATERIALPROFILE($,$,#17,#409,$,$); -#418=IFCCOLUMNTYPE('2NvWd8sgP2dvAKUn2l$C_Y',$,'HEAA220',$,$,$,$,$,$,$); -#419=IFCMATERIALPROFILESET($,$,(#421),$); -#420=IFCRELASSOCIATESMATERIAL('0Ul2YDcaT72xrLPD9q9D1t',$,$,$,(#418),#419); -#421=IFCMATERIALPROFILE($,$,#17,#409,$,$); -#422=IFCISHAPEPROFILEDEF(.AREA.,$,$,240.,224.,6.5,9.,$,$,$); -#423=IFCBEAMTYPE('3QFcSgnZHCGePQgaz19SZ1',$,'HEAA240',$,$,$,$,$,$,$); -#424=IFCMATERIALPROFILESET($,$,(#426),$); -#425=IFCRELASSOCIATESMATERIAL('1QP6O_9CLEOv3PExDBrhgD',$,$,$,(#423),#424); -#426=IFCMATERIALPROFILE($,$,#17,#422,$,$); -#427=IFCMEMBERTYPE('1v16TCkJfDiPbRm9kl$AyD',$,'HEAA240',$,$,$,$,$,$,$); -#428=IFCMATERIALPROFILESET($,$,(#430),$); -#429=IFCRELASSOCIATESMATERIAL('1omKx7xiXCDP47wjE_QlpU',$,$,$,(#427),#428); -#430=IFCMATERIALPROFILE($,$,#17,#422,$,$); -#431=IFCCOLUMNTYPE('12sIJRZKT4Sx_KHWyiCHkY',$,'HEAA240',$,$,$,$,$,$,$); -#432=IFCMATERIALPROFILESET($,$,(#434),$); -#433=IFCRELASSOCIATESMATERIAL('01Fz4an2X4Kw4ROmN0_KaU',$,$,$,(#431),#432); -#434=IFCMATERIALPROFILE($,$,#17,#422,$,$); -#435=IFCISHAPEPROFILEDEF(.AREA.,$,$,260.,244.,6.5,9.5,$,$,$); -#436=IFCBEAMTYPE('2AoUNcyInCGuU5wEf3BpGx',$,'HEAA260',$,$,$,$,$,$,$); -#437=IFCMATERIALPROFILESET($,$,(#439),$); -#438=IFCRELASSOCIATESMATERIAL('1kSs3AevX8fwk0LgLLMLuf',$,$,$,(#436),#437); -#439=IFCMATERIALPROFILE($,$,#17,#435,$,$); -#440=IFCMEMBERTYPE('1FTDrvH9r079jfBEfyJ8kn',$,'HEAA260',$,$,$,$,$,$,$); -#441=IFCMATERIALPROFILESET($,$,(#443),$); -#442=IFCRELASSOCIATESMATERIAL('2kQS$WqNrEM8LuZL23Nxsj',$,$,$,(#440),#441); -#443=IFCMATERIALPROFILE($,$,#17,#435,$,$); -#444=IFCCOLUMNTYPE('3u$UGtdkPBqge$sIXGRMZa',$,'HEAA260',$,$,$,$,$,$,$); -#445=IFCMATERIALPROFILESET($,$,(#447),$); -#446=IFCRELASSOCIATESMATERIAL('1RcYlwalD0Zuvp3mkF5oOi',$,$,$,(#444),#445); -#447=IFCMATERIALPROFILE($,$,#17,#435,$,$); -#448=IFCISHAPEPROFILEDEF(.AREA.,$,$,280.,264.,7.,10.,$,$,$); -#449=IFCBEAMTYPE('1dxpjK8U922BPijI13Gk8f',$,'HEAA280',$,$,$,$,$,$,$); -#450=IFCMATERIALPROFILESET($,$,(#452),$); -#451=IFCRELASSOCIATESMATERIAL('00dzmxK1b3f96DSlgcXmOt',$,$,$,(#449),#450); -#452=IFCMATERIALPROFILE($,$,#17,#448,$,$); -#453=IFCMEMBERTYPE('3pw$P4prL7fu_T7prlHu_5',$,'HEAA280',$,$,$,$,$,$,$); -#454=IFCMATERIALPROFILESET($,$,(#456),$); -#455=IFCRELASSOCIATESMATERIAL('2S6cZ1W0vDyRHhrwcNSF$6',$,$,$,(#453),#454); -#456=IFCMATERIALPROFILE($,$,#17,#448,$,$); -#457=IFCCOLUMNTYPE('3b0hUyRkz53wYrA6OvyBeR',$,'HEAA280',$,$,$,$,$,$,$); -#458=IFCMATERIALPROFILESET($,$,(#460),$); -#459=IFCRELASSOCIATESMATERIAL('0MxGgYEKL529_HYN$sGDwQ',$,$,$,(#457),#458); -#460=IFCMATERIALPROFILE($,$,#17,#448,$,$); -#461=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,283.,7.5,10.5,$,$,$); -#462=IFCBEAMTYPE('3ard$YKAfDJwop4WIT3yoe',$,'HEAA300',$,$,$,$,$,$,$); -#463=IFCMATERIALPROFILESET($,$,(#465),$); -#464=IFCRELASSOCIATESMATERIAL('2bpxDETef9whEK9l9jCs_2',$,$,$,(#462),#463); -#465=IFCMATERIALPROFILE($,$,#17,#461,$,$); -#466=IFCMEMBERTYPE('0wLgm_qHf7WROJkg_4Usu4',$,'HEAA300',$,$,$,$,$,$,$); -#467=IFCMATERIALPROFILESET($,$,(#469),$); -#468=IFCRELASSOCIATESMATERIAL('1LtJFFxcr6RfsgEekcGwjV',$,$,$,(#466),#467); -#469=IFCMATERIALPROFILE($,$,#17,#461,$,$); -#470=IFCCOLUMNTYPE('3WkYy5R5jCMBSvxDGL16jt',$,'HEAA300',$,$,$,$,$,$,$); -#471=IFCMATERIALPROFILESET($,$,(#473),$); -#472=IFCRELASSOCIATESMATERIAL('0DgERWGkD9tQnr2ipXJK5Y',$,$,$,(#470),#471); -#473=IFCMATERIALPROFILE($,$,#17,#461,$,$); -#474=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,301.,8.,11.,$,$,$); -#475=IFCBEAMTYPE('2SK85HoAfDPOqLLMY$lrPf',$,'HEAA320',$,$,$,$,$,$,$); -#476=IFCMATERIALPROFILESET($,$,(#478),$); -#477=IFCRELASSOCIATESMATERIAL('3dkpYM5tf16BgDoccnh1r8',$,$,$,(#475),#476); -#478=IFCMATERIALPROFILE($,$,#17,#474,$,$); -#479=IFCMEMBERTYPE('0aSp6gVvHFqxNaiwyDEIbS',$,'HEAA320',$,$,$,$,$,$,$); -#480=IFCMATERIALPROFILESET($,$,(#482),$); -#481=IFCRELASSOCIATESMATERIAL('1LdvepjczFQABzyOYGUtWD',$,$,$,(#479),#480); -#482=IFCMATERIALPROFILE($,$,#17,#474,$,$); -#483=IFCCOLUMNTYPE('2ejItKryzE8xG5_nlJQcGQ',$,'HEAA320',$,$,$,$,$,$,$); -#484=IFCMATERIALPROFILESET($,$,(#486),$); -#485=IFCRELASSOCIATESMATERIAL('2TKLjFjR1FcOGZcqPTsh5I',$,$,$,(#483),#484); -#486=IFCMATERIALPROFILE($,$,#17,#474,$,$); -#487=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,320.,8.5,11.5,$,$,$); -#488=IFCBEAMTYPE('3k7Nwxxz93tgnEYEDGVCwq',$,'HEAA340',$,$,$,$,$,$,$); -#489=IFCMATERIALPROFILESET($,$,(#491),$); -#490=IFCRELASSOCIATESMATERIAL('3C7GBkE2L9j8S7WowkBp5I',$,$,$,(#488),#489); -#491=IFCMATERIALPROFILE($,$,#17,#487,$,$); -#492=IFCMEMBERTYPE('3i5k4IGnb3YeNYZQX6BouO',$,'HEAA340',$,$,$,$,$,$,$); -#493=IFCMATERIALPROFILESET($,$,(#495),$); -#494=IFCRELASSOCIATESMATERIAL('0NzYiA_NX2vOuPGE3$PXDZ',$,$,$,(#492),#493); -#495=IFCMATERIALPROFILE($,$,#17,#487,$,$); -#496=IFCCOLUMNTYPE('2T86M6igXFGet0ntfgVRkz',$,'HEAA340',$,$,$,$,$,$,$); -#497=IFCMATERIALPROFILESET($,$,(#499),$); -#498=IFCRELASSOCIATESMATERIAL('1dxvffsFbDhgdl8FVLctVQ',$,$,$,(#496),#497); -#499=IFCMATERIALPROFILE($,$,#17,#487,$,$); -#500=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,339.,9.,12.,$,$,$); -#501=IFCBEAMTYPE('3wnGSWi9f4SvuR_GeHFQRy',$,'HEAA360',$,$,$,$,$,$,$); -#502=IFCMATERIALPROFILESET($,$,(#504),$); -#503=IFCRELASSOCIATESMATERIAL('2GpEy_z$f4RgNZHOdSwM2X',$,$,$,(#501),#502); -#504=IFCMATERIALPROFILE($,$,#17,#500,$,$); -#505=IFCMEMBERTYPE('134AfCYF5Bsegz$rrpjVsi',$,'HEAA360',$,$,$,$,$,$,$); -#506=IFCMATERIALPROFILESET($,$,(#508),$); -#507=IFCRELASSOCIATESMATERIAL('2HKxJ7hpz10BnR0iOZ7v9N',$,$,$,(#505),#506); -#508=IFCMATERIALPROFILE($,$,#17,#500,$,$); -#509=IFCCOLUMNTYPE('26GJrehRLFahAeilU$bQcq',$,'HEAA360',$,$,$,$,$,$,$); -#510=IFCMATERIALPROFILESET($,$,(#512),$); -#511=IFCRELASSOCIATESMATERIAL('3VeQFRHxr8a9dXXtwSzdPW',$,$,$,(#509),#510); -#512=IFCMATERIALPROFILE($,$,#17,#500,$,$); -#513=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,378.,9.5,13.,$,$,$); -#514=IFCBEAMTYPE('3x1cWv92zCuviAzkKKgbIs',$,'HEAA400',$,$,$,$,$,$,$); -#515=IFCMATERIALPROFILESET($,$,(#517),$); -#516=IFCRELASSOCIATESMATERIAL('0QPh1U4gf5GvmkNOC7BpJO',$,$,$,(#514),#515); -#517=IFCMATERIALPROFILE($,$,#17,#513,$,$); -#518=IFCMEMBERTYPE('0lDSkC8EHCWusMywLQflWk',$,'HEAA400',$,$,$,$,$,$,$); -#519=IFCMATERIALPROFILESET($,$,(#521),$); -#520=IFCRELASSOCIATESMATERIAL('2KmVEekI5CBxoxk5bS4$$m',$,$,$,(#518),#519); -#521=IFCMATERIALPROFILE($,$,#17,#513,$,$); -#522=IFCCOLUMNTYPE('2rYy$scbT4pBq2z$_9mi0B',$,'HEAA400',$,$,$,$,$,$,$); -#523=IFCMATERIALPROFILESET($,$,(#525),$); -#524=IFCRELASSOCIATESMATERIAL('2bUnWDxi5DHgcGUb0IVV1G',$,$,$,(#522),#523); -#525=IFCMATERIALPROFILE($,$,#17,#513,$,$); -#526=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,425.,10.,13.5,$,$,$); -#527=IFCBEAMTYPE('05kIo8_zTEMv4Hc0qLeawR',$,'HEAA450',$,$,$,$,$,$,$); -#528=IFCMATERIALPROFILESET($,$,(#530),$); -#529=IFCRELASSOCIATESMATERIAL('0RjoSpdif8bBaYuQ9uF9Yq',$,$,$,(#527),#528); -#530=IFCMATERIALPROFILE($,$,#17,#526,$,$); -#531=IFCMEMBERTYPE('30FD511qfAGR8tQc0qhQUX',$,'HEAA450',$,$,$,$,$,$,$); -#532=IFCMATERIALPROFILESET($,$,(#534),$); -#533=IFCRELASSOCIATESMATERIAL('3wJB5n3d50uv86vcPATALL',$,$,$,(#531),#532); -#534=IFCMATERIALPROFILE($,$,#17,#526,$,$); -#535=IFCCOLUMNTYPE('0sYqkN3Bj7suIYtcXzetBY',$,'HEAA450',$,$,$,$,$,$,$); -#536=IFCMATERIALPROFILESET($,$,(#538),$); -#537=IFCRELASSOCIATESMATERIAL('2kKSjMWuX9gedsvkjN6$OU',$,$,$,(#535),#536); -#538=IFCMATERIALPROFILE($,$,#17,#526,$,$); -#539=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,472.,10.5,14.,$,$,$); -#540=IFCBEAMTYPE('3DUvbG6XL8chJm1XG75D8s',$,'HEAA500',$,$,$,$,$,$,$); -#541=IFCMATERIALPROFILESET($,$,(#543),$); -#542=IFCRELASSOCIATESMATERIAL('31UAT399nEnPFPSVQ1MQRV',$,$,$,(#540),#541); -#543=IFCMATERIALPROFILE($,$,#17,#539,$,$); -#544=IFCMEMBERTYPE('1Baaov109CPOMdY90EyVYM',$,'HEAA500',$,$,$,$,$,$,$); -#545=IFCMATERIALPROFILESET($,$,(#547),$); -#546=IFCRELASSOCIATESMATERIAL('0VruyP3eD3PA9z3teIOeKN',$,$,$,(#544),#545); -#547=IFCMATERIALPROFILE($,$,#17,#539,$,$); -#548=IFCCOLUMNTYPE('1HR_yyLKz3H9PcKLryZrg0',$,'HEAA500',$,$,$,$,$,$,$); -#549=IFCMATERIALPROFILESET($,$,(#551),$); -#550=IFCRELASSOCIATESMATERIAL('3jRcNmFnX0jOyfNVTxzdmy',$,$,$,(#548),#549); -#551=IFCMATERIALPROFILE($,$,#17,#539,$,$); -#552=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,522.,11.5,15.,$,$,$); -#553=IFCBEAMTYPE('1$Orkc_BbFWA2sRVRhWkaI',$,'HEAA550',$,$,$,$,$,$,$); -#554=IFCMATERIALPROFILESET($,$,(#556),$); -#555=IFCRELASSOCIATESMATERIAL('1vGchfHBv8tgIXAq8Otsny',$,$,$,(#553),#554); -#556=IFCMATERIALPROFILE($,$,#17,#552,$,$); -#557=IFCMEMBERTYPE('262c2RB2PA1OrVjMoNPORC',$,'HEAA550',$,$,$,$,$,$,$); -#558=IFCMATERIALPROFILESET($,$,(#560),$); -#559=IFCRELASSOCIATESMATERIAL('0eZUvVpIT9xBJvjBYOF8rV',$,$,$,(#557),#558); -#560=IFCMATERIALPROFILE($,$,#17,#552,$,$); -#561=IFCCOLUMNTYPE('2Lsear1t10hOUzgpFMcDEP',$,'HEAA550',$,$,$,$,$,$,$); -#562=IFCMATERIALPROFILESET($,$,(#564),$); -#563=IFCRELASSOCIATESMATERIAL('0SnSoP3QXDc8hOmT0adBqt',$,$,$,(#561),#562); -#564=IFCMATERIALPROFILE($,$,#17,#552,$,$); -#565=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,571.,12.,15.5,$,$,$); -#566=IFCBEAMTYPE('04XHb26AL5UerVVFGrayMR',$,'HEAA600',$,$,$,$,$,$,$); -#567=IFCMATERIALPROFILESET($,$,(#569),$); -#568=IFCRELASSOCIATESMATERIAL('2l7rskHmX3Awa0H6EzBipX',$,$,$,(#566),#567); -#569=IFCMATERIALPROFILE($,$,#17,#565,$,$); -#570=IFCMEMBERTYPE('0gcpodH$TEAxyR2ARKK_wI',$,'HEAA600',$,$,$,$,$,$,$); -#571=IFCMATERIALPROFILESET($,$,(#573),$); -#572=IFCRELASSOCIATESMATERIAL('2x8ADe9Rr1oPP0Am0DIUlb',$,$,$,(#570),#571); -#573=IFCMATERIALPROFILE($,$,#17,#565,$,$); -#574=IFCCOLUMNTYPE('1f7P7$ATz1BfI3XHTTSQLs',$,'HEAA600',$,$,$,$,$,$,$); -#575=IFCMATERIALPROFILESET($,$,(#577),$); -#576=IFCRELASSOCIATESMATERIAL('1HgKeLXt9C6OA2Uv79amE3',$,$,$,(#574),#575); -#577=IFCMATERIALPROFILE($,$,#17,#565,$,$); -#578=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,620.,12.5,16.,$,$,$); -#579=IFCBEAMTYPE('3KFNIQpkn85hVjyjGdQ4Xv',$,'HEAA650',$,$,$,$,$,$,$); -#580=IFCMATERIALPROFILESET($,$,(#582),$); -#581=IFCRELASSOCIATESMATERIAL('08Q3dqglfFTfcucA8zdp6M',$,$,$,(#579),#580); -#582=IFCMATERIALPROFILE($,$,#17,#578,$,$); -#583=IFCMEMBERTYPE('0c_Ip0ZnD67gi_DXPnQglq',$,'HEAA650',$,$,$,$,$,$,$); -#584=IFCMATERIALPROFILESET($,$,(#586),$); -#585=IFCRELASSOCIATESMATERIAL('0HLjN3JODBmxp480S0j7Uz',$,$,$,(#583),#584); -#586=IFCMATERIALPROFILE($,$,#17,#578,$,$); -#587=IFCCOLUMNTYPE('1jRNAWoIj7P8DZXkMvlUpt',$,'HEAA650',$,$,$,$,$,$,$); -#588=IFCMATERIALPROFILESET($,$,(#590),$); -#589=IFCRELASSOCIATESMATERIAL('1dW8LlR_PEpgO8_k$5WNWH',$,$,$,(#587),#588); -#590=IFCMATERIALPROFILE($,$,#17,#578,$,$); -#591=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,670.,13.,17.,$,$,$); -#592=IFCBEAMTYPE('1sgcbvWyn41vcp5ck8j11G',$,'HEAA700',$,$,$,$,$,$,$); -#593=IFCMATERIALPROFILESET($,$,(#595),$); -#594=IFCRELASSOCIATESMATERIAL('26Ns3nRrXBPeKKzRQ1Ghb2',$,$,$,(#592),#593); -#595=IFCMATERIALPROFILE($,$,#17,#591,$,$); -#596=IFCMEMBERTYPE('1jfXiSJs50WP6J48YQKkLP',$,'HEAA700',$,$,$,$,$,$,$); -#597=IFCMATERIALPROFILESET($,$,(#599),$); -#598=IFCRELASSOCIATESMATERIAL('1LPhT7SmT4w8emHi9lSaXM',$,$,$,(#596),#597); -#599=IFCMATERIALPROFILE($,$,#17,#591,$,$); -#600=IFCCOLUMNTYPE('0dDYQ7lrD6f8ei3fEDV$AF',$,'HEAA700',$,$,$,$,$,$,$); -#601=IFCMATERIALPROFILESET($,$,(#603),$); -#602=IFCRELASSOCIATESMATERIAL('2zbq1EDeDAo9t$UeI8GCji',$,$,$,(#600),#601); -#603=IFCMATERIALPROFILE($,$,#17,#591,$,$); -#604=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,770.,14.,18.,$,$,$); -#605=IFCBEAMTYPE('0SmhQ4UNP9igJ4kdzYUCuK',$,'HEAA800',$,$,$,$,$,$,$); -#606=IFCMATERIALPROFILESET($,$,(#608),$); -#607=IFCRELASSOCIATESMATERIAL('39_$U8ae5EBQgVkbC8WQGQ',$,$,$,(#605),#606); -#608=IFCMATERIALPROFILE($,$,#17,#604,$,$); -#609=IFCMEMBERTYPE('2Tp6zWQQr6u8XUgl33wQKo',$,'HEAA800',$,$,$,$,$,$,$); -#610=IFCMATERIALPROFILESET($,$,(#612),$); -#611=IFCRELASSOCIATESMATERIAL('2iv0x5qbX669v8FJxV49ei',$,$,$,(#609),#610); -#612=IFCMATERIALPROFILE($,$,#17,#604,$,$); -#613=IFCCOLUMNTYPE('3ZYpCyBVnC3eGKkfCcNjed',$,'HEAA800',$,$,$,$,$,$,$); -#614=IFCMATERIALPROFILESET($,$,(#616),$); -#615=IFCRELASSOCIATESMATERIAL('0hBnNfHH57FPZwpCzAHP$B',$,$,$,(#613),#614); -#616=IFCMATERIALPROFILE($,$,#17,#604,$,$); -#617=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,870.,15.,20.,$,$,$); -#618=IFCBEAMTYPE('0TUB3n51v9FBzaZBVlrrPX',$,'HEAA900',$,$,$,$,$,$,$); -#619=IFCMATERIALPROFILESET($,$,(#621),$); -#620=IFCRELASSOCIATESMATERIAL('1mhYiVue1Fuh3o3tPnKxUx',$,$,$,(#618),#619); -#621=IFCMATERIALPROFILE($,$,#17,#617,$,$); -#622=IFCMEMBERTYPE('34OGp3AXPCduNAHs6soEHZ',$,'HEAA900',$,$,$,$,$,$,$); -#623=IFCMATERIALPROFILESET($,$,(#625),$); -#624=IFCRELASSOCIATESMATERIAL('1O_G4YSEDE4R4trjV0lFAF',$,$,$,(#622),#623); -#625=IFCMATERIALPROFILE($,$,#17,#617,$,$); -#626=IFCCOLUMNTYPE('0OWRu05QTDSwJmPgdEc7Y9',$,'HEAA900',$,$,$,$,$,$,$); -#627=IFCMATERIALPROFILESET($,$,(#629),$); -#628=IFCRELASSOCIATESMATERIAL('04Sok9u4L4au6jVqBR96zs',$,$,$,(#626),#627); -#629=IFCMATERIALPROFILE($,$,#17,#617,$,$); -#630=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,970.,16.,21.,$,$,$); -#631=IFCBEAMTYPE('361zaJDifFohqcpfeTHqsY',$,'HEAA1000',$,$,$,$,$,$,$); -#632=IFCMATERIALPROFILESET($,$,(#634),$); -#633=IFCRELASSOCIATESMATERIAL('2iYGSQCi55rBzzdgj5PI_C',$,$,$,(#631),#632); -#634=IFCMATERIALPROFILE($,$,#17,#630,$,$); -#635=IFCMEMBERTYPE('13x7tsS8bFG8_s86tMn1J3',$,'HEAA1000',$,$,$,$,$,$,$); -#636=IFCMATERIALPROFILESET($,$,(#638),$); -#637=IFCRELASSOCIATESMATERIAL('1Ep4mXxJ14wAO4CqQ5Tvcm',$,$,$,(#635),#636); -#638=IFCMATERIALPROFILE($,$,#17,#630,$,$); -#639=IFCCOLUMNTYPE('1NRqHr8I5BgxM_PIHvWsnj',$,'HEAA1000',$,$,$,$,$,$,$); -#640=IFCMATERIALPROFILESET($,$,(#642),$); -#641=IFCRELASSOCIATESMATERIAL('05imSUx6b9YP8DOoavrmsF',$,$,$,(#639),#640); -#642=IFCMATERIALPROFILE($,$,#17,#630,$,$); -#643=IFCISHAPEPROFILEDEF(.AREA.,$,$,100.,100.,6.,10.,$,$,$); -#644=IFCBEAMTYPE('39j7bkK659xgXPk36UoZwd',$,'HEB100',$,$,$,$,$,$,$); -#645=IFCMATERIALPROFILESET($,$,(#647),$); -#646=IFCRELASSOCIATESMATERIAL('1JBWVVzkz7oO9Lklx6Yt66',$,$,$,(#644),#645); -#647=IFCMATERIALPROFILE($,$,#17,#643,$,$); -#648=IFCMEMBERTYPE('04O4War$rBqwWI2Cm7_0p9',$,'HEB100',$,$,$,$,$,$,$); -#649=IFCMATERIALPROFILESET($,$,(#651),$); -#650=IFCRELASSOCIATESMATERIAL('23l856aKnA0P7V6XgkoECH',$,$,$,(#648),#649); -#651=IFCMATERIALPROFILE($,$,#17,#643,$,$); -#652=IFCCOLUMNTYPE('2o0TLzbqbASB_sf4dqqTjj',$,'HEB100',$,$,$,$,$,$,$); -#653=IFCMATERIALPROFILESET($,$,(#655),$); -#654=IFCRELASSOCIATESMATERIAL('3NOQizjav04xOz8DzpGvdR',$,$,$,(#652),#653); -#655=IFCMATERIALPROFILE($,$,#17,#643,$,$); -#656=IFCISHAPEPROFILEDEF(.AREA.,$,$,120.,120.,6.5,11.,$,$,$); -#657=IFCBEAMTYPE('3pIpiGZND0$hI4562EO9o6',$,'HEB120',$,$,$,$,$,$,$); -#658=IFCMATERIALPROFILESET($,$,(#660),$); -#659=IFCRELASSOCIATESMATERIAL('1jyvS$u2f6TeJ3pjBG22vj',$,$,$,(#657),#658); -#660=IFCMATERIALPROFILE($,$,#17,#656,$,$); -#661=IFCMEMBERTYPE('3oO_Gwl2D6kvuUO9QLEpET',$,'HEB120',$,$,$,$,$,$,$); -#662=IFCMATERIALPROFILESET($,$,(#664),$); -#663=IFCRELASSOCIATESMATERIAL('2I$C1EMjb0me99GkXR5mNB',$,$,$,(#661),#662); -#664=IFCMATERIALPROFILE($,$,#17,#656,$,$); -#665=IFCCOLUMNTYPE('1w2V$jWejFDuB4cYJbgF80',$,'HEB120',$,$,$,$,$,$,$); -#666=IFCMATERIALPROFILESET($,$,(#668),$); -#667=IFCRELASSOCIATESMATERIAL('2u4$FyqnXB2hoVq9cUAv3a',$,$,$,(#665),#666); -#668=IFCMATERIALPROFILE($,$,#17,#656,$,$); -#669=IFCISHAPEPROFILEDEF(.AREA.,$,$,140.,140.,7.,12.,$,$,$); -#670=IFCBEAMTYPE('1v_5V2$jTE5wnt$da$4JEd',$,'HEB140',$,$,$,$,$,$,$); -#671=IFCMATERIALPROFILESET($,$,(#673),$); -#672=IFCRELASSOCIATESMATERIAL('2o2cL9P91CduVsB9thq0dS',$,$,$,(#670),#671); -#673=IFCMATERIALPROFILE($,$,#17,#669,$,$); -#674=IFCMEMBERTYPE('1Bp1drOPzD6P09ieLcH5Jl',$,'HEB140',$,$,$,$,$,$,$); -#675=IFCMATERIALPROFILESET($,$,(#677),$); -#676=IFCRELASSOCIATESMATERIAL('2YjSOHueT0xOYdL56lLtey',$,$,$,(#674),#675); -#677=IFCMATERIALPROFILE($,$,#17,#669,$,$); -#678=IFCCOLUMNTYPE('0RdxeKvdb7QgsoWjJ$ORXv',$,'HEB140',$,$,$,$,$,$,$); -#679=IFCMATERIALPROFILESET($,$,(#681),$); -#680=IFCRELASSOCIATESMATERIAL('3pSi8oJgj3SR3GlupjyWd$',$,$,$,(#678),#679); -#681=IFCMATERIALPROFILE($,$,#17,#669,$,$); -#682=IFCISHAPEPROFILEDEF(.AREA.,$,$,160.,160.,8.,13.,$,$,$); -#683=IFCBEAMTYPE('1gc6rNUKHBtRVy7FjhxV5S',$,'HEB160',$,$,$,$,$,$,$); -#684=IFCMATERIALPROFILESET($,$,(#686),$); -#685=IFCRELASSOCIATESMATERIAL('1BY$roYcj95RKCFaNSX7Mz',$,$,$,(#683),#684); -#686=IFCMATERIALPROFILE($,$,#17,#682,$,$); -#687=IFCMEMBERTYPE('12YQ11TzL3URt8NT8o4rsn',$,'HEB160',$,$,$,$,$,$,$); -#688=IFCMATERIALPROFILESET($,$,(#690),$); -#689=IFCRELASSOCIATESMATERIAL('0D_bpu1EX8vh2EGGM5eOZi',$,$,$,(#687),#688); -#690=IFCMATERIALPROFILE($,$,#17,#682,$,$); -#691=IFCCOLUMNTYPE('2T3XejMcrDB8Lcdm1OGCj$',$,'HEB160',$,$,$,$,$,$,$); -#692=IFCMATERIALPROFILESET($,$,(#694),$); -#693=IFCRELASSOCIATESMATERIAL('1Ca3x5DjX8gQGTtKiC77Hx',$,$,$,(#691),#692); -#694=IFCMATERIALPROFILE($,$,#17,#682,$,$); -#695=IFCISHAPEPROFILEDEF(.AREA.,$,$,180.,180.,8.5,14.,$,$,$); -#696=IFCBEAMTYPE('1koAz0ZZX0LRxKSRVdp2$t',$,'HEB180',$,$,$,$,$,$,$); -#697=IFCMATERIALPROFILESET($,$,(#699),$); -#698=IFCRELASSOCIATESMATERIAL('3lGydVVej24Q$ao$hV_esu',$,$,$,(#696),#697); -#699=IFCMATERIALPROFILE($,$,#17,#695,$,$); -#700=IFCMEMBERTYPE('03foTEEbTAgAb5_3H9osqR',$,'HEB180',$,$,$,$,$,$,$); -#701=IFCMATERIALPROFILESET($,$,(#703),$); -#702=IFCRELASSOCIATESMATERIAL('0txqN2dq14Sf8iEQP5bSlX',$,$,$,(#700),#701); -#703=IFCMATERIALPROFILE($,$,#17,#695,$,$); -#704=IFCCOLUMNTYPE('152D6BDx97exGzmCwtu5SV',$,'HEB180',$,$,$,$,$,$,$); -#705=IFCMATERIALPROFILESET($,$,(#707),$); -#706=IFCRELASSOCIATESMATERIAL('0lsNl8LrrEQRA80Wh1iMWd',$,$,$,(#704),#705); -#707=IFCMATERIALPROFILE($,$,#17,#695,$,$); -#708=IFCISHAPEPROFILEDEF(.AREA.,$,$,200.,200.,9.,15.,$,$,$); -#709=IFCBEAMTYPE('0mRYNlwNT0UQBJpJ4pU0Ox',$,'HEB200',$,$,$,$,$,$,$); -#710=IFCMATERIALPROFILESET($,$,(#712),$); -#711=IFCRELASSOCIATESMATERIAL('1HyL84S859GBZQzvlQadyR',$,$,$,(#709),#710); -#712=IFCMATERIALPROFILE($,$,#17,#708,$,$); -#713=IFCMEMBERTYPE('2tJ1p$KHL0bwNgRsTgsuh0',$,'HEB200',$,$,$,$,$,$,$); -#714=IFCMATERIALPROFILESET($,$,(#716),$); -#715=IFCRELASSOCIATESMATERIAL('25bruqmBf2aPnBzcLeZGv2',$,$,$,(#713),#714); -#716=IFCMATERIALPROFILE($,$,#17,#708,$,$); -#717=IFCCOLUMNTYPE('01ZZxAqqb7Dfyfrim7B5kh',$,'HEB200',$,$,$,$,$,$,$); -#718=IFCMATERIALPROFILESET($,$,(#720),$); -#719=IFCRELASSOCIATESMATERIAL('2BKjHP5xPDIO$eiQUksJ6D',$,$,$,(#717),#718); -#720=IFCMATERIALPROFILE($,$,#17,#708,$,$); -#721=IFCISHAPEPROFILEDEF(.AREA.,$,$,220.,220.,9.5,16.,$,$,$); -#722=IFCBEAMTYPE('0fhUP__iL4uhmjBT1_nJWC',$,'HEB220',$,$,$,$,$,$,$); -#723=IFCMATERIALPROFILESET($,$,(#725),$); -#724=IFCRELASSOCIATESMATERIAL('0N50$tlfHCF9QysQ_zlgLQ',$,$,$,(#722),#723); -#725=IFCMATERIALPROFILE($,$,#17,#721,$,$); -#726=IFCMEMBERTYPE('2y95P3zGD7ovrH7FmN7gen',$,'HEB220',$,$,$,$,$,$,$); -#727=IFCMATERIALPROFILESET($,$,(#729),$); -#728=IFCRELASSOCIATESMATERIAL('1gl36fQbDCyf44uShGSYEQ',$,$,$,(#726),#727); -#729=IFCMATERIALPROFILE($,$,#17,#721,$,$); -#730=IFCCOLUMNTYPE('3Vfnceacn4Nw0dXpn8B_mV',$,'HEB220',$,$,$,$,$,$,$); -#731=IFCMATERIALPROFILESET($,$,(#733),$); -#732=IFCRELASSOCIATESMATERIAL('0I_S$W28LCcfADIUm3YFDB',$,$,$,(#730),#731); -#733=IFCMATERIALPROFILE($,$,#17,#721,$,$); -#734=IFCISHAPEPROFILEDEF(.AREA.,$,$,240.,240.,10.,17.,$,$,$); -#735=IFCBEAMTYPE('2SGzsEQsD0dQjIYMJ$IlwI',$,'HEB240',$,$,$,$,$,$,$); -#736=IFCMATERIALPROFILESET($,$,(#738),$); -#737=IFCRELASSOCIATESMATERIAL('2DvYyzhDD8MhaGFXy8HyGH',$,$,$,(#735),#736); -#738=IFCMATERIALPROFILE($,$,#17,#734,$,$); -#739=IFCMEMBERTYPE('33k27ZLET39R3umvFiAU3x',$,'HEB240',$,$,$,$,$,$,$); -#740=IFCMATERIALPROFILESET($,$,(#742),$); -#741=IFCRELASSOCIATESMATERIAL('3$oKGguMz9UfnleP8wH1is',$,$,$,(#739),#740); -#742=IFCMATERIALPROFILE($,$,#17,#734,$,$); -#743=IFCCOLUMNTYPE('2kti6CyZ93ug6Z8SGua3Nr',$,'HEB240',$,$,$,$,$,$,$); -#744=IFCMATERIALPROFILESET($,$,(#746),$); -#745=IFCRELASSOCIATESMATERIAL('38VrBV8fb0WvpngWnB$Iyo',$,$,$,(#743),#744); -#746=IFCMATERIALPROFILE($,$,#17,#734,$,$); -#747=IFCISHAPEPROFILEDEF(.AREA.,$,$,260.,260.,10.,17.5,$,$,$); -#748=IFCBEAMTYPE('0CSc1OTQbAfBDQNv2JhhjT',$,'HEB260',$,$,$,$,$,$,$); -#749=IFCMATERIALPROFILESET($,$,(#751),$); -#750=IFCRELASSOCIATESMATERIAL('1DdAR1M$P3NfJnlvN_1bMA',$,$,$,(#748),#749); -#751=IFCMATERIALPROFILE($,$,#17,#747,$,$); -#752=IFCMEMBERTYPE('3XuDN0rgvF1eV4WlfjCZdP',$,'HEB260',$,$,$,$,$,$,$); -#753=IFCMATERIALPROFILESET($,$,(#755),$); -#754=IFCRELASSOCIATESMATERIAL('2OMDZ3zP52F9b3urumKlWR',$,$,$,(#752),#753); -#755=IFCMATERIALPROFILE($,$,#17,#747,$,$); -#756=IFCCOLUMNTYPE('1jLZUKs7T3q90Wr7_j56sI',$,'HEB260',$,$,$,$,$,$,$); -#757=IFCMATERIALPROFILESET($,$,(#759),$); -#758=IFCRELASSOCIATESMATERIAL('1Tn_lHLWDFtwjgU11frl91',$,$,$,(#756),#757); -#759=IFCMATERIALPROFILE($,$,#17,#747,$,$); -#760=IFCISHAPEPROFILEDEF(.AREA.,$,$,280.,280.,10.5,18.,$,$,$); -#761=IFCBEAMTYPE('39I1aEuV51G8nPduuWBXNU',$,'HEB280',$,$,$,$,$,$,$); -#762=IFCMATERIALPROFILESET($,$,(#764),$); -#763=IFCRELASSOCIATESMATERIAL('0lcEs8dun7juIehkd0A5Hg',$,$,$,(#761),#762); -#764=IFCMATERIALPROFILE($,$,#17,#760,$,$); -#765=IFCMEMBERTYPE('2Izoif9eHAkvNiUkj9djOc',$,'HEB280',$,$,$,$,$,$,$); -#766=IFCMATERIALPROFILESET($,$,(#768),$); -#767=IFCRELASSOCIATESMATERIAL('0aVyBECDXEcx77usew45CX',$,$,$,(#765),#766); -#768=IFCMATERIALPROFILE($,$,#17,#760,$,$); -#769=IFCCOLUMNTYPE('1pLGQCiVz35BqFHY0B2gEz',$,'HEB280',$,$,$,$,$,$,$); -#770=IFCMATERIALPROFILESET($,$,(#772),$); -#771=IFCRELASSOCIATESMATERIAL('2E3CZ$wKX5_OAY4mdJ4$Zt',$,$,$,(#769),#770); -#772=IFCMATERIALPROFILE($,$,#17,#760,$,$); -#773=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,300.,11.,19.,$,$,$); -#774=IFCBEAMTYPE('0VYovVVUHAkQaGX5vbyokG',$,'HEB300',$,$,$,$,$,$,$); -#775=IFCMATERIALPROFILESET($,$,(#777),$); -#776=IFCRELASSOCIATESMATERIAL('2y1WTW3_TF2RBoCoSmBetl',$,$,$,(#774),#775); -#777=IFCMATERIALPROFILE($,$,#17,#773,$,$); -#778=IFCMEMBERTYPE('3v9qbp9pL0dviGrNxcL361',$,'HEB300',$,$,$,$,$,$,$); -#779=IFCMATERIALPROFILESET($,$,(#781),$); -#780=IFCRELASSOCIATESMATERIAL('3DzUnguA52qPDjbMfSjSrK',$,$,$,(#778),#779); -#781=IFCMATERIALPROFILE($,$,#17,#773,$,$); -#782=IFCCOLUMNTYPE('1Vqh6GO9f1jRqEMxJMh2OV',$,'HEB300',$,$,$,$,$,$,$); -#783=IFCMATERIALPROFILESET($,$,(#785),$); -#784=IFCRELASSOCIATESMATERIAL('1$ofnkPR186xjJt1TuQrAX',$,$,$,(#782),#783); -#785=IFCMATERIALPROFILE($,$,#17,#773,$,$); -#786=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,320.,11.5,20.5,$,$,$); -#787=IFCBEAMTYPE('2E9jXWw1X7SReh1i9IaXAZ',$,'HEB320',$,$,$,$,$,$,$); -#788=IFCMATERIALPROFILESET($,$,(#790),$); -#789=IFCRELASSOCIATESMATERIAL('0Ii_t0VTf18h3Gwryjbhxk',$,$,$,(#787),#788); -#790=IFCMATERIALPROFILE($,$,#17,#786,$,$); -#791=IFCMEMBERTYPE('2iHb9R7eD0O9evs03D7rOM',$,'HEB320',$,$,$,$,$,$,$); -#792=IFCMATERIALPROFILESET($,$,(#794),$); -#793=IFCRELASSOCIATESMATERIAL('15TGMT7xX1MR8XrSeNQRSI',$,$,$,(#791),#792); -#794=IFCMATERIALPROFILE($,$,#17,#786,$,$); -#795=IFCCOLUMNTYPE('2Gy5CrdZf8zQcKdP7QSWQI',$,'HEB320',$,$,$,$,$,$,$); -#796=IFCMATERIALPROFILESET($,$,(#798),$); -#797=IFCRELASSOCIATESMATERIAL('19jhjKxq9FjPTtNl0yNpch',$,$,$,(#795),#796); -#798=IFCMATERIALPROFILE($,$,#17,#786,$,$); -#799=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,340.,12.,21.5,$,$,$); -#800=IFCBEAMTYPE('2E$CmXEKfCDxUmoDesmsKq',$,'HEB340',$,$,$,$,$,$,$); -#801=IFCMATERIALPROFILESET($,$,(#803),$); -#802=IFCRELASSOCIATESMATERIAL('3VuxZwsdn3uALXqEHcXR8h',$,$,$,(#800),#801); -#803=IFCMATERIALPROFILE($,$,#17,#799,$,$); -#804=IFCMEMBERTYPE('3UqpCm2ILDNeMCSDoa2VJ$',$,'HEB340',$,$,$,$,$,$,$); -#805=IFCMATERIALPROFILESET($,$,(#807),$); -#806=IFCRELASSOCIATESMATERIAL('3TClEu41H9lA3h0TYAQhXe',$,$,$,(#804),#805); -#807=IFCMATERIALPROFILE($,$,#17,#799,$,$); -#808=IFCCOLUMNTYPE('1uZ36RPt5EYOhL7WzcX267',$,'HEB340',$,$,$,$,$,$,$); -#809=IFCMATERIALPROFILESET($,$,(#811),$); -#810=IFCRELASSOCIATESMATERIAL('1oAo2p4nD1ePUG8c0GP1tX',$,$,$,(#808),#809); -#811=IFCMATERIALPROFILE($,$,#17,#799,$,$); -#812=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,360.,12.5,22.5,$,$,$); -#813=IFCBEAMTYPE('1zbjNdRNT7qu2NwDCrfm$Y',$,'HEB360',$,$,$,$,$,$,$); -#814=IFCMATERIALPROFILESET($,$,(#816),$); -#815=IFCRELASSOCIATESMATERIAL('3cWC8jWp1BngOwZOP2l$GC',$,$,$,(#813),#814); -#816=IFCMATERIALPROFILE($,$,#17,#812,$,$); -#817=IFCMEMBERTYPE('22zZrnvlH8vAAxl_NC5N8x',$,'HEB360',$,$,$,$,$,$,$); -#818=IFCMATERIALPROFILESET($,$,(#820),$); -#819=IFCRELASSOCIATESMATERIAL('1k_jG3iI13j9GtUumSWA5b',$,$,$,(#817),#818); -#820=IFCMATERIALPROFILE($,$,#17,#812,$,$); -#821=IFCCOLUMNTYPE('1p$EssK5n88PmUP8gyMcdq',$,'HEB360',$,$,$,$,$,$,$); -#822=IFCMATERIALPROFILESET($,$,(#824),$); -#823=IFCRELASSOCIATESMATERIAL('3r9JQfV_r0s8K$c_D0zRG_',$,$,$,(#821),#822); -#824=IFCMATERIALPROFILE($,$,#17,#812,$,$); -#825=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,400.,13.5,24.,$,$,$); -#826=IFCBEAMTYPE('3gegudgM97fhwOIA1ywgKh',$,'HEB400',$,$,$,$,$,$,$); -#827=IFCMATERIALPROFILESET($,$,(#829),$); -#828=IFCRELASSOCIATESMATERIAL('2qlz_J1dn4xuhb5mgPsEX3',$,$,$,(#826),#827); -#829=IFCMATERIALPROFILE($,$,#17,#825,$,$); -#830=IFCMEMBERTYPE('2d7F8ca$D36ube2Bj8CCnu',$,'HEB400',$,$,$,$,$,$,$); -#831=IFCMATERIALPROFILESET($,$,(#833),$); -#832=IFCRELASSOCIATESMATERIAL('2EfwK_WC111QUwWiB_xc77',$,$,$,(#830),#831); -#833=IFCMATERIALPROFILE($,$,#17,#825,$,$); -#834=IFCCOLUMNTYPE('1iYNYxwmrFAQ67c4fTcY1K',$,'HEB400',$,$,$,$,$,$,$); -#835=IFCMATERIALPROFILESET($,$,(#837),$); -#836=IFCRELASSOCIATESMATERIAL('14J6A8n1n1lAMgq4rXE6Hy',$,$,$,(#834),#835); -#837=IFCMATERIALPROFILE($,$,#17,#825,$,$); -#838=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,450.,14.,26.,$,$,$); -#839=IFCBEAMTYPE('0eLqPjonbF_AXxtwtL50Kt',$,'HEB450',$,$,$,$,$,$,$); -#840=IFCMATERIALPROFILESET($,$,(#842),$); -#841=IFCRELASSOCIATESMATERIAL('0cKQ5c5avA1Rvi9gqR9KBL',$,$,$,(#839),#840); -#842=IFCMATERIALPROFILE($,$,#17,#838,$,$); -#843=IFCMEMBERTYPE('0deXRu_pD6gfAa0Y08g_mL',$,'HEB450',$,$,$,$,$,$,$); -#844=IFCMATERIALPROFILESET($,$,(#846),$); -#845=IFCRELASSOCIATESMATERIAL('3lnRn8sXP4_ebjw7gRqTEr',$,$,$,(#843),#844); -#846=IFCMATERIALPROFILE($,$,#17,#838,$,$); -#847=IFCCOLUMNTYPE('2C_VSGhj98vwl6eUrZpGMR',$,'HEB450',$,$,$,$,$,$,$); -#848=IFCMATERIALPROFILESET($,$,(#850),$); -#849=IFCRELASSOCIATESMATERIAL('07PrAbtKrAbP8ct742Jqm0',$,$,$,(#847),#848); -#850=IFCMATERIALPROFILE($,$,#17,#838,$,$); -#851=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,500.,14.5,28.,$,$,$); -#852=IFCBEAMTYPE('0lNE62jRr4RxNVeUCMzjJ8',$,'HEB500',$,$,$,$,$,$,$); -#853=IFCMATERIALPROFILESET($,$,(#855),$); -#854=IFCRELASSOCIATESMATERIAL('1Is5WEgJb2CAdXMLX$LZbz',$,$,$,(#852),#853); -#855=IFCMATERIALPROFILE($,$,#17,#851,$,$); -#856=IFCMEMBERTYPE('2NgMoM0CPBgRyTF4BepfHk',$,'HEB500',$,$,$,$,$,$,$); -#857=IFCMATERIALPROFILESET($,$,(#859),$); -#858=IFCRELASSOCIATESMATERIAL('0AHtLzsmX7yANomqKg8RuS',$,$,$,(#856),#857); -#859=IFCMATERIALPROFILE($,$,#17,#851,$,$); -#860=IFCCOLUMNTYPE('2SKq$XVBj6hgQZ9_hxE3F$',$,'HEB500',$,$,$,$,$,$,$); -#861=IFCMATERIALPROFILESET($,$,(#863),$); -#862=IFCRELASSOCIATESMATERIAL('0i0c$M9s13MOzFEwOGDNR_',$,$,$,(#860),#861); -#863=IFCMATERIALPROFILE($,$,#17,#851,$,$); -#864=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,550.,15.,29.,$,$,$); -#865=IFCBEAMTYPE('3CJ6p628PFyh13C7lAWund',$,'HEB550',$,$,$,$,$,$,$); -#866=IFCMATERIALPROFILESET($,$,(#868),$); -#867=IFCRELASSOCIATESMATERIAL('0u3TmrMtbAOPmHE9E8fE02',$,$,$,(#865),#866); -#868=IFCMATERIALPROFILE($,$,#17,#864,$,$); -#869=IFCMEMBERTYPE('1ktvAcqFjDCOlxirDqXK67',$,'HEB550',$,$,$,$,$,$,$); -#870=IFCMATERIALPROFILESET($,$,(#872),$); -#871=IFCRELASSOCIATESMATERIAL('1qbyNz6a1AdgySCXm98h5e',$,$,$,(#869),#870); -#872=IFCMATERIALPROFILE($,$,#17,#864,$,$); -#873=IFCCOLUMNTYPE('06bBoAOf10BxUH1KEne2oB',$,'HEB550',$,$,$,$,$,$,$); -#874=IFCMATERIALPROFILESET($,$,(#876),$); -#875=IFCRELASSOCIATESMATERIAL('3HU1nzd8f6UAKjCH3J3vhf',$,$,$,(#873),#874); -#876=IFCMATERIALPROFILE($,$,#17,#864,$,$); -#877=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,600.,15.5,30.,$,$,$); -#878=IFCBEAMTYPE('3rB3hha219ex1TfBJlCmU7',$,'HEB600',$,$,$,$,$,$,$); -#879=IFCMATERIALPROFILESET($,$,(#881),$); -#880=IFCRELASSOCIATESMATERIAL('2BQLZfkJL268yWwJ9s9VEg',$,$,$,(#878),#879); -#881=IFCMATERIALPROFILE($,$,#17,#877,$,$); -#882=IFCMEMBERTYPE('0bjj6W7cPEPf0Hb3shvAC1',$,'HEB600',$,$,$,$,$,$,$); -#883=IFCMATERIALPROFILESET($,$,(#885),$); -#884=IFCRELASSOCIATESMATERIAL('21p9qPLSP16Qk6W6suJ1WB',$,$,$,(#882),#883); -#885=IFCMATERIALPROFILE($,$,#17,#877,$,$); -#886=IFCCOLUMNTYPE('27FGo2GL5FpRj2zRrnZiFx',$,'HEB600',$,$,$,$,$,$,$); -#887=IFCMATERIALPROFILESET($,$,(#889),$); -#888=IFCRELASSOCIATESMATERIAL('2zQe1rQE16$BQ8IqBEmS9p',$,$,$,(#886),#887); -#889=IFCMATERIALPROFILE($,$,#17,#877,$,$); -#890=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,650.,16.,31.,$,$,$); -#891=IFCBEAMTYPE('0mPamXXG57$RQIQc_aLumQ',$,'HEB650',$,$,$,$,$,$,$); -#892=IFCMATERIALPROFILESET($,$,(#894),$); -#893=IFCRELASSOCIATESMATERIAL('0jthnrUcn5seWgwQGLIXMn',$,$,$,(#891),#892); -#894=IFCMATERIALPROFILE($,$,#17,#890,$,$); -#895=IFCMEMBERTYPE('10joGtDtD0heXdUOcSp3y8',$,'HEB650',$,$,$,$,$,$,$); -#896=IFCMATERIALPROFILESET($,$,(#898),$); -#897=IFCRELASSOCIATESMATERIAL('2578VILkbFmhq7Dyc_ndUo',$,$,$,(#895),#896); -#898=IFCMATERIALPROFILE($,$,#17,#890,$,$); -#899=IFCCOLUMNTYPE('29mSEZX$P7v9klHdLXOwEf',$,'HEB650',$,$,$,$,$,$,$); -#900=IFCMATERIALPROFILESET($,$,(#902),$); -#901=IFCRELASSOCIATESMATERIAL('3BtUFovOX8ax0sF3VY1mvv',$,$,$,(#899),#900); -#902=IFCMATERIALPROFILE($,$,#17,#890,$,$); -#903=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,700.,17.,32.,$,$,$); -#904=IFCBEAMTYPE('2QIOQuDgLCseASUr9yaaT5',$,'HEB700',$,$,$,$,$,$,$); -#905=IFCMATERIALPROFILESET($,$,(#907),$); -#906=IFCRELASSOCIATESMATERIAL('1Yg2zOhaP42vax4apgYyig',$,$,$,(#904),#905); -#907=IFCMATERIALPROFILE($,$,#17,#903,$,$); -#908=IFCMEMBERTYPE('3TcfGRPfHFmfG3m_CG4bDL',$,'HEB700',$,$,$,$,$,$,$); -#909=IFCMATERIALPROFILESET($,$,(#911),$); -#910=IFCRELASSOCIATESMATERIAL('3TxWb6omfDMBCcVa8BSQVL',$,$,$,(#908),#909); -#911=IFCMATERIALPROFILE($,$,#17,#903,$,$); -#912=IFCCOLUMNTYPE('3vGdusxbPA9vn2MrG2KI2S',$,'HEB700',$,$,$,$,$,$,$); -#913=IFCMATERIALPROFILESET($,$,(#915),$); -#914=IFCRELASSOCIATESMATERIAL('23kx19$UT7aA4ILzGgIHNb',$,$,$,(#912),#913); -#915=IFCMATERIALPROFILE($,$,#17,#903,$,$); -#916=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,800.,17.5,33.,$,$,$); -#917=IFCBEAMTYPE('0S6phAmAvCuecBAmHo4Jja',$,'HEB800',$,$,$,$,$,$,$); -#918=IFCMATERIALPROFILESET($,$,(#920),$); -#919=IFCRELASSOCIATESMATERIAL('1xvgO25xP1RBL11nR6ZTlF',$,$,$,(#917),#918); -#920=IFCMATERIALPROFILE($,$,#17,#916,$,$); -#921=IFCMEMBERTYPE('2pDfMTrpn4TOHVhuvqILB0',$,'HEB800',$,$,$,$,$,$,$); -#922=IFCMATERIALPROFILESET($,$,(#924),$); -#923=IFCRELASSOCIATESMATERIAL('2V8eA963b2VvWCt$QCQaX5',$,$,$,(#921),#922); -#924=IFCMATERIALPROFILE($,$,#17,#916,$,$); -#925=IFCCOLUMNTYPE('28Xzi$EZrCJ94jbQAQR$O8',$,'HEB800',$,$,$,$,$,$,$); -#926=IFCMATERIALPROFILESET($,$,(#928),$); -#927=IFCRELASSOCIATESMATERIAL('2ltbegYED758Jv_2etkhfo',$,$,$,(#925),#926); -#928=IFCMATERIALPROFILE($,$,#17,#916,$,$); -#929=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,900.,18.5,35.,$,$,$); -#930=IFCBEAMTYPE('3ZOPZGdYDEYwgEyjHnZxhi',$,'HEB900',$,$,$,$,$,$,$); -#931=IFCMATERIALPROFILESET($,$,(#933),$); -#932=IFCRELASSOCIATESMATERIAL('21FIrycS1FVuUgdwOYwiHY',$,$,$,(#930),#931); -#933=IFCMATERIALPROFILE($,$,#17,#929,$,$); -#934=IFCMEMBERTYPE('0AjhqoqrP3JuDTyv_ryKSx',$,'HEB900',$,$,$,$,$,$,$); -#935=IFCMATERIALPROFILESET($,$,(#937),$); -#936=IFCRELASSOCIATESMATERIAL('054NKaUYPE6P1njI3C5LPz',$,$,$,(#934),#935); -#937=IFCMATERIALPROFILE($,$,#17,#929,$,$); -#938=IFCCOLUMNTYPE('1PN0973fjAPPm44YRvKxA8',$,'HEB900',$,$,$,$,$,$,$); -#939=IFCMATERIALPROFILESET($,$,(#941),$); -#940=IFCRELASSOCIATESMATERIAL('21vOmWnqj7SRiD1EYSw4lg',$,$,$,(#938),#939); -#941=IFCMATERIALPROFILE($,$,#17,#929,$,$); -#942=IFCISHAPEPROFILEDEF(.AREA.,$,$,300.,1000.,19.,36.,$,$,$); -#943=IFCBEAMTYPE('14SumT0q5AT9bS4gwiXHAK',$,'HEB1000',$,$,$,$,$,$,$); -#944=IFCMATERIALPROFILESET($,$,(#946),$); -#945=IFCRELASSOCIATESMATERIAL('3CumRcPbX4NPQ6jhJb7aqJ',$,$,$,(#943),#944); -#946=IFCMATERIALPROFILE($,$,#17,#942,$,$); -#947=IFCMEMBERTYPE('2POqW$Ei1DHuAlxuCDXLtD',$,'HEB1000',$,$,$,$,$,$,$); -#948=IFCMATERIALPROFILESET($,$,(#950),$); -#949=IFCRELASSOCIATESMATERIAL('1u58C6311FYgY4vr26fIdy',$,$,$,(#947),#948); -#950=IFCMATERIALPROFILE($,$,#17,#942,$,$); -#951=IFCCOLUMNTYPE('2D6JvQGDj12RJgaVvXQBJO',$,'HEB1000',$,$,$,$,$,$,$); -#952=IFCMATERIALPROFILESET($,$,(#954),$); -#953=IFCRELASSOCIATESMATERIAL('0rNVjweFD5NgpOsQ4d39xD',$,$,$,(#951),#952); -#954=IFCMATERIALPROFILE($,$,#17,#942,$,$); -#955=IFCISHAPEPROFILEDEF(.AREA.,$,$,106.,120.,12.,20.,$,$,$); -#956=IFCBEAMTYPE('1e_ynT5yrANxrKo4oYbh_n',$,'HEM100',$,$,$,$,$,$,$); -#957=IFCMATERIALPROFILESET($,$,(#959),$); -#958=IFCRELASSOCIATESMATERIAL('3ZnCq7ewj4URig68WcfEvw',$,$,$,(#956),#957); -#959=IFCMATERIALPROFILE($,$,#17,#955,$,$); -#960=IFCMEMBERTYPE('2SDej7tuXE5fLkSGT947o1',$,'HEM100',$,$,$,$,$,$,$); -#961=IFCMATERIALPROFILESET($,$,(#963),$); -#962=IFCRELASSOCIATESMATERIAL('2CAGi6LBPAgf8aFENUHrYD',$,$,$,(#960),#961); -#963=IFCMATERIALPROFILE($,$,#17,#955,$,$); -#964=IFCCOLUMNTYPE('28rfa$USHC0xuJkWCNgUdA',$,'HEM100',$,$,$,$,$,$,$); -#965=IFCMATERIALPROFILESET($,$,(#967),$); -#966=IFCRELASSOCIATESMATERIAL('1jQUncuEvE2gFEDxe4L5ra',$,$,$,(#964),#965); -#967=IFCMATERIALPROFILE($,$,#17,#955,$,$); -#968=IFCISHAPEPROFILEDEF(.AREA.,$,$,126.,140.,12.5,21.,$,$,$); -#969=IFCBEAMTYPE('37HGFpKe94$e9N30a_yrM$',$,'HEM120',$,$,$,$,$,$,$); -#970=IFCMATERIALPROFILESET($,$,(#972),$); -#971=IFCRELASSOCIATESMATERIAL('11CYrFvaf4eO2fngKX19ah',$,$,$,(#969),#970); -#972=IFCMATERIALPROFILE($,$,#17,#968,$,$); -#973=IFCMEMBERTYPE('0J6jF9Gz9F1O89x3D$KV9D',$,'HEM120',$,$,$,$,$,$,$); -#974=IFCMATERIALPROFILESET($,$,(#976),$); -#975=IFCRELASSOCIATESMATERIAL('2NXUxQFF5AQwg2Set_2hdr',$,$,$,(#973),#974); -#976=IFCMATERIALPROFILE($,$,#17,#968,$,$); -#977=IFCCOLUMNTYPE('3M9OcGBe9BmvfrA9WsoN4N',$,'HEM120',$,$,$,$,$,$,$); -#978=IFCMATERIALPROFILESET($,$,(#980),$); -#979=IFCRELASSOCIATESMATERIAL('0AnEYObxfEzf2ejQyMKMYD',$,$,$,(#977),#978); -#980=IFCMATERIALPROFILE($,$,#17,#968,$,$); -#981=IFCISHAPEPROFILEDEF(.AREA.,$,$,146.,160.,13.,22.,$,$,$); -#982=IFCBEAMTYPE('2W0CrQS$1D7BYaCn_T9yta',$,'HEM140',$,$,$,$,$,$,$); -#983=IFCMATERIALPROFILESET($,$,(#985),$); -#984=IFCRELASSOCIATESMATERIAL('2Vur$cklz5Zg1MjhYJTNHh',$,$,$,(#982),#983); -#985=IFCMATERIALPROFILE($,$,#17,#981,$,$); -#986=IFCMEMBERTYPE('2OAKH4WwD5DxajwQxQlqAT',$,'HEM140',$,$,$,$,$,$,$); -#987=IFCMATERIALPROFILESET($,$,(#989),$); -#988=IFCRELASSOCIATESMATERIAL('224lmN_or8Xwkei6Wr1y0I',$,$,$,(#986),#987); -#989=IFCMATERIALPROFILE($,$,#17,#981,$,$); -#990=IFCCOLUMNTYPE('3wlJGhQqzBbBDHeKGZWQrE',$,'HEM140',$,$,$,$,$,$,$); -#991=IFCMATERIALPROFILESET($,$,(#993),$); -#992=IFCRELASSOCIATESMATERIAL('0ANGW_qz9DgBM90dcztu$q',$,$,$,(#990),#991); -#993=IFCMATERIALPROFILE($,$,#17,#981,$,$); -#994=IFCISHAPEPROFILEDEF(.AREA.,$,$,166.,180.,14.,23.,$,$,$); -#995=IFCBEAMTYPE('07PUMk9$58FfdM_jk7t5dv',$,'HEM160',$,$,$,$,$,$,$); -#996=IFCMATERIALPROFILESET($,$,(#998),$); -#997=IFCRELASSOCIATESMATERIAL('11YobKfFvCqRGpPLpmJLRT',$,$,$,(#995),#996); -#998=IFCMATERIALPROFILE($,$,#17,#994,$,$); -#999=IFCMEMBERTYPE('20sz3n9G9DIelXJ0LtwYzb',$,'HEM160',$,$,$,$,$,$,$); -#1000=IFCMATERIALPROFILESET($,$,(#1002),$); -#1001=IFCRELASSOCIATESMATERIAL('36byGlaL102Q6Aohjaa2$9',$,$,$,(#999),#1000); -#1002=IFCMATERIALPROFILE($,$,#17,#994,$,$); -#1003=IFCCOLUMNTYPE('1hAVIdNYn5vP8E8lUWd5F3',$,'HEM160',$,$,$,$,$,$,$); -#1004=IFCMATERIALPROFILESET($,$,(#1006),$); -#1005=IFCRELASSOCIATESMATERIAL('1Sof6Dqrv7NAgERELdg5df',$,$,$,(#1003),#1004); -#1006=IFCMATERIALPROFILE($,$,#17,#994,$,$); -#1007=IFCISHAPEPROFILEDEF(.AREA.,$,$,186.,200.,14.5,24.,$,$,$); -#1008=IFCBEAMTYPE('3gZxjtBr1CJwuiGYkVcgey',$,'HEM180',$,$,$,$,$,$,$); -#1009=IFCMATERIALPROFILESET($,$,(#1011),$); -#1010=IFCRELASSOCIATESMATERIAL('3hlILc_p9BDv3QjzZsYvUg',$,$,$,(#1008),#1009); -#1011=IFCMATERIALPROFILE($,$,#17,#1007,$,$); -#1012=IFCMEMBERTYPE('09WoqFqUrB2Pwh8lDZtbZs',$,'HEM180',$,$,$,$,$,$,$); -#1013=IFCMATERIALPROFILESET($,$,(#1015),$); -#1014=IFCRELASSOCIATESMATERIAL('2mcAzMsOLEXRT56V3hW59T',$,$,$,(#1012),#1013); -#1015=IFCMATERIALPROFILE($,$,#17,#1007,$,$); -#1016=IFCCOLUMNTYPE('3HO56HR8n2iexXtdnkJigd',$,'HEM180',$,$,$,$,$,$,$); -#1017=IFCMATERIALPROFILESET($,$,(#1019),$); -#1018=IFCRELASSOCIATESMATERIAL('3G$qOzXBbBNw3Orx8erJ7S',$,$,$,(#1016),#1017); -#1019=IFCMATERIALPROFILE($,$,#17,#1007,$,$); -#1020=IFCISHAPEPROFILEDEF(.AREA.,$,$,206.,220.,15.,25.,$,$,$); -#1021=IFCBEAMTYPE('1lm22bxFX0_8OLFpyGZezr',$,'HEM200',$,$,$,$,$,$,$); -#1022=IFCMATERIALPROFILESET($,$,(#1024),$); -#1023=IFCRELASSOCIATESMATERIAL('1AJCJ$u3rDWu3x3UsKg0pa',$,$,$,(#1021),#1022); -#1024=IFCMATERIALPROFILE($,$,#17,#1020,$,$); -#1025=IFCMEMBERTYPE('1PYXFzBBfDBBwMHvkFzdeN',$,'HEM200',$,$,$,$,$,$,$); -#1026=IFCMATERIALPROFILESET($,$,(#1028),$); -#1027=IFCRELASSOCIATESMATERIAL('0uh_h1oZT44xZyFvHS698l',$,$,$,(#1025),#1026); -#1028=IFCMATERIALPROFILE($,$,#17,#1020,$,$); -#1029=IFCCOLUMNTYPE('3vYbWtlaj2zgZHfqd1cYkG',$,'HEM200',$,$,$,$,$,$,$); -#1030=IFCMATERIALPROFILESET($,$,(#1032),$); -#1031=IFCRELASSOCIATESMATERIAL('3$HiBx4g15au_tLkcuzCkn',$,$,$,(#1029),#1030); -#1032=IFCMATERIALPROFILE($,$,#17,#1020,$,$); -#1033=IFCISHAPEPROFILEDEF(.AREA.,$,$,226.,240.,15.5,26.,$,$,$); -#1034=IFCBEAMTYPE('3JmMnM_9v1ShIfmx2HiQUS',$,'HEM220',$,$,$,$,$,$,$); -#1035=IFCMATERIALPROFILESET($,$,(#1037),$); -#1036=IFCRELASSOCIATESMATERIAL('1HIABVrcv8NfJmdmJ52A0w',$,$,$,(#1034),#1035); -#1037=IFCMATERIALPROFILE($,$,#17,#1033,$,$); -#1038=IFCMEMBERTYPE('064_Givov80Qa3PzDx2SV2',$,'HEM220',$,$,$,$,$,$,$); -#1039=IFCMATERIALPROFILESET($,$,(#1041),$); -#1040=IFCRELASSOCIATESMATERIAL('1yUXiOru5BQ8BMO1dASuoX',$,$,$,(#1038),#1039); -#1041=IFCMATERIALPROFILE($,$,#17,#1033,$,$); -#1042=IFCCOLUMNTYPE('01G8aXqdL5ghaVZlLOe0u9',$,'HEM220',$,$,$,$,$,$,$); -#1043=IFCMATERIALPROFILESET($,$,(#1045),$); -#1044=IFCRELASSOCIATESMATERIAL('2z4VJ6L954iR$kCRoUB6Y_',$,$,$,(#1042),#1043); -#1045=IFCMATERIALPROFILE($,$,#17,#1033,$,$); -#1046=IFCISHAPEPROFILEDEF(.AREA.,$,$,248.,270.,18.,32.,$,$,$); -#1047=IFCBEAMTYPE('2QI9CD2eT948ht_JJ3SFLQ',$,'HEM240',$,$,$,$,$,$,$); -#1048=IFCMATERIALPROFILESET($,$,(#1050),$); -#1049=IFCRELASSOCIATESMATERIAL('2cKTXa7Zn7UPpxORE__qpi',$,$,$,(#1047),#1048); -#1050=IFCMATERIALPROFILE($,$,#17,#1046,$,$); -#1051=IFCMEMBERTYPE('1SHo6F_5j5tuD77t9gaIk1',$,'HEM240',$,$,$,$,$,$,$); -#1052=IFCMATERIALPROFILESET($,$,(#1054),$); -#1053=IFCRELASSOCIATESMATERIAL('2dnsUMWqP9Ngmvw0v$wdJk',$,$,$,(#1051),#1052); -#1054=IFCMATERIALPROFILE($,$,#17,#1046,$,$); -#1055=IFCCOLUMNTYPE('24OdKDY7z3ZRYAvnAevizE',$,'HEM240',$,$,$,$,$,$,$); -#1056=IFCMATERIALPROFILESET($,$,(#1058),$); -#1057=IFCRELASSOCIATESMATERIAL('3DC6KubmLAhQio1qIwDETM',$,$,$,(#1055),#1056); -#1058=IFCMATERIALPROFILE($,$,#17,#1046,$,$); -#1059=IFCISHAPEPROFILEDEF(.AREA.,$,$,268.,290.,18.,32.5,$,$,$); -#1060=IFCBEAMTYPE('1ZjemqvOXDUQ8d1WujNxhi',$,'HEM260',$,$,$,$,$,$,$); -#1061=IFCMATERIALPROFILESET($,$,(#1063),$); -#1062=IFCRELASSOCIATESMATERIAL('1QzfS4DzvAb8Po6wH_8T_p',$,$,$,(#1060),#1061); -#1063=IFCMATERIALPROFILE($,$,#17,#1059,$,$); -#1064=IFCMEMBERTYPE('12FbrZXMf7JgeB7O2eMbcl',$,'HEM260',$,$,$,$,$,$,$); -#1065=IFCMATERIALPROFILESET($,$,(#1067),$); -#1066=IFCRELASSOCIATESMATERIAL('2ejEjsFMv51ehE0VW3oA1z',$,$,$,(#1064),#1065); -#1067=IFCMATERIALPROFILE($,$,#17,#1059,$,$); -#1068=IFCCOLUMNTYPE('01btRPMtbAFRYmHVFb9L0Z',$,'HEM260',$,$,$,$,$,$,$); -#1069=IFCMATERIALPROFILESET($,$,(#1071),$); -#1070=IFCRELASSOCIATESMATERIAL('1tfx2pEKT1dgfLe$l3oHFN',$,$,$,(#1068),#1069); -#1071=IFCMATERIALPROFILE($,$,#17,#1059,$,$); -#1072=IFCISHAPEPROFILEDEF(.AREA.,$,$,288.,310.,18.5,33.,$,$,$); -#1073=IFCBEAMTYPE('0BCA1n$wL3LhIkVg6tbfrt',$,'HEM280',$,$,$,$,$,$,$); -#1074=IFCMATERIALPROFILESET($,$,(#1076),$); -#1075=IFCRELASSOCIATESMATERIAL('302KmKubfAZBp0qepf7Qky',$,$,$,(#1073),#1074); -#1076=IFCMATERIALPROFILE($,$,#17,#1072,$,$); -#1077=IFCMEMBERTYPE('3TkYyRlevA$PjOQcq51xB_',$,'HEM280',$,$,$,$,$,$,$); -#1078=IFCMATERIALPROFILESET($,$,(#1080),$); -#1079=IFCRELASSOCIATESMATERIAL('1WRwccknn728aJ5FrUWlSK',$,$,$,(#1077),#1078); -#1080=IFCMATERIALPROFILE($,$,#17,#1072,$,$); -#1081=IFCCOLUMNTYPE('0QqtaeRgb7EOht7nKuzITp',$,'HEM280',$,$,$,$,$,$,$); -#1082=IFCMATERIALPROFILESET($,$,(#1084),$); -#1083=IFCRELASSOCIATESMATERIAL('0JzUryPiDD78WkYIRXbC46',$,$,$,(#1081),#1082); -#1084=IFCMATERIALPROFILE($,$,#17,#1072,$,$); -#1085=IFCISHAPEPROFILEDEF(.AREA.,$,$,310.,340.,21.,39.,$,$,$); -#1086=IFCBEAMTYPE('0NVKi_5m54ARo6ZVrF_tW5',$,'HEM300',$,$,$,$,$,$,$); -#1087=IFCMATERIALPROFILESET($,$,(#1089),$); -#1088=IFCRELASSOCIATESMATERIAL('1MqBg2N35FpPGpqCKEEdZ$',$,$,$,(#1086),#1087); -#1089=IFCMATERIALPROFILE($,$,#17,#1085,$,$); -#1090=IFCMEMBERTYPE('2N2IYVPT9CygB9dDg98EKe',$,'HEM300',$,$,$,$,$,$,$); -#1091=IFCMATERIALPROFILESET($,$,(#1093),$); -#1092=IFCRELASSOCIATESMATERIAL('1ml2Tpd3D7RQIWtAnJv92k',$,$,$,(#1090),#1091); -#1093=IFCMATERIALPROFILE($,$,#17,#1085,$,$); -#1094=IFCCOLUMNTYPE('0NSC_hcjDECOLTyjD1F7lh',$,'HEM300',$,$,$,$,$,$,$); -#1095=IFCMATERIALPROFILESET($,$,(#1097),$); -#1096=IFCRELASSOCIATESMATERIAL('1GTnpVnLHFMuecWWwTZdQ8',$,$,$,(#1094),#1095); -#1097=IFCMATERIALPROFILE($,$,#17,#1085,$,$); -#1098=IFCISHAPEPROFILEDEF(.AREA.,$,$,309.,359.,21.,40.,$,$,$); -#1099=IFCBEAMTYPE('2pt2Znv4j2VB7mc$9JVvsg',$,'HEM320',$,$,$,$,$,$,$); -#1100=IFCMATERIALPROFILESET($,$,(#1102),$); -#1101=IFCRELASSOCIATESMATERIAL('3u9XhlyxbD1Ac2loslTLeM',$,$,$,(#1099),#1100); -#1102=IFCMATERIALPROFILE($,$,#17,#1098,$,$); -#1103=IFCMEMBERTYPE('3lJR6dp6HEUxqR0gSCnXW4',$,'HEM320',$,$,$,$,$,$,$); -#1104=IFCMATERIALPROFILESET($,$,(#1106),$); -#1105=IFCRELASSOCIATESMATERIAL('2B0fniH5bFZOqZCzPgghGS',$,$,$,(#1103),#1104); -#1106=IFCMATERIALPROFILE($,$,#17,#1098,$,$); -#1107=IFCCOLUMNTYPE('2VqvtjkdzDdOCRZscLctF4',$,'HEM320',$,$,$,$,$,$,$); -#1108=IFCMATERIALPROFILESET($,$,(#1110),$); -#1109=IFCRELASSOCIATESMATERIAL('0d$QltoID8389i9Tf9GpLH',$,$,$,(#1107),#1108); -#1110=IFCMATERIALPROFILE($,$,#17,#1098,$,$); -#1111=IFCISHAPEPROFILEDEF(.AREA.,$,$,309.,377.,21.,40.,$,$,$); -#1112=IFCBEAMTYPE('1_eFk8YPfAGANqaqYnJS4N',$,'HEM340',$,$,$,$,$,$,$); -#1113=IFCMATERIALPROFILESET($,$,(#1115),$); -#1114=IFCRELASSOCIATESMATERIAL('1qw5$8IenFGRODWjHG5hZe',$,$,$,(#1112),#1113); -#1115=IFCMATERIALPROFILE($,$,#17,#1111,$,$); -#1116=IFCMEMBERTYPE('3M3T6fmbz6sAvkaZg8Oq$s',$,'HEM340',$,$,$,$,$,$,$); -#1117=IFCMATERIALPROFILESET($,$,(#1119),$); -#1118=IFCRELASSOCIATESMATERIAL('33HbP833L9z88XiAvcQo$x',$,$,$,(#1116),#1117); -#1119=IFCMATERIALPROFILE($,$,#17,#1111,$,$); -#1120=IFCCOLUMNTYPE('0QtxLeXzT9tAAPISbQ162$',$,'HEM340',$,$,$,$,$,$,$); -#1121=IFCMATERIALPROFILESET($,$,(#1123),$); -#1122=IFCRELASSOCIATESMATERIAL('2AAugOXC5CThJNzNxKWENT',$,$,$,(#1120),#1121); -#1123=IFCMATERIALPROFILE($,$,#17,#1111,$,$); -#1124=IFCISHAPEPROFILEDEF(.AREA.,$,$,308.,395.,21.,40.,$,$,$); -#1125=IFCBEAMTYPE('0JK11wyVP5_efcC0an3clo',$,'HEM360',$,$,$,$,$,$,$); -#1126=IFCMATERIALPROFILESET($,$,(#1128),$); -#1127=IFCRELASSOCIATESMATERIAL('3aZEg_hPLAxOHOeq$UtYXY',$,$,$,(#1125),#1126); -#1128=IFCMATERIALPROFILE($,$,#17,#1124,$,$); -#1129=IFCMEMBERTYPE('2g0QEwvOD0dxmqYgo8SWgT',$,'HEM360',$,$,$,$,$,$,$); -#1130=IFCMATERIALPROFILESET($,$,(#1132),$); -#1131=IFCRELASSOCIATESMATERIAL('34LwNxpST0KvfOrBcPoFss',$,$,$,(#1129),#1130); -#1132=IFCMATERIALPROFILE($,$,#17,#1124,$,$); -#1133=IFCCOLUMNTYPE('0ritFFV4z0He1uetD9PI4Z',$,'HEM360',$,$,$,$,$,$,$); -#1134=IFCMATERIALPROFILESET($,$,(#1136),$); -#1135=IFCRELASSOCIATESMATERIAL('3A9qhKO4T9mOWHjsl1cmd6',$,$,$,(#1133),#1134); -#1136=IFCMATERIALPROFILE($,$,#17,#1124,$,$); -#1137=IFCISHAPEPROFILEDEF(.AREA.,$,$,307.,432.,21.,40.,$,$,$); -#1138=IFCBEAMTYPE('2ie2G0S_H44fjRe9q406Ka',$,'HEM400',$,$,$,$,$,$,$); -#1139=IFCMATERIALPROFILESET($,$,(#1141),$); -#1140=IFCRELASSOCIATESMATERIAL('3QLFXupjD5F8Odnpdffw2X',$,$,$,(#1138),#1139); -#1141=IFCMATERIALPROFILE($,$,#17,#1137,$,$); -#1142=IFCMEMBERTYPE('2DksTxzkTFmQ0jFS4pRcHW',$,'HEM400',$,$,$,$,$,$,$); -#1143=IFCMATERIALPROFILESET($,$,(#1145),$); -#1144=IFCRELASSOCIATESMATERIAL('13BOpNdOn5nepmVQkOhbJF',$,$,$,(#1142),#1143); -#1145=IFCMATERIALPROFILE($,$,#17,#1137,$,$); -#1146=IFCCOLUMNTYPE('1yRneSWUXBkhh2FVVkbvl4',$,'HEM400',$,$,$,$,$,$,$); -#1147=IFCMATERIALPROFILESET($,$,(#1149),$); -#1148=IFCRELASSOCIATESMATERIAL('105mpeGJb4rRQFzp2KF59R',$,$,$,(#1146),#1147); -#1149=IFCMATERIALPROFILE($,$,#17,#1137,$,$); -#1150=IFCISHAPEPROFILEDEF(.AREA.,$,$,307.,478.,21.,40.,$,$,$); -#1151=IFCBEAMTYPE('0BIVVgju171ey0VxsP2FiQ',$,'HEM450',$,$,$,$,$,$,$); -#1152=IFCMATERIALPROFILESET($,$,(#1154),$); -#1153=IFCRELASSOCIATESMATERIAL('3jPu$VVFDFG8k2alHtVXKP',$,$,$,(#1151),#1152); -#1154=IFCMATERIALPROFILE($,$,#17,#1150,$,$); -#1155=IFCMEMBERTYPE('1VNeGU1uz5gOlKRZRaXAe$',$,'HEM450',$,$,$,$,$,$,$); -#1156=IFCMATERIALPROFILESET($,$,(#1158),$); -#1157=IFCRELASSOCIATESMATERIAL('32VQqFqWHDKfHTbWYy9yDD',$,$,$,(#1155),#1156); -#1158=IFCMATERIALPROFILE($,$,#17,#1150,$,$); -#1159=IFCCOLUMNTYPE('2e$p9LTa1EqOLSlCbGTS2G',$,'HEM450',$,$,$,$,$,$,$); -#1160=IFCMATERIALPROFILESET($,$,(#1162),$); -#1161=IFCRELASSOCIATESMATERIAL('0WQlRf_N94ShKh79dqeOk_',$,$,$,(#1159),#1160); -#1162=IFCMATERIALPROFILE($,$,#17,#1150,$,$); -#1163=IFCISHAPEPROFILEDEF(.AREA.,$,$,306.,524.,21.,40.,$,$,$); -#1164=IFCBEAMTYPE('2WqwtObJ90HA76hiEkWNge',$,'HEM500',$,$,$,$,$,$,$); -#1165=IFCMATERIALPROFILESET($,$,(#1167),$); -#1166=IFCRELASSOCIATESMATERIAL('3brs2Ps5n2zedQVmdlxV5N',$,$,$,(#1164),#1165); -#1167=IFCMATERIALPROFILE($,$,#17,#1163,$,$); -#1168=IFCMEMBERTYPE('0Wd$wsgy16fePi58y9Skv7',$,'HEM500',$,$,$,$,$,$,$); -#1169=IFCMATERIALPROFILESET($,$,(#1171),$); -#1170=IFCRELASSOCIATESMATERIAL('12$csEEAP0xuMvG96cixKX',$,$,$,(#1168),#1169); -#1171=IFCMATERIALPROFILE($,$,#17,#1163,$,$); -#1172=IFCCOLUMNTYPE('1_ovBxbhj4zAIUaDnhHb_v',$,'HEM500',$,$,$,$,$,$,$); -#1173=IFCMATERIALPROFILESET($,$,(#1175),$); -#1174=IFCRELASSOCIATESMATERIAL('1QyeeRUIbCgBUi6UBfg3lx',$,$,$,(#1172),#1173); -#1175=IFCMATERIALPROFILE($,$,#17,#1163,$,$); -#1176=IFCISHAPEPROFILEDEF(.AREA.,$,$,306.,572.,21.,40.,$,$,$); -#1177=IFCBEAMTYPE('1QrHkcO8n0egm3wzSCgkqa',$,'HEM550',$,$,$,$,$,$,$); -#1178=IFCMATERIALPROFILESET($,$,(#1180),$); -#1179=IFCRELASSOCIATESMATERIAL('18iy2dvbn4Kv17dJ1_3Ot_',$,$,$,(#1177),#1178); -#1180=IFCMATERIALPROFILE($,$,#17,#1176,$,$); -#1181=IFCMEMBERTYPE('0H0MzVHA99sPUCx_$tMQMm',$,'HEM550',$,$,$,$,$,$,$); -#1182=IFCMATERIALPROFILESET($,$,(#1184),$); -#1183=IFCRELASSOCIATESMATERIAL('386$DZBT19ARxzZI0afzpa',$,$,$,(#1181),#1182); -#1184=IFCMATERIALPROFILE($,$,#17,#1176,$,$); -#1185=IFCCOLUMNTYPE('04w8EgG6TFauv1QQq_GOSg',$,'HEM550',$,$,$,$,$,$,$); -#1186=IFCMATERIALPROFILESET($,$,(#1188),$); -#1187=IFCRELASSOCIATESMATERIAL('04qILWBzz7ev$PNLhlQOXt',$,$,$,(#1185),#1186); -#1188=IFCMATERIALPROFILE($,$,#17,#1176,$,$); -#1189=IFCISHAPEPROFILEDEF(.AREA.,$,$,305.,620.,21.,40.,$,$,$); -#1190=IFCBEAMTYPE('1W$ufGpwfD4xCzfVILbqxy',$,'HEM600',$,$,$,$,$,$,$); -#1191=IFCMATERIALPROFILESET($,$,(#1193),$); -#1192=IFCRELASSOCIATESMATERIAL('2r2wk0PkX5SuiJCMXmXFDa',$,$,$,(#1190),#1191); -#1193=IFCMATERIALPROFILE($,$,#17,#1189,$,$); -#1194=IFCMEMBERTYPE('3kTrdRNy92zBR7SFMnnKeZ',$,'HEM600',$,$,$,$,$,$,$); -#1195=IFCMATERIALPROFILESET($,$,(#1197),$); -#1196=IFCRELASSOCIATESMATERIAL('2YW1HypbfCwBmS64XLBfDq',$,$,$,(#1194),#1195); -#1197=IFCMATERIALPROFILE($,$,#17,#1189,$,$); -#1198=IFCCOLUMNTYPE('3obuexJTbAYgQD8N2gRGfn',$,'HEM600',$,$,$,$,$,$,$); -#1199=IFCMATERIALPROFILESET($,$,(#1201),$); -#1200=IFCRELASSOCIATESMATERIAL('0mrzOkg793m8utskwlril0',$,$,$,(#1198),#1199); -#1201=IFCMATERIALPROFILE($,$,#17,#1189,$,$); -#1202=IFCISHAPEPROFILEDEF(.AREA.,$,$,305.,668.,21.,40.,$,$,$); -#1203=IFCBEAMTYPE('0IUuxSR6H4ig2lLOfkSmnt',$,'HEM650',$,$,$,$,$,$,$); -#1204=IFCMATERIALPROFILESET($,$,(#1206),$); -#1205=IFCRELASSOCIATESMATERIAL('3$WJHTuy5EpvNtoQAS0zho',$,$,$,(#1203),#1204); -#1206=IFCMATERIALPROFILE($,$,#17,#1202,$,$); -#1207=IFCMEMBERTYPE('0uxDR19WbCzfa2mTPvVjA7',$,'HEM650',$,$,$,$,$,$,$); -#1208=IFCMATERIALPROFILESET($,$,(#1210),$); -#1209=IFCRELASSOCIATESMATERIAL('2ejSquPCf2VAwWnwoG_KI6',$,$,$,(#1207),#1208); -#1210=IFCMATERIALPROFILE($,$,#17,#1202,$,$); -#1211=IFCCOLUMNTYPE('2JICZ35gv0TRPtvNhhiDpq',$,'HEM650',$,$,$,$,$,$,$); -#1212=IFCMATERIALPROFILESET($,$,(#1214),$); -#1213=IFCRELASSOCIATESMATERIAL('2pGH0T$YbBqeNzoRa5E$7$',$,$,$,(#1211),#1212); -#1214=IFCMATERIALPROFILE($,$,#17,#1202,$,$); -#1215=IFCISHAPEPROFILEDEF(.AREA.,$,$,304.,716.,21.,40.,$,$,$); -#1216=IFCBEAMTYPE('2ZKjgpjE13cAz6x5AuN3aU',$,'HEM700',$,$,$,$,$,$,$); -#1217=IFCMATERIALPROFILESET($,$,(#1219),$); -#1218=IFCRELASSOCIATESMATERIAL('0aLrOKBYTBKgTKMUGSsQy4',$,$,$,(#1216),#1217); -#1219=IFCMATERIALPROFILE($,$,#17,#1215,$,$); -#1220=IFCMEMBERTYPE('311VFJOLP1l92SuC4$XDzG',$,'HEM700',$,$,$,$,$,$,$); -#1221=IFCMATERIALPROFILESET($,$,(#1223),$); -#1222=IFCRELASSOCIATESMATERIAL('2dcrWJJP98Nh$At8YvFlla',$,$,$,(#1220),#1221); -#1223=IFCMATERIALPROFILE($,$,#17,#1215,$,$); -#1224=IFCCOLUMNTYPE('2_GYlPoAHBhu$URVupl$rJ',$,'HEM700',$,$,$,$,$,$,$); -#1225=IFCMATERIALPROFILESET($,$,(#1227),$); -#1226=IFCRELASSOCIATESMATERIAL('3Yjwx_y$T6sBeqNQBBHaga',$,$,$,(#1224),#1225); -#1227=IFCMATERIALPROFILE($,$,#17,#1215,$,$); -#1228=IFCISHAPEPROFILEDEF(.AREA.,$,$,303.,814.,21.,40.,$,$,$); -#1229=IFCBEAMTYPE('3uzT0zyTfBCwegg6c_PGeD',$,'HEM800',$,$,$,$,$,$,$); -#1230=IFCMATERIALPROFILESET($,$,(#1232),$); -#1231=IFCRELASSOCIATESMATERIAL('3YWPriBS15WxRhxjfJ6o8b',$,$,$,(#1229),#1230); -#1232=IFCMATERIALPROFILE($,$,#17,#1228,$,$); -#1233=IFCMEMBERTYPE('0LWiNi9a970veIgCb7KXph',$,'HEM800',$,$,$,$,$,$,$); -#1234=IFCMATERIALPROFILESET($,$,(#1236),$); -#1235=IFCRELASSOCIATESMATERIAL('13V$zOY$59CvfOYgbydNYL',$,$,$,(#1233),#1234); -#1236=IFCMATERIALPROFILE($,$,#17,#1228,$,$); -#1237=IFCCOLUMNTYPE('3nWtRvwdH8rRfPOcrPzrb_',$,'HEM800',$,$,$,$,$,$,$); -#1238=IFCMATERIALPROFILESET($,$,(#1240),$); -#1239=IFCRELASSOCIATESMATERIAL('1rZ94D6YD3tQ6SsTJn1N5_',$,$,$,(#1237),#1238); -#1240=IFCMATERIALPROFILE($,$,#17,#1228,$,$); -#1241=IFCISHAPEPROFILEDEF(.AREA.,$,$,302.,910.,21.,40.,$,$,$); -#1242=IFCBEAMTYPE('23iPhbyHXEJwKjrhxmKNeh',$,'HEM900',$,$,$,$,$,$,$); -#1243=IFCMATERIALPROFILESET($,$,(#1245),$); -#1244=IFCRELASSOCIATESMATERIAL('3ysw5ovzDA4eWsqY_vBZsy',$,$,$,(#1242),#1243); -#1245=IFCMATERIALPROFILE($,$,#17,#1241,$,$); -#1246=IFCMEMBERTYPE('0SUGXESWXANPPfYT_0QbEg',$,'HEM900',$,$,$,$,$,$,$); -#1247=IFCMATERIALPROFILESET($,$,(#1249),$); -#1248=IFCRELASSOCIATESMATERIAL('3$C95U1sH1yO8TSuM8qkpm',$,$,$,(#1246),#1247); -#1249=IFCMATERIALPROFILE($,$,#17,#1241,$,$); -#1250=IFCCOLUMNTYPE('3Q0IRk_4X9_eX3ysydWjCy',$,'HEM900',$,$,$,$,$,$,$); -#1251=IFCMATERIALPROFILESET($,$,(#1253),$); -#1252=IFCRELASSOCIATESMATERIAL('23Rk3Lyu9FZvIAnYyGsmaf',$,$,$,(#1250),#1251); -#1253=IFCMATERIALPROFILE($,$,#17,#1241,$,$); -#1254=IFCISHAPEPROFILEDEF(.AREA.,$,$,302.,1008.,21.,40.,$,$,$); -#1255=IFCBEAMTYPE('1WjMOkitz72PsaPY4ObHPN',$,'HEM1000',$,$,$,$,$,$,$); -#1256=IFCMATERIALPROFILESET($,$,(#1258),$); -#1257=IFCRELASSOCIATESMATERIAL('3A1KtTc25D2R2XYLT21VZv',$,$,$,(#1255),#1256); -#1258=IFCMATERIALPROFILE($,$,#17,#1254,$,$); -#1259=IFCMEMBERTYPE('2SjDC$xTnEhwIJeU3y0TcX',$,'HEM1000',$,$,$,$,$,$,$); -#1260=IFCMATERIALPROFILESET($,$,(#1262),$); -#1261=IFCRELASSOCIATESMATERIAL('1JEcQIJ99DBAMwYU7Co7p9',$,$,$,(#1259),#1260); -#1262=IFCMATERIALPROFILE($,$,#17,#1254,$,$); -#1263=IFCCOLUMNTYPE('1qn1iLO8vFaPiGtQFJ$FUO',$,'HEM1000',$,$,$,$,$,$,$); -#1264=IFCMATERIALPROFILESET($,$,(#1266),$); -#1265=IFCRELASSOCIATESMATERIAL('2wfMFaN95FWwtxqyn7RiMJ',$,$,$,(#1263),#1264); -#1266=IFCMATERIALPROFILE($,$,#17,#1254,$,$); -#1267=IFCISHAPEPROFILEDEF(.AREA.,$,$,46.,80.,3.8,5.2,$,$,$); -#1268=IFCBEAMTYPE('06KTN1mPHD89rMkbXwkstd',$,'IPE80',$,$,$,$,$,$,$); -#1269=IFCMATERIALPROFILESET($,$,(#1271),$); -#1270=IFCRELASSOCIATESMATERIAL('0wCP00RoX85goHFDjGJnWn',$,$,$,(#1268),#1269); -#1271=IFCMATERIALPROFILE($,$,#17,#1267,$,$); -#1272=IFCMEMBERTYPE('1WvubfpDbDpurISVz_39W4',$,'IPE80',$,$,$,$,$,$,$); -#1273=IFCMATERIALPROFILESET($,$,(#1275),$); -#1274=IFCRELASSOCIATESMATERIAL('2LV3KCrB55KvzBUuuH6epQ',$,$,$,(#1272),#1273); -#1275=IFCMATERIALPROFILE($,$,#17,#1267,$,$); -#1276=IFCCOLUMNTYPE('0EDicBO3b5rgCj8FyboFOQ',$,'IPE80',$,$,$,$,$,$,$); -#1277=IFCMATERIALPROFILESET($,$,(#1279),$); -#1278=IFCRELASSOCIATESMATERIAL('1u4WMAjFT4aw0wmDlIqZjt',$,$,$,(#1276),#1277); -#1279=IFCMATERIALPROFILE($,$,#17,#1267,$,$); -#1280=IFCISHAPEPROFILEDEF(.AREA.,$,$,55.,100.,4.1,5.7,$,$,$); -#1281=IFCBEAMTYPE('0A_KVX3fn4YQdv9KPsiVBh',$,'IPE100',$,$,$,$,$,$,$); -#1282=IFCMATERIALPROFILESET($,$,(#1284),$); -#1283=IFCRELASSOCIATESMATERIAL('2hUMEJSLv9oRjqvl37wHHW',$,$,$,(#1281),#1282); -#1284=IFCMATERIALPROFILE($,$,#17,#1280,$,$); -#1285=IFCMEMBERTYPE('21tDTKpF1CoPXRSytVXrWZ',$,'IPE100',$,$,$,$,$,$,$); -#1286=IFCMATERIALPROFILESET($,$,(#1288),$); -#1287=IFCRELASSOCIATESMATERIAL('24mS86irP2aem2ze_XlwM$',$,$,$,(#1285),#1286); -#1288=IFCMATERIALPROFILE($,$,#17,#1280,$,$); -#1289=IFCCOLUMNTYPE('0pdp47FA54FAtkQ$DNL2wD',$,'IPE100',$,$,$,$,$,$,$); -#1290=IFCMATERIALPROFILESET($,$,(#1292),$); -#1291=IFCRELASSOCIATESMATERIAL('33KTqHybn8pRSHQW_KEYub',$,$,$,(#1289),#1290); -#1292=IFCMATERIALPROFILE($,$,#17,#1280,$,$); -#1293=IFCISHAPEPROFILEDEF(.AREA.,$,$,64.,120.,4.4,6.3,$,$,$); -#1294=IFCBEAMTYPE('1cBHWddDTA8x66pyNe0yPz',$,'IPE120',$,$,$,$,$,$,$); -#1295=IFCMATERIALPROFILESET($,$,(#1297),$); -#1296=IFCRELASSOCIATESMATERIAL('1a77GhAUD4uu1LyVSHEWNL',$,$,$,(#1294),#1295); -#1297=IFCMATERIALPROFILE($,$,#17,#1293,$,$); -#1298=IFCMEMBERTYPE('1d6IHkvaL3oBLs3tL$B5u$',$,'IPE120',$,$,$,$,$,$,$); -#1299=IFCMATERIALPROFILESET($,$,(#1301),$); -#1300=IFCRELASSOCIATESMATERIAL('1CdUlXeabBcA2wVo73bTej',$,$,$,(#1298),#1299); -#1301=IFCMATERIALPROFILE($,$,#17,#1293,$,$); -#1302=IFCCOLUMNTYPE('2jGbSaFor55gDykk5P0ECQ',$,'IPE120',$,$,$,$,$,$,$); -#1303=IFCMATERIALPROFILESET($,$,(#1305),$); -#1304=IFCRELASSOCIATESMATERIAL('1jeNpJGo5AdgJHNymgFKSo',$,$,$,(#1302),#1303); -#1305=IFCMATERIALPROFILE($,$,#17,#1293,$,$); -#1306=IFCISHAPEPROFILEDEF(.AREA.,$,$,73.,140.,4.7,6.9,$,$,$); -#1307=IFCBEAMTYPE('2J4_M7DV57GxImlmKYg8R2',$,'IPE140',$,$,$,$,$,$,$); -#1308=IFCMATERIALPROFILESET($,$,(#1310),$); -#1309=IFCRELASSOCIATESMATERIAL('01vR47Loz42eLpZuRJTAHz',$,$,$,(#1307),#1308); -#1310=IFCMATERIALPROFILE($,$,#17,#1306,$,$); -#1311=IFCMEMBERTYPE('3xtByfX7rBZh1C$Z_EWuio',$,'IPE140',$,$,$,$,$,$,$); -#1312=IFCMATERIALPROFILESET($,$,(#1314),$); -#1313=IFCRELASSOCIATESMATERIAL('2Sinrgjav32AxDzTjlJAuY',$,$,$,(#1311),#1312); -#1314=IFCMATERIALPROFILE($,$,#17,#1306,$,$); -#1315=IFCCOLUMNTYPE('0SMVPfz7XE48BKC29mBnPl',$,'IPE140',$,$,$,$,$,$,$); -#1316=IFCMATERIALPROFILESET($,$,(#1318),$); -#1317=IFCRELASSOCIATESMATERIAL('1wkhp5$Ab2fAVj7rBZP9l6',$,$,$,(#1315),#1316); -#1318=IFCMATERIALPROFILE($,$,#17,#1306,$,$); -#1319=IFCISHAPEPROFILEDEF(.AREA.,$,$,82.,160.,5.,7.4,$,$,$); -#1320=IFCBEAMTYPE('36UH1OwH59khzmdFvn4zv1',$,'IPE160',$,$,$,$,$,$,$); -#1321=IFCMATERIALPROFILESET($,$,(#1323),$); -#1322=IFCRELASSOCIATESMATERIAL('2Fbb6Fl0r4z95vH8e7QdYH',$,$,$,(#1320),#1321); -#1323=IFCMATERIALPROFILE($,$,#17,#1319,$,$); -#1324=IFCMEMBERTYPE('0ZfB$3rSjF2wMK0ZcHb$32',$,'IPE160',$,$,$,$,$,$,$); -#1325=IFCMATERIALPROFILESET($,$,(#1327),$); -#1326=IFCRELASSOCIATESMATERIAL('3QDkE2Fxz1I9yZSBbcSXM5',$,$,$,(#1324),#1325); -#1327=IFCMATERIALPROFILE($,$,#17,#1319,$,$); -#1328=IFCCOLUMNTYPE('21$jLbDDvAiAOCG5y32Jnw',$,'IPE160',$,$,$,$,$,$,$); -#1329=IFCMATERIALPROFILESET($,$,(#1331),$); -#1330=IFCRELASSOCIATESMATERIAL('1socqaucHA0xOD9sGFlZkr',$,$,$,(#1328),#1329); -#1331=IFCMATERIALPROFILE($,$,#17,#1319,$,$); -#1332=IFCISHAPEPROFILEDEF(.AREA.,$,$,91.,180.,5.3,8.,$,$,$); -#1333=IFCBEAMTYPE('1uOU5J5U90NB4m9uVnbIGA',$,'IPE180',$,$,$,$,$,$,$); -#1334=IFCMATERIALPROFILESET($,$,(#1336),$); -#1335=IFCRELASSOCIATESMATERIAL('3g2CYBD3nBDOnEqSbF$RSA',$,$,$,(#1333),#1334); -#1336=IFCMATERIALPROFILE($,$,#17,#1332,$,$); -#1337=IFCMEMBERTYPE('3kOSYHh419bf48E4dhbOqd',$,'IPE180',$,$,$,$,$,$,$); -#1338=IFCMATERIALPROFILESET($,$,(#1340),$); -#1339=IFCRELASSOCIATESMATERIAL('1_Xonx_R9D4Ph34MscVem1',$,$,$,(#1337),#1338); -#1340=IFCMATERIALPROFILE($,$,#17,#1332,$,$); -#1341=IFCCOLUMNTYPE('1hYv2hpu55Y92kmT5YCpdf',$,'IPE180',$,$,$,$,$,$,$); -#1342=IFCMATERIALPROFILESET($,$,(#1344),$); -#1343=IFCRELASSOCIATESMATERIAL('2DhVYOmIH43QFSxzc4Ugwh',$,$,$,(#1341),#1342); -#1344=IFCMATERIALPROFILE($,$,#17,#1332,$,$); -#1345=IFCISHAPEPROFILEDEF(.AREA.,$,$,100.,200.,5.6,8.5,$,$,$); -#1346=IFCBEAMTYPE('3BVGVegZnFdBHTpUfT4ZWo',$,'IPE200',$,$,$,$,$,$,$); -#1347=IFCMATERIALPROFILESET($,$,(#1349),$); -#1348=IFCRELASSOCIATESMATERIAL('3zEogSddPAzBkK5RMPweJ9',$,$,$,(#1346),#1347); -#1349=IFCMATERIALPROFILE($,$,#17,#1345,$,$); -#1350=IFCMEMBERTYPE('3aLuliymT7mgCHeUGpSCn0',$,'IPE200',$,$,$,$,$,$,$); -#1351=IFCMATERIALPROFILESET($,$,(#1353),$); -#1352=IFCRELASSOCIATESMATERIAL('0w8mpazCP2ZAxtsgBHDl3t',$,$,$,(#1350),#1351); -#1353=IFCMATERIALPROFILE($,$,#17,#1345,$,$); -#1354=IFCCOLUMNTYPE('31Xb9x6r51mBFwbnx2JWdr',$,'IPE200',$,$,$,$,$,$,$); -#1355=IFCMATERIALPROFILESET($,$,(#1357),$); -#1356=IFCRELASSOCIATESMATERIAL('3M1upakvvFQRcenh41N5$N',$,$,$,(#1354),#1355); -#1357=IFCMATERIALPROFILE($,$,#17,#1345,$,$); -#1358=IFCISHAPEPROFILEDEF(.AREA.,$,$,110.,220.,5.9,9.2,$,$,$); -#1359=IFCBEAMTYPE('0UM2Fly81AhBIXwIDTfL_e',$,'IPE220',$,$,$,$,$,$,$); -#1360=IFCMATERIALPROFILESET($,$,(#1362),$); -#1361=IFCRELASSOCIATESMATERIAL('1tYKaxdnT4B9ZZ8DmSMvde',$,$,$,(#1359),#1360); -#1362=IFCMATERIALPROFILE($,$,#17,#1358,$,$); -#1363=IFCMEMBERTYPE('0NCoeLxHL9fOQ7Yuoqjd9t',$,'IPE220',$,$,$,$,$,$,$); -#1364=IFCMATERIALPROFILESET($,$,(#1366),$); -#1365=IFCRELASSOCIATESMATERIAL('36En_$IGrF1f7x_R5xfuc_',$,$,$,(#1363),#1364); -#1366=IFCMATERIALPROFILE($,$,#17,#1358,$,$); -#1367=IFCCOLUMNTYPE('0bBldIvd93XQtD2Ls7o8m$',$,'IPE220',$,$,$,$,$,$,$); -#1368=IFCMATERIALPROFILESET($,$,(#1370),$); -#1369=IFCRELASSOCIATESMATERIAL('1LyHp7vRzE8gdaLeGOwJHQ',$,$,$,(#1367),#1368); -#1370=IFCMATERIALPROFILE($,$,#17,#1358,$,$); -#1371=IFCISHAPEPROFILEDEF(.AREA.,$,$,120.,240.,6.2,9.8,$,$,$); -#1372=IFCBEAMTYPE('0IxkFNOaXFwRKt7N_CXTY5',$,'IPE240',$,$,$,$,$,$,$); -#1373=IFCMATERIALPROFILESET($,$,(#1375),$); -#1374=IFCRELASSOCIATESMATERIAL('2yGSTCyU96EuTfOvs5mD6G',$,$,$,(#1372),#1373); -#1375=IFCMATERIALPROFILE($,$,#17,#1371,$,$); -#1376=IFCMEMBERTYPE('1mzEvaQeb4yxBHZfXqTGYE',$,'IPE240',$,$,$,$,$,$,$); -#1377=IFCMATERIALPROFILESET($,$,(#1379),$); -#1378=IFCRELASSOCIATESMATERIAL('27k$NuK2rAvuwBfKFbXFMb',$,$,$,(#1376),#1377); -#1379=IFCMATERIALPROFILE($,$,#17,#1371,$,$); -#1380=IFCCOLUMNTYPE('3r8hd8W0f249ACgFr9NA4J',$,'IPE240',$,$,$,$,$,$,$); -#1381=IFCMATERIALPROFILESET($,$,(#1383),$); -#1382=IFCRELASSOCIATESMATERIAL('0bIos6s3f4guPe1f1C19dn',$,$,$,(#1380),#1381); -#1383=IFCMATERIALPROFILE($,$,#17,#1371,$,$); -#1384=IFCISHAPEPROFILEDEF(.AREA.,$,$,135.,270.,6.6,10.2,$,$,$); -#1385=IFCBEAMTYPE('1H63aBcurC7foJoB3UfpLr',$,'IPE270',$,$,$,$,$,$,$); -#1386=IFCMATERIALPROFILESET($,$,(#1388),$); -#1387=IFCRELASSOCIATESMATERIAL('1J1OyxqRL5CP_0HneUhKwf',$,$,$,(#1385),#1386); -#1388=IFCMATERIALPROFILE($,$,#17,#1384,$,$); -#1389=IFCMEMBERTYPE('3Zfie3iQb9nxrG$mfWEH$5',$,'IPE270',$,$,$,$,$,$,$); -#1390=IFCMATERIALPROFILESET($,$,(#1392),$); -#1391=IFCRELASSOCIATESMATERIAL('0MLTAZYCf99QyW7d0hjzua',$,$,$,(#1389),#1390); -#1392=IFCMATERIALPROFILE($,$,#17,#1384,$,$); -#1393=IFCCOLUMNTYPE('0BIcEjJwT9j8502dkA6r6b',$,'IPE270',$,$,$,$,$,$,$); -#1394=IFCMATERIALPROFILESET($,$,(#1396),$); -#1395=IFCRELASSOCIATESMATERIAL('1Le74Q__L9N8hIFj0G9lWs',$,$,$,(#1393),#1394); -#1396=IFCMATERIALPROFILE($,$,#17,#1384,$,$); -#1397=IFCISHAPEPROFILEDEF(.AREA.,$,$,150.,300.,7.1,10.7,$,$,$); -#1398=IFCBEAMTYPE('1LP7sVIqX2thBNkL0nvZoc',$,'IPE300',$,$,$,$,$,$,$); -#1399=IFCMATERIALPROFILESET($,$,(#1401),$); -#1400=IFCRELASSOCIATESMATERIAL('1gM1$XBc5CVe0i$SfApDVO',$,$,$,(#1398),#1399); -#1401=IFCMATERIALPROFILE($,$,#17,#1397,$,$); -#1402=IFCMEMBERTYPE('1jOkpxZf5AjwMtVSveKDoj',$,'IPE300',$,$,$,$,$,$,$); -#1403=IFCMATERIALPROFILESET($,$,(#1405),$); -#1404=IFCRELASSOCIATESMATERIAL('0UCyhi2bf6IwhuNVIHgj77',$,$,$,(#1402),#1403); -#1405=IFCMATERIALPROFILE($,$,#17,#1397,$,$); -#1406=IFCCOLUMNTYPE('0jqGC4qvv5B9CLliQSsfBK',$,'IPE300',$,$,$,$,$,$,$); -#1407=IFCMATERIALPROFILESET($,$,(#1409),$); -#1408=IFCRELASSOCIATESMATERIAL('0vyUfwM$vB2eEb_Vc2myc7',$,$,$,(#1406),#1407); -#1409=IFCMATERIALPROFILE($,$,#17,#1397,$,$); -#1410=IFCISHAPEPROFILEDEF(.AREA.,$,$,160.,330.,7.5,11.5,$,$,$); -#1411=IFCBEAMTYPE('3JWKoR6JX5Buxt5fgTcyz0',$,'IPE330',$,$,$,$,$,$,$); -#1412=IFCMATERIALPROFILESET($,$,(#1414),$); -#1413=IFCRELASSOCIATESMATERIAL('3ZLifN0UXERQAmNatfJcZI',$,$,$,(#1411),#1412); -#1414=IFCMATERIALPROFILE($,$,#17,#1410,$,$); -#1415=IFCMEMBERTYPE('2arTgu$7X5nugcZfksoFdx',$,'IPE330',$,$,$,$,$,$,$); -#1416=IFCMATERIALPROFILESET($,$,(#1418),$); -#1417=IFCRELASSOCIATESMATERIAL('2pPaa1m518HBToXHEbaJ_d',$,$,$,(#1415),#1416); -#1418=IFCMATERIALPROFILE($,$,#17,#1410,$,$); -#1419=IFCCOLUMNTYPE('2NbH1kELzBNBE7jTC1UBZo',$,'IPE330',$,$,$,$,$,$,$); -#1420=IFCMATERIALPROFILESET($,$,(#1422),$); -#1421=IFCRELASSOCIATESMATERIAL('2n9KiMg$D2kPwTmH2zKff5',$,$,$,(#1419),#1420); -#1422=IFCMATERIALPROFILE($,$,#17,#1410,$,$); -#1423=IFCISHAPEPROFILEDEF(.AREA.,$,$,170.,360.,8.,12.7,$,$,$); -#1424=IFCBEAMTYPE('0YVOBrbXzEwBy8gzzw0wd9',$,'IPE360',$,$,$,$,$,$,$); -#1425=IFCMATERIALPROFILESET($,$,(#1427),$); -#1426=IFCRELASSOCIATESMATERIAL('0ziyct9ErBJwwwB6T5z1RS',$,$,$,(#1424),#1425); -#1427=IFCMATERIALPROFILE($,$,#17,#1423,$,$); -#1428=IFCMEMBERTYPE('2uVFmV80z2qfonKi$wWJ1z',$,'IPE360',$,$,$,$,$,$,$); -#1429=IFCMATERIALPROFILESET($,$,(#1431),$); -#1430=IFCRELASSOCIATESMATERIAL('1Wzb96PGfDsx43x$OW9NAv',$,$,$,(#1428),#1429); -#1431=IFCMATERIALPROFILE($,$,#17,#1423,$,$); -#1432=IFCCOLUMNTYPE('2g4D2YhYL9khQAJFYimyam',$,'IPE360',$,$,$,$,$,$,$); -#1433=IFCMATERIALPROFILESET($,$,(#1435),$); -#1434=IFCRELASSOCIATESMATERIAL('1VFakPTJD2ou9YIpI$1M4q',$,$,$,(#1432),#1433); -#1435=IFCMATERIALPROFILE($,$,#17,#1423,$,$); -#1436=IFCISHAPEPROFILEDEF(.AREA.,$,$,180.,400.,8.6,13.5,$,$,$); -#1437=IFCBEAMTYPE('0_umXFg1j9TR_RYMoTpw4H',$,'IPE400',$,$,$,$,$,$,$); -#1438=IFCMATERIALPROFILESET($,$,(#1440),$); -#1439=IFCRELASSOCIATESMATERIAL('08yCVH7En9ohjAzVq8ibdy',$,$,$,(#1437),#1438); -#1440=IFCMATERIALPROFILE($,$,#17,#1436,$,$); -#1441=IFCMEMBERTYPE('0yC7jndtL33Rswg8jgRhYy',$,'IPE400',$,$,$,$,$,$,$); -#1442=IFCMATERIALPROFILESET($,$,(#1444),$); -#1443=IFCRELASSOCIATESMATERIAL('1VrroUqN9CeOJVbfzpvmub',$,$,$,(#1441),#1442); -#1444=IFCMATERIALPROFILE($,$,#17,#1436,$,$); -#1445=IFCCOLUMNTYPE('0AG9ovyAbBMflEnGMP8jWC',$,'IPE400',$,$,$,$,$,$,$); -#1446=IFCMATERIALPROFILESET($,$,(#1448),$); -#1447=IFCRELASSOCIATESMATERIAL('2pzagmXuv0guiRKSjYaTKu',$,$,$,(#1445),#1446); -#1448=IFCMATERIALPROFILE($,$,#17,#1436,$,$); -#1449=IFCISHAPEPROFILEDEF(.AREA.,$,$,190.,450.,9.4,14.6,$,$,$); -#1450=IFCBEAMTYPE('111IDr2XX6EQ_ajuy6Tje0',$,'IPE450',$,$,$,$,$,$,$); -#1451=IFCMATERIALPROFILESET($,$,(#1453),$); -#1452=IFCRELASSOCIATESMATERIAL('1TPSOW7Wn86B1Y2jcK8Ei0',$,$,$,(#1450),#1451); -#1453=IFCMATERIALPROFILE($,$,#17,#1449,$,$); -#1454=IFCMEMBERTYPE('0_06wPIF1C5Bwz9Fj2sola',$,'IPE450',$,$,$,$,$,$,$); -#1455=IFCMATERIALPROFILESET($,$,(#1457),$); -#1456=IFCRELASSOCIATESMATERIAL('2Xl_HWxa14UPYpLbmxZr6U',$,$,$,(#1454),#1455); -#1457=IFCMATERIALPROFILE($,$,#17,#1449,$,$); -#1458=IFCCOLUMNTYPE('1waNS7BSr4WeXDccze05bn',$,'IPE450',$,$,$,$,$,$,$); -#1459=IFCMATERIALPROFILESET($,$,(#1461),$); -#1460=IFCRELASSOCIATESMATERIAL('2rAeDvPkn8qudI83F$IHfR',$,$,$,(#1458),#1459); -#1461=IFCMATERIALPROFILE($,$,#17,#1449,$,$); -#1462=IFCISHAPEPROFILEDEF(.AREA.,$,$,200.,500.,10.2,16.,$,$,$); -#1463=IFCBEAMTYPE('2hANna4GL6pepTwAAusXSo',$,'IPE500',$,$,$,$,$,$,$); -#1464=IFCMATERIALPROFILESET($,$,(#1466),$); -#1465=IFCRELASSOCIATESMATERIAL('1lc4tJGzr9KvNa55NxAWPr',$,$,$,(#1463),#1464); -#1466=IFCMATERIALPROFILE($,$,#17,#1462,$,$); -#1467=IFCMEMBERTYPE('1NtXNnIJ93NwJfgCgx98DP',$,'IPE500',$,$,$,$,$,$,$); -#1468=IFCMATERIALPROFILESET($,$,(#1470),$); -#1469=IFCRELASSOCIATESMATERIAL('14oP93UAr2AOB7Nl3oL$XY',$,$,$,(#1467),#1468); -#1470=IFCMATERIALPROFILE($,$,#17,#1462,$,$); -#1471=IFCCOLUMNTYPE('0$c2cQkxrCde22AVFbdXZh',$,'IPE500',$,$,$,$,$,$,$); -#1472=IFCMATERIALPROFILESET($,$,(#1474),$); -#1473=IFCRELASSOCIATESMATERIAL('1T4wdwl8b9UhX$zPaqJcZh',$,$,$,(#1471),#1472); -#1474=IFCMATERIALPROFILE($,$,#17,#1462,$,$); -#1475=IFCISHAPEPROFILEDEF(.AREA.,$,$,210.,550.,11.1,17.2,$,$,$); -#1476=IFCBEAMTYPE('1lh4N2$OzBWADMTU_35_D6',$,'IPE550',$,$,$,$,$,$,$); -#1477=IFCMATERIALPROFILESET($,$,(#1479),$); -#1478=IFCRELASSOCIATESMATERIAL('3jh1uy4g91ygcfJHXreVOR',$,$,$,(#1476),#1477); -#1479=IFCMATERIALPROFILE($,$,#17,#1475,$,$); -#1480=IFCMEMBERTYPE('1cnZbGZdv2g9aOVOo$PdIr',$,'IPE550',$,$,$,$,$,$,$); -#1481=IFCMATERIALPROFILESET($,$,(#1483),$); -#1482=IFCRELASSOCIATESMATERIAL('303osd_zP4IgQ4B0ICnc8U',$,$,$,(#1480),#1481); -#1483=IFCMATERIALPROFILE($,$,#17,#1475,$,$); -#1484=IFCCOLUMNTYPE('06FQQ$q6j67Ocq$E4jtsLC',$,'IPE550',$,$,$,$,$,$,$); -#1485=IFCMATERIALPROFILESET($,$,(#1487),$); -#1486=IFCRELASSOCIATESMATERIAL('0aIaORKsr3YBd6jV_RYzT0',$,$,$,(#1484),#1485); -#1487=IFCMATERIALPROFILE($,$,#17,#1475,$,$); -#1488=IFCISHAPEPROFILEDEF(.AREA.,$,$,220.,600.,12.,19.,$,$,$); -#1489=IFCBEAMTYPE('3TrgvSDgn1wgFStLeRKMjB',$,'IPE600',$,$,$,$,$,$,$); -#1490=IFCMATERIALPROFILESET($,$,(#1492),$); -#1491=IFCRELASSOCIATESMATERIAL('3t32Gr_X9B9Bkwh_ZTLlY6',$,$,$,(#1489),#1490); -#1492=IFCMATERIALPROFILE($,$,#17,#1488,$,$); -#1493=IFCMEMBERTYPE('2PPDnuspbA$xD7Op2MTJ7G',$,'IPE600',$,$,$,$,$,$,$); -#1494=IFCMATERIALPROFILESET($,$,(#1496),$); -#1495=IFCRELASSOCIATESMATERIAL('2wXBbaPKbDIQJJDtBKIeZ8',$,$,$,(#1493),#1494); -#1496=IFCMATERIALPROFILE($,$,#17,#1488,$,$); -#1497=IFCCOLUMNTYPE('1AW8h87$zF5guV2s3gW1qq',$,'IPE600',$,$,$,$,$,$,$); -#1498=IFCMATERIALPROFILESET($,$,(#1500),$); -#1499=IFCRELASSOCIATESMATERIAL('3SwFncYG1FKgKwWT3mbOlq',$,$,$,(#1497),#1498); -#1500=IFCMATERIALPROFILE($,$,#17,#1488,$,$); -#1501=IFCISHAPEPROFILEDEF(.AREA.,$,$,263.,753.,11.5,17.,$,$,$); -#1502=IFCBEAMTYPE('2KN_eJAfb1wAE1yxub$FPG',$,'IPE750x137',$,$,$,$,$,$,$); -#1503=IFCMATERIALPROFILESET($,$,(#1505),$); -#1504=IFCRELASSOCIATESMATERIAL('2dVKajNYPE39X9J27T70Zi',$,$,$,(#1502),#1503); -#1505=IFCMATERIALPROFILE($,$,#17,#1501,$,$); -#1506=IFCMEMBERTYPE('1XkKJ4qtDFohHD4Fv8pKvs',$,'IPE750x137',$,$,$,$,$,$,$); -#1507=IFCMATERIALPROFILESET($,$,(#1509),$); -#1508=IFCRELASSOCIATESMATERIAL('3ppEiQVq577AfXVqXyhsGF',$,$,$,(#1506),#1507); -#1509=IFCMATERIALPROFILE($,$,#17,#1501,$,$); -#1510=IFCCOLUMNTYPE('008VCjVwfDAPNqmZUzwKHx',$,'IPE750x137',$,$,$,$,$,$,$); -#1511=IFCMATERIALPROFILESET($,$,(#1513),$); -#1512=IFCRELASSOCIATESMATERIAL('2ic8sOtX10swjEOONIfLRu',$,$,$,(#1510),#1511); -#1513=IFCMATERIALPROFILE($,$,#17,#1501,$,$); -#1514=IFCISHAPEPROFILEDEF(.AREA.,$,$,265.,753.,13.2,17.,$,$,$); -#1515=IFCBEAMTYPE('0N2OAQNvv0VwRgj0uaKsjz',$,'IPE750x147',$,$,$,$,$,$,$); -#1516=IFCMATERIALPROFILESET($,$,(#1518),$); -#1517=IFCRELASSOCIATESMATERIAL('3cpywohOX459F5JB4N7Gfh',$,$,$,(#1515),#1516); -#1518=IFCMATERIALPROFILE($,$,#17,#1514,$,$); -#1519=IFCMEMBERTYPE('1KM68fJUf2ggIrhtk1Jf$l',$,'IPE750x147',$,$,$,$,$,$,$); -#1520=IFCMATERIALPROFILESET($,$,(#1522),$); -#1521=IFCRELASSOCIATESMATERIAL('0iFTcIHND0b8nV1lJBDm9r',$,$,$,(#1519),#1520); -#1522=IFCMATERIALPROFILE($,$,#17,#1514,$,$); -#1523=IFCCOLUMNTYPE('17wZDYihDB9PR6PS6wN_Ui',$,'IPE750x147',$,$,$,$,$,$,$); -#1524=IFCMATERIALPROFILESET($,$,(#1526),$); -#1525=IFCRELASSOCIATESMATERIAL('1R8ReN9xr0Ae0FMBLloIpj',$,$,$,(#1523),#1524); -#1526=IFCMATERIALPROFILE($,$,#17,#1514,$,$); -#1527=IFCISHAPEPROFILEDEF(.AREA.,$,$,266.,758.,13.8,19.3,$,$,$); -#1528=IFCBEAMTYPE('03nOcvDUDF9g3kwpuX6$VR',$,'IPE750x161',$,$,$,$,$,$,$); -#1529=IFCMATERIALPROFILESET($,$,(#1531),$); -#1530=IFCRELASSOCIATESMATERIAL('1i6KNyeSzEZfCGPYrknXEH',$,$,$,(#1528),#1529); -#1531=IFCMATERIALPROFILE($,$,#17,#1527,$,$); -#1532=IFCMEMBERTYPE('0DpQTJ3TzCCPQa1gfCDNye',$,'IPE750x161',$,$,$,$,$,$,$); -#1533=IFCMATERIALPROFILESET($,$,(#1535),$); -#1534=IFCRELASSOCIATESMATERIAL('2FzEi1SW9FtBhX8byJUuQw',$,$,$,(#1532),#1533); -#1535=IFCMATERIALPROFILE($,$,#17,#1527,$,$); -#1536=IFCCOLUMNTYPE('0nDAxEta92n8R2OWEpRqNr',$,'IPE750x161',$,$,$,$,$,$,$); -#1537=IFCMATERIALPROFILESET($,$,(#1539),$); -#1538=IFCRELASSOCIATESMATERIAL('1$BNwLaWz8zOmaU7648LXL',$,$,$,(#1536),#1537); -#1539=IFCMATERIALPROFILE($,$,#17,#1527,$,$); -#1540=IFCISHAPEPROFILEDEF(.AREA.,$,$,267.,762.,14.4,21.6,$,$,$); -#1541=IFCBEAMTYPE('051FwGjG9Cd9l8_3vrYUpp',$,'IPE750x173',$,$,$,$,$,$,$); -#1542=IFCMATERIALPROFILESET($,$,(#1544),$); -#1543=IFCRELASSOCIATESMATERIAL('0UU0Fkxo17tfHw6tRW4FIs',$,$,$,(#1541),#1542); -#1544=IFCMATERIALPROFILE($,$,#17,#1540,$,$); -#1545=IFCMEMBERTYPE('0lY2A$LB18oetzeLcdPf2$',$,'IPE750x173',$,$,$,$,$,$,$); -#1546=IFCMATERIALPROFILESET($,$,(#1548),$); -#1547=IFCRELASSOCIATESMATERIAL('386_4gbFX6oufXcr3WRvej',$,$,$,(#1545),#1546); -#1548=IFCMATERIALPROFILE($,$,#17,#1540,$,$); -#1549=IFCCOLUMNTYPE('2SulkSh0L2ohrD8jDERdLc',$,'IPE750x173',$,$,$,$,$,$,$); -#1550=IFCMATERIALPROFILESET($,$,(#1552),$); -#1551=IFCRELASSOCIATESMATERIAL('1wnPbqDQnDnx_5RCFdrdt2',$,$,$,(#1549),#1550); -#1552=IFCMATERIALPROFILE($,$,#17,#1540,$,$); -#1553=IFCISHAPEPROFILEDEF(.AREA.,$,$,267.,766.,14.9,23.6,$,$,$); -#1554=IFCBEAMTYPE('39wZDLQUP0fP9XWNgHUthD',$,'IPE750x185',$,$,$,$,$,$,$); -#1555=IFCMATERIALPROFILESET($,$,(#1557),$); -#1556=IFCRELASSOCIATESMATERIAL('14PVzUPj19hRUPWbxC4_Vy',$,$,$,(#1554),#1555); -#1557=IFCMATERIALPROFILE($,$,#17,#1553,$,$); -#1558=IFCMEMBERTYPE('0s6sQrZsjDQxhU9w$bRTa7',$,'IPE750x185',$,$,$,$,$,$,$); -#1559=IFCMATERIALPROFILESET($,$,(#1561),$); -#1560=IFCRELASSOCIATESMATERIAL('2n1M590Xf8seq0XeTO_JoR',$,$,$,(#1558),#1559); -#1561=IFCMATERIALPROFILE($,$,#17,#1553,$,$); -#1562=IFCCOLUMNTYPE('0z2jXhF$nAHhbye$4MFaOK',$,'IPE750x185',$,$,$,$,$,$,$); -#1563=IFCMATERIALPROFILESET($,$,(#1565),$); -#1564=IFCRELASSOCIATESMATERIAL('2uWjottZv8VwjH0GMnbmNI',$,$,$,(#1562),#1563); -#1565=IFCMATERIALPROFILE($,$,#17,#1553,$,$); -#1566=IFCISHAPEPROFILEDEF(.AREA.,$,$,268.,770.,15.6,25.4,$,$,$); -#1567=IFCBEAMTYPE('0CcCL1B5rAOvgHwnk95dIv',$,'IPE750x196',$,$,$,$,$,$,$); -#1568=IFCMATERIALPROFILESET($,$,(#1570),$); -#1569=IFCRELASSOCIATESMATERIAL('0Mk0tFLL5CWelgAD4yvhAg',$,$,$,(#1567),#1568); -#1570=IFCMATERIALPROFILE($,$,#17,#1566,$,$); -#1571=IFCMEMBERTYPE('2_S4YqHfj5YPwOMIrctWXI',$,'IPE750x196',$,$,$,$,$,$,$); -#1572=IFCMATERIALPROFILESET($,$,(#1574),$); -#1573=IFCRELASSOCIATESMATERIAL('11xkEaA0zBvwSfMZUi_swY',$,$,$,(#1571),#1572); -#1574=IFCMATERIALPROFILE($,$,#17,#1566,$,$); -#1575=IFCCOLUMNTYPE('3gzyWSNzX28eYKBgK2QNyp',$,'IPE750x196',$,$,$,$,$,$,$); -#1576=IFCMATERIALPROFILESET($,$,(#1578),$); -#1577=IFCRELASSOCIATESMATERIAL('1yfi7zbMn22Oo72irxLp3m',$,$,$,(#1575),#1576); -#1578=IFCMATERIALPROFILE($,$,#17,#1566,$,$); -#1579=IFCISHAPEPROFILEDEF(.AREA.,$,$,55.,98.,3.6,4.7,$,$,$); -#1580=IFCBEAMTYPE('2Hfa28bIP4XwNG9us77T6j',$,'IPEa100',$,$,$,$,$,$,$); -#1581=IFCMATERIALPROFILESET($,$,(#1583),$); -#1582=IFCRELASSOCIATESMATERIAL('2yDzkagzf3IeNHUiJvxtCh',$,$,$,(#1580),#1581); -#1583=IFCMATERIALPROFILE($,$,#17,#1579,$,$); -#1584=IFCMEMBERTYPE('1vTiYMCS585R5oKg77AlI$',$,'IPEa100',$,$,$,$,$,$,$); -#1585=IFCMATERIALPROFILESET($,$,(#1587),$); -#1586=IFCRELASSOCIATESMATERIAL('2CBzMenRXAeemO_0rI592L',$,$,$,(#1584),#1585); -#1587=IFCMATERIALPROFILE($,$,#17,#1579,$,$); -#1588=IFCCOLUMNTYPE('2nT21GcT53FRjru9f0FCFO',$,'IPEa100',$,$,$,$,$,$,$); -#1589=IFCMATERIALPROFILESET($,$,(#1591),$); -#1590=IFCRELASSOCIATESMATERIAL('1ECrftw6z0_QQ$$s1PRiJd',$,$,$,(#1588),#1589); -#1591=IFCMATERIALPROFILE($,$,#17,#1579,$,$); -#1592=IFCISHAPEPROFILEDEF(.AREA.,$,$,64.,117.6,3.8,5.1,$,$,$); -#1593=IFCBEAMTYPE('3OAOps6pLA7AquUJJenkM2',$,'IPEa120',$,$,$,$,$,$,$); -#1594=IFCMATERIALPROFILESET($,$,(#1596),$); -#1595=IFCRELASSOCIATESMATERIAL('3u8gzo4tLDR9A_3v6Dcm0n',$,$,$,(#1593),#1594); -#1596=IFCMATERIALPROFILE($,$,#17,#1592,$,$); -#1597=IFCMEMBERTYPE('0O83bTklzEBObUFDcPpnEO',$,'IPEa120',$,$,$,$,$,$,$); -#1598=IFCMATERIALPROFILESET($,$,(#1600),$); -#1599=IFCRELASSOCIATESMATERIAL('2MZ4uIwxb5r8Ig1$_5Xbg4',$,$,$,(#1597),#1598); -#1600=IFCMATERIALPROFILE($,$,#17,#1592,$,$); -#1601=IFCCOLUMNTYPE('2h9eRcf8P9$ACYp$rQyk6C',$,'IPEa120',$,$,$,$,$,$,$); -#1602=IFCMATERIALPROFILESET($,$,(#1604),$); -#1603=IFCRELASSOCIATESMATERIAL('1g685XWQvATOJPwqbJWRfa',$,$,$,(#1601),#1602); -#1604=IFCMATERIALPROFILE($,$,#17,#1592,$,$); -#1605=IFCISHAPEPROFILEDEF(.AREA.,$,$,73.,137.4,3.8,5.6,$,$,$); -#1606=IFCBEAMTYPE('3kBNPK3Nz6cRu_oAlN3CLX',$,'IPEa140',$,$,$,$,$,$,$); -#1607=IFCMATERIALPROFILESET($,$,(#1609),$); -#1608=IFCRELASSOCIATESMATERIAL('3RSLL3syz8Xwxi18MZd0TW',$,$,$,(#1606),#1607); -#1609=IFCMATERIALPROFILE($,$,#17,#1605,$,$); -#1610=IFCMEMBERTYPE('34ZDuu971CWe6LrVzXvy4R',$,'IPEa140',$,$,$,$,$,$,$); -#1611=IFCMATERIALPROFILESET($,$,(#1613),$); -#1612=IFCRELASSOCIATESMATERIAL('1otXX6hxj2phW0MGmNhlGq',$,$,$,(#1610),#1611); -#1613=IFCMATERIALPROFILE($,$,#17,#1605,$,$); -#1614=IFCCOLUMNTYPE('0x5Ydm29v2HR$bMUrP0kNk',$,'IPEa140',$,$,$,$,$,$,$); -#1615=IFCMATERIALPROFILESET($,$,(#1617),$); -#1616=IFCRELASSOCIATESMATERIAL('069j8c4Eb4gB_LOJX4QuRt',$,$,$,(#1614),#1615); -#1617=IFCMATERIALPROFILE($,$,#17,#1605,$,$); -#1618=IFCISHAPEPROFILEDEF(.AREA.,$,$,82.,157.,4.,5.9,$,$,$); -#1619=IFCBEAMTYPE('3SQRgIXhbAN8aI9KgkIfOH',$,'IPEa160',$,$,$,$,$,$,$); -#1620=IFCMATERIALPROFILESET($,$,(#1622),$); -#1621=IFCRELASSOCIATESMATERIAL('0beUGSFqj6BPyb1azKcgwg',$,$,$,(#1619),#1620); -#1622=IFCMATERIALPROFILE($,$,#17,#1618,$,$); -#1623=IFCMEMBERTYPE('0_Wa6XB7j5ZQUlu_PiT_RM',$,'IPEa160',$,$,$,$,$,$,$); -#1624=IFCMATERIALPROFILESET($,$,(#1626),$); -#1625=IFCRELASSOCIATESMATERIAL('0PE2QI3c51vO3ZMygrSxeB',$,$,$,(#1623),#1624); -#1626=IFCMATERIALPROFILE($,$,#17,#1618,$,$); -#1627=IFCCOLUMNTYPE('03KrMxs9D5NvUd7PZb4_6r',$,'IPEa160',$,$,$,$,$,$,$); -#1628=IFCMATERIALPROFILESET($,$,(#1630),$); -#1629=IFCRELASSOCIATESMATERIAL('2cBOvBAVr6I9S5T7jZ7lsX',$,$,$,(#1627),#1628); -#1630=IFCMATERIALPROFILE($,$,#17,#1618,$,$); -#1631=IFCISHAPEPROFILEDEF(.AREA.,$,$,91.,177.,4.3,6.5,$,$,$); -#1632=IFCBEAMTYPE('1IKCXBeVrEMPC5Us$VhIZf',$,'IPEa180',$,$,$,$,$,$,$); -#1633=IFCMATERIALPROFILESET($,$,(#1635),$); -#1634=IFCRELASSOCIATESMATERIAL('0Bh9WIPUH5JBtTlKf9ypDV',$,$,$,(#1632),#1633); -#1635=IFCMATERIALPROFILE($,$,#17,#1631,$,$); -#1636=IFCMEMBERTYPE('3JuXIlY_D6vRkORqVY3p29',$,'IPEa180',$,$,$,$,$,$,$); -#1637=IFCMATERIALPROFILESET($,$,(#1639),$); -#1638=IFCRELASSOCIATESMATERIAL('1hwfqu5$11Bgdfo8WkefIN',$,$,$,(#1636),#1637); -#1639=IFCMATERIALPROFILE($,$,#17,#1631,$,$); -#1640=IFCCOLUMNTYPE('0ZmlYulG57yupfHE2tSgPx',$,'IPEa180',$,$,$,$,$,$,$); -#1641=IFCMATERIALPROFILESET($,$,(#1643),$); -#1642=IFCRELASSOCIATESMATERIAL('2NTiTt4lHAXPsU9ZjIBhMc',$,$,$,(#1640),#1641); -#1643=IFCMATERIALPROFILE($,$,#17,#1631,$,$); -#1644=IFCISHAPEPROFILEDEF(.AREA.,$,$,100.,197.,4.5,7.,$,$,$); -#1645=IFCBEAMTYPE('1YryQa_Tn6GAoUuhhLONJc',$,'IPEa200',$,$,$,$,$,$,$); -#1646=IFCMATERIALPROFILESET($,$,(#1648),$); -#1647=IFCRELASSOCIATESMATERIAL('1SLB8hpHTFGB9v_3oaerzJ',$,$,$,(#1645),#1646); -#1648=IFCMATERIALPROFILE($,$,#17,#1644,$,$); -#1649=IFCMEMBERTYPE('1aPxwvrWP14PmzV2QkS9bK',$,'IPEa200',$,$,$,$,$,$,$); -#1650=IFCMATERIALPROFILESET($,$,(#1652),$); -#1651=IFCRELASSOCIATESMATERIAL('0KU5hUZjn9iAzjU8VSALe3',$,$,$,(#1649),#1650); -#1652=IFCMATERIALPROFILE($,$,#17,#1644,$,$); -#1653=IFCCOLUMNTYPE('08edK$t496JOqBV$NSWUZH',$,'IPEa200',$,$,$,$,$,$,$); -#1654=IFCMATERIALPROFILESET($,$,(#1656),$); -#1655=IFCRELASSOCIATESMATERIAL('2y9dXQ_TDCpPSBhLla25km',$,$,$,(#1653),#1654); -#1656=IFCMATERIALPROFILE($,$,#17,#1644,$,$); -#1657=IFCISHAPEPROFILEDEF(.AREA.,$,$,110.,217.,5.,7.7,$,$,$); -#1658=IFCBEAMTYPE('03SiRE46T6txIfdE6Pwctz',$,'IPEa220',$,$,$,$,$,$,$); -#1659=IFCMATERIALPROFILESET($,$,(#1661),$); -#1660=IFCRELASSOCIATESMATERIAL('1wfsRWDxH4zBgbkfMmYQDy',$,$,$,(#1658),#1659); -#1661=IFCMATERIALPROFILE($,$,#17,#1657,$,$); -#1662=IFCMEMBERTYPE('2SDFraV0H1aByiaCDcRig2',$,'IPEa220',$,$,$,$,$,$,$); -#1663=IFCMATERIALPROFILESET($,$,(#1665),$); -#1664=IFCRELASSOCIATESMATERIAL('3ivxw1cmf6Kg_984xJpXE0',$,$,$,(#1662),#1663); -#1665=IFCMATERIALPROFILE($,$,#17,#1657,$,$); -#1666=IFCCOLUMNTYPE('0_W3Np_5v6dfXHnBL9SmNo',$,'IPEa220',$,$,$,$,$,$,$); -#1667=IFCMATERIALPROFILESET($,$,(#1669),$); -#1668=IFCRELASSOCIATESMATERIAL('2jCM82n4TD8BenduOUVxzT',$,$,$,(#1666),#1667); -#1669=IFCMATERIALPROFILE($,$,#17,#1657,$,$); -#1670=IFCISHAPEPROFILEDEF(.AREA.,$,$,120.,237.,5.2,8.3,$,$,$); -#1671=IFCBEAMTYPE('2k2CDz_k9ESRCyJdF5P_x3',$,'IPEa240',$,$,$,$,$,$,$); -#1672=IFCMATERIALPROFILESET($,$,(#1674),$); -#1673=IFCRELASSOCIATESMATERIAL('3p9OE21NjBLwgrewXgtUpZ',$,$,$,(#1671),#1672); -#1674=IFCMATERIALPROFILE($,$,#17,#1670,$,$); -#1675=IFCMEMBERTYPE('3fXHqC6Y53$OUtkb7Y0y2L',$,'IPEa240',$,$,$,$,$,$,$); -#1676=IFCMATERIALPROFILESET($,$,(#1678),$); -#1677=IFCRELASSOCIATESMATERIAL('19ze0hjpD8ghVppcE4YxEG',$,$,$,(#1675),#1676); -#1678=IFCMATERIALPROFILE($,$,#17,#1670,$,$); -#1679=IFCCOLUMNTYPE('3EIRwRB9rF7h6LNipr7jRO',$,'IPEa240',$,$,$,$,$,$,$); -#1680=IFCMATERIALPROFILESET($,$,(#1682),$); -#1681=IFCRELASSOCIATESMATERIAL('2pWUybVX9EugbSUxz6iPz9',$,$,$,(#1679),#1680); -#1682=IFCMATERIALPROFILE($,$,#17,#1670,$,$); -#1683=IFCISHAPEPROFILEDEF(.AREA.,$,$,135.,267.,5.5,8.7,$,$,$); -#1684=IFCBEAMTYPE('3x_1T3yX1AdPcAH7$Do7W8',$,'IPEa270',$,$,$,$,$,$,$); -#1685=IFCMATERIALPROFILESET($,$,(#1687),$); -#1686=IFCRELASSOCIATESMATERIAL('1PiqxXUALDo9dKjhO3B$8I',$,$,$,(#1684),#1685); -#1687=IFCMATERIALPROFILE($,$,#17,#1683,$,$); -#1688=IFCMEMBERTYPE('00DJfcjtrEhvn3idh7dupM',$,'IPEa270',$,$,$,$,$,$,$); -#1689=IFCMATERIALPROFILESET($,$,(#1691),$); -#1690=IFCRELASSOCIATESMATERIAL('280KktrU54qPWQDAlLZ6Xu',$,$,$,(#1688),#1689); -#1691=IFCMATERIALPROFILE($,$,#17,#1683,$,$); -#1692=IFCCOLUMNTYPE('3qy5xt$Gf2xfiobHTofo19',$,'IPEa270',$,$,$,$,$,$,$); -#1693=IFCMATERIALPROFILESET($,$,(#1695),$); -#1694=IFCRELASSOCIATESMATERIAL('3nYGr8z0z4CRAwj5mgxdUR',$,$,$,(#1692),#1693); -#1695=IFCMATERIALPROFILE($,$,#17,#1683,$,$); -#1696=IFCISHAPEPROFILEDEF(.AREA.,$,$,150.,297.,6.1,9.2,$,$,$); -#1697=IFCBEAMTYPE('0fKSDj6lb3cPQz2A8ygrUx',$,'IPEa300',$,$,$,$,$,$,$); -#1698=IFCMATERIALPROFILESET($,$,(#1700),$); -#1699=IFCRELASSOCIATESMATERIAL('2u8KZ314XArRTtNOjsu2IB',$,$,$,(#1697),#1698); -#1700=IFCMATERIALPROFILE($,$,#17,#1696,$,$); -#1701=IFCMEMBERTYPE('1L1jz7JHf9QgTNfYZ8hY83',$,'IPEa300',$,$,$,$,$,$,$); -#1702=IFCMATERIALPROFILESET($,$,(#1704),$); -#1703=IFCRELASSOCIATESMATERIAL('1kSqeIGYLDC9CbwJer7lJG',$,$,$,(#1701),#1702); -#1704=IFCMATERIALPROFILE($,$,#17,#1696,$,$); -#1705=IFCCOLUMNTYPE('18Zbi2n4j3YQ9x7M2dw4vg',$,'IPEa300',$,$,$,$,$,$,$); -#1706=IFCMATERIALPROFILESET($,$,(#1708),$); -#1707=IFCRELASSOCIATESMATERIAL('0$kwREx0v7AOWrcdaip$8j',$,$,$,(#1705),#1706); -#1708=IFCMATERIALPROFILE($,$,#17,#1696,$,$); -#1709=IFCISHAPEPROFILEDEF(.AREA.,$,$,160.,327.,6.5,10.,$,$,$); -#1710=IFCBEAMTYPE('2M_tG8ks1D0vM4nYtctfW$',$,'IPEa330',$,$,$,$,$,$,$); -#1711=IFCMATERIALPROFILESET($,$,(#1713),$); -#1712=IFCRELASSOCIATESMATERIAL('1nmDPdXPv3Owbl7$PncubC',$,$,$,(#1710),#1711); -#1713=IFCMATERIALPROFILE($,$,#17,#1709,$,$); -#1714=IFCMEMBERTYPE('1s1pm7GqT4RAsofo0iPbyW',$,'IPEa330',$,$,$,$,$,$,$); -#1715=IFCMATERIALPROFILESET($,$,(#1717),$); -#1716=IFCRELASSOCIATESMATERIAL('3WOiS7rzTAJ9i3lmz9YnFK',$,$,$,(#1714),#1715); -#1717=IFCMATERIALPROFILE($,$,#17,#1709,$,$); -#1718=IFCCOLUMNTYPE('2YLOMg3NH4qgZR1DW$Iw9B',$,'IPEa330',$,$,$,$,$,$,$); -#1719=IFCMATERIALPROFILESET($,$,(#1721),$); -#1720=IFCRELASSOCIATESMATERIAL('218rkYwcf9TB_TVY69ECVP',$,$,$,(#1718),#1719); -#1721=IFCMATERIALPROFILE($,$,#17,#1709,$,$); -#1722=IFCISHAPEPROFILEDEF(.AREA.,$,$,170.,357.6,6.6,11.5,$,$,$); -#1723=IFCBEAMTYPE('3P$8C06_LBsve$DZxRJTdP',$,'IPEa360',$,$,$,$,$,$,$); -#1724=IFCMATERIALPROFILESET($,$,(#1726),$); -#1725=IFCRELASSOCIATESMATERIAL('22HF3iwPL9fRaWOhUXm3J3',$,$,$,(#1723),#1724); -#1726=IFCMATERIALPROFILE($,$,#17,#1722,$,$); -#1727=IFCMEMBERTYPE('3B5doR6ST6jBhHOb8Qfy3A',$,'IPEa360',$,$,$,$,$,$,$); -#1728=IFCMATERIALPROFILESET($,$,(#1730),$); -#1729=IFCRELASSOCIATESMATERIAL('2fJoQNiZ54pubXXV59AiG9',$,$,$,(#1727),#1728); -#1730=IFCMATERIALPROFILE($,$,#17,#1722,$,$); -#1731=IFCCOLUMNTYPE('2pO7Fb6wj5nfY2PHavqfsJ',$,'IPEa360',$,$,$,$,$,$,$); -#1732=IFCMATERIALPROFILESET($,$,(#1734),$); -#1733=IFCRELASSOCIATESMATERIAL('0TXlIyAWrBzxYPNqSeoojo',$,$,$,(#1731),#1732); -#1734=IFCMATERIALPROFILE($,$,#17,#1722,$,$); -#1735=IFCISHAPEPROFILEDEF(.AREA.,$,$,180.,397.,7.,12.,$,$,$); -#1736=IFCBEAMTYPE('0E0KKbGonBh9evX$w2m_s_',$,'IPEa400',$,$,$,$,$,$,$); -#1737=IFCMATERIALPROFILESET($,$,(#1739),$); -#1738=IFCRELASSOCIATESMATERIAL('0S$eNAe8L9URG4Z2ad_hN5',$,$,$,(#1736),#1737); -#1739=IFCMATERIALPROFILE($,$,#17,#1735,$,$); -#1740=IFCMEMBERTYPE('2UBYLZM9b6SBMcrDdu$wmZ',$,'IPEa400',$,$,$,$,$,$,$); -#1741=IFCMATERIALPROFILESET($,$,(#1743),$); -#1742=IFCRELASSOCIATESMATERIAL('3GuxQVg7T63QB1ZGkzQ8rn',$,$,$,(#1740),#1741); -#1743=IFCMATERIALPROFILE($,$,#17,#1735,$,$); -#1744=IFCCOLUMNTYPE('2tFixKq9LBFhlypYs57MMx',$,'IPEa400',$,$,$,$,$,$,$); -#1745=IFCMATERIALPROFILESET($,$,(#1747),$); -#1746=IFCRELASSOCIATESMATERIAL('25nVGhYz97yOHWYZLkG_cV',$,$,$,(#1744),#1745); -#1747=IFCMATERIALPROFILE($,$,#17,#1735,$,$); -#1748=IFCISHAPEPROFILEDEF(.AREA.,$,$,190.,447.,7.6,13.1,$,$,$); -#1749=IFCBEAMTYPE('0zewwmPRL0kfrEXXTcyT1Q',$,'IPEA450',$,$,$,$,$,$,$); -#1750=IFCMATERIALPROFILESET($,$,(#1752),$); -#1751=IFCRELASSOCIATESMATERIAL('1YdmlgL3LBZxt3SYo5skEz',$,$,$,(#1749),#1750); -#1752=IFCMATERIALPROFILE($,$,#17,#1748,$,$); -#1753=IFCMEMBERTYPE('3psexNJY16cunUMoLdxYFl',$,'IPEA450',$,$,$,$,$,$,$); -#1754=IFCMATERIALPROFILESET($,$,(#1756),$); -#1755=IFCRELASSOCIATESMATERIAL('01nY2F5zb2Mfn_8vjrCRi6',$,$,$,(#1753),#1754); -#1756=IFCMATERIALPROFILE($,$,#17,#1748,$,$); -#1757=IFCCOLUMNTYPE('0vP8wZncX5$BMxVmrPMwet',$,'IPEA450',$,$,$,$,$,$,$); -#1758=IFCMATERIALPROFILESET($,$,(#1760),$); -#1759=IFCRELASSOCIATESMATERIAL('306RjxRr10GOrPiKyU8sox',$,$,$,(#1757),#1758); -#1760=IFCMATERIALPROFILE($,$,#17,#1748,$,$); -#1761=IFCISHAPEPROFILEDEF(.AREA.,$,$,200.,497.,8.4,14.5,$,$,$); -#1762=IFCBEAMTYPE('3naZ5dVVT7Cwdu59wa530v',$,'IPEa500',$,$,$,$,$,$,$); -#1763=IFCMATERIALPROFILESET($,$,(#1765),$); -#1764=IFCRELASSOCIATESMATERIAL('1a0AIi7416cf0Ff8zClkSQ',$,$,$,(#1762),#1763); -#1765=IFCMATERIALPROFILE($,$,#17,#1761,$,$); -#1766=IFCMEMBERTYPE('2m0tmLk75BSelTZ13fpimd',$,'IPEa500',$,$,$,$,$,$,$); -#1767=IFCMATERIALPROFILESET($,$,(#1769),$); -#1768=IFCRELASSOCIATESMATERIAL('2jAl$h_Ub0MwwRwv7ceadD',$,$,$,(#1766),#1767); -#1769=IFCMATERIALPROFILE($,$,#17,#1761,$,$); -#1770=IFCCOLUMNTYPE('0rg6AD_hLDif9w5Ig7CUYL',$,'IPEa500',$,$,$,$,$,$,$); -#1771=IFCMATERIALPROFILESET($,$,(#1773),$); -#1772=IFCRELASSOCIATESMATERIAL('1eMyU3DhrD1hl39A$8ZPDH',$,$,$,(#1770),#1771); -#1773=IFCMATERIALPROFILE($,$,#17,#1761,$,$); -#1774=IFCISHAPEPROFILEDEF(.AREA.,$,$,210.,547.,9.,15.7,$,$,$); -#1775=IFCBEAMTYPE('2D_PG7Hof4rhkohsWT$J9W',$,'IPEa550',$,$,$,$,$,$,$); -#1776=IFCMATERIALPROFILESET($,$,(#1778),$); -#1777=IFCRELASSOCIATESMATERIAL('0JH_FXnC58nRSalue_BmSD',$,$,$,(#1775),#1776); -#1778=IFCMATERIALPROFILE($,$,#17,#1774,$,$); -#1779=IFCMEMBERTYPE('1_Wcum2S9E3RBiQ2mbypqc',$,'IPEa550',$,$,$,$,$,$,$); -#1780=IFCMATERIALPROFILESET($,$,(#1782),$); -#1781=IFCRELASSOCIATESMATERIAL('3ki5IP_ar9mu5kJXm8aaSE',$,$,$,(#1779),#1780); -#1782=IFCMATERIALPROFILE($,$,#17,#1774,$,$); -#1783=IFCCOLUMNTYPE('2xifwuKTj1igL4C9UpM98J',$,'IPEa550',$,$,$,$,$,$,$); -#1784=IFCMATERIALPROFILESET($,$,(#1786),$); -#1785=IFCRELASSOCIATESMATERIAL('20uz2LXFj2bP3tIdzO7x1j',$,$,$,(#1783),#1784); -#1786=IFCMATERIALPROFILE($,$,#17,#1774,$,$); -#1787=IFCISHAPEPROFILEDEF(.AREA.,$,$,220.,597.,9.8,17.5,$,$,$); -#1788=IFCBEAMTYPE('0Pkc9fE7X6zelWxsh$AEMS',$,'IPEa600',$,$,$,$,$,$,$); -#1789=IFCMATERIALPROFILESET($,$,(#1791),$); -#1790=IFCRELASSOCIATESMATERIAL('1CMVr6Z$XF6OD5j641VyHm',$,$,$,(#1788),#1789); -#1791=IFCMATERIALPROFILE($,$,#17,#1787,$,$); -#1792=IFCMEMBERTYPE('2DcOiQftL8NPwapzSA$yM5',$,'IPEa600',$,$,$,$,$,$,$); -#1793=IFCMATERIALPROFILESET($,$,(#1795),$); -#1794=IFCRELASSOCIATESMATERIAL('3qklRBbyX1f9w55VNVkAak',$,$,$,(#1792),#1793); -#1795=IFCMATERIALPROFILE($,$,#17,#1787,$,$); -#1796=IFCCOLUMNTYPE('1Btm2pNTrEPOXulRe0o12f',$,'IPEa600',$,$,$,$,$,$,$); -#1797=IFCMATERIALPROFILESET($,$,(#1799),$); -#1798=IFCRELASSOCIATESMATERIAL('3sASUtQkf1iBOwdayjkKOK',$,$,$,(#1796),#1797); -#1799=IFCMATERIALPROFILE($,$,#17,#1787,$,$); -#1800=IFCISHAPEPROFILEDEF(.AREA.,$,$,92.,182.,6.,9.,$,$,$); -#1801=IFCBEAMTYPE('1cBHRAWD94yALuIGwdTJg9',$,'IPEo180',$,$,$,$,$,$,$); -#1802=IFCMATERIALPROFILESET($,$,(#1804),$); -#1803=IFCRELASSOCIATESMATERIAL('1C0RWpvb9DN8f7Cfy2oVfb',$,$,$,(#1801),#1802); -#1804=IFCMATERIALPROFILE($,$,#17,#1800,$,$); -#1805=IFCMEMBERTYPE('3xOHncK6zCGgqHd$iIFRLi',$,'IPEo180',$,$,$,$,$,$,$); -#1806=IFCMATERIALPROFILESET($,$,(#1808),$); -#1807=IFCRELASSOCIATESMATERIAL('1pothWj0T2exbdPKUx9B1A',$,$,$,(#1805),#1806); -#1808=IFCMATERIALPROFILE($,$,#17,#1800,$,$); -#1809=IFCCOLUMNTYPE('3C6WFNZiv5hAS2AHsPsCTQ',$,'IPEo180',$,$,$,$,$,$,$); -#1810=IFCMATERIALPROFILESET($,$,(#1812),$); -#1811=IFCRELASSOCIATESMATERIAL('0lEq90yZP6axKkVPMJTri7',$,$,$,(#1809),#1810); -#1812=IFCMATERIALPROFILE($,$,#17,#1800,$,$); -#1813=IFCISHAPEPROFILEDEF(.AREA.,$,$,102.,202.,6.2,9.5,$,$,$); -#1814=IFCBEAMTYPE('3hRobJ4WvDOw8qWm07za_O',$,'IPEo200',$,$,$,$,$,$,$); -#1815=IFCMATERIALPROFILESET($,$,(#1817),$); -#1816=IFCRELASSOCIATESMATERIAL('0ll6Y7Smn5TRjtW_goq4_D',$,$,$,(#1814),#1815); -#1817=IFCMATERIALPROFILE($,$,#17,#1813,$,$); -#1818=IFCMEMBERTYPE('3FMnn14194X9RVwTkQPBKp',$,'IPEo200',$,$,$,$,$,$,$); -#1819=IFCMATERIALPROFILESET($,$,(#1821),$); -#1820=IFCRELASSOCIATESMATERIAL('2DNO61WdTB8u$wyv_feaNQ',$,$,$,(#1818),#1819); -#1821=IFCMATERIALPROFILE($,$,#17,#1813,$,$); -#1822=IFCCOLUMNTYPE('3Zo6zfIav5DglAthlPdBIn',$,'IPEo200',$,$,$,$,$,$,$); -#1823=IFCMATERIALPROFILESET($,$,(#1825),$); -#1824=IFCRELASSOCIATESMATERIAL('0e6_kdB_P8NwPDGj4kMYfI',$,$,$,(#1822),#1823); -#1825=IFCMATERIALPROFILE($,$,#17,#1813,$,$); -#1826=IFCISHAPEPROFILEDEF(.AREA.,$,$,112.,222.,6.6,10.2,$,$,$); -#1827=IFCBEAMTYPE('2rW1$wVR13mfI2KB2MSGJ8',$,'IPEo220',$,$,$,$,$,$,$); -#1828=IFCMATERIALPROFILESET($,$,(#1830),$); -#1829=IFCRELASSOCIATESMATERIAL('3SNgT$kNP9AOUvAgGOWie8',$,$,$,(#1827),#1828); -#1830=IFCMATERIALPROFILE($,$,#17,#1826,$,$); -#1831=IFCMEMBERTYPE('2CqelovXf9hOuHHoOR_O9m',$,'IPEo220',$,$,$,$,$,$,$); -#1832=IFCMATERIALPROFILESET($,$,(#1834),$); -#1833=IFCRELASSOCIATESMATERIAL('0xnSS7oJHA7QU8zRYlWCJX',$,$,$,(#1831),#1832); -#1834=IFCMATERIALPROFILE($,$,#17,#1826,$,$); -#1835=IFCCOLUMNTYPE('12ceQReXf2GR1eiLPEsR4c',$,'IPEo220',$,$,$,$,$,$,$); -#1836=IFCMATERIALPROFILESET($,$,(#1838),$); -#1837=IFCRELASSOCIATESMATERIAL('12jdZkiu5AFPgu7Y7aNgYj',$,$,$,(#1835),#1836); -#1838=IFCMATERIALPROFILE($,$,#17,#1826,$,$); -#1839=IFCISHAPEPROFILEDEF(.AREA.,$,$,122.,242.,7.,10.8,$,$,$); -#1840=IFCBEAMTYPE('0Kl4$ENqn9jOC8QGXm5TEm',$,'IPEo240',$,$,$,$,$,$,$); -#1841=IFCMATERIALPROFILESET($,$,(#1843),$); -#1842=IFCRELASSOCIATESMATERIAL('0VL7QaIgr52AYQOphhAkLo',$,$,$,(#1840),#1841); -#1843=IFCMATERIALPROFILE($,$,#17,#1839,$,$); -#1844=IFCMEMBERTYPE('1BajyeHYH4b98rkHLr$drN',$,'IPEo240',$,$,$,$,$,$,$); -#1845=IFCMATERIALPROFILESET($,$,(#1847),$); -#1846=IFCRELASSOCIATESMATERIAL('1v5AOxnsH9CO88MvTf2yMb',$,$,$,(#1844),#1845); -#1847=IFCMATERIALPROFILE($,$,#17,#1839,$,$); -#1848=IFCCOLUMNTYPE('3UmHt5gOP5oxWw5JRD701T',$,'IPEo240',$,$,$,$,$,$,$); -#1849=IFCMATERIALPROFILESET($,$,(#1851),$); -#1850=IFCRELASSOCIATESMATERIAL('3nEGI8Gzj0g9ibtNYafzvU',$,$,$,(#1848),#1849); -#1851=IFCMATERIALPROFILE($,$,#17,#1839,$,$); -#1852=IFCISHAPEPROFILEDEF(.AREA.,$,$,136.,274.,7.5,12.2,$,$,$); -#1853=IFCBEAMTYPE('3fxn_AtcnATBuxADzd1gYh',$,'IPEo270',$,$,$,$,$,$,$); -#1854=IFCMATERIALPROFILESET($,$,(#1856),$); -#1855=IFCRELASSOCIATESMATERIAL('28Vptsg4X1EAtbStNmg0$Y',$,$,$,(#1853),#1854); -#1856=IFCMATERIALPROFILE($,$,#17,#1852,$,$); -#1857=IFCMEMBERTYPE('3ickfkecz1DfQDWIsv8Hm4',$,'IPEo270',$,$,$,$,$,$,$); -#1858=IFCMATERIALPROFILESET($,$,(#1860),$); -#1859=IFCRELASSOCIATESMATERIAL('32PP444dLDcv7IM9UZfpCa',$,$,$,(#1857),#1858); -#1860=IFCMATERIALPROFILE($,$,#17,#1852,$,$); -#1861=IFCCOLUMNTYPE('2c96fS9bjEAQvZcjQYThI8',$,'IPEo270',$,$,$,$,$,$,$); -#1862=IFCMATERIALPROFILESET($,$,(#1864),$); -#1863=IFCRELASSOCIATESMATERIAL('3RI7tgkgX6eQEx$1r7pFmH',$,$,$,(#1861),#1862); -#1864=IFCMATERIALPROFILE($,$,#17,#1852,$,$); -#1865=IFCISHAPEPROFILEDEF(.AREA.,$,$,152.,304.,8.,12.7,$,$,$); -#1866=IFCBEAMTYPE('2RRgoD$9X3RQy6DS5_GqX2',$,'IPEo300',$,$,$,$,$,$,$); -#1867=IFCMATERIALPROFILESET($,$,(#1869),$); -#1868=IFCRELASSOCIATESMATERIAL('1KrguB_vnAXu_5us3aFU9g',$,$,$,(#1866),#1867); -#1869=IFCMATERIALPROFILE($,$,#17,#1865,$,$); -#1870=IFCMEMBERTYPE('3wmOSqLMf74QZuIyEEjfEq',$,'IPEo300',$,$,$,$,$,$,$); -#1871=IFCMATERIALPROFILESET($,$,(#1873),$); -#1872=IFCRELASSOCIATESMATERIAL('22zmt08BH5BwBY2ZViKRAv',$,$,$,(#1870),#1871); -#1873=IFCMATERIALPROFILE($,$,#17,#1865,$,$); -#1874=IFCCOLUMNTYPE('1pGXBu1V9Cf8XoAOA4MCNC',$,'IPEo300',$,$,$,$,$,$,$); -#1875=IFCMATERIALPROFILESET($,$,(#1877),$); -#1876=IFCRELASSOCIATESMATERIAL('3Df1NWF6XEHRsljd5gXdjK',$,$,$,(#1874),#1875); -#1877=IFCMATERIALPROFILE($,$,#17,#1865,$,$); -#1878=IFCISHAPEPROFILEDEF(.AREA.,$,$,162.,334.,8.5,13.5,$,$,$); -#1879=IFCBEAMTYPE('2FENnocM55a9kf52uDDLsS',$,'IPEo330',$,$,$,$,$,$,$); -#1880=IFCMATERIALPROFILESET($,$,(#1882),$); -#1881=IFCRELASSOCIATESMATERIAL('14O7BgWWLDZwebaZBqUwQv',$,$,$,(#1879),#1880); -#1882=IFCMATERIALPROFILE($,$,#17,#1878,$,$); -#1883=IFCMEMBERTYPE('2mgp$vEdv1axLdkuEJPDFg',$,'IPEo330',$,$,$,$,$,$,$); -#1884=IFCMATERIALPROFILESET($,$,(#1886),$); -#1885=IFCRELASSOCIATESMATERIAL('27L5PAfPX4Q88Z2ppOoBJh',$,$,$,(#1883),#1884); -#1886=IFCMATERIALPROFILE($,$,#17,#1878,$,$); -#1887=IFCCOLUMNTYPE('2_Kk7YZB15S9iIdH6fpVf4',$,'IPEo330',$,$,$,$,$,$,$); -#1888=IFCMATERIALPROFILESET($,$,(#1890),$); -#1889=IFCRELASSOCIATESMATERIAL('27JUNA1yv9rvMsDC$LFf04',$,$,$,(#1887),#1888); -#1890=IFCMATERIALPROFILE($,$,#17,#1878,$,$); -#1891=IFCISHAPEPROFILEDEF(.AREA.,$,$,172.,364.,9.2,14.7,$,$,$); -#1892=IFCBEAMTYPE('2vVd45lWDAowzjIRCu7ccO',$,'IPEo360',$,$,$,$,$,$,$); -#1893=IFCMATERIALPROFILESET($,$,(#1895),$); -#1894=IFCRELASSOCIATESMATERIAL('0bsHzZuCj6cv9sRSPaJHrZ',$,$,$,(#1892),#1893); -#1895=IFCMATERIALPROFILE($,$,#17,#1891,$,$); -#1896=IFCMEMBERTYPE('0_LQuL5q51JAk$Owadgzvp',$,'IPEo360',$,$,$,$,$,$,$); -#1897=IFCMATERIALPROFILESET($,$,(#1899),$); -#1898=IFCRELASSOCIATESMATERIAL('15eVkyrinEXR6gDHSNEA$M',$,$,$,(#1896),#1897); -#1899=IFCMATERIALPROFILE($,$,#17,#1891,$,$); -#1900=IFCCOLUMNTYPE('3Qe8CMo3b3bhlxBIAJ1y50',$,'IPEo360',$,$,$,$,$,$,$); -#1901=IFCMATERIALPROFILESET($,$,(#1903),$); -#1902=IFCRELASSOCIATESMATERIAL('0ZeUdOzqr4IeKihAULmAyL',$,$,$,(#1900),#1901); -#1903=IFCMATERIALPROFILE($,$,#17,#1891,$,$); -#1904=IFCISHAPEPROFILEDEF(.AREA.,$,$,182.,404.,9.7,15.5,$,$,$); -#1905=IFCBEAMTYPE('1SF69i8q5FrPbLaMLnDiUk',$,'IPEo400',$,$,$,$,$,$,$); -#1906=IFCMATERIALPROFILESET($,$,(#1908),$); -#1907=IFCRELASSOCIATESMATERIAL('1HrrYHyJL5swpIYbUJe$rM',$,$,$,(#1905),#1906); -#1908=IFCMATERIALPROFILE($,$,#17,#1904,$,$); -#1909=IFCMEMBERTYPE('0RcctoGiPEJPjlE7WiEnkq',$,'IPEo400',$,$,$,$,$,$,$); -#1910=IFCMATERIALPROFILESET($,$,(#1912),$); -#1911=IFCRELASSOCIATESMATERIAL('3cvTIb2Dz6e9pv7Vnnjtis',$,$,$,(#1909),#1910); -#1912=IFCMATERIALPROFILE($,$,#17,#1904,$,$); -#1913=IFCCOLUMNTYPE('2M_Mu3Ysr8R9aoSciGYavt',$,'IPEo400',$,$,$,$,$,$,$); -#1914=IFCMATERIALPROFILESET($,$,(#1916),$); -#1915=IFCRELASSOCIATESMATERIAL('0gmi2Y9Hj87Pk9qcQQ_Omh',$,$,$,(#1913),#1914); -#1916=IFCMATERIALPROFILE($,$,#17,#1904,$,$); -#1917=IFCISHAPEPROFILEDEF(.AREA.,$,$,192.,456.,11.,17.6,$,$,$); -#1918=IFCBEAMTYPE('0hYbbnLiz7SQErp$SgGokc',$,'IPEo450',$,$,$,$,$,$,$); -#1919=IFCMATERIALPROFILESET($,$,(#1921),$); -#1920=IFCRELASSOCIATESMATERIAL('0XCoOtzprC5Ob3BL0lORmo',$,$,$,(#1918),#1919); -#1921=IFCMATERIALPROFILE($,$,#17,#1917,$,$); -#1922=IFCMEMBERTYPE('2qgzwCWK9BaOYEfsDHRlsI',$,'IPEo450',$,$,$,$,$,$,$); -#1923=IFCMATERIALPROFILESET($,$,(#1925),$); -#1924=IFCRELASSOCIATESMATERIAL('2Q8RQmeW1E89HRolZSJLew',$,$,$,(#1922),#1923); -#1925=IFCMATERIALPROFILE($,$,#17,#1917,$,$); -#1926=IFCCOLUMNTYPE('1xyEybWmz5UuTyXxNVnkYQ',$,'IPEo450',$,$,$,$,$,$,$); -#1927=IFCMATERIALPROFILESET($,$,(#1929),$); -#1928=IFCRELASSOCIATESMATERIAL('0XEbuF6sXAsx0cr_HAECJw',$,$,$,(#1926),#1927); -#1929=IFCMATERIALPROFILE($,$,#17,#1917,$,$); -#1930=IFCISHAPEPROFILEDEF(.AREA.,$,$,202.,506.,12.,19.,$,$,$); -#1931=IFCBEAMTYPE('2kFoRMZsn9veT5sQyqVTnj',$,'IPEo500',$,$,$,$,$,$,$); -#1932=IFCMATERIALPROFILESET($,$,(#1934),$); -#1933=IFCRELASSOCIATESMATERIAL('2XlujJZ659XgijBOqm4A$2',$,$,$,(#1931),#1932); -#1934=IFCMATERIALPROFILE($,$,#17,#1930,$,$); -#1935=IFCMEMBERTYPE('3rPTELotXBgP$wYLF$Efm_',$,'IPEo500',$,$,$,$,$,$,$); -#1936=IFCMATERIALPROFILESET($,$,(#1938),$); -#1937=IFCRELASSOCIATESMATERIAL('0akDXW7DH01RlCsr7iuQfc',$,$,$,(#1935),#1936); -#1938=IFCMATERIALPROFILE($,$,#17,#1930,$,$); -#1939=IFCCOLUMNTYPE('2p77$hKgjBURrJ8nkpRIFi',$,'IPEo500',$,$,$,$,$,$,$); -#1940=IFCMATERIALPROFILESET($,$,(#1942),$); -#1941=IFCRELASSOCIATESMATERIAL('1XjpKKKID5gvqz$wke1dLO',$,$,$,(#1939),#1940); -#1942=IFCMATERIALPROFILE($,$,#17,#1930,$,$); -#1943=IFCISHAPEPROFILEDEF(.AREA.,$,$,212.,556.,12.7,20.2,$,$,$); -#1944=IFCBEAMTYPE('19d2E0DWLD8w3QBmBx_a88',$,'IPEo550',$,$,$,$,$,$,$); -#1945=IFCMATERIALPROFILESET($,$,(#1947),$); -#1946=IFCRELASSOCIATESMATERIAL('3GuiE6MiT7qvAI3I9HXJQW',$,$,$,(#1944),#1945); -#1947=IFCMATERIALPROFILE($,$,#17,#1943,$,$); -#1948=IFCMEMBERTYPE('3geJ9WA8vEW8aMh6pwLr75',$,'IPEo550',$,$,$,$,$,$,$); -#1949=IFCMATERIALPROFILESET($,$,(#1951),$); -#1950=IFCRELASSOCIATESMATERIAL('01e0_POtH8QR0iIxu6YIOG',$,$,$,(#1948),#1949); -#1951=IFCMATERIALPROFILE($,$,#17,#1943,$,$); -#1952=IFCCOLUMNTYPE('3WjxakAlbABh2F9wtShG5M',$,'IPEo550',$,$,$,$,$,$,$); -#1953=IFCMATERIALPROFILESET($,$,(#1955),$); -#1954=IFCRELASSOCIATESMATERIAL('37RMrpggrAoeQgimQHUruF',$,$,$,(#1952),#1953); -#1955=IFCMATERIALPROFILE($,$,#17,#1943,$,$); -#1956=IFCISHAPEPROFILEDEF(.AREA.,$,$,224.,610.,15.,24.,$,$,$); -#1957=IFCBEAMTYPE('1dXWrgSoP2egEcNfFEYJyd',$,'IPEo600',$,$,$,$,$,$,$); -#1958=IFCMATERIALPROFILESET($,$,(#1960),$); -#1959=IFCRELASSOCIATESMATERIAL('1apjTwXt964weKACOYaZ6b',$,$,$,(#1957),#1958); -#1960=IFCMATERIALPROFILE($,$,#17,#1956,$,$); -#1961=IFCMEMBERTYPE('2kSmYWYBbEku2fNKV9U_Fm',$,'IPEo600',$,$,$,$,$,$,$); -#1962=IFCMATERIALPROFILESET($,$,(#1964),$); -#1963=IFCRELASSOCIATESMATERIAL('1oaGonhDT3pe4$4_iDqXRp',$,$,$,(#1961),#1962); -#1964=IFCMATERIALPROFILE($,$,#17,#1956,$,$); -#1965=IFCCOLUMNTYPE('3yCGFYf6bC68cKCJeqbWr0',$,'IPEo600',$,$,$,$,$,$,$); -#1966=IFCMATERIALPROFILESET($,$,(#1968),$); -#1967=IFCRELASSOCIATESMATERIAL('3CMmfHnz50nu0sgjBK8MIh',$,$,$,(#1965),#1966); -#1968=IFCMATERIALPROFILE($,$,#17,#1956,$,$); -#1969=IFCISHAPEPROFILEDEF(.AREA.,$,$,72.,142.,5.3,7.8,$,$,$); -#1970=IFCBEAMTYPE('0nhXr0EG5Bsfs9SEeCyVd3',$,'IPEr140',$,$,$,$,$,$,$); -#1971=IFCMATERIALPROFILESET($,$,(#1973),$); -#1972=IFCRELASSOCIATESMATERIAL('2xOKebFOH6ZQMpi4CBSOfR',$,$,$,(#1970),#1971); -#1973=IFCMATERIALPROFILE($,$,#17,#1969,$,$); -#1974=IFCMEMBERTYPE('2njS5lCfT55heysHgKREhJ',$,'IPEr140',$,$,$,$,$,$,$); -#1975=IFCMATERIALPROFILESET($,$,(#1977),$); -#1976=IFCRELASSOCIATESMATERIAL('2agT19iZ1AAfPTZXeqQmO4',$,$,$,(#1974),#1975); -#1977=IFCMATERIALPROFILE($,$,#17,#1969,$,$); -#1978=IFCCOLUMNTYPE('0HpoCKZoX1eg4aJa0mQNzx',$,'IPEr140',$,$,$,$,$,$,$); -#1979=IFCMATERIALPROFILESET($,$,(#1981),$); -#1980=IFCRELASSOCIATESMATERIAL('38z$eZMe9EbAaQfJ_VOriC',$,$,$,(#1978),#1979); -#1981=IFCMATERIALPROFILE($,$,#17,#1969,$,$); -#1982=IFCISHAPEPROFILEDEF(.AREA.,$,$,81.,162.,5.6,8.5,$,$,$); -#1983=IFCBEAMTYPE('2K4hJhdqP5aAQXV6j9_bAx',$,'IPEr160',$,$,$,$,$,$,$); -#1984=IFCMATERIALPROFILESET($,$,(#1986),$); -#1985=IFCRELASSOCIATESMATERIAL('2b1BbrLUP60wdazaeGy$nV',$,$,$,(#1983),#1984); -#1986=IFCMATERIALPROFILE($,$,#17,#1982,$,$); -#1987=IFCMEMBERTYPE('26AamKmuj3_u3KXGnYmqK6',$,'IPEr160',$,$,$,$,$,$,$); -#1988=IFCMATERIALPROFILESET($,$,(#1990),$); -#1989=IFCRELASSOCIATESMATERIAL('2tNXsFhD9EPf8KqAv9_Qc2',$,$,$,(#1987),#1988); -#1990=IFCMATERIALPROFILE($,$,#17,#1982,$,$); -#1991=IFCCOLUMNTYPE('1jUDef9BT6q85GjvtApUcp',$,'IPEr160',$,$,$,$,$,$,$); -#1992=IFCMATERIALPROFILESET($,$,(#1994),$); -#1993=IFCRELASSOCIATESMATERIAL('3eo_5m2Oz8J8upFwFjfo0T',$,$,$,(#1991),#1992); -#1994=IFCMATERIALPROFILE($,$,#17,#1982,$,$); -#1995=IFCISHAPEPROFILEDEF(.AREA.,$,$,92.,183.,6.,9.,$,$,$); -#1996=IFCBEAMTYPE('0XOTXzcTf1E97iRjUxUQe4',$,'IPEr180',$,$,$,$,$,$,$); -#1997=IFCMATERIALPROFILESET($,$,(#1999),$); -#1998=IFCRELASSOCIATESMATERIAL('2yiAeveC9FkAOTp7Bs4hIg',$,$,$,(#1996),#1997); -#1999=IFCMATERIALPROFILE($,$,#17,#1995,$,$); -#2000=IFCMEMBERTYPE('2mj9Tq1u5FEv9GvkmLJZW8',$,'IPEr180',$,$,$,$,$,$,$); -#2001=IFCMATERIALPROFILESET($,$,(#2003),$); -#2002=IFCRELASSOCIATESMATERIAL('1Z_9g45Jn3sudqr8SLp3Ay',$,$,$,(#2000),#2001); -#2003=IFCMATERIALPROFILE($,$,#17,#1995,$,$); -#2004=IFCCOLUMNTYPE('0z9ZYcLyr7OxJmayFHC500',$,'IPEr180',$,$,$,$,$,$,$); -#2005=IFCMATERIALPROFILESET($,$,(#2007),$); -#2006=IFCRELASSOCIATESMATERIAL('0n9fi73X52nwHSDfcd_wfz',$,$,$,(#2004),#2005); -#2007=IFCMATERIALPROFILE($,$,#17,#1995,$,$); -#2008=IFCISHAPEPROFILEDEF(.AREA.,$,$,98.,204.,6.6,10.5,$,$,$); -#2009=IFCBEAMTYPE('2WFwRuCm5CuP5NdwN2bI95',$,'IPEr200',$,$,$,$,$,$,$); -#2010=IFCMATERIALPROFILESET($,$,(#2012),$); -#2011=IFCRELASSOCIATESMATERIAL('0AhkHtgUr5IwCx3NEIRCpi',$,$,$,(#2009),#2010); -#2012=IFCMATERIALPROFILE($,$,#17,#2008,$,$); -#2013=IFCMEMBERTYPE('1tJ8gy82DDwvjPRTd$8fE2',$,'IPEr200',$,$,$,$,$,$,$); -#2014=IFCMATERIALPROFILESET($,$,(#2016),$); -#2015=IFCRELASSOCIATESMATERIAL('1FJxCQjhXBnfxFc8Qfd24w',$,$,$,(#2013),#2014); -#2016=IFCMATERIALPROFILE($,$,#17,#2008,$,$); -#2017=IFCCOLUMNTYPE('19K8PB5lrDTOJPjlfK9ref',$,'IPEr200',$,$,$,$,$,$,$); -#2018=IFCMATERIALPROFILESET($,$,(#2020),$); -#2019=IFCRELASSOCIATESMATERIAL('33QSH1PH57s8UaEk6GArBP',$,$,$,(#2017),#2018); -#2020=IFCMATERIALPROFILE($,$,#17,#2008,$,$); -#2021=IFCISHAPEPROFILEDEF(.AREA.,$,$,108.,225.,6.7,11.8,$,$,$); -#2022=IFCBEAMTYPE('1TtbvYTl98shbCuwPeee6W',$,'IPEr220',$,$,$,$,$,$,$); -#2023=IFCMATERIALPROFILESET($,$,(#2025),$); -#2024=IFCRELASSOCIATESMATERIAL('2A7DLFfvb38hXilINzb6Bs',$,$,$,(#2022),#2023); -#2025=IFCMATERIALPROFILE($,$,#17,#2021,$,$); -#2026=IFCMEMBERTYPE('0$JeaSjVT8QwV2nhuNtQB1',$,'IPEr220',$,$,$,$,$,$,$); -#2027=IFCMATERIALPROFILESET($,$,(#2029),$); -#2028=IFCRELASSOCIATESMATERIAL('1gPLoANqbCBOSXgUIfAgn$',$,$,$,(#2026),#2027); -#2029=IFCMATERIALPROFILE($,$,#17,#2021,$,$); -#2030=IFCCOLUMNTYPE('35rhjNRYTAQg5BlcvS3KGy',$,'IPEr220',$,$,$,$,$,$,$); -#2031=IFCMATERIALPROFILESET($,$,(#2033),$); -#2032=IFCRELASSOCIATESMATERIAL('2bB$URJGbEKg2U1ZmTZtH2',$,$,$,(#2030),#2031); -#2033=IFCMATERIALPROFILE($,$,#17,#2021,$,$); -#2034=IFCISHAPEPROFILEDEF(.AREA.,$,$,118.,245.,7.5,12.3,$,$,$); -#2035=IFCBEAMTYPE('1_Ldnhr315yflBcDUxrNMs',$,'IPEr240',$,$,$,$,$,$,$); -#2036=IFCMATERIALPROFILESET($,$,(#2038),$); -#2037=IFCRELASSOCIATESMATERIAL('1K2GYhX1v9oAbgO7gu7KZp',$,$,$,(#2035),#2036); -#2038=IFCMATERIALPROFILE($,$,#17,#2034,$,$); -#2039=IFCMEMBERTYPE('2lVpSMD5jCH8hOUniAMsu$',$,'IPEr240',$,$,$,$,$,$,$); -#2040=IFCMATERIALPROFILESET($,$,(#2042),$); -#2041=IFCRELASSOCIATESMATERIAL('0dEk97do16LBbi1m7LABff',$,$,$,(#2039),#2040); -#2042=IFCMATERIALPROFILE($,$,#17,#2034,$,$); -#2043=IFCCOLUMNTYPE('3$wX0CQ_n5nOyZUCo6xvdn',$,'IPEr240',$,$,$,$,$,$,$); -#2044=IFCMATERIALPROFILESET($,$,(#2046),$); -#2045=IFCRELASSOCIATESMATERIAL('3F48YdiKD3mg4u3qtbd5Cj',$,$,$,(#2043),#2044); -#2046=IFCMATERIALPROFILE($,$,#17,#2034,$,$); -#2047=IFCISHAPEPROFILEDEF(.AREA.,$,$,133.,276.,7.1,13.1,$,$,$); -#2048=IFCBEAMTYPE('2k0r11yfHB5hTt$WBzkBrH',$,'IPEr270',$,$,$,$,$,$,$); -#2049=IFCMATERIALPROFILESET($,$,(#2051),$); -#2050=IFCRELASSOCIATESMATERIAL('0XNsAaTij4dvVNn4wT0453',$,$,$,(#2048),#2049); -#2051=IFCMATERIALPROFILE($,$,#17,#2047,$,$); -#2052=IFCMEMBERTYPE('1L8wt9avD6_QE7HNTSr$CA',$,'IPEr270',$,$,$,$,$,$,$); -#2053=IFCMATERIALPROFILESET($,$,(#2055),$); -#2054=IFCRELASSOCIATESMATERIAL('3w$hcjYDb1KAqEH5VuE2oK',$,$,$,(#2052),#2053); -#2055=IFCMATERIALPROFILE($,$,#17,#2047,$,$); -#2056=IFCCOLUMNTYPE('3yXg6uqnb5yQwWnyWbODDW',$,'IPEr270',$,$,$,$,$,$,$); -#2057=IFCMATERIALPROFILESET($,$,(#2059),$); -#2058=IFCRELASSOCIATESMATERIAL('1fVxur1qn0mPd1NajykIXb',$,$,$,(#2056),#2057); -#2059=IFCMATERIALPROFILE($,$,#17,#2047,$,$); -#2060=IFCISHAPEPROFILEDEF(.AREA.,$,$,147.,306.,8.5,13.7,$,$,$); -#2061=IFCBEAMTYPE('0uesVjzZvE4AWYhaUP82KD',$,'IPEr300',$,$,$,$,$,$,$); -#2062=IFCMATERIALPROFILESET($,$,(#2064),$); -#2063=IFCRELASSOCIATESMATERIAL('0fQfTZMWb8KOqd$SY0Xsv9',$,$,$,(#2061),#2062); -#2064=IFCMATERIALPROFILE($,$,#17,#2060,$,$); -#2065=IFCMEMBERTYPE('0QDfUoqcz6fBggv73JDgg3',$,'IPEr300',$,$,$,$,$,$,$); -#2066=IFCMATERIALPROFILESET($,$,(#2068),$); -#2067=IFCRELASSOCIATESMATERIAL('0oxWvSkSnDFBAoT_4zqiw8',$,$,$,(#2065),#2066); -#2068=IFCMATERIALPROFILE($,$,#17,#2060,$,$); -#2069=IFCCOLUMNTYPE('2$ZMztaDX89wwvFNshXcWS',$,'IPEr300',$,$,$,$,$,$,$); -#2070=IFCMATERIALPROFILESET($,$,(#2072),$); -#2071=IFCRELASSOCIATESMATERIAL('3ofMDjs9f5i8UskOfNlG2h',$,$,$,(#2069),#2070); -#2072=IFCMATERIALPROFILE($,$,#17,#2060,$,$); -#2073=IFCISHAPEPROFILEDEF(.AREA.,$,$,158.,336.,9.2,14.5,$,$,$); -#2074=IFCBEAMTYPE('1rpRg92Hz0hOgNKVKCEM8M',$,'IPEr330',$,$,$,$,$,$,$); -#2075=IFCMATERIALPROFILESET($,$,(#2077),$); -#2076=IFCRELASSOCIATESMATERIAL('3T2D3tTLz1buu8GHHf_TpM',$,$,$,(#2074),#2075); -#2077=IFCMATERIALPROFILE($,$,#17,#2073,$,$); -#2078=IFCMEMBERTYPE('2d4gu2_8T9tgDrRKxJyEZe',$,'IPEr330',$,$,$,$,$,$,$); -#2079=IFCMATERIALPROFILESET($,$,(#2081),$); -#2080=IFCRELASSOCIATESMATERIAL('3AOBw2Kaf0UAuSqO3y71t6',$,$,$,(#2078),#2079); -#2081=IFCMATERIALPROFILE($,$,#17,#2073,$,$); -#2082=IFCCOLUMNTYPE('32U9kXvlz5XxR4XoeaBpTj',$,'IPEr330',$,$,$,$,$,$,$); -#2083=IFCMATERIALPROFILESET($,$,(#2085),$); -#2084=IFCRELASSOCIATESMATERIAL('2014Ed$OH8$9km2h2coihE',$,$,$,(#2082),#2083); -#2085=IFCMATERIALPROFILE($,$,#17,#2073,$,$); -#2086=IFCISHAPEPROFILEDEF(.AREA.,$,$,168.,366.,9.9,16.,$,$,$); -#2087=IFCBEAMTYPE('2Ms8sf5gz9RfrSULnafCIH',$,'IPEr360',$,$,$,$,$,$,$); -#2088=IFCMATERIALPROFILESET($,$,(#2090),$); -#2089=IFCRELASSOCIATESMATERIAL('375TbfFE17gO9CS_l7g07A',$,$,$,(#2087),#2088); -#2090=IFCMATERIALPROFILE($,$,#17,#2086,$,$); -#2091=IFCMEMBERTYPE('1jOSAgSpj87wB7y4KDnjZ8',$,'IPEr360',$,$,$,$,$,$,$); -#2092=IFCMATERIALPROFILESET($,$,(#2094),$); -#2093=IFCRELASSOCIATESMATERIAL('13rbEvd9D5f8LzOsQ$Dwm3',$,$,$,(#2091),#2092); -#2094=IFCMATERIALPROFILE($,$,#17,#2086,$,$); -#2095=IFCCOLUMNTYPE('2O71mOKv5Awg6n$KAHrK0M',$,'IPEr360',$,$,$,$,$,$,$); -#2096=IFCMATERIALPROFILESET($,$,(#2098),$); -#2097=IFCRELASSOCIATESMATERIAL('2mTtMidsH0PRn_EHtnZ3Pe',$,$,$,(#2095),#2096); -#2098=IFCMATERIALPROFILE($,$,#17,#2086,$,$); -#2099=IFCISHAPEPROFILEDEF(.AREA.,$,$,178.,407.,10.6,17.,$,$,$); -#2100=IFCBEAMTYPE('09tluHkJPFoxMNxm2GAbEw',$,'IPEr400',$,$,$,$,$,$,$); -#2101=IFCMATERIALPROFILESET($,$,(#2103),$); -#2102=IFCRELASSOCIATESMATERIAL('3Rx_7fqKj6XPAhUI8JO8_L',$,$,$,(#2100),#2101); -#2103=IFCMATERIALPROFILE($,$,#17,#2099,$,$); -#2104=IFCMEMBERTYPE('27OmuKFvv8Nu11CdE_5PZh',$,'IPEr400',$,$,$,$,$,$,$); -#2105=IFCMATERIALPROFILESET($,$,(#2107),$); -#2106=IFCRELASSOCIATESMATERIAL('26cxyhEmf2LQfPubpjT9tN',$,$,$,(#2104),#2105); -#2107=IFCMATERIALPROFILE($,$,#17,#2099,$,$); -#2108=IFCCOLUMNTYPE('3mS0UCO0j5qhQYjtiiN2d7',$,'IPEr400',$,$,$,$,$,$,$); -#2109=IFCMATERIALPROFILESET($,$,(#2111),$); -#2110=IFCRELASSOCIATESMATERIAL('2YQU2Lifr1z8DuRpjTZM9s',$,$,$,(#2108),#2109); -#2111=IFCMATERIALPROFILE($,$,#17,#2099,$,$); -#2112=IFCISHAPEPROFILEDEF(.AREA.,$,$,188.,458.,11.3,18.6,$,$,$); -#2113=IFCBEAMTYPE('06vk3PhlP3APFXPWio7mqu',$,'IPEr450',$,$,$,$,$,$,$); -#2114=IFCMATERIALPROFILESET($,$,(#2116),$); -#2115=IFCRELASSOCIATESMATERIAL('0GV5ToI35EAAZEmiI4xNpT',$,$,$,(#2113),#2114); -#2116=IFCMATERIALPROFILE($,$,#17,#2112,$,$); -#2117=IFCMEMBERTYPE('1vkDOoGFL2FAqChh2VscTc',$,'IPEr450',$,$,$,$,$,$,$); -#2118=IFCMATERIALPROFILESET($,$,(#2120),$); -#2119=IFCRELASSOCIATESMATERIAL('1ENVdj0vLB6uLqKmIAnQyS',$,$,$,(#2117),#2118); -#2120=IFCMATERIALPROFILE($,$,#17,#2112,$,$); -#2121=IFCCOLUMNTYPE('0kqEBKMafBQQvINr5xQR32',$,'IPEr450',$,$,$,$,$,$,$); -#2122=IFCMATERIALPROFILESET($,$,(#2124),$); -#2123=IFCRELASSOCIATESMATERIAL('3QSU2yIG98rBBBJFJVSoZO',$,$,$,(#2121),#2122); -#2124=IFCMATERIALPROFILE($,$,#17,#2112,$,$); -#2125=IFCISHAPEPROFILEDEF(.AREA.,$,$,198.,508.,12.6,20.,$,$,$); -#2126=IFCBEAMTYPE('0R$E0l93f1qvCjk0Kqf5cT',$,'IPEr500',$,$,$,$,$,$,$); -#2127=IFCMATERIALPROFILESET($,$,(#2129),$); -#2128=IFCRELASSOCIATESMATERIAL('12bJdlBIrD2P_ScEmqeVzR',$,$,$,(#2126),#2127); -#2129=IFCMATERIALPROFILE($,$,#17,#2125,$,$); -#2130=IFCMEMBERTYPE('0Rg7Odmpr2iAnqdcc00h2c',$,'IPEr500',$,$,$,$,$,$,$); -#2131=IFCMATERIALPROFILESET($,$,(#2133),$); -#2132=IFCRELASSOCIATESMATERIAL('23M_kAuX555ugOGeNzaUHF',$,$,$,(#2130),#2131); -#2133=IFCMATERIALPROFILE($,$,#17,#2125,$,$); -#2134=IFCCOLUMNTYPE('1VKAf8i8DA0wKnZFEC9kNQ',$,'IPEr500',$,$,$,$,$,$,$); -#2135=IFCMATERIALPROFILESET($,$,(#2137),$); -#2136=IFCRELASSOCIATESMATERIAL('3qtLZBPUfFl9I_QxCJuJd7',$,$,$,(#2134),#2135); -#2137=IFCMATERIALPROFILE($,$,#17,#2125,$,$); -#2138=IFCISHAPEPROFILEDEF(.AREA.,$,$,210.,560.,14.,22.2,$,$,$); -#2139=IFCBEAMTYPE('2g0r1nKdP4WASQEmz5ja_R',$,'IPEr550',$,$,$,$,$,$,$); -#2140=IFCMATERIALPROFILESET($,$,(#2142),$); -#2141=IFCRELASSOCIATESMATERIAL('1usP8E6pDCbQFaP5Ai1ZWV',$,$,$,(#2139),#2140); -#2142=IFCMATERIALPROFILE($,$,#17,#2138,$,$); -#2143=IFCMEMBERTYPE('2iZZTEsanDkwn2xRxFkNOG',$,'IPEr550',$,$,$,$,$,$,$); -#2144=IFCMATERIALPROFILESET($,$,(#2146),$); -#2145=IFCRELASSOCIATESMATERIAL('0DDG5rls5FuAhiHOnC6IJd',$,$,$,(#2143),#2144); -#2146=IFCMATERIALPROFILE($,$,#17,#2138,$,$); -#2147=IFCCOLUMNTYPE('36$PxRxxH7GPRLFq9DpN5B',$,'IPEr550',$,$,$,$,$,$,$); -#2148=IFCMATERIALPROFILESET($,$,(#2150),$); -#2149=IFCRELASSOCIATESMATERIAL('26nCibdvPCceH5sseyOEbl',$,$,$,(#2147),#2148); -#2150=IFCMATERIALPROFILE($,$,#17,#2138,$,$); -#2151=IFCISHAPEPROFILEDEF(.AREA.,$,$,218.,608.,14.,23.,$,$,$); -#2152=IFCBEAMTYPE('10Dwmgfpb2y96Dmw4uYRPs',$,'IPEr600',$,$,$,$,$,$,$); -#2153=IFCMATERIALPROFILESET($,$,(#2155),$); -#2154=IFCRELASSOCIATESMATERIAL('10THX$rr1ArPCHMnZwS3l7',$,$,$,(#2152),#2153); -#2155=IFCMATERIALPROFILE($,$,#17,#2151,$,$); -#2156=IFCMEMBERTYPE('2rbYvBAJXCXfnq59qS5z9x',$,'IPEr600',$,$,$,$,$,$,$); -#2157=IFCMATERIALPROFILESET($,$,(#2159),$); -#2158=IFCRELASSOCIATESMATERIAL('09ttlU7Yv5NO0cBZO3wKNk',$,$,$,(#2156),#2157); -#2159=IFCMATERIALPROFILE($,$,#17,#2151,$,$); -#2160=IFCCOLUMNTYPE('2jTjn2IP162f9SBPw_D$SB',$,'IPEr600',$,$,$,$,$,$,$); -#2161=IFCMATERIALPROFILESET($,$,(#2163),$); -#2162=IFCRELASSOCIATESMATERIAL('0XU4mbKpT6WBlmazq9CmU7',$,$,$,(#2160),#2161); -#2163=IFCMATERIALPROFILE($,$,#17,#2151,$,$); -#2164=IFCISHAPEPROFILEDEF(.AREA.,$,$,182.,408.,10.6,17.5,$,$,$); -#2165=IFCBEAMTYPE('0nVZ2cf8D7XAkddMjmrtbe',$,'IPEv400',$,$,$,$,$,$,$); -#2166=IFCMATERIALPROFILESET($,$,(#2168),$); -#2167=IFCRELASSOCIATESMATERIAL('2thUhQ89jCP9iStv5HbcLn',$,$,$,(#2165),#2166); -#2168=IFCMATERIALPROFILE($,$,#17,#2164,$,$); -#2169=IFCMEMBERTYPE('1q0chSRp9BcAWRbMGym1Qz',$,'IPEv400',$,$,$,$,$,$,$); -#2170=IFCMATERIALPROFILESET($,$,(#2172),$); -#2171=IFCRELASSOCIATESMATERIAL('2YGMF08c1D$x7i_24VKHPp',$,$,$,(#2169),#2170); -#2172=IFCMATERIALPROFILE($,$,#17,#2164,$,$); -#2173=IFCCOLUMNTYPE('37bPeCvK57KPRrEwQaUsVB',$,'IPEv400',$,$,$,$,$,$,$); -#2174=IFCMATERIALPROFILESET($,$,(#2176),$); -#2175=IFCRELASSOCIATESMATERIAL('3XDaq_Ztv1aBsxYaVQZSFF',$,$,$,(#2173),#2174); -#2176=IFCMATERIALPROFILE($,$,#17,#2164,$,$); -#2177=IFCISHAPEPROFILEDEF(.AREA.,$,$,194.,460.,12.4,19.6,$,$,$); -#2178=IFCBEAMTYPE('3B2UOY6E9FougVJwpImnzP',$,'IPEv450',$,$,$,$,$,$,$); -#2179=IFCMATERIALPROFILESET($,$,(#2181),$); -#2180=IFCRELASSOCIATESMATERIAL('00227ucOr3lgb1mneA2_vo',$,$,$,(#2178),#2179); -#2181=IFCMATERIALPROFILE($,$,#17,#2177,$,$); -#2182=IFCMEMBERTYPE('1LPQ$jyRv2JQfbXBKrcEUv',$,'IPEv450',$,$,$,$,$,$,$); -#2183=IFCMATERIALPROFILESET($,$,(#2185),$); -#2184=IFCRELASSOCIATESMATERIAL('0nqj6LpV5CggimqYBggO46',$,$,$,(#2182),#2183); -#2185=IFCMATERIALPROFILE($,$,#17,#2177,$,$); -#2186=IFCCOLUMNTYPE('2hU6Ilykj9d8xJGcbkmYUk',$,'IPEv450',$,$,$,$,$,$,$); -#2187=IFCMATERIALPROFILESET($,$,(#2189),$); -#2188=IFCRELASSOCIATESMATERIAL('3EH_rIm3X0RgUgbT_wN218',$,$,$,(#2186),#2187); -#2189=IFCMATERIALPROFILE($,$,#17,#2177,$,$); -#2190=IFCISHAPEPROFILEDEF(.AREA.,$,$,204.,514.,14.2,23.,$,$,$); -#2191=IFCBEAMTYPE('2va6MeUYz1mOvfLk79HBBd',$,'IPEv500',$,$,$,$,$,$,$); -#2192=IFCMATERIALPROFILESET($,$,(#2194),$); -#2193=IFCRELASSOCIATESMATERIAL('36h_$sUTP8ag$5UpSupWoE',$,$,$,(#2191),#2192); -#2194=IFCMATERIALPROFILE($,$,#17,#2190,$,$); -#2195=IFCMEMBERTYPE('2U_8bLpGLE9OFC_f3J0dOz',$,'IPEv500',$,$,$,$,$,$,$); -#2196=IFCMATERIALPROFILESET($,$,(#2198),$); -#2197=IFCRELASSOCIATESMATERIAL('25Mjnvr7nD8Rs6r$jKlzNO',$,$,$,(#2195),#2196); -#2198=IFCMATERIALPROFILE($,$,#17,#2190,$,$); -#2199=IFCCOLUMNTYPE('3Bd$YXFQ50LgdaLOcjxwXc',$,'IPEv500',$,$,$,$,$,$,$); -#2200=IFCMATERIALPROFILESET($,$,(#2202),$); -#2201=IFCRELASSOCIATESMATERIAL('0iyAoF1qz5bO63dQvpL2u_',$,$,$,(#2199),#2200); -#2202=IFCMATERIALPROFILE($,$,#17,#2190,$,$); -#2203=IFCISHAPEPROFILEDEF(.AREA.,$,$,216.,566.,17.1,25.2,$,$,$); -#2204=IFCBEAMTYPE('1ELy52zo97pPbFkrEaii64',$,'IPEv550',$,$,$,$,$,$,$); -#2205=IFCMATERIALPROFILESET($,$,(#2207),$); -#2206=IFCRELASSOCIATESMATERIAL('2KgJ4rqQb7Zh0iPE69OJAE',$,$,$,(#2204),#2205); -#2207=IFCMATERIALPROFILE($,$,#17,#2203,$,$); -#2208=IFCMEMBERTYPE('11y4a9pjX46O4EBq4s79lh',$,'IPEv550',$,$,$,$,$,$,$); -#2209=IFCMATERIALPROFILESET($,$,(#2211),$); -#2210=IFCRELASSOCIATESMATERIAL('2EdA7Fn4942hVirT6BM4Sn',$,$,$,(#2208),#2209); -#2211=IFCMATERIALPROFILE($,$,#17,#2203,$,$); -#2212=IFCCOLUMNTYPE('1QnMkGIUb36xvI9UqIYyPN',$,'IPEv550',$,$,$,$,$,$,$); -#2213=IFCMATERIALPROFILESET($,$,(#2215),$); -#2214=IFCRELASSOCIATESMATERIAL('0gFcEyDbr4NRB0rzvww7s7',$,$,$,(#2212),#2213); -#2215=IFCMATERIALPROFILE($,$,#17,#2203,$,$); -#2216=IFCISHAPEPROFILEDEF(.AREA.,$,$,228.,618.,18.,28.,$,$,$); -#2217=IFCBEAMTYPE('0L$xovqw9CTeHpkJ6cMeS4',$,'IPEv600',$,$,$,$,$,$,$); -#2218=IFCMATERIALPROFILESET($,$,(#2220),$); -#2219=IFCRELASSOCIATESMATERIAL('0ISkEWgQn61PKqu1UREAAG',$,$,$,(#2217),#2218); -#2220=IFCMATERIALPROFILE($,$,#17,#2216,$,$); -#2221=IFCMEMBERTYPE('3gykGLHDPB5Aq0mLQiAOrI',$,'IPEv600',$,$,$,$,$,$,$); -#2222=IFCMATERIALPROFILESET($,$,(#2224),$); -#2223=IFCRELASSOCIATESMATERIAL('2p$VGT5m5BbPADmU_5dfZl',$,$,$,(#2221),#2222); -#2224=IFCMATERIALPROFILE($,$,#17,#2216,$,$); -#2225=IFCCOLUMNTYPE('19csWziYX3AuaHEAyiKDDt',$,'IPEv600',$,$,$,$,$,$,$); -#2226=IFCMATERIALPROFILESET($,$,(#2228),$); -#2227=IFCRELASSOCIATESMATERIAL('3KCFVDcDrDuht3wLJ5$4ck',$,$,$,(#2225),#2226); -#2228=IFCMATERIALPROFILE($,$,#17,#2216,$,$); -#2229=IFCISHAPEPROFILEDEF(.AREA.,$,$,42.,80.,3.9,5.9,$,$,$); -#2230=IFCBEAMTYPE('1Ebv_tqZb7Y97d6LOwEDdM',$,'IPN80',$,$,$,$,$,$,$); -#2231=IFCMATERIALPROFILESET($,$,(#2233),$); -#2232=IFCRELASSOCIATESMATERIAL('23fI1IdV1ELvaRtKcJKSQR',$,$,$,(#2230),#2231); -#2233=IFCMATERIALPROFILE($,$,#17,#2229,$,$); -#2234=IFCMEMBERTYPE('0TmIGmq9vCGfDz64YvhnyQ',$,'IPN80',$,$,$,$,$,$,$); -#2235=IFCMATERIALPROFILESET($,$,(#2237),$); -#2236=IFCRELASSOCIATESMATERIAL('326HetwIfC6eTBwWbcwt9n',$,$,$,(#2234),#2235); -#2237=IFCMATERIALPROFILE($,$,#17,#2229,$,$); -#2238=IFCCOLUMNTYPE('3rXolu3mP7DeVr861lVj$1',$,'IPN80',$,$,$,$,$,$,$); -#2239=IFCMATERIALPROFILESET($,$,(#2241),$); -#2240=IFCRELASSOCIATESMATERIAL('1bvqNTvpf7ggIB50JztcBh',$,$,$,(#2238),#2239); -#2241=IFCMATERIALPROFILE($,$,#17,#2229,$,$); -#2242=IFCISHAPEPROFILEDEF(.AREA.,$,$,50.,100.,4.5,6.8,$,$,$); -#2243=IFCBEAMTYPE('01WBc1zPLB3f5NaHeZxidT',$,'IPN100',$,$,$,$,$,$,$); -#2244=IFCMATERIALPROFILESET($,$,(#2246),$); -#2245=IFCRELASSOCIATESMATERIAL('1peyeJ0F11aP5uHyEiyUhZ',$,$,$,(#2243),#2244); -#2246=IFCMATERIALPROFILE($,$,#17,#2242,$,$); -#2247=IFCMEMBERTYPE('1o00oZ_Xr9R9zctMu_IFJh',$,'IPN100',$,$,$,$,$,$,$); -#2248=IFCMATERIALPROFILESET($,$,(#2250),$); -#2249=IFCRELASSOCIATESMATERIAL('3Akc6q_xT1Egj7XC1gZQzN',$,$,$,(#2247),#2248); -#2250=IFCMATERIALPROFILE($,$,#17,#2242,$,$); -#2251=IFCCOLUMNTYPE('39_Gwz96b1GQEBqwCw$cKQ',$,'IPN100',$,$,$,$,$,$,$); -#2252=IFCMATERIALPROFILESET($,$,(#2254),$); -#2253=IFCRELASSOCIATESMATERIAL('2b_Fd8bbLAaQSPxf6sUk97',$,$,$,(#2251),#2252); -#2254=IFCMATERIALPROFILE($,$,#17,#2242,$,$); -#2255=IFCISHAPEPROFILEDEF(.AREA.,$,$,58.,120.,5.1,7.7,$,$,$); -#2256=IFCBEAMTYPE('0$2XdJAvb1oREY$VWaS7Ev',$,'IPN120',$,$,$,$,$,$,$); -#2257=IFCMATERIALPROFILESET($,$,(#2259),$); -#2258=IFCRELASSOCIATESMATERIAL('2Uj8EefVLAlvmAbBA2cCEU',$,$,$,(#2256),#2257); -#2259=IFCMATERIALPROFILE($,$,#17,#2255,$,$); -#2260=IFCMEMBERTYPE('08FiPVviDCPg3REFdqh9OJ',$,'IPN120',$,$,$,$,$,$,$); -#2261=IFCMATERIALPROFILESET($,$,(#2263),$); -#2262=IFCRELASSOCIATESMATERIAL('38SlljkdPB3eO2Fj_ME4LB',$,$,$,(#2260),#2261); -#2263=IFCMATERIALPROFILE($,$,#17,#2255,$,$); -#2264=IFCCOLUMNTYPE('2yueMwNULFWhu9TEkQYSf5',$,'IPN120',$,$,$,$,$,$,$); -#2265=IFCMATERIALPROFILESET($,$,(#2267),$); -#2266=IFCRELASSOCIATESMATERIAL('2pt4UDNmL6Fw44l_v_iLLO',$,$,$,(#2264),#2265); -#2267=IFCMATERIALPROFILE($,$,#17,#2255,$,$); -#2268=IFCISHAPEPROFILEDEF(.AREA.,$,$,66.,140.,5.7,8.6,$,$,$); -#2269=IFCBEAMTYPE('3r2gSplF93EAcvN3Ra$jBn',$,'IPN140',$,$,$,$,$,$,$); -#2270=IFCMATERIALPROFILESET($,$,(#2272),$); -#2271=IFCRELASSOCIATESMATERIAL('3b1v3E5JbFUQChEAsNHfwT',$,$,$,(#2269),#2270); -#2272=IFCMATERIALPROFILE($,$,#17,#2268,$,$); -#2273=IFCMEMBERTYPE('3BIJv$RNv5fvYKR4fptrn5',$,'IPN140',$,$,$,$,$,$,$); -#2274=IFCMATERIALPROFILESET($,$,(#2276),$); -#2275=IFCRELASSOCIATESMATERIAL('0RN0VHR1j8lBiB98s8rKv1',$,$,$,(#2273),#2274); -#2276=IFCMATERIALPROFILE($,$,#17,#2268,$,$); -#2277=IFCCOLUMNTYPE('3QcAx$pfbApvy8LeZvCa64',$,'IPN140',$,$,$,$,$,$,$); -#2278=IFCMATERIALPROFILESET($,$,(#2280),$); -#2279=IFCRELASSOCIATESMATERIAL('0ppkJqt41EigZj0hSPk7En',$,$,$,(#2277),#2278); -#2280=IFCMATERIALPROFILE($,$,#17,#2268,$,$); -#2281=IFCISHAPEPROFILEDEF(.AREA.,$,$,74.,160.,6.3,9.5,$,$,$); -#2282=IFCBEAMTYPE('2HXXUViFD6Iwl8Ouc6$Ier',$,'IPN160',$,$,$,$,$,$,$); -#2283=IFCMATERIALPROFILESET($,$,(#2285),$); -#2284=IFCRELASSOCIATESMATERIAL('3K$CuJ$fX1oQyZ_XYdEJNs',$,$,$,(#2282),#2283); -#2285=IFCMATERIALPROFILE($,$,#17,#2281,$,$); -#2286=IFCMEMBERTYPE('18t6rGVL98TBsPb2EF7o01',$,'IPN160',$,$,$,$,$,$,$); -#2287=IFCMATERIALPROFILESET($,$,(#2289),$); -#2288=IFCRELASSOCIATESMATERIAL('3bkGk5FcbC0uLmc4ireOhN',$,$,$,(#2286),#2287); -#2289=IFCMATERIALPROFILE($,$,#17,#2281,$,$); -#2290=IFCCOLUMNTYPE('2zxOTyf750jeunawJHHzj5',$,'IPN160',$,$,$,$,$,$,$); -#2291=IFCMATERIALPROFILESET($,$,(#2293),$); -#2292=IFCRELASSOCIATESMATERIAL('3uB_6MyX1ARQwoPw7V0bQf',$,$,$,(#2290),#2291); -#2293=IFCMATERIALPROFILE($,$,#17,#2281,$,$); -#2294=IFCISHAPEPROFILEDEF(.AREA.,$,$,82.,180.,6.9,10.4,$,$,$); -#2295=IFCBEAMTYPE('0YMxH2eWr4ORYXyCHdo8mM',$,'IPN180',$,$,$,$,$,$,$); -#2296=IFCMATERIALPROFILESET($,$,(#2298),$); -#2297=IFCRELASSOCIATESMATERIAL('1N92fo48v2GesGsMf3NLTm',$,$,$,(#2295),#2296); -#2298=IFCMATERIALPROFILE($,$,#17,#2294,$,$); -#2299=IFCMEMBERTYPE('11fTsifm97kxzna_ASCvkx',$,'IPN180',$,$,$,$,$,$,$); -#2300=IFCMATERIALPROFILESET($,$,(#2302),$); -#2301=IFCRELASSOCIATESMATERIAL('1BLB4Fh2b88vYjI4ax8tnS',$,$,$,(#2299),#2300); -#2302=IFCMATERIALPROFILE($,$,#17,#2294,$,$); -#2303=IFCCOLUMNTYPE('3P61PtIiHByhqlbZjDEako',$,'IPN180',$,$,$,$,$,$,$); -#2304=IFCMATERIALPROFILESET($,$,(#2306),$); -#2305=IFCRELASSOCIATESMATERIAL('0L8camdPr5gfBVHH4v_N0a',$,$,$,(#2303),#2304); -#2306=IFCMATERIALPROFILE($,$,#17,#2294,$,$); -#2307=IFCISHAPEPROFILEDEF(.AREA.,$,$,90.,200.,7.5,11.3,$,$,$); -#2308=IFCBEAMTYPE('33cSQiIh99jfrHLwweddsm',$,'IPN200',$,$,$,$,$,$,$); -#2309=IFCMATERIALPROFILESET($,$,(#2311),$); -#2310=IFCRELASSOCIATESMATERIAL('1wvMJ2r6b9jh6cih1NHQOF',$,$,$,(#2308),#2309); -#2311=IFCMATERIALPROFILE($,$,#17,#2307,$,$); -#2312=IFCMEMBERTYPE('3v67GG3QX5K8ObjHc$ja9v',$,'IPN200',$,$,$,$,$,$,$); -#2313=IFCMATERIALPROFILESET($,$,(#2315),$); -#2314=IFCRELASSOCIATESMATERIAL('2eW4p$WaL3rANmZSldXfaA',$,$,$,(#2312),#2313); -#2315=IFCMATERIALPROFILE($,$,#17,#2307,$,$); -#2316=IFCCOLUMNTYPE('1$Cv$j2zbCmvNhNDkbgFDd',$,'IPN200',$,$,$,$,$,$,$); -#2317=IFCMATERIALPROFILESET($,$,(#2319),$); -#2318=IFCRELASSOCIATESMATERIAL('0Yacrsbn10wgD5D1kfTFmK',$,$,$,(#2316),#2317); -#2319=IFCMATERIALPROFILE($,$,#17,#2307,$,$); -#2320=IFCISHAPEPROFILEDEF(.AREA.,$,$,98.,220.,8.1,12.2,$,$,$); -#2321=IFCBEAMTYPE('2Y5pzmhXHCTRRWHyb8BeU3',$,'IPN220',$,$,$,$,$,$,$); -#2322=IFCMATERIALPROFILESET($,$,(#2324),$); -#2323=IFCRELASSOCIATESMATERIAL('0jmXnDTR57NRVhUwxq5q7k',$,$,$,(#2321),#2322); -#2324=IFCMATERIALPROFILE($,$,#17,#2320,$,$); -#2325=IFCMEMBERTYPE('1twT1QOG94jeaw$BqSD7hd',$,'IPN220',$,$,$,$,$,$,$); -#2326=IFCMATERIALPROFILESET($,$,(#2328),$); -#2327=IFCRELASSOCIATESMATERIAL('21Kq2gFAv07elonnicT8j8',$,$,$,(#2325),#2326); -#2328=IFCMATERIALPROFILE($,$,#17,#2320,$,$); -#2329=IFCCOLUMNTYPE('0EPuLzFbb3PuDoiXsIMLq_',$,'IPN220',$,$,$,$,$,$,$); -#2330=IFCMATERIALPROFILESET($,$,(#2332),$); -#2331=IFCRELASSOCIATESMATERIAL('3NqddGtnr8duvSzAbV7bst',$,$,$,(#2329),#2330); -#2332=IFCMATERIALPROFILE($,$,#17,#2320,$,$); -#2333=IFCISHAPEPROFILEDEF(.AREA.,$,$,106.,240.,8.7,13.1,$,$,$); -#2334=IFCBEAMTYPE('3k46Qh_3f5JQUAE2SADV6s',$,'IPN240',$,$,$,$,$,$,$); -#2335=IFCMATERIALPROFILESET($,$,(#2337),$); -#2336=IFCRELASSOCIATESMATERIAL('2W81X4jIn7ewW2vR27xEys',$,$,$,(#2334),#2335); -#2337=IFCMATERIALPROFILE($,$,#17,#2333,$,$); -#2338=IFCMEMBERTYPE('3WytuCSKn6SwHU182E$h5I',$,'IPN240',$,$,$,$,$,$,$); -#2339=IFCMATERIALPROFILESET($,$,(#2341),$); -#2340=IFCRELASSOCIATESMATERIAL('2tz08Po0v4mO_t6$H4pdBV',$,$,$,(#2338),#2339); -#2341=IFCMATERIALPROFILE($,$,#17,#2333,$,$); -#2342=IFCCOLUMNTYPE('032RYh8G96MvQ1skvlBzD2',$,'IPN240',$,$,$,$,$,$,$); -#2343=IFCMATERIALPROFILESET($,$,(#2345),$); -#2344=IFCRELASSOCIATESMATERIAL('0UlzKHOQD3Zvc$f6QR8pvN',$,$,$,(#2342),#2343); -#2345=IFCMATERIALPROFILE($,$,#17,#2333,$,$); -#2346=IFCISHAPEPROFILEDEF(.AREA.,$,$,113.,260.,9.4,14.1,$,$,$); -#2347=IFCBEAMTYPE('3cCCF$6WP9eBP1g7cFug4q',$,'IPN260',$,$,$,$,$,$,$); -#2348=IFCMATERIALPROFILESET($,$,(#2350),$); -#2349=IFCRELASSOCIATESMATERIAL('2Flx4kp3n52OI0GYVxPoZA',$,$,$,(#2347),#2348); -#2350=IFCMATERIALPROFILE($,$,#17,#2346,$,$); -#2351=IFCMEMBERTYPE('0qaalRS7rCGhFeZ5pwiaz$',$,'IPN260',$,$,$,$,$,$,$); -#2352=IFCMATERIALPROFILESET($,$,(#2354),$); -#2353=IFCRELASSOCIATESMATERIAL('12SzlnJIfAwPks9epNofhs',$,$,$,(#2351),#2352); -#2354=IFCMATERIALPROFILE($,$,#17,#2346,$,$); -#2355=IFCCOLUMNTYPE('0rhD64qonELQXEbFVrkdB7',$,'IPN260',$,$,$,$,$,$,$); -#2356=IFCMATERIALPROFILESET($,$,(#2358),$); -#2357=IFCRELASSOCIATESMATERIAL('3bST54QN59k9N0t7q8BDsm',$,$,$,(#2355),#2356); -#2358=IFCMATERIALPROFILE($,$,#17,#2346,$,$); -#2359=IFCISHAPEPROFILEDEF(.AREA.,$,$,119.,280.,10.1,15.2,$,$,$); -#2360=IFCBEAMTYPE('2SAoq0Otv4W9s27TRqpk9y',$,'IPN280',$,$,$,$,$,$,$); -#2361=IFCMATERIALPROFILESET($,$,(#2363),$); -#2362=IFCRELASSOCIATESMATERIAL('24nsc0P_HFOfl7MswISYvA',$,$,$,(#2360),#2361); -#2363=IFCMATERIALPROFILE($,$,#17,#2359,$,$); -#2364=IFCMEMBERTYPE('3qkEKmfAnF5Ar1puS$vwP$',$,'IPN280',$,$,$,$,$,$,$); -#2365=IFCMATERIALPROFILESET($,$,(#2367),$); -#2366=IFCRELASSOCIATESMATERIAL('1H1gTgRLjEXuYqiLMetTbe',$,$,$,(#2364),#2365); -#2367=IFCMATERIALPROFILE($,$,#17,#2359,$,$); -#2368=IFCCOLUMNTYPE('2T_vRBtLz51BEv5gH11z8F',$,'IPN280',$,$,$,$,$,$,$); -#2369=IFCMATERIALPROFILESET($,$,(#2371),$); -#2370=IFCRELASSOCIATESMATERIAL('2cyuyVVdL9Z9ZFfNbhxqBu',$,$,$,(#2368),#2369); -#2371=IFCMATERIALPROFILE($,$,#17,#2359,$,$); -#2372=IFCISHAPEPROFILEDEF(.AREA.,$,$,125.,300.,10.8,16.2,$,$,$); -#2373=IFCBEAMTYPE('1jLtIgMjrCSR_t4LRXHN31',$,'IPN300',$,$,$,$,$,$,$); -#2374=IFCMATERIALPROFILESET($,$,(#2376),$); -#2375=IFCRELASSOCIATESMATERIAL('0ySYW0XM5B1vCnnJ86OgAm',$,$,$,(#2373),#2374); -#2376=IFCMATERIALPROFILE($,$,#17,#2372,$,$); -#2377=IFCMEMBERTYPE('0k1pmo4LX5hxIKXAETPEaK',$,'IPN300',$,$,$,$,$,$,$); -#2378=IFCMATERIALPROFILESET($,$,(#2380),$); -#2379=IFCRELASSOCIATESMATERIAL('3yYfuQOwbEMOQZiNpDKIzZ',$,$,$,(#2377),#2378); -#2380=IFCMATERIALPROFILE($,$,#17,#2372,$,$); -#2381=IFCCOLUMNTYPE('3pZ2WX4KHA7Py8HM6VTQOJ',$,'IPN300',$,$,$,$,$,$,$); -#2382=IFCMATERIALPROFILESET($,$,(#2384),$); -#2383=IFCRELASSOCIATESMATERIAL('2y_fThic525RRW9qPYXjn0',$,$,$,(#2381),#2382); -#2384=IFCMATERIALPROFILE($,$,#17,#2372,$,$); -#2385=IFCISHAPEPROFILEDEF(.AREA.,$,$,131.,320.,11.5,17.3,$,$,$); -#2386=IFCBEAMTYPE('1j6tGzFmz7oPqniBYEtpYc',$,'IPN320',$,$,$,$,$,$,$); -#2387=IFCMATERIALPROFILESET($,$,(#2389),$); -#2388=IFCRELASSOCIATESMATERIAL('1OnWbaJav6o9DK21VhLjF5',$,$,$,(#2386),#2387); -#2389=IFCMATERIALPROFILE($,$,#17,#2385,$,$); -#2390=IFCMEMBERTYPE('1ZXV3ierf34ByW3FULbgqk',$,'IPN320',$,$,$,$,$,$,$); -#2391=IFCMATERIALPROFILESET($,$,(#2393),$); -#2392=IFCRELASSOCIATESMATERIAL('3hWNxqccvAtf4AdxtqMIGn',$,$,$,(#2390),#2391); -#2393=IFCMATERIALPROFILE($,$,#17,#2385,$,$); -#2394=IFCCOLUMNTYPE('08LXhvImTAq9V44a$sjzeu',$,'IPN320',$,$,$,$,$,$,$); -#2395=IFCMATERIALPROFILESET($,$,(#2397),$); -#2396=IFCRELASSOCIATESMATERIAL('3qbidYgGn3wekzpzAvI7vZ',$,$,$,(#2394),#2395); -#2397=IFCMATERIALPROFILE($,$,#17,#2385,$,$); -#2398=IFCISHAPEPROFILEDEF(.AREA.,$,$,137.,340.,12.2,18.3,$,$,$); -#2399=IFCBEAMTYPE('0NpboZLRDCBus1vQdjMFHB',$,'IPN340',$,$,$,$,$,$,$); -#2400=IFCMATERIALPROFILESET($,$,(#2402),$); -#2401=IFCRELASSOCIATESMATERIAL('2500MFfl15CfiIeKFmviJz',$,$,$,(#2399),#2400); -#2402=IFCMATERIALPROFILE($,$,#17,#2398,$,$); -#2403=IFCMEMBERTYPE('3tdIB40zD7Z8nagZSRGQaO',$,'IPN340',$,$,$,$,$,$,$); -#2404=IFCMATERIALPROFILESET($,$,(#2406),$); -#2405=IFCRELASSOCIATESMATERIAL('06OZOXel1E785ehp_e9oG2',$,$,$,(#2403),#2404); -#2406=IFCMATERIALPROFILE($,$,#17,#2398,$,$); -#2407=IFCCOLUMNTYPE('1_xeLc_eTEJvPC4_1RXMnw',$,'IPN340',$,$,$,$,$,$,$); -#2408=IFCMATERIALPROFILESET($,$,(#2410),$); -#2409=IFCRELASSOCIATESMATERIAL('2LtiyZV8LAfQpszcA2Z8q9',$,$,$,(#2407),#2408); -#2410=IFCMATERIALPROFILE($,$,#17,#2398,$,$); -#2411=IFCISHAPEPROFILEDEF(.AREA.,$,$,143.,360.,13.,19.5,$,$,$); -#2412=IFCBEAMTYPE('0N9qZQk1jAsfnU_cV0ahfD',$,'IPN360',$,$,$,$,$,$,$); -#2413=IFCMATERIALPROFILESET($,$,(#2415),$); -#2414=IFCRELASSOCIATESMATERIAL('1SDgf1hCvFGBgkmcgXH5xT',$,$,$,(#2412),#2413); -#2415=IFCMATERIALPROFILE($,$,#17,#2411,$,$); -#2416=IFCMEMBERTYPE('2zbEyEHCT8yOTf3Pz0XIVT',$,'IPN360',$,$,$,$,$,$,$); -#2417=IFCMATERIALPROFILESET($,$,(#2419),$); -#2418=IFCRELASSOCIATESMATERIAL('0POFcZfVDAlu3qZ$d7PhO6',$,$,$,(#2416),#2417); -#2419=IFCMATERIALPROFILE($,$,#17,#2411,$,$); -#2420=IFCCOLUMNTYPE('2Ni0Ffkrr09eZvc_5fs215',$,'IPN360',$,$,$,$,$,$,$); -#2421=IFCMATERIALPROFILESET($,$,(#2423),$); -#2422=IFCRELASSOCIATESMATERIAL('3r65rV8dz6QPFqFBZNtOc_',$,$,$,(#2420),#2421); -#2423=IFCMATERIALPROFILE($,$,#17,#2411,$,$); -#2424=IFCISHAPEPROFILEDEF(.AREA.,$,$,149.,380.,13.7,20.5,$,$,$); -#2425=IFCBEAMTYPE('0vAKXvtdbFqQo99zpEscvX',$,'IPN380',$,$,$,$,$,$,$); -#2426=IFCMATERIALPROFILESET($,$,(#2428),$); -#2427=IFCRELASSOCIATESMATERIAL('1dRptvJajEaOYtQbVUBuDD',$,$,$,(#2425),#2426); -#2428=IFCMATERIALPROFILE($,$,#17,#2424,$,$); -#2429=IFCMEMBERTYPE('2YqnC0jQj82gacFmU1R$uT',$,'IPN380',$,$,$,$,$,$,$); -#2430=IFCMATERIALPROFILESET($,$,(#2432),$); -#2431=IFCRELASSOCIATESMATERIAL('3efIDEBL1EEx_Cu51HcpC4',$,$,$,(#2429),#2430); -#2432=IFCMATERIALPROFILE($,$,#17,#2424,$,$); -#2433=IFCCOLUMNTYPE('1kIhmRderEy9ORmoW2X7SM',$,'IPN380',$,$,$,$,$,$,$); -#2434=IFCMATERIALPROFILESET($,$,(#2436),$); -#2435=IFCRELASSOCIATESMATERIAL('0UF2cNUsL3A8G1IGFrn$aC',$,$,$,(#2433),#2434); -#2436=IFCMATERIALPROFILE($,$,#17,#2424,$,$); -#2437=IFCISHAPEPROFILEDEF(.AREA.,$,$,155.,400.,14.4,21.6,$,$,$); -#2438=IFCBEAMTYPE('3X3ym6uR50d9rtyY6boa$g',$,'IPN400',$,$,$,$,$,$,$); -#2439=IFCMATERIALPROFILESET($,$,(#2441),$); -#2440=IFCRELASSOCIATESMATERIAL('129YWogFb668R17T8M2T6U',$,$,$,(#2438),#2439); -#2441=IFCMATERIALPROFILE($,$,#17,#2437,$,$); -#2442=IFCMEMBERTYPE('3kDrNQGsLAeh$JW0LPszu4',$,'IPN400',$,$,$,$,$,$,$); -#2443=IFCMATERIALPROFILESET($,$,(#2445),$); -#2444=IFCRELASSOCIATESMATERIAL('3UFYV9uv5AQfxvpdMgT3oN',$,$,$,(#2442),#2443); -#2445=IFCMATERIALPROFILE($,$,#17,#2437,$,$); -#2446=IFCCOLUMNTYPE('1fgNciDX57SwQFH$PjfOzR',$,'IPN400',$,$,$,$,$,$,$); -#2447=IFCMATERIALPROFILESET($,$,(#2449),$); -#2448=IFCRELASSOCIATESMATERIAL('23lnp9i9jBfAMfu6XVswgR',$,$,$,(#2446),#2447); -#2449=IFCMATERIALPROFILE($,$,#17,#2437,$,$); -#2450=IFCISHAPEPROFILEDEF(.AREA.,$,$,170.,450.,16.2,24.3,$,$,$); -#2451=IFCBEAMTYPE('0KzBHJgF97Yht$E2tFayFw',$,'IPN450',$,$,$,$,$,$,$); -#2452=IFCMATERIALPROFILESET($,$,(#2454),$); -#2453=IFCRELASSOCIATESMATERIAL('3VsJQVxmr7880HqZ9IwIDt',$,$,$,(#2451),#2452); -#2454=IFCMATERIALPROFILE($,$,#17,#2450,$,$); -#2455=IFCMEMBERTYPE('1TYYcuSO10Dvrkks31qpHS',$,'IPN450',$,$,$,$,$,$,$); -#2456=IFCMATERIALPROFILESET($,$,(#2458),$); -#2457=IFCRELASSOCIATESMATERIAL('3uYuJ5WUD7V9N14DmHOra0',$,$,$,(#2455),#2456); -#2458=IFCMATERIALPROFILE($,$,#17,#2450,$,$); -#2459=IFCCOLUMNTYPE('1iV$DLMobEjBZn$$rMrbsq',$,'IPN450',$,$,$,$,$,$,$); -#2460=IFCMATERIALPROFILESET($,$,(#2462),$); -#2461=IFCRELASSOCIATESMATERIAL('0XaLHYI1v10wlwjkHPBBN8',$,$,$,(#2459),#2460); -#2462=IFCMATERIALPROFILE($,$,#17,#2450,$,$); -#2463=IFCISHAPEPROFILEDEF(.AREA.,$,$,185.,500.,18.,27.,$,$,$); -#2464=IFCBEAMTYPE('0eCurcshbBXANbAjYDv9_r',$,'IPN500',$,$,$,$,$,$,$); -#2465=IFCMATERIALPROFILESET($,$,(#2467),$); -#2466=IFCRELASSOCIATESMATERIAL('0vq9a08wfDvfOc7parFpIU',$,$,$,(#2464),#2465); -#2467=IFCMATERIALPROFILE($,$,#17,#2463,$,$); -#2468=IFCMEMBERTYPE('1$PCSUHVPCDOWhW3XYtyVI',$,'IPN500',$,$,$,$,$,$,$); -#2469=IFCMATERIALPROFILESET($,$,(#2471),$); -#2470=IFCRELASSOCIATESMATERIAL('2i78uf30T6fx_XZ00CqksM',$,$,$,(#2468),#2469); -#2471=IFCMATERIALPROFILE($,$,#17,#2463,$,$); -#2472=IFCCOLUMNTYPE('2zHMtHqLLBAQnvGQ91ZuHL',$,'IPN500',$,$,$,$,$,$,$); -#2473=IFCMATERIALPROFILESET($,$,(#2475),$); -#2474=IFCRELASSOCIATESMATERIAL('0NZTOEqU9FQgIXGz5xlG2F',$,$,$,(#2472),#2473); -#2475=IFCMATERIALPROFILE($,$,#17,#2463,$,$); -#2476=IFCISHAPEPROFILEDEF(.AREA.,$,$,200.,550.,19.,30.,$,$,$); -#2477=IFCBEAMTYPE('31CE7KZA18MgOaW930KPqF',$,'IPN550',$,$,$,$,$,$,$); -#2478=IFCMATERIALPROFILESET($,$,(#2480),$); -#2479=IFCRELASSOCIATESMATERIAL('2LTQZhLEzAlxCKF1kXuWDW',$,$,$,(#2477),#2478); -#2480=IFCMATERIALPROFILE($,$,#17,#2476,$,$); -#2481=IFCMEMBERTYPE('3y7hoC2wL0mx863sGh1URv',$,'IPN550',$,$,$,$,$,$,$); -#2482=IFCMATERIALPROFILESET($,$,(#2484),$); -#2483=IFCRELASSOCIATESMATERIAL('2806DYE$HDhuHGRyVXn9nt',$,$,$,(#2481),#2482); -#2484=IFCMATERIALPROFILE($,$,#17,#2476,$,$); -#2485=IFCCOLUMNTYPE('0dOpe4IljE4uFV9cWBSaBo',$,'IPN550',$,$,$,$,$,$,$); -#2486=IFCMATERIALPROFILESET($,$,(#2488),$); -#2487=IFCRELASSOCIATESMATERIAL('3kEaqVfPDB68WqTCtdt$jj',$,$,$,(#2485),#2486); -#2488=IFCMATERIALPROFILE($,$,#17,#2476,$,$); -#2489=IFCISHAPEPROFILEDEF(.AREA.,$,$,215.,600.,21.6,32.4,$,$,$); -#2490=IFCBEAMTYPE('0IdLnJNfz6WBhqPEVoGE8k',$,'IPN600',$,$,$,$,$,$,$); -#2491=IFCMATERIALPROFILESET($,$,(#2493),$); -#2492=IFCRELASSOCIATESMATERIAL('286BNQ35vAY9Ddb_Y4njTO',$,$,$,(#2490),#2491); -#2493=IFCMATERIALPROFILE($,$,#17,#2489,$,$); -#2494=IFCMEMBERTYPE('2r9yGSeZ97rgFq0ZUwpWiz',$,'IPN600',$,$,$,$,$,$,$); -#2495=IFCMATERIALPROFILESET($,$,(#2497),$); -#2496=IFCRELASSOCIATESMATERIAL('2pEYJVrsv5muEdzp1haCaA',$,$,$,(#2494),#2495); -#2497=IFCMATERIALPROFILE($,$,#17,#2489,$,$); -#2498=IFCCOLUMNTYPE('3RD7s8NFX3vexSf34dffj9',$,'IPN600',$,$,$,$,$,$,$); -#2499=IFCMATERIALPROFILESET($,$,(#2501),$); -#2500=IFCRELASSOCIATESMATERIAL('0$1jx4SkH4oRQMMif9wjG$',$,$,$,(#2498),#2499); -#2501=IFCMATERIALPROFILE($,$,#17,#2489,$,$); -#2502=IFCZSHAPEPROFILEDEF(.AREA.,$,$,60.,45.,5.,6.,$,$); -#2503=IFCBEAMTYPE('1SkLH$wn1BieUGUV3gB2nQ',$,'ZNP60',$,$,$,$,$,$,$); -#2504=IFCMATERIALPROFILESET($,$,(#2506),$); -#2505=IFCRELASSOCIATESMATERIAL('3wj3BL2qTAmfsYnW6mIR$k',$,$,$,(#2503),#2504); -#2506=IFCMATERIALPROFILE($,$,#17,#2502,$,$); -#2507=IFCMEMBERTYPE('01zQf6O6DB_hM9SP3JX2YT',$,'ZNP60',$,$,$,$,$,$,$); -#2508=IFCMATERIALPROFILESET($,$,(#2510),$); -#2509=IFCRELASSOCIATESMATERIAL('1lL0sopn59MfkRpOZ1ItCl',$,$,$,(#2507),#2508); -#2510=IFCMATERIALPROFILE($,$,#17,#2502,$,$); -#2511=IFCCOLUMNTYPE('1dPKsSdl5BM84me5zj1Ddq',$,'ZNP60',$,$,$,$,$,$,$); -#2512=IFCMATERIALPROFILESET($,$,(#2514),$); -#2513=IFCRELASSOCIATESMATERIAL('3ENx_TAW9DRvXwigqxDZpM',$,$,$,(#2511),#2512); -#2514=IFCMATERIALPROFILE($,$,#17,#2502,$,$); -#2515=IFCZSHAPEPROFILEDEF(.AREA.,$,$,80.,50.,6.,7.,$,$); -#2516=IFCBEAMTYPE('24$e4zmaD8_P5LhfFmBy1m',$,'ZNP80',$,$,$,$,$,$,$); -#2517=IFCMATERIALPROFILESET($,$,(#2519),$); -#2518=IFCRELASSOCIATESMATERIAL('0bxihHd1H2mRX1a3MOvJzv',$,$,$,(#2516),#2517); -#2519=IFCMATERIALPROFILE($,$,#17,#2515,$,$); -#2520=IFCMEMBERTYPE('23ajGQRzTFZePFjqyPwsSW',$,'ZNP80',$,$,$,$,$,$,$); -#2521=IFCMATERIALPROFILESET($,$,(#2523),$); -#2522=IFCRELASSOCIATESMATERIAL('0CEZn7Dvj1Yh8ob_zH0w8A',$,$,$,(#2520),#2521); -#2523=IFCMATERIALPROFILE($,$,#17,#2515,$,$); -#2524=IFCCOLUMNTYPE('18oFsgBdP2IhqOuUsZFy0P',$,'ZNP80',$,$,$,$,$,$,$); -#2525=IFCMATERIALPROFILESET($,$,(#2527),$); -#2526=IFCRELASSOCIATESMATERIAL('2qOwnFd39FYf_sRnYl449p',$,$,$,(#2524),#2525); -#2527=IFCMATERIALPROFILE($,$,#17,#2515,$,$); -#2528=IFCZSHAPEPROFILEDEF(.AREA.,$,$,100.,55.,6.5,8.,$,$); -#2529=IFCBEAMTYPE('0E6SHKCez5$vb_8Dud8uXy',$,'ZNP100',$,$,$,$,$,$,$); -#2530=IFCMATERIALPROFILESET($,$,(#2532),$); -#2531=IFCRELASSOCIATESMATERIAL('1T5G9R6E929PVat1cbQXUY',$,$,$,(#2529),#2530); -#2532=IFCMATERIALPROFILE($,$,#17,#2528,$,$); -#2533=IFCMEMBERTYPE('03ZMMi72X7c8U3jsQu3W5X',$,'ZNP100',$,$,$,$,$,$,$); -#2534=IFCMATERIALPROFILESET($,$,(#2536),$); -#2535=IFCRELASSOCIATESMATERIAL('3ZTv2XG3b6nBh9aFWfcVxr',$,$,$,(#2533),#2534); -#2536=IFCMATERIALPROFILE($,$,#17,#2528,$,$); -#2537=IFCCOLUMNTYPE('1CkGbshtf8sOvyc_QlNxO2',$,'ZNP100',$,$,$,$,$,$,$); -#2538=IFCMATERIALPROFILESET($,$,(#2540),$); -#2539=IFCRELASSOCIATESMATERIAL('0nKMRWf_bBSvjrDEzzgnyS',$,$,$,(#2537),#2538); -#2540=IFCMATERIALPROFILE($,$,#17,#2528,$,$); -#2541=IFCZSHAPEPROFILEDEF(.AREA.,$,$,120.,60.,7.,9.,$,$); -#2542=IFCBEAMTYPE('0IanRFrXH3JfQt9_XevfoV',$,'ZNP120',$,$,$,$,$,$,$); -#2543=IFCMATERIALPROFILESET($,$,(#2545),$); -#2544=IFCRELASSOCIATESMATERIAL('36KIkRMI57t8q5gPtynLaE',$,$,$,(#2542),#2543); -#2545=IFCMATERIALPROFILE($,$,#17,#2541,$,$); -#2546=IFCMEMBERTYPE('2a6GhkYmjFIvls_0nFl4pM',$,'ZNP120',$,$,$,$,$,$,$); -#2547=IFCMATERIALPROFILESET($,$,(#2549),$); -#2548=IFCRELASSOCIATESMATERIAL('3mbUdk2wH45Bv9aC_LK$gJ',$,$,$,(#2546),#2547); -#2549=IFCMATERIALPROFILE($,$,#17,#2541,$,$); -#2550=IFCCOLUMNTYPE('1vawTsD4jB0A$cEfclXC4k',$,'ZNP120',$,$,$,$,$,$,$); -#2551=IFCMATERIALPROFILESET($,$,(#2553),$); -#2552=IFCRELASSOCIATESMATERIAL('1eo34fVnj3xeDQ_E18yYEw',$,$,$,(#2550),#2551); -#2553=IFCMATERIALPROFILE($,$,#17,#2541,$,$); -#2554=IFCZSHAPEPROFILEDEF(.AREA.,$,$,140.,65.,8.,10.,$,$); -#2555=IFCBEAMTYPE('2FHUajtR59XQCWVqQ6LVSV',$,'ZNP140',$,$,$,$,$,$,$); -#2556=IFCMATERIALPROFILESET($,$,(#2558),$); -#2557=IFCRELASSOCIATESMATERIAL('1ulvsKpRvBxu6fUejQ8H8r',$,$,$,(#2555),#2556); -#2558=IFCMATERIALPROFILE($,$,#17,#2554,$,$); -#2559=IFCMEMBERTYPE('1VlunIMT58jvvbQwEiD0Y6',$,'ZNP140',$,$,$,$,$,$,$); -#2560=IFCMATERIALPROFILESET($,$,(#2562),$); -#2561=IFCRELASSOCIATESMATERIAL('1NoLNhOUX7HQ3N0vbzzTB9',$,$,$,(#2559),#2560); -#2562=IFCMATERIALPROFILE($,$,#17,#2554,$,$); -#2563=IFCCOLUMNTYPE('19qbIQdV53Kf5ledtCYwOG',$,'ZNP140',$,$,$,$,$,$,$); -#2564=IFCMATERIALPROFILESET($,$,(#2566),$); -#2565=IFCRELASSOCIATESMATERIAL('3STzyB9yzBQRw2tcj7DvhC',$,$,$,(#2563),#2564); -#2566=IFCMATERIALPROFILE($,$,#17,#2554,$,$); -#2567=IFCZSHAPEPROFILEDEF(.AREA.,$,$,160.,70.,8.5,11.,$,$); -#2568=IFCBEAMTYPE('1kqX33Lu52ZwcPMyTagw6E',$,'ZNP160',$,$,$,$,$,$,$); -#2569=IFCMATERIALPROFILESET($,$,(#2571),$); -#2570=IFCRELASSOCIATESMATERIAL('3$pgTJRdf5GBLJgG87hYsI',$,$,$,(#2568),#2569); -#2571=IFCMATERIALPROFILE($,$,#17,#2567,$,$); -#2572=IFCMEMBERTYPE('2w$ioUZQv3qRUEmUjYOkQY',$,'ZNP160',$,$,$,$,$,$,$); -#2573=IFCMATERIALPROFILESET($,$,(#2575),$); -#2574=IFCRELASSOCIATESMATERIAL('2gE9S3lFP2nhniXd80ljYT',$,$,$,(#2572),#2573); -#2575=IFCMATERIALPROFILE($,$,#17,#2567,$,$); -#2576=IFCCOLUMNTYPE('3ej9b42dP5c92DJq713hdI',$,'ZNP160',$,$,$,$,$,$,$); -#2577=IFCMATERIALPROFILESET($,$,(#2579),$); -#2578=IFCRELASSOCIATESMATERIAL('2cvC7QGozFdu4dv56ZfDE6',$,$,$,(#2576),#2577); -#2579=IFCMATERIALPROFILE($,$,#17,#2567,$,$); -#2580=IFCUSHAPEPROFILEDEF(.AREA.,$,$,80.,50.,4.,7.,$,$,$); -#2581=IFCBEAMTYPE('2GFb9OU0D0IOrfBcomGWxV',$,'UPE80',$,$,$,$,$,$,$); -#2582=IFCMATERIALPROFILESET($,$,(#2584),$); -#2583=IFCRELASSOCIATESMATERIAL('0p2RkKftvCGfTV0tSAfRNV',$,$,$,(#2581),#2582); -#2584=IFCMATERIALPROFILE($,$,#17,#2580,$,$); -#2585=IFCMEMBERTYPE('178S2Mi4bFi8lOqgJ4TMiq',$,'UPE80',$,$,$,$,$,$,$); -#2586=IFCMATERIALPROFILESET($,$,(#2588),$); -#2587=IFCRELASSOCIATESMATERIAL('18YHP0wyDFwBXZvKvPQahZ',$,$,$,(#2585),#2586); -#2588=IFCMATERIALPROFILE($,$,#17,#2580,$,$); -#2589=IFCCOLUMNTYPE('0FpcpHhUj3t8ja8ylVoEbC',$,'UPE80',$,$,$,$,$,$,$); -#2590=IFCMATERIALPROFILESET($,$,(#2592),$); -#2591=IFCRELASSOCIATESMATERIAL('02$cRpR4D7zhhrmfeVhaMj',$,$,$,(#2589),#2590); -#2592=IFCMATERIALPROFILE($,$,#17,#2580,$,$); -#2593=IFCUSHAPEPROFILEDEF(.AREA.,$,$,100.,55.,4.5,7.5,$,$,$); -#2594=IFCBEAMTYPE('28f6WtvhvFavFhc0d4Wu6p',$,'UPE100',$,$,$,$,$,$,$); -#2595=IFCMATERIALPROFILESET($,$,(#2597),$); -#2596=IFCRELASSOCIATESMATERIAL('1PJlgfTKDDD8LYnqF5bKC2',$,$,$,(#2594),#2595); -#2597=IFCMATERIALPROFILE($,$,#17,#2593,$,$); -#2598=IFCMEMBERTYPE('2q2JrCVEH5WRqqAw_aB2s2',$,'UPE100',$,$,$,$,$,$,$); -#2599=IFCMATERIALPROFILESET($,$,(#2601),$); -#2600=IFCRELASSOCIATESMATERIAL('1toOksPbnB49VeZAmiDOFx',$,$,$,(#2598),#2599); -#2601=IFCMATERIALPROFILE($,$,#17,#2593,$,$); -#2602=IFCCOLUMNTYPE('1$zJP_jvP4oAp_s0wE60Ve',$,'UPE100',$,$,$,$,$,$,$); -#2603=IFCMATERIALPROFILESET($,$,(#2605),$); -#2604=IFCRELASSOCIATESMATERIAL('2MzvyHBWLBTPGApmuigqkX',$,$,$,(#2602),#2603); -#2605=IFCMATERIALPROFILE($,$,#17,#2593,$,$); -#2606=IFCUSHAPEPROFILEDEF(.AREA.,$,$,120.,60.,5.,8.,$,$,$); -#2607=IFCBEAMTYPE('2KblYcRFD6UOIjIZA7BoVc',$,'UPE120',$,$,$,$,$,$,$); -#2608=IFCMATERIALPROFILESET($,$,(#2610),$); -#2609=IFCRELASSOCIATESMATERIAL('0Fp8nFYur6NOwAeWj9jiwX',$,$,$,(#2607),#2608); -#2610=IFCMATERIALPROFILE($,$,#17,#2606,$,$); -#2611=IFCMEMBERTYPE('1_8KVrNerCdwEo2R_DImzF',$,'UPE120',$,$,$,$,$,$,$); -#2612=IFCMATERIALPROFILESET($,$,(#2614),$); -#2613=IFCRELASSOCIATESMATERIAL('19JML7mJT6JPL2uUOW_s9Z',$,$,$,(#2611),#2612); -#2614=IFCMATERIALPROFILE($,$,#17,#2606,$,$); -#2615=IFCCOLUMNTYPE('3xRc8DiX5CLRyyfzcvFIgK',$,'UPE120',$,$,$,$,$,$,$); -#2616=IFCMATERIALPROFILESET($,$,(#2618),$); -#2617=IFCRELASSOCIATESMATERIAL('3HlhK4U3DAjeiFNOi_6pjS',$,$,$,(#2615),#2616); -#2618=IFCMATERIALPROFILE($,$,#17,#2606,$,$); -#2619=IFCUSHAPEPROFILEDEF(.AREA.,$,$,140.,65.,5.,9.,$,$,$); -#2620=IFCBEAMTYPE('0uA9OG6Y5FSezzcoY14Mt4',$,'UPE140',$,$,$,$,$,$,$); -#2621=IFCMATERIALPROFILESET($,$,(#2623),$); -#2622=IFCRELASSOCIATESMATERIAL('2hkivghvzCgQH6V7rjCbrO',$,$,$,(#2620),#2621); -#2623=IFCMATERIALPROFILE($,$,#17,#2619,$,$); -#2624=IFCMEMBERTYPE('1wlHntlrnC0AAXFHMSJug7',$,'UPE140',$,$,$,$,$,$,$); -#2625=IFCMATERIALPROFILESET($,$,(#2627),$); -#2626=IFCRELASSOCIATESMATERIAL('39oW3JkYjCLx0y8SfkS_Lj',$,$,$,(#2624),#2625); -#2627=IFCMATERIALPROFILE($,$,#17,#2619,$,$); -#2628=IFCCOLUMNTYPE('16ZbhByEPDN9ExlGyPh3fN',$,'UPE140',$,$,$,$,$,$,$); -#2629=IFCMATERIALPROFILESET($,$,(#2631),$); -#2630=IFCRELASSOCIATESMATERIAL('0eLMouBibFwhc5NH0JBVhr',$,$,$,(#2628),#2629); -#2631=IFCMATERIALPROFILE($,$,#17,#2619,$,$); -#2632=IFCUSHAPEPROFILEDEF(.AREA.,$,$,160.,70.,5.5,9.5,$,$,$); -#2633=IFCBEAMTYPE('3gFbPBj2D0T9_$bSizqWT$',$,'UPE160',$,$,$,$,$,$,$); -#2634=IFCMATERIALPROFILESET($,$,(#2636),$); -#2635=IFCRELASSOCIATESMATERIAL('3wG0xNQnL4nvDnbxfjSaWc',$,$,$,(#2633),#2634); -#2636=IFCMATERIALPROFILE($,$,#17,#2632,$,$); -#2637=IFCMEMBERTYPE('3bgS3jCK5DGRlDrjv4Kv4O',$,'UPE160',$,$,$,$,$,$,$); -#2638=IFCMATERIALPROFILESET($,$,(#2640),$); -#2639=IFCRELASSOCIATESMATERIAL('19qbTE5Tb8xumNoOZQazxF',$,$,$,(#2637),#2638); -#2640=IFCMATERIALPROFILE($,$,#17,#2632,$,$); -#2641=IFCCOLUMNTYPE('2xCpLpk7r7wPaPsH9Ka$$a',$,'UPE160',$,$,$,$,$,$,$); -#2642=IFCMATERIALPROFILESET($,$,(#2644),$); -#2643=IFCRELASSOCIATESMATERIAL('1Q7sQFLtz8ZOm$KPoDxIoh',$,$,$,(#2641),#2642); -#2644=IFCMATERIALPROFILE($,$,#17,#2632,$,$); -#2645=IFCUSHAPEPROFILEDEF(.AREA.,$,$,180.,75.,5.5,10.5,$,$,$); -#2646=IFCBEAMTYPE('1v4KKJG6z7o9pnnOy1Rg43',$,'UPE180',$,$,$,$,$,$,$); -#2647=IFCMATERIALPROFILESET($,$,(#2649),$); -#2648=IFCRELASSOCIATESMATERIAL('2cecmaVy54GBbehAaicLQV',$,$,$,(#2646),#2647); -#2649=IFCMATERIALPROFILE($,$,#17,#2645,$,$); -#2650=IFCMEMBERTYPE('2dgfGLrvj6kvP288pCWtcF',$,'UPE180',$,$,$,$,$,$,$); -#2651=IFCMATERIALPROFILESET($,$,(#2653),$); -#2652=IFCRELASSOCIATESMATERIAL('2YpGeL$396Kv_iqaqnr15f',$,$,$,(#2650),#2651); -#2653=IFCMATERIALPROFILE($,$,#17,#2645,$,$); -#2654=IFCCOLUMNTYPE('036_TSrn95LQ_BnTratRYT',$,'UPE180',$,$,$,$,$,$,$); -#2655=IFCMATERIALPROFILESET($,$,(#2657),$); -#2656=IFCRELASSOCIATESMATERIAL('3GlUEFz3L64Qa9k4wOzvJ4',$,$,$,(#2654),#2655); -#2657=IFCMATERIALPROFILE($,$,#17,#2645,$,$); -#2658=IFCUSHAPEPROFILEDEF(.AREA.,$,$,200.,80.,6.,11.,$,$,$); -#2659=IFCBEAMTYPE('3tuik3u95Edhx3FmnbeHsK',$,'UPE200',$,$,$,$,$,$,$); -#2660=IFCMATERIALPROFILESET($,$,(#2662),$); -#2661=IFCRELASSOCIATESMATERIAL('3fzH7CQ9bCbPK0E4$Hvprx',$,$,$,(#2659),#2660); -#2662=IFCMATERIALPROFILE($,$,#17,#2658,$,$); -#2663=IFCMEMBERTYPE('2yUXF$3SfD4gKFsXRyj0x_',$,'UPE200',$,$,$,$,$,$,$); -#2664=IFCMATERIALPROFILESET($,$,(#2666),$); -#2665=IFCRELASSOCIATESMATERIAL('2_O$onqqD9F9x4pbhaHqty',$,$,$,(#2663),#2664); -#2666=IFCMATERIALPROFILE($,$,#17,#2658,$,$); -#2667=IFCCOLUMNTYPE('1c3w69YN91ORazu6Bh7vh$',$,'UPE200',$,$,$,$,$,$,$); -#2668=IFCMATERIALPROFILESET($,$,(#2670),$); -#2669=IFCRELASSOCIATESMATERIAL('0zzl613Cj6Cgy_qx25T6MB',$,$,$,(#2667),#2668); -#2670=IFCMATERIALPROFILE($,$,#17,#2658,$,$); -#2671=IFCUSHAPEPROFILEDEF(.AREA.,$,$,220.,85.,6.5,12.,$,$,$); -#2672=IFCBEAMTYPE('0wDWJE49DBH99J6pyfQGCL',$,'UPE220',$,$,$,$,$,$,$); -#2673=IFCMATERIALPROFILESET($,$,(#2675),$); -#2674=IFCRELASSOCIATESMATERIAL('3khAIm03rAIvRhqRQm2M5Z',$,$,$,(#2672),#2673); -#2675=IFCMATERIALPROFILE($,$,#17,#2671,$,$); -#2676=IFCMEMBERTYPE('1rOEs_bZbAHxPGzZwPLwDt',$,'UPE220',$,$,$,$,$,$,$); -#2677=IFCMATERIALPROFILESET($,$,(#2679),$); -#2678=IFCRELASSOCIATESMATERIAL('1NbnzNI25FRe_fy6jQjJ9I',$,$,$,(#2676),#2677); -#2679=IFCMATERIALPROFILE($,$,#17,#2671,$,$); -#2680=IFCCOLUMNTYPE('2_KqyHcjj8HPFV2K1sHDTu',$,'UPE220',$,$,$,$,$,$,$); -#2681=IFCMATERIALPROFILESET($,$,(#2683),$); -#2682=IFCRELASSOCIATESMATERIAL('0hZLRMusbF88PASFacH2Te',$,$,$,(#2680),#2681); -#2683=IFCMATERIALPROFILE($,$,#17,#2671,$,$); -#2684=IFCUSHAPEPROFILEDEF(.AREA.,$,$,240.,90.,7.,12.5,$,$,$); -#2685=IFCBEAMTYPE('0c1ASzpg1FxephhtOGOsMF',$,'UPE240',$,$,$,$,$,$,$); -#2686=IFCMATERIALPROFILESET($,$,(#2688),$); -#2687=IFCRELASSOCIATESMATERIAL('0sjk6ZxKDF2gRmn8mD13yY',$,$,$,(#2685),#2686); -#2688=IFCMATERIALPROFILE($,$,#17,#2684,$,$); -#2689=IFCMEMBERTYPE('1vNDkhJDX9CvxsuFvdyT_2',$,'UPE240',$,$,$,$,$,$,$); -#2690=IFCMATERIALPROFILESET($,$,(#2692),$); -#2691=IFCRELASSOCIATESMATERIAL('2AegiduFr8TPXNXFfn6UEW',$,$,$,(#2689),#2690); -#2692=IFCMATERIALPROFILE($,$,#17,#2684,$,$); -#2693=IFCCOLUMNTYPE('31Ff_gtF90aPBQhGhkNlKg',$,'UPE240',$,$,$,$,$,$,$); -#2694=IFCMATERIALPROFILESET($,$,(#2696),$); -#2695=IFCRELASSOCIATESMATERIAL('3KbE2rOybE9O_RynR$s1av',$,$,$,(#2693),#2694); -#2696=IFCMATERIALPROFILE($,$,#17,#2684,$,$); -#2697=IFCUSHAPEPROFILEDEF(.AREA.,$,$,270.,95.,7.5,13.5,$,$,$); -#2698=IFCBEAMTYPE('1DgIW9WP10kB88lAoiepcH',$,'UPE270',$,$,$,$,$,$,$); -#2699=IFCMATERIALPROFILESET($,$,(#2701),$); -#2700=IFCRELASSOCIATESMATERIAL('0a0jXTuBjEfP2ooY94KZB$',$,$,$,(#2698),#2699); -#2701=IFCMATERIALPROFILE($,$,#17,#2697,$,$); -#2702=IFCMEMBERTYPE('1b7C_cDcv2Qvr5VTlaoO7D',$,'UPE270',$,$,$,$,$,$,$); -#2703=IFCMATERIALPROFILESET($,$,(#2705),$); -#2704=IFCRELASSOCIATESMATERIAL('1zRnKUXTj2lQtg0FvoGpGJ',$,$,$,(#2702),#2703); -#2705=IFCMATERIALPROFILE($,$,#17,#2697,$,$); -#2706=IFCCOLUMNTYPE('1ygqBmyZPCA8m_t5ZO057S',$,'UPE270',$,$,$,$,$,$,$); -#2707=IFCMATERIALPROFILESET($,$,(#2709),$); -#2708=IFCRELASSOCIATESMATERIAL('1xx8qdNAD1Pg1C_ta9lUsP',$,$,$,(#2706),#2707); -#2709=IFCMATERIALPROFILE($,$,#17,#2697,$,$); -#2710=IFCUSHAPEPROFILEDEF(.AREA.,$,$,300.,100.,9.5,15.,$,$,$); -#2711=IFCBEAMTYPE('2KWOo1p5T47gI1sIyTIgyK',$,'UPE300',$,$,$,$,$,$,$); -#2712=IFCMATERIALPROFILESET($,$,(#2714),$); -#2713=IFCRELASSOCIATESMATERIAL('0tHS0ei5zF0vUCaET_BtqJ',$,$,$,(#2711),#2712); -#2714=IFCMATERIALPROFILE($,$,#17,#2710,$,$); -#2715=IFCMEMBERTYPE('02mpHfuCD26Bi2mNJMJzia',$,'UPE300',$,$,$,$,$,$,$); -#2716=IFCMATERIALPROFILESET($,$,(#2718),$); -#2717=IFCRELASSOCIATESMATERIAL('3tZm4yhgnDleIB2wGs4upT',$,$,$,(#2715),#2716); -#2718=IFCMATERIALPROFILE($,$,#17,#2710,$,$); -#2719=IFCCOLUMNTYPE('1Z4epODDHBmPDBAlhaFunu',$,'UPE300',$,$,$,$,$,$,$); -#2720=IFCMATERIALPROFILESET($,$,(#2722),$); -#2721=IFCRELASSOCIATESMATERIAL('3dY9lt6dH5BguvR3Hw5mFW',$,$,$,(#2719),#2720); -#2722=IFCMATERIALPROFILE($,$,#17,#2710,$,$); -#2723=IFCUSHAPEPROFILEDEF(.AREA.,$,$,330.,105.,11.,16.,$,$,$); -#2724=IFCBEAMTYPE('1OOovPUYz0kgVa3vbfsRh0',$,'UPE330',$,$,$,$,$,$,$); -#2725=IFCMATERIALPROFILESET($,$,(#2727),$); -#2726=IFCRELASSOCIATESMATERIAL('1GRsCM765AJA8h0CY8lREr',$,$,$,(#2724),#2725); -#2727=IFCMATERIALPROFILE($,$,#17,#2723,$,$); -#2728=IFCMEMBERTYPE('2O7Qf$KOH4S9toh36tV3cA',$,'UPE330',$,$,$,$,$,$,$); -#2729=IFCMATERIALPROFILESET($,$,(#2731),$); -#2730=IFCRELASSOCIATESMATERIAL('1IfnGdJrHDk8ueElMUymbn',$,$,$,(#2728),#2729); -#2731=IFCMATERIALPROFILE($,$,#17,#2723,$,$); -#2732=IFCCOLUMNTYPE('2YcVGMDwP55ghMBsk98VpY',$,'UPE330',$,$,$,$,$,$,$); -#2733=IFCMATERIALPROFILESET($,$,(#2735),$); -#2734=IFCRELASSOCIATESMATERIAL('14$PHfY0f57xhT7mjSt6tV',$,$,$,(#2732),#2733); -#2735=IFCMATERIALPROFILE($,$,#17,#2723,$,$); -#2736=IFCUSHAPEPROFILEDEF(.AREA.,$,$,360.,110.,12.,17.,$,$,$); -#2737=IFCBEAMTYPE('01ROyD6Nr9N8zxOcs_SF3p',$,'UPE360',$,$,$,$,$,$,$); -#2738=IFCMATERIALPROFILESET($,$,(#2740),$); -#2739=IFCRELASSOCIATESMATERIAL('0M4BNymxn8RwdAJa5XuVhY',$,$,$,(#2737),#2738); -#2740=IFCMATERIALPROFILE($,$,#17,#2736,$,$); -#2741=IFCMEMBERTYPE('1NxuVRW6r66Oa3c83hi192',$,'UPE360',$,$,$,$,$,$,$); -#2742=IFCMATERIALPROFILESET($,$,(#2744),$); -#2743=IFCRELASSOCIATESMATERIAL('35_qFKXRPCJRXsRp5eYF6$',$,$,$,(#2741),#2742); -#2744=IFCMATERIALPROFILE($,$,#17,#2736,$,$); -#2745=IFCCOLUMNTYPE('0OItNZP_LF0Bo80NFwCZwf',$,'UPE360',$,$,$,$,$,$,$); -#2746=IFCMATERIALPROFILESET($,$,(#2748),$); -#2747=IFCRELASSOCIATESMATERIAL('3tFNbFJ_X9yPe_A1446x26',$,$,$,(#2745),#2746); -#2748=IFCMATERIALPROFILE($,$,#17,#2736,$,$); -#2749=IFCUSHAPEPROFILEDEF(.AREA.,$,$,400.,115.,13.5,18.,$,$,$); -#2750=IFCBEAMTYPE('20tnxRN_v39wytjJZXrJgW',$,'UPE400',$,$,$,$,$,$,$); -#2751=IFCMATERIALPROFILESET($,$,(#2753),$); -#2752=IFCRELASSOCIATESMATERIAL('27VINkPYP6MeLZmXQeQags',$,$,$,(#2750),#2751); -#2753=IFCMATERIALPROFILE($,$,#17,#2749,$,$); -#2754=IFCMEMBERTYPE('2X9tgGSp55mOZauS6rgNXC',$,'UPE400',$,$,$,$,$,$,$); -#2755=IFCMATERIALPROFILESET($,$,(#2757),$); -#2756=IFCRELASSOCIATESMATERIAL('1w$jL_ncb7GgFVOiLuHM42',$,$,$,(#2754),#2755); -#2757=IFCMATERIALPROFILE($,$,#17,#2749,$,$); -#2758=IFCCOLUMNTYPE('1OF7bWyVzDFfwcLWmsn1Vo',$,'UPE400',$,$,$,$,$,$,$); -#2759=IFCMATERIALPROFILESET($,$,(#2761),$); -#2760=IFCRELASSOCIATESMATERIAL('0VRJA8tdTEEA8xfKcs0WFL',$,$,$,(#2758),#2759); -#2761=IFCMATERIALPROFILE($,$,#17,#2749,$,$); -#2762=IFCUSHAPEPROFILEDEF(.AREA.,$,$,80.,45.,5.,8.,$,$,$); -#2763=IFCBEAMTYPE('0bJ4wmvHL96vdg5yKoYNi4',$,'UAP80',$,$,$,$,$,$,$); -#2764=IFCMATERIALPROFILESET($,$,(#2766),$); -#2765=IFCRELASSOCIATESMATERIAL('1rSHpYYvP3qBYt3IP4nuRJ',$,$,$,(#2763),#2764); -#2766=IFCMATERIALPROFILE($,$,#17,#2762,$,$); -#2767=IFCMEMBERTYPE('3XpGkyel90ogsWXaKaixwA',$,'UAP80',$,$,$,$,$,$,$); -#2768=IFCMATERIALPROFILESET($,$,(#2770),$); -#2769=IFCRELASSOCIATESMATERIAL('3vLTff8e5ASga0zj8FkyY8',$,$,$,(#2767),#2768); -#2770=IFCMATERIALPROFILE($,$,#17,#2762,$,$); -#2771=IFCCOLUMNTYPE('1HhVZ7GL55rQStZTEBlSuI',$,'UAP80',$,$,$,$,$,$,$); -#2772=IFCMATERIALPROFILESET($,$,(#2774),$); -#2773=IFCRELASSOCIATESMATERIAL('3RX7RA2LD6Wxpm$gLkpzRs',$,$,$,(#2771),#2772); -#2774=IFCMATERIALPROFILE($,$,#17,#2762,$,$); -#2775=IFCUSHAPEPROFILEDEF(.AREA.,$,$,100.,50.,5.5,8.5,$,$,$); -#2776=IFCBEAMTYPE('2rhh58Lyj2h8dkWsH6IHoj',$,'UAP100',$,$,$,$,$,$,$); -#2777=IFCMATERIALPROFILESET($,$,(#2779),$); -#2778=IFCRELASSOCIATESMATERIAL('3r9q55SWj05eQeVrCFr1C5',$,$,$,(#2776),#2777); -#2779=IFCMATERIALPROFILE($,$,#17,#2775,$,$); -#2780=IFCMEMBERTYPE('3BvvozRdz9yh91XOxwK4mL',$,'UAP100',$,$,$,$,$,$,$); -#2781=IFCMATERIALPROFILESET($,$,(#2783),$); -#2782=IFCRELASSOCIATESMATERIAL('2wgt$1dgL8ahP65C7zjR_B',$,$,$,(#2780),#2781); -#2783=IFCMATERIALPROFILE($,$,#17,#2775,$,$); -#2784=IFCCOLUMNTYPE('0qrXjugWD8PgW5zwkRhtec',$,'UAP100',$,$,$,$,$,$,$); -#2785=IFCMATERIALPROFILESET($,$,(#2787),$); -#2786=IFCRELASSOCIATESMATERIAL('2XL4KRPHzChwoCKRVgDTED',$,$,$,(#2784),#2785); -#2787=IFCMATERIALPROFILE($,$,#17,#2775,$,$); -#2788=IFCUSHAPEPROFILEDEF(.AREA.,$,$,130.,55.,6.,9.5,$,$,$); -#2789=IFCBEAMTYPE('1KCsaHASP6Q9lYWg2fL35E',$,'UAP130',$,$,$,$,$,$,$); -#2790=IFCMATERIALPROFILESET($,$,(#2792),$); -#2791=IFCRELASSOCIATESMATERIAL('27gCxwkcb4DvFC0ejsypIr',$,$,$,(#2789),#2790); -#2792=IFCMATERIALPROFILE($,$,#17,#2788,$,$); -#2793=IFCMEMBERTYPE('0dAbvrP397YBTHRDyn3bje',$,'UAP130',$,$,$,$,$,$,$); -#2794=IFCMATERIALPROFILESET($,$,(#2796),$); -#2795=IFCRELASSOCIATESMATERIAL('2IeVK4sa5DUeH49PGpgCNv',$,$,$,(#2793),#2794); -#2796=IFCMATERIALPROFILE($,$,#17,#2788,$,$); -#2797=IFCCOLUMNTYPE('0Z81X6wnP7Zx6pg6Tr5PVC',$,'UAP130',$,$,$,$,$,$,$); -#2798=IFCMATERIALPROFILESET($,$,(#2800),$); -#2799=IFCRELASSOCIATESMATERIAL('3$uGcuCJT9SuZvgPsdZs15',$,$,$,(#2797),#2798); -#2800=IFCMATERIALPROFILE($,$,#17,#2788,$,$); -#2801=IFCUSHAPEPROFILEDEF(.AREA.,$,$,150.,65.,7.,10.25,$,$,$); -#2802=IFCBEAMTYPE('3l$Pzk_wr6uRKm5_q6CglL',$,'UAP150',$,$,$,$,$,$,$); -#2803=IFCMATERIALPROFILESET($,$,(#2805),$); -#2804=IFCRELASSOCIATESMATERIAL('2oq93I8ijCUBl75jdHjKPO',$,$,$,(#2802),#2803); -#2805=IFCMATERIALPROFILE($,$,#17,#2801,$,$); -#2806=IFCMEMBERTYPE('2W3qmAuajC4g1M5aA_hlVy',$,'UAP150',$,$,$,$,$,$,$); -#2807=IFCMATERIALPROFILESET($,$,(#2809),$); -#2808=IFCRELASSOCIATESMATERIAL('2em2okCsH2pRfzBKmH6lJr',$,$,$,(#2806),#2807); -#2809=IFCMATERIALPROFILE($,$,#17,#2801,$,$); -#2810=IFCCOLUMNTYPE('2PwBtpk1H9TvrKpdlluy38',$,'UAP150',$,$,$,$,$,$,$); -#2811=IFCMATERIALPROFILESET($,$,(#2813),$); -#2812=IFCRELASSOCIATESMATERIAL('3OWDTS0lj6JuBm$cuua7KR',$,$,$,(#2810),#2811); -#2813=IFCMATERIALPROFILE($,$,#17,#2801,$,$); -#2814=IFCUSHAPEPROFILEDEF(.AREA.,$,$,175.,70.,7.5,10.75,$,$,$); -#2815=IFCBEAMTYPE('0Ui6WCj4HExxn88kXtwmhg',$,'UAP175',$,$,$,$,$,$,$); -#2816=IFCMATERIALPROFILESET($,$,(#2818),$); -#2817=IFCRELASSOCIATESMATERIAL('19dBVTddbBsOOepa9YnrIP',$,$,$,(#2815),#2816); -#2818=IFCMATERIALPROFILE($,$,#17,#2814,$,$); -#2819=IFCMEMBERTYPE('2hI_3wfcr1XfW_pYjZe7I8',$,'UAP175',$,$,$,$,$,$,$); -#2820=IFCMATERIALPROFILESET($,$,(#2822),$); -#2821=IFCRELASSOCIATESMATERIAL('3_n_DUl316XhVYJfZNtGFe',$,$,$,(#2819),#2820); -#2822=IFCMATERIALPROFILE($,$,#17,#2814,$,$); -#2823=IFCCOLUMNTYPE('0HZ7j3BxPDwAvlKRC$KKcE',$,'UAP175',$,$,$,$,$,$,$); -#2824=IFCMATERIALPROFILESET($,$,(#2826),$); -#2825=IFCRELASSOCIATESMATERIAL('0aN4GPWZPEWR6sPXW1sL$N',$,$,$,(#2823),#2824); -#2826=IFCMATERIALPROFILE($,$,#17,#2814,$,$); -#2827=IFCUSHAPEPROFILEDEF(.AREA.,$,$,200.,75.,8.,11.5,$,$,$); -#2828=IFCBEAMTYPE('0HQ6E0$nX7sfLG59vRSgRr',$,'UAP200',$,$,$,$,$,$,$); -#2829=IFCMATERIALPROFILESET($,$,(#2831),$); -#2830=IFCRELASSOCIATESMATERIAL('1I8mUwvdr7wANeXTnBvUzl',$,$,$,(#2828),#2829); -#2831=IFCMATERIALPROFILE($,$,#17,#2827,$,$); -#2832=IFCMEMBERTYPE('0p$0Va4xDEZx8E0ELax0L4',$,'UAP200',$,$,$,$,$,$,$); -#2833=IFCMATERIALPROFILESET($,$,(#2835),$); -#2834=IFCRELASSOCIATESMATERIAL('1poaMbHWD2NuabgcVsq1ZU',$,$,$,(#2832),#2833); -#2835=IFCMATERIALPROFILE($,$,#17,#2827,$,$); -#2836=IFCCOLUMNTYPE('1mYOX7fHb4Vh1NJrhcSXdc',$,'UAP200',$,$,$,$,$,$,$); -#2837=IFCMATERIALPROFILESET($,$,(#2839),$); -#2838=IFCRELASSOCIATESMATERIAL('0Y6UP5HXH0huB0sFQhrJKw',$,$,$,(#2836),#2837); -#2839=IFCMATERIALPROFILE($,$,#17,#2827,$,$); -#2840=IFCUSHAPEPROFILEDEF(.AREA.,$,$,220.,80.,8.,12.5,$,$,$); -#2841=IFCBEAMTYPE('3W3pzWUb51ERHilNcdjoqk',$,'UAP220',$,$,$,$,$,$,$); -#2842=IFCMATERIALPROFILESET($,$,(#2844),$); -#2843=IFCRELASSOCIATESMATERIAL('12FW9FdY53S8anGZ$kkCjv',$,$,$,(#2841),#2842); -#2844=IFCMATERIALPROFILE($,$,#17,#2840,$,$); -#2845=IFCMEMBERTYPE('0aE74HFOT6Xg0Jq9xO_$OM',$,'UAP220',$,$,$,$,$,$,$); -#2846=IFCMATERIALPROFILESET($,$,(#2848),$); -#2847=IFCRELASSOCIATESMATERIAL('0J6N4zTq93ZfgTEttxTC7H',$,$,$,(#2845),#2846); -#2848=IFCMATERIALPROFILE($,$,#17,#2840,$,$); -#2849=IFCCOLUMNTYPE('3yEM6XIWDCQOpoFLAmupgH',$,'UAP220',$,$,$,$,$,$,$); -#2850=IFCMATERIALPROFILESET($,$,(#2852),$); -#2851=IFCRELASSOCIATESMATERIAL('3x8PCUZD18OR2nEFfVpcSG',$,$,$,(#2849),#2850); -#2852=IFCMATERIALPROFILE($,$,#17,#2840,$,$); -#2853=IFCUSHAPEPROFILEDEF(.AREA.,$,$,250.,85.,9.,13.5,$,$,$); -#2854=IFCBEAMTYPE('1yh7JM7aTByQSiTtuEph3R',$,'UAP250',$,$,$,$,$,$,$); -#2855=IFCMATERIALPROFILESET($,$,(#2857),$); -#2856=IFCRELASSOCIATESMATERIAL('2zxDOx1EvEnOqTc2heqAYS',$,$,$,(#2854),#2855); -#2857=IFCMATERIALPROFILE($,$,#17,#2853,$,$); -#2858=IFCMEMBERTYPE('1aZZBvix57PBb5owlTT6aN',$,'UAP250',$,$,$,$,$,$,$); -#2859=IFCMATERIALPROFILESET($,$,(#2861),$); -#2860=IFCRELASSOCIATESMATERIAL('2ljY0pA6X9y8VC08xJjU$z',$,$,$,(#2858),#2859); -#2861=IFCMATERIALPROFILE($,$,#17,#2853,$,$); -#2862=IFCCOLUMNTYPE('0poZgtrXL4cxAB$LdAVw6z',$,'UAP250',$,$,$,$,$,$,$); -#2863=IFCMATERIALPROFILESET($,$,(#2865),$); -#2864=IFCRELASSOCIATESMATERIAL('19UcYWMVL7ohuRUrrDRQKh',$,$,$,(#2862),#2863); -#2865=IFCMATERIALPROFILE($,$,#17,#2853,$,$); -#2866=IFCUSHAPEPROFILEDEF(.AREA.,$,$,300.,100.,9.5,16.,$,$,$); -#2867=IFCBEAMTYPE('0gb3FZQJn0xxdEOvHJOZ_h',$,'UAP300',$,$,$,$,$,$,$); -#2868=IFCMATERIALPROFILESET($,$,(#2870),$); -#2869=IFCRELASSOCIATESMATERIAL('3B9CJuh$j9wBCN9LsjmaLJ',$,$,$,(#2867),#2868); -#2870=IFCMATERIALPROFILE($,$,#17,#2866,$,$); -#2871=IFCMEMBERTYPE('3hjleY31v22xwS4y3n2nXZ',$,'UAP300',$,$,$,$,$,$,$); -#2872=IFCMATERIALPROFILESET($,$,(#2874),$); -#2873=IFCRELASSOCIATESMATERIAL('3YS1GpDcX6Qw6Pi57_MFnW',$,$,$,(#2871),#2872); -#2874=IFCMATERIALPROFILE($,$,#17,#2866,$,$); -#2875=IFCCOLUMNTYPE('3vUYPrqTH3Ke38oefBBAda',$,'UAP300',$,$,$,$,$,$,$); -#2876=IFCMATERIALPROFILESET($,$,(#2878),$); -#2877=IFCRELASSOCIATESMATERIAL('09Ow_kMlzDtQYW7FlB3Im4',$,$,$,(#2875),#2876); -#2878=IFCMATERIALPROFILE($,$,#17,#2866,$,$); -#2879=IFCUSHAPEPROFILEDEF(.AREA.,$,$,80.,50.,4.,7.,$,$,$); -#2880=IFCBEAMTYPE('2RpFROD3r37AW0vmmNTJRK',$,'UPN80',$,$,$,$,$,$,$); -#2881=IFCMATERIALPROFILESET($,$,(#2883),$); -#2882=IFCRELASSOCIATESMATERIAL('1PbKVlUnT4uvXJJXuODGnL',$,$,$,(#2880),#2881); -#2883=IFCMATERIALPROFILE($,$,#17,#2879,$,$); -#2884=IFCMEMBERTYPE('0ZB8uOJQnFWOiMU2INThhs',$,'UPN80',$,$,$,$,$,$,$); -#2885=IFCMATERIALPROFILESET($,$,(#2887),$); -#2886=IFCRELASSOCIATESMATERIAL('2M5Zu0VAr1xhERCGC89d0H',$,$,$,(#2884),#2885); -#2887=IFCMATERIALPROFILE($,$,#17,#2879,$,$); -#2888=IFCCOLUMNTYPE('3WCXUOY2LAG8kJoX1BKJ3A',$,'UPN80',$,$,$,$,$,$,$); -#2889=IFCMATERIALPROFILESET($,$,(#2891),$); -#2890=IFCRELASSOCIATESMATERIAL('0NYEdZfrLBXgPnooBrPndU',$,$,$,(#2888),#2889); -#2891=IFCMATERIALPROFILE($,$,#17,#2879,$,$); -#2892=IFCUSHAPEPROFILEDEF(.AREA.,$,$,100.,55.,4.5,7.5,$,$,$); -#2893=IFCBEAMTYPE('0BZxP9HLv8Uw8rmMfD_x9i',$,'UPN100',$,$,$,$,$,$,$); -#2894=IFCMATERIALPROFILESET($,$,(#2896),$); -#2895=IFCRELASSOCIATESMATERIAL('3lOgWuM850T9jwBG82tb9l',$,$,$,(#2893),#2894); -#2896=IFCMATERIALPROFILE($,$,#17,#2892,$,$); -#2897=IFCMEMBERTYPE('2EzeGgLtv3BA8SViLPYXlG',$,'UPN100',$,$,$,$,$,$,$); -#2898=IFCMATERIALPROFILESET($,$,(#2900),$); -#2899=IFCRELASSOCIATESMATERIAL('2oVzvEnX91n9YuinxVrzz2',$,$,$,(#2897),#2898); -#2900=IFCMATERIALPROFILE($,$,#17,#2892,$,$); -#2901=IFCCOLUMNTYPE('0yEga624v8GvtfG5zNhbSs',$,'UPN100',$,$,$,$,$,$,$); -#2902=IFCMATERIALPROFILESET($,$,(#2904),$); -#2903=IFCRELASSOCIATESMATERIAL('2pbCJf$qn3wgbsY4kEzoxp',$,$,$,(#2901),#2902); -#2904=IFCMATERIALPROFILE($,$,#17,#2892,$,$); -#2905=IFCUSHAPEPROFILEDEF(.AREA.,$,$,120.,60.,5.,8.,$,$,$); -#2906=IFCBEAMTYPE('2jqRjbh8L19et4PBMs5VEk',$,'UPN120',$,$,$,$,$,$,$); -#2907=IFCMATERIALPROFILESET($,$,(#2909),$); -#2908=IFCRELASSOCIATESMATERIAL('2$njYn_HrBFh4t3g8yXhpS',$,$,$,(#2906),#2907); -#2909=IFCMATERIALPROFILE($,$,#17,#2905,$,$); -#2910=IFCMEMBERTYPE('1urlTNu6P2eRwlYQGSdqOP',$,'UPN120',$,$,$,$,$,$,$); -#2911=IFCMATERIALPROFILESET($,$,(#2913),$); -#2912=IFCRELASSOCIATESMATERIAL('2ztGxOxWjEJgHOKeVUtRLg',$,$,$,(#2910),#2911); -#2913=IFCMATERIALPROFILE($,$,#17,#2905,$,$); -#2914=IFCCOLUMNTYPE('0KSCSugz5FbvkfvYflCY$A',$,'UPN120',$,$,$,$,$,$,$); -#2915=IFCMATERIALPROFILESET($,$,(#2917),$); -#2916=IFCRELASSOCIATESMATERIAL('03jknNKkP8Ugm42yYvFOHt',$,$,$,(#2914),#2915); -#2917=IFCMATERIALPROFILE($,$,#17,#2905,$,$); -#2918=IFCUSHAPEPROFILEDEF(.AREA.,$,$,140.,65.,5.,9.,$,$,$); -#2919=IFCBEAMTYPE('0pJ8hXaiz7iv8FWsine0o9',$,'UPN140',$,$,$,$,$,$,$); -#2920=IFCMATERIALPROFILESET($,$,(#2922),$); -#2921=IFCRELASSOCIATESMATERIAL('0P2poxBUTFcxqDnc1Spxpo',$,$,$,(#2919),#2920); -#2922=IFCMATERIALPROFILE($,$,#17,#2918,$,$); -#2923=IFCMEMBERTYPE('26HN$3ylH5SOKltJvkluFq',$,'UPN140',$,$,$,$,$,$,$); -#2924=IFCMATERIALPROFILESET($,$,(#2926),$); -#2925=IFCRELASSOCIATESMATERIAL('0sMdzC8nf71eqaSWIYZlEI',$,$,$,(#2923),#2924); -#2926=IFCMATERIALPROFILE($,$,#17,#2918,$,$); -#2927=IFCCOLUMNTYPE('0Iolz9Zwb7SxmQCMJppzkz',$,'UPN140',$,$,$,$,$,$,$); -#2928=IFCMATERIALPROFILESET($,$,(#2930),$); -#2929=IFCRELASSOCIATESMATERIAL('0THq9kTdT6exBD55HMxu0s',$,$,$,(#2927),#2928); -#2930=IFCMATERIALPROFILE($,$,#17,#2918,$,$); -#2931=IFCUSHAPEPROFILEDEF(.AREA.,$,$,160.,70.,5.5,9.5,$,$,$); -#2932=IFCBEAMTYPE('0ZtyspBjvA1fBozLaXwwTo',$,'UPN160',$,$,$,$,$,$,$); -#2933=IFCMATERIALPROFILESET($,$,(#2935),$); -#2934=IFCRELASSOCIATESMATERIAL('2niv8s3kX8QwMesoRRKG9Q',$,$,$,(#2932),#2933); -#2935=IFCMATERIALPROFILE($,$,#17,#2931,$,$); -#2936=IFCMEMBERTYPE('19M6WCj1D2Kx2AJqrPYBB0',$,'UPN160',$,$,$,$,$,$,$); -#2937=IFCMATERIALPROFILESET($,$,(#2939),$); -#2938=IFCRELASSOCIATESMATERIAL('3_EuGralb5Euwbv7ccmA8d',$,$,$,(#2936),#2937); -#2939=IFCMATERIALPROFILE($,$,#17,#2931,$,$); -#2940=IFCCOLUMNTYPE('1OD0s$mtzA3ADOLMseo8vu',$,'UPN160',$,$,$,$,$,$,$); -#2941=IFCMATERIALPROFILESET($,$,(#2943),$); -#2942=IFCRELASSOCIATESMATERIAL('2eY8hygvL2$e2_AtQpFI7k',$,$,$,(#2940),#2941); -#2943=IFCMATERIALPROFILE($,$,#17,#2931,$,$); -#2944=IFCUSHAPEPROFILEDEF(.AREA.,$,$,180.,75.,5.5,10.5,$,$,$); -#2945=IFCBEAMTYPE('2Z9Eit22b739bU$Xn7eUTJ',$,'UPN180',$,$,$,$,$,$,$); -#2946=IFCMATERIALPROFILESET($,$,(#2948),$); -#2947=IFCRELASSOCIATESMATERIAL('3wHFaYYafF0PjbQXX7v6Wj',$,$,$,(#2945),#2946); -#2948=IFCMATERIALPROFILE($,$,#17,#2944,$,$); -#2949=IFCMEMBERTYPE('1BDFlXJ01EtPeRmAG4vyO8',$,'UPN180',$,$,$,$,$,$,$); -#2950=IFCMATERIALPROFILESET($,$,(#2952),$); -#2951=IFCRELASSOCIATESMATERIAL('1SCc2jL05FPQEnwe$G0hiD',$,$,$,(#2949),#2950); -#2952=IFCMATERIALPROFILE($,$,#17,#2944,$,$); -#2953=IFCCOLUMNTYPE('2RVlIigKbEvxH9GkKB7A56',$,'UPN180',$,$,$,$,$,$,$); -#2954=IFCMATERIALPROFILESET($,$,(#2956),$); -#2955=IFCRELASSOCIATESMATERIAL('1hQ1ldHsz6ovpMcl_67ghh',$,$,$,(#2953),#2954); -#2956=IFCMATERIALPROFILE($,$,#17,#2944,$,$); -#2957=IFCUSHAPEPROFILEDEF(.AREA.,$,$,200.,80.,6.,11.,$,$,$); -#2958=IFCBEAMTYPE('3OT_zKOtz3KuhHlxdAPepy',$,'UPN200',$,$,$,$,$,$,$); -#2959=IFCMATERIALPROFILESET($,$,(#2961),$); -#2960=IFCRELASSOCIATESMATERIAL('1JR6QOuKz7NOcRFemLnkM5',$,$,$,(#2958),#2959); -#2961=IFCMATERIALPROFILE($,$,#17,#2957,$,$); -#2962=IFCMEMBERTYPE('2xewbGpKP7_f1qIJ5_v18b',$,'UPN200',$,$,$,$,$,$,$); -#2963=IFCMATERIALPROFILESET($,$,(#2965),$); -#2964=IFCRELASSOCIATESMATERIAL('1yIHOQe6r6hO30CCAZ7cmA',$,$,$,(#2962),#2963); -#2965=IFCMATERIALPROFILE($,$,#17,#2957,$,$); -#2966=IFCCOLUMNTYPE('0nqjw9mfr8sRP80I_ONRw0',$,'UPN200',$,$,$,$,$,$,$); -#2967=IFCMATERIALPROFILESET($,$,(#2969),$); -#2968=IFCRELASSOCIATESMATERIAL('3RMR1BNBf5NxkrkpYRsFqJ',$,$,$,(#2966),#2967); -#2969=IFCMATERIALPROFILE($,$,#17,#2957,$,$); -#2970=IFCUSHAPEPROFILEDEF(.AREA.,$,$,220.,85.,6.5,12.,$,$,$); -#2971=IFCBEAMTYPE('2lXk7vULLAq9PFUkoADBcg',$,'UPN220',$,$,$,$,$,$,$); -#2972=IFCMATERIALPROFILESET($,$,(#2974),$); -#2973=IFCRELASSOCIATESMATERIAL('0rTsghNGXFKw9RnzOssCLg',$,$,$,(#2971),#2972); -#2974=IFCMATERIALPROFILE($,$,#17,#2970,$,$); -#2975=IFCMEMBERTYPE('1j02npXaP9RfFtIqXkGqtS',$,'UPN220',$,$,$,$,$,$,$); -#2976=IFCMATERIALPROFILESET($,$,(#2978),$); -#2977=IFCRELASSOCIATESMATERIAL('1AFcg7AF94phJdLzyy29jT',$,$,$,(#2975),#2976); -#2978=IFCMATERIALPROFILE($,$,#17,#2970,$,$); -#2979=IFCCOLUMNTYPE('30wIUlOy12E84nb3RnXOrJ',$,'UPN220',$,$,$,$,$,$,$); -#2980=IFCMATERIALPROFILESET($,$,(#2982),$); -#2981=IFCRELASSOCIATESMATERIAL('2hxvHhdff5_vWQyFjkSsb0',$,$,$,(#2979),#2980); -#2982=IFCMATERIALPROFILE($,$,#17,#2970,$,$); -#2983=IFCUSHAPEPROFILEDEF(.AREA.,$,$,240.,90.,7.,12.5,$,$,$); -#2984=IFCBEAMTYPE('2uTftdVSDAsxnkSLNYDspO',$,'UPN240',$,$,$,$,$,$,$); -#2985=IFCMATERIALPROFILESET($,$,(#2987),$); -#2986=IFCRELASSOCIATESMATERIAL('3Uib2fwP97$gfSB2NHJhtD',$,$,$,(#2984),#2985); -#2987=IFCMATERIALPROFILE($,$,#17,#2983,$,$); -#2988=IFCMEMBERTYPE('24HbL1f7z03AJMHVfPWjmC',$,'UPN240',$,$,$,$,$,$,$); -#2989=IFCMATERIALPROFILESET($,$,(#2991),$); -#2990=IFCRELASSOCIATESMATERIAL('2sJMxNvz1DAfA9luF_yRyv',$,$,$,(#2988),#2989); -#2991=IFCMATERIALPROFILE($,$,#17,#2983,$,$); -#2992=IFCCOLUMNTYPE('16VLlUw9b8aBJZGJbEehcQ',$,'UPN240',$,$,$,$,$,$,$); -#2993=IFCMATERIALPROFILESET($,$,(#2995),$); -#2994=IFCRELASSOCIATESMATERIAL('0ybvRaM7j7I8Xtcvq3f4eT',$,$,$,(#2992),#2993); -#2995=IFCMATERIALPROFILE($,$,#17,#2983,$,$); -#2996=IFCUSHAPEPROFILEDEF(.AREA.,$,$,270.,95.,7.5,13.5,$,$,$); -#2997=IFCBEAMTYPE('3UfJhrlozAkxXtoKbWnJag',$,'UPN270',$,$,$,$,$,$,$); -#2998=IFCMATERIALPROFILESET($,$,(#3000),$); -#2999=IFCRELASSOCIATESMATERIAL('3KT037olH3PRfOxsN$u3BU',$,$,$,(#2997),#2998); -#3000=IFCMATERIALPROFILE($,$,#17,#2996,$,$); -#3001=IFCMEMBERTYPE('0evD_UqYnD3RwaHP$PS3Yd',$,'UPN270',$,$,$,$,$,$,$); -#3002=IFCMATERIALPROFILESET($,$,(#3004),$); -#3003=IFCRELASSOCIATESMATERIAL('0vu_Q3Esf3Velh4j0hwYBw',$,$,$,(#3001),#3002); -#3004=IFCMATERIALPROFILE($,$,#17,#2996,$,$); -#3005=IFCCOLUMNTYPE('1gnF0J9ZfA0f_7MYzrIUkF',$,'UPN270',$,$,$,$,$,$,$); -#3006=IFCMATERIALPROFILESET($,$,(#3008),$); -#3007=IFCRELASSOCIATESMATERIAL('1kzUewApX6OeMQ8v$Y5gOF',$,$,$,(#3005),#3006); -#3008=IFCMATERIALPROFILE($,$,#17,#2996,$,$); -#3009=IFCUSHAPEPROFILEDEF(.AREA.,$,$,300.,100.,9.5,15.,$,$,$); -#3010=IFCBEAMTYPE('2NnoOqVcL1yuZJ8BUqIH5M',$,'UPN300',$,$,$,$,$,$,$); -#3011=IFCMATERIALPROFILESET($,$,(#3013),$); -#3012=IFCRELASSOCIATESMATERIAL('3CmmZ00BbFqe9vc9Jpbq$F',$,$,$,(#3010),#3011); -#3013=IFCMATERIALPROFILE($,$,#17,#3009,$,$); -#3014=IFCMEMBERTYPE('0egmn6DRXA0Ra2G1oLitVD',$,'UPN300',$,$,$,$,$,$,$); -#3015=IFCMATERIALPROFILESET($,$,(#3017),$); -#3016=IFCRELASSOCIATESMATERIAL('0Vlm70Rur8AAFCTBToSOCl',$,$,$,(#3014),#3015); -#3017=IFCMATERIALPROFILE($,$,#17,#3009,$,$); -#3018=IFCCOLUMNTYPE('1OFcCMqL1Bw9TptnInawW2',$,'UPN300',$,$,$,$,$,$,$); -#3019=IFCMATERIALPROFILESET($,$,(#3021),$); -#3020=IFCRELASSOCIATESMATERIAL('2z62CW9D90ZwwRztJBrUNg',$,$,$,(#3018),#3019); -#3021=IFCMATERIALPROFILE($,$,#17,#3009,$,$); -#3022=IFCUSHAPEPROFILEDEF(.AREA.,$,$,330.,105.,11.,16.,$,$,$); -#3023=IFCBEAMTYPE('1BoVnV2iH0TOCtTvA4hgM8',$,'UPN330',$,$,$,$,$,$,$); -#3024=IFCMATERIALPROFILESET($,$,(#3026),$); -#3025=IFCRELASSOCIATESMATERIAL('3uWqHPu71FXxeQncaUHQco',$,$,$,(#3023),#3024); -#3026=IFCMATERIALPROFILE($,$,#17,#3022,$,$); -#3027=IFCMEMBERTYPE('3O7JK0ayTAZ9yCJMwbEr6$',$,'UPN330',$,$,$,$,$,$,$); -#3028=IFCMATERIALPROFILESET($,$,(#3030),$); -#3029=IFCRELASSOCIATESMATERIAL('22wzlB$Jn9Hxk1eCtTUVDY',$,$,$,(#3027),#3028); -#3030=IFCMATERIALPROFILE($,$,#17,#3022,$,$); -#3031=IFCCOLUMNTYPE('2971Pc4UD4pgmUyKjET5Qa',$,'UPN330',$,$,$,$,$,$,$); -#3032=IFCMATERIALPROFILESET($,$,(#3034),$); -#3033=IFCRELASSOCIATESMATERIAL('3DrLw0tn92y9DcWYRhwI9C',$,$,$,(#3031),#3032); -#3034=IFCMATERIALPROFILE($,$,#17,#3022,$,$); -#3035=IFCUSHAPEPROFILEDEF(.AREA.,$,$,360.,110.,12.,17.,$,$,$); -#3036=IFCBEAMTYPE('0DbGI0F$z3Cg0MRYt_ilS0',$,'UPN360',$,$,$,$,$,$,$); -#3037=IFCMATERIALPROFILESET($,$,(#3039),$); -#3038=IFCRELASSOCIATESMATERIAL('13Ll9MTZD0bRbr1shetwAV',$,$,$,(#3036),#3037); -#3039=IFCMATERIALPROFILE($,$,#17,#3035,$,$); -#3040=IFCMEMBERTYPE('2fD$IWY$D35Az85h$9JZnt',$,'UPN360',$,$,$,$,$,$,$); -#3041=IFCMATERIALPROFILESET($,$,(#3043),$); -#3042=IFCRELASSOCIATESMATERIAL('3vc3VDTyf6MOwGzTv5gYHr',$,$,$,(#3040),#3041); -#3043=IFCMATERIALPROFILE($,$,#17,#3035,$,$); -#3044=IFCCOLUMNTYPE('2agI_fUJLDRRimqXPSDJLH',$,'UPN360',$,$,$,$,$,$,$); -#3045=IFCMATERIALPROFILESET($,$,(#3047),$); -#3046=IFCRELASSOCIATESMATERIAL('2$nxlJaV18MB0Oka0dR_UQ',$,$,$,(#3044),#3045); -#3047=IFCMATERIALPROFILE($,$,#17,#3035,$,$); -#3048=IFCUSHAPEPROFILEDEF(.AREA.,$,$,400.,115.,13.5,18.,$,$,$); -#3049=IFCBEAMTYPE('3Cn3UKuMnEpwdep6aeQF50',$,'UPN400',$,$,$,$,$,$,$); -#3050=IFCMATERIALPROFILESET($,$,(#3052),$); -#3051=IFCRELASSOCIATESMATERIAL('1_FhV$29j37RvEhNJSekds',$,$,$,(#3049),#3050); -#3052=IFCMATERIALPROFILE($,$,#17,#3048,$,$); -#3053=IFCMEMBERTYPE('2RGAeBm0X8UgeOr2JD4EnU',$,'UPN400',$,$,$,$,$,$,$); -#3054=IFCMATERIALPROFILESET($,$,(#3056),$); -#3055=IFCRELASSOCIATESMATERIAL('0TjAk2JnfE_hQWpwJqgq9K',$,$,$,(#3053),#3054); -#3056=IFCMATERIALPROFILE($,$,#17,#3048,$,$); -#3057=IFCCOLUMNTYPE('0Ir7cXIrLFOxH7uBKO5EUx',$,'UPN400',$,$,$,$,$,$,$); -#3058=IFCMATERIALPROFILESET($,$,(#3060),$); -#3059=IFCRELASSOCIATESMATERIAL('1OGfBA1r58egZqKdekheiK',$,$,$,(#3057),#3058); -#3060=IFCMATERIALPROFILE($,$,#17,#3048,$,$); -#3061=IFCLSHAPEPROFILEDEF(.AREA.,$,$,20.,$,3.,$,$,$); -#3062=IFCBEAMTYPE('2e1L_W4nD90Qxzx7qD86AP',$,'LNP20x3',$,$,$,$,$,$,$); -#3063=IFCMATERIALPROFILESET($,$,(#3065),$); -#3064=IFCRELASSOCIATESMATERIAL('2O92IMx9TAnRPwpfIbsCtP',$,$,$,(#3062),#3063); -#3065=IFCMATERIALPROFILE($,$,#17,#3061,$,$); -#3066=IFCMEMBERTYPE('1OTcEwc3nEyf3PXPq4i9Dq',$,'LNP20x3',$,$,$,$,$,$,$); -#3067=IFCMATERIALPROFILESET($,$,(#3069),$); -#3068=IFCRELASSOCIATESMATERIAL('21h9lKUsj36echCc7dg1aF',$,$,$,(#3066),#3067); -#3069=IFCMATERIALPROFILE($,$,#17,#3061,$,$); -#3070=IFCCOLUMNTYPE('1hgaQvuBL3rfCa8OxOiC7m',$,'LNP20x3',$,$,$,$,$,$,$); -#3071=IFCMATERIALPROFILESET($,$,(#3073),$); -#3072=IFCRELASSOCIATESMATERIAL('1u5hHgUBn6VwzTSJl87bk0',$,$,$,(#3070),#3071); -#3073=IFCMATERIALPROFILE($,$,#17,#3061,$,$); -#3074=IFCLSHAPEPROFILEDEF(.AREA.,$,$,25.,$,3.,$,$,$); -#3075=IFCBEAMTYPE('300jq_CKTARfWwd7blJ6xs',$,'LNP25x3',$,$,$,$,$,$,$); -#3076=IFCMATERIALPROFILESET($,$,(#3078),$); -#3077=IFCRELASSOCIATESMATERIAL('3Re04L1B9BTvp9QAc9N7XV',$,$,$,(#3075),#3076); -#3078=IFCMATERIALPROFILE($,$,#17,#3074,$,$); -#3079=IFCMEMBERTYPE('1vzN4vZs57hvwGYt35Lwj5',$,'LNP25x3',$,$,$,$,$,$,$); -#3080=IFCMATERIALPROFILESET($,$,(#3082),$); -#3081=IFCRELASSOCIATESMATERIAL('0PLR_NDbXF$eLPZkWq_qd3',$,$,$,(#3079),#3080); -#3082=IFCMATERIALPROFILE($,$,#17,#3074,$,$); -#3083=IFCCOLUMNTYPE('3k5byVOLv55RrXsgTW9LbQ',$,'LNP25x3',$,$,$,$,$,$,$); -#3084=IFCMATERIALPROFILESET($,$,(#3086),$); -#3085=IFCRELASSOCIATESMATERIAL('3le26Xjqr2FxfvuQvJL2XJ',$,$,$,(#3083),#3084); -#3086=IFCMATERIALPROFILE($,$,#17,#3074,$,$); -#3087=IFCLSHAPEPROFILEDEF(.AREA.,$,$,25.,$,4.,$,$,$); -#3088=IFCBEAMTYPE('1ZIxLGY$fAGgn38YJB9w9V',$,'LNP25x4',$,$,$,$,$,$,$); -#3089=IFCMATERIALPROFILESET($,$,(#3091),$); -#3090=IFCRELASSOCIATESMATERIAL('21EmoDafH1ov56zZ9eR6Nn',$,$,$,(#3088),#3089); -#3091=IFCMATERIALPROFILE($,$,#17,#3087,$,$); -#3092=IFCMEMBERTYPE('0eXNIr2m1AyucxmDgtuwJf',$,'LNP25x4',$,$,$,$,$,$,$); -#3093=IFCMATERIALPROFILESET($,$,(#3095),$); -#3094=IFCRELASSOCIATESMATERIAL('3PpIgssm17pf2oCFHX$$k8',$,$,$,(#3092),#3093); -#3095=IFCMATERIALPROFILE($,$,#17,#3087,$,$); -#3096=IFCCOLUMNTYPE('2YnfLCzcn5ighrjfQ2s9NR',$,'LNP25x4',$,$,$,$,$,$,$); -#3097=IFCMATERIALPROFILESET($,$,(#3099),$); -#3098=IFCRELASSOCIATESMATERIAL('3V4qnHMqD8uvjAjkd0guhM',$,$,$,(#3096),#3097); -#3099=IFCMATERIALPROFILE($,$,#17,#3087,$,$); -#3100=IFCLSHAPEPROFILEDEF(.AREA.,$,$,30.,$,3.,$,$,$); -#3101=IFCBEAMTYPE('1hUdZowMPA8gqVquqJxA98',$,'LNP30x3',$,$,$,$,$,$,$); -#3102=IFCMATERIALPROFILESET($,$,(#3104),$); -#3103=IFCRELASSOCIATESMATERIAL('0_UmLffL5CvO2lwxRgrO_m',$,$,$,(#3101),#3102); -#3104=IFCMATERIALPROFILE($,$,#17,#3100,$,$); -#3105=IFCMEMBERTYPE('00buyHFKD3XAK5JWXRy76f',$,'LNP30x3',$,$,$,$,$,$,$); -#3106=IFCMATERIALPROFILESET($,$,(#3108),$); -#3107=IFCRELASSOCIATESMATERIAL('3kKeFVz3TFWAvlSZrlhlpG',$,$,$,(#3105),#3106); -#3108=IFCMATERIALPROFILE($,$,#17,#3100,$,$); -#3109=IFCCOLUMNTYPE('2L6IwkJJz8B85g_mEDeFv_',$,'LNP30x3',$,$,$,$,$,$,$); -#3110=IFCMATERIALPROFILESET($,$,(#3112),$); -#3111=IFCRELASSOCIATESMATERIAL('2i7Kmyr_b22v_hTI18nCz8',$,$,$,(#3109),#3110); -#3112=IFCMATERIALPROFILE($,$,#17,#3100,$,$); -#3113=IFCLSHAPEPROFILEDEF(.AREA.,$,$,30.,$,4.,$,$,$); -#3114=IFCBEAMTYPE('3sRLQcW1n9tOY7n3B5EC0A',$,'LNP30x4',$,$,$,$,$,$,$); -#3115=IFCMATERIALPROFILESET($,$,(#3117),$); -#3116=IFCRELASSOCIATESMATERIAL('2qj77BYaj67v13z2gsFcpB',$,$,$,(#3114),#3115); -#3117=IFCMATERIALPROFILE($,$,#17,#3113,$,$); -#3118=IFCMEMBERTYPE('03$DA_4Y5AVvVi6bvShpqY',$,'LNP30x4',$,$,$,$,$,$,$); -#3119=IFCMATERIALPROFILESET($,$,(#3121),$); -#3120=IFCRELASSOCIATESMATERIAL('3rbrFCg4jB7wspqBrcOXTd',$,$,$,(#3118),#3119); -#3121=IFCMATERIALPROFILE($,$,#17,#3113,$,$); -#3122=IFCCOLUMNTYPE('00UzgqUWz9Tge27itjpm_N',$,'LNP30x4',$,$,$,$,$,$,$); -#3123=IFCMATERIALPROFILESET($,$,(#3125),$); -#3124=IFCRELASSOCIATESMATERIAL('2BsMbN4Mn0JAGVOWyyKEaO',$,$,$,(#3122),#3123); -#3125=IFCMATERIALPROFILE($,$,#17,#3113,$,$); -#3126=IFCLSHAPEPROFILEDEF(.AREA.,$,$,40.,$,4.,$,$,$); -#3127=IFCBEAMTYPE('1dKngrb5T5rfvSgcC5od17',$,'LNP40x4',$,$,$,$,$,$,$); -#3128=IFCMATERIALPROFILESET($,$,(#3130),$); -#3129=IFCRELASSOCIATESMATERIAL('3_j34e4lDFcwBhLU1xr4H_',$,$,$,(#3127),#3128); -#3130=IFCMATERIALPROFILE($,$,#17,#3126,$,$); -#3131=IFCMEMBERTYPE('3f8sFAcEr9XevOk$QfcZg4',$,'LNP40x4',$,$,$,$,$,$,$); -#3132=IFCMATERIALPROFILESET($,$,(#3134),$); -#3133=IFCRELASSOCIATESMATERIAL('2YXANMojLEghaquw$ikXJf',$,$,$,(#3131),#3132); -#3134=IFCMATERIALPROFILE($,$,#17,#3126,$,$); -#3135=IFCCOLUMNTYPE('0PCUXdu7X6COPNyWDquBlh',$,'LNP40x4',$,$,$,$,$,$,$); -#3136=IFCMATERIALPROFILESET($,$,(#3138),$); -#3137=IFCRELASSOCIATESMATERIAL('0JSXLKU8b9fPq1D3fIZgRx',$,$,$,(#3135),#3136); -#3138=IFCMATERIALPROFILE($,$,#17,#3126,$,$); -#3139=IFCLSHAPEPROFILEDEF(.AREA.,$,$,40.,$,5.,$,$,$); -#3140=IFCBEAMTYPE('1xjFS7Jev5dQUA5abnyuzW',$,'LNP40x5',$,$,$,$,$,$,$); -#3141=IFCMATERIALPROFILESET($,$,(#3143),$); -#3142=IFCRELASSOCIATESMATERIAL('0x5KEN8RD5awHoH3RPFn5I',$,$,$,(#3140),#3141); -#3143=IFCMATERIALPROFILE($,$,#17,#3139,$,$); -#3144=IFCMEMBERTYPE('1w3RerYnT4_BPHMUHuDBee',$,'LNP40x5',$,$,$,$,$,$,$); -#3145=IFCMATERIALPROFILESET($,$,(#3147),$); -#3146=IFCRELASSOCIATESMATERIAL('0uJQuo8UL57Awy3R$Wtc$K',$,$,$,(#3144),#3145); -#3147=IFCMATERIALPROFILE($,$,#17,#3139,$,$); -#3148=IFCCOLUMNTYPE('3h2m31FbL79ADRhu3Edkqi',$,'LNP40x5',$,$,$,$,$,$,$); -#3149=IFCMATERIALPROFILESET($,$,(#3151),$); -#3150=IFCRELASSOCIATESMATERIAL('3qBRe8j6j1hQ7RK0lbEOaQ',$,$,$,(#3148),#3149); -#3151=IFCMATERIALPROFILE($,$,#17,#3139,$,$); -#3152=IFCLSHAPEPROFILEDEF(.AREA.,$,$,45.,$,4.5,$,$,$); -#3153=IFCBEAMTYPE('2ByUazhrv3TBqFeVlaZsPi',$,'LNP45x4.5',$,$,$,$,$,$,$); -#3154=IFCMATERIALPROFILESET($,$,(#3156),$); -#3155=IFCRELASSOCIATESMATERIAL('1nQEWlpCT9ch_SjEKu9qUh',$,$,$,(#3153),#3154); -#3156=IFCMATERIALPROFILE($,$,#17,#3152,$,$); -#3157=IFCMEMBERTYPE('3D74chyND3NBv7zNkRz06H',$,'LNP45x4.5',$,$,$,$,$,$,$); -#3158=IFCMATERIALPROFILESET($,$,(#3160),$); -#3159=IFCRELASSOCIATESMATERIAL('2gnrPDW7b9egcQg2tdxJcv',$,$,$,(#3157),#3158); -#3160=IFCMATERIALPROFILE($,$,#17,#3152,$,$); -#3161=IFCCOLUMNTYPE('0B6BV3Mk92cQaab22ouVDm',$,'LNP45x4.5',$,$,$,$,$,$,$); -#3162=IFCMATERIALPROFILESET($,$,(#3164),$); -#3163=IFCRELASSOCIATESMATERIAL('2KQMCgSFDDuehUdsr5HIhb',$,$,$,(#3161),#3162); -#3164=IFCMATERIALPROFILE($,$,#17,#3152,$,$); -#3165=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,$,5.,$,$,$); -#3166=IFCBEAMTYPE('38Tqxpijj3TBmJ$tTTu1BB',$,'LNP50x5',$,$,$,$,$,$,$); -#3167=IFCMATERIALPROFILESET($,$,(#3169),$); -#3168=IFCRELASSOCIATESMATERIAL('1CvYZviO9DAQyrhepPfmMb',$,$,$,(#3166),#3167); -#3169=IFCMATERIALPROFILE($,$,#17,#3165,$,$); -#3170=IFCMEMBERTYPE('1NoE$iQ7H0yPMS87eCAQUv',$,'LNP50x5',$,$,$,$,$,$,$); -#3171=IFCMATERIALPROFILESET($,$,(#3173),$); -#3172=IFCRELASSOCIATESMATERIAL('0CPikRMMr3KOwSgFUgub2f',$,$,$,(#3170),#3171); -#3173=IFCMATERIALPROFILE($,$,#17,#3165,$,$); -#3174=IFCCOLUMNTYPE('0Oi0R36Fb3SQCIFNN_BliI',$,'LNP50x5',$,$,$,$,$,$,$); -#3175=IFCMATERIALPROFILESET($,$,(#3177),$); -#3176=IFCRELASSOCIATESMATERIAL('1Dap5SiEL60O6zY35Hbion',$,$,$,(#3174),#3175); -#3177=IFCMATERIALPROFILE($,$,#17,#3165,$,$); -#3178=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,$,6.,$,$,$); -#3179=IFCBEAMTYPE('35Jpa5DkPF2vxdkHaUOhFW',$,'LNP50x6',$,$,$,$,$,$,$); -#3180=IFCMATERIALPROFILESET($,$,(#3182),$); -#3181=IFCRELASSOCIATESMATERIAL('0SfY2yIEbDte2HhPfYvpVX',$,$,$,(#3179),#3180); -#3182=IFCMATERIALPROFILE($,$,#17,#3178,$,$); -#3183=IFCMEMBERTYPE('05fnOBtU19YQtp_agGYRYA',$,'LNP50x6',$,$,$,$,$,$,$); -#3184=IFCMATERIALPROFILESET($,$,(#3186),$); -#3185=IFCRELASSOCIATESMATERIAL('0iwZlTn1DDQBanKSxPupOl',$,$,$,(#3183),#3184); -#3186=IFCMATERIALPROFILE($,$,#17,#3178,$,$); -#3187=IFCCOLUMNTYPE('2QEw7RRiH6FObf1k3B8k$W',$,'LNP50x6',$,$,$,$,$,$,$); -#3188=IFCMATERIALPROFILESET($,$,(#3190),$); -#3189=IFCRELASSOCIATESMATERIAL('2H4ly3smvBUAjKpDgJPgUD',$,$,$,(#3187),#3188); -#3190=IFCMATERIALPROFILE($,$,#17,#3178,$,$); -#3191=IFCLSHAPEPROFILEDEF(.AREA.,$,$,60.,$,5.,$,$,$); -#3192=IFCBEAMTYPE('2uUxOKc5DAOhVDnbn$K78a',$,'LNP60x5',$,$,$,$,$,$,$); -#3193=IFCMATERIALPROFILESET($,$,(#3195),$); -#3194=IFCRELASSOCIATESMATERIAL('3RtXyUFbf44AKt0sI7$WHs',$,$,$,(#3192),#3193); -#3195=IFCMATERIALPROFILE($,$,#17,#3191,$,$); -#3196=IFCMEMBERTYPE('02jNx7Jqz2tuMH5nbSmRk8',$,'LNP60x5',$,$,$,$,$,$,$); -#3197=IFCMATERIALPROFILESET($,$,(#3199),$); -#3198=IFCRELASSOCIATESMATERIAL('2GyehiEkzCy88Id2G0XmAp',$,$,$,(#3196),#3197); -#3199=IFCMATERIALPROFILE($,$,#17,#3191,$,$); -#3200=IFCCOLUMNTYPE('2yqbTC675Bf9U9Fw5ReRlz',$,'LNP60x5',$,$,$,$,$,$,$); -#3201=IFCMATERIALPROFILESET($,$,(#3203),$); -#3202=IFCRELASSOCIATESMATERIAL('1$UslA6rH5OAwphltQTT0l',$,$,$,(#3200),#3201); -#3203=IFCMATERIALPROFILE($,$,#17,#3191,$,$); -#3204=IFCLSHAPEPROFILEDEF(.AREA.,$,$,60.,$,6.,$,$,$); -#3205=IFCBEAMTYPE('3qzNT2$CfBXgGTUSkPf0sI',$,'LNP60x6',$,$,$,$,$,$,$); -#3206=IFCMATERIALPROFILESET($,$,(#3208),$); -#3207=IFCRELASSOCIATESMATERIAL('0opuCuAu59SgUqrvbDoyuk',$,$,$,(#3205),#3206); -#3208=IFCMATERIALPROFILE($,$,#17,#3204,$,$); -#3209=IFCMEMBERTYPE('2yqG3SJpXAAgej1og9FLtp',$,'LNP60x6',$,$,$,$,$,$,$); -#3210=IFCMATERIALPROFILESET($,$,(#3212),$); -#3211=IFCRELASSOCIATESMATERIAL('2Nd8U4nBb25wGcyIb5zfVR',$,$,$,(#3209),#3210); -#3212=IFCMATERIALPROFILE($,$,#17,#3204,$,$); -#3213=IFCCOLUMNTYPE('1oUN2aUYH3JR6OmS5xwirm',$,'LNP60x6',$,$,$,$,$,$,$); -#3214=IFCMATERIALPROFILESET($,$,(#3216),$); -#3215=IFCRELASSOCIATESMATERIAL('0JnXykPznCpeXgxlsCKNn8',$,$,$,(#3213),#3214); -#3216=IFCMATERIALPROFILE($,$,#17,#3204,$,$); -#3217=IFCLSHAPEPROFILEDEF(.AREA.,$,$,60.,$,8.,$,$,$); -#3218=IFCBEAMTYPE('0JhGkIQIv32eLSKOPaEMlx',$,'LNP60x8',$,$,$,$,$,$,$); -#3219=IFCMATERIALPROFILESET($,$,(#3221),$); -#3220=IFCRELASSOCIATESMATERIAL('3zMXQ_5LbBngnog4VxMHyG',$,$,$,(#3218),#3219); -#3221=IFCMATERIALPROFILE($,$,#17,#3217,$,$); -#3222=IFCMEMBERTYPE('1AsQF_Rh9B1PnubVVfbht1',$,'LNP60x8',$,$,$,$,$,$,$); -#3223=IFCMATERIALPROFILESET($,$,(#3225),$); -#3224=IFCRELASSOCIATESMATERIAL('1XiiXt5Dv4JPmYoGX4Fgri',$,$,$,(#3222),#3223); -#3225=IFCMATERIALPROFILE($,$,#17,#3217,$,$); -#3226=IFCCOLUMNTYPE('24_l43nYvF8uc6K4q5TpnN',$,'LNP60x8',$,$,$,$,$,$,$); -#3227=IFCMATERIALPROFILESET($,$,(#3229),$); -#3228=IFCRELASSOCIATESMATERIAL('3rrFlHsB11yvjkLHFpiNO2',$,$,$,(#3226),#3227); -#3229=IFCMATERIALPROFILE($,$,#17,#3217,$,$); -#3230=IFCLSHAPEPROFILEDEF(.AREA.,$,$,65.,$,7.,$,$,$); -#3231=IFCBEAMTYPE('2bkaLJ5qP6EgVH6LsdsXgR',$,'LNP65x7',$,$,$,$,$,$,$); -#3232=IFCMATERIALPROFILESET($,$,(#3234),$); -#3233=IFCRELASSOCIATESMATERIAL('02ox2VR5H5IBaJjp$OF90e',$,$,$,(#3231),#3232); -#3234=IFCMATERIALPROFILE($,$,#17,#3230,$,$); -#3235=IFCMEMBERTYPE('1KmZ4qYWr7AxERsRL$T6_M',$,'LNP65x7',$,$,$,$,$,$,$); -#3236=IFCMATERIALPROFILESET($,$,(#3238),$); -#3237=IFCRELASSOCIATESMATERIAL('1H4q3K$XH7DPEhnjDhqA5_',$,$,$,(#3235),#3236); -#3238=IFCMATERIALPROFILE($,$,#17,#3230,$,$); -#3239=IFCCOLUMNTYPE('0I6Ao9gQn7qhvgtgwLIAQe',$,'LNP65x7',$,$,$,$,$,$,$); -#3240=IFCMATERIALPROFILESET($,$,(#3242),$); -#3241=IFCRELASSOCIATESMATERIAL('0pRdume2z28QYske3q34iZ',$,$,$,(#3239),#3240); -#3242=IFCMATERIALPROFILE($,$,#17,#3230,$,$); -#3243=IFCLSHAPEPROFILEDEF(.AREA.,$,$,70.,$,6.,$,$,$); -#3244=IFCBEAMTYPE('3V2tfBMBz0jecCjt4BYk_S',$,'LNP70x6',$,$,$,$,$,$,$); -#3245=IFCMATERIALPROFILESET($,$,(#3247),$); -#3246=IFCRELASSOCIATESMATERIAL('0ZOv6Tp7rACvQeqD__q67c',$,$,$,(#3244),#3245); -#3247=IFCMATERIALPROFILE($,$,#17,#3243,$,$); -#3248=IFCMEMBERTYPE('3WX_NSrlr2DAmxBeFjGpWG',$,'LNP70x6',$,$,$,$,$,$,$); -#3249=IFCMATERIALPROFILESET($,$,(#3251),$); -#3250=IFCRELASSOCIATESMATERIAL('3syVEGD5nCHft5y8mHkckR',$,$,$,(#3248),#3249); -#3251=IFCMATERIALPROFILE($,$,#17,#3243,$,$); -#3252=IFCCOLUMNTYPE('1PESC7gGXFjAb2SLgJKZHH',$,'LNP70x6',$,$,$,$,$,$,$); -#3253=IFCMATERIALPROFILESET($,$,(#3255),$); -#3254=IFCRELASSOCIATESMATERIAL('0NK0NoQO17cOzKe4Trdw7X',$,$,$,(#3252),#3253); -#3255=IFCMATERIALPROFILE($,$,#17,#3243,$,$); -#3256=IFCLSHAPEPROFILEDEF(.AREA.,$,$,70.,$,7.,$,$,$); -#3257=IFCBEAMTYPE('2xrU$AUHr53AESTe9X7tAK',$,'LNP70x7',$,$,$,$,$,$,$); -#3258=IFCMATERIALPROFILESET($,$,(#3260),$); -#3259=IFCRELASSOCIATESMATERIAL('2hCMnJ9ibEF89NdlR2bYq3',$,$,$,(#3257),#3258); -#3260=IFCMATERIALPROFILE($,$,#17,#3256,$,$); -#3261=IFCMEMBERTYPE('1H8k5pNB18JRRGswweqyeu',$,'LNP70x7',$,$,$,$,$,$,$); -#3262=IFCMATERIALPROFILESET($,$,(#3264),$); -#3263=IFCRELASSOCIATESMATERIAL('0LjGdvQf93Hfapg0QhKiaJ',$,$,$,(#3261),#3262); -#3264=IFCMATERIALPROFILE($,$,#17,#3256,$,$); -#3265=IFCCOLUMNTYPE('3YxuPqUEjD29zFWqrhD9_A',$,'LNP70x7',$,$,$,$,$,$,$); -#3266=IFCMATERIALPROFILESET($,$,(#3268),$); -#3267=IFCRELASSOCIATESMATERIAL('048Ff8dXf87uSGMcJgyCfj',$,$,$,(#3265),#3266); -#3268=IFCMATERIALPROFILE($,$,#17,#3256,$,$); -#3269=IFCLSHAPEPROFILEDEF(.AREA.,$,$,75.,$,8.,$,$,$); -#3270=IFCBEAMTYPE('3J$XsIAljAIBAG4e6csXWr',$,'LNP75x8',$,$,$,$,$,$,$); -#3271=IFCMATERIALPROFILESET($,$,(#3273),$); -#3272=IFCRELASSOCIATESMATERIAL('3MBkMjK9j3c8GIc1VSHtq_',$,$,$,(#3270),#3271); -#3273=IFCMATERIALPROFILE($,$,#17,#3269,$,$); -#3274=IFCMEMBERTYPE('3zA4QNLDv6t9NlGUbsmXE3',$,'LNP75x8',$,$,$,$,$,$,$); -#3275=IFCMATERIALPROFILESET($,$,(#3277),$); -#3276=IFCRELASSOCIATESMATERIAL('2yMw_7cjb0lQy7HkZjDVt8',$,$,$,(#3274),#3275); -#3277=IFCMATERIALPROFILE($,$,#17,#3269,$,$); -#3278=IFCCOLUMNTYPE('3yWwlb1Lv1vfnzzg_ezULV',$,'LNP75x8',$,$,$,$,$,$,$); -#3279=IFCMATERIALPROFILESET($,$,(#3281),$); -#3280=IFCRELASSOCIATESMATERIAL('1r$ilEkkPDUQbtuvJLIdIR',$,$,$,(#3278),#3279); -#3281=IFCMATERIALPROFILE($,$,#17,#3269,$,$); -#3282=IFCLSHAPEPROFILEDEF(.AREA.,$,$,80.,$,8.,$,$,$); -#3283=IFCBEAMTYPE('3d_Y211vX2DO4UZc8DG0xF',$,'LNP80x8',$,$,$,$,$,$,$); -#3284=IFCMATERIALPROFILESET($,$,(#3286),$); -#3285=IFCRELASSOCIATESMATERIAL('13aP5SsDjByRRysM1RuqVk',$,$,$,(#3283),#3284); -#3286=IFCMATERIALPROFILE($,$,#17,#3282,$,$); -#3287=IFCMEMBERTYPE('0h1fKVmAbB$eh4_OZBOLaz',$,'LNP80x8',$,$,$,$,$,$,$); -#3288=IFCMATERIALPROFILESET($,$,(#3290),$); -#3289=IFCRELASSOCIATESMATERIAL('2paVvXYlrBOf7y8N8JLFmS',$,$,$,(#3287),#3288); -#3290=IFCMATERIALPROFILE($,$,#17,#3282,$,$); -#3291=IFCCOLUMNTYPE('2YuNq1Hyv7cgFDQfZbALKN',$,'LNP80x8',$,$,$,$,$,$,$); -#3292=IFCMATERIALPROFILESET($,$,(#3294),$); -#3293=IFCRELASSOCIATESMATERIAL('0rRaxjc5bEcg31n0udFUJh',$,$,$,(#3291),#3292); -#3294=IFCMATERIALPROFILE($,$,#17,#3282,$,$); -#3295=IFCLSHAPEPROFILEDEF(.AREA.,$,$,80.,$,10.,$,$,$); -#3296=IFCBEAMTYPE('22w3HSh7nCpBNZgVLzvNmX',$,'LNP80x10',$,$,$,$,$,$,$); -#3297=IFCMATERIALPROFILESET($,$,(#3299),$); -#3298=IFCRELASSOCIATESMATERIAL('20dwLJp2j8V940eOj7K3Di',$,$,$,(#3296),#3297); -#3299=IFCMATERIALPROFILE($,$,#17,#3295,$,$); -#3300=IFCMEMBERTYPE('35lyZCz_v0Pw11p455I3mG',$,'LNP80x10',$,$,$,$,$,$,$); -#3301=IFCMATERIALPROFILESET($,$,(#3303),$); -#3302=IFCRELASSOCIATESMATERIAL('2IKu0RaEH3OBAb$IxJPUwv',$,$,$,(#3300),#3301); -#3303=IFCMATERIALPROFILE($,$,#17,#3295,$,$); -#3304=IFCCOLUMNTYPE('0ezNkwJt95DfM3uaG43ZEr',$,'LNP80x10',$,$,$,$,$,$,$); -#3305=IFCMATERIALPROFILESET($,$,(#3307),$); -#3306=IFCRELASSOCIATESMATERIAL('36IC8eLMv4efe729_mDmEC',$,$,$,(#3304),#3305); -#3307=IFCMATERIALPROFILE($,$,#17,#3295,$,$); -#3308=IFCLSHAPEPROFILEDEF(.AREA.,$,$,90.,$,7.,$,$,$); -#3309=IFCBEAMTYPE('1wNHy6tR50594VZiAQoWiQ',$,'LNP90x7',$,$,$,$,$,$,$); -#3310=IFCMATERIALPROFILESET($,$,(#3312),$); -#3311=IFCRELASSOCIATESMATERIAL('1wqyArO4b3dBACl$nQmeA$',$,$,$,(#3309),#3310); -#3312=IFCMATERIALPROFILE($,$,#17,#3308,$,$); -#3313=IFCMEMBERTYPE('3BP237b1L7NBUamvyD8Wfi',$,'LNP90x7',$,$,$,$,$,$,$); -#3314=IFCMATERIALPROFILESET($,$,(#3316),$); -#3315=IFCRELASSOCIATESMATERIAL('1DPnmiBlP78gehe4U2oYQ8',$,$,$,(#3313),#3314); -#3316=IFCMATERIALPROFILE($,$,#17,#3308,$,$); -#3317=IFCCOLUMNTYPE('2O59pIglr9qgXAz_IKR1$v',$,'LNP90x7',$,$,$,$,$,$,$); -#3318=IFCMATERIALPROFILESET($,$,(#3320),$); -#3319=IFCRELASSOCIATESMATERIAL('0q2UFDrdX5xBcp_giGq1cC',$,$,$,(#3317),#3318); -#3320=IFCMATERIALPROFILE($,$,#17,#3308,$,$); -#3321=IFCLSHAPEPROFILEDEF(.AREA.,$,$,90.,$,8.,$,$,$); -#3322=IFCBEAMTYPE('3b44iUD_fBoR1v8$g22fP_',$,'LNP90x8',$,$,$,$,$,$,$); -#3323=IFCMATERIALPROFILESET($,$,(#3325),$); -#3324=IFCRELASSOCIATESMATERIAL('2sLF5hdsr5iPVZotN5a7LG',$,$,$,(#3322),#3323); -#3325=IFCMATERIALPROFILE($,$,#17,#3321,$,$); -#3326=IFCMEMBERTYPE('2P3n5EY0H6UviKtJ$cK86c',$,'LNP90x8',$,$,$,$,$,$,$); -#3327=IFCMATERIALPROFILESET($,$,(#3329),$); -#3328=IFCRELASSOCIATESMATERIAL('3XBTKalebA5htTnbby2xVy',$,$,$,(#3326),#3327); -#3329=IFCMATERIALPROFILE($,$,#17,#3321,$,$); -#3330=IFCCOLUMNTYPE('3jItd_ZtL8e9CfUnAmVvpG',$,'LNP90x8',$,$,$,$,$,$,$); -#3331=IFCMATERIALPROFILESET($,$,(#3333),$); -#3332=IFCRELASSOCIATESMATERIAL('0scBSnrwL5YhOC4dbiEIhO',$,$,$,(#3330),#3331); -#3333=IFCMATERIALPROFILE($,$,#17,#3321,$,$); -#3334=IFCLSHAPEPROFILEDEF(.AREA.,$,$,90.,$,9.,$,$,$); -#3335=IFCBEAMTYPE('3OWBcugHDDxeD_NqBv_$Mq',$,'LNP90x9',$,$,$,$,$,$,$); -#3336=IFCMATERIALPROFILESET($,$,(#3338),$); -#3337=IFCRELASSOCIATESMATERIAL('0_1SeM$Ej6IwWS79mFM6MV',$,$,$,(#3335),#3336); -#3338=IFCMATERIALPROFILE($,$,#17,#3334,$,$); -#3339=IFCMEMBERTYPE('1st14D_CP3b9Z__5bwaznn',$,'LNP90x9',$,$,$,$,$,$,$); -#3340=IFCMATERIALPROFILESET($,$,(#3342),$); -#3341=IFCRELASSOCIATESMATERIAL('3Gvue7Kbn9nRKKm3eSS$4z',$,$,$,(#3339),#3340); -#3342=IFCMATERIALPROFILE($,$,#17,#3334,$,$); -#3343=IFCCOLUMNTYPE('2MyA6nWs1DPO8sqqkjNjNi',$,'LNP90x9',$,$,$,$,$,$,$); -#3344=IFCMATERIALPROFILESET($,$,(#3346),$); -#3345=IFCRELASSOCIATESMATERIAL('1RSRYfBG5FVBfuglY8Pjqx',$,$,$,(#3343),#3344); -#3346=IFCMATERIALPROFILE($,$,#17,#3334,$,$); -#3347=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,$,10.,$,$,$); -#3348=IFCBEAMTYPE('2ch48iWNP34v2KthEkPhnO',$,'LNP100x10',$,$,$,$,$,$,$); -#3349=IFCMATERIALPROFILESET($,$,(#3351),$); -#3350=IFCRELASSOCIATESMATERIAL('0n6Yrrm$PCs8cgV211n6dh',$,$,$,(#3348),#3349); -#3351=IFCMATERIALPROFILE($,$,#17,#3347,$,$); -#3352=IFCMEMBERTYPE('3olyqTaxXFjucrwcL6uNUR',$,'LNP100x10',$,$,$,$,$,$,$); -#3353=IFCMATERIALPROFILESET($,$,(#3355),$); -#3354=IFCRELASSOCIATESMATERIAL('1TfkoeykvClxVG2k43YQbl',$,$,$,(#3352),#3353); -#3355=IFCMATERIALPROFILE($,$,#17,#3347,$,$); -#3356=IFCCOLUMNTYPE('1cCNkrpA92VfzgqQpgkqrb',$,'LNP100x10',$,$,$,$,$,$,$); -#3357=IFCMATERIALPROFILESET($,$,(#3359),$); -#3358=IFCRELASSOCIATESMATERIAL('3PNWN4Li11NvFvsGFzGUz1',$,$,$,(#3356),#3357); -#3359=IFCMATERIALPROFILE($,$,#17,#3347,$,$); -#3360=IFCLSHAPEPROFILEDEF(.AREA.,$,$,100.,$,12.,$,$,$); -#3361=IFCBEAMTYPE('1WIpoRrs15ewzM4Cm0VKM0',$,'LNP100x12',$,$,$,$,$,$,$); -#3362=IFCMATERIALPROFILESET($,$,(#3364),$); -#3363=IFCRELASSOCIATESMATERIAL('3nn3kamsf6QBBVbY3mAxnJ',$,$,$,(#3361),#3362); -#3364=IFCMATERIALPROFILE($,$,#17,#3360,$,$); -#3365=IFCMEMBERTYPE('3H94pnKuPB3B4WIabhLa5y',$,'LNP100x12',$,$,$,$,$,$,$); -#3366=IFCMATERIALPROFILESET($,$,(#3368),$); -#3367=IFCRELASSOCIATESMATERIAL('3kyoTOQ096M9eteqIU76QN',$,$,$,(#3365),#3366); -#3368=IFCMATERIALPROFILE($,$,#17,#3360,$,$); -#3369=IFCCOLUMNTYPE('34FZn63pTBdAe2rogd2jPB',$,'LNP100x12',$,$,$,$,$,$,$); -#3370=IFCMATERIALPROFILESET($,$,(#3372),$); -#3371=IFCRELASSOCIATESMATERIAL('2roTmGuKf6KPEyDlBxl_rh',$,$,$,(#3369),#3370); -#3372=IFCMATERIALPROFILE($,$,#17,#3360,$,$); -#3373=IFCLSHAPEPROFILEDEF(.AREA.,$,$,120.,$,10.,$,$,$); -#3374=IFCBEAMTYPE('1Oe7Pfj0z9DwKM37BtYIQo',$,'LNP120x10',$,$,$,$,$,$,$); -#3375=IFCMATERIALPROFILESET($,$,(#3377),$); -#3376=IFCRELASSOCIATESMATERIAL('2tGkC4M$n9_fId8us_J3Fy',$,$,$,(#3374),#3375); -#3377=IFCMATERIALPROFILE($,$,#17,#3373,$,$); -#3378=IFCMEMBERTYPE('1Sd3jy5EXC_eQNyMXi1U__',$,'LNP120x10',$,$,$,$,$,$,$); -#3379=IFCMATERIALPROFILESET($,$,(#3381),$); -#3380=IFCRELASSOCIATESMATERIAL('3GQJceEfj4Lx50SsPOuXco',$,$,$,(#3378),#3379); -#3381=IFCMATERIALPROFILE($,$,#17,#3373,$,$); -#3382=IFCCOLUMNTYPE('3YE6EOrLb2ufasUWKuBXK9',$,'LNP120x10',$,$,$,$,$,$,$); -#3383=IFCMATERIALPROFILESET($,$,(#3385),$); -#3384=IFCRELASSOCIATESMATERIAL('3HbYeWinzBk8l2uDCztDqf',$,$,$,(#3382),#3383); -#3385=IFCMATERIALPROFILE($,$,#17,#3373,$,$); -#3386=IFCLSHAPEPROFILEDEF(.AREA.,$,$,120.,$,12.,$,$,$); -#3387=IFCBEAMTYPE('1j73Q2fd59$88KjvYEb7PV',$,'LNP120x12',$,$,$,$,$,$,$); -#3388=IFCMATERIALPROFILESET($,$,(#3390),$); -#3389=IFCRELASSOCIATESMATERIAL('3v2G2lghrEDfmQAi0wT7Ee',$,$,$,(#3387),#3388); -#3390=IFCMATERIALPROFILE($,$,#17,#3386,$,$); -#3391=IFCMEMBERTYPE('2jYgM32sf1Bh12Cu9dKJN0',$,'LNP120x12',$,$,$,$,$,$,$); -#3392=IFCMATERIALPROFILESET($,$,(#3394),$); -#3393=IFCRELASSOCIATESMATERIAL('27ve3Gpkz8euHzh83b262_',$,$,$,(#3391),#3392); -#3394=IFCMATERIALPROFILE($,$,#17,#3386,$,$); -#3395=IFCCOLUMNTYPE('3UKQ$xxpf7MfyQgLfKwrDw',$,'LNP120x12',$,$,$,$,$,$,$); -#3396=IFCMATERIALPROFILESET($,$,(#3398),$); -#3397=IFCRELASSOCIATESMATERIAL('1c2LRPKOn3tuzIC_FpKMyI',$,$,$,(#3395),#3396); -#3398=IFCMATERIALPROFILE($,$,#17,#3386,$,$); -#3399=IFCLSHAPEPROFILEDEF(.AREA.,$,$,130.,$,12.,$,$,$); -#3400=IFCBEAMTYPE('1bh61YpmLBkenDddFM9EE1',$,'LNP130x12',$,$,$,$,$,$,$); -#3401=IFCMATERIALPROFILESET($,$,(#3403),$); -#3402=IFCRELASSOCIATESMATERIAL('0RLPseyoL6d9jPoFeqVOQl',$,$,$,(#3400),#3401); -#3403=IFCMATERIALPROFILE($,$,#17,#3399,$,$); -#3404=IFCMEMBERTYPE('3ztx7pngH6chJhET3XR$Bw',$,'LNP130x12',$,$,$,$,$,$,$); -#3405=IFCMATERIALPROFILESET($,$,(#3407),$); -#3406=IFCRELASSOCIATESMATERIAL('25_OYZ2wDBwBL8JAE6hE_1',$,$,$,(#3404),#3405); -#3407=IFCMATERIALPROFILE($,$,#17,#3399,$,$); -#3408=IFCCOLUMNTYPE('00iqpRat5419YJiAD9AR6n',$,'LNP130x12',$,$,$,$,$,$,$); -#3409=IFCMATERIALPROFILESET($,$,(#3411),$); -#3410=IFCRELASSOCIATESMATERIAL('0em1812A55991BsEzYoMJY',$,$,$,(#3408),#3409); -#3411=IFCMATERIALPROFILE($,$,#17,#3399,$,$); -#3412=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,10.,$,$,$); -#3413=IFCBEAMTYPE('21iqPEBNX72vvu7OqL8rN8',$,'LNP150x10',$,$,$,$,$,$,$); -#3414=IFCMATERIALPROFILESET($,$,(#3416),$); -#3415=IFCRELASSOCIATESMATERIAL('0HldY8W0LE2wGkj_PYV3tU',$,$,$,(#3413),#3414); -#3416=IFCMATERIALPROFILE($,$,#17,#3412,$,$); -#3417=IFCMEMBERTYPE('2LIohUEav7fumt0q8pCkxn',$,'LNP150x10',$,$,$,$,$,$,$); -#3418=IFCMATERIALPROFILESET($,$,(#3420),$); -#3419=IFCRELASSOCIATESMATERIAL('2FWYWldE9CHg1GFQojMQR4',$,$,$,(#3417),#3418); -#3420=IFCMATERIALPROFILE($,$,#17,#3412,$,$); -#3421=IFCCOLUMNTYPE('2Xq6n6gZr2GRwmr7x8GJMu',$,'LNP150x10',$,$,$,$,$,$,$); -#3422=IFCMATERIALPROFILESET($,$,(#3424),$); -#3423=IFCRELASSOCIATESMATERIAL('1XLLVFeL94a9LEfeEih$Hz',$,$,$,(#3421),#3422); -#3424=IFCMATERIALPROFILE($,$,#17,#3412,$,$); -#3425=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,12.,$,$,$); -#3426=IFCBEAMTYPE('2ZzofdYE1BIPO2eyVZ8Xvy',$,'LNP150x12',$,$,$,$,$,$,$); -#3427=IFCMATERIALPROFILESET($,$,(#3429),$); -#3428=IFCRELASSOCIATESMATERIAL('2_iL2Sbwj9CO1aJI$j2on_',$,$,$,(#3426),#3427); -#3429=IFCMATERIALPROFILE($,$,#17,#3425,$,$); -#3430=IFCMEMBERTYPE('361RhPfBT0POA_z9hD8iy_',$,'LNP150x12',$,$,$,$,$,$,$); -#3431=IFCMATERIALPROFILESET($,$,(#3433),$); -#3432=IFCRELASSOCIATESMATERIAL('02z$Dp4DvB2xey005ScGDC',$,$,$,(#3430),#3431); -#3433=IFCMATERIALPROFILE($,$,#17,#3425,$,$); -#3434=IFCCOLUMNTYPE('2EYW_g$ZfAbw7qhOmgoY7l',$,'LNP150x12',$,$,$,$,$,$,$); -#3435=IFCMATERIALPROFILESET($,$,(#3437),$); -#3436=IFCRELASSOCIATESMATERIAL('2qujt26wz4VujEytktCXS4',$,$,$,(#3434),#3435); -#3437=IFCMATERIALPROFILE($,$,#17,#3425,$,$); -#3438=IFCLSHAPEPROFILEDEF(.AREA.,$,$,150.,$,15.,$,$,$); -#3439=IFCBEAMTYPE('3ohEpdhUr3hubEfcGZZk7J',$,'LNP150x15',$,$,$,$,$,$,$); -#3440=IFCMATERIALPROFILESET($,$,(#3442),$); -#3441=IFCRELASSOCIATESMATERIAL('3en_mUvZz5MPV8tMTCscBZ',$,$,$,(#3439),#3440); -#3442=IFCMATERIALPROFILE($,$,#17,#3438,$,$); -#3443=IFCMEMBERTYPE('1poDOsP6X4DOewky3Vf6qS',$,'LNP150x15',$,$,$,$,$,$,$); -#3444=IFCMATERIALPROFILESET($,$,(#3446),$); -#3445=IFCRELASSOCIATESMATERIAL('1Fj1Vz6iTCkP$Q850AiIvU',$,$,$,(#3443),#3444); -#3446=IFCMATERIALPROFILE($,$,#17,#3438,$,$); -#3447=IFCCOLUMNTYPE('1wWzbRFSrFHxsfTX4jv1Zu',$,'LNP150x15',$,$,$,$,$,$,$); -#3448=IFCMATERIALPROFILESET($,$,(#3450),$); -#3449=IFCRELASSOCIATESMATERIAL('0ac3q1vPrBx93t43PNopxl',$,$,$,(#3447),#3448); -#3450=IFCMATERIALPROFILE($,$,#17,#3438,$,$); -#3451=IFCLSHAPEPROFILEDEF(.AREA.,$,$,160.,$,15.,$,$,$); -#3452=IFCBEAMTYPE('2MHsYiWfv3EADHtkJUx3Ii',$,'LNP160x15',$,$,$,$,$,$,$); -#3453=IFCMATERIALPROFILESET($,$,(#3455),$); -#3454=IFCRELASSOCIATESMATERIAL('02zWaqD8rBfRg6iRkSaJO$',$,$,$,(#3452),#3453); -#3455=IFCMATERIALPROFILE($,$,#17,#3451,$,$); -#3456=IFCMEMBERTYPE('2s9f0UkOv9ie5ksDwygOIS',$,'LNP160x15',$,$,$,$,$,$,$); -#3457=IFCMATERIALPROFILESET($,$,(#3459),$); -#3458=IFCRELASSOCIATESMATERIAL('0843_ECdbBLxRWdCB$PXyo',$,$,$,(#3456),#3457); -#3459=IFCMATERIALPROFILE($,$,#17,#3451,$,$); -#3460=IFCCOLUMNTYPE('1PX8dTbeDCtedwxlUcVWj7',$,'LNP160x15',$,$,$,$,$,$,$); -#3461=IFCMATERIALPROFILESET($,$,(#3463),$); -#3462=IFCRELASSOCIATESMATERIAL('1m0F1bUI1F0fomIL8l2PLk',$,$,$,(#3460),#3461); -#3463=IFCMATERIALPROFILE($,$,#17,#3451,$,$); -#3464=IFCLSHAPEPROFILEDEF(.AREA.,$,$,180.,$,16.,$,$,$); -#3465=IFCBEAMTYPE('10WmjSwHf91OBpvU_q7dXG',$,'LNP180x16',$,$,$,$,$,$,$); -#3466=IFCMATERIALPROFILESET($,$,(#3468),$); -#3467=IFCRELASSOCIATESMATERIAL('0YKfUm90vAZxpvQShBLZmK',$,$,$,(#3465),#3466); -#3468=IFCMATERIALPROFILE($,$,#17,#3464,$,$); -#3469=IFCMEMBERTYPE('0sD5_FUqj4QvYa8Lac4tko',$,'LNP180x16',$,$,$,$,$,$,$); -#3470=IFCMATERIALPROFILESET($,$,(#3472),$); -#3471=IFCRELASSOCIATESMATERIAL('3tJMiOzXLC7wkAGcrHf4LG',$,$,$,(#3469),#3470); -#3472=IFCMATERIALPROFILE($,$,#17,#3464,$,$); -#3473=IFCCOLUMNTYPE('0l2SfvJ2f8MBZWbogyd2Nj',$,'LNP180x16',$,$,$,$,$,$,$); -#3474=IFCMATERIALPROFILESET($,$,(#3476),$); -#3475=IFCRELASSOCIATESMATERIAL('1SuGU6tfP72ByKRgZ1FLR1',$,$,$,(#3473),#3474); -#3476=IFCMATERIALPROFILE($,$,#17,#3464,$,$); -#3477=IFCLSHAPEPROFILEDEF(.AREA.,$,$,180.,$,18.,$,$,$); -#3478=IFCBEAMTYPE('3GEFxs401BvQDDz_CaYlGH',$,'LNP180x18',$,$,$,$,$,$,$); -#3479=IFCMATERIALPROFILESET($,$,(#3481),$); -#3480=IFCRELASSOCIATESMATERIAL('1devbBhzv5txl3UOwN_MOe',$,$,$,(#3478),#3479); -#3481=IFCMATERIALPROFILE($,$,#17,#3477,$,$); -#3482=IFCMEMBERTYPE('1ejqS8B6v0zvZPr4wH7NAG',$,'LNP180x18',$,$,$,$,$,$,$); -#3483=IFCMATERIALPROFILESET($,$,(#3485),$); -#3484=IFCRELASSOCIATESMATERIAL('3czd7BsHD3XBCMy5WAPURP',$,$,$,(#3482),#3483); -#3485=IFCMATERIALPROFILE($,$,#17,#3477,$,$); -#3486=IFCCOLUMNTYPE('3oEtuORD54HRpKBDhdcYoa',$,'LNP180x18',$,$,$,$,$,$,$); -#3487=IFCMATERIALPROFILESET($,$,(#3489),$); -#3488=IFCRELASSOCIATESMATERIAL('2UdUhbbWn6DBxIXTcoQypr',$,$,$,(#3486),#3487); -#3489=IFCMATERIALPROFILE($,$,#17,#3477,$,$); -#3490=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,16.,$,$,$); -#3491=IFCBEAMTYPE('07J5S$qqvFvQ9TEEnviywN',$,'LNP200x16',$,$,$,$,$,$,$); -#3492=IFCMATERIALPROFILESET($,$,(#3494),$); -#3493=IFCRELASSOCIATESMATERIAL('14Xu$QeRP3Sv23b3FbsyTh',$,$,$,(#3491),#3492); -#3494=IFCMATERIALPROFILE($,$,#17,#3490,$,$); -#3495=IFCMEMBERTYPE('3CjRU0mvP6hOs6YvoB1VCv',$,'LNP200x16',$,$,$,$,$,$,$); -#3496=IFCMATERIALPROFILESET($,$,(#3498),$); -#3497=IFCRELASSOCIATESMATERIAL('152xqwp$93pgM3kl9vg426',$,$,$,(#3495),#3496); -#3498=IFCMATERIALPROFILE($,$,#17,#3490,$,$); -#3499=IFCCOLUMNTYPE('1nyDfRVxXB98tS81FnReL5',$,'LNP200x16',$,$,$,$,$,$,$); -#3500=IFCMATERIALPROFILESET($,$,(#3502),$); -#3501=IFCRELASSOCIATESMATERIAL('2YagiU9ZzDrverPMi8JzjU',$,$,$,(#3499),#3500); -#3502=IFCMATERIALPROFILE($,$,#17,#3490,$,$); -#3503=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,18.,$,$,$); -#3504=IFCBEAMTYPE('1glX$CRuP968WRbULKZDy_',$,'LNP200x18',$,$,$,$,$,$,$); -#3505=IFCMATERIALPROFILESET($,$,(#3507),$); -#3506=IFCRELASSOCIATESMATERIAL('2I44MNbiTCUwusNFHTPlSy',$,$,$,(#3504),#3505); -#3507=IFCMATERIALPROFILE($,$,#17,#3503,$,$); -#3508=IFCMEMBERTYPE('3o8cZjfA5AMfBUx$yYeAPR',$,'LNP200x18',$,$,$,$,$,$,$); -#3509=IFCMATERIALPROFILESET($,$,(#3511),$); -#3510=IFCRELASSOCIATESMATERIAL('0$33z1GLLBXfPewC3LglOG',$,$,$,(#3508),#3509); -#3511=IFCMATERIALPROFILE($,$,#17,#3503,$,$); -#3512=IFCCOLUMNTYPE('3_312LEKX24Q3DwYgJXCMW',$,'LNP200x18',$,$,$,$,$,$,$); -#3513=IFCMATERIALPROFILESET($,$,(#3515),$); -#3514=IFCRELASSOCIATESMATERIAL('2ZNXrUM_fEGOTI0BnZpqE5',$,$,$,(#3512),#3513); -#3515=IFCMATERIALPROFILE($,$,#17,#3503,$,$); -#3516=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,20.,$,$,$); -#3517=IFCBEAMTYPE('0QktNfxUz4M92nanJPmpMc',$,'LNP200x20',$,$,$,$,$,$,$); -#3518=IFCMATERIALPROFILESET($,$,(#3520),$); -#3519=IFCRELASSOCIATESMATERIAL('1W6sZNS9L2zRnrMHhmgt20',$,$,$,(#3517),#3518); -#3520=IFCMATERIALPROFILE($,$,#17,#3516,$,$); -#3521=IFCMEMBERTYPE('2gHsnKhKH9UAqBKcSkrZc8',$,'LNP200x20',$,$,$,$,$,$,$); -#3522=IFCMATERIALPROFILESET($,$,(#3524),$); -#3523=IFCRELASSOCIATESMATERIAL('1_1mx5m4f1eA4JbD9M6iFo',$,$,$,(#3521),#3522); -#3524=IFCMATERIALPROFILE($,$,#17,#3516,$,$); -#3525=IFCCOLUMNTYPE('39TB6w1eTBWORHxkUCJJHG',$,'LNP200x20',$,$,$,$,$,$,$); -#3526=IFCMATERIALPROFILESET($,$,(#3528),$); -#3527=IFCRELASSOCIATESMATERIAL('2xldMbLazFmgOtq3t5fBb7',$,$,$,(#3525),#3526); -#3528=IFCMATERIALPROFILE($,$,#17,#3516,$,$); -#3529=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,$,24.,$,$,$); -#3530=IFCBEAMTYPE('0MpbzANv17NB1oDGdTbS_P',$,'LNP200x24',$,$,$,$,$,$,$); -#3531=IFCMATERIALPROFILESET($,$,(#3533),$); -#3532=IFCRELASSOCIATESMATERIAL('3OkMYvuH5CtASNaeuaFNsU',$,$,$,(#3530),#3531); -#3533=IFCMATERIALPROFILE($,$,#17,#3529,$,$); -#3534=IFCMEMBERTYPE('1fXm7Wz$1Du8sQq2$ahSO0',$,'LNP200x24',$,$,$,$,$,$,$); -#3535=IFCMATERIALPROFILESET($,$,(#3537),$); -#3536=IFCRELASSOCIATESMATERIAL('1Jex8ANQD3V94$ccRhqkSy',$,$,$,(#3534),#3535); -#3537=IFCMATERIALPROFILE($,$,#17,#3529,$,$); -#3538=IFCCOLUMNTYPE('3g0VA6Pvz3S9cO7kvF8292',$,'LNP200x24',$,$,$,$,$,$,$); -#3539=IFCMATERIALPROFILESET($,$,(#3541),$); -#3540=IFCRELASSOCIATESMATERIAL('0$e7cyIP92QQfoaun6leuS',$,$,$,(#3538),#3539); -#3541=IFCMATERIALPROFILE($,$,#17,#3529,$,$); -#3542=IFCLSHAPEPROFILEDEF(.AREA.,$,$,50.,30.,5.,$,$,$); -#3543=IFCBEAMTYPE('3_DvViE3TBxO7muPbygiuY',$,'LNP50x30x5',$,$,$,$,$,$,$); -#3544=IFCMATERIALPROFILESET($,$,(#3546),$); -#3545=IFCRELASSOCIATESMATERIAL('1_PzOU9RjAYRm9yMN0ikoe',$,$,$,(#3543),#3544); -#3546=IFCMATERIALPROFILE($,$,#17,#3542,$,$); -#3547=IFCMEMBERTYPE('3IrJEZUirDwOCzTjOFYdyv',$,'LNP50x30x5',$,$,$,$,$,$,$); -#3548=IFCMATERIALPROFILESET($,$,(#3550),$); -#3549=IFCRELASSOCIATESMATERIAL('0mjYAoUfP9kfL9EeG7PKDR',$,$,$,(#3547),#3548); -#3550=IFCMATERIALPROFILE($,$,#17,#3542,$,$); -#3551=IFCCOLUMNTYPE('3lhHEckl9AHR5z_BtIoFgF',$,'LNP50x30x5',$,$,$,$,$,$,$); -#3552=IFCMATERIALPROFILESET($,$,(#3554),$); -#3553=IFCRELASSOCIATESMATERIAL('2Rmhtjf2j0jQyLTlXfZha1',$,$,$,(#3551),#3552); -#3554=IFCMATERIALPROFILE($,$,#17,#3542,$,$); -#3555=IFCLSHAPEPROFILEDEF(.AREA.,$,$,200.,100.,10.,$,$,$); -#3556=IFCBEAMTYPE('0karC5zM179QXYcM_wuZGE',$,'LNP200x100x10',$,$,$,$,$,$,$); -#3557=IFCMATERIALPROFILESET($,$,(#3559),$); -#3558=IFCRELASSOCIATESMATERIAL('2QA8A8HJbFMO3dF4BQtGS0',$,$,$,(#3556),#3557); -#3559=IFCMATERIALPROFILE($,$,#17,#3555,$,$); -#3560=IFCMEMBERTYPE('0$Owe_5Hn61w8qGoF5olFt',$,'LNP200x100x10',$,$,$,$,$,$,$); -#3561=IFCMATERIALPROFILESET($,$,(#3563),$); -#3562=IFCRELASSOCIATESMATERIAL('2lgWuWgQL8LfTrdQxfYB8W',$,$,$,(#3560),#3561); -#3563=IFCMATERIALPROFILE($,$,#17,#3555,$,$); -#3564=IFCCOLUMNTYPE('1taHqB28XEZwhLJxLGeSDO',$,'LNP200x100x10',$,$,$,$,$,$,$); -#3565=IFCMATERIALPROFILESET($,$,(#3567),$); -#3566=IFCRELASSOCIATESMATERIAL('3ENK85rA5CMgLZkR3sT8TT',$,$,$,(#3564),#3565); -#3567=IFCMATERIALPROFILE($,$,#17,#3555,$,$); -#3568=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.65,2.3); -#3569=IFCBEAMTYPE('0TW9x0mdzCUf9J$0JrIk1y',$,'21.3-2.3',$,$,$,$,$,$,$); -#3570=IFCMATERIALPROFILESET($,$,(#3572),$); -#3571=IFCRELASSOCIATESMATERIAL('10ZA5TlCD5Xv92u1iZsTrp',$,$,$,(#3569),#3570); -#3572=IFCMATERIALPROFILE($,$,#17,#3568,$,$); -#3573=IFCMEMBERTYPE('0sQPpcMiP8B9KGw9zdtRTf',$,'21.3-2.3',$,$,$,$,$,$,$); -#3574=IFCMATERIALPROFILESET($,$,(#3576),$); -#3575=IFCRELASSOCIATESMATERIAL('2rP_ELT25D98Ik9aC6OJxd',$,$,$,(#3573),#3574); -#3576=IFCMATERIALPROFILE($,$,#17,#3568,$,$); -#3577=IFCCOLUMNTYPE('3g_oJ0hSz75OG7akQOhCWe',$,'21.3-2.3',$,$,$,$,$,$,$); -#3578=IFCMATERIALPROFILESET($,$,(#3580),$); -#3579=IFCRELASSOCIATESMATERIAL('1gJhLM0pf3vurqlepbhLEd',$,$,$,(#3577),#3578); -#3580=IFCMATERIALPROFILE($,$,#17,#3568,$,$); -#3581=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.65,2.6); -#3582=IFCBEAMTYPE('1Y9sGrO7f8KRQBa0S9gdh8',$,'21.3-2.6',$,$,$,$,$,$,$); -#3583=IFCMATERIALPROFILESET($,$,(#3585),$); -#3584=IFCRELASSOCIATESMATERIAL('2YoRVZt5n3cAC6U9CMpVAY',$,$,$,(#3582),#3583); -#3585=IFCMATERIALPROFILE($,$,#17,#3581,$,$); -#3586=IFCMEMBERTYPE('2nn$8FdDT3YeZmA2IU$g8E',$,'21.3-2.6',$,$,$,$,$,$,$); -#3587=IFCMATERIALPROFILESET($,$,(#3589),$); -#3588=IFCRELASSOCIATESMATERIAL('2vkOCblCv9Avtb$saMSzpO',$,$,$,(#3586),#3587); -#3589=IFCMATERIALPROFILE($,$,#17,#3581,$,$); -#3590=IFCCOLUMNTYPE('2WAdOjcGb9aOMXnh$KAteP',$,'21.3-2.6',$,$,$,$,$,$,$); -#3591=IFCMATERIALPROFILESET($,$,(#3593),$); -#3592=IFCRELASSOCIATESMATERIAL('0xqxNfTO964wtjRDz4F1Kr',$,$,$,(#3590),#3591); -#3593=IFCMATERIALPROFILE($,$,#17,#3581,$,$); -#3594=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,10.65,3.2); -#3595=IFCBEAMTYPE('1TDi0d4bb5L9AXe5JraHoJ',$,'21.3-3.2',$,$,$,$,$,$,$); -#3596=IFCMATERIALPROFILESET($,$,(#3598),$); -#3597=IFCRELASSOCIATESMATERIAL('1yJA$zsIj23xPR9KE$5asx',$,$,$,(#3595),#3596); -#3598=IFCMATERIALPROFILE($,$,#17,#3594,$,$); -#3599=IFCMEMBERTYPE('2aPFkpLdvDzR6Jd7tEBR3h',$,'21.3-3.2',$,$,$,$,$,$,$); -#3600=IFCMATERIALPROFILESET($,$,(#3602),$); -#3601=IFCRELASSOCIATESMATERIAL('3dhccAToX2ywPXZsgA0imy',$,$,$,(#3599),#3600); -#3602=IFCMATERIALPROFILE($,$,#17,#3594,$,$); -#3603=IFCCOLUMNTYPE('0nO$n3$sL57w2kyUIKScJe',$,'21.3-3.2',$,$,$,$,$,$,$); -#3604=IFCMATERIALPROFILESET($,$,(#3606),$); -#3605=IFCRELASSOCIATESMATERIAL('1stnZ1XRT129RQ3LuveB_O',$,$,$,(#3603),#3604); -#3606=IFCMATERIALPROFILE($,$,#17,#3594,$,$); -#3607=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,13.45,2.3); -#3608=IFCBEAMTYPE('2yfDtFgKrF$8pRLRGEsj6G',$,'26.9-2.3',$,$,$,$,$,$,$); -#3609=IFCMATERIALPROFILESET($,$,(#3611),$); -#3610=IFCRELASSOCIATESMATERIAL('2qpbXLBWn59OmiXYubapVQ',$,$,$,(#3608),#3609); -#3611=IFCMATERIALPROFILE($,$,#17,#3607,$,$); -#3612=IFCMEMBERTYPE('0otpy3095CrOgslpwqTpUg',$,'26.9-2.3',$,$,$,$,$,$,$); -#3613=IFCMATERIALPROFILESET($,$,(#3615),$); -#3614=IFCRELASSOCIATESMATERIAL('1BAkrDHGvCwuyWHh7uCUjz',$,$,$,(#3612),#3613); -#3615=IFCMATERIALPROFILE($,$,#17,#3607,$,$); -#3616=IFCCOLUMNTYPE('1_Yn5MvTrEUupaThG9Pesu',$,'26.9-2.3',$,$,$,$,$,$,$); -#3617=IFCMATERIALPROFILESET($,$,(#3619),$); -#3618=IFCRELASSOCIATESMATERIAL('3mlNZJLJX8OeJatEDs3yNH',$,$,$,(#3616),#3617); -#3619=IFCMATERIALPROFILE($,$,#17,#3607,$,$); -#3620=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,13.45,2.6); -#3621=IFCBEAMTYPE('2IyCF$K$LBavaviTbMoJvn',$,'26.9-2.6',$,$,$,$,$,$,$); -#3622=IFCMATERIALPROFILESET($,$,(#3624),$); -#3623=IFCRELASSOCIATESMATERIAL('3AMR75npbA3ulmXyzPf5Gr',$,$,$,(#3621),#3622); -#3624=IFCMATERIALPROFILE($,$,#17,#3620,$,$); -#3625=IFCMEMBERTYPE('3hH7RsMLb0ReimrnuIM1cB',$,'26.9-2.6',$,$,$,$,$,$,$); -#3626=IFCMATERIALPROFILESET($,$,(#3628),$); -#3627=IFCRELASSOCIATESMATERIAL('1CjTy$WL98OQwbre6X4veB',$,$,$,(#3625),#3626); -#3628=IFCMATERIALPROFILE($,$,#17,#3620,$,$); -#3629=IFCCOLUMNTYPE('0TLAMSa891zgeozJ9zUY_s',$,'26.9-2.6',$,$,$,$,$,$,$); -#3630=IFCMATERIALPROFILESET($,$,(#3632),$); -#3631=IFCRELASSOCIATESMATERIAL('2oVXTCqwLDzh7$KAxDGzrj',$,$,$,(#3629),#3630); -#3632=IFCMATERIALPROFILE($,$,#17,#3620,$,$); -#3633=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,13.45,3.2); -#3634=IFCBEAMTYPE('1TQABWVxT1PQ3A0i5UA_OI',$,'26.9-3.2',$,$,$,$,$,$,$); -#3635=IFCMATERIALPROFILESET($,$,(#3637),$); -#3636=IFCRELASSOCIATESMATERIAL('22UOwt7JH8yR01$I0o9jeA',$,$,$,(#3634),#3635); -#3637=IFCMATERIALPROFILE($,$,#17,#3633,$,$); -#3638=IFCMEMBERTYPE('3htNVMa$LCywGP28XR44OZ',$,'26.9-3.2',$,$,$,$,$,$,$); -#3639=IFCMATERIALPROFILESET($,$,(#3641),$); -#3640=IFCRELASSOCIATESMATERIAL('29w9loDfr5h8hgEtJuJM3F',$,$,$,(#3638),#3639); -#3641=IFCMATERIALPROFILE($,$,#17,#3633,$,$); -#3642=IFCCOLUMNTYPE('3kvCXZAfH9IBQ7zTIxqOgJ',$,'26.9-3.2',$,$,$,$,$,$,$); -#3643=IFCMATERIALPROFILESET($,$,(#3645),$); -#3644=IFCRELASSOCIATESMATERIAL('2JSq6nC4XFwegVGxuQlxQV',$,$,$,(#3642),#3643); -#3645=IFCMATERIALPROFILE($,$,#17,#3633,$,$); -#3646=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.85,2.6); -#3647=IFCBEAMTYPE('3Wb8v$Is55GQbVlp0lCG18',$,'33.7-2.6',$,$,$,$,$,$,$); -#3648=IFCMATERIALPROFILESET($,$,(#3650),$); -#3649=IFCRELASSOCIATESMATERIAL('28YWt2mwr6_fJNMGKpzn8u',$,$,$,(#3647),#3648); -#3650=IFCMATERIALPROFILE($,$,#17,#3646,$,$); -#3651=IFCMEMBERTYPE('1jaIDe9vv9p8XdzFuJinhI',$,'33.7-2.6',$,$,$,$,$,$,$); -#3652=IFCMATERIALPROFILESET($,$,(#3654),$); -#3653=IFCRELASSOCIATESMATERIAL('3NDfKbRcPFMOudrsvNgxUi',$,$,$,(#3651),#3652); -#3654=IFCMATERIALPROFILE($,$,#17,#3646,$,$); -#3655=IFCCOLUMNTYPE('23rJRnon50481jk6cG8Gv6',$,'33.7-2.6',$,$,$,$,$,$,$); -#3656=IFCMATERIALPROFILESET($,$,(#3658),$); -#3657=IFCRELASSOCIATESMATERIAL('3yHjFYWJb0nAyqzCisncTZ',$,$,$,(#3655),#3656); -#3658=IFCMATERIALPROFILE($,$,#17,#3646,$,$); -#3659=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.85,3.2); -#3660=IFCBEAMTYPE('2USc03kev6LhG17ws$l9db',$,'33.7-3.2',$,$,$,$,$,$,$); -#3661=IFCMATERIALPROFILESET($,$,(#3663),$); -#3662=IFCRELASSOCIATESMATERIAL('3JYCeocdrCWxSIMQGjSN1T',$,$,$,(#3660),#3661); -#3663=IFCMATERIALPROFILE($,$,#17,#3659,$,$); -#3664=IFCMEMBERTYPE('3RcdVuGRL5axSJNqcGUAaV',$,'33.7-3.2',$,$,$,$,$,$,$); -#3665=IFCMATERIALPROFILESET($,$,(#3667),$); -#3666=IFCRELASSOCIATESMATERIAL('0Su9EzvVv50AGPKCXdlHd$',$,$,$,(#3664),#3665); -#3667=IFCMATERIALPROFILE($,$,#17,#3659,$,$); -#3668=IFCCOLUMNTYPE('3gd3q5v71F6f5w5GTUNVQM',$,'33.7-3.2',$,$,$,$,$,$,$); -#3669=IFCMATERIALPROFILESET($,$,(#3671),$); -#3670=IFCRELASSOCIATESMATERIAL('0mNAT86dn7ye2QylOSt9$7',$,$,$,(#3668),#3669); -#3671=IFCMATERIALPROFILE($,$,#17,#3659,$,$); -#3672=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,16.85,4.); -#3673=IFCBEAMTYPE('1tdjWYoUH90ucjh6ODP3Kh',$,'33.7-4.0',$,$,$,$,$,$,$); -#3674=IFCMATERIALPROFILESET($,$,(#3676),$); -#3675=IFCRELASSOCIATESMATERIAL('3Ye898mUL7F8$3czMB4uoz',$,$,$,(#3673),#3674); -#3676=IFCMATERIALPROFILE($,$,#17,#3672,$,$); -#3677=IFCMEMBERTYPE('2MJuka0ZD7NQUGI8p2efqR',$,'33.7-4.0',$,$,$,$,$,$,$); -#3678=IFCMATERIALPROFILESET($,$,(#3680),$); -#3679=IFCRELASSOCIATESMATERIAL('3ENN8zWy56pf2OIBJyvOg3',$,$,$,(#3677),#3678); -#3680=IFCMATERIALPROFILE($,$,#17,#3672,$,$); -#3681=IFCCOLUMNTYPE('1APxWU8tH2efCopRSFQvOe',$,'33.7-4.0',$,$,$,$,$,$,$); -#3682=IFCMATERIALPROFILESET($,$,(#3684),$); -#3683=IFCRELASSOCIATESMATERIAL('3vpO$Z82bAV884BgORY95Y',$,$,$,(#3681),#3682); -#3684=IFCMATERIALPROFILE($,$,#17,#3672,$,$); -#3685=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,21.2,2.6); -#3686=IFCBEAMTYPE('0dTHyvPEHFZhmac1iiEYf2',$,'42.4-2.6',$,$,$,$,$,$,$); -#3687=IFCMATERIALPROFILESET($,$,(#3689),$); -#3688=IFCRELASSOCIATESMATERIAL('1J7li0Bnv38frTiW_nBdLo',$,$,$,(#3686),#3687); -#3689=IFCMATERIALPROFILE($,$,#17,#3685,$,$); -#3690=IFCMEMBERTYPE('2LTVUBn6DELweTnM4ZXn9T',$,'42.4-2.6',$,$,$,$,$,$,$); -#3691=IFCMATERIALPROFILESET($,$,(#3693),$); -#3692=IFCRELASSOCIATESMATERIAL('2oJohvTeD3PBcUjglRrOcX',$,$,$,(#3690),#3691); -#3693=IFCMATERIALPROFILE($,$,#17,#3685,$,$); -#3694=IFCCOLUMNTYPE('2nvjD11pzFquN$xdEqw8A0',$,'42.4-2.6',$,$,$,$,$,$,$); -#3695=IFCMATERIALPROFILESET($,$,(#3697),$); -#3696=IFCRELASSOCIATESMATERIAL('15ovQezTvEggrLKsuobzbd',$,$,$,(#3694),#3695); -#3697=IFCMATERIALPROFILE($,$,#17,#3685,$,$); -#3698=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,21.2,3.2); -#3699=IFCBEAMTYPE('2JlwHS5Qb2PfhWdEkWeQk2',$,'42.4-3.2',$,$,$,$,$,$,$); -#3700=IFCMATERIALPROFILESET($,$,(#3702),$); -#3701=IFCRELASSOCIATESMATERIAL('3isrysRjn5RvuJDdAeF2Qa',$,$,$,(#3699),#3700); -#3702=IFCMATERIALPROFILE($,$,#17,#3698,$,$); -#3703=IFCMEMBERTYPE('2JYP_S5vLCfRyC7TPBUoT3',$,'42.4-3.2',$,$,$,$,$,$,$); -#3704=IFCMATERIALPROFILESET($,$,(#3706),$); -#3705=IFCRELASSOCIATESMATERIAL('3dmh75WnzA_wzB9AUAKLZZ',$,$,$,(#3703),#3704); -#3706=IFCMATERIALPROFILE($,$,#17,#3698,$,$); -#3707=IFCCOLUMNTYPE('34P9I2Lib3ggr5qX7D0Eh0',$,'42.4-3.2',$,$,$,$,$,$,$); -#3708=IFCMATERIALPROFILESET($,$,(#3710),$); -#3709=IFCRELASSOCIATESMATERIAL('1sJpDJxZr6TeHGi81tLF2I',$,$,$,(#3707),#3708); -#3710=IFCMATERIALPROFILE($,$,#17,#3698,$,$); -#3711=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,21.2,4.); -#3712=IFCBEAMTYPE('37PFHphZ9BChtL52EoeI32',$,'42.4-4.0',$,$,$,$,$,$,$); -#3713=IFCMATERIALPROFILESET($,$,(#3715),$); -#3714=IFCRELASSOCIATESMATERIAL('3xOl4fDnDA7ghpw$3eHruD',$,$,$,(#3712),#3713); -#3715=IFCMATERIALPROFILE($,$,#17,#3711,$,$); -#3716=IFCMEMBERTYPE('34afC82Rf6QPej6KCt$19e',$,'42.4-4.0',$,$,$,$,$,$,$); -#3717=IFCMATERIALPROFILESET($,$,(#3719),$); -#3718=IFCRELASSOCIATESMATERIAL('3LuiqjO9fE3RaTiohQmHfp',$,$,$,(#3716),#3717); -#3719=IFCMATERIALPROFILE($,$,#17,#3711,$,$); -#3720=IFCCOLUMNTYPE('2WbdkLcEf5gOjxSIwzka7Q',$,'42.4-4.0',$,$,$,$,$,$,$); -#3721=IFCMATERIALPROFILESET($,$,(#3723),$); -#3722=IFCRELASSOCIATESMATERIAL('3ezfcEry55u9rSYhmxwLUK',$,$,$,(#3720),#3721); -#3723=IFCMATERIALPROFILE($,$,#17,#3711,$,$); -#3724=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,24.15,2.6); -#3725=IFCBEAMTYPE('3mOHq2HWH2LO4ML$2V7yt7',$,'48.3-2.6',$,$,$,$,$,$,$); -#3726=IFCMATERIALPROFILESET($,$,(#3728),$); -#3727=IFCRELASSOCIATESMATERIAL('0tC7fSHB9AkO1N2TSj79RY',$,$,$,(#3725),#3726); -#3728=IFCMATERIALPROFILE($,$,#17,#3724,$,$); -#3729=IFCMEMBERTYPE('3ABVNF0PH2zBDNlNFMXHsX',$,'48.3-2.6',$,$,$,$,$,$,$); -#3730=IFCMATERIALPROFILESET($,$,(#3732),$); -#3731=IFCRELASSOCIATESMATERIAL('1DT_BZC6n2qBNck38j5S$f',$,$,$,(#3729),#3730); -#3732=IFCMATERIALPROFILE($,$,#17,#3724,$,$); -#3733=IFCCOLUMNTYPE('10dqt4yC9EbvFIwlF7YzSQ',$,'48.3-2.6',$,$,$,$,$,$,$); -#3734=IFCMATERIALPROFILESET($,$,(#3736),$); -#3735=IFCRELASSOCIATESMATERIAL('1Vnnn4bsb0z95vtHv7M0sw',$,$,$,(#3733),#3734); -#3736=IFCMATERIALPROFILE($,$,#17,#3724,$,$); -#3737=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,24.15,3.2); -#3738=IFCBEAMTYPE('3QjLfU5CzDHPcyuaxI$Fvs',$,'48.3-3.2',$,$,$,$,$,$,$); -#3739=IFCMATERIALPROFILESET($,$,(#3741),$); -#3740=IFCRELASSOCIATESMATERIAL('2EfhkjcdDDVRwjb5TeEsbG',$,$,$,(#3738),#3739); -#3741=IFCMATERIALPROFILE($,$,#17,#3737,$,$); -#3742=IFCMEMBERTYPE('0DMtWObAbAMQE0XUVSYLP6',$,'48.3-3.2',$,$,$,$,$,$,$); -#3743=IFCMATERIALPROFILESET($,$,(#3745),$); -#3744=IFCRELASSOCIATESMATERIAL('1WjnpPRiPB9fR_t70f09Ds',$,$,$,(#3742),#3743); -#3745=IFCMATERIALPROFILE($,$,#17,#3737,$,$); -#3746=IFCCOLUMNTYPE('0k7HDl7qn52xk8dtzTx9TO',$,'48.3-3.2',$,$,$,$,$,$,$); -#3747=IFCMATERIALPROFILESET($,$,(#3749),$); -#3748=IFCRELASSOCIATESMATERIAL('21JNXl8grBb8RENADmaUWf',$,$,$,(#3746),#3747); -#3749=IFCMATERIALPROFILE($,$,#17,#3737,$,$); -#3750=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,24.15,4.); -#3751=IFCBEAMTYPE('3X81cgiWDCvuJs5CRTHnc7',$,'48.3-4.0',$,$,$,$,$,$,$); -#3752=IFCMATERIALPROFILESET($,$,(#3754),$); -#3753=IFCRELASSOCIATESMATERIAL('1hLqf0TBfFEuOM53S_JzLD',$,$,$,(#3751),#3752); -#3754=IFCMATERIALPROFILE($,$,#17,#3750,$,$); -#3755=IFCMEMBERTYPE('2QGDBMndn2WeuJpYc04yee',$,'48.3-4.0',$,$,$,$,$,$,$); -#3756=IFCMATERIALPROFILESET($,$,(#3758),$); -#3757=IFCRELASSOCIATESMATERIAL('1Pk93_YX97DelKe64koF_P',$,$,$,(#3755),#3756); -#3758=IFCMATERIALPROFILE($,$,#17,#3750,$,$); -#3759=IFCCOLUMNTYPE('2DazeGCq54H83aqB88CoFm',$,'48.3-4.0',$,$,$,$,$,$,$); -#3760=IFCMATERIALPROFILESET($,$,(#3762),$); -#3761=IFCRELASSOCIATESMATERIAL('0PQbCTUvj8FPfPBm2Xkljd',$,$,$,(#3759),#3760); -#3762=IFCMATERIALPROFILE($,$,#17,#3750,$,$); -#3763=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,24.15,5.); -#3764=IFCBEAMTYPE('3PFgbhXoL7s8vli28mUQ2h',$,'48.3-5.0',$,$,$,$,$,$,$); -#3765=IFCMATERIALPROFILESET($,$,(#3767),$); -#3766=IFCRELASSOCIATESMATERIAL('39Eb1J9w98Vf3pAGIzcflh',$,$,$,(#3764),#3765); -#3767=IFCMATERIALPROFILE($,$,#17,#3763,$,$); -#3768=IFCMEMBERTYPE('3Ct2qcmZn59QJUsTS3PxZQ',$,'48.3-5.0',$,$,$,$,$,$,$); -#3769=IFCMATERIALPROFILESET($,$,(#3771),$); -#3770=IFCRELASSOCIATESMATERIAL('2hhGr3dgr4_ub_$Y_JymcN',$,$,$,(#3768),#3769); -#3771=IFCMATERIALPROFILE($,$,#17,#3763,$,$); -#3772=IFCCOLUMNTYPE('1Wgm2v$djF4gXDzkI8bvXP',$,'48.3-5.0',$,$,$,$,$,$,$); -#3773=IFCMATERIALPROFILESET($,$,(#3775),$); -#3774=IFCRELASSOCIATESMATERIAL('3TqmDoihL1yvGHyi6LrpAh',$,$,$,(#3772),#3773); -#3775=IFCMATERIALPROFILE($,$,#17,#3763,$,$); -#3776=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,30.15,2.6); -#3777=IFCBEAMTYPE('0KN_5JEDD0q8bXOYO$9PVQ',$,'60.3-2.6',$,$,$,$,$,$,$); -#3778=IFCMATERIALPROFILESET($,$,(#3780),$); -#3779=IFCRELASSOCIATESMATERIAL('3v_7L58cH3DPD1sCkEm5ka',$,$,$,(#3777),#3778); -#3780=IFCMATERIALPROFILE($,$,#17,#3776,$,$); -#3781=IFCMEMBERTYPE('3x0URC6Cr7YB0qe8qetCoi',$,'60.3-2.6',$,$,$,$,$,$,$); -#3782=IFCMATERIALPROFILESET($,$,(#3784),$); -#3783=IFCRELASSOCIATESMATERIAL('1ggCJ$6L1FPBGD9ZXD7iiq',$,$,$,(#3781),#3782); -#3784=IFCMATERIALPROFILE($,$,#17,#3776,$,$); -#3785=IFCCOLUMNTYPE('1qA9zYH1D2ZwS0pyZTzwXu',$,'60.3-2.6',$,$,$,$,$,$,$); -#3786=IFCMATERIALPROFILESET($,$,(#3788),$); -#3787=IFCRELASSOCIATESMATERIAL('3gehDoVrrDfgXBh9UHWDCT',$,$,$,(#3785),#3786); -#3788=IFCMATERIALPROFILE($,$,#17,#3776,$,$); -#3789=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,30.15,3.2); -#3790=IFCBEAMTYPE('3BYu8eeinE9BJjXoHFLSxn',$,'60.3-3.2',$,$,$,$,$,$,$); -#3791=IFCMATERIALPROFILESET($,$,(#3793),$); -#3792=IFCRELASSOCIATESMATERIAL('3dfrP0tgr1YAb$dMFxb_EP',$,$,$,(#3790),#3791); -#3793=IFCMATERIALPROFILE($,$,#17,#3789,$,$); -#3794=IFCMEMBERTYPE('1YGiOQr591fAyyd3I$jsD6',$,'60.3-3.2',$,$,$,$,$,$,$); -#3795=IFCMATERIALPROFILESET($,$,(#3797),$); -#3796=IFCRELASSOCIATESMATERIAL('2wuWxf3rDBM9n3GnNglGVY',$,$,$,(#3794),#3795); -#3797=IFCMATERIALPROFILE($,$,#17,#3789,$,$); -#3798=IFCCOLUMNTYPE('14bCn_PiTFC8jxRj8PoT4D',$,'60.3-3.2',$,$,$,$,$,$,$); -#3799=IFCMATERIALPROFILESET($,$,(#3801),$); -#3800=IFCRELASSOCIATESMATERIAL('1yMeTnlTr0ouyaEPOY$pci',$,$,$,(#3798),#3799); -#3801=IFCMATERIALPROFILE($,$,#17,#3789,$,$); -#3802=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,30.15,4.); -#3803=IFCBEAMTYPE('3wPIFs9Zn00RtVDzN5lK76',$,'60.3-4.0',$,$,$,$,$,$,$); -#3804=IFCMATERIALPROFILESET($,$,(#3806),$); -#3805=IFCRELASSOCIATESMATERIAL('3p4IhInyzEdeZxnsD76nIX',$,$,$,(#3803),#3804); -#3806=IFCMATERIALPROFILE($,$,#17,#3802,$,$); -#3807=IFCMEMBERTYPE('2qCmDWKdL7eB77UI6WkdJN',$,'60.3-4.0',$,$,$,$,$,$,$); -#3808=IFCMATERIALPROFILESET($,$,(#3810),$); -#3809=IFCRELASSOCIATESMATERIAL('29dAQnnbv1PvqI3lS8MBiO',$,$,$,(#3807),#3808); -#3810=IFCMATERIALPROFILE($,$,#17,#3802,$,$); -#3811=IFCCOLUMNTYPE('1rLsa4Ve91EQ4QHCYKLvN9',$,'60.3-4.0',$,$,$,$,$,$,$); -#3812=IFCMATERIALPROFILESET($,$,(#3814),$); -#3813=IFCRELASSOCIATESMATERIAL('1beg_xPTP5$hCp7DzkMutr',$,$,$,(#3811),#3812); -#3814=IFCMATERIALPROFILE($,$,#17,#3802,$,$); -#3815=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,30.15,5.); -#3816=IFCBEAMTYPE('0uDnYQbs9F4wWAoFNccn5H',$,'60.3-5.0',$,$,$,$,$,$,$); -#3817=IFCMATERIALPROFILESET($,$,(#3819),$); -#3818=IFCRELASSOCIATESMATERIAL('2JO_QfAufBbghzBnv5vcwj',$,$,$,(#3816),#3817); -#3819=IFCMATERIALPROFILE($,$,#17,#3815,$,$); -#3820=IFCMEMBERTYPE('14GXRT0219Qw53T8vPJSdF',$,'60.3-5.0',$,$,$,$,$,$,$); -#3821=IFCMATERIALPROFILESET($,$,(#3823),$); -#3822=IFCRELASSOCIATESMATERIAL('1Jo1esEXD8XPSCBapumDmX',$,$,$,(#3820),#3821); -#3823=IFCMATERIALPROFILE($,$,#17,#3815,$,$); -#3824=IFCCOLUMNTYPE('2o2vUE2cr5TvykP_9qpWXz',$,'60.3-5.0',$,$,$,$,$,$,$); -#3825=IFCMATERIALPROFILESET($,$,(#3827),$); -#3826=IFCRELASSOCIATESMATERIAL('2wd0Zze4r1IRriND2_NXn2',$,$,$,(#3824),#3825); -#3827=IFCMATERIALPROFILE($,$,#17,#3815,$,$); -#3828=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,38.05,2.6); -#3829=IFCBEAMTYPE('2IUU9q1g92XQNWaPl$jUa3',$,'76.1-2.6',$,$,$,$,$,$,$); -#3830=IFCMATERIALPROFILESET($,$,(#3832),$); -#3831=IFCRELASSOCIATESMATERIAL('2SaY5gXqnE3gkArMHn9ly1',$,$,$,(#3829),#3830); -#3832=IFCMATERIALPROFILE($,$,#17,#3828,$,$); -#3833=IFCMEMBERTYPE('1lXbzHnRj4$R3uUm1zwlIs',$,'76.1-2.6',$,$,$,$,$,$,$); -#3834=IFCMATERIALPROFILESET($,$,(#3836),$); -#3835=IFCRELASSOCIATESMATERIAL('29UbLbrjv30wEMN0KvmqIe',$,$,$,(#3833),#3834); -#3836=IFCMATERIALPROFILE($,$,#17,#3828,$,$); -#3837=IFCCOLUMNTYPE('3DAEMWJIrETw7X2g7WaD0p',$,'76.1-2.6',$,$,$,$,$,$,$); -#3838=IFCMATERIALPROFILESET($,$,(#3840),$); -#3839=IFCRELASSOCIATESMATERIAL('0k_nRMb8nCifcDLkp1tHoT',$,$,$,(#3837),#3838); -#3840=IFCMATERIALPROFILE($,$,#17,#3828,$,$); -#3841=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,38.05,3.2); -#3842=IFCBEAMTYPE('32aCy$Qd93x96XGAJHZDqZ',$,'76.1-3.2',$,$,$,$,$,$,$); -#3843=IFCMATERIALPROFILESET($,$,(#3845),$); -#3844=IFCRELASSOCIATESMATERIAL('1H74BNT49EXB3tcBWHiulq',$,$,$,(#3842),#3843); -#3845=IFCMATERIALPROFILE($,$,#17,#3841,$,$); -#3846=IFCMEMBERTYPE('0XJC0Lrhj5tPz$pTh2EW4_',$,'76.1-3.2',$,$,$,$,$,$,$); -#3847=IFCMATERIALPROFILESET($,$,(#3849),$); -#3848=IFCRELASSOCIATESMATERIAL('0zuAMNCezD_wrP8jRfouS1',$,$,$,(#3846),#3847); -#3849=IFCMATERIALPROFILE($,$,#17,#3841,$,$); -#3850=IFCCOLUMNTYPE('2Q_iowCYfDqQoV_9aOK9zz',$,'76.1-3.2',$,$,$,$,$,$,$); -#3851=IFCMATERIALPROFILESET($,$,(#3853),$); -#3852=IFCRELASSOCIATESMATERIAL('0sEm5v8kj8Yu8P4ZjOGEXF',$,$,$,(#3850),#3851); -#3853=IFCMATERIALPROFILE($,$,#17,#3841,$,$); -#3854=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,38.05,4.); -#3855=IFCBEAMTYPE('27_S1OI45Ak9M0vVlSrnHC',$,'76.1-4.0',$,$,$,$,$,$,$); -#3856=IFCMATERIALPROFILESET($,$,(#3858),$); -#3857=IFCRELASSOCIATESMATERIAL('2pgcc3f1bAWAyvQc25ylxe',$,$,$,(#3855),#3856); -#3858=IFCMATERIALPROFILE($,$,#17,#3854,$,$); -#3859=IFCMEMBERTYPE('1RJsfcRVz3GhvUf2abIcTX',$,'76.1-4.0',$,$,$,$,$,$,$); -#3860=IFCMATERIALPROFILESET($,$,(#3862),$); -#3861=IFCRELASSOCIATESMATERIAL('1hSUQm5qf87Ovc7lqu5IAw',$,$,$,(#3859),#3860); -#3862=IFCMATERIALPROFILE($,$,#17,#3854,$,$); -#3863=IFCCOLUMNTYPE('0ld$xQR_v6MQln7Ll6X0le',$,'76.1-4.0',$,$,$,$,$,$,$); -#3864=IFCMATERIALPROFILESET($,$,(#3866),$); -#3865=IFCRELASSOCIATESMATERIAL('0_7u$CZnPADfpt$kgBvhSK',$,$,$,(#3863),#3864); -#3866=IFCMATERIALPROFILE($,$,#17,#3854,$,$); -#3867=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,38.05,5.); -#3868=IFCBEAMTYPE('1PCLHXut59Eu61cr8yQp8m',$,'76.1-5.0',$,$,$,$,$,$,$); -#3869=IFCMATERIALPROFILESET($,$,(#3871),$); -#3870=IFCRELASSOCIATESMATERIAL('3MVcZNO25APx4Uq9VDFREC',$,$,$,(#3868),#3869); -#3871=IFCMATERIALPROFILE($,$,#17,#3867,$,$); -#3872=IFCMEMBERTYPE('2RUADpsff6uP_vY0NS_Y4g',$,'76.1-5.0',$,$,$,$,$,$,$); -#3873=IFCMATERIALPROFILESET($,$,(#3875),$); -#3874=IFCRELASSOCIATESMATERIAL('02aY7h6YHDfu$gLobhx7Zm',$,$,$,(#3872),#3873); -#3875=IFCMATERIALPROFILE($,$,#17,#3867,$,$); -#3876=IFCCOLUMNTYPE('1bIfGjNuL2r9GI$V7lyE_Q',$,'76.1-5.0',$,$,$,$,$,$,$); -#3877=IFCMATERIALPROFILESET($,$,(#3879),$); -#3878=IFCRELASSOCIATESMATERIAL('12CgNSA0v34uohg1zIktp3',$,$,$,(#3876),#3877); -#3879=IFCMATERIALPROFILE($,$,#17,#3867,$,$); -#3880=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,44.45,3.2); -#3881=IFCBEAMTYPE('2jrH9LBuP7NejZ696HXQ$g',$,'88.9-3.2',$,$,$,$,$,$,$); -#3882=IFCMATERIALPROFILESET($,$,(#3884),$); -#3883=IFCRELASSOCIATESMATERIAL('1GhhYOoSL7ye0UnZQQMkwB',$,$,$,(#3881),#3882); -#3884=IFCMATERIALPROFILE($,$,#17,#3880,$,$); -#3885=IFCMEMBERTYPE('1lnU0yB4P5uxSIqYYHUUIL',$,'88.9-3.2',$,$,$,$,$,$,$); -#3886=IFCMATERIALPROFILESET($,$,(#3888),$); -#3887=IFCRELASSOCIATESMATERIAL('1fBWS2Rvr7uhvt9kXFiD05',$,$,$,(#3885),#3886); -#3888=IFCMATERIALPROFILE($,$,#17,#3880,$,$); -#3889=IFCCOLUMNTYPE('1W_OsEOqf7dhSFhHS2xUNA',$,'88.9-3.2',$,$,$,$,$,$,$); -#3890=IFCMATERIALPROFILESET($,$,(#3892),$); -#3891=IFCRELASSOCIATESMATERIAL('1kqgOQ9GzAhRwVbBZG1Ki7',$,$,$,(#3889),#3890); -#3892=IFCMATERIALPROFILE($,$,#17,#3880,$,$); -#3893=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,44.45,4.); -#3894=IFCBEAMTYPE('3DMGwlUwr68Arz6vWAOgbR',$,'88.9-4.0',$,$,$,$,$,$,$); -#3895=IFCMATERIALPROFILESET($,$,(#3897),$); -#3896=IFCRELASSOCIATESMATERIAL('1MDVozggzBAgW9CdoFJK1_',$,$,$,(#3894),#3895); -#3897=IFCMATERIALPROFILE($,$,#17,#3893,$,$); -#3898=IFCMEMBERTYPE('1W2MbyWHLBxem0AUCMPQcQ',$,'88.9-4.0',$,$,$,$,$,$,$); -#3899=IFCMATERIALPROFILESET($,$,(#3901),$); -#3900=IFCRELASSOCIATESMATERIAL('1wf7ojsf98xwNIHvEMWvvf',$,$,$,(#3898),#3899); -#3901=IFCMATERIALPROFILE($,$,#17,#3893,$,$); -#3902=IFCCOLUMNTYPE('2axq9hN1T0quvtL9atw$q4',$,'88.9-4.0',$,$,$,$,$,$,$); -#3903=IFCMATERIALPROFILESET($,$,(#3905),$); -#3904=IFCRELASSOCIATESMATERIAL('0lUvEPhnj4Dw_7_14W4cyG',$,$,$,(#3902),#3903); -#3905=IFCMATERIALPROFILE($,$,#17,#3893,$,$); -#3906=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,44.45,5.); -#3907=IFCBEAMTYPE('1A_xU_Dmf38Rml7ZPC81tz',$,'88.9-5.0',$,$,$,$,$,$,$); -#3908=IFCMATERIALPROFILESET($,$,(#3910),$); -#3909=IFCRELASSOCIATESMATERIAL('3CpgPFPu54yxUebOtCFdZc',$,$,$,(#3907),#3908); -#3910=IFCMATERIALPROFILE($,$,#17,#3906,$,$); -#3911=IFCMEMBERTYPE('1iulyhmzrFWxU5F7qcjvbI',$,'88.9-5.0',$,$,$,$,$,$,$); -#3912=IFCMATERIALPROFILESET($,$,(#3914),$); -#3913=IFCRELASSOCIATESMATERIAL('1Rasg_RJDB$xLMKG8mBuso',$,$,$,(#3911),#3912); -#3914=IFCMATERIALPROFILE($,$,#17,#3906,$,$); -#3915=IFCCOLUMNTYPE('28mwl32JrEwh_LZ$W8R4fM',$,'88.9-5.0',$,$,$,$,$,$,$); -#3916=IFCMATERIALPROFILESET($,$,(#3918),$); -#3917=IFCRELASSOCIATESMATERIAL('09XRULHknDGQEuEotFSXsF',$,$,$,(#3915),#3916); -#3918=IFCMATERIALPROFILE($,$,#17,#3906,$,$); -#3919=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,44.45,6.); -#3920=IFCBEAMTYPE('2Yuy8ezGTBRvKu3QU29_3E',$,'88.9-6.0',$,$,$,$,$,$,$); -#3921=IFCMATERIALPROFILESET($,$,(#3923),$); -#3922=IFCRELASSOCIATESMATERIAL('3iuX4oxSX208VOJJe7OcnD',$,$,$,(#3920),#3921); -#3923=IFCMATERIALPROFILE($,$,#17,#3919,$,$); -#3924=IFCMEMBERTYPE('3r$2v60kjBGeUhbUnBFs3a',$,'88.9-6.0',$,$,$,$,$,$,$); -#3925=IFCMATERIALPROFILESET($,$,(#3927),$); -#3926=IFCRELASSOCIATESMATERIAL('2TePq6Job2HwMb1etWB6Rk',$,$,$,(#3924),#3925); -#3927=IFCMATERIALPROFILE($,$,#17,#3919,$,$); -#3928=IFCCOLUMNTYPE('2UJ1HVfUj6Pe4tp08rAcIk',$,'88.9-6.0',$,$,$,$,$,$,$); -#3929=IFCMATERIALPROFILESET($,$,(#3931),$); -#3930=IFCRELASSOCIATESMATERIAL('20Q5Z$zTT6Bv58qwH858ku',$,$,$,(#3928),#3929); -#3931=IFCMATERIALPROFILE($,$,#17,#3919,$,$); -#3932=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,44.45,6.3); -#3933=IFCBEAMTYPE('1yirOpALLDGBYVun$07Gug',$,'88.9-6.3',$,$,$,$,$,$,$); -#3934=IFCMATERIALPROFILESET($,$,(#3936),$); -#3935=IFCRELASSOCIATESMATERIAL('1CcP108HTEegpUFlb$o3PV',$,$,$,(#3933),#3934); -#3936=IFCMATERIALPROFILE($,$,#17,#3932,$,$); -#3937=IFCMEMBERTYPE('1lcsAvuiTFGOb83x4Yc00S',$,'88.9-6.3',$,$,$,$,$,$,$); -#3938=IFCMATERIALPROFILESET($,$,(#3940),$); -#3939=IFCRELASSOCIATESMATERIAL('0Ntd6KXbL3oRweLXWrcr5A',$,$,$,(#3937),#3938); -#3940=IFCMATERIALPROFILE($,$,#17,#3932,$,$); -#3941=IFCCOLUMNTYPE('3kTymybrD5Xevxw_0LbASf',$,'88.9-6.3',$,$,$,$,$,$,$); -#3942=IFCMATERIALPROFILESET($,$,(#3944),$); -#3943=IFCRELASSOCIATESMATERIAL('38Rgczr_n4RARFtuE7eb2_',$,$,$,(#3941),#3942); -#3944=IFCMATERIALPROFILE($,$,#17,#3932,$,$); -#3945=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,3.2); -#3946=IFCBEAMTYPE('2WAFV9deT5sB2vvWmXg89N',$,'101.6-3.2',$,$,$,$,$,$,$); -#3947=IFCMATERIALPROFILESET($,$,(#3949),$); -#3948=IFCRELASSOCIATESMATERIAL('0cB0w$Aij2xh2j7tS5pYQZ',$,$,$,(#3946),#3947); -#3949=IFCMATERIALPROFILE($,$,#17,#3945,$,$); -#3950=IFCMEMBERTYPE('1D02NiEfP5rxsrlxXbzmEI',$,'101.6-3.2',$,$,$,$,$,$,$); -#3951=IFCMATERIALPROFILESET($,$,(#3953),$); -#3952=IFCRELASSOCIATESMATERIAL('1oRBiTdXfAp8RbtM9c8eHh',$,$,$,(#3950),#3951); -#3953=IFCMATERIALPROFILE($,$,#17,#3945,$,$); -#3954=IFCCOLUMNTYPE('1baxQB2hf8bud2w8722VlK',$,'101.6-3.2',$,$,$,$,$,$,$); -#3955=IFCMATERIALPROFILESET($,$,(#3957),$); -#3956=IFCRELASSOCIATESMATERIAL('104b93KfT3JfcrUPEPLq1T',$,$,$,(#3954),#3955); -#3957=IFCMATERIALPROFILE($,$,#17,#3945,$,$); -#3958=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,4.); -#3959=IFCBEAMTYPE('0a6o8L5Nb7bOFSoQN$UWOB',$,'101.6-4.0',$,$,$,$,$,$,$); -#3960=IFCMATERIALPROFILESET($,$,(#3962),$); -#3961=IFCRELASSOCIATESMATERIAL('3ji1jR_uj15BM3BjLfEwvl',$,$,$,(#3959),#3960); -#3962=IFCMATERIALPROFILE($,$,#17,#3958,$,$); -#3963=IFCMEMBERTYPE('0vMvhUp4PEZwlb3degDBT$',$,'101.6-4.0',$,$,$,$,$,$,$); -#3964=IFCMATERIALPROFILESET($,$,(#3966),$); -#3965=IFCRELASSOCIATESMATERIAL('22uhD26l96GPT_dvoKrLtF',$,$,$,(#3963),#3964); -#3966=IFCMATERIALPROFILE($,$,#17,#3958,$,$); -#3967=IFCCOLUMNTYPE('1gL03d8Cj0gO8nM62X3UgT',$,'101.6-4.0',$,$,$,$,$,$,$); -#3968=IFCMATERIALPROFILESET($,$,(#3970),$); -#3969=IFCRELASSOCIATESMATERIAL('2yKowjFwH19eetiXUmcCAu',$,$,$,(#3967),#3968); -#3970=IFCMATERIALPROFILE($,$,#17,#3958,$,$); -#3971=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,5.); -#3972=IFCBEAMTYPE('3NvKhdR0T9_wMF6Q44xfeO',$,'101.6-5.0',$,$,$,$,$,$,$); -#3973=IFCMATERIALPROFILESET($,$,(#3975),$); -#3974=IFCRELASSOCIATESMATERIAL('00YXN9E7D9_fM5yFsW9a2B',$,$,$,(#3972),#3973); -#3975=IFCMATERIALPROFILE($,$,#17,#3971,$,$); -#3976=IFCMEMBERTYPE('3_OkFlDMX68xqwP8p48nri',$,'101.6-5.0',$,$,$,$,$,$,$); -#3977=IFCMATERIALPROFILESET($,$,(#3979),$); -#3978=IFCRELASSOCIATESMATERIAL('2KtUlTsWj8Eh6H5UEvBLiy',$,$,$,(#3976),#3977); -#3979=IFCMATERIALPROFILE($,$,#17,#3971,$,$); -#3980=IFCCOLUMNTYPE('3lIYIXhon2iu9reSvAxsks',$,'101.6-5.0',$,$,$,$,$,$,$); -#3981=IFCMATERIALPROFILESET($,$,(#3983),$); -#3982=IFCRELASSOCIATESMATERIAL('2uYyQLMGX91vNx9fyJ7DZL',$,$,$,(#3980),#3981); -#3983=IFCMATERIALPROFILE($,$,#17,#3971,$,$); -#3984=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,6.); -#3985=IFCBEAMTYPE('1MVXH4gEb60O_2a6_ysnIn',$,'101.6-6.0',$,$,$,$,$,$,$); -#3986=IFCMATERIALPROFILESET($,$,(#3988),$); -#3987=IFCRELASSOCIATESMATERIAL('0Dcvr1zE5EaulBFLKaxeHe',$,$,$,(#3985),#3986); -#3988=IFCMATERIALPROFILE($,$,#17,#3984,$,$); -#3989=IFCMEMBERTYPE('04OrzFkVH8twvNUjnBepUn',$,'101.6-6.0',$,$,$,$,$,$,$); -#3990=IFCMATERIALPROFILESET($,$,(#3992),$); -#3991=IFCRELASSOCIATESMATERIAL('29R_X$h0LBAPW7RCVCFU9V',$,$,$,(#3989),#3990); -#3992=IFCMATERIALPROFILE($,$,#17,#3984,$,$); -#3993=IFCCOLUMNTYPE('34lOt7B9DDqu9aXwKwyyp6',$,'101.6-6.0',$,$,$,$,$,$,$); -#3994=IFCMATERIALPROFILESET($,$,(#3996),$); -#3995=IFCRELASSOCIATESMATERIAL('11syddcib2$QT0qE_van7m',$,$,$,(#3993),#3994); -#3996=IFCMATERIALPROFILE($,$,#17,#3984,$,$); -#3997=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,6.3); -#3998=IFCBEAMTYPE('3mFzvsHg52RBWdMBGt_cHP',$,'101.6-6.3',$,$,$,$,$,$,$); -#3999=IFCMATERIALPROFILESET($,$,(#4001),$); -#4000=IFCRELASSOCIATESMATERIAL('3ZA8q0Crv2HefBYtihe0Dx',$,$,$,(#3998),#3999); -#4001=IFCMATERIALPROFILE($,$,#17,#3997,$,$); -#4002=IFCMEMBERTYPE('2Me91z6RHACQ$gyvAp$2lh',$,'101.6-6.3',$,$,$,$,$,$,$); -#4003=IFCMATERIALPROFILESET($,$,(#4005),$); -#4004=IFCRELASSOCIATESMATERIAL('1r_N5uU$b4qhVHx5cbD66q',$,$,$,(#4002),#4003); -#4005=IFCMATERIALPROFILE($,$,#17,#3997,$,$); -#4006=IFCCOLUMNTYPE('38Fotlu8P5lO7wh0IRYqjY',$,'101.6-6.3',$,$,$,$,$,$,$); -#4007=IFCMATERIALPROFILESET($,$,(#4009),$); -#4008=IFCRELASSOCIATESMATERIAL('0N4Zm52Mr4VuMHVodqoThF',$,$,$,(#4006),#4007); -#4009=IFCMATERIALPROFILE($,$,#17,#3997,$,$); -#4010=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,8.); -#4011=IFCBEAMTYPE('0fguKGJ6LBSONZZ2oe1$JR',$,'101.6-8.0',$,$,$,$,$,$,$); -#4012=IFCMATERIALPROFILESET($,$,(#4014),$); -#4013=IFCRELASSOCIATESMATERIAL('2DLmOuHF9AVRpFxtUm6ATy',$,$,$,(#4011),#4012); -#4014=IFCMATERIALPROFILE($,$,#17,#4010,$,$); -#4015=IFCMEMBERTYPE('1dENACqsv1HvOy9rxW$Vdg',$,'101.6-8.0',$,$,$,$,$,$,$); -#4016=IFCMATERIALPROFILESET($,$,(#4018),$); -#4017=IFCRELASSOCIATESMATERIAL('3gAgTT7YPEfuZ4eBh08Zig',$,$,$,(#4015),#4016); -#4018=IFCMATERIALPROFILE($,$,#17,#4010,$,$); -#4019=IFCCOLUMNTYPE('1sxTZMynfEG9kHgrkVlzgt',$,'101.6-8.0',$,$,$,$,$,$,$); -#4020=IFCMATERIALPROFILESET($,$,(#4022),$); -#4021=IFCRELASSOCIATESMATERIAL('1D8NrwSNf8xRX0zxYKmHBu',$,$,$,(#4019),#4020); -#4022=IFCMATERIALPROFILE($,$,#17,#4010,$,$); -#4023=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,50.8,10.); -#4024=IFCBEAMTYPE('3N28jzSrjAHwWRNvhHX$W3',$,'101.6-10.0',$,$,$,$,$,$,$); -#4025=IFCMATERIALPROFILESET($,$,(#4027),$); -#4026=IFCRELASSOCIATESMATERIAL('3h52j_X3v3aRd7nzem3E1a',$,$,$,(#4024),#4025); -#4027=IFCMATERIALPROFILE($,$,#17,#4023,$,$); -#4028=IFCMEMBERTYPE('3xl2FaSMHCV8G9Ogza0UGj',$,'101.6-10.0',$,$,$,$,$,$,$); -#4029=IFCMATERIALPROFILESET($,$,(#4031),$); -#4030=IFCRELASSOCIATESMATERIAL('3KkCXNsh58wBFhUl0ZDLrT',$,$,$,(#4028),#4029); -#4031=IFCMATERIALPROFILE($,$,#17,#4023,$,$); -#4032=IFCCOLUMNTYPE('1sNrvu_NbDjBhmCTErON52',$,'101.6-10.0',$,$,$,$,$,$,$); -#4033=IFCMATERIALPROFILESET($,$,(#4035),$); -#4034=IFCRELASSOCIATESMATERIAL('2tV1fVvKXDXg0NkYgVJJyL',$,$,$,(#4032),#4033); -#4035=IFCMATERIALPROFILE($,$,#17,#4023,$,$); -#4036=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,3.2); -#4037=IFCBEAMTYPE('36BQRxrWn8OP$zHjgRgw0K',$,'114.3-3.2',$,$,$,$,$,$,$); -#4038=IFCMATERIALPROFILESET($,$,(#4040),$); -#4039=IFCRELASSOCIATESMATERIAL('33kJY4P5TC3QvaoQKbqhGv',$,$,$,(#4037),#4038); -#4040=IFCMATERIALPROFILE($,$,#17,#4036,$,$); -#4041=IFCMEMBERTYPE('2qEdD_JFDDSurP646Vvzd_',$,'114.3-3.2',$,$,$,$,$,$,$); -#4042=IFCMATERIALPROFILESET($,$,(#4044),$); -#4043=IFCRELASSOCIATESMATERIAL('2AH_uteD53peiVVDhZCPSW',$,$,$,(#4041),#4042); -#4044=IFCMATERIALPROFILE($,$,#17,#4036,$,$); -#4045=IFCCOLUMNTYPE('3HUJRC_HPEUOpTr4ynXTEu',$,'114.3-3.2',$,$,$,$,$,$,$); -#4046=IFCMATERIALPROFILESET($,$,(#4048),$); -#4047=IFCRELASSOCIATESMATERIAL('0UD93BhBj5ivtsmnjfV5Kk',$,$,$,(#4045),#4046); -#4048=IFCMATERIALPROFILE($,$,#17,#4036,$,$); -#4049=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,4.); -#4050=IFCBEAMTYPE('1UwGFK$n1An9DFOjaXyRgg',$,'114.3-4.0',$,$,$,$,$,$,$); -#4051=IFCMATERIALPROFILESET($,$,(#4053),$); -#4052=IFCRELASSOCIATESMATERIAL('0O_ipHCXDB7BTB5J4lk8Um',$,$,$,(#4050),#4051); -#4053=IFCMATERIALPROFILE($,$,#17,#4049,$,$); -#4054=IFCMEMBERTYPE('3_99SFccH6cfUk2alyzVv5',$,'114.3-4.0',$,$,$,$,$,$,$); -#4055=IFCMATERIALPROFILESET($,$,(#4057),$); -#4056=IFCRELASSOCIATESMATERIAL('2WAusa9tL7mf3RxQvdF7B1',$,$,$,(#4054),#4055); -#4057=IFCMATERIALPROFILE($,$,#17,#4049,$,$); -#4058=IFCCOLUMNTYPE('2KtJejOCX6bxQmU8uqNSuj',$,'114.3-4.0',$,$,$,$,$,$,$); -#4059=IFCMATERIALPROFILESET($,$,(#4061),$); -#4060=IFCRELASSOCIATESMATERIAL('0hnAUg7RzAHAyAe5W755Fy',$,$,$,(#4058),#4059); -#4061=IFCMATERIALPROFILE($,$,#17,#4049,$,$); -#4062=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,5.); -#4063=IFCBEAMTYPE('3ouvKRl2LCweh8z95sY5Zq',$,'114.3-5.0',$,$,$,$,$,$,$); -#4064=IFCMATERIALPROFILESET($,$,(#4066),$); -#4065=IFCRELASSOCIATESMATERIAL('0HT5cPkOLDXhv4j5dr3Kf4',$,$,$,(#4063),#4064); -#4066=IFCMATERIALPROFILE($,$,#17,#4062,$,$); -#4067=IFCMEMBERTYPE('2$yDmUwTnFBugz050oL7n9',$,'114.3-5.0',$,$,$,$,$,$,$); -#4068=IFCMATERIALPROFILESET($,$,(#4070),$); -#4069=IFCRELASSOCIATESMATERIAL('3gXroH5yr9NBgsoQasS9Uf',$,$,$,(#4067),#4068); -#4070=IFCMATERIALPROFILE($,$,#17,#4062,$,$); -#4071=IFCCOLUMNTYPE('0HZAZo6zPAmB4Vdg9aC00$',$,'114.3-5.0',$,$,$,$,$,$,$); -#4072=IFCMATERIALPROFILESET($,$,(#4074),$); -#4073=IFCRELASSOCIATESMATERIAL('32zhoO2lX0v9pgQO0wy8eJ',$,$,$,(#4071),#4072); -#4074=IFCMATERIALPROFILE($,$,#17,#4062,$,$); -#4075=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,6.); -#4076=IFCBEAMTYPE('0XKdRJXefAVvueHK_id0wd',$,'114.3-6.0',$,$,$,$,$,$,$); -#4077=IFCMATERIALPROFILESET($,$,(#4079),$); -#4078=IFCRELASSOCIATESMATERIAL('2PvWtwxtD7D9ZkQwKHuVpq',$,$,$,(#4076),#4077); -#4079=IFCMATERIALPROFILE($,$,#17,#4075,$,$); -#4080=IFCMEMBERTYPE('1$SHh7zijB9QfArmNb9YoM',$,'114.3-6.0',$,$,$,$,$,$,$); -#4081=IFCMATERIALPROFILESET($,$,(#4083),$); -#4082=IFCRELASSOCIATESMATERIAL('0W8LpjCaD2zxGFD3d41amZ',$,$,$,(#4080),#4081); -#4083=IFCMATERIALPROFILE($,$,#17,#4075,$,$); -#4084=IFCCOLUMNTYPE('2DQhrwoYz2Xu3tWZrdmHcv',$,'114.3-6.0',$,$,$,$,$,$,$); -#4085=IFCMATERIALPROFILESET($,$,(#4087),$); -#4086=IFCRELASSOCIATESMATERIAL('1IgHVw8IL9wAD7qJbgq4KA',$,$,$,(#4084),#4085); -#4087=IFCMATERIALPROFILE($,$,#17,#4075,$,$); -#4088=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,6.3); -#4089=IFCBEAMTYPE('2$tMws6I99XxQeXQUdhSmX',$,'114.3-6.3',$,$,$,$,$,$,$); -#4090=IFCMATERIALPROFILESET($,$,(#4092),$); -#4091=IFCRELASSOCIATESMATERIAL('3Pnd9vfwj8vQH4jJzIc0RK',$,$,$,(#4089),#4090); -#4092=IFCMATERIALPROFILE($,$,#17,#4088,$,$); -#4093=IFCMEMBERTYPE('34mjkcd7HFIxLV2mKZd4Zr',$,'114.3-6.3',$,$,$,$,$,$,$); -#4094=IFCMATERIALPROFILESET($,$,(#4096),$); -#4095=IFCRELASSOCIATESMATERIAL('328eU7piP50uSQfa0lgcGc',$,$,$,(#4093),#4094); -#4096=IFCMATERIALPROFILE($,$,#17,#4088,$,$); -#4097=IFCCOLUMNTYPE('3M$mb8MTTFNgUvqPrnL503',$,'114.3-6.3',$,$,$,$,$,$,$); -#4098=IFCMATERIALPROFILESET($,$,(#4100),$); -#4099=IFCRELASSOCIATESMATERIAL('0bzjSOAyTD_RB1yXv2FXOG',$,$,$,(#4097),#4098); -#4100=IFCMATERIALPROFILE($,$,#17,#4088,$,$); -#4101=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,8.); -#4102=IFCBEAMTYPE('0kgucHHRvCXBdSKoHKRJl1',$,'114.3-8.0',$,$,$,$,$,$,$); -#4103=IFCMATERIALPROFILESET($,$,(#4105),$); -#4104=IFCRELASSOCIATESMATERIAL('0EjEd_QeTB_factn5Kb2m8',$,$,$,(#4102),#4103); -#4105=IFCMATERIALPROFILE($,$,#17,#4101,$,$); -#4106=IFCMEMBERTYPE('3bPg1xv6L0NR1mEwOCE7k4',$,'114.3-8.0',$,$,$,$,$,$,$); -#4107=IFCMATERIALPROFILESET($,$,(#4109),$); -#4108=IFCRELASSOCIATESMATERIAL('04Bj9J0_58xPSWZOG5dOfy',$,$,$,(#4106),#4107); -#4109=IFCMATERIALPROFILE($,$,#17,#4101,$,$); -#4110=IFCCOLUMNTYPE('0TQ_kga3XC_98v_rDJr88g',$,'114.3-8.0',$,$,$,$,$,$,$); -#4111=IFCMATERIALPROFILESET($,$,(#4113),$); -#4112=IFCRELASSOCIATESMATERIAL('1rGi0k2_v6pPI0Mm02s5RU',$,$,$,(#4110),#4111); -#4113=IFCMATERIALPROFILE($,$,#17,#4101,$,$); -#4114=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,57.15,10.); -#4115=IFCBEAMTYPE('0e4Z5qp7f6Hhth1VnNqtHR',$,'114.3-10.0',$,$,$,$,$,$,$); -#4116=IFCMATERIALPROFILESET($,$,(#4118),$); -#4117=IFCRELASSOCIATESMATERIAL('3Qk9FwsR169Q7ZafgrfVcU',$,$,$,(#4115),#4116); -#4118=IFCMATERIALPROFILE($,$,#17,#4114,$,$); -#4119=IFCMEMBERTYPE('2aIZnfuiH3Mf8o_PsHuLfF',$,'114.3-10.0',$,$,$,$,$,$,$); -#4120=IFCMATERIALPROFILESET($,$,(#4122),$); -#4121=IFCRELASSOCIATESMATERIAL('1K9Ffwgi9EdfEWjs265JjF',$,$,$,(#4119),#4120); -#4122=IFCMATERIALPROFILE($,$,#17,#4114,$,$); -#4123=IFCCOLUMNTYPE('0ZoHtgDzP5EPwmVcwI5FTD',$,'114.3-10.0',$,$,$,$,$,$,$); -#4124=IFCMATERIALPROFILESET($,$,(#4126),$); -#4125=IFCRELASSOCIATESMATERIAL('22AK2G0SbAkB1cVSUI2eWH',$,$,$,(#4123),#4124); -#4126=IFCMATERIALPROFILE($,$,#17,#4114,$,$); -#4127=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,4.); -#4128=IFCBEAMTYPE('26vqfMHczExhAw2fWafzuy',$,'139.7-4.0',$,$,$,$,$,$,$); -#4129=IFCMATERIALPROFILESET($,$,(#4131),$); -#4130=IFCRELASSOCIATESMATERIAL('3rBwQsOmH3Ov$saefXz1CB',$,$,$,(#4128),#4129); -#4131=IFCMATERIALPROFILE($,$,#17,#4127,$,$); -#4132=IFCMEMBERTYPE('1vACmvsQr4dBfgciW899ie',$,'139.7-4.0',$,$,$,$,$,$,$); -#4133=IFCMATERIALPROFILESET($,$,(#4135),$); -#4134=IFCRELASSOCIATESMATERIAL('2Zaa8yCtj68hDxSp8sxRkT',$,$,$,(#4132),#4133); -#4135=IFCMATERIALPROFILE($,$,#17,#4127,$,$); -#4136=IFCCOLUMNTYPE('1Dd_0ZD3bFgRJhp$VVY5JU',$,'139.7-4.0',$,$,$,$,$,$,$); -#4137=IFCMATERIALPROFILESET($,$,(#4139),$); -#4138=IFCRELASSOCIATESMATERIAL('2vhMoGUFH3r94Z8b3E4qH2',$,$,$,(#4136),#4137); -#4139=IFCMATERIALPROFILE($,$,#17,#4127,$,$); -#4140=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,5.); -#4141=IFCBEAMTYPE('3441p3QAD6efpzVxxU8rYH',$,'139.7-5.0',$,$,$,$,$,$,$); -#4142=IFCMATERIALPROFILESET($,$,(#4144),$); -#4143=IFCRELASSOCIATESMATERIAL('0$83kNjrfFgQZCVNHHHtLV',$,$,$,(#4141),#4142); -#4144=IFCMATERIALPROFILE($,$,#17,#4140,$,$); -#4145=IFCMEMBERTYPE('3TC05spCb8EQibPxH6gBle',$,'139.7-5.0',$,$,$,$,$,$,$); -#4146=IFCMATERIALPROFILESET($,$,(#4148),$); -#4147=IFCRELASSOCIATESMATERIAL('0JIp5yn8n37hw7tCY6cx5A',$,$,$,(#4145),#4146); -#4148=IFCMATERIALPROFILE($,$,#17,#4140,$,$); -#4149=IFCCOLUMNTYPE('0owqlG0LL8AANCRom6Hea_',$,'139.7-5.0',$,$,$,$,$,$,$); -#4150=IFCMATERIALPROFILESET($,$,(#4152),$); -#4151=IFCRELASSOCIATESMATERIAL('05$kCPRF9DzATSUgY011UT',$,$,$,(#4149),#4150); -#4152=IFCMATERIALPROFILE($,$,#17,#4140,$,$); -#4153=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,6.); -#4154=IFCBEAMTYPE('3frx$TM0XBg9Fhl_RUSmZi',$,'139.7-6.0',$,$,$,$,$,$,$); -#4155=IFCMATERIALPROFILESET($,$,(#4157),$); -#4156=IFCRELASSOCIATESMATERIAL('0klxQYQF94sxyXJUjAB5jU',$,$,$,(#4154),#4155); -#4157=IFCMATERIALPROFILE($,$,#17,#4153,$,$); -#4158=IFCMEMBERTYPE('1BTqCi52bF3uN2uUIRoDx0',$,'139.7-6.0',$,$,$,$,$,$,$); -#4159=IFCMATERIALPROFILESET($,$,(#4161),$); -#4160=IFCRELASSOCIATESMATERIAL('12DE1D9hf4486cYW6HQA$W',$,$,$,(#4158),#4159); -#4161=IFCMATERIALPROFILE($,$,#17,#4153,$,$); -#4162=IFCCOLUMNTYPE('2zGuTI1vjDZBXBk$TStIH4',$,'139.7-6.0',$,$,$,$,$,$,$); -#4163=IFCMATERIALPROFILESET($,$,(#4165),$); -#4164=IFCRELASSOCIATESMATERIAL('3wOWw2pkz9U82dJo2bZ0Yi',$,$,$,(#4162),#4163); -#4165=IFCMATERIALPROFILE($,$,#17,#4153,$,$); -#4166=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,6.3); -#4167=IFCBEAMTYPE('3_bxTgklL3G9i9hgwbQ9GT',$,'139.7-6.3',$,$,$,$,$,$,$); -#4168=IFCMATERIALPROFILESET($,$,(#4170),$); -#4169=IFCRELASSOCIATESMATERIAL('14N4dSzRH709XDnQDnuDlN',$,$,$,(#4167),#4168); -#4170=IFCMATERIALPROFILE($,$,#17,#4166,$,$); -#4171=IFCMEMBERTYPE('3Lmt_92QXC9h90koJoN42g',$,'139.7-6.3',$,$,$,$,$,$,$); -#4172=IFCMATERIALPROFILESET($,$,(#4174),$); -#4173=IFCRELASSOCIATESMATERIAL('37_73GEOP2hwJfZ5dFGGIJ',$,$,$,(#4171),#4172); -#4174=IFCMATERIALPROFILE($,$,#17,#4166,$,$); -#4175=IFCCOLUMNTYPE('1aZEUMrlvCbfbF_VO6NPYN',$,'139.7-6.3',$,$,$,$,$,$,$); -#4176=IFCMATERIALPROFILESET($,$,(#4178),$); -#4177=IFCRELASSOCIATESMATERIAL('3Mvp2v5BbC9fp68YhaZXuV',$,$,$,(#4175),#4176); -#4178=IFCMATERIALPROFILE($,$,#17,#4166,$,$); -#4179=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,8.); -#4180=IFCBEAMTYPE('3LNKZXzLX4MwN0qPBva_Gk',$,'139.7-8.0',$,$,$,$,$,$,$); -#4181=IFCMATERIALPROFILESET($,$,(#4183),$); -#4182=IFCRELASSOCIATESMATERIAL('1a2mkXeqjF5uPXQdkh5_2a',$,$,$,(#4180),#4181); -#4183=IFCMATERIALPROFILE($,$,#17,#4179,$,$); -#4184=IFCMEMBERTYPE('1PQDQQDEr04e6d_TyN7FxS',$,'139.7-8.0',$,$,$,$,$,$,$); -#4185=IFCMATERIALPROFILESET($,$,(#4187),$); -#4186=IFCRELASSOCIATESMATERIAL('2jq7UMetT5UQWJaARb4b1m',$,$,$,(#4184),#4185); -#4187=IFCMATERIALPROFILE($,$,#17,#4179,$,$); -#4188=IFCCOLUMNTYPE('1eraQ37Lb4g8ujDtgjMKgX',$,'139.7-8.0',$,$,$,$,$,$,$); -#4189=IFCMATERIALPROFILESET($,$,(#4191),$); -#4190=IFCRELASSOCIATESMATERIAL('2A3A1mQyzFX9_LfnLY_Wyp',$,$,$,(#4188),#4189); -#4191=IFCMATERIALPROFILE($,$,#17,#4179,$,$); -#4192=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,10.); -#4193=IFCBEAMTYPE('37YT4A7GL4dxOaWYMDhksa',$,'139.7-10.0',$,$,$,$,$,$,$); -#4194=IFCMATERIALPROFILESET($,$,(#4196),$); -#4195=IFCRELASSOCIATESMATERIAL('0RvCQtsRnAI9hesPtC4dcj',$,$,$,(#4193),#4194); -#4196=IFCMATERIALPROFILE($,$,#17,#4192,$,$); -#4197=IFCMEMBERTYPE('3pO6f0Coj4ge41dZOFZ71a',$,'139.7-10.0',$,$,$,$,$,$,$); -#4198=IFCMATERIALPROFILESET($,$,(#4200),$); -#4199=IFCRELASSOCIATESMATERIAL('22bKQ_w3fAiw4BJ_q9MueE',$,$,$,(#4197),#4198); -#4200=IFCMATERIALPROFILE($,$,#17,#4192,$,$); -#4201=IFCCOLUMNTYPE('0HsGuDwFP4bhZSz25IzwOJ',$,'139.7-10.0',$,$,$,$,$,$,$); -#4202=IFCMATERIALPROFILESET($,$,(#4204),$); -#4203=IFCRELASSOCIATESMATERIAL('2mpd0D6GHBDOiPpXb2DFUX',$,$,$,(#4201),#4202); -#4204=IFCMATERIALPROFILE($,$,#17,#4192,$,$); -#4205=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,12.); -#4206=IFCBEAMTYPE('36HX4rSZvDpwPe6l3wC8ML',$,'139.7-12.0',$,$,$,$,$,$,$); -#4207=IFCMATERIALPROFILESET($,$,(#4209),$); -#4208=IFCRELASSOCIATESMATERIAL('2aaCImQY12ihkZlN74Vdqw',$,$,$,(#4206),#4207); -#4209=IFCMATERIALPROFILE($,$,#17,#4205,$,$); -#4210=IFCMEMBERTYPE('1VEySjzTrE2wwv3kCctnVt',$,'139.7-12.0',$,$,$,$,$,$,$); -#4211=IFCMATERIALPROFILESET($,$,(#4213),$); -#4212=IFCRELASSOCIATESMATERIAL('2heNV2I8P0rRuoHom_KFr$',$,$,$,(#4210),#4211); -#4213=IFCMATERIALPROFILE($,$,#17,#4205,$,$); -#4214=IFCCOLUMNTYPE('1bi7jc1jb3Yh5HpoUWoPUa',$,'139.7-12.0',$,$,$,$,$,$,$); -#4215=IFCMATERIALPROFILESET($,$,(#4217),$); -#4216=IFCRELASSOCIATESMATERIAL('33bJ6gNMXBHAOf90ubYV7p',$,$,$,(#4214),#4215); -#4217=IFCMATERIALPROFILE($,$,#17,#4205,$,$); -#4218=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,69.85,12.5); -#4219=IFCBEAMTYPE('3bgQi9WeX6dB1RaFm1azZ8',$,'139.7-12.5',$,$,$,$,$,$,$); -#4220=IFCMATERIALPROFILESET($,$,(#4222),$); -#4221=IFCRELASSOCIATESMATERIAL('3ioDXSpmj7NOZn90lyR4Tq',$,$,$,(#4219),#4220); -#4222=IFCMATERIALPROFILE($,$,#17,#4218,$,$); -#4223=IFCMEMBERTYPE('3sPIdMtSf2k9YOvqw$Jtd4',$,'139.7-12.5',$,$,$,$,$,$,$); -#4224=IFCMATERIALPROFILESET($,$,(#4226),$); -#4225=IFCRELASSOCIATESMATERIAL('138$OWmZrCCxm4VcQhnFfT',$,$,$,(#4223),#4224); -#4226=IFCMATERIALPROFILE($,$,#17,#4218,$,$); -#4227=IFCCOLUMNTYPE('235$6aCKHFzB_HgghOUauK',$,'139.7-12.5',$,$,$,$,$,$,$); -#4228=IFCMATERIALPROFILESET($,$,(#4230),$); -#4229=IFCRELASSOCIATESMATERIAL('3eJtGajGv6GBLTSKsNgWp4',$,$,$,(#4227),#4228); -#4230=IFCMATERIALPROFILE($,$,#17,#4218,$,$); -#4231=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,4.); -#4232=IFCBEAMTYPE('1_k_oj8011Eezgm2cFAoRD',$,'168.3-4.0',$,$,$,$,$,$,$); -#4233=IFCMATERIALPROFILESET($,$,(#4235),$); -#4234=IFCRELASSOCIATESMATERIAL('3G6OWaIIz8NO4fA2LkwMS_',$,$,$,(#4232),#4233); -#4235=IFCMATERIALPROFILE($,$,#17,#4231,$,$); -#4236=IFCMEMBERTYPE('0mEph6Aiv2hgyTl3sGJvc_',$,'168.3-4.0',$,$,$,$,$,$,$); -#4237=IFCMATERIALPROFILESET($,$,(#4239),$); -#4238=IFCRELASSOCIATESMATERIAL('2SjIbMJGTFqOJKt33_ZV$T',$,$,$,(#4236),#4237); -#4239=IFCMATERIALPROFILE($,$,#17,#4231,$,$); -#4240=IFCCOLUMNTYPE('1UASRQ2db0LRjC14a2W$N8',$,'168.3-4.0',$,$,$,$,$,$,$); -#4241=IFCMATERIALPROFILESET($,$,(#4243),$); -#4242=IFCRELASSOCIATESMATERIAL('0ju5UUZxTF$RHxad5GHPpW',$,$,$,(#4240),#4241); -#4243=IFCMATERIALPROFILE($,$,#17,#4231,$,$); -#4244=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,5.); -#4245=IFCBEAMTYPE('2nTXheYnf6sB9MmHGL6cL4',$,'168.3-5.0',$,$,$,$,$,$,$); -#4246=IFCMATERIALPROFILESET($,$,(#4248),$); -#4247=IFCRELASSOCIATESMATERIAL('2BdvCvPLr7ovmcXxVo7FEy',$,$,$,(#4245),#4246); -#4248=IFCMATERIALPROFILE($,$,#17,#4244,$,$); -#4249=IFCMEMBERTYPE('0NwX7SluX5YPABFCWU$GTC',$,'168.3-5.0',$,$,$,$,$,$,$); -#4250=IFCMATERIALPROFILESET($,$,(#4252),$); -#4251=IFCRELASSOCIATESMATERIAL('1pAwc216v6ouH$MLtE_N0A',$,$,$,(#4249),#4250); -#4252=IFCMATERIALPROFILE($,$,#17,#4244,$,$); -#4253=IFCCOLUMNTYPE('1VEAOEwGT7X9alsGB_8M7G',$,'168.3-5.0',$,$,$,$,$,$,$); -#4254=IFCMATERIALPROFILESET($,$,(#4256),$); -#4255=IFCRELASSOCIATESMATERIAL('0Wvwh11yH3JgBBVMVNyNxz',$,$,$,(#4253),#4254); -#4256=IFCMATERIALPROFILE($,$,#17,#4244,$,$); -#4257=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,6.3); -#4258=IFCBEAMTYPE('0kQ4PRx_53yP25tuPp$PGc',$,'168.3-6.3',$,$,$,$,$,$,$); -#4259=IFCMATERIALPROFILESET($,$,(#4261),$); -#4260=IFCRELASSOCIATESMATERIAL('0Zj9172lXE9gTP6xkPlvqq',$,$,$,(#4258),#4259); -#4261=IFCMATERIALPROFILE($,$,#17,#4257,$,$); -#4262=IFCMEMBERTYPE('2ySBCT$mHEOAgcJQu5F$g9',$,'168.3-6.3',$,$,$,$,$,$,$); -#4263=IFCMATERIALPROFILESET($,$,(#4265),$); -#4264=IFCRELASSOCIATESMATERIAL('3Pueu9dpzEpOVtGZnkKQgr',$,$,$,(#4262),#4263); -#4265=IFCMATERIALPROFILE($,$,#17,#4257,$,$); -#4266=IFCCOLUMNTYPE('21MVOyinz28fTNzYCP6HCf',$,'168.3-6.3',$,$,$,$,$,$,$); -#4267=IFCMATERIALPROFILESET($,$,(#4269),$); -#4268=IFCRELASSOCIATESMATERIAL('31okVgDQH2Aea91O6IpUpd',$,$,$,(#4266),#4267); -#4269=IFCMATERIALPROFILE($,$,#17,#4257,$,$); -#4270=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,8.); -#4271=IFCBEAMTYPE('1Lg9YMlRT3IfM2mgEKPFxg',$,'168.3-8.0',$,$,$,$,$,$,$); -#4272=IFCMATERIALPROFILESET($,$,(#4274),$); -#4273=IFCRELASSOCIATESMATERIAL('1IaiOTXkv2_PS4Ui8f86np',$,$,$,(#4271),#4272); -#4274=IFCMATERIALPROFILE($,$,#17,#4270,$,$); -#4275=IFCMEMBERTYPE('16e7EYwMf7Yww0jZ4dLIN2',$,'168.3-8.0',$,$,$,$,$,$,$); -#4276=IFCMATERIALPROFILESET($,$,(#4278),$); -#4277=IFCRELASSOCIATESMATERIAL('0U7yYQQQjCzOI3frocwIrA',$,$,$,(#4275),#4276); -#4278=IFCMATERIALPROFILE($,$,#17,#4270,$,$); -#4279=IFCCOLUMNTYPE('3QeOBuHnn9HBc3yYRys566',$,'168.3-8.0',$,$,$,$,$,$,$); -#4280=IFCMATERIALPROFILESET($,$,(#4282),$); -#4281=IFCRELASSOCIATESMATERIAL('15jSf0B8z4RhcGInlGvtje',$,$,$,(#4279),#4280); -#4282=IFCMATERIALPROFILE($,$,#17,#4270,$,$); -#4283=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,10.); -#4284=IFCBEAMTYPE('2LPU4GlEj2KwQkapqRRIP_',$,'168.3-10.0',$,$,$,$,$,$,$); -#4285=IFCMATERIALPROFILESET($,$,(#4287),$); -#4286=IFCRELASSOCIATESMATERIAL('3UNG4fdj1CvBDk_D7XDflD',$,$,$,(#4284),#4285); -#4287=IFCMATERIALPROFILE($,$,#17,#4283,$,$); -#4288=IFCMEMBERTYPE('2c0hiyuDX4dANBpaNQ9hQc',$,'168.3-10.0',$,$,$,$,$,$,$); -#4289=IFCMATERIALPROFILESET($,$,(#4291),$); -#4290=IFCRELASSOCIATESMATERIAL('1l8g2JC_L1Lh69PGzQ6woU',$,$,$,(#4288),#4289); -#4291=IFCMATERIALPROFILE($,$,#17,#4283,$,$); -#4292=IFCCOLUMNTYPE('1QKgPhMq9EdeKe7sSdBap1',$,'168.3-10.0',$,$,$,$,$,$,$); -#4293=IFCMATERIALPROFILESET($,$,(#4295),$); -#4294=IFCRELASSOCIATESMATERIAL('0Pxc3BJx58yurkeBkG1t_e',$,$,$,(#4292),#4293); -#4295=IFCMATERIALPROFILE($,$,#17,#4283,$,$); -#4296=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,84.15,12.5); -#4297=IFCBEAMTYPE('2AJ_r8DQ50rOHE3pu2q9Vi',$,'168.3-12.5',$,$,$,$,$,$,$); -#4298=IFCMATERIALPROFILESET($,$,(#4300),$); -#4299=IFCRELASSOCIATESMATERIAL('3z0BEQJ$51y99hLiLXEnMb',$,$,$,(#4297),#4298); -#4300=IFCMATERIALPROFILE($,$,#17,#4296,$,$); -#4301=IFCMEMBERTYPE('1mXfKPuKD66RJlXjcQztKs',$,'168.3-12.5',$,$,$,$,$,$,$); -#4302=IFCMATERIALPROFILESET($,$,(#4304),$); -#4303=IFCRELASSOCIATESMATERIAL('1DS2vS2Pz3heBX9FR$UNoH',$,$,$,(#4301),#4302); -#4304=IFCMATERIALPROFILE($,$,#17,#4296,$,$); -#4305=IFCCOLUMNTYPE('2ejbdr6kb2DOUNHvf53mdW',$,'168.3-12.5',$,$,$,$,$,$,$); -#4306=IFCMATERIALPROFILESET($,$,(#4308),$); -#4307=IFCRELASSOCIATESMATERIAL('3FjQQ309vBxQdN4gO6XFSH',$,$,$,(#4305),#4306); -#4308=IFCMATERIALPROFILE($,$,#17,#4296,$,$); -#4309=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,88.9,5.); -#4310=IFCBEAMTYPE('0GUAeHxM11Zgr60NbL2hX0',$,'177.8-5.0',$,$,$,$,$,$,$); -#4311=IFCMATERIALPROFILESET($,$,(#4313),$); -#4312=IFCRELASSOCIATESMATERIAL('3YeSXtaxT1uAj5myOM_tDB',$,$,$,(#4310),#4311); -#4313=IFCMATERIALPROFILE($,$,#17,#4309,$,$); -#4314=IFCMEMBERTYPE('3Y8Rfy2_j9bATDrLEKYouW',$,'177.8-5.0',$,$,$,$,$,$,$); -#4315=IFCMATERIALPROFILESET($,$,(#4317),$); -#4316=IFCRELASSOCIATESMATERIAL('2OZ6ozLPH66wGXB5MEo6II',$,$,$,(#4314),#4315); -#4317=IFCMATERIALPROFILE($,$,#17,#4309,$,$); -#4318=IFCCOLUMNTYPE('387KaWEBjDQgzz1imbOHSc',$,'177.8-5.0',$,$,$,$,$,$,$); -#4319=IFCMATERIALPROFILESET($,$,(#4321),$); -#4320=IFCRELASSOCIATESMATERIAL('21xP0wEH93CvxdCQ2d8BLV',$,$,$,(#4318),#4319); -#4321=IFCMATERIALPROFILE($,$,#17,#4309,$,$); -#4322=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,88.9,6.3); -#4323=IFCBEAMTYPE('2aZ60Mv3P5SQV$a7ECFgho',$,'177.8-6.3',$,$,$,$,$,$,$); -#4324=IFCMATERIALPROFILESET($,$,(#4326),$); -#4325=IFCRELASSOCIATESMATERIAL('3W$EBPpRvCs8x$DyQvsNk7',$,$,$,(#4323),#4324); -#4326=IFCMATERIALPROFILE($,$,#17,#4322,$,$); -#4327=IFCMEMBERTYPE('2eStnVTDb4igzTzeb5QleZ',$,'177.8-6.3',$,$,$,$,$,$,$); -#4328=IFCMATERIALPROFILESET($,$,(#4330),$); -#4329=IFCRELASSOCIATESMATERIAL('3n88z27TH4RACHpWSVIgYl',$,$,$,(#4327),#4328); -#4330=IFCMATERIALPROFILE($,$,#17,#4322,$,$); -#4331=IFCCOLUMNTYPE('3_CcgTmCD3hQDU6Gcdabxh',$,'177.8-6.3',$,$,$,$,$,$,$); -#4332=IFCMATERIALPROFILESET($,$,(#4334),$); -#4333=IFCRELASSOCIATESMATERIAL('3l8FkYaML5$86k7LPKMMo1',$,$,$,(#4331),#4332); -#4334=IFCMATERIALPROFILE($,$,#17,#4322,$,$); -#4335=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,88.9,8.); -#4336=IFCBEAMTYPE('2NzCtmj95FauHagBW3X39b',$,'177.8-8.0',$,$,$,$,$,$,$); -#4337=IFCMATERIALPROFILESET($,$,(#4339),$); -#4338=IFCRELASSOCIATESMATERIAL('3oQE3E0E9C9ukUyAKh$uy9',$,$,$,(#4336),#4337); -#4339=IFCMATERIALPROFILE($,$,#17,#4335,$,$); -#4340=IFCMEMBERTYPE('0a199LGvj2_gjjUuYFTgtQ',$,'177.8-8.0',$,$,$,$,$,$,$); -#4341=IFCMATERIALPROFILESET($,$,(#4343),$); -#4342=IFCRELASSOCIATESMATERIAL('0$EvFmnEn8PQIftxE1c8yi',$,$,$,(#4340),#4341); -#4343=IFCMATERIALPROFILE($,$,#17,#4335,$,$); -#4344=IFCCOLUMNTYPE('3BK$OGezTCYBgMTCRzdNji',$,'177.8-8.0',$,$,$,$,$,$,$); -#4345=IFCMATERIALPROFILESET($,$,(#4347),$); -#4346=IFCRELASSOCIATESMATERIAL('2PcozkjJvBhvfPJBw2P$aG',$,$,$,(#4344),#4345); -#4347=IFCMATERIALPROFILE($,$,#17,#4335,$,$); -#4348=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,88.9,10.); -#4349=IFCBEAMTYPE('3WCeiJ7dn0nQ46L6vdjdWl',$,'177.8-10.0',$,$,$,$,$,$,$); -#4350=IFCMATERIALPROFILESET($,$,(#4352),$); -#4351=IFCRELASSOCIATESMATERIAL('0_cCghAlnE7OqPMuWslob7',$,$,$,(#4349),#4350); -#4352=IFCMATERIALPROFILE($,$,#17,#4348,$,$); -#4353=IFCMEMBERTYPE('3mnn55l1X89ek$qFB3CctM',$,'177.8-10.0',$,$,$,$,$,$,$); -#4354=IFCMATERIALPROFILESET($,$,(#4356),$); -#4355=IFCRELASSOCIATESMATERIAL('1ZkEqxJenAbhXLt66neCdL',$,$,$,(#4353),#4354); -#4356=IFCMATERIALPROFILE($,$,#17,#4348,$,$); -#4357=IFCCOLUMNTYPE('3TEo1SkSLCBeBRu6cJpq_x',$,'177.8-10.0',$,$,$,$,$,$,$); -#4358=IFCMATERIALPROFILESET($,$,(#4360),$); -#4359=IFCRELASSOCIATESMATERIAL('2_O6Absv9DAwCApiWU1uAI',$,$,$,(#4357),#4358); -#4360=IFCMATERIALPROFILE($,$,#17,#4348,$,$); -#4361=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,88.9,12.5); -#4362=IFCBEAMTYPE('3cIB6X9Lr3CvtoZl9asKwx',$,'177.8-12.5',$,$,$,$,$,$,$); -#4363=IFCMATERIALPROFILESET($,$,(#4365),$); -#4364=IFCRELASSOCIATESMATERIAL('3pUkKwQVD6zhJwRUL6dZHc',$,$,$,(#4362),#4363); -#4365=IFCMATERIALPROFILE($,$,#17,#4361,$,$); -#4366=IFCMEMBERTYPE('1qEWuLSRv5VhmHkVOmG0ca',$,'177.8-12.5',$,$,$,$,$,$,$); -#4367=IFCMATERIALPROFILESET($,$,(#4369),$); -#4368=IFCRELASSOCIATESMATERIAL('3lzoCtzl970PWZ$x9DfG$9',$,$,$,(#4366),#4367); -#4369=IFCMATERIALPROFILE($,$,#17,#4361,$,$); -#4370=IFCCOLUMNTYPE('1Mx1PncwDC$viO4wpPkr_7',$,'177.8-12.5',$,$,$,$,$,$,$); -#4371=IFCMATERIALPROFILESET($,$,(#4373),$); -#4372=IFCRELASSOCIATESMATERIAL('3wqqMFyl577uAn$EkSyXZS',$,$,$,(#4370),#4371); -#4373=IFCMATERIALPROFILE($,$,#17,#4361,$,$); -#4374=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,5.); -#4375=IFCBEAMTYPE('2Wo90ULLL1gADMjb5lay8c',$,'193.7-5.0',$,$,$,$,$,$,$); -#4376=IFCMATERIALPROFILESET($,$,(#4378),$); -#4377=IFCRELASSOCIATESMATERIAL('0jnuJgIov3PvuH5O2Edz5U',$,$,$,(#4375),#4376); -#4378=IFCMATERIALPROFILE($,$,#17,#4374,$,$); -#4379=IFCMEMBERTYPE('3Bn5$2Sub33xOetvCofe99',$,'193.7-5.0',$,$,$,$,$,$,$); -#4380=IFCMATERIALPROFILESET($,$,(#4382),$); -#4381=IFCRELASSOCIATESMATERIAL('1PUopI2$DD0B6CxlID_UnZ',$,$,$,(#4379),#4380); -#4382=IFCMATERIALPROFILE($,$,#17,#4374,$,$); -#4383=IFCCOLUMNTYPE('3ioIG38G92f9fs1zg2PY2m',$,'193.7-5.0',$,$,$,$,$,$,$); -#4384=IFCMATERIALPROFILESET($,$,(#4386),$); -#4385=IFCRELASSOCIATESMATERIAL('3xseTLtEbDyPXMHdChdWc5',$,$,$,(#4383),#4384); -#4386=IFCMATERIALPROFILE($,$,#17,#4374,$,$); -#4387=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,6.3); -#4388=IFCBEAMTYPE('1DjKCUrVjEweqWnHQZzy34',$,'193.7-6.3',$,$,$,$,$,$,$); -#4389=IFCMATERIALPROFILESET($,$,(#4391),$); -#4390=IFCRELASSOCIATESMATERIAL('2wcLIxgTz2qfctzvLv_yQ8',$,$,$,(#4388),#4389); -#4391=IFCMATERIALPROFILE($,$,#17,#4387,$,$); -#4392=IFCMEMBERTYPE('0RK3EAo8L18uOvMXlqzEEA',$,'193.7-6.3',$,$,$,$,$,$,$); -#4393=IFCMATERIALPROFILESET($,$,(#4395),$); -#4394=IFCRELASSOCIATESMATERIAL('3i94KTFhv3XhDNtAwx$RZ_',$,$,$,(#4392),#4393); -#4395=IFCMATERIALPROFILE($,$,#17,#4387,$,$); -#4396=IFCCOLUMNTYPE('2tkdDEZ0z85gIyZZ0YdHCK',$,'193.7-6.3',$,$,$,$,$,$,$); -#4397=IFCMATERIALPROFILESET($,$,(#4399),$); -#4398=IFCRELASSOCIATESMATERIAL('3C5brAGWj0Ew2WrHyWL4y_',$,$,$,(#4396),#4397); -#4399=IFCMATERIALPROFILE($,$,#17,#4387,$,$); -#4400=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,8.); -#4401=IFCBEAMTYPE('1$uysfhZ9Aj9mPopmDoJAg',$,'193.7-8.0',$,$,$,$,$,$,$); -#4402=IFCMATERIALPROFILESET($,$,(#4404),$); -#4403=IFCRELASSOCIATESMATERIAL('3kqsHrfN9BXAd42x7JOKEW',$,$,$,(#4401),#4402); -#4404=IFCMATERIALPROFILE($,$,#17,#4400,$,$); -#4405=IFCMEMBERTYPE('1Hu$_JblP8cghc8dalJPff',$,'193.7-8.0',$,$,$,$,$,$,$); -#4406=IFCMATERIALPROFILESET($,$,(#4408),$); -#4407=IFCRELASSOCIATESMATERIAL('3qjsnepJP8l8ANKnAq8_w6',$,$,$,(#4405),#4406); -#4408=IFCMATERIALPROFILE($,$,#17,#4400,$,$); -#4409=IFCCOLUMNTYPE('0JctajY5bE6P44373ABPSu',$,'193.7-8.0',$,$,$,$,$,$,$); -#4410=IFCMATERIALPROFILESET($,$,(#4412),$); -#4411=IFCRELASSOCIATESMATERIAL('2AguyU5C576hMkl3SyA$BO',$,$,$,(#4409),#4410); -#4412=IFCMATERIALPROFILE($,$,#17,#4400,$,$); -#4413=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,10.); -#4414=IFCBEAMTYPE('0br3GbhCj5AhxxFG5mcF37',$,'193.7-10.0',$,$,$,$,$,$,$); -#4415=IFCMATERIALPROFILESET($,$,(#4417),$); -#4416=IFCRELASSOCIATESMATERIAL('2kwh5bCybA0RH7DQ4fZT_K',$,$,$,(#4414),#4415); -#4417=IFCMATERIALPROFILE($,$,#17,#4413,$,$); -#4418=IFCMEMBERTYPE('3tUInsNI9Av8bk5i4bUYNx',$,'193.7-10.0',$,$,$,$,$,$,$); -#4419=IFCMATERIALPROFILESET($,$,(#4421),$); -#4420=IFCRELASSOCIATESMATERIAL('1vPVWiZpD7gg0IUADofXWX',$,$,$,(#4418),#4419); -#4421=IFCMATERIALPROFILE($,$,#17,#4413,$,$); -#4422=IFCCOLUMNTYPE('1iEFvsIkz3_u7TmUGT2HeW',$,'193.7-10.0',$,$,$,$,$,$,$); -#4423=IFCMATERIALPROFILESET($,$,(#4425),$); -#4424=IFCRELASSOCIATESMATERIAL('0CVhFjNav0tuXM5RnF0qmf',$,$,$,(#4422),#4423); -#4425=IFCMATERIALPROFILE($,$,#17,#4413,$,$); -#4426=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,12.5); -#4427=IFCBEAMTYPE('1IghcED351ug0hFuZITJMz',$,'193.7-12.5',$,$,$,$,$,$,$); -#4428=IFCMATERIALPROFILESET($,$,(#4430),$); -#4429=IFCRELASSOCIATESMATERIAL('1HlB6gxOH3yO56Fit7wC0f',$,$,$,(#4427),#4428); -#4430=IFCMATERIALPROFILE($,$,#17,#4426,$,$); -#4431=IFCMEMBERTYPE('0T9NMoQyv0quitJY7wwp5e',$,'193.7-12.5',$,$,$,$,$,$,$); -#4432=IFCMATERIALPROFILESET($,$,(#4434),$); -#4433=IFCRELASSOCIATESMATERIAL('36CaYGouLCMRVZvR4cEbMw',$,$,$,(#4431),#4432); -#4434=IFCMATERIALPROFILE($,$,#17,#4426,$,$); -#4435=IFCCOLUMNTYPE('0rNhRTMMD13u9ZWOCi3yf5',$,'193.7-12.5',$,$,$,$,$,$,$); -#4436=IFCMATERIALPROFILESET($,$,(#4438),$); -#4437=IFCRELASSOCIATESMATERIAL('3wBG38Yb19ruMYo$TEo4uJ',$,$,$,(#4435),#4436); -#4438=IFCMATERIALPROFILE($,$,#17,#4426,$,$); -#4439=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,14.2); -#4440=IFCBEAMTYPE('2M4nlrDlbDxxC_OXOy4uWv',$,'193.7-14.2',$,$,$,$,$,$,$); -#4441=IFCMATERIALPROFILESET($,$,(#4443),$); -#4442=IFCRELASSOCIATESMATERIAL('0U2ix4srr1HfvCn6Agtf0i',$,$,$,(#4440),#4441); -#4443=IFCMATERIALPROFILE($,$,#17,#4439,$,$); -#4444=IFCMEMBERTYPE('1HrK3TSOT1RAmKhIA4FpI1',$,'193.7-14.2',$,$,$,$,$,$,$); -#4445=IFCMATERIALPROFILESET($,$,(#4447),$); -#4446=IFCRELASSOCIATESMATERIAL('32yKzKBhX0XuTGFaFCbQYr',$,$,$,(#4444),#4445); -#4447=IFCMATERIALPROFILE($,$,#17,#4439,$,$); -#4448=IFCCOLUMNTYPE('293elzyJT6rwem1MNm6_h8',$,'193.7-14.2',$,$,$,$,$,$,$); -#4449=IFCMATERIALPROFILESET($,$,(#4451),$); -#4450=IFCRELASSOCIATESMATERIAL('12FwNrEab2eAhq5sbWPEFU',$,$,$,(#4448),#4449); -#4451=IFCMATERIALPROFILE($,$,#17,#4439,$,$); -#4452=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,96.85,16.); -#4453=IFCBEAMTYPE('21Nm9OSYTBl8iXxVfgU9mx',$,'193.7-16.0',$,$,$,$,$,$,$); -#4454=IFCMATERIALPROFILESET($,$,(#4456),$); -#4455=IFCRELASSOCIATESMATERIAL('1RvMjPQ6XDtu_al09rfFeh',$,$,$,(#4453),#4454); -#4456=IFCMATERIALPROFILE($,$,#17,#4452,$,$); -#4457=IFCMEMBERTYPE('0C2RvQ3J9F1R0OpCRAKRLI',$,'193.7-16.0',$,$,$,$,$,$,$); -#4458=IFCMATERIALPROFILESET($,$,(#4460),$); -#4459=IFCRELASSOCIATESMATERIAL('1jkAqTDD94PgAoe$FuqLYM',$,$,$,(#4457),#4458); -#4460=IFCMATERIALPROFILE($,$,#17,#4452,$,$); -#4461=IFCCOLUMNTYPE('3wU40d1kbBhPClF4UnUm7b',$,'193.7-16.0',$,$,$,$,$,$,$); -#4462=IFCMATERIALPROFILESET($,$,(#4464),$); -#4463=IFCRELASSOCIATESMATERIAL('2RcLP9zSz8iAwlFmsR2tc6',$,$,$,(#4461),#4462); -#4464=IFCMATERIALPROFILE($,$,#17,#4452,$,$); -#4465=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,5.); -#4466=IFCBEAMTYPE('2t5W8JEyL6k8MCMov4ZyI$',$,'219.1-5.0',$,$,$,$,$,$,$); -#4467=IFCMATERIALPROFILESET($,$,(#4469),$); -#4468=IFCRELASSOCIATESMATERIAL('0y$_dYlNbBSxFa0_M__2Qc',$,$,$,(#4466),#4467); -#4469=IFCMATERIALPROFILE($,$,#17,#4465,$,$); -#4470=IFCMEMBERTYPE('08psG8OWjFo8e0koV0qDav',$,'219.1-5.0',$,$,$,$,$,$,$); -#4471=IFCMATERIALPROFILESET($,$,(#4473),$); -#4472=IFCRELASSOCIATESMATERIAL('3eQjYC3ij9cQDi6GcJCivf',$,$,$,(#4470),#4471); -#4473=IFCMATERIALPROFILE($,$,#17,#4465,$,$); -#4474=IFCCOLUMNTYPE('1QgVH1Qd9Fkwi20VJh$htu',$,'219.1-5.0',$,$,$,$,$,$,$); -#4475=IFCMATERIALPROFILESET($,$,(#4477),$); -#4476=IFCRELASSOCIATESMATERIAL('0o6HxSaAbDieYAF4R3VuWS',$,$,$,(#4474),#4475); -#4477=IFCMATERIALPROFILE($,$,#17,#4465,$,$); -#4478=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,6.3); -#4479=IFCBEAMTYPE('1Akl0R7Fz4wwHIBGkfE9EY',$,'219.1-6.3',$,$,$,$,$,$,$); -#4480=IFCMATERIALPROFILESET($,$,(#4482),$); -#4481=IFCRELASSOCIATESMATERIAL('03GnRR2hL2iuWEHReCdyu9',$,$,$,(#4479),#4480); -#4482=IFCMATERIALPROFILE($,$,#17,#4478,$,$); -#4483=IFCMEMBERTYPE('2BOUdixAXAaf3lYECrE_sx',$,'219.1-6.3',$,$,$,$,$,$,$); -#4484=IFCMATERIALPROFILESET($,$,(#4486),$); -#4485=IFCRELASSOCIATESMATERIAL('1u9CH0y4TENwOLKusj2Oz7',$,$,$,(#4483),#4484); -#4486=IFCMATERIALPROFILE($,$,#17,#4478,$,$); -#4487=IFCCOLUMNTYPE('1Uec880Wn3s9$iF$V09qY6',$,'219.1-6.3',$,$,$,$,$,$,$); -#4488=IFCMATERIALPROFILESET($,$,(#4490),$); -#4489=IFCRELASSOCIATESMATERIAL('12Qu7QMSnE3v0agxHs3Kkf',$,$,$,(#4487),#4488); -#4490=IFCMATERIALPROFILE($,$,#17,#4478,$,$); -#4491=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,8.); -#4492=IFCBEAMTYPE('0g9aWiBrD2U92v7jWeiIJW',$,'219.1-8.0',$,$,$,$,$,$,$); -#4493=IFCMATERIALPROFILESET($,$,(#4495),$); -#4494=IFCRELASSOCIATESMATERIAL('1Q_woBorz9TRWdSAl5aQ90',$,$,$,(#4492),#4493); -#4495=IFCMATERIALPROFILE($,$,#17,#4491,$,$); -#4496=IFCMEMBERTYPE('0q3um8nkj0gO6_51grXMNs',$,'219.1-8.0',$,$,$,$,$,$,$); -#4497=IFCMATERIALPROFILESET($,$,(#4499),$); -#4498=IFCRELASSOCIATESMATERIAL('175dOtpDrBZPtHzL6RLHvr',$,$,$,(#4496),#4497); -#4499=IFCMATERIALPROFILE($,$,#17,#4491,$,$); -#4500=IFCCOLUMNTYPE('2O7iOLOkzCsBazrFEkF7sV',$,'219.1-8.0',$,$,$,$,$,$,$); -#4501=IFCMATERIALPROFILESET($,$,(#4503),$); -#4502=IFCRELASSOCIATESMATERIAL('3mhnTlk_vBnOGGi4dPVlZy',$,$,$,(#4500),#4501); -#4503=IFCMATERIALPROFILE($,$,#17,#4491,$,$); -#4504=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,10.); -#4505=IFCBEAMTYPE('2fK2oRgLT6jvsMpEURH02R',$,'219.1-10.0',$,$,$,$,$,$,$); -#4506=IFCMATERIALPROFILESET($,$,(#4508),$); -#4507=IFCRELASSOCIATESMATERIAL('0_P9_1peP30892NEZngM3e',$,$,$,(#4505),#4506); -#4508=IFCMATERIALPROFILE($,$,#17,#4504,$,$); -#4509=IFCMEMBERTYPE('3rpuICb1D2ROO9ODyQRt5N',$,'219.1-10.0',$,$,$,$,$,$,$); -#4510=IFCMATERIALPROFILESET($,$,(#4512),$); -#4511=IFCRELASSOCIATESMATERIAL('2BGFtZ3zX9fuUX1WQXMOG8',$,$,$,(#4509),#4510); -#4512=IFCMATERIALPROFILE($,$,#17,#4504,$,$); -#4513=IFCCOLUMNTYPE('3S9G8PLgD3SAR88Koflp_6',$,'219.1-10.0',$,$,$,$,$,$,$); -#4514=IFCMATERIALPROFILESET($,$,(#4516),$); -#4515=IFCRELASSOCIATESMATERIAL('2qINrlmcn9r8kSitkvToN$',$,$,$,(#4513),#4514); -#4516=IFCMATERIALPROFILE($,$,#17,#4504,$,$); -#4517=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,12.5); -#4518=IFCBEAMTYPE('0v6FKvmFn16Bv4lcH0GTg8',$,'219.1-12.5',$,$,$,$,$,$,$); -#4519=IFCMATERIALPROFILESET($,$,(#4521),$); -#4520=IFCRELASSOCIATESMATERIAL('0gGb4D_Yn8PAy9zPuxSu8h',$,$,$,(#4518),#4519); -#4521=IFCMATERIALPROFILE($,$,#17,#4517,$,$); -#4522=IFCMEMBERTYPE('0LFnfPJkr4HA6Sw4Ucq7Us',$,'219.1-12.5',$,$,$,$,$,$,$); -#4523=IFCMATERIALPROFILESET($,$,(#4525),$); -#4524=IFCRELASSOCIATESMATERIAL('1c_ipuvPzA1Rgjo3FhLs9E',$,$,$,(#4522),#4523); -#4525=IFCMATERIALPROFILE($,$,#17,#4517,$,$); -#4526=IFCCOLUMNTYPE('3bsXEWXN57IQq6pzgP2w$E',$,'219.1-12.5',$,$,$,$,$,$,$); -#4527=IFCMATERIALPROFILESET($,$,(#4529),$); -#4528=IFCRELASSOCIATESMATERIAL('0bApvVL0n9bvAjYDbQKwLn',$,$,$,(#4526),#4527); -#4529=IFCMATERIALPROFILE($,$,#17,#4517,$,$); -#4530=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,14.2); -#4531=IFCBEAMTYPE('1FTZZy3VHB_OnpENS3tP4z',$,'219.1-14.2',$,$,$,$,$,$,$); -#4532=IFCMATERIALPROFILESET($,$,(#4534),$); -#4533=IFCRELASSOCIATESMATERIAL('1EVqLu$tH8gfWMcb1kwAhl',$,$,$,(#4531),#4532); -#4534=IFCMATERIALPROFILE($,$,#17,#4530,$,$); -#4535=IFCMEMBERTYPE('2ehIIwDg1BiAEy4ZWSw9UT',$,'219.1-14.2',$,$,$,$,$,$,$); -#4536=IFCMATERIALPROFILESET($,$,(#4538),$); -#4537=IFCRELASSOCIATESMATERIAL('3lx1bJ01z28uVADFnpwBd1',$,$,$,(#4535),#4536); -#4538=IFCMATERIALPROFILE($,$,#17,#4530,$,$); -#4539=IFCCOLUMNTYPE('1LBnC1WuT4e9ObK1$yEXO_',$,'219.1-14.2',$,$,$,$,$,$,$); -#4540=IFCMATERIALPROFILESET($,$,(#4542),$); -#4541=IFCRELASSOCIATESMATERIAL('2IZIHS5CT3YvmqRpfO8FZ1',$,$,$,(#4539),#4540); -#4542=IFCMATERIALPROFILE($,$,#17,#4530,$,$); -#4543=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,16.); -#4544=IFCBEAMTYPE('3L2OU3ObH5$wp03MYwTZ5_',$,'219.1-16.0',$,$,$,$,$,$,$); -#4545=IFCMATERIALPROFILESET($,$,(#4547),$); -#4546=IFCRELASSOCIATESMATERIAL('3bR2qc4Or6kQfg0ztepTB6',$,$,$,(#4544),#4545); -#4547=IFCMATERIALPROFILE($,$,#17,#4543,$,$); -#4548=IFCMEMBERTYPE('1ZpwnIUBzBFv9N5ZNdF3Bv',$,'219.1-16.0',$,$,$,$,$,$,$); -#4549=IFCMATERIALPROFILESET($,$,(#4551),$); -#4550=IFCRELASSOCIATESMATERIAL('3R8LgReAD2Q8J7JyeSNjnI',$,$,$,(#4548),#4549); -#4551=IFCMATERIALPROFILE($,$,#17,#4543,$,$); -#4552=IFCCOLUMNTYPE('1L14q2voj1Jh6UIIhC4YaF',$,'219.1-16.0',$,$,$,$,$,$,$); -#4553=IFCMATERIALPROFILESET($,$,(#4555),$); -#4554=IFCRELASSOCIATESMATERIAL('1_LfuAbYX9u8tk5puhMzCS',$,$,$,(#4552),#4553); -#4555=IFCMATERIALPROFILE($,$,#17,#4543,$,$); -#4556=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,109.55,20.); -#4557=IFCBEAMTYPE('2wAKuRFL19Axqt5me8unqL',$,'219.1-20.0',$,$,$,$,$,$,$); -#4558=IFCMATERIALPROFILESET($,$,(#4560),$); -#4559=IFCRELASSOCIATESMATERIAL('0i5GGVSK9EIfF$cQgeURFJ',$,$,$,(#4557),#4558); -#4560=IFCMATERIALPROFILE($,$,#17,#4556,$,$); -#4561=IFCMEMBERTYPE('3VcJk$NmTBtPjwAV95K4D1',$,'219.1-20.0',$,$,$,$,$,$,$); -#4562=IFCMATERIALPROFILESET($,$,(#4564),$); -#4563=IFCRELASSOCIATESMATERIAL('1IK8bZVFrFXA4R_lBfzaQU',$,$,$,(#4561),#4562); -#4564=IFCMATERIALPROFILE($,$,#17,#4556,$,$); -#4565=IFCCOLUMNTYPE('3DXaLW82v7bwzpGXleL0rh',$,'219.1-20.0',$,$,$,$,$,$,$); -#4566=IFCMATERIALPROFILESET($,$,(#4568),$); -#4567=IFCRELASSOCIATESMATERIAL('0PtAGlCwf6nQa7gLEi1XbY',$,$,$,(#4565),#4566); -#4568=IFCMATERIALPROFILE($,$,#17,#4556,$,$); -#4569=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,5.); -#4570=IFCBEAMTYPE('0cwEfxXhPDBwdMbFoc7bZf',$,'244.5-5.0',$,$,$,$,$,$,$); -#4571=IFCMATERIALPROFILESET($,$,(#4573),$); -#4572=IFCRELASSOCIATESMATERIAL('05jq4cjTn1zAER$PoWo6RC',$,$,$,(#4570),#4571); -#4573=IFCMATERIALPROFILE($,$,#17,#4569,$,$); -#4574=IFCMEMBERTYPE('3g$BZP1YzBsufv_ab4GI7t',$,'244.5-5.0',$,$,$,$,$,$,$); -#4575=IFCMATERIALPROFILESET($,$,(#4577),$); -#4576=IFCRELASSOCIATESMATERIAL('2JW0G3BpTAAQyZpjXXvOg$',$,$,$,(#4574),#4575); -#4577=IFCMATERIALPROFILE($,$,#17,#4569,$,$); -#4578=IFCCOLUMNTYPE('10GsL5VBjDJBzTl7ZF0Zw4',$,'244.5-5.0',$,$,$,$,$,$,$); -#4579=IFCMATERIALPROFILESET($,$,(#4581),$); -#4580=IFCRELASSOCIATESMATERIAL('20brQVVk5DCvKK_YctAeV$',$,$,$,(#4578),#4579); -#4581=IFCMATERIALPROFILE($,$,#17,#4569,$,$); -#4582=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,6.3); -#4583=IFCBEAMTYPE('3j1nPYIvb9W8uPAjNZS_$T',$,'244.5-6.3',$,$,$,$,$,$,$); -#4584=IFCMATERIALPROFILESET($,$,(#4586),$); -#4585=IFCRELASSOCIATESMATERIAL('0Ox$0D_pfFuR5yReecpsan',$,$,$,(#4583),#4584); -#4586=IFCMATERIALPROFILE($,$,#17,#4582,$,$); -#4587=IFCMEMBERTYPE('2O1H93u2X3mxaLyM3kO8Ju',$,'244.5-6.3',$,$,$,$,$,$,$); -#4588=IFCMATERIALPROFILESET($,$,(#4590),$); -#4589=IFCRELASSOCIATESMATERIAL('1ZzFzklBn7iO9h5O8_$ETd',$,$,$,(#4587),#4588); -#4590=IFCMATERIALPROFILE($,$,#17,#4582,$,$); -#4591=IFCCOLUMNTYPE('1ZwDu9CNb6I92QQnyG5crq',$,'244.5-6.3',$,$,$,$,$,$,$); -#4592=IFCMATERIALPROFILESET($,$,(#4594),$); -#4593=IFCRELASSOCIATESMATERIAL('1V1LGVQMj95x2J_E8UHl82',$,$,$,(#4591),#4592); -#4594=IFCMATERIALPROFILE($,$,#17,#4582,$,$); -#4595=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,8.); -#4596=IFCBEAMTYPE('168RnVEhr95fFura24iWCY',$,'244.5-8.0',$,$,$,$,$,$,$); -#4597=IFCMATERIALPROFILESET($,$,(#4599),$); -#4598=IFCRELASSOCIATESMATERIAL('0F5yBjxfzFX931pKuSMhV$',$,$,$,(#4596),#4597); -#4599=IFCMATERIALPROFILE($,$,#17,#4595,$,$); -#4600=IFCMEMBERTYPE('0Mjdp2wUb4tQywN4uAet4f',$,'244.5-8.0',$,$,$,$,$,$,$); -#4601=IFCMATERIALPROFILESET($,$,(#4603),$); -#4602=IFCRELASSOCIATESMATERIAL('3ZD_oXF4D64x$18NerEcjT',$,$,$,(#4600),#4601); -#4603=IFCMATERIALPROFILE($,$,#17,#4595,$,$); -#4604=IFCCOLUMNTYPE('2AcA0Y7G9DMuJkByditrzo',$,'244.5-8.0',$,$,$,$,$,$,$); -#4605=IFCMATERIALPROFILESET($,$,(#4607),$); -#4606=IFCRELASSOCIATESMATERIAL('0n2tjJGFT7CuLey$kLmIso',$,$,$,(#4604),#4605); -#4607=IFCMATERIALPROFILE($,$,#17,#4595,$,$); -#4608=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,10.); -#4609=IFCBEAMTYPE('22F1GXK2P9UQylmUJxVktO',$,'244.5-10.0',$,$,$,$,$,$,$); -#4610=IFCMATERIALPROFILESET($,$,(#4612),$); -#4611=IFCRELASSOCIATESMATERIAL('05eOgFyGb5ZvOOsSb8Ke63',$,$,$,(#4609),#4610); -#4612=IFCMATERIALPROFILE($,$,#17,#4608,$,$); -#4613=IFCMEMBERTYPE('16gtqRAHj3ceAvhJc1mEG2',$,'244.5-10.0',$,$,$,$,$,$,$); -#4614=IFCMATERIALPROFILESET($,$,(#4616),$); -#4615=IFCRELASSOCIATESMATERIAL('04Cc0tvqH9QOTVK3EY5yM3',$,$,$,(#4613),#4614); -#4616=IFCMATERIALPROFILE($,$,#17,#4608,$,$); -#4617=IFCCOLUMNTYPE('2LfNpJosz7PONhk0dPoeyB',$,'244.5-10.0',$,$,$,$,$,$,$); -#4618=IFCMATERIALPROFILESET($,$,(#4620),$); -#4619=IFCRELASSOCIATESMATERIAL('0kAS00$_f9PBKS0Pr9DySy',$,$,$,(#4617),#4618); -#4620=IFCMATERIALPROFILE($,$,#17,#4608,$,$); -#4621=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,12.5); -#4622=IFCBEAMTYPE('2tifV3YxX2ggR6LtIyP6CT',$,'244.5-12.5',$,$,$,$,$,$,$); -#4623=IFCMATERIALPROFILESET($,$,(#4625),$); -#4624=IFCRELASSOCIATESMATERIAL('0HZTMtI6517vfak4IclhpR',$,$,$,(#4622),#4623); -#4625=IFCMATERIALPROFILE($,$,#17,#4621,$,$); -#4626=IFCMEMBERTYPE('2BB1JDur17KvBMRwAuJbAW',$,'244.5-12.5',$,$,$,$,$,$,$); -#4627=IFCMATERIALPROFILESET($,$,(#4629),$); -#4628=IFCRELASSOCIATESMATERIAL('1oHd1aHsrBVPhdieu7wIdb',$,$,$,(#4626),#4627); -#4629=IFCMATERIALPROFILE($,$,#17,#4621,$,$); -#4630=IFCCOLUMNTYPE('0nnkmRBKn6dhMbkRSnhev7',$,'244.5-12.5',$,$,$,$,$,$,$); -#4631=IFCMATERIALPROFILESET($,$,(#4633),$); -#4632=IFCRELASSOCIATESMATERIAL('12nW4TvbX6zewDpYiEQpfj',$,$,$,(#4630),#4631); -#4633=IFCMATERIALPROFILE($,$,#17,#4621,$,$); -#4634=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,14.2); -#4635=IFCBEAMTYPE('2WM6SW0fj9Rvf_mKefDkbt',$,'244.5-14.2',$,$,$,$,$,$,$); -#4636=IFCMATERIALPROFILESET($,$,(#4638),$); -#4637=IFCRELASSOCIATESMATERIAL('2dnzpi$nT3Xhh8nRYvDO_c',$,$,$,(#4635),#4636); -#4638=IFCMATERIALPROFILE($,$,#17,#4634,$,$); -#4639=IFCMEMBERTYPE('1bXY9RrD56eREf$x0p_5EV',$,'244.5-14.2',$,$,$,$,$,$,$); -#4640=IFCMATERIALPROFILESET($,$,(#4642),$); -#4641=IFCRELASSOCIATESMATERIAL('3i4fFQf_jBewCYgAv_J3mZ',$,$,$,(#4639),#4640); -#4642=IFCMATERIALPROFILE($,$,#17,#4634,$,$); -#4643=IFCCOLUMNTYPE('107uYTRK5FvwWaZ9_a4OK6',$,'244.5-14.2',$,$,$,$,$,$,$); -#4644=IFCMATERIALPROFILESET($,$,(#4646),$); -#4645=IFCRELASSOCIATESMATERIAL('16qYB6taH0AwISFs7j$azJ',$,$,$,(#4643),#4644); -#4646=IFCMATERIALPROFILE($,$,#17,#4634,$,$); -#4647=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,16.); -#4648=IFCBEAMTYPE('0hBZn5Pk97vuUE16B2rADT',$,'244.5-16.0',$,$,$,$,$,$,$); -#4649=IFCMATERIALPROFILESET($,$,(#4651),$); -#4650=IFCRELASSOCIATESMATERIAL('0hOGilhmb1FfNVRoqoUziE',$,$,$,(#4648),#4649); -#4651=IFCMATERIALPROFILE($,$,#17,#4647,$,$); -#4652=IFCMEMBERTYPE('0yYKGtV417Yufd7cZhGORk',$,'244.5-16.0',$,$,$,$,$,$,$); -#4653=IFCMATERIALPROFILESET($,$,(#4655),$); -#4654=IFCRELASSOCIATESMATERIAL('0KSZ7rWRz4Y9WlibfuWw6_',$,$,$,(#4652),#4653); -#4655=IFCMATERIALPROFILE($,$,#17,#4647,$,$); -#4656=IFCCOLUMNTYPE('0JA5M8FTv5ig_cB4zOwVzk',$,'244.5-16.0',$,$,$,$,$,$,$); -#4657=IFCMATERIALPROFILESET($,$,(#4659),$); -#4658=IFCRELASSOCIATESMATERIAL('0_lrGjNq95Yucmt4pKum2y',$,$,$,(#4656),#4657); -#4659=IFCMATERIALPROFILE($,$,#17,#4647,$,$); -#4660=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,20.); -#4661=IFCBEAMTYPE('1ItjpGIML5FOre6ib4ob0N',$,'244.5-20.0',$,$,$,$,$,$,$); -#4662=IFCMATERIALPROFILESET($,$,(#4664),$); -#4663=IFCRELASSOCIATESMATERIAL('3z9wgIQgj9ZgqKYJ2CJ9sq',$,$,$,(#4661),#4662); -#4664=IFCMATERIALPROFILE($,$,#17,#4660,$,$); -#4665=IFCMEMBERTYPE('3fTTLS2Kf20hI9VbiCBDYg',$,'244.5-20.0',$,$,$,$,$,$,$); -#4666=IFCMATERIALPROFILESET($,$,(#4668),$); -#4667=IFCRELASSOCIATESMATERIAL('0WCoxh7f5FoRN3UsNUpL6m',$,$,$,(#4665),#4666); -#4668=IFCMATERIALPROFILE($,$,#17,#4660,$,$); -#4669=IFCCOLUMNTYPE('2j6kiXZvP7UQIbCx6NA11d',$,'244.5-20.0',$,$,$,$,$,$,$); -#4670=IFCMATERIALPROFILESET($,$,(#4672),$); -#4671=IFCRELASSOCIATESMATERIAL('3pvaLGY2HD$RHX614DbeDu',$,$,$,(#4669),#4670); -#4672=IFCMATERIALPROFILE($,$,#17,#4660,$,$); -#4673=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,122.25,25.); -#4674=IFCBEAMTYPE('2Sfg1XKqrAUBD53BbrErm7',$,'244.5-25.0',$,$,$,$,$,$,$); -#4675=IFCMATERIALPROFILESET($,$,(#4677),$); -#4676=IFCRELASSOCIATESMATERIAL('0x3T0gdgv3u8uODswP1jYw',$,$,$,(#4674),#4675); -#4677=IFCMATERIALPROFILE($,$,#17,#4673,$,$); -#4678=IFCMEMBERTYPE('3wW7WyvYb3JPD$DYK3UDBD',$,'244.5-25.0',$,$,$,$,$,$,$); -#4679=IFCMATERIALPROFILESET($,$,(#4681),$); -#4680=IFCRELASSOCIATESMATERIAL('3mK5QTEV59NxfnhnKbMWdW',$,$,$,(#4678),#4679); -#4681=IFCMATERIALPROFILE($,$,#17,#4673,$,$); -#4682=IFCCOLUMNTYPE('1q5isuf1PAKhR$_htcHYxx',$,'244.5-25.0',$,$,$,$,$,$,$); -#4683=IFCMATERIALPROFILESET($,$,(#4685),$); -#4684=IFCRELASSOCIATESMATERIAL('0vCxtld95BkfrLk_jHeu5Z',$,$,$,(#4682),#4683); -#4685=IFCMATERIALPROFILE($,$,#17,#4673,$,$); -#4686=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,5.); -#4687=IFCBEAMTYPE('1lglnow$n81vbuhYyEgpaS',$,'273.0-5.0',$,$,$,$,$,$,$); -#4688=IFCMATERIALPROFILESET($,$,(#4690),$); -#4689=IFCRELASSOCIATESMATERIAL('0K4EUWUXbCqwl458zUlMeq',$,$,$,(#4687),#4688); -#4690=IFCMATERIALPROFILE($,$,#17,#4686,$,$); -#4691=IFCMEMBERTYPE('0fLuV97i13EfDyfo0Q$nGJ',$,'273.0-5.0',$,$,$,$,$,$,$); -#4692=IFCMATERIALPROFILESET($,$,(#4694),$); -#4693=IFCRELASSOCIATESMATERIAL('1NSGxxhDn4awfqlvSzO8Ij',$,$,$,(#4691),#4692); -#4694=IFCMATERIALPROFILE($,$,#17,#4686,$,$); -#4695=IFCCOLUMNTYPE('2v_eldFcTD7xSrOTyCu$st',$,'273.0-5.0',$,$,$,$,$,$,$); -#4696=IFCMATERIALPROFILESET($,$,(#4698),$); -#4697=IFCRELASSOCIATESMATERIAL('00AoATXkfFK8woyGNEaqlK',$,$,$,(#4695),#4696); -#4698=IFCMATERIALPROFILE($,$,#17,#4686,$,$); -#4699=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,6.3); -#4700=IFCBEAMTYPE('0npV1QH351$8vtmlvQ8dPt',$,'273.0-6.3',$,$,$,$,$,$,$); -#4701=IFCMATERIALPROFILESET($,$,(#4703),$); -#4702=IFCRELASSOCIATESMATERIAL('2JVvp0NDD9_9j3BcSM5VYD',$,$,$,(#4700),#4701); -#4703=IFCMATERIALPROFILE($,$,#17,#4699,$,$); -#4704=IFCMEMBERTYPE('3EpVU2nf554halkkyrW5Pm',$,'273.0-6.3',$,$,$,$,$,$,$); -#4705=IFCMATERIALPROFILESET($,$,(#4707),$); -#4706=IFCRELASSOCIATESMATERIAL('0Fm4IMov5D29OKYkJpTlIj',$,$,$,(#4704),#4705); -#4707=IFCMATERIALPROFILE($,$,#17,#4699,$,$); -#4708=IFCCOLUMNTYPE('3IjYZoRGXFHQrLDHWS_Mdp',$,'273.0-6.3',$,$,$,$,$,$,$); -#4709=IFCMATERIALPROFILESET($,$,(#4711),$); -#4710=IFCRELASSOCIATESMATERIAL('0tZj0t$8DD7uwQkAVx5uNs',$,$,$,(#4708),#4709); -#4711=IFCMATERIALPROFILE($,$,#17,#4699,$,$); -#4712=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,8.); -#4713=IFCBEAMTYPE('1f0ldo0rr9kPa8J45fzQ5A',$,'273.0-8.0',$,$,$,$,$,$,$); -#4714=IFCMATERIALPROFILESET($,$,(#4716),$); -#4715=IFCRELASSOCIATESMATERIAL('3Fta$gg6HE19owL1l2LwtL',$,$,$,(#4713),#4714); -#4716=IFCMATERIALPROFILE($,$,#17,#4712,$,$); -#4717=IFCMEMBERTYPE('1aJBkm5GX2je1ZHuAAqYbN',$,'273.0-8.0',$,$,$,$,$,$,$); -#4718=IFCMATERIALPROFILESET($,$,(#4720),$); -#4719=IFCRELASSOCIATESMATERIAL('1vHLqM3uXDnfO0PGZVY3fD',$,$,$,(#4717),#4718); -#4720=IFCMATERIALPROFILE($,$,#17,#4712,$,$); -#4721=IFCCOLUMNTYPE('2zqIHGLsf1n8SZk08IaOJg',$,'273.0-8.0',$,$,$,$,$,$,$); -#4722=IFCMATERIALPROFILESET($,$,(#4724),$); -#4723=IFCRELASSOCIATESMATERIAL('1IPQMYBAj5LQ3A6bX4AyyF',$,$,$,(#4721),#4722); -#4724=IFCMATERIALPROFILE($,$,#17,#4712,$,$); -#4725=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,10.); -#4726=IFCBEAMTYPE('2KFNdfqBbCPRN0TdHZFJOf',$,'273.0-10.0',$,$,$,$,$,$,$); -#4727=IFCMATERIALPROFILESET($,$,(#4729),$); -#4728=IFCRELASSOCIATESMATERIAL('3ryIEKbnzFJuX8o86l5Sfu',$,$,$,(#4726),#4727); -#4729=IFCMATERIALPROFILE($,$,#17,#4725,$,$); -#4730=IFCMEMBERTYPE('0GjGvDW41DgfU5A5x44NQz',$,'273.0-10.0',$,$,$,$,$,$,$); -#4731=IFCMATERIALPROFILESET($,$,(#4733),$); -#4732=IFCRELASSOCIATESMATERIAL('2NqAFPVTP9dhVPcev_ENb1',$,$,$,(#4730),#4731); -#4733=IFCMATERIALPROFILE($,$,#17,#4725,$,$); -#4734=IFCCOLUMNTYPE('1hUd5i1qLAG8yfu3u1757s',$,'273.0-10.0',$,$,$,$,$,$,$); -#4735=IFCMATERIALPROFILESET($,$,(#4737),$); -#4736=IFCRELASSOCIATESMATERIAL('3it1lqWK11gQiG96tcQTej',$,$,$,(#4734),#4735); -#4737=IFCMATERIALPROFILE($,$,#17,#4725,$,$); -#4738=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,12.5); -#4739=IFCBEAMTYPE('0YLR1CM1X0ChFYspbEkZAN',$,'273.0-12.5',$,$,$,$,$,$,$); -#4740=IFCMATERIALPROFILESET($,$,(#4742),$); -#4741=IFCRELASSOCIATESMATERIAL('0E1T4QyjL2X8oX80HDBi91',$,$,$,(#4739),#4740); -#4742=IFCMATERIALPROFILE($,$,#17,#4738,$,$); -#4743=IFCMEMBERTYPE('3rlnTtsJLDh9GL$NNXpF3i',$,'273.0-12.5',$,$,$,$,$,$,$); -#4744=IFCMATERIALPROFILESET($,$,(#4746),$); -#4745=IFCRELASSOCIATESMATERIAL('0j2aIQ0Uv9guDpzTsLtQA6',$,$,$,(#4743),#4744); -#4746=IFCMATERIALPROFILE($,$,#17,#4738,$,$); -#4747=IFCCOLUMNTYPE('3hosBAcuv1wx_zxQxFGrL_',$,'273.0-12.5',$,$,$,$,$,$,$); -#4748=IFCMATERIALPROFILESET($,$,(#4750),$); -#4749=IFCRELASSOCIATESMATERIAL('2nMGhzA09FZBnFk5oW5hfk',$,$,$,(#4747),#4748); -#4750=IFCMATERIALPROFILE($,$,#17,#4738,$,$); -#4751=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,14.2); -#4752=IFCBEAMTYPE('0yN29PTlDCEAuGg_ux7Z8R',$,'273.0-14.2',$,$,$,$,$,$,$); -#4753=IFCMATERIALPROFILESET($,$,(#4755),$); -#4754=IFCRELASSOCIATESMATERIAL('3eDK_I6Yz2VAXBihetPp99',$,$,$,(#4752),#4753); -#4755=IFCMATERIALPROFILE($,$,#17,#4751,$,$); -#4756=IFCMEMBERTYPE('02ChF45DL08wLOUMbvKFIr',$,'273.0-14.2',$,$,$,$,$,$,$); -#4757=IFCMATERIALPROFILESET($,$,(#4759),$); -#4758=IFCRELASSOCIATESMATERIAL('1is_JS4kH0iO$ywQ7_httP',$,$,$,(#4756),#4757); -#4759=IFCMATERIALPROFILE($,$,#17,#4751,$,$); -#4760=IFCCOLUMNTYPE('0$3UHYX1DFfAqQNt4yxsCA',$,'273.0-14.2',$,$,$,$,$,$,$); -#4761=IFCMATERIALPROFILESET($,$,(#4763),$); -#4762=IFCRELASSOCIATESMATERIAL('1eQ9oLGe1CBfc8CImTDCjL',$,$,$,(#4760),#4761); -#4763=IFCMATERIALPROFILE($,$,#17,#4751,$,$); -#4764=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,16.); -#4765=IFCBEAMTYPE('1KvT3$nejBmOMGEEso64Mx',$,'273.0-16.0',$,$,$,$,$,$,$); -#4766=IFCMATERIALPROFILESET($,$,(#4768),$); -#4767=IFCRELASSOCIATESMATERIAL('2mhvHMvP94MPiha1v23ijk',$,$,$,(#4765),#4766); -#4768=IFCMATERIALPROFILE($,$,#17,#4764,$,$); -#4769=IFCMEMBERTYPE('2O$dqDOvb1BRq0y0MJkkmm',$,'273.0-16.0',$,$,$,$,$,$,$); -#4770=IFCMATERIALPROFILESET($,$,(#4772),$); -#4771=IFCRELASSOCIATESMATERIAL('0ZlfnUQevAvvkAxkS9Zwrl',$,$,$,(#4769),#4770); -#4772=IFCMATERIALPROFILE($,$,#17,#4764,$,$); -#4773=IFCCOLUMNTYPE('0IG$XpZmrDsBGEutPG01kN',$,'273.0-16.0',$,$,$,$,$,$,$); -#4774=IFCMATERIALPROFILESET($,$,(#4776),$); -#4775=IFCRELASSOCIATESMATERIAL('1JcfgCgsrAM8u5huXwcGPZ',$,$,$,(#4773),#4774); -#4776=IFCMATERIALPROFILE($,$,#17,#4764,$,$); -#4777=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,20.); -#4778=IFCBEAMTYPE('3krYHexQ1Dl8uR__XggPT6',$,'273.0-20.0',$,$,$,$,$,$,$); -#4779=IFCMATERIALPROFILESET($,$,(#4781),$); -#4780=IFCRELASSOCIATESMATERIAL('2g8$M2YVT3RA66uc4x4SYl',$,$,$,(#4778),#4779); -#4781=IFCMATERIALPROFILE($,$,#17,#4777,$,$); -#4782=IFCMEMBERTYPE('2Lxcpqx2H69fkHuOFuceNx',$,'273.0-20.0',$,$,$,$,$,$,$); -#4783=IFCMATERIALPROFILESET($,$,(#4785),$); -#4784=IFCRELASSOCIATESMATERIAL('0WEGr$nMj6JPeXz4GoLDik',$,$,$,(#4782),#4783); -#4785=IFCMATERIALPROFILE($,$,#17,#4777,$,$); -#4786=IFCCOLUMNTYPE('17s4EZ5ETA2gE5_wr_davd',$,'273.0-20.0',$,$,$,$,$,$,$); -#4787=IFCMATERIALPROFILESET($,$,(#4789),$); -#4788=IFCRELASSOCIATESMATERIAL('2wpWBrnir5CeLCeItmmt5S',$,$,$,(#4786),#4787); -#4789=IFCMATERIALPROFILE($,$,#17,#4777,$,$); -#4790=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,136.5,25.); -#4791=IFCBEAMTYPE('1eo3IjwKv26vXIqa4iudbW',$,'273.0-25.0',$,$,$,$,$,$,$); -#4792=IFCMATERIALPROFILESET($,$,(#4794),$); -#4793=IFCRELASSOCIATESMATERIAL('1926jMvn9FRBa4V7DU_Z7I',$,$,$,(#4791),#4792); -#4794=IFCMATERIALPROFILE($,$,#17,#4790,$,$); -#4795=IFCMEMBERTYPE('2Cj4TfHwL6EuJ5mD$RXyv7',$,'273.0-25.0',$,$,$,$,$,$,$); -#4796=IFCMATERIALPROFILESET($,$,(#4798),$); -#4797=IFCRELASSOCIATESMATERIAL('09OTip3YvAd9ryfPlVwAEx',$,$,$,(#4795),#4796); -#4798=IFCMATERIALPROFILE($,$,#17,#4790,$,$); -#4799=IFCCOLUMNTYPE('0KwrypW6HCOAT8uSOeQJA8',$,'273.0-25.0',$,$,$,$,$,$,$); -#4800=IFCMATERIALPROFILESET($,$,(#4802),$); -#4801=IFCRELASSOCIATESMATERIAL('3CHvqaJvb0HeDhZH5Vg$6w',$,$,$,(#4799),#4800); -#4802=IFCMATERIALPROFILE($,$,#17,#4790,$,$); -#4803=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,5.); -#4804=IFCBEAMTYPE('2mUxWbH3jFzPdQE4SzIYSo',$,'323.9-5.0',$,$,$,$,$,$,$); -#4805=IFCMATERIALPROFILESET($,$,(#4807),$); -#4806=IFCRELASSOCIATESMATERIAL('3v8Qj8xqTCtvZqF70Fh8Uz',$,$,$,(#4804),#4805); -#4807=IFCMATERIALPROFILE($,$,#17,#4803,$,$); -#4808=IFCMEMBERTYPE('3MksZtOAz8aeKKsZZRLPmp',$,'323.9-5.0',$,$,$,$,$,$,$); -#4809=IFCMATERIALPROFILESET($,$,(#4811),$); -#4810=IFCRELASSOCIATESMATERIAL('01IenjMgbBDBOfTcFVHdiZ',$,$,$,(#4808),#4809); -#4811=IFCMATERIALPROFILE($,$,#17,#4803,$,$); -#4812=IFCCOLUMNTYPE('3xn_Sv0BT2UAUBxxMignyU',$,'323.9-5.0',$,$,$,$,$,$,$); -#4813=IFCMATERIALPROFILESET($,$,(#4815),$); -#4814=IFCRELASSOCIATESMATERIAL('0DgZ5KV014ZeWrAOmxH3pL',$,$,$,(#4812),#4813); -#4815=IFCMATERIALPROFILE($,$,#17,#4803,$,$); -#4816=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,6.3); -#4817=IFCBEAMTYPE('01oBIX5rr5dwEnbDYgdpVN',$,'323.9-6.3',$,$,$,$,$,$,$); -#4818=IFCMATERIALPROFILESET($,$,(#4820),$); -#4819=IFCRELASSOCIATESMATERIAL('2lkPMayv1ElOI$dGh3gd19',$,$,$,(#4817),#4818); -#4820=IFCMATERIALPROFILE($,$,#17,#4816,$,$); -#4821=IFCMEMBERTYPE('1YVS$qjhn2_8BGTy66Aeat',$,'323.9-6.3',$,$,$,$,$,$,$); -#4822=IFCMATERIALPROFILESET($,$,(#4824),$); -#4823=IFCRELASSOCIATESMATERIAL('0O1hAq00X5U8cyDJw3VsxP',$,$,$,(#4821),#4822); -#4824=IFCMATERIALPROFILE($,$,#17,#4816,$,$); -#4825=IFCCOLUMNTYPE('2OunGsKRjCfg6Tao$POCgM',$,'323.9-6.3',$,$,$,$,$,$,$); -#4826=IFCMATERIALPROFILESET($,$,(#4828),$); -#4827=IFCRELASSOCIATESMATERIAL('1$98Qo0LnEh9XTcAJ5d_bc',$,$,$,(#4825),#4826); -#4828=IFCMATERIALPROFILE($,$,#17,#4816,$,$); -#4829=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,8.); -#4830=IFCBEAMTYPE('2GGUuitPLCfg1QhuLDgY9K',$,'323.9-8.0',$,$,$,$,$,$,$); -#4831=IFCMATERIALPROFILESET($,$,(#4833),$); -#4832=IFCRELASSOCIATESMATERIAL('1f8hZdbkf60eK4Uy8hjkMC',$,$,$,(#4830),#4831); -#4833=IFCMATERIALPROFILE($,$,#17,#4829,$,$); -#4834=IFCMEMBERTYPE('0jPDbQmY528hqkTv8R2TJ7',$,'323.9-8.0',$,$,$,$,$,$,$); -#4835=IFCMATERIALPROFILESET($,$,(#4837),$); -#4836=IFCRELASSOCIATESMATERIAL('3ZBmxdAhfDVuTdiXsEJkAd',$,$,$,(#4834),#4835); -#4837=IFCMATERIALPROFILE($,$,#17,#4829,$,$); -#4838=IFCCOLUMNTYPE('3hpwUQYor9oxnhjkARa8e5',$,'323.9-8.0',$,$,$,$,$,$,$); -#4839=IFCMATERIALPROFILESET($,$,(#4841),$); -#4840=IFCRELASSOCIATESMATERIAL('1bPLWx1m17FAhCAoetebH2',$,$,$,(#4838),#4839); -#4841=IFCMATERIALPROFILE($,$,#17,#4829,$,$); -#4842=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,10.); -#4843=IFCBEAMTYPE('1ihzq$O0z2Ih8gVzNP2cXo',$,'323.9-10.0',$,$,$,$,$,$,$); -#4844=IFCMATERIALPROFILESET($,$,(#4846),$); -#4845=IFCRELASSOCIATESMATERIAL('0c2Es27wL9sPFZl2y_2d6s',$,$,$,(#4843),#4844); -#4846=IFCMATERIALPROFILE($,$,#17,#4842,$,$); -#4847=IFCMEMBERTYPE('1k4h3kP1v6TeICz1Lh5mzt',$,'323.9-10.0',$,$,$,$,$,$,$); -#4848=IFCMATERIALPROFILESET($,$,(#4850),$); -#4849=IFCRELASSOCIATESMATERIAL('3CAb55H6vDk9898K6tG9oh',$,$,$,(#4847),#4848); -#4850=IFCMATERIALPROFILE($,$,#17,#4842,$,$); -#4851=IFCCOLUMNTYPE('0bbTDhKwX2mxfZYSQa9Zh6',$,'323.9-10.0',$,$,$,$,$,$,$); -#4852=IFCMATERIALPROFILESET($,$,(#4854),$); -#4853=IFCRELASSOCIATESMATERIAL('0tQ9G1EePFiAX0y0WivWUl',$,$,$,(#4851),#4852); -#4854=IFCMATERIALPROFILE($,$,#17,#4842,$,$); -#4855=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,12.5); -#4856=IFCBEAMTYPE('1O7Q2PHBz2tvOtMTyBONFu',$,'323.9-12.5',$,$,$,$,$,$,$); -#4857=IFCMATERIALPROFILESET($,$,(#4859),$); -#4858=IFCRELASSOCIATESMATERIAL('225Kt8uB94xwSA9lqbqaYl',$,$,$,(#4856),#4857); -#4859=IFCMATERIALPROFILE($,$,#17,#4855,$,$); -#4860=IFCMEMBERTYPE('34zLfBSuT3fhwSv$NIbt3g',$,'323.9-12.5',$,$,$,$,$,$,$); -#4861=IFCMATERIALPROFILESET($,$,(#4863),$); -#4862=IFCRELASSOCIATESMATERIAL('2Ak6P04LbEjgCrM66UeKLN',$,$,$,(#4860),#4861); -#4863=IFCMATERIALPROFILE($,$,#17,#4855,$,$); -#4864=IFCCOLUMNTYPE('0AxZyEBRz8E8taNjmQqklv',$,'323.9-12.5',$,$,$,$,$,$,$); -#4865=IFCMATERIALPROFILESET($,$,(#4867),$); -#4866=IFCRELASSOCIATESMATERIAL('3xZKSftNv2VwnbfAuMudKC',$,$,$,(#4864),#4865); -#4867=IFCMATERIALPROFILE($,$,#17,#4855,$,$); -#4868=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,14.2); -#4869=IFCBEAMTYPE('2ilvZs5NPDSOvy3xRfki0G',$,'323.9-14.2',$,$,$,$,$,$,$); -#4870=IFCMATERIALPROFILESET($,$,(#4872),$); -#4871=IFCRELASSOCIATESMATERIAL('2Dt6mHNMvFj9HzYS1zPTQ7',$,$,$,(#4869),#4870); -#4872=IFCMATERIALPROFILE($,$,#17,#4868,$,$); -#4873=IFCMEMBERTYPE('1mMNsCMf9CoRRqsyG0mLd8',$,'323.9-14.2',$,$,$,$,$,$,$); -#4874=IFCMATERIALPROFILESET($,$,(#4876),$); -#4875=IFCRELASSOCIATESMATERIAL('32JBONBrj9nOkq6cuNegKs',$,$,$,(#4873),#4874); -#4876=IFCMATERIALPROFILE($,$,#17,#4868,$,$); -#4877=IFCCOLUMNTYPE('3BgrzwFu98HRj0R67YCRga',$,'323.9-14.2',$,$,$,$,$,$,$); -#4878=IFCMATERIALPROFILESET($,$,(#4880),$); -#4879=IFCRELASSOCIATESMATERIAL('2SvrGVWi12heYjgrCl_S7B',$,$,$,(#4877),#4878); -#4880=IFCMATERIALPROFILE($,$,#17,#4868,$,$); -#4881=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,16.); -#4882=IFCBEAMTYPE('1cm27b2qf3JObNOtnCf074',$,'323.9-16.0',$,$,$,$,$,$,$); -#4883=IFCMATERIALPROFILESET($,$,(#4885),$); -#4884=IFCRELASSOCIATESMATERIAL('0O6KWwT4P04QllGZiVoqqx',$,$,$,(#4882),#4883); -#4885=IFCMATERIALPROFILE($,$,#17,#4881,$,$); -#4886=IFCMEMBERTYPE('0t5mYobc5BdQ_BiBsbi7bf',$,'323.9-16.0',$,$,$,$,$,$,$); -#4887=IFCMATERIALPROFILESET($,$,(#4889),$); -#4888=IFCRELASSOCIATESMATERIAL('11MAxXkrf9bQOTPRYgU$gN',$,$,$,(#4886),#4887); -#4889=IFCMATERIALPROFILE($,$,#17,#4881,$,$); -#4890=IFCCOLUMNTYPE('1EMi2xCuv9JBozzON83F7c',$,'323.9-16.0',$,$,$,$,$,$,$); -#4891=IFCMATERIALPROFILESET($,$,(#4893),$); -#4892=IFCRELASSOCIATESMATERIAL('3uKJj68Zv4nBJ1_WwtDyGa',$,$,$,(#4890),#4891); -#4893=IFCMATERIALPROFILE($,$,#17,#4881,$,$); -#4894=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,20.); -#4895=IFCBEAMTYPE('3e$$S$FcH0qhjMVMox2Eyw',$,'323.9-20.0',$,$,$,$,$,$,$); -#4896=IFCMATERIALPROFILESET($,$,(#4898),$); -#4897=IFCRELASSOCIATESMATERIAL('3ihqmab6n39vMRYzvxh$w0',$,$,$,(#4895),#4896); -#4898=IFCMATERIALPROFILE($,$,#17,#4894,$,$); -#4899=IFCMEMBERTYPE('2iyn7uhGz1UvnzlFQc6vPI',$,'323.9-20.0',$,$,$,$,$,$,$); -#4900=IFCMATERIALPROFILESET($,$,(#4902),$); -#4901=IFCRELASSOCIATESMATERIAL('1lxsoveyDA88BMbeYViIy0',$,$,$,(#4899),#4900); -#4902=IFCMATERIALPROFILE($,$,#17,#4894,$,$); -#4903=IFCCOLUMNTYPE('1WtOm$3wD4zes6B$73vsH$',$,'323.9-20.0',$,$,$,$,$,$,$); -#4904=IFCMATERIALPROFILESET($,$,(#4906),$); -#4905=IFCRELASSOCIATESMATERIAL('2Oq$ZnlUH5H877dyMJkThw',$,$,$,(#4903),#4904); -#4906=IFCMATERIALPROFILE($,$,#17,#4894,$,$); -#4907=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,161.95,25.); -#4908=IFCBEAMTYPE('3HUFc81$z5zQjDlE62nsiv',$,'323.9-25.0',$,$,$,$,$,$,$); -#4909=IFCMATERIALPROFILESET($,$,(#4911),$); -#4910=IFCRELASSOCIATESMATERIAL('2Sy7tgthP8_u8MOgCbk3wP',$,$,$,(#4908),#4909); -#4911=IFCMATERIALPROFILE($,$,#17,#4907,$,$); -#4912=IFCMEMBERTYPE('0aCpvZ7m17AvQIF2fjwnpC',$,'323.9-25.0',$,$,$,$,$,$,$); -#4913=IFCMATERIALPROFILESET($,$,(#4915),$); -#4914=IFCRELASSOCIATESMATERIAL('3Dxva0b5rBHhvYyml$hDMK',$,$,$,(#4912),#4913); -#4915=IFCMATERIALPROFILE($,$,#17,#4907,$,$); -#4916=IFCCOLUMNTYPE('1cFIKg9zf0gvZdzbhku5vr',$,'323.9-25.0',$,$,$,$,$,$,$); -#4917=IFCMATERIALPROFILESET($,$,(#4919),$); -#4918=IFCRELASSOCIATESMATERIAL('11FhjM6Yj619wg$pwMA6$B',$,$,$,(#4916),#4917); -#4919=IFCMATERIALPROFILE($,$,#17,#4907,$,$); -#4920=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,6.3); -#4921=IFCBEAMTYPE('25YAC8gO13EP1fIpEP23Ea',$,'355.6-6.3',$,$,$,$,$,$,$); -#4922=IFCMATERIALPROFILESET($,$,(#4924),$); -#4923=IFCRELASSOCIATESMATERIAL('2m9uO94dXB7u2qmRi1hiV1',$,$,$,(#4921),#4922); -#4924=IFCMATERIALPROFILE($,$,#17,#4920,$,$); -#4925=IFCMEMBERTYPE('3HYqDNVxn5c8dDXJZtxu$O',$,'355.6-6.3',$,$,$,$,$,$,$); -#4926=IFCMATERIALPROFILESET($,$,(#4928),$); -#4927=IFCRELASSOCIATESMATERIAL('0L_XR1a_jFQQ0exwQoGDAD',$,$,$,(#4925),#4926); -#4928=IFCMATERIALPROFILE($,$,#17,#4920,$,$); -#4929=IFCCOLUMNTYPE('2e5LJCVB19295Ey3JC7cuh',$,'355.6-6.3',$,$,$,$,$,$,$); -#4930=IFCMATERIALPROFILESET($,$,(#4932),$); -#4931=IFCRELASSOCIATESMATERIAL('18rQdWN2rBWQdtRGhi0tZZ',$,$,$,(#4929),#4930); -#4932=IFCMATERIALPROFILE($,$,#17,#4920,$,$); -#4933=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,8.); -#4934=IFCBEAMTYPE('1KvnYviq13YxswzxnbEmIF',$,'355.6-8.0',$,$,$,$,$,$,$); -#4935=IFCMATERIALPROFILESET($,$,(#4937),$); -#4936=IFCRELASSOCIATESMATERIAL('3SLNcHCYf0mBMVEi5y$yi1',$,$,$,(#4934),#4935); -#4937=IFCMATERIALPROFILE($,$,#17,#4933,$,$); -#4938=IFCMEMBERTYPE('1LsOro6Af0c9i31SQSZhCx',$,'355.6-8.0',$,$,$,$,$,$,$); -#4939=IFCMATERIALPROFILESET($,$,(#4941),$); -#4940=IFCRELASSOCIATESMATERIAL('3pv6$17WT32O$elZyVlJ34',$,$,$,(#4938),#4939); -#4941=IFCMATERIALPROFILE($,$,#17,#4933,$,$); -#4942=IFCCOLUMNTYPE('3E1LvPNIXDEvV5e8BBuzCo',$,'355.6-8.0',$,$,$,$,$,$,$); -#4943=IFCMATERIALPROFILESET($,$,(#4945),$); -#4944=IFCRELASSOCIATESMATERIAL('0Glgkt52L0jfq8WZJuu2fW',$,$,$,(#4942),#4943); -#4945=IFCMATERIALPROFILE($,$,#17,#4933,$,$); -#4946=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,10.); -#4947=IFCBEAMTYPE('3CKuNMpq14sR42Cw3fRxba',$,'355.6-10.0',$,$,$,$,$,$,$); -#4948=IFCMATERIALPROFILESET($,$,(#4950),$); -#4949=IFCRELASSOCIATESMATERIAL('12c4repWX6CQV2imZw$laA',$,$,$,(#4947),#4948); -#4950=IFCMATERIALPROFILE($,$,#17,#4946,$,$); -#4951=IFCMEMBERTYPE('3rt96dXzv7Agy8jMsewOEx',$,'355.6-10.0',$,$,$,$,$,$,$); -#4952=IFCMATERIALPROFILESET($,$,(#4954),$); -#4953=IFCRELASSOCIATESMATERIAL('3yWW$serf0B9vkpT9OIq60',$,$,$,(#4951),#4952); -#4954=IFCMATERIALPROFILE($,$,#17,#4946,$,$); -#4955=IFCCOLUMNTYPE('3_PxKV33n87gPiry$j8E66',$,'355.6-10.0',$,$,$,$,$,$,$); -#4956=IFCMATERIALPROFILESET($,$,(#4958),$); -#4957=IFCRELASSOCIATESMATERIAL('26TXbi_Sn5TgKj$pCoRsOa',$,$,$,(#4955),#4956); -#4958=IFCMATERIALPROFILE($,$,#17,#4946,$,$); -#4959=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,12.5); -#4960=IFCBEAMTYPE('2Merg2n55Dcgoe34ks56Rb',$,'355.6-12.5',$,$,$,$,$,$,$); -#4961=IFCMATERIALPROFILESET($,$,(#4963),$); -#4962=IFCRELASSOCIATESMATERIAL('3RiinM$Qv8oOw_xoZVUFhW',$,$,$,(#4960),#4961); -#4963=IFCMATERIALPROFILE($,$,#17,#4959,$,$); -#4964=IFCMEMBERTYPE('24EuritLfCOPBYGmYc4s3w',$,'355.6-12.5',$,$,$,$,$,$,$); -#4965=IFCMATERIALPROFILESET($,$,(#4967),$); -#4966=IFCRELASSOCIATESMATERIAL('3$iI$ynV11vAcfz4ZSOVV7',$,$,$,(#4964),#4965); -#4967=IFCMATERIALPROFILE($,$,#17,#4959,$,$); -#4968=IFCCOLUMNTYPE('0sjoxzv4zCRQarkpGq5OhN',$,'355.6-12.5',$,$,$,$,$,$,$); -#4969=IFCMATERIALPROFILESET($,$,(#4971),$); -#4970=IFCRELASSOCIATESMATERIAL('2oNtLHkn50I9POEd73jtDz',$,$,$,(#4968),#4969); -#4971=IFCMATERIALPROFILE($,$,#17,#4959,$,$); -#4972=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,14.2); -#4973=IFCBEAMTYPE('340Q0jvpb6IOKx$CtmsSGg',$,'355.6-14.2',$,$,$,$,$,$,$); -#4974=IFCMATERIALPROFILESET($,$,(#4976),$); -#4975=IFCRELASSOCIATESMATERIAL('2_f3rAp3rAZOH7DhdpCrgV',$,$,$,(#4973),#4974); -#4976=IFCMATERIALPROFILE($,$,#17,#4972,$,$); -#4977=IFCMEMBERTYPE('3yDgsb6$v0WOGZiXJ9o9Gi',$,'355.6-14.2',$,$,$,$,$,$,$); -#4978=IFCMATERIALPROFILESET($,$,(#4980),$); -#4979=IFCRELASSOCIATESMATERIAL('0_EiCywgD1i8KZRJkgh_Xw',$,$,$,(#4977),#4978); -#4980=IFCMATERIALPROFILE($,$,#17,#4972,$,$); -#4981=IFCCOLUMNTYPE('3HxAsZDFvC0wyXtyx$8kb4',$,'355.6-14.2',$,$,$,$,$,$,$); -#4982=IFCMATERIALPROFILESET($,$,(#4984),$); -#4983=IFCRELASSOCIATESMATERIAL('27QTjjs2vFKe7r9KUrSQjw',$,$,$,(#4981),#4982); -#4984=IFCMATERIALPROFILE($,$,#17,#4972,$,$); -#4985=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,16.); -#4986=IFCBEAMTYPE('1UD3eCDUXCBh6azClYXxdF',$,'355.6-16.0',$,$,$,$,$,$,$); -#4987=IFCMATERIALPROFILESET($,$,(#4989),$); -#4988=IFCRELASSOCIATESMATERIAL('0GlHQBc55Ev9niYwUfQzFg',$,$,$,(#4986),#4987); -#4989=IFCMATERIALPROFILE($,$,#17,#4985,$,$); -#4990=IFCMEMBERTYPE('3S9M724gL7NOYvYib6cGaV',$,'355.6-16.0',$,$,$,$,$,$,$); -#4991=IFCMATERIALPROFILESET($,$,(#4993),$); -#4992=IFCRELASSOCIATESMATERIAL('0huKr$8STBFhQ3d6dDtm47',$,$,$,(#4990),#4991); -#4993=IFCMATERIALPROFILE($,$,#17,#4985,$,$); -#4994=IFCCOLUMNTYPE('12GXWAOE13Ff8AFXGJp_cM',$,'355.6-16.0',$,$,$,$,$,$,$); -#4995=IFCMATERIALPROFILESET($,$,(#4997),$); -#4996=IFCRELASSOCIATESMATERIAL('2yNQ_E79v77BSYOFpWBIr_',$,$,$,(#4994),#4995); -#4997=IFCMATERIALPROFILE($,$,#17,#4985,$,$); -#4998=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,20.); -#4999=IFCBEAMTYPE('1YYst9v1X11e5IWRLCyZtu',$,'355.6-20.0',$,$,$,$,$,$,$); -#5000=IFCMATERIALPROFILESET($,$,(#5002),$); -#5001=IFCRELASSOCIATESMATERIAL('1nedxqY$TBfQgb3wUe4Kry',$,$,$,(#4999),#5000); -#5002=IFCMATERIALPROFILE($,$,#17,#4998,$,$); -#5003=IFCMEMBERTYPE('2lRcYUBGDFVvY6mLDs5mV3',$,'355.6-20.0',$,$,$,$,$,$,$); -#5004=IFCMATERIALPROFILESET($,$,(#5006),$); -#5005=IFCRELASSOCIATESMATERIAL('0R6qeh0q99vOI$VANTC5Ct',$,$,$,(#5003),#5004); -#5006=IFCMATERIALPROFILE($,$,#17,#4998,$,$); -#5007=IFCCOLUMNTYPE('2l5HjJubj9AO6yr5t09T0j',$,'355.6-20.0',$,$,$,$,$,$,$); -#5008=IFCMATERIALPROFILESET($,$,(#5010),$); -#5009=IFCRELASSOCIATESMATERIAL('3XjS3CZoz0$Qrhur4sKRPc',$,$,$,(#5007),#5008); -#5010=IFCMATERIALPROFILE($,$,#17,#4998,$,$); -#5011=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,177.8,25.); -#5012=IFCBEAMTYPE('1SdlKVCo92O8NjR88oSgfP',$,'355.6-25.0',$,$,$,$,$,$,$); -#5013=IFCMATERIALPROFILESET($,$,(#5015),$); -#5014=IFCRELASSOCIATESMATERIAL('2jTabrw_bCTf8cF18iYuIB',$,$,$,(#5012),#5013); -#5015=IFCMATERIALPROFILE($,$,#17,#5011,$,$); -#5016=IFCMEMBERTYPE('3Y0MrOWR10KBI_7TwJa4m1',$,'355.6-25.0',$,$,$,$,$,$,$); -#5017=IFCMATERIALPROFILESET($,$,(#5019),$); -#5018=IFCRELASSOCIATESMATERIAL('0ydTGQQ55B_eN3nLlAq4mw',$,$,$,(#5016),#5017); -#5019=IFCMATERIALPROFILE($,$,#17,#5011,$,$); -#5020=IFCCOLUMNTYPE('15QsCDDWn91ffk15yIUJHn',$,'355.6-25.0',$,$,$,$,$,$,$); -#5021=IFCMATERIALPROFILESET($,$,(#5023),$); -#5022=IFCRELASSOCIATESMATERIAL('2Pd09YWebC0xILdTRZqQ3O',$,$,$,(#5020),#5021); -#5023=IFCMATERIALPROFILE($,$,#17,#5011,$,$); -#5024=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,6.3); -#5025=IFCBEAMTYPE('28N3ucLPn38QaCD5Gj5Sv1',$,'406.4-6.3',$,$,$,$,$,$,$); -#5026=IFCMATERIALPROFILESET($,$,(#5028),$); -#5027=IFCRELASSOCIATESMATERIAL('1RtfkzEuPFdPFCTOaoUi1W',$,$,$,(#5025),#5026); -#5028=IFCMATERIALPROFILE($,$,#17,#5024,$,$); -#5029=IFCMEMBERTYPE('1KA9Hm7Tn8shQp8MFrrUiw',$,'406.4-6.3',$,$,$,$,$,$,$); -#5030=IFCMATERIALPROFILESET($,$,(#5032),$); -#5031=IFCRELASSOCIATESMATERIAL('3HPDY6$dDByQmnWv1WSvTG',$,$,$,(#5029),#5030); -#5032=IFCMATERIALPROFILE($,$,#17,#5024,$,$); -#5033=IFCCOLUMNTYPE('1iQs0xW7v3cABAAg6$m3wN',$,'406.4-6.3',$,$,$,$,$,$,$); -#5034=IFCMATERIALPROFILESET($,$,(#5036),$); -#5035=IFCRELASSOCIATESMATERIAL('3q09CbyLLCUR_KF_B27Cpt',$,$,$,(#5033),#5034); -#5036=IFCMATERIALPROFILE($,$,#17,#5024,$,$); -#5037=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,8.); -#5038=IFCBEAMTYPE('2VjvVIwVj18AvadvIQQago',$,'406.4-8.0',$,$,$,$,$,$,$); -#5039=IFCMATERIALPROFILESET($,$,(#5041),$); -#5040=IFCRELASSOCIATESMATERIAL('1XlrVOIcX7hOPPLGwk16Qp',$,$,$,(#5038),#5039); -#5041=IFCMATERIALPROFILE($,$,#17,#5037,$,$); -#5042=IFCMEMBERTYPE('3V73mlrG16Gu6oX0aVcLPP',$,'406.4-8.0',$,$,$,$,$,$,$); -#5043=IFCMATERIALPROFILESET($,$,(#5045),$); -#5044=IFCRELASSOCIATESMATERIAL('0VtxebQcz7SxOmxYdIbPec',$,$,$,(#5042),#5043); -#5045=IFCMATERIALPROFILE($,$,#17,#5037,$,$); -#5046=IFCCOLUMNTYPE('2bmyBqwx1Fgx8CRuvB6OtW',$,'406.4-8.0',$,$,$,$,$,$,$); -#5047=IFCMATERIALPROFILESET($,$,(#5049),$); -#5048=IFCRELASSOCIATESMATERIAL('2WAKeMHzD1EAHoZToi3MV0',$,$,$,(#5046),#5047); -#5049=IFCMATERIALPROFILE($,$,#17,#5037,$,$); -#5050=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,10.); -#5051=IFCBEAMTYPE('0XuvFsnRb3vQwR_QdSnSYV',$,'406.4-10.0',$,$,$,$,$,$,$); -#5052=IFCMATERIALPROFILESET($,$,(#5054),$); -#5053=IFCRELASSOCIATESMATERIAL('2qoxLRlzDAThAM9Ecl4d4F',$,$,$,(#5051),#5052); -#5054=IFCMATERIALPROFILE($,$,#17,#5050,$,$); -#5055=IFCMEMBERTYPE('364lEFwYf2n9Ri$SREOa5Q',$,'406.4-10.0',$,$,$,$,$,$,$); -#5056=IFCMATERIALPROFILESET($,$,(#5058),$); -#5057=IFCRELASSOCIATESMATERIAL('3zY7bQkr1BKgdY1aiABNhu',$,$,$,(#5055),#5056); -#5058=IFCMATERIALPROFILE($,$,#17,#5050,$,$); -#5059=IFCCOLUMNTYPE('0lW_VW5L57YRcfLeCK8w_F',$,'406.4-10.0',$,$,$,$,$,$,$); -#5060=IFCMATERIALPROFILESET($,$,(#5062),$); -#5061=IFCRELASSOCIATESMATERIAL('3MhyCAqWTAfhVBT77UrFnr',$,$,$,(#5059),#5060); -#5062=IFCMATERIALPROFILE($,$,#17,#5050,$,$); -#5063=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,12.5); -#5064=IFCBEAMTYPE('0Au0R6UyL9iRlNas77F7uL',$,'406.4-12.5',$,$,$,$,$,$,$); -#5065=IFCMATERIALPROFILESET($,$,(#5067),$); -#5066=IFCRELASSOCIATESMATERIAL('3TFTw$FUzDAx5laqTCuePK',$,$,$,(#5064),#5065); -#5067=IFCMATERIALPROFILE($,$,#17,#5063,$,$); -#5068=IFCMEMBERTYPE('1uDa273OjF1AxrgVQb5j_l',$,'406.4-12.5',$,$,$,$,$,$,$); -#5069=IFCMATERIALPROFILESET($,$,(#5071),$); -#5070=IFCRELASSOCIATESMATERIAL('3V_EkE_YP3lfq5dDz1oiHE',$,$,$,(#5068),#5069); -#5071=IFCMATERIALPROFILE($,$,#17,#5063,$,$); -#5072=IFCCOLUMNTYPE('3gkqzZvGjABwNQwAObVe25',$,'406.4-12.5',$,$,$,$,$,$,$); -#5073=IFCMATERIALPROFILESET($,$,(#5075),$); -#5074=IFCRELASSOCIATESMATERIAL('2xEDJawLD75A4vcnKl67r0',$,$,$,(#5072),#5073); -#5075=IFCMATERIALPROFILE($,$,#17,#5063,$,$); -#5076=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,14.2); -#5077=IFCBEAMTYPE('0IRigUeZ1EEAuWejmtalHl',$,'406.4-14.2',$,$,$,$,$,$,$); -#5078=IFCMATERIALPROFILESET($,$,(#5080),$); -#5079=IFCRELASSOCIATESMATERIAL('0FQSed16f8sPyY6v$YELpl',$,$,$,(#5077),#5078); -#5080=IFCMATERIALPROFILE($,$,#17,#5076,$,$); -#5081=IFCMEMBERTYPE('0QxmOoGVX5GO7iiYEK4seJ',$,'406.4-14.2',$,$,$,$,$,$,$); -#5082=IFCMATERIALPROFILESET($,$,(#5084),$); -#5083=IFCRELASSOCIATESMATERIAL('3lFw8QSc9EyhoDUR0gGLMy',$,$,$,(#5081),#5082); -#5084=IFCMATERIALPROFILE($,$,#17,#5076,$,$); -#5085=IFCCOLUMNTYPE('1zVuEVNk12g94C6PHzVFx5',$,'406.4-14.2',$,$,$,$,$,$,$); -#5086=IFCMATERIALPROFILESET($,$,(#5088),$); -#5087=IFCRELASSOCIATESMATERIAL('1bsORUME9Dmee7HYl_AbCt',$,$,$,(#5085),#5086); -#5088=IFCMATERIALPROFILE($,$,#17,#5076,$,$); -#5089=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,16.); -#5090=IFCBEAMTYPE('0f4cIQftD4uO2IvKsaUoXw',$,'406.4-16.0',$,$,$,$,$,$,$); -#5091=IFCMATERIALPROFILESET($,$,(#5093),$); -#5092=IFCRELASSOCIATESMATERIAL('2j$zVnSNj44hC23TtIGXsd',$,$,$,(#5090),#5091); -#5093=IFCMATERIALPROFILE($,$,#17,#5089,$,$); -#5094=IFCMEMBERTYPE('2UXVCASiL1BxKCrhe3DMry',$,'406.4-16.0',$,$,$,$,$,$,$); -#5095=IFCMATERIALPROFILESET($,$,(#5097),$); -#5096=IFCRELASSOCIATESMATERIAL('1w7IQP35T6pObTXWiAmvBP',$,$,$,(#5094),#5095); -#5097=IFCMATERIALPROFILE($,$,#17,#5089,$,$); -#5098=IFCCOLUMNTYPE('2PuF4kxCXAQgVCC4FxKzn5',$,'406.4-16.0',$,$,$,$,$,$,$); -#5099=IFCMATERIALPROFILESET($,$,(#5101),$); -#5100=IFCRELASSOCIATESMATERIAL('0R7wedxMj3XQUc4FtrRVcF',$,$,$,(#5098),#5099); -#5101=IFCMATERIALPROFILE($,$,#17,#5089,$,$); -#5102=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,20.); -#5103=IFCBEAMTYPE('26jTrcA2bDP8DbENms50Of',$,'406.4-20.0',$,$,$,$,$,$,$); -#5104=IFCMATERIALPROFILESET($,$,(#5106),$); -#5105=IFCRELASSOCIATESMATERIAL('1cmiGpyKbCjQaOK0CzVn8i',$,$,$,(#5103),#5104); -#5106=IFCMATERIALPROFILE($,$,#17,#5102,$,$); -#5107=IFCMEMBERTYPE('3iAfYWFGvAH9no5IxOpwzS',$,'406.4-20.0',$,$,$,$,$,$,$); -#5108=IFCMATERIALPROFILESET($,$,(#5110),$); -#5109=IFCRELASSOCIATESMATERIAL('13GyH1O1DD9P8WUPoBmt$8',$,$,$,(#5107),#5108); -#5110=IFCMATERIALPROFILE($,$,#17,#5102,$,$); -#5111=IFCCOLUMNTYPE('3vfJAwwYLCVfB$Teaop30i',$,'406.4-20.0',$,$,$,$,$,$,$); -#5112=IFCMATERIALPROFILESET($,$,(#5114),$); -#5113=IFCRELASSOCIATESMATERIAL('3ev67CrOf2XOU929YEAdwN',$,$,$,(#5111),#5112); -#5114=IFCMATERIALPROFILE($,$,#17,#5102,$,$); -#5115=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,25.); -#5116=IFCBEAMTYPE('0GeIBB7Hn4xfgEEIkqz5bH',$,'406.4-25.0',$,$,$,$,$,$,$); -#5117=IFCMATERIALPROFILESET($,$,(#5119),$); -#5118=IFCRELASSOCIATESMATERIAL('1dxPKMi4vCWf9Bp$kU7k96',$,$,$,(#5116),#5117); -#5119=IFCMATERIALPROFILE($,$,#17,#5115,$,$); -#5120=IFCMEMBERTYPE('0ib7Rh2x5DSOTXIf$SC1sS',$,'406.4-25.0',$,$,$,$,$,$,$); -#5121=IFCMATERIALPROFILESET($,$,(#5123),$); -#5122=IFCRELASSOCIATESMATERIAL('1vUdun_fnFe9hFnjlUZ07p',$,$,$,(#5120),#5121); -#5123=IFCMATERIALPROFILE($,$,#17,#5115,$,$); -#5124=IFCCOLUMNTYPE('1Sti3dban72f0rpPbyhocA',$,'406.4-25.0',$,$,$,$,$,$,$); -#5125=IFCMATERIALPROFILESET($,$,(#5127),$); -#5126=IFCRELASSOCIATESMATERIAL('04hNcXAI13mg65IWwnHV9Z',$,$,$,(#5124),#5125); -#5127=IFCMATERIALPROFILE($,$,#17,#5115,$,$); -#5128=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,30.); -#5129=IFCBEAMTYPE('2C24VjwAf1MOJ2celti2I1',$,'406.4-30.0',$,$,$,$,$,$,$); -#5130=IFCMATERIALPROFILESET($,$,(#5132),$); -#5131=IFCRELASSOCIATESMATERIAL('1lVPKb71L7ohCmhUcfX$qT',$,$,$,(#5129),#5130); -#5132=IFCMATERIALPROFILE($,$,#17,#5128,$,$); -#5133=IFCMEMBERTYPE('0lRtk33IrC3AD0_XPb7mzV',$,'406.4-30.0',$,$,$,$,$,$,$); -#5134=IFCMATERIALPROFILESET($,$,(#5136),$); -#5135=IFCRELASSOCIATESMATERIAL('0kGu7wyRH7IvqnIC7Ah2Oi',$,$,$,(#5133),#5134); -#5136=IFCMATERIALPROFILE($,$,#17,#5128,$,$); -#5137=IFCCOLUMNTYPE('3DoFSa0zHC2Ob3gd2ykYOR',$,'406.4-30.0',$,$,$,$,$,$,$); -#5138=IFCMATERIALPROFILESET($,$,(#5140),$); -#5139=IFCRELASSOCIATESMATERIAL('1lafknRK18GQBkTp7Wk7eY',$,$,$,(#5137),#5138); -#5140=IFCMATERIALPROFILE($,$,#17,#5128,$,$); -#5141=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,203.2,40.); -#5142=IFCBEAMTYPE('2gCVxrKWLDZgoBL8mPsXU2',$,'406.4-40.0',$,$,$,$,$,$,$); -#5143=IFCMATERIALPROFILESET($,$,(#5145),$); -#5144=IFCRELASSOCIATESMATERIAL('2Z8j$Gz9H5YvRnAspsaBSw',$,$,$,(#5142),#5143); -#5145=IFCMATERIALPROFILE($,$,#17,#5141,$,$); -#5146=IFCMEMBERTYPE('1SSlDUGUv5396DPrt$NQ23',$,'406.4-40.0',$,$,$,$,$,$,$); -#5147=IFCMATERIALPROFILESET($,$,(#5149),$); -#5148=IFCRELASSOCIATESMATERIAL('1eySAQpAX5uvakL6Uk1b9a',$,$,$,(#5146),#5147); -#5149=IFCMATERIALPROFILE($,$,#17,#5141,$,$); -#5150=IFCCOLUMNTYPE('3hEFxdTpzAthaiVfgKlOg4',$,'406.4-40.0',$,$,$,$,$,$,$); -#5151=IFCMATERIALPROFILESET($,$,(#5153),$); -#5152=IFCRELASSOCIATESMATERIAL('3RtlNUWQnBvO6gMr5oiUX5',$,$,$,(#5150),#5151); -#5153=IFCMATERIALPROFILE($,$,#17,#5141,$,$); -#5154=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,6.3); -#5155=IFCBEAMTYPE('0TjFPlIvb20ehkS8U_g_ER',$,'457.0-6.3',$,$,$,$,$,$,$); -#5156=IFCMATERIALPROFILESET($,$,(#5158),$); -#5157=IFCRELASSOCIATESMATERIAL('12UoKv47vB8f_QaBORjcGX',$,$,$,(#5155),#5156); -#5158=IFCMATERIALPROFILE($,$,#17,#5154,$,$); -#5159=IFCMEMBERTYPE('11xeT4e$zDmPq8CoRnzQws',$,'457.0-6.3',$,$,$,$,$,$,$); -#5160=IFCMATERIALPROFILESET($,$,(#5162),$); -#5161=IFCRELASSOCIATESMATERIAL('1KBqhe_Xn7MfkF3qBFQ1ff',$,$,$,(#5159),#5160); -#5162=IFCMATERIALPROFILE($,$,#17,#5154,$,$); -#5163=IFCCOLUMNTYPE('3H0_N201nDoeCXwl2uNOjc',$,'457.0-6.3',$,$,$,$,$,$,$); -#5164=IFCMATERIALPROFILESET($,$,(#5166),$); -#5165=IFCRELASSOCIATESMATERIAL('2lRZBN6kb0sgnfY9RKZgo_',$,$,$,(#5163),#5164); -#5166=IFCMATERIALPROFILE($,$,#17,#5154,$,$); -#5167=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,8.); -#5168=IFCBEAMTYPE('1e3XiO$CXAvelvTOoi$cTi',$,'457.0-8.0',$,$,$,$,$,$,$); -#5169=IFCMATERIALPROFILESET($,$,(#5171),$); -#5170=IFCRELASSOCIATESMATERIAL('2SVy5EzgvB2OSvLCl_ZjQ7',$,$,$,(#5168),#5169); -#5171=IFCMATERIALPROFILE($,$,#17,#5167,$,$); -#5172=IFCMEMBERTYPE('1G8wurXl5D_9TQbhnNiRwk',$,'457.0-8.0',$,$,$,$,$,$,$); -#5173=IFCMATERIALPROFILESET($,$,(#5175),$); -#5174=IFCRELASSOCIATESMATERIAL('2TcYEsV_P068rK5mP713ce',$,$,$,(#5172),#5173); -#5175=IFCMATERIALPROFILE($,$,#17,#5167,$,$); -#5176=IFCCOLUMNTYPE('1DbDTX4bX9lPqm3xxArdh5',$,'457.0-8.0',$,$,$,$,$,$,$); -#5177=IFCMATERIALPROFILESET($,$,(#5179),$); -#5178=IFCRELASSOCIATESMATERIAL('2Pdo8SpcD4_wdUKJ5Kv7yu',$,$,$,(#5176),#5177); -#5179=IFCMATERIALPROFILE($,$,#17,#5167,$,$); -#5180=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,10.); -#5181=IFCBEAMTYPE('1gG$WNz814AfCmHUwxM4pw',$,'457.0-10.0',$,$,$,$,$,$,$); -#5182=IFCMATERIALPROFILESET($,$,(#5184),$); -#5183=IFCRELASSOCIATESMATERIAL('2pWbpNa7v5kf4RpkMR64vn',$,$,$,(#5181),#5182); -#5184=IFCMATERIALPROFILE($,$,#17,#5180,$,$); -#5185=IFCMEMBERTYPE('0E1Fd368z6UfkCe6hvtkSB',$,'457.0-10.0',$,$,$,$,$,$,$); -#5186=IFCMATERIALPROFILESET($,$,(#5188),$); -#5187=IFCRELASSOCIATESMATERIAL('3WBVSVsZLBE8mQJBhnzS28',$,$,$,(#5185),#5186); -#5188=IFCMATERIALPROFILE($,$,#17,#5180,$,$); -#5189=IFCCOLUMNTYPE('197Li0GazDevBkwY9coKJd',$,'457.0-10.0',$,$,$,$,$,$,$); -#5190=IFCMATERIALPROFILESET($,$,(#5192),$); -#5191=IFCRELASSOCIATESMATERIAL('0Z3SSWTkrEUw15b_6FpQIl',$,$,$,(#5189),#5190); -#5192=IFCMATERIALPROFILE($,$,#17,#5180,$,$); -#5193=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,12.5); -#5194=IFCBEAMTYPE('0bgPlz78L8kAD4uE$y9JNw',$,'457.0-12.5',$,$,$,$,$,$,$); -#5195=IFCMATERIALPROFILESET($,$,(#5197),$); -#5196=IFCRELASSOCIATESMATERIAL('3wFV3qLYX8$O7J5sM8kgnD',$,$,$,(#5194),#5195); -#5197=IFCMATERIALPROFILE($,$,#17,#5193,$,$); -#5198=IFCMEMBERTYPE('0UcYXmvzv5geq5VDkpf4xm',$,'457.0-12.5',$,$,$,$,$,$,$); -#5199=IFCMATERIALPROFILESET($,$,(#5201),$); -#5200=IFCRELASSOCIATESMATERIAL('1qAjC61WvAIwCbsIscYCMF',$,$,$,(#5198),#5199); -#5201=IFCMATERIALPROFILE($,$,#17,#5193,$,$); -#5202=IFCCOLUMNTYPE('128VgJyY50Xh5jWEszKPon',$,'457.0-12.5',$,$,$,$,$,$,$); -#5203=IFCMATERIALPROFILESET($,$,(#5205),$); -#5204=IFCRELASSOCIATESMATERIAL('1VBMQaURr1ygUCwwmSPA7U',$,$,$,(#5202),#5203); -#5205=IFCMATERIALPROFILE($,$,#17,#5193,$,$); -#5206=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,14.2); -#5207=IFCBEAMTYPE('3Z7Ed20F12PusU6gB08PYl',$,'457.0-14.2',$,$,$,$,$,$,$); -#5208=IFCMATERIALPROFILESET($,$,(#5210),$); -#5209=IFCRELASSOCIATESMATERIAL('2T3sgKskfEIQP_nCq420ld',$,$,$,(#5207),#5208); -#5210=IFCMATERIALPROFILE($,$,#17,#5206,$,$); -#5211=IFCMEMBERTYPE('133EXKb_PDHfqKjOBcXp4Z',$,'457.0-14.2',$,$,$,$,$,$,$); -#5212=IFCMATERIALPROFILESET($,$,(#5214),$); -#5213=IFCRELASSOCIATESMATERIAL('24WVA6VJv0DhwB3f$qqjYS',$,$,$,(#5211),#5212); -#5214=IFCMATERIALPROFILE($,$,#17,#5206,$,$); -#5215=IFCCOLUMNTYPE('09acVPcJ5479rMZgBH6tr7',$,'457.0-14.2',$,$,$,$,$,$,$); -#5216=IFCMATERIALPROFILESET($,$,(#5218),$); -#5217=IFCRELASSOCIATESMATERIAL('2ULo5OtM5F$8GeTVduF0tM',$,$,$,(#5215),#5216); -#5218=IFCMATERIALPROFILE($,$,#17,#5206,$,$); -#5219=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,16.); -#5220=IFCBEAMTYPE('17QQOd5z93hfPHB8foHlsQ',$,'457.0-16.0',$,$,$,$,$,$,$); -#5221=IFCMATERIALPROFILESET($,$,(#5223),$); -#5222=IFCRELASSOCIATESMATERIAL('1lvpvjvZf3kRdPSu_C$NiH',$,$,$,(#5220),#5221); -#5223=IFCMATERIALPROFILE($,$,#17,#5219,$,$); -#5224=IFCMEMBERTYPE('3vd6X$LY5778WsJdhmzFBG',$,'457.0-16.0',$,$,$,$,$,$,$); -#5225=IFCMATERIALPROFILESET($,$,(#5227),$); -#5226=IFCRELASSOCIATESMATERIAL('25RYcb9gb8KfXvAsoo0yKb',$,$,$,(#5224),#5225); -#5227=IFCMATERIALPROFILE($,$,#17,#5219,$,$); -#5228=IFCCOLUMNTYPE('18chSc5lf9ueIuzpUEDuja',$,'457.0-16.0',$,$,$,$,$,$,$); -#5229=IFCMATERIALPROFILESET($,$,(#5231),$); -#5230=IFCRELASSOCIATESMATERIAL('0Sw6d2Tf51kAejK3Pws3D4',$,$,$,(#5228),#5229); -#5231=IFCMATERIALPROFILE($,$,#17,#5219,$,$); -#5232=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,20.); -#5233=IFCBEAMTYPE('0AJ4xpWkT8SetwfuzzZkJC',$,'457.0-20.0',$,$,$,$,$,$,$); -#5234=IFCMATERIALPROFILESET($,$,(#5236),$); -#5235=IFCRELASSOCIATESMATERIAL('1q51rCCbH0CPWRnYf_aXGc',$,$,$,(#5233),#5234); -#5236=IFCMATERIALPROFILE($,$,#17,#5232,$,$); -#5237=IFCMEMBERTYPE('0m_$G7hXX6XAMYsohKCZD0',$,'457.0-20.0',$,$,$,$,$,$,$); -#5238=IFCMATERIALPROFILESET($,$,(#5240),$); -#5239=IFCRELASSOCIATESMATERIAL('01XrLTbkr50809$2RptA0g',$,$,$,(#5237),#5238); -#5240=IFCMATERIALPROFILE($,$,#17,#5232,$,$); -#5241=IFCCOLUMNTYPE('0IXXCLEnj0lwxiI55OlaJb',$,'457.0-20.0',$,$,$,$,$,$,$); -#5242=IFCMATERIALPROFILESET($,$,(#5244),$); -#5243=IFCRELASSOCIATESMATERIAL('1cztCnh8f4mR3XO1EQwMMg',$,$,$,(#5241),#5242); -#5244=IFCMATERIALPROFILE($,$,#17,#5232,$,$); -#5245=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,25.); -#5246=IFCBEAMTYPE('0q4GHbkB5AAgrDT$MnZPNK',$,'457.0-25.0',$,$,$,$,$,$,$); -#5247=IFCMATERIALPROFILESET($,$,(#5249),$); -#5248=IFCRELASSOCIATESMATERIAL('1W2y0aSn1ACv0l417N99EI',$,$,$,(#5246),#5247); -#5249=IFCMATERIALPROFILE($,$,#17,#5245,$,$); -#5250=IFCMEMBERTYPE('1HMmf2Hg1C_gsmjhjGinjs',$,'457.0-25.0',$,$,$,$,$,$,$); -#5251=IFCMATERIALPROFILESET($,$,(#5253),$); -#5252=IFCRELASSOCIATESMATERIAL('3Ut9BGSDLA7Bx5RdSSbSyC',$,$,$,(#5250),#5251); -#5253=IFCMATERIALPROFILE($,$,#17,#5245,$,$); -#5254=IFCCOLUMNTYPE('34kcJA_$jA6RxGhqMaTn2D',$,'457.0-25.0',$,$,$,$,$,$,$); -#5255=IFCMATERIALPROFILESET($,$,(#5257),$); -#5256=IFCRELASSOCIATESMATERIAL('0BWGutmGT6bgwLbtlveeVH',$,$,$,(#5254),#5255); -#5257=IFCMATERIALPROFILE($,$,#17,#5245,$,$); -#5258=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,30.); -#5259=IFCBEAMTYPE('1wXSpjEOz89QfcBsVKXwSK',$,'457.0-30.0',$,$,$,$,$,$,$); -#5260=IFCMATERIALPROFILESET($,$,(#5262),$); -#5261=IFCRELASSOCIATESMATERIAL('2whi5iEZz5i82GL5S3a2vQ',$,$,$,(#5259),#5260); -#5262=IFCMATERIALPROFILE($,$,#17,#5258,$,$); -#5263=IFCMEMBERTYPE('2R52u6EJb29Pscdv58HK90',$,'457.0-30.0',$,$,$,$,$,$,$); -#5264=IFCMATERIALPROFILESET($,$,(#5266),$); -#5265=IFCRELASSOCIATESMATERIAL('1xqnwI3Vj8xu0bSpulazO8',$,$,$,(#5263),#5264); -#5266=IFCMATERIALPROFILE($,$,#17,#5258,$,$); -#5267=IFCCOLUMNTYPE('15WJ1uSqn8feJ9oyRh56FM',$,'457.0-30.0',$,$,$,$,$,$,$); -#5268=IFCMATERIALPROFILESET($,$,(#5270),$); -#5269=IFCRELASSOCIATESMATERIAL('0deAEyFB9Dk9PnTOWzyAir',$,$,$,(#5267),#5268); -#5270=IFCMATERIALPROFILE($,$,#17,#5258,$,$); -#5271=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,228.5,40.); -#5272=IFCBEAMTYPE('0VCUhk475D3PKj6Ut8HW9i',$,'457.0-40.0',$,$,$,$,$,$,$); -#5273=IFCMATERIALPROFILESET($,$,(#5275),$); -#5274=IFCRELASSOCIATESMATERIAL('1e3xd76s950P4mPe32kVsx',$,$,$,(#5272),#5273); -#5275=IFCMATERIALPROFILE($,$,#17,#5271,$,$); -#5276=IFCMEMBERTYPE('18wD6L45fCFBpoWjlMyKQ1',$,'457.0-40.0',$,$,$,$,$,$,$); -#5277=IFCMATERIALPROFILESET($,$,(#5279),$); -#5278=IFCRELASSOCIATESMATERIAL('27NsGBnVP2cxcmYnm1oYou',$,$,$,(#5276),#5277); -#5279=IFCMATERIALPROFILE($,$,#17,#5271,$,$); -#5280=IFCCOLUMNTYPE('09gJdUow92GhuB0sQ9F4rL',$,'457.0-40.0',$,$,$,$,$,$,$); -#5281=IFCMATERIALPROFILESET($,$,(#5283),$); -#5282=IFCRELASSOCIATESMATERIAL('1EMOa8ART81BGPBmzl02Ah',$,$,$,(#5280),#5281); -#5283=IFCMATERIALPROFILE($,$,#17,#5271,$,$); -#5284=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,6.3); -#5285=IFCBEAMTYPE('2UlPjTdZ9A49lNqGi9ACwg',$,'508.0-6.3',$,$,$,$,$,$,$); -#5286=IFCMATERIALPROFILESET($,$,(#5288),$); -#5287=IFCRELASSOCIATESMATERIAL('2QjUUGu6v6Tul3Yle8W2bg',$,$,$,(#5285),#5286); -#5288=IFCMATERIALPROFILE($,$,#17,#5284,$,$); -#5289=IFCMEMBERTYPE('2qVCXBh_v5o9$RuOw0ax9d',$,'508.0-6.3',$,$,$,$,$,$,$); -#5290=IFCMATERIALPROFILESET($,$,(#5292),$); -#5291=IFCRELASSOCIATESMATERIAL('062$8mDZ518wCWAOnOCdqS',$,$,$,(#5289),#5290); -#5292=IFCMATERIALPROFILE($,$,#17,#5284,$,$); -#5293=IFCCOLUMNTYPE('2CVdPE6az0jO7lvqVO8n1c',$,'508.0-6.3',$,$,$,$,$,$,$); -#5294=IFCMATERIALPROFILESET($,$,(#5296),$); -#5295=IFCRELASSOCIATESMATERIAL('25QsfBzqb64gVqQyZ4Rc7D',$,$,$,(#5293),#5294); -#5296=IFCMATERIALPROFILE($,$,#17,#5284,$,$); -#5297=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,8.); -#5298=IFCBEAMTYPE('2lfz_mvlX32QpNWhjIn3Y0',$,'508.0-8.0',$,$,$,$,$,$,$); -#5299=IFCMATERIALPROFILESET($,$,(#5301),$); -#5300=IFCRELASSOCIATESMATERIAL('2CD9IEiFjBsuUmilOI5xFT',$,$,$,(#5298),#5299); -#5301=IFCMATERIALPROFILE($,$,#17,#5297,$,$); -#5302=IFCMEMBERTYPE('1Gcqyb3XTDwAoPNHZ1_BC6',$,'508.0-8.0',$,$,$,$,$,$,$); -#5303=IFCMATERIALPROFILESET($,$,(#5305),$); -#5304=IFCRELASSOCIATESMATERIAL('10v8ZXmPTE4gCJ3Cg1PjF$',$,$,$,(#5302),#5303); -#5305=IFCMATERIALPROFILE($,$,#17,#5297,$,$); -#5306=IFCCOLUMNTYPE('1N_y$P$6f5fQTbzR8dthx9',$,'508.0-8.0',$,$,$,$,$,$,$); -#5307=IFCMATERIALPROFILESET($,$,(#5309),$); -#5308=IFCRELASSOCIATESMATERIAL('3ZoKMMAfjEoA7c51mC1Dhs',$,$,$,(#5306),#5307); -#5309=IFCMATERIALPROFILE($,$,#17,#5297,$,$); -#5310=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,10.); -#5311=IFCBEAMTYPE('3U2xt9Aob81x9BjJFh24yi',$,'508.0-10.0',$,$,$,$,$,$,$); -#5312=IFCMATERIALPROFILESET($,$,(#5314),$); -#5313=IFCRELASSOCIATESMATERIAL('1s4sy9gifD$xO7$sr$oEGJ',$,$,$,(#5311),#5312); -#5314=IFCMATERIALPROFILE($,$,#17,#5310,$,$); -#5315=IFCMEMBERTYPE('1o9v2kmHbCxxz0bPWxVqz$',$,'508.0-10.0',$,$,$,$,$,$,$); -#5316=IFCMATERIALPROFILESET($,$,(#5318),$); -#5317=IFCRELASSOCIATESMATERIAL('1W8Xug_lD9s9p8tsCKjdhP',$,$,$,(#5315),#5316); -#5318=IFCMATERIALPROFILE($,$,#17,#5310,$,$); -#5319=IFCCOLUMNTYPE('3Dmo30$5TBwhC93Q5iqnEt',$,'508.0-10.0',$,$,$,$,$,$,$); -#5320=IFCMATERIALPROFILESET($,$,(#5322),$); -#5321=IFCRELASSOCIATESMATERIAL('3Q87qgQZrAkfoUfzytk70K',$,$,$,(#5319),#5320); -#5322=IFCMATERIALPROFILE($,$,#17,#5310,$,$); -#5323=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,12.5); -#5324=IFCBEAMTYPE('2xOmCzEfn1oR0zAwAwpr44',$,'508.0-12.5',$,$,$,$,$,$,$); -#5325=IFCMATERIALPROFILESET($,$,(#5327),$); -#5326=IFCRELASSOCIATESMATERIAL('08reXV9P96j9zJU0SfV3jg',$,$,$,(#5324),#5325); -#5327=IFCMATERIALPROFILE($,$,#17,#5323,$,$); -#5328=IFCMEMBERTYPE('0K5sa$l4D1bRXH$z3osenD',$,'508.0-12.5',$,$,$,$,$,$,$); -#5329=IFCMATERIALPROFILESET($,$,(#5331),$); -#5330=IFCRELASSOCIATESMATERIAL('2LV9BnC_1DCOIu5FP$4Y83',$,$,$,(#5328),#5329); -#5331=IFCMATERIALPROFILE($,$,#17,#5323,$,$); -#5332=IFCCOLUMNTYPE('27Qp_hfPvCauP0B3Kx$2Nl',$,'508.0-12.5',$,$,$,$,$,$,$); -#5333=IFCMATERIALPROFILESET($,$,(#5335),$); -#5334=IFCRELASSOCIATESMATERIAL('2fLN$lGcb0q9Hz_n6SJGNf',$,$,$,(#5332),#5333); -#5335=IFCMATERIALPROFILE($,$,#17,#5323,$,$); -#5336=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,14.2); -#5337=IFCBEAMTYPE('1hy2e3Atn0xweWtJNXtc3M',$,'508.0-14.2',$,$,$,$,$,$,$); -#5338=IFCMATERIALPROFILESET($,$,(#5340),$); -#5339=IFCRELASSOCIATESMATERIAL('0uv_HXSAzClRPdsr64WQWa',$,$,$,(#5337),#5338); -#5340=IFCMATERIALPROFILE($,$,#17,#5336,$,$); -#5341=IFCMEMBERTYPE('3wEV8Krqz3du__MDQxZjzO',$,'508.0-14.2',$,$,$,$,$,$,$); -#5342=IFCMATERIALPROFILESET($,$,(#5344),$); -#5343=IFCRELASSOCIATESMATERIAL('00QD3pqdrC0A$hF3ahNzAX',$,$,$,(#5341),#5342); -#5344=IFCMATERIALPROFILE($,$,#17,#5336,$,$); -#5345=IFCCOLUMNTYPE('3UpmwG$FX3Ax2DnlKQFXDU',$,'508.0-14.2',$,$,$,$,$,$,$); -#5346=IFCMATERIALPROFILESET($,$,(#5348),$); -#5347=IFCRELASSOCIATESMATERIAL('0HYq_sNXL4k9vVL8qJyVtW',$,$,$,(#5345),#5346); -#5348=IFCMATERIALPROFILE($,$,#17,#5336,$,$); -#5349=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,16.); -#5350=IFCBEAMTYPE('2oXL5dvTrChQZIfLdPqXTW',$,'508.0-16.0',$,$,$,$,$,$,$); -#5351=IFCMATERIALPROFILESET($,$,(#5353),$); -#5352=IFCRELASSOCIATESMATERIAL('2NSm23Koz7TxGyPUqf274r',$,$,$,(#5350),#5351); -#5353=IFCMATERIALPROFILE($,$,#17,#5349,$,$); -#5354=IFCMEMBERTYPE('09LFTJAb57JhWb6NUkgm7d',$,'508.0-16.0',$,$,$,$,$,$,$); -#5355=IFCMATERIALPROFILESET($,$,(#5357),$); -#5356=IFCRELASSOCIATESMATERIAL('0k8aax$JD7gRrwzbXOW8LI',$,$,$,(#5354),#5355); -#5357=IFCMATERIALPROFILE($,$,#17,#5349,$,$); -#5358=IFCCOLUMNTYPE('0lwoO$ysTANRn8hHaY7VY9',$,'508.0-16.0',$,$,$,$,$,$,$); -#5359=IFCMATERIALPROFILESET($,$,(#5361),$); -#5360=IFCRELASSOCIATESMATERIAL('2X6Huf3gX30Ady9V3cWsgz',$,$,$,(#5358),#5359); -#5361=IFCMATERIALPROFILE($,$,#17,#5349,$,$); -#5362=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,20.); -#5363=IFCBEAMTYPE('0rz3xkd4PB18pRBSPsqWcL',$,'508.0-20.0',$,$,$,$,$,$,$); -#5364=IFCMATERIALPROFILESET($,$,(#5366),$); -#5365=IFCRELASSOCIATESMATERIAL('3Fjmi7GJbEuOO$WpGRUAWj',$,$,$,(#5363),#5364); -#5366=IFCMATERIALPROFILE($,$,#17,#5362,$,$); -#5367=IFCMEMBERTYPE('1htFzC6255cw8QJjSf458V',$,'508.0-20.0',$,$,$,$,$,$,$); -#5368=IFCMATERIALPROFILESET($,$,(#5370),$); -#5369=IFCRELASSOCIATESMATERIAL('0pyNunz5fDl8gir6esJaSf',$,$,$,(#5367),#5368); -#5370=IFCMATERIALPROFILE($,$,#17,#5362,$,$); -#5371=IFCCOLUMNTYPE('2BR1QqWqXFhxHpe1nENzvH',$,'508.0-20.0',$,$,$,$,$,$,$); -#5372=IFCMATERIALPROFILESET($,$,(#5374),$); -#5373=IFCRELASSOCIATESMATERIAL('1c3LOouQP5l9iMnCd0wMTo',$,$,$,(#5371),#5372); -#5374=IFCMATERIALPROFILE($,$,#17,#5362,$,$); -#5375=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,25.); -#5376=IFCBEAMTYPE('3Yyejp01b42ekuKRY1ATLw',$,'508.0-25.0',$,$,$,$,$,$,$); -#5377=IFCMATERIALPROFILESET($,$,(#5379),$); -#5378=IFCRELASSOCIATESMATERIAL('1sui3bwKbCjRUyxS8sKN3x',$,$,$,(#5376),#5377); -#5379=IFCMATERIALPROFILE($,$,#17,#5375,$,$); -#5380=IFCMEMBERTYPE('3sVIXTrXv7AAIvkq5wFFlf',$,'508.0-25.0',$,$,$,$,$,$,$); -#5381=IFCMATERIALPROFILESET($,$,(#5383),$); -#5382=IFCRELASSOCIATESMATERIAL('3WqlVMqpn2G8E5HYm7_uXv',$,$,$,(#5380),#5381); -#5383=IFCMATERIALPROFILE($,$,#17,#5375,$,$); -#5384=IFCCOLUMNTYPE('0jYgXr3RnEFBOevyY8CmWv',$,'508.0-25.0',$,$,$,$,$,$,$); -#5385=IFCMATERIALPROFILESET($,$,(#5387),$); -#5386=IFCRELASSOCIATESMATERIAL('0uSPfswPf5nBExDAIZGutN',$,$,$,(#5384),#5385); -#5387=IFCMATERIALPROFILE($,$,#17,#5375,$,$); -#5388=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,30.); -#5389=IFCBEAMTYPE('3GCWL4$mjDAO39fPBOGq3o',$,'508.0-30.0',$,$,$,$,$,$,$); -#5390=IFCMATERIALPROFILESET($,$,(#5392),$); -#5391=IFCRELASSOCIATESMATERIAL('32exCAmWPEv8OcYOxLNgGl',$,$,$,(#5389),#5390); -#5392=IFCMATERIALPROFILE($,$,#17,#5388,$,$); -#5393=IFCMEMBERTYPE('1PnWcCSz53nhUprQYzpvXY',$,'508.0-30.0',$,$,$,$,$,$,$); -#5394=IFCMATERIALPROFILESET($,$,(#5396),$); -#5395=IFCRELASSOCIATESMATERIAL('2ME4wIusD7ovZWVSk3XTz3',$,$,$,(#5393),#5394); -#5396=IFCMATERIALPROFILE($,$,#17,#5388,$,$); -#5397=IFCCOLUMNTYPE('0P95IPVXPF_BaUh8MQ2hqm',$,'508.0-30.0',$,$,$,$,$,$,$); -#5398=IFCMATERIALPROFILESET($,$,(#5400),$); -#5399=IFCRELASSOCIATESMATERIAL('1T$hF__Ib05uCFbFM6VaH7',$,$,$,(#5397),#5398); -#5400=IFCMATERIALPROFILE($,$,#17,#5388,$,$); -#5401=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,40.); -#5402=IFCBEAMTYPE('2Y3UePbh9Fpv5NN6_GuPRe',$,'508.0-40.0',$,$,$,$,$,$,$); -#5403=IFCMATERIALPROFILESET($,$,(#5405),$); -#5404=IFCRELASSOCIATESMATERIAL('0dYPcTDGn9zud6eTA16a90',$,$,$,(#5402),#5403); -#5405=IFCMATERIALPROFILE($,$,#17,#5401,$,$); -#5406=IFCMEMBERTYPE('0gCdtEHz54LxqTHT_cJQKP',$,'508.0-40.0',$,$,$,$,$,$,$); -#5407=IFCMATERIALPROFILESET($,$,(#5409),$); -#5408=IFCRELASSOCIATESMATERIAL('3gwC5pG7b7M9ZNYYfUwmHY',$,$,$,(#5406),#5407); -#5409=IFCMATERIALPROFILE($,$,#17,#5401,$,$); -#5410=IFCCOLUMNTYPE('3xU7fIGKj7sRyXChIgqYzT',$,'508.0-40.0',$,$,$,$,$,$,$); -#5411=IFCMATERIALPROFILESET($,$,(#5413),$); -#5412=IFCRELASSOCIATESMATERIAL('3$$TtNq3HAtvm3Y3jYP4rB',$,$,$,(#5410),#5411); -#5413=IFCMATERIALPROFILE($,$,#17,#5401,$,$); -#5414=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,254.,50.); -#5415=IFCBEAMTYPE('1Zguo1knzAdOzcl0U9hgd2',$,'508.0-50.0',$,$,$,$,$,$,$); -#5416=IFCMATERIALPROFILESET($,$,(#5418),$); -#5417=IFCRELASSOCIATESMATERIAL('0Gzxq13HXDc98Q9jNETk6N',$,$,$,(#5415),#5416); -#5418=IFCMATERIALPROFILE($,$,#17,#5414,$,$); -#5419=IFCMEMBERTYPE('1DYc_XL9P2MwlXLw68Znwo',$,'508.0-50.0',$,$,$,$,$,$,$); -#5420=IFCMATERIALPROFILESET($,$,(#5422),$); -#5421=IFCRELASSOCIATESMATERIAL('3BtQOmdJf82w3kehxjyXej',$,$,$,(#5419),#5420); -#5422=IFCMATERIALPROFILE($,$,#17,#5414,$,$); -#5423=IFCCOLUMNTYPE('06hAeF1mf2ifMjgig6$QyQ',$,'508.0-50.0',$,$,$,$,$,$,$); -#5424=IFCMATERIALPROFILESET($,$,(#5426),$); -#5425=IFCRELASSOCIATESMATERIAL('3TViIS_213EfjqtPpMm3rC',$,$,$,(#5423),#5424); -#5426=IFCMATERIALPROFILE($,$,#17,#5414,$,$); -#5427=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,6.3); -#5428=IFCBEAMTYPE('3BLtJAbdj6hg8wxwzZFpxO',$,'610.0-6.3',$,$,$,$,$,$,$); -#5429=IFCMATERIALPROFILESET($,$,(#5431),$); -#5430=IFCRELASSOCIATESMATERIAL('2DjkVRYJv94fr1qD0hmZBb',$,$,$,(#5428),#5429); -#5431=IFCMATERIALPROFILE($,$,#17,#5427,$,$); -#5432=IFCMEMBERTYPE('1TIww49kjDKQM6FwJJs6iK',$,'610.0-6.3',$,$,$,$,$,$,$); -#5433=IFCMATERIALPROFILESET($,$,(#5435),$); -#5434=IFCRELASSOCIATESMATERIAL('2aipPNnZr2zAzod_EXu4oS',$,$,$,(#5432),#5433); -#5435=IFCMATERIALPROFILE($,$,#17,#5427,$,$); -#5436=IFCCOLUMNTYPE('2fAeE_ELbAjf$PhSRvgvNU',$,'610.0-6.3',$,$,$,$,$,$,$); -#5437=IFCMATERIALPROFILESET($,$,(#5439),$); -#5438=IFCRELASSOCIATESMATERIAL('1wDpQjGV196RxNHX_1Gp6n',$,$,$,(#5436),#5437); -#5439=IFCMATERIALPROFILE($,$,#17,#5427,$,$); -#5440=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,8.); -#5441=IFCBEAMTYPE('0qh2qKf9f2pwjCz5ILm3Q7',$,'610.0-8.0',$,$,$,$,$,$,$); -#5442=IFCMATERIALPROFILESET($,$,(#5444),$); -#5443=IFCRELASSOCIATESMATERIAL('15Y_VwvPL498JP9WiW8X5W',$,$,$,(#5441),#5442); -#5444=IFCMATERIALPROFILE($,$,#17,#5440,$,$); -#5445=IFCMEMBERTYPE('08v5wyCTvE0QkCGxUDNH8h',$,'610.0-8.0',$,$,$,$,$,$,$); -#5446=IFCMATERIALPROFILESET($,$,(#5448),$); -#5447=IFCRELASSOCIATESMATERIAL('3qiOtLnu96xe9QNTbq_6BU',$,$,$,(#5445),#5446); -#5448=IFCMATERIALPROFILE($,$,#17,#5440,$,$); -#5449=IFCCOLUMNTYPE('240bVKyOb92eqppdel4zAI',$,'610.0-8.0',$,$,$,$,$,$,$); -#5450=IFCMATERIALPROFILESET($,$,(#5452),$); -#5451=IFCRELASSOCIATESMATERIAL('1cX8YkpjH96wUMzXZntB74',$,$,$,(#5449),#5450); -#5452=IFCMATERIALPROFILE($,$,#17,#5440,$,$); -#5453=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,10.); -#5454=IFCBEAMTYPE('2MWg_oGr1B7RM9CBRoyHIy',$,'610.0-10.0',$,$,$,$,$,$,$); -#5455=IFCMATERIALPROFILESET($,$,(#5457),$); -#5456=IFCRELASSOCIATESMATERIAL('04WOOWcgf4U8LO8wGnsCTV',$,$,$,(#5454),#5455); -#5457=IFCMATERIALPROFILE($,$,#17,#5453,$,$); -#5458=IFCMEMBERTYPE('01a4BXQ6HEChGlRf7V0qfr',$,'610.0-10.0',$,$,$,$,$,$,$); -#5459=IFCMATERIALPROFILESET($,$,(#5461),$); -#5460=IFCRELASSOCIATESMATERIAL('1jWdb84oT7XwMZdmkblc7b',$,$,$,(#5458),#5459); -#5461=IFCMATERIALPROFILE($,$,#17,#5453,$,$); -#5462=IFCCOLUMNTYPE('0sNNthaJ95cepVCjbVwD1R',$,'610.0-10.0',$,$,$,$,$,$,$); -#5463=IFCMATERIALPROFILESET($,$,(#5465),$); -#5464=IFCRELASSOCIATESMATERIAL('3L5aClGcL5CwAj6xa1$UN3',$,$,$,(#5462),#5463); -#5465=IFCMATERIALPROFILE($,$,#17,#5453,$,$); -#5466=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,12.5); -#5467=IFCBEAMTYPE('1IKRV$qi9Ew8KJBum0v$2D',$,'610.0-12.5',$,$,$,$,$,$,$); -#5468=IFCMATERIALPROFILESET($,$,(#5470),$); -#5469=IFCRELASSOCIATESMATERIAL('04enZv7CzDP8vRAmJZBA1w',$,$,$,(#5467),#5468); -#5470=IFCMATERIALPROFILE($,$,#17,#5466,$,$); -#5471=IFCMEMBERTYPE('2fFYesWZn9JB8V4$POKHdN',$,'610.0-12.5',$,$,$,$,$,$,$); -#5472=IFCMATERIALPROFILESET($,$,(#5474),$); -#5473=IFCRELASSOCIATESMATERIAL('2UcUDQO7j8IvqFamiyWNSB',$,$,$,(#5471),#5472); -#5474=IFCMATERIALPROFILE($,$,#17,#5466,$,$); -#5475=IFCCOLUMNTYPE('0xLMw2eaH9qRskXy$eTbqF',$,'610.0-12.5',$,$,$,$,$,$,$); -#5476=IFCMATERIALPROFILESET($,$,(#5478),$); -#5477=IFCRELASSOCIATESMATERIAL('0KZ30luv17tg2HgnxbaM$J',$,$,$,(#5475),#5476); -#5478=IFCMATERIALPROFILE($,$,#17,#5466,$,$); -#5479=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,14.2); -#5480=IFCBEAMTYPE('0DkLyzaV13OvznLIhClnJo',$,'610.0-14.2',$,$,$,$,$,$,$); -#5481=IFCMATERIALPROFILESET($,$,(#5483),$); -#5482=IFCRELASSOCIATESMATERIAL('02g4_zpY1EneKaN7daKzFa',$,$,$,(#5480),#5481); -#5483=IFCMATERIALPROFILE($,$,#17,#5479,$,$); -#5484=IFCMEMBERTYPE('2vYmPpKenCtuSvwJzj3m_U',$,'610.0-14.2',$,$,$,$,$,$,$); -#5485=IFCMATERIALPROFILESET($,$,(#5487),$); -#5486=IFCRELASSOCIATESMATERIAL('3ZMZLv3Cb4r8yuabwY8Zak',$,$,$,(#5484),#5485); -#5487=IFCMATERIALPROFILE($,$,#17,#5479,$,$); -#5488=IFCCOLUMNTYPE('049PP9bbj3lBghUppbdzdV',$,'610.0-14.2',$,$,$,$,$,$,$); -#5489=IFCMATERIALPROFILESET($,$,(#5491),$); -#5490=IFCRELASSOCIATESMATERIAL('0ntee9rnr8EvKVmuN9sQBy',$,$,$,(#5488),#5489); -#5491=IFCMATERIALPROFILE($,$,#17,#5479,$,$); -#5492=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,16.); -#5493=IFCBEAMTYPE('1tpSuV8VTEUBJn2WOIY0MN',$,'610.0-16.0',$,$,$,$,$,$,$); -#5494=IFCMATERIALPROFILESET($,$,(#5496),$); -#5495=IFCRELASSOCIATESMATERIAL('0m0GxoPhT5F8ilms6YzbdJ',$,$,$,(#5493),#5494); -#5496=IFCMATERIALPROFILE($,$,#17,#5492,$,$); -#5497=IFCMEMBERTYPE('22F5or3Ar3zBWzSJUx4oGC',$,'610.0-16.0',$,$,$,$,$,$,$); -#5498=IFCMATERIALPROFILESET($,$,(#5500),$); -#5499=IFCRELASSOCIATESMATERIAL('03NI8g9zj9nuhFfSPdiBok',$,$,$,(#5497),#5498); -#5500=IFCMATERIALPROFILE($,$,#17,#5492,$,$); -#5501=IFCCOLUMNTYPE('1k5KuPD990FAP70np3Y4f1',$,'610.0-16.0',$,$,$,$,$,$,$); -#5502=IFCMATERIALPROFILESET($,$,(#5504),$); -#5503=IFCRELASSOCIATESMATERIAL('1V02ZQeYX2PeO7XGVm3g16',$,$,$,(#5501),#5502); -#5504=IFCMATERIALPROFILE($,$,#17,#5492,$,$); -#5505=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,20.); -#5506=IFCBEAMTYPE('3jhhXtoAf4Y9faDVS5Qo4N',$,'610.0-20.0',$,$,$,$,$,$,$); -#5507=IFCMATERIALPROFILESET($,$,(#5509),$); -#5508=IFCRELASSOCIATESMATERIAL('3ah5QveCD0Tvwo1BkNly4R',$,$,$,(#5506),#5507); -#5509=IFCMATERIALPROFILE($,$,#17,#5505,$,$); -#5510=IFCMEMBERTYPE('3XVA_tCSb6_AiR$sU_PDxk',$,'610.0-20.0',$,$,$,$,$,$,$); -#5511=IFCMATERIALPROFILESET($,$,(#5513),$); -#5512=IFCRELASSOCIATESMATERIAL('2pGkQwsJbBaPptxmisW$Ax',$,$,$,(#5510),#5511); -#5513=IFCMATERIALPROFILE($,$,#17,#5505,$,$); -#5514=IFCCOLUMNTYPE('2pUqLOKAD9ovo2XIg4Itlw',$,'610.0-20.0',$,$,$,$,$,$,$); -#5515=IFCMATERIALPROFILESET($,$,(#5517),$); -#5516=IFCRELASSOCIATESMATERIAL('3BBmwk_Kn9zQS7PxmYSWf1',$,$,$,(#5514),#5515); -#5517=IFCMATERIALPROFILE($,$,#17,#5505,$,$); -#5518=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,25.); -#5519=IFCBEAMTYPE('2lX__hgjD5LQ1GvyRyNjSg',$,'610.0-25.0',$,$,$,$,$,$,$); -#5520=IFCMATERIALPROFILESET($,$,(#5522),$); -#5521=IFCRELASSOCIATESMATERIAL('1nK8Xs_ML6mvxZyYRdfvxM',$,$,$,(#5519),#5520); -#5522=IFCMATERIALPROFILE($,$,#17,#5518,$,$); -#5523=IFCMEMBERTYPE('07p300conBzRGG$GHzRmf$',$,'610.0-25.0',$,$,$,$,$,$,$); -#5524=IFCMATERIALPROFILESET($,$,(#5526),$); -#5525=IFCRELASSOCIATESMATERIAL('1rFPLtxcv9Cvnt_9f2fxGs',$,$,$,(#5523),#5524); -#5526=IFCMATERIALPROFILE($,$,#17,#5518,$,$); -#5527=IFCCOLUMNTYPE('0Gvr_LtJz8PRrgUXl60f5l',$,'610.0-25.0',$,$,$,$,$,$,$); -#5528=IFCMATERIALPROFILESET($,$,(#5530),$); -#5529=IFCRELASSOCIATESMATERIAL('0mBeohT6j5cOPb8uafRXyI',$,$,$,(#5527),#5528); -#5530=IFCMATERIALPROFILE($,$,#17,#5518,$,$); -#5531=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,30.); -#5532=IFCBEAMTYPE('3B8leykIj438Zxyb6saf9_',$,'610.0-30.0',$,$,$,$,$,$,$); -#5533=IFCMATERIALPROFILESET($,$,(#5535),$); -#5534=IFCRELASSOCIATESMATERIAL('3CR2BPrOr4Tf_1AY_RcFZm',$,$,$,(#5532),#5533); -#5535=IFCMATERIALPROFILE($,$,#17,#5531,$,$); -#5536=IFCMEMBERTYPE('2IqP8ZD6TDPwgWbHB$Mb4R',$,'610.0-30.0',$,$,$,$,$,$,$); -#5537=IFCMATERIALPROFILESET($,$,(#5539),$); -#5538=IFCRELASSOCIATESMATERIAL('3cQkjWUnf3h9SuNkJonp1k',$,$,$,(#5536),#5537); -#5539=IFCMATERIALPROFILE($,$,#17,#5531,$,$); -#5540=IFCCOLUMNTYPE('2vZ0mSWXnE5w5dfw_sdPmt',$,'610.0-30.0',$,$,$,$,$,$,$); -#5541=IFCMATERIALPROFILESET($,$,(#5543),$); -#5542=IFCRELASSOCIATESMATERIAL('1slVlWgOXB6flYANi2EuMx',$,$,$,(#5540),#5541); -#5543=IFCMATERIALPROFILE($,$,#17,#5531,$,$); -#5544=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,40.); -#5545=IFCBEAMTYPE('3v1KPfVVb7dfdgqqi5tdmj',$,'610.0-40.0',$,$,$,$,$,$,$); -#5546=IFCMATERIALPROFILESET($,$,(#5548),$); -#5547=IFCRELASSOCIATESMATERIAL('0SkXedX$1AxRZGo6n5xzIu',$,$,$,(#5545),#5546); -#5548=IFCMATERIALPROFILE($,$,#17,#5544,$,$); -#5549=IFCMEMBERTYPE('3QW7LThk10cPhpstJMPDW2',$,'610.0-40.0',$,$,$,$,$,$,$); -#5550=IFCMATERIALPROFILESET($,$,(#5552),$); -#5551=IFCRELASSOCIATESMATERIAL('0dkHDY_5f818kOFUyKac3z',$,$,$,(#5549),#5550); -#5552=IFCMATERIALPROFILE($,$,#17,#5544,$,$); -#5553=IFCCOLUMNTYPE('1rHq7MLwb54PiwgadhDnFj',$,'610.0-40.0',$,$,$,$,$,$,$); -#5554=IFCMATERIALPROFILESET($,$,(#5556),$); -#5555=IFCRELASSOCIATESMATERIAL('3$9mftgu59LgXwi9AyELwS',$,$,$,(#5553),#5554); -#5556=IFCMATERIALPROFILE($,$,#17,#5544,$,$); -#5557=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,305.,50.); -#5558=IFCBEAMTYPE('1BvEqu_3r8xBJnWqUEaDVS',$,'610.0-50.0',$,$,$,$,$,$,$); -#5559=IFCMATERIALPROFILESET($,$,(#5561),$); -#5560=IFCRELASSOCIATESMATERIAL('2c7deKdXj8mhkH_FEMY7NX',$,$,$,(#5558),#5559); -#5561=IFCMATERIALPROFILE($,$,#17,#5557,$,$); -#5562=IFCMEMBERTYPE('3KlpAXrBL7$uO19x$GEGsh',$,'610.0-50.0',$,$,$,$,$,$,$); -#5563=IFCMATERIALPROFILESET($,$,(#5565),$); -#5564=IFCRELASSOCIATESMATERIAL('2XmpywlDn0P9odU8uCfON3',$,$,$,(#5562),#5563); -#5565=IFCMATERIALPROFILE($,$,#17,#5557,$,$); -#5566=IFCCOLUMNTYPE('3JLb5QDu52Qe_ubiQjp2aw',$,'610.0-50.0',$,$,$,$,$,$,$); -#5567=IFCMATERIALPROFILESET($,$,(#5569),$); -#5568=IFCRELASSOCIATESMATERIAL('38vQEBWWD2avZ$Z2$bmhfH',$,$,$,(#5566),#5567); -#5569=IFCMATERIALPROFILE($,$,#17,#5557,$,$); -#5570=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,6.3); -#5571=IFCBEAMTYPE('1cwD2LTSf2Z9hszWBKEKz6',$,'711.0-6.3',$,$,$,$,$,$,$); -#5572=IFCMATERIALPROFILESET($,$,(#5574),$); -#5573=IFCRELASSOCIATESMATERIAL('09XHasAO524vidiafZiEUV',$,$,$,(#5571),#5572); -#5574=IFCMATERIALPROFILE($,$,#17,#5570,$,$); -#5575=IFCMEMBERTYPE('3lMhaHb41AUAy3QgDHZkB4',$,'711.0-6.3',$,$,$,$,$,$,$); -#5576=IFCMATERIALPROFILESET($,$,(#5578),$); -#5577=IFCRELASSOCIATESMATERIAL('2pJ9OS8kHCxQz4NAgUQJ$a',$,$,$,(#5575),#5576); -#5578=IFCMATERIALPROFILE($,$,#17,#5570,$,$); -#5579=IFCCOLUMNTYPE('0O596oQq1Edu$ZhTSr4RZQ',$,'711.0-6.3',$,$,$,$,$,$,$); -#5580=IFCMATERIALPROFILESET($,$,(#5582),$); -#5581=IFCRELASSOCIATESMATERIAL('3$2RA5h6H0u9p9NpdXx2yg',$,$,$,(#5579),#5580); -#5582=IFCMATERIALPROFILE($,$,#17,#5570,$,$); -#5583=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,8.); -#5584=IFCBEAMTYPE('2oK9MhLo97quUOnWDAyhHr',$,'711.0-8.0',$,$,$,$,$,$,$); -#5585=IFCMATERIALPROFILESET($,$,(#5587),$); -#5586=IFCRELASSOCIATESMATERIAL('1bTeADKxTDihmi2O_nZK_C',$,$,$,(#5584),#5585); -#5587=IFCMATERIALPROFILE($,$,#17,#5583,$,$); -#5588=IFCMEMBERTYPE('3U4uTRCYj5b9tm$6nUtjCh',$,'711.0-8.0',$,$,$,$,$,$,$); -#5589=IFCMATERIALPROFILESET($,$,(#5591),$); -#5590=IFCRELASSOCIATESMATERIAL('1l_rwtOKXC_ug0d$q7i39I',$,$,$,(#5588),#5589); -#5591=IFCMATERIALPROFILE($,$,#17,#5583,$,$); -#5592=IFCCOLUMNTYPE('1wMwwPL1fEhvCySTLdqi37',$,'711.0-8.0',$,$,$,$,$,$,$); -#5593=IFCMATERIALPROFILESET($,$,(#5595),$); -#5594=IFCRELASSOCIATESMATERIAL('1bqS3i_oH4Sunc6zLjz2UE',$,$,$,(#5592),#5593); -#5595=IFCMATERIALPROFILE($,$,#17,#5583,$,$); -#5596=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,10.); -#5597=IFCBEAMTYPE('0IBc9wrgb3t9fnSju72zrb',$,'711.0-10.0',$,$,$,$,$,$,$); -#5598=IFCMATERIALPROFILESET($,$,(#5600),$); -#5599=IFCRELASSOCIATESMATERIAL('3Y4kSalyzCOQzKJ9JWLNEE',$,$,$,(#5597),#5598); -#5600=IFCMATERIALPROFILE($,$,#17,#5596,$,$); -#5601=IFCMEMBERTYPE('1K6NApDgv6gRH3a7H29OeI',$,'711.0-10.0',$,$,$,$,$,$,$); -#5602=IFCMATERIALPROFILESET($,$,(#5604),$); -#5603=IFCRELASSOCIATESMATERIAL('2$XOHoSEjCfg11xJtMHsqk',$,$,$,(#5601),#5602); -#5604=IFCMATERIALPROFILE($,$,#17,#5596,$,$); -#5605=IFCCOLUMNTYPE('1_BKbxiKjFg93NX9ZPN05u',$,'711.0-10.0',$,$,$,$,$,$,$); -#5606=IFCMATERIALPROFILESET($,$,(#5608),$); -#5607=IFCRELASSOCIATESMATERIAL('28z8tXUSrBLh_AVH$n50q5',$,$,$,(#5605),#5606); -#5608=IFCMATERIALPROFILE($,$,#17,#5596,$,$); -#5609=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,12.5); -#5610=IFCBEAMTYPE('0xmnZylPX8Tgs$BuXFQo4U',$,'711.0-12.5',$,$,$,$,$,$,$); -#5611=IFCMATERIALPROFILESET($,$,(#5613),$); -#5612=IFCRELASSOCIATESMATERIAL('1bKdnqsTX7o9rfulouxzIz',$,$,$,(#5610),#5611); -#5613=IFCMATERIALPROFILE($,$,#17,#5609,$,$); -#5614=IFCMEMBERTYPE('2$QoEhY7bDFgB1Wxb9hvgK',$,'711.0-12.5',$,$,$,$,$,$,$); -#5615=IFCMATERIALPROFILESET($,$,(#5617),$); -#5616=IFCRELASSOCIATESMATERIAL('2XEKOSmEPEx8X$nqkT8cdM',$,$,$,(#5614),#5615); -#5617=IFCMATERIALPROFILE($,$,#17,#5609,$,$); -#5618=IFCCOLUMNTYPE('1xVkAreiTE4hxThq8mqQLj',$,'711.0-12.5',$,$,$,$,$,$,$); -#5619=IFCMATERIALPROFILESET($,$,(#5621),$); -#5620=IFCRELASSOCIATESMATERIAL('0MuBKbZvHE9eofNpr0wBTB',$,$,$,(#5618),#5619); -#5621=IFCMATERIALPROFILE($,$,#17,#5609,$,$); -#5622=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,14.2); -#5623=IFCBEAMTYPE('2H74irx$D2We1KJf7EM0qH',$,'711.0-14.2',$,$,$,$,$,$,$); -#5624=IFCMATERIALPROFILESET($,$,(#5626),$); -#5625=IFCRELASSOCIATESMATERIAL('2e76aK5qv8ifDBMcaERdXh',$,$,$,(#5623),#5624); -#5626=IFCMATERIALPROFILE($,$,#17,#5622,$,$); -#5627=IFCMEMBERTYPE('2AcLm5J8P758qHLPuLi1VF',$,'711.0-14.2',$,$,$,$,$,$,$); -#5628=IFCMATERIALPROFILESET($,$,(#5630),$); -#5629=IFCRELASSOCIATESMATERIAL('0ubUeu5N56a8dQlJRm1OYJ',$,$,$,(#5627),#5628); -#5630=IFCMATERIALPROFILE($,$,#17,#5622,$,$); -#5631=IFCCOLUMNTYPE('1sCbcr2XL5MeczK7nSwORO',$,'711.0-14.2',$,$,$,$,$,$,$); -#5632=IFCMATERIALPROFILESET($,$,(#5634),$); -#5633=IFCRELASSOCIATESMATERIAL('0KzEamQbL3hQ1NPrb7d__8',$,$,$,(#5631),#5632); -#5634=IFCMATERIALPROFILE($,$,#17,#5622,$,$); -#5635=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,16.); -#5636=IFCBEAMTYPE('3RQJUFp2z759pd4q2Wc1x7',$,'711.0-16.0',$,$,$,$,$,$,$); -#5637=IFCMATERIALPROFILESET($,$,(#5639),$); -#5638=IFCRELASSOCIATESMATERIAL('2hoW50sVP0PwXNC6TWk2yL',$,$,$,(#5636),#5637); -#5639=IFCMATERIALPROFILE($,$,#17,#5635,$,$); -#5640=IFCMEMBERTYPE('3iwfcp$x57$eOYAopYReBN',$,'711.0-16.0',$,$,$,$,$,$,$); -#5641=IFCMATERIALPROFILESET($,$,(#5643),$); -#5642=IFCRELASSOCIATESMATERIAL('368QDzNeP2A9LHb0f8NdEy',$,$,$,(#5640),#5641); -#5643=IFCMATERIALPROFILE($,$,#17,#5635,$,$); -#5644=IFCCOLUMNTYPE('2WPgzJthPBDubZdw6cJOQV',$,'711.0-16.0',$,$,$,$,$,$,$); -#5645=IFCMATERIALPROFILESET($,$,(#5647),$); -#5646=IFCRELASSOCIATESMATERIAL('0_vg$KKxb94excf9JM71fa',$,$,$,(#5644),#5645); -#5647=IFCMATERIALPROFILE($,$,#17,#5635,$,$); -#5648=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,20.); -#5649=IFCBEAMTYPE('3jG2fv9_n4h8WSe4ONFkkh',$,'711.0-20.0',$,$,$,$,$,$,$); -#5650=IFCMATERIALPROFILESET($,$,(#5652),$); -#5651=IFCRELASSOCIATESMATERIAL('2r5GrW39XD$RagTcTvHS34',$,$,$,(#5649),#5650); -#5652=IFCMATERIALPROFILE($,$,#17,#5648,$,$); -#5653=IFCMEMBERTYPE('3nVg30D5D3lBK$0nLRGNHk',$,'711.0-20.0',$,$,$,$,$,$,$); -#5654=IFCMATERIALPROFILESET($,$,(#5656),$); -#5655=IFCRELASSOCIATESMATERIAL('07Xzefyuf7oQ8c76CT6Axt',$,$,$,(#5653),#5654); -#5656=IFCMATERIALPROFILE($,$,#17,#5648,$,$); -#5657=IFCCOLUMNTYPE('0NAgqnrKDCcOStTU9PDyvE',$,'711.0-20.0',$,$,$,$,$,$,$); -#5658=IFCMATERIALPROFILESET($,$,(#5660),$); -#5659=IFCRELASSOCIATESMATERIAL('2oYFRWQoXEVRHrt6Uk0jJd',$,$,$,(#5657),#5658); -#5660=IFCMATERIALPROFILE($,$,#17,#5648,$,$); -#5661=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,25.); -#5662=IFCBEAMTYPE('1ey8jNYwHDmP6DSaGdQewv',$,'711.0-25.0',$,$,$,$,$,$,$); -#5663=IFCMATERIALPROFILESET($,$,(#5665),$); -#5664=IFCRELASSOCIATESMATERIAL('3OrmUUS6vEfB_jAfs1NX4U',$,$,$,(#5662),#5663); -#5665=IFCMATERIALPROFILE($,$,#17,#5661,$,$); -#5666=IFCMEMBERTYPE('3zPsB_AI1D6w09UjwWP8zO',$,'711.0-25.0',$,$,$,$,$,$,$); -#5667=IFCMATERIALPROFILESET($,$,(#5669),$); -#5668=IFCRELASSOCIATESMATERIAL('17xZEN0S59GOsDe8BfxVtd',$,$,$,(#5666),#5667); -#5669=IFCMATERIALPROFILE($,$,#17,#5661,$,$); -#5670=IFCCOLUMNTYPE('0gfUYm$ZTDjQmykFOE5T6g',$,'711.0-25.0',$,$,$,$,$,$,$); -#5671=IFCMATERIALPROFILESET($,$,(#5673),$); -#5672=IFCRELASSOCIATESMATERIAL('1A34SBD2TFKu_OeLLl_1zI',$,$,$,(#5670),#5671); -#5673=IFCMATERIALPROFILE($,$,#17,#5661,$,$); -#5674=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,30.); -#5675=IFCBEAMTYPE('2U0Xbd_FjALexUtqVFd_GS',$,'711.0-30.0',$,$,$,$,$,$,$); -#5676=IFCMATERIALPROFILESET($,$,(#5678),$); -#5677=IFCRELASSOCIATESMATERIAL('2ReV3wL_H90utZ5yulxhko',$,$,$,(#5675),#5676); -#5678=IFCMATERIALPROFILE($,$,#17,#5674,$,$); -#5679=IFCMEMBERTYPE('1lL2C3AbbD_u0Up4TFGtNc',$,'711.0-30.0',$,$,$,$,$,$,$); -#5680=IFCMATERIALPROFILESET($,$,(#5682),$); -#5681=IFCRELASSOCIATESMATERIAL('39R7yWhtPEmRQxq877o1HA',$,$,$,(#5679),#5680); -#5682=IFCMATERIALPROFILE($,$,#17,#5674,$,$); -#5683=IFCCOLUMNTYPE('0vdh4rpnX7gR2e1enl67AS',$,'711.0-30.0',$,$,$,$,$,$,$); -#5684=IFCMATERIALPROFILESET($,$,(#5686),$); -#5685=IFCRELASSOCIATESMATERIAL('0KENS$sQ13LAXoCBwJWrxg',$,$,$,(#5683),#5684); -#5686=IFCMATERIALPROFILE($,$,#17,#5674,$,$); -#5687=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,40.); -#5688=IFCBEAMTYPE('3jiwExSJ55IODleYaIijTn',$,'711.0-40.0',$,$,$,$,$,$,$); -#5689=IFCMATERIALPROFILESET($,$,(#5691),$); -#5690=IFCRELASSOCIATESMATERIAL('39Jf8ND3bEyQXxOSN83hNQ',$,$,$,(#5688),#5689); -#5691=IFCMATERIALPROFILE($,$,#17,#5687,$,$); -#5692=IFCMEMBERTYPE('0Y_UFrdF11iBb2h2VShuCR',$,'711.0-40.0',$,$,$,$,$,$,$); -#5693=IFCMATERIALPROFILESET($,$,(#5695),$); -#5694=IFCRELASSOCIATESMATERIAL('0$6GtK29L8_85PEbKHk2MQ',$,$,$,(#5692),#5693); -#5695=IFCMATERIALPROFILE($,$,#17,#5687,$,$); -#5696=IFCCOLUMNTYPE('32ilk7sA13KPKkoZyYCgk8',$,'711.0-40.0',$,$,$,$,$,$,$); -#5697=IFCMATERIALPROFILESET($,$,(#5699),$); -#5698=IFCRELASSOCIATESMATERIAL('2pcEdmH0PFgQJZ$kNxC9XL',$,$,$,(#5696),#5697); -#5699=IFCMATERIALPROFILE($,$,#17,#5687,$,$); -#5700=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,50.); -#5701=IFCBEAMTYPE('1NfAw15X19DQyqX2taaD9Z',$,'711.0-50.0',$,$,$,$,$,$,$); -#5702=IFCMATERIALPROFILESET($,$,(#5704),$); -#5703=IFCRELASSOCIATESMATERIAL('3JZpae7Xr7WhV55Ypp9Q1s',$,$,$,(#5701),#5702); -#5704=IFCMATERIALPROFILE($,$,#17,#5700,$,$); -#5705=IFCMEMBERTYPE('2wpQVvh4f5Ie_k9D5g$jCi',$,'711.0-50.0',$,$,$,$,$,$,$); -#5706=IFCMATERIALPROFILESET($,$,(#5708),$); -#5707=IFCRELASSOCIATESMATERIAL('344pOdM9PCZB3aQmDqyC$u',$,$,$,(#5705),#5706); -#5708=IFCMATERIALPROFILE($,$,#17,#5700,$,$); -#5709=IFCCOLUMNTYPE('0gT9GSTTz5ZgXSThdsEDoh',$,'711.0-50.0',$,$,$,$,$,$,$); -#5710=IFCMATERIALPROFILESET($,$,(#5712),$); -#5711=IFCRELASSOCIATESMATERIAL('1BTFJ$A85EH9v53oY8DBUW',$,$,$,(#5709),#5710); -#5712=IFCMATERIALPROFILE($,$,#17,#5700,$,$); -#5713=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,355.5,60.); -#5714=IFCBEAMTYPE('2NkHTLL0zD79pCAIDBxNAu',$,'711.0-60.0',$,$,$,$,$,$,$); -#5715=IFCMATERIALPROFILESET($,$,(#5717),$); -#5716=IFCRELASSOCIATESMATERIAL('06k5MJuk51V8jzj24WZhjt',$,$,$,(#5714),#5715); -#5717=IFCMATERIALPROFILE($,$,#17,#5713,$,$); -#5718=IFCMEMBERTYPE('1CeV0oERDCjOJP1P4V5F_m',$,'711.0-60.0',$,$,$,$,$,$,$); -#5719=IFCMATERIALPROFILESET($,$,(#5721),$); -#5720=IFCRELASSOCIATESMATERIAL('3EADh3kRD1Mu8uKtPIAmzJ',$,$,$,(#5718),#5719); -#5721=IFCMATERIALPROFILE($,$,#17,#5713,$,$); -#5722=IFCCOLUMNTYPE('3iLMbWTO18Pe_NAeIT_5bg',$,'711.0-60.0',$,$,$,$,$,$,$); -#5723=IFCMATERIALPROFILESET($,$,(#5725),$); -#5724=IFCRELASSOCIATESMATERIAL('2_29KAlUL4Ge$q_hVwryTV',$,$,$,(#5722),#5723); -#5725=IFCMATERIALPROFILE($,$,#17,#5713,$,$); -#5726=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,6.3); -#5727=IFCBEAMTYPE('1FY1lrF7X7Hx6rjRyz6kcD',$,'762.0-6.3',$,$,$,$,$,$,$); -#5728=IFCMATERIALPROFILESET($,$,(#5730),$); -#5729=IFCRELASSOCIATESMATERIAL('2CUXo5bJb5KfkRjWXXrMSA',$,$,$,(#5727),#5728); -#5730=IFCMATERIALPROFILE($,$,#17,#5726,$,$); -#5731=IFCMEMBERTYPE('0ONMdfAwnBKuVBB2YG_JrX',$,'762.0-6.3',$,$,$,$,$,$,$); -#5732=IFCMATERIALPROFILESET($,$,(#5734),$); -#5733=IFCRELASSOCIATESMATERIAL('3UbP8mQILEhQJsbPoflZfK',$,$,$,(#5731),#5732); -#5734=IFCMATERIALPROFILE($,$,#17,#5726,$,$); -#5735=IFCCOLUMNTYPE('1yjPJBGjH2_fMAI0gKVcwm',$,'762.0-6.3',$,$,$,$,$,$,$); -#5736=IFCMATERIALPROFILESET($,$,(#5738),$); -#5737=IFCRELASSOCIATESMATERIAL('1MLL0IZQrFBu3q76Tgkato',$,$,$,(#5735),#5736); -#5738=IFCMATERIALPROFILE($,$,#17,#5726,$,$); -#5739=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,8.); -#5740=IFCBEAMTYPE('1yApqVt7r64g7OnQl2Hk$i',$,'762.0-8.0',$,$,$,$,$,$,$); -#5741=IFCMATERIALPROFILESET($,$,(#5743),$); -#5742=IFCRELASSOCIATESMATERIAL('2IF5N9p1r5xBvJBPmcsgf2',$,$,$,(#5740),#5741); -#5743=IFCMATERIALPROFILE($,$,#17,#5739,$,$); -#5744=IFCMEMBERTYPE('1tiyQD2wzCBPewJUHO$AeR',$,'762.0-8.0',$,$,$,$,$,$,$); -#5745=IFCMATERIALPROFILESET($,$,(#5747),$); -#5746=IFCRELASSOCIATESMATERIAL('09CfJ5bD54dPufCccnTgpD',$,$,$,(#5744),#5745); -#5747=IFCMATERIALPROFILE($,$,#17,#5739,$,$); -#5748=IFCCOLUMNTYPE('0MZk0HZJX6TuV8QKlc6Q$A',$,'762.0-8.0',$,$,$,$,$,$,$); -#5749=IFCMATERIALPROFILESET($,$,(#5751),$); -#5750=IFCRELASSOCIATESMATERIAL('0D2$1qz914P85l$vO3hhZ6',$,$,$,(#5748),#5749); -#5751=IFCMATERIALPROFILE($,$,#17,#5739,$,$); -#5752=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,10.); -#5753=IFCBEAMTYPE('1yg61MFUT1DxETU9Z79SNX',$,'762.0-10.0',$,$,$,$,$,$,$); -#5754=IFCMATERIALPROFILESET($,$,(#5756),$); -#5755=IFCRELASSOCIATESMATERIAL('3ihcZhPlL2dQ$xOA2dnwWU',$,$,$,(#5753),#5754); -#5756=IFCMATERIALPROFILE($,$,#17,#5752,$,$); -#5757=IFCMEMBERTYPE('2osORrdjr40eD3sF494x4U',$,'762.0-10.0',$,$,$,$,$,$,$); -#5758=IFCMATERIALPROFILESET($,$,(#5760),$); -#5759=IFCRELASSOCIATESMATERIAL('1X4putsaL0ue3xblTpCK1z',$,$,$,(#5757),#5758); -#5760=IFCMATERIALPROFILE($,$,#17,#5752,$,$); -#5761=IFCCOLUMNTYPE('3u1fMJbFL0qw2yE2u7VC46',$,'762.0-10.0',$,$,$,$,$,$,$); -#5762=IFCMATERIALPROFILESET($,$,(#5764),$); -#5763=IFCRELASSOCIATESMATERIAL('3iOROP6wf3TwcJ9$qQ19Yh',$,$,$,(#5761),#5762); -#5764=IFCMATERIALPROFILE($,$,#17,#5752,$,$); -#5765=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,12.5); -#5766=IFCBEAMTYPE('3rmXSu2zb0hAMdI8dxHA$j',$,'762.0-12.5',$,$,$,$,$,$,$); -#5767=IFCMATERIALPROFILESET($,$,(#5769),$); -#5768=IFCRELASSOCIATESMATERIAL('3jicWHxOHBVPIQwRu5QRoV',$,$,$,(#5766),#5767); -#5769=IFCMATERIALPROFILE($,$,#17,#5765,$,$); -#5770=IFCMEMBERTYPE('1cApGHfSP308eMEbdgOG$S',$,'762.0-12.5',$,$,$,$,$,$,$); -#5771=IFCMATERIALPROFILESET($,$,(#5773),$); -#5772=IFCRELASSOCIATESMATERIAL('1bCpTV2J94FQRGEbuDfC$8',$,$,$,(#5770),#5771); -#5773=IFCMATERIALPROFILE($,$,#17,#5765,$,$); -#5774=IFCCOLUMNTYPE('105FNheVH2N8XrjHXMxYGz',$,'762.0-12.5',$,$,$,$,$,$,$); -#5775=IFCMATERIALPROFILESET($,$,(#5777),$); -#5776=IFCRELASSOCIATESMATERIAL('0LeJ3gpaf3ihbXk2NLDnKT',$,$,$,(#5774),#5775); -#5777=IFCMATERIALPROFILE($,$,#17,#5765,$,$); -#5778=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,14.2); -#5779=IFCBEAMTYPE('2P4NzCYXL3ou5v0EFAcseg',$,'762.0-14.2',$,$,$,$,$,$,$); -#5780=IFCMATERIALPROFILESET($,$,(#5782),$); -#5781=IFCRELASSOCIATESMATERIAL('15MPBrfYDAg8irMRHHjRo2',$,$,$,(#5779),#5780); -#5782=IFCMATERIALPROFILE($,$,#17,#5778,$,$); -#5783=IFCMEMBERTYPE('0Ptq3Hk5H8gxPBOeoAUrAZ',$,'762.0-14.2',$,$,$,$,$,$,$); -#5784=IFCMATERIALPROFILESET($,$,(#5786),$); -#5785=IFCRELASSOCIATESMATERIAL('0rvupOkAnDE97atHrrYdyi',$,$,$,(#5783),#5784); -#5786=IFCMATERIALPROFILE($,$,#17,#5778,$,$); -#5787=IFCCOLUMNTYPE('26BxKau8TDYO0OLbOkiBUp',$,'762.0-14.2',$,$,$,$,$,$,$); -#5788=IFCMATERIALPROFILESET($,$,(#5790),$); -#5789=IFCRELASSOCIATESMATERIAL('0Z3QnET$b5qxjHZ6ZrIaUS',$,$,$,(#5787),#5788); -#5790=IFCMATERIALPROFILE($,$,#17,#5778,$,$); -#5791=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,16.); -#5792=IFCBEAMTYPE('0dT4sz1_L43ACXySnzljbv',$,'762.0-16.0',$,$,$,$,$,$,$); -#5793=IFCMATERIALPROFILESET($,$,(#5795),$); -#5794=IFCRELASSOCIATESMATERIAL('3HR9TLo8PDoAa2GZSEcrTK',$,$,$,(#5792),#5793); -#5795=IFCMATERIALPROFILE($,$,#17,#5791,$,$); -#5796=IFCMEMBERTYPE('2zYIThd7vFCvCkZHgR5OvS',$,'762.0-16.0',$,$,$,$,$,$,$); -#5797=IFCMATERIALPROFILESET($,$,(#5799),$); -#5798=IFCRELASSOCIATESMATERIAL('3aTY$pUfTBmvQgrGhUJbOS',$,$,$,(#5796),#5797); -#5799=IFCMATERIALPROFILE($,$,#17,#5791,$,$); -#5800=IFCCOLUMNTYPE('21erFJlar1Jeigz4SYmBXM',$,'762.0-16.0',$,$,$,$,$,$,$); -#5801=IFCMATERIALPROFILESET($,$,(#5803),$); -#5802=IFCRELASSOCIATESMATERIAL('0LCznUvKb6v9xKtHhJAKWi',$,$,$,(#5800),#5801); -#5803=IFCMATERIALPROFILE($,$,#17,#5791,$,$); -#5804=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,20.); -#5805=IFCBEAMTYPE('13gmxLL3919uMiaLt3V7$k',$,'762.0-20.0',$,$,$,$,$,$,$); -#5806=IFCMATERIALPROFILESET($,$,(#5808),$); -#5807=IFCRELASSOCIATESMATERIAL('3ym8eGEFrAlPt8kecBzUc7',$,$,$,(#5805),#5806); -#5808=IFCMATERIALPROFILE($,$,#17,#5804,$,$); -#5809=IFCMEMBERTYPE('3qpI8wiQr5YhoRfsXo8xet',$,'762.0-20.0',$,$,$,$,$,$,$); -#5810=IFCMATERIALPROFILESET($,$,(#5812),$); -#5811=IFCRELASSOCIATESMATERIAL('1GSTbrXsrDGRrhcjTvvDN8',$,$,$,(#5809),#5810); -#5812=IFCMATERIALPROFILE($,$,#17,#5804,$,$); -#5813=IFCCOLUMNTYPE('3yhFPwuIHDp913jRrwwrOK',$,'762.0-20.0',$,$,$,$,$,$,$); -#5814=IFCMATERIALPROFILESET($,$,(#5816),$); -#5815=IFCRELASSOCIATESMATERIAL('01rVIE7f9DJhLs10sY5PHc',$,$,$,(#5813),#5814); -#5816=IFCMATERIALPROFILE($,$,#17,#5804,$,$); -#5817=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,25.); -#5818=IFCBEAMTYPE('2Hk1deovT2VgPaV6BVeHEF',$,'762.0-25.0',$,$,$,$,$,$,$); -#5819=IFCMATERIALPROFILESET($,$,(#5821),$); -#5820=IFCRELASSOCIATESMATERIAL('24VrjVp1X9KAhRnsBF$7Ez',$,$,$,(#5818),#5819); -#5821=IFCMATERIALPROFILE($,$,#17,#5817,$,$); -#5822=IFCMEMBERTYPE('3rKmIERofCZ9bYRa$$4yZg',$,'762.0-25.0',$,$,$,$,$,$,$); -#5823=IFCMATERIALPROFILESET($,$,(#5825),$); -#5824=IFCRELASSOCIATESMATERIAL('0kXqlm_3fFreHqzHYO2Lo3',$,$,$,(#5822),#5823); -#5825=IFCMATERIALPROFILE($,$,#17,#5817,$,$); -#5826=IFCCOLUMNTYPE('0CsZu0S798k9XHIzYyPnjB',$,'762.0-25.0',$,$,$,$,$,$,$); -#5827=IFCMATERIALPROFILESET($,$,(#5829),$); -#5828=IFCRELASSOCIATESMATERIAL('1Ev6VueNj4SRoSMD$oKSpo',$,$,$,(#5826),#5827); -#5829=IFCMATERIALPROFILE($,$,#17,#5817,$,$); -#5830=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,30.); -#5831=IFCBEAMTYPE('2pX2byrPLCQfBKRWbt2Hsx',$,'762.0-30.0',$,$,$,$,$,$,$); -#5832=IFCMATERIALPROFILESET($,$,(#5834),$); -#5833=IFCRELASSOCIATESMATERIAL('1FT1PrPef6XeSVLcVzmq4t',$,$,$,(#5831),#5832); -#5834=IFCMATERIALPROFILE($,$,#17,#5830,$,$); -#5835=IFCMEMBERTYPE('3SSq7abpjCUB8xZGs_fLdi',$,'762.0-30.0',$,$,$,$,$,$,$); -#5836=IFCMATERIALPROFILESET($,$,(#5838),$); -#5837=IFCRELASSOCIATESMATERIAL('3Jyq70ptL1EvGT3nUNCli8',$,$,$,(#5835),#5836); -#5838=IFCMATERIALPROFILE($,$,#17,#5830,$,$); -#5839=IFCCOLUMNTYPE('01Brhrfer0qOjPGL486SdG',$,'762.0-30.0',$,$,$,$,$,$,$); -#5840=IFCMATERIALPROFILESET($,$,(#5842),$); -#5841=IFCRELASSOCIATESMATERIAL('2m1Wo5XHL0GubgsQKE0O_b',$,$,$,(#5839),#5840); -#5842=IFCMATERIALPROFILE($,$,#17,#5830,$,$); -#5843=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,40.); -#5844=IFCBEAMTYPE('13Nta96HfEaBWCFWl83Pcr',$,'762.0-40.0',$,$,$,$,$,$,$); -#5845=IFCMATERIALPROFILESET($,$,(#5847),$); -#5846=IFCRELASSOCIATESMATERIAL('3hX0hpUkHDovIIYEspBloG',$,$,$,(#5844),#5845); -#5847=IFCMATERIALPROFILE($,$,#17,#5843,$,$); -#5848=IFCMEMBERTYPE('3sStMcA5r59wy7qnP1LkZV',$,'762.0-40.0',$,$,$,$,$,$,$); -#5849=IFCMATERIALPROFILESET($,$,(#5851),$); -#5850=IFCRELASSOCIATESMATERIAL('0vMM7d6p11qAsXkZC5JAsF',$,$,$,(#5848),#5849); -#5851=IFCMATERIALPROFILE($,$,#17,#5843,$,$); -#5852=IFCCOLUMNTYPE('2it$zcBr165xT6CdxeHRVQ',$,'762.0-40.0',$,$,$,$,$,$,$); -#5853=IFCMATERIALPROFILESET($,$,(#5855),$); -#5854=IFCRELASSOCIATESMATERIAL('2ephberAf3huDp1laoAkn$',$,$,$,(#5852),#5853); -#5855=IFCMATERIALPROFILE($,$,#17,#5843,$,$); -#5856=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,381.,50.); -#5857=IFCBEAMTYPE('0_saJy5wD5n8IkcJuW0W4f',$,'762.0-50.0',$,$,$,$,$,$,$); -#5858=IFCMATERIALPROFILESET($,$,(#5860),$); -#5859=IFCRELASSOCIATESMATERIAL('3$CJTLZNPC5gdUP5hl0z9b',$,$,$,(#5857),#5858); -#5860=IFCMATERIALPROFILE($,$,#17,#5856,$,$); -#5861=IFCMEMBERTYPE('2qZVHrQoP6cP06so0$caee',$,'762.0-50.0',$,$,$,$,$,$,$); -#5862=IFCMATERIALPROFILESET($,$,(#5864),$); -#5863=IFCRELASSOCIATESMATERIAL('3_0OHTAXLBSB9dIYfZUgzs',$,$,$,(#5861),#5862); -#5864=IFCMATERIALPROFILE($,$,#17,#5856,$,$); -#5865=IFCCOLUMNTYPE('0diggQtd10v9iYK8I7AW7G',$,'762.0-50.0',$,$,$,$,$,$,$); -#5866=IFCMATERIALPROFILESET($,$,(#5868),$); -#5867=IFCRELASSOCIATESMATERIAL('2xufdE_SX2_hA1X3f13z9d',$,$,$,(#5865),#5866); -#5868=IFCMATERIALPROFILE($,$,#17,#5856,$,$); -#5869=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,8.); -#5870=IFCBEAMTYPE('1BHeCmTwL7FeRCfGrGF09k',$,'813.0-8.0',$,$,$,$,$,$,$); -#5871=IFCMATERIALPROFILESET($,$,(#5873),$); -#5872=IFCRELASSOCIATESMATERIAL('2nZasv_Kv3eOsrJ_Ac4$tp',$,$,$,(#5870),#5871); -#5873=IFCMATERIALPROFILE($,$,#17,#5869,$,$); -#5874=IFCMEMBERTYPE('2k9rGD2mv14f9$M6WGpto5',$,'813.0-8.0',$,$,$,$,$,$,$); -#5875=IFCMATERIALPROFILESET($,$,(#5877),$); -#5876=IFCRELASSOCIATESMATERIAL('1bO0AG4yLFgRvbKqBY5T2P',$,$,$,(#5874),#5875); -#5877=IFCMATERIALPROFILE($,$,#17,#5869,$,$); -#5878=IFCCOLUMNTYPE('3fEjGbjrj1ZuJUD3JBC094',$,'813.0-8.0',$,$,$,$,$,$,$); -#5879=IFCMATERIALPROFILESET($,$,(#5881),$); -#5880=IFCRELASSOCIATESMATERIAL('3Kk5ePndz8hvo$iMNN9apr',$,$,$,(#5878),#5879); -#5881=IFCMATERIALPROFILE($,$,#17,#5869,$,$); -#5882=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,10.); -#5883=IFCBEAMTYPE('0iSBMzt_X1Gw2PArWHinCQ',$,'813.0-10.0',$,$,$,$,$,$,$); -#5884=IFCMATERIALPROFILESET($,$,(#5886),$); -#5885=IFCRELASSOCIATESMATERIAL('3j3H_WrffAcerKTtOpcQX8',$,$,$,(#5883),#5884); -#5886=IFCMATERIALPROFILE($,$,#17,#5882,$,$); -#5887=IFCMEMBERTYPE('243ua59_z7hO0Ri33_BFkJ',$,'813.0-10.0',$,$,$,$,$,$,$); -#5888=IFCMATERIALPROFILESET($,$,(#5890),$); -#5889=IFCRELASSOCIATESMATERIAL('2PeRYmlLz2fBWXuAu2dIH1',$,$,$,(#5887),#5888); -#5890=IFCMATERIALPROFILE($,$,#17,#5882,$,$); -#5891=IFCCOLUMNTYPE('1SsqKkgUX4o8_WhH$IRHOZ',$,'813.0-10.0',$,$,$,$,$,$,$); -#5892=IFCMATERIALPROFILESET($,$,(#5894),$); -#5893=IFCRELASSOCIATESMATERIAL('151ToegPrAfxymjPNbpJUB',$,$,$,(#5891),#5892); -#5894=IFCMATERIALPROFILE($,$,#17,#5882,$,$); -#5895=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,12.5); -#5896=IFCBEAMTYPE('3suEi895D6dulca4qJGP8f',$,'813.0-12.5',$,$,$,$,$,$,$); -#5897=IFCMATERIALPROFILESET($,$,(#5899),$); -#5898=IFCRELASSOCIATESMATERIAL('1CvFNVl5PFNfVgCKaOrN04',$,$,$,(#5896),#5897); -#5899=IFCMATERIALPROFILE($,$,#17,#5895,$,$); -#5900=IFCMEMBERTYPE('2mNLXmv557u9KuluyGpBoL',$,'813.0-12.5',$,$,$,$,$,$,$); -#5901=IFCMATERIALPROFILESET($,$,(#5903),$); -#5902=IFCRELASSOCIATESMATERIAL('17OFWnJ4n04Rwa_TKIvFwS',$,$,$,(#5900),#5901); -#5903=IFCMATERIALPROFILE($,$,#17,#5895,$,$); -#5904=IFCCOLUMNTYPE('0q$49Bv9b93hBgWIZNGtpS',$,'813.0-12.5',$,$,$,$,$,$,$); -#5905=IFCMATERIALPROFILESET($,$,(#5907),$); -#5906=IFCRELASSOCIATESMATERIAL('2sYhTI$rv6vPGOhxou_1MK',$,$,$,(#5904),#5905); -#5907=IFCMATERIALPROFILE($,$,#17,#5895,$,$); -#5908=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,14.2); -#5909=IFCBEAMTYPE('2Cq3JU$HrEyBZugASY0P1r',$,'813.0-14.2',$,$,$,$,$,$,$); -#5910=IFCMATERIALPROFILESET($,$,(#5912),$); -#5911=IFCRELASSOCIATESMATERIAL('14gb17P5DEXO4EVUigspXi',$,$,$,(#5909),#5910); -#5912=IFCMATERIALPROFILE($,$,#17,#5908,$,$); -#5913=IFCMEMBERTYPE('0R3YpMf3P8neueim1xl_MM',$,'813.0-14.2',$,$,$,$,$,$,$); -#5914=IFCMATERIALPROFILESET($,$,(#5916),$); -#5915=IFCRELASSOCIATESMATERIAL('1F1patlQ15xQynhlr_zcr9',$,$,$,(#5913),#5914); -#5916=IFCMATERIALPROFILE($,$,#17,#5908,$,$); -#5917=IFCCOLUMNTYPE('2K7jLASfPD9OWKepvJWpee',$,'813.0-14.2',$,$,$,$,$,$,$); -#5918=IFCMATERIALPROFILESET($,$,(#5920),$); -#5919=IFCRELASSOCIATESMATERIAL('1fuHCMVAD7URTKFukhXoZb',$,$,$,(#5917),#5918); -#5920=IFCMATERIALPROFILE($,$,#17,#5908,$,$); -#5921=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,16.); -#5922=IFCBEAMTYPE('3XGpi$ggX0fv8V48uUM9aS',$,'813.0-16.0',$,$,$,$,$,$,$); -#5923=IFCMATERIALPROFILESET($,$,(#5925),$); -#5924=IFCRELASSOCIATESMATERIAL('2ZEfwZhFXCpQbl9UU5KuZl',$,$,$,(#5922),#5923); -#5925=IFCMATERIALPROFILE($,$,#17,#5921,$,$); -#5926=IFCMEMBERTYPE('0_TraJRoLEygAYiEeQCmhg',$,'813.0-16.0',$,$,$,$,$,$,$); -#5927=IFCMATERIALPROFILESET($,$,(#5929),$); -#5928=IFCRELASSOCIATESMATERIAL('3ow1sKGJLCxv7QtQ3yAGIt',$,$,$,(#5926),#5927); -#5929=IFCMATERIALPROFILE($,$,#17,#5921,$,$); -#5930=IFCCOLUMNTYPE('2CBAVi6wf3he0GN_dHH$VH',$,'813.0-16.0',$,$,$,$,$,$,$); -#5931=IFCMATERIALPROFILESET($,$,(#5933),$); -#5932=IFCRELASSOCIATESMATERIAL('3tCYo4h2v8LB_YAkFSMwcV',$,$,$,(#5930),#5931); -#5933=IFCMATERIALPROFILE($,$,#17,#5921,$,$); -#5934=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,20.); -#5935=IFCBEAMTYPE('0cZdR3tAL0WhgGFUw4CMIk',$,'813.0-20.0',$,$,$,$,$,$,$); -#5936=IFCMATERIALPROFILESET($,$,(#5938),$); -#5937=IFCRELASSOCIATESMATERIAL('2WPSkzHeDFeffTLam8yt6v',$,$,$,(#5935),#5936); -#5938=IFCMATERIALPROFILE($,$,#17,#5934,$,$); -#5939=IFCMEMBERTYPE('1BUZhTV6b0PxKdLQKpdpDe',$,'813.0-20.0',$,$,$,$,$,$,$); -#5940=IFCMATERIALPROFILESET($,$,(#5942),$); -#5941=IFCRELASSOCIATESMATERIAL('2SQGpBo_97tu7B5mRFE6aG',$,$,$,(#5939),#5940); -#5942=IFCMATERIALPROFILE($,$,#17,#5934,$,$); -#5943=IFCCOLUMNTYPE('2Slt0OooP69g$wKbMKAJLm',$,'813.0-20.0',$,$,$,$,$,$,$); -#5944=IFCMATERIALPROFILESET($,$,(#5946),$); -#5945=IFCRELASSOCIATESMATERIAL('05zzh4A5rBOxSmol_igEb9',$,$,$,(#5943),#5944); -#5946=IFCMATERIALPROFILE($,$,#17,#5934,$,$); -#5947=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,25.); -#5948=IFCBEAMTYPE('3TYsJFs6HEffjIlFMEaSzt',$,'813.0-25.0',$,$,$,$,$,$,$); -#5949=IFCMATERIALPROFILESET($,$,(#5951),$); -#5950=IFCRELASSOCIATESMATERIAL('14i70Fmcv1Gh4ff2fouVTD',$,$,$,(#5948),#5949); -#5951=IFCMATERIALPROFILE($,$,#17,#5947,$,$); -#5952=IFCMEMBERTYPE('1Vn71cTlvEmxu3Xl$kDgi4',$,'813.0-25.0',$,$,$,$,$,$,$); -#5953=IFCMATERIALPROFILESET($,$,(#5955),$); -#5954=IFCRELASSOCIATESMATERIAL('2m8uQJ1yfFuPvBYwn8sSvY',$,$,$,(#5952),#5953); -#5955=IFCMATERIALPROFILE($,$,#17,#5947,$,$); -#5956=IFCCOLUMNTYPE('31Q6N5jyP57QJDyONEnCs9',$,'813.0-25.0',$,$,$,$,$,$,$); -#5957=IFCMATERIALPROFILESET($,$,(#5959),$); -#5958=IFCRELASSOCIATESMATERIAL('3XrClq4Yf4ZgpkwBhTmqMK',$,$,$,(#5956),#5957); -#5959=IFCMATERIALPROFILE($,$,#17,#5947,$,$); -#5960=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,406.5,30.); -#5961=IFCBEAMTYPE('39v3wml7X0z9Ty7ZrLGZBv',$,'813.0-30.0',$,$,$,$,$,$,$); -#5962=IFCMATERIALPROFILESET($,$,(#5964),$); -#5963=IFCRELASSOCIATESMATERIAL('2B1e7KnqP6OOZx7TZF1d32',$,$,$,(#5961),#5962); -#5964=IFCMATERIALPROFILE($,$,#17,#5960,$,$); -#5965=IFCMEMBERTYPE('2sRueSHLXFKhxqW6ayMkWI',$,'813.0-30.0',$,$,$,$,$,$,$); -#5966=IFCMATERIALPROFILESET($,$,(#5968),$); -#5967=IFCRELASSOCIATESMATERIAL('0rrcyNyN5CcwK7fowzOL8O',$,$,$,(#5965),#5966); -#5968=IFCMATERIALPROFILE($,$,#17,#5960,$,$); -#5969=IFCCOLUMNTYPE('1o6XIiUkX3ehRpjBzJ70Tx',$,'813.0-30.0',$,$,$,$,$,$,$); -#5970=IFCMATERIALPROFILESET($,$,(#5972),$); -#5971=IFCRELASSOCIATESMATERIAL('3cvPNZ$0f7Nfw0TUPun6Er',$,$,$,(#5969),#5970); -#5972=IFCMATERIALPROFILE($,$,#17,#5960,$,$); -#5973=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,8.); -#5974=IFCBEAMTYPE('1VrgqRuTLC3ewhmXsTRNEl',$,'914.0-8.0',$,$,$,$,$,$,$); -#5975=IFCMATERIALPROFILESET($,$,(#5977),$); -#5976=IFCRELASSOCIATESMATERIAL('32PHStaNPC4RVnah0s$S0e',$,$,$,(#5974),#5975); -#5977=IFCMATERIALPROFILE($,$,#17,#5973,$,$); -#5978=IFCMEMBERTYPE('2qxeg4oUD3H9hfpyghY0Y6',$,'914.0-8.0',$,$,$,$,$,$,$); -#5979=IFCMATERIALPROFILESET($,$,(#5981),$); -#5980=IFCRELASSOCIATESMATERIAL('3ytTOWjg101eb6LSQPRuJD',$,$,$,(#5978),#5979); -#5981=IFCMATERIALPROFILE($,$,#17,#5973,$,$); -#5982=IFCCOLUMNTYPE('2RBBRUZnP0u9S9CRG0wdd2',$,'914.0-8.0',$,$,$,$,$,$,$); -#5983=IFCMATERIALPROFILESET($,$,(#5985),$); -#5984=IFCRELASSOCIATESMATERIAL('2hLcs2gm56ofaKe4ObSnn8',$,$,$,(#5982),#5983); -#5985=IFCMATERIALPROFILE($,$,#17,#5973,$,$); -#5986=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,10.); -#5987=IFCBEAMTYPE('3_77ZtH2P9Uvybr3pp1ZpS',$,'914.0-10.0',$,$,$,$,$,$,$); -#5988=IFCMATERIALPROFILESET($,$,(#5990),$); -#5989=IFCRELASSOCIATESMATERIAL('3Z1j22uC97wfKH2Rh0QVS$',$,$,$,(#5987),#5988); -#5990=IFCMATERIALPROFILE($,$,#17,#5986,$,$); -#5991=IFCMEMBERTYPE('29cz7Oqqv1Nw$U2NDNP1cp',$,'914.0-10.0',$,$,$,$,$,$,$); -#5992=IFCMATERIALPROFILESET($,$,(#5994),$); -#5993=IFCRELASSOCIATESMATERIAL('2NSGfJlEDC8ufWRUFpUZMw',$,$,$,(#5991),#5992); -#5994=IFCMATERIALPROFILE($,$,#17,#5986,$,$); -#5995=IFCCOLUMNTYPE('0MqiVXEl10sB6H5ZQOS443',$,'914.0-10.0',$,$,$,$,$,$,$); -#5996=IFCMATERIALPROFILESET($,$,(#5998),$); -#5997=IFCRELASSOCIATESMATERIAL('0azHKqgNX3xRksA6KXaS9x',$,$,$,(#5995),#5996); -#5998=IFCMATERIALPROFILE($,$,#17,#5986,$,$); -#5999=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,12.5); -#6000=IFCBEAMTYPE('1SI$$tE1b7eA4puYdAaru3',$,'914.0-12.5',$,$,$,$,$,$,$); -#6001=IFCMATERIALPROFILESET($,$,(#6003),$); -#6002=IFCRELASSOCIATESMATERIAL('2qUoKj2k59WhM6tsyKmQ$l',$,$,$,(#6000),#6001); -#6003=IFCMATERIALPROFILE($,$,#17,#5999,$,$); -#6004=IFCMEMBERTYPE('3Fqb3qzmv9DP12CYQ2KU4l',$,'914.0-12.5',$,$,$,$,$,$,$); -#6005=IFCMATERIALPROFILESET($,$,(#6007),$); -#6006=IFCRELASSOCIATESMATERIAL('04AY8hbkr1yQiY_JDQhy7S',$,$,$,(#6004),#6005); -#6007=IFCMATERIALPROFILE($,$,#17,#5999,$,$); -#6008=IFCCOLUMNTYPE('1_WR7EPy93OPPAeHi3Gp78',$,'914.0-12.5',$,$,$,$,$,$,$); -#6009=IFCMATERIALPROFILESET($,$,(#6011),$); -#6010=IFCRELASSOCIATESMATERIAL('11B9tbqA9DDQ47DwqvzOeK',$,$,$,(#6008),#6009); -#6011=IFCMATERIALPROFILE($,$,#17,#5999,$,$); -#6012=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,14.2); -#6013=IFCBEAMTYPE('2ZD3QB$UH9ewMeG9F6H7Ka',$,'914.0-14.2',$,$,$,$,$,$,$); -#6014=IFCMATERIALPROFILESET($,$,(#6016),$); -#6015=IFCRELASSOCIATESMATERIAL('0nobp2_$T9nOrOF$s0sMrM',$,$,$,(#6013),#6014); -#6016=IFCMATERIALPROFILE($,$,#17,#6012,$,$); -#6017=IFCMEMBERTYPE('11IC1zu_z69QEyXfhA_v0H',$,'914.0-14.2',$,$,$,$,$,$,$); -#6018=IFCMATERIALPROFILESET($,$,(#6020),$); -#6019=IFCRELASSOCIATESMATERIAL('27JaHc2UH9U9FnTInXa8vV',$,$,$,(#6017),#6018); -#6020=IFCMATERIALPROFILE($,$,#17,#6012,$,$); -#6021=IFCCOLUMNTYPE('1AUzPJrejECBv9UL1CQ4hn',$,'914.0-14.2',$,$,$,$,$,$,$); -#6022=IFCMATERIALPROFILESET($,$,(#6024),$); -#6023=IFCRELASSOCIATESMATERIAL('2FOAaUaf1F_9ra3F9jg2FV',$,$,$,(#6021),#6022); -#6024=IFCMATERIALPROFILE($,$,#17,#6012,$,$); -#6025=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,16.); -#6026=IFCBEAMTYPE('2_DECLEmXCGvr$WsVoxEJG',$,'914.0-16.0',$,$,$,$,$,$,$); -#6027=IFCMATERIALPROFILESET($,$,(#6029),$); -#6028=IFCRELASSOCIATESMATERIAL('1Oghtz4$P4K9RY_ol5tIP5',$,$,$,(#6026),#6027); -#6029=IFCMATERIALPROFILE($,$,#17,#6025,$,$); -#6030=IFCMEMBERTYPE('3hu6nMVIT4HxRyqLRlHvEE',$,'914.0-16.0',$,$,$,$,$,$,$); -#6031=IFCMATERIALPROFILESET($,$,(#6033),$); -#6032=IFCRELASSOCIATESMATERIAL('10GMOUdwv3nxythwkmtO$x',$,$,$,(#6030),#6031); -#6033=IFCMATERIALPROFILE($,$,#17,#6025,$,$); -#6034=IFCCOLUMNTYPE('1FN5xdMrn51QwiDdhL53aV',$,'914.0-16.0',$,$,$,$,$,$,$); -#6035=IFCMATERIALPROFILESET($,$,(#6037),$); -#6036=IFCRELASSOCIATESMATERIAL('3s_SY2VSrFkeHavSFnkccq',$,$,$,(#6034),#6035); -#6037=IFCMATERIALPROFILE($,$,#17,#6025,$,$); -#6038=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,20.); -#6039=IFCBEAMTYPE('15xESZMF911vg_ox2ujMfG',$,'914.0-20.0',$,$,$,$,$,$,$); -#6040=IFCMATERIALPROFILESET($,$,(#6042),$); -#6041=IFCRELASSOCIATESMATERIAL('1nMdgDZOz5KuW9$LVjUbK_',$,$,$,(#6039),#6040); -#6042=IFCMATERIALPROFILE($,$,#17,#6038,$,$); -#6043=IFCMEMBERTYPE('0hRhAZHKbCIA91_UMUN1uO',$,'914.0-20.0',$,$,$,$,$,$,$); -#6044=IFCMATERIALPROFILESET($,$,(#6046),$); -#6045=IFCRELASSOCIATESMATERIAL('1phy99Ke14ygaa4T80fYL9',$,$,$,(#6043),#6044); -#6046=IFCMATERIALPROFILE($,$,#17,#6038,$,$); -#6047=IFCCOLUMNTYPE('3BmOtgyeX0tu41RAtBMb_J',$,'914.0-20.0',$,$,$,$,$,$,$); -#6048=IFCMATERIALPROFILESET($,$,(#6050),$); -#6049=IFCRELASSOCIATESMATERIAL('06kNK6u2T1ihDqy0glMANF',$,$,$,(#6047),#6048); -#6050=IFCMATERIALPROFILE($,$,#17,#6038,$,$); -#6051=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,25.); -#6052=IFCBEAMTYPE('3km_mYgDjEz8blP78DTeQM',$,'914.0-25.0',$,$,$,$,$,$,$); -#6053=IFCMATERIALPROFILESET($,$,(#6055),$); -#6054=IFCRELASSOCIATESMATERIAL('3km8GJBFn86Pkr7S4S0QPG',$,$,$,(#6052),#6053); -#6055=IFCMATERIALPROFILE($,$,#17,#6051,$,$); -#6056=IFCMEMBERTYPE('189fzadLL3iuwgaVsrpLG6',$,'914.0-25.0',$,$,$,$,$,$,$); -#6057=IFCMATERIALPROFILESET($,$,(#6059),$); -#6058=IFCRELASSOCIATESMATERIAL('0dCI8Ran96dggD_1ivSzeq',$,$,$,(#6056),#6057); -#6059=IFCMATERIALPROFILE($,$,#17,#6051,$,$); -#6060=IFCCOLUMNTYPE('0O1w98vR5ANRN8i4S_XKB4',$,'914.0-25.0',$,$,$,$,$,$,$); -#6061=IFCMATERIALPROFILESET($,$,(#6063),$); -#6062=IFCRELASSOCIATESMATERIAL('3OfmxQeDT5EfAdkCTd_vfY',$,$,$,(#6060),#6061); -#6063=IFCMATERIALPROFILE($,$,#17,#6051,$,$); -#6064=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,457.,30.); -#6065=IFCBEAMTYPE('0aMJ2QJF1BAPl$P4D5lLVg',$,'914.0-30.0',$,$,$,$,$,$,$); -#6066=IFCMATERIALPROFILESET($,$,(#6068),$); -#6067=IFCRELASSOCIATESMATERIAL('1JyeLM5LXDzg$XB$zjGqfr',$,$,$,(#6065),#6066); -#6068=IFCMATERIALPROFILE($,$,#17,#6064,$,$); -#6069=IFCMEMBERTYPE('2py3TIKHn2aAXdsaVtuWBa',$,'914.0-30.0',$,$,$,$,$,$,$); -#6070=IFCMATERIALPROFILESET($,$,(#6072),$); -#6071=IFCRELASSOCIATESMATERIAL('0XfK6xhpzCG9vkEo8YctvF',$,$,$,(#6069),#6070); -#6072=IFCMATERIALPROFILE($,$,#17,#6064,$,$); -#6073=IFCCOLUMNTYPE('2tncGFS9L1bhDv938YRxRi',$,'914.0-30.0',$,$,$,$,$,$,$); -#6074=IFCMATERIALPROFILESET($,$,(#6076),$); -#6075=IFCRELASSOCIATESMATERIAL('1wB9sgVAnBwBHTAag$yedS',$,$,$,(#6073),#6074); -#6076=IFCMATERIALPROFILE($,$,#17,#6064,$,$); -#6077=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,8.); -#6078=IFCBEAMTYPE('1ifS9AtQrBLxqzDrvnW_Wb',$,'1016.0-8.0',$,$,$,$,$,$,$); -#6079=IFCMATERIALPROFILESET($,$,(#6081),$); -#6080=IFCRELASSOCIATESMATERIAL('3WN5Cpe890SBD8ztIJh1oz',$,$,$,(#6078),#6079); -#6081=IFCMATERIALPROFILE($,$,#17,#6077,$,$); -#6082=IFCMEMBERTYPE('3Y6bY2pK5DoQ7CBRK03yZr',$,'1016.0-8.0',$,$,$,$,$,$,$); -#6083=IFCMATERIALPROFILESET($,$,(#6085),$); -#6084=IFCRELASSOCIATESMATERIAL('2CfRn3M016iwA9gzdH9t8D',$,$,$,(#6082),#6083); -#6085=IFCMATERIALPROFILE($,$,#17,#6077,$,$); -#6086=IFCCOLUMNTYPE('1g3WL01SD0n9hdxCqlKj5Y',$,'1016.0-8.0',$,$,$,$,$,$,$); -#6087=IFCMATERIALPROFILESET($,$,(#6089),$); -#6088=IFCRELASSOCIATESMATERIAL('1wVmo$R9f7T9VqwBaaEO7w',$,$,$,(#6086),#6087); -#6089=IFCMATERIALPROFILE($,$,#17,#6077,$,$); -#6090=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,10.); -#6091=IFCBEAMTYPE('2mAYHhknn0jhV6eO6jmGlj',$,'1016.0-10.0',$,$,$,$,$,$,$); -#6092=IFCMATERIALPROFILESET($,$,(#6094),$); -#6093=IFCRELASSOCIATESMATERIAL('0PULI7zhXEQhmdFsZ2GzwQ',$,$,$,(#6091),#6092); -#6094=IFCMATERIALPROFILE($,$,#17,#6090,$,$); -#6095=IFCMEMBERTYPE('2c96e7lav0UBPauhsqYvoF',$,'1016.0-10.0',$,$,$,$,$,$,$); -#6096=IFCMATERIALPROFILESET($,$,(#6098),$); -#6097=IFCRELASSOCIATESMATERIAL('0G66cb1xP6W8QgSLuUSXRW',$,$,$,(#6095),#6096); -#6098=IFCMATERIALPROFILE($,$,#17,#6090,$,$); -#6099=IFCCOLUMNTYPE('0ghBIuh851B8aFbIUL3w1j',$,'1016.0-10.0',$,$,$,$,$,$,$); -#6100=IFCMATERIALPROFILESET($,$,(#6102),$); -#6101=IFCRELASSOCIATESMATERIAL('0cGqWfwAL7gOYqjbiRyzqg',$,$,$,(#6099),#6100); -#6102=IFCMATERIALPROFILE($,$,#17,#6090,$,$); -#6103=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,12.5); -#6104=IFCBEAMTYPE('2wP1HDHyP3HQxVwbW1BHsI',$,'1016.0-12.5',$,$,$,$,$,$,$); -#6105=IFCMATERIALPROFILESET($,$,(#6107),$); -#6106=IFCRELASSOCIATESMATERIAL('2ZYrE8KXXFQh6sWIGtqzMB',$,$,$,(#6104),#6105); -#6107=IFCMATERIALPROFILE($,$,#17,#6103,$,$); -#6108=IFCMEMBERTYPE('3Z09AktgvAR9XQQglrGgNb',$,'1016.0-12.5',$,$,$,$,$,$,$); -#6109=IFCMATERIALPROFILESET($,$,(#6111),$); -#6110=IFCRELASSOCIATESMATERIAL('3XcAX4yLD0YO7QA1XZByS9',$,$,$,(#6108),#6109); -#6111=IFCMATERIALPROFILE($,$,#17,#6103,$,$); -#6112=IFCCOLUMNTYPE('2xrHXaWWLFuPsFayKt9iim',$,'1016.0-12.5',$,$,$,$,$,$,$); -#6113=IFCMATERIALPROFILESET($,$,(#6115),$); -#6114=IFCRELASSOCIATESMATERIAL('3aaWukYdXB2gasueSq2AIX',$,$,$,(#6112),#6113); -#6115=IFCMATERIALPROFILE($,$,#17,#6103,$,$); -#6116=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,14.2); -#6117=IFCBEAMTYPE('3xndoGvEz2Gh8dvKv1e1o2',$,'1016.0-14.2',$,$,$,$,$,$,$); -#6118=IFCMATERIALPROFILESET($,$,(#6120),$); -#6119=IFCRELASSOCIATESMATERIAL('04gOWHy$XD9AoUSTaVhTY1',$,$,$,(#6117),#6118); -#6120=IFCMATERIALPROFILE($,$,#17,#6116,$,$); -#6121=IFCMEMBERTYPE('2wON6RMAr8ShMyMjzP8q14',$,'1016.0-14.2',$,$,$,$,$,$,$); -#6122=IFCMATERIALPROFILESET($,$,(#6124),$); -#6123=IFCRELASSOCIATESMATERIAL('39c0JxVbDCQhJmTj$vpKbW',$,$,$,(#6121),#6122); -#6124=IFCMATERIALPROFILE($,$,#17,#6116,$,$); -#6125=IFCCOLUMNTYPE('1X2mz3Ax98vf7I7d30cSIC',$,'1016.0-14.2',$,$,$,$,$,$,$); -#6126=IFCMATERIALPROFILESET($,$,(#6128),$); -#6127=IFCRELASSOCIATESMATERIAL('2UKFSqXcbFvRL7Qxe9BTqb',$,$,$,(#6125),#6126); -#6128=IFCMATERIALPROFILE($,$,#17,#6116,$,$); -#6129=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,16.); -#6130=IFCBEAMTYPE('2zDcNH3ZfDs9rA6lp3lMow',$,'1016.0-16.0',$,$,$,$,$,$,$); -#6131=IFCMATERIALPROFILESET($,$,(#6133),$); -#6132=IFCRELASSOCIATESMATERIAL('1W3THJruTEi83fqvr_66XC',$,$,$,(#6130),#6131); -#6133=IFCMATERIALPROFILE($,$,#17,#6129,$,$); -#6134=IFCMEMBERTYPE('2traxYADrBIQXC33yTjnzg',$,'1016.0-16.0',$,$,$,$,$,$,$); -#6135=IFCMATERIALPROFILESET($,$,(#6137),$); -#6136=IFCRELASSOCIATESMATERIAL('2BSRHQK1X3NRT9IO_Grnd3',$,$,$,(#6134),#6135); -#6137=IFCMATERIALPROFILE($,$,#17,#6129,$,$); -#6138=IFCCOLUMNTYPE('3Ygx_VmKLEDORa0gcoNy81',$,'1016.0-16.0',$,$,$,$,$,$,$); -#6139=IFCMATERIALPROFILESET($,$,(#6141),$); -#6140=IFCRELASSOCIATESMATERIAL('02VC_5WlL0Jh$EgWGcVNbd',$,$,$,(#6138),#6139); -#6141=IFCMATERIALPROFILE($,$,#17,#6129,$,$); -#6142=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,20.); -#6143=IFCBEAMTYPE('0UrzGntVrEHBYxZupwl_ze',$,'1016.0-20.0',$,$,$,$,$,$,$); -#6144=IFCMATERIALPROFILESET($,$,(#6146),$); -#6145=IFCRELASSOCIATESMATERIAL('2rDzPgz6nCgfJy8Pfd2f8s',$,$,$,(#6143),#6144); -#6146=IFCMATERIALPROFILE($,$,#17,#6142,$,$); -#6147=IFCMEMBERTYPE('08GqFvS2b41OYWo$m$xugB',$,'1016.0-20.0',$,$,$,$,$,$,$); -#6148=IFCMATERIALPROFILESET($,$,(#6150),$); -#6149=IFCRELASSOCIATESMATERIAL('2ygQVWvgf3ffzO3Ls7rJSf',$,$,$,(#6147),#6148); -#6150=IFCMATERIALPROFILE($,$,#17,#6142,$,$); -#6151=IFCCOLUMNTYPE('2FllIEHHT0ZQKL$WTYdztV',$,'1016.0-20.0',$,$,$,$,$,$,$); -#6152=IFCMATERIALPROFILESET($,$,(#6154),$); -#6153=IFCRELASSOCIATESMATERIAL('3bauBMWOTEmgzKx47$O7wL',$,$,$,(#6151),#6152); -#6154=IFCMATERIALPROFILE($,$,#17,#6142,$,$); -#6155=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,25.); -#6156=IFCBEAMTYPE('1yYk5WXhH2dPSWvWKVF3xE',$,'1016.0-25.0',$,$,$,$,$,$,$); -#6157=IFCMATERIALPROFILESET($,$,(#6159),$); -#6158=IFCRELASSOCIATESMATERIAL('1G9tAn8ADAXR8xBd4A9LKs',$,$,$,(#6156),#6157); -#6159=IFCMATERIALPROFILE($,$,#17,#6155,$,$); -#6160=IFCMEMBERTYPE('2RWBZj5$TDegvPpbkJAQTe',$,'1016.0-25.0',$,$,$,$,$,$,$); -#6161=IFCMATERIALPROFILESET($,$,(#6163),$); -#6162=IFCRELASSOCIATESMATERIAL('3EBf_Era5FMudQ8fFk9Prm',$,$,$,(#6160),#6161); -#6163=IFCMATERIALPROFILE($,$,#17,#6155,$,$); -#6164=IFCCOLUMNTYPE('1sLTZIAqnF9BU6QksxVdct',$,'1016.0-25.0',$,$,$,$,$,$,$); -#6165=IFCMATERIALPROFILESET($,$,(#6167),$); -#6166=IFCRELASSOCIATESMATERIAL('1wMtA09d508w3z6DgHOZSf',$,$,$,(#6164),#6165); -#6167=IFCMATERIALPROFILE($,$,#17,#6155,$,$); -#6168=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,508.,30.); -#6169=IFCBEAMTYPE('2dh1vdUoLBNuql1zwIxdkr',$,'1016.0-30.0',$,$,$,$,$,$,$); -#6170=IFCMATERIALPROFILESET($,$,(#6172),$); -#6171=IFCRELASSOCIATESMATERIAL('0BYag3K7L0MPK3FOszJpkw',$,$,$,(#6169),#6170); -#6172=IFCMATERIALPROFILE($,$,#17,#6168,$,$); -#6173=IFCMEMBERTYPE('3FWIPKM_z6vvTxhureWCWf',$,'1016.0-30.0',$,$,$,$,$,$,$); -#6174=IFCMATERIALPROFILESET($,$,(#6176),$); -#6175=IFCRELASSOCIATESMATERIAL('2K8ofRcnj0Bh6aGS$ng1Dp',$,$,$,(#6173),#6174); -#6176=IFCMATERIALPROFILE($,$,#17,#6168,$,$); -#6177=IFCCOLUMNTYPE('18OtnU5qHBof4YxVHFuhTa',$,'1016.0-30.0',$,$,$,$,$,$,$); -#6178=IFCMATERIALPROFILESET($,$,(#6180),$); -#6179=IFCRELASSOCIATESMATERIAL('3nzLVKPbv7HAIylUMsAsga',$,$,$,(#6177),#6178); -#6180=IFCMATERIALPROFILE($,$,#17,#6168,$,$); -#6181=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,10.); -#6182=IFCBEAMTYPE('1CpzUEVP5CwRKnFnkjD_Tj',$,'1067.0-10.0',$,$,$,$,$,$,$); -#6183=IFCMATERIALPROFILESET($,$,(#6185),$); -#6184=IFCRELASSOCIATESMATERIAL('3a4MzO$PvBFfxWmUR4Zz3v',$,$,$,(#6182),#6183); -#6185=IFCMATERIALPROFILE($,$,#17,#6181,$,$); -#6186=IFCMEMBERTYPE('2O78UR3$HD_8DuHwpI6FNK',$,'1067.0-10.0',$,$,$,$,$,$,$); -#6187=IFCMATERIALPROFILESET($,$,(#6189),$); -#6188=IFCRELASSOCIATESMATERIAL('0Gzv5kksfCChmcyPn4CEkn',$,$,$,(#6186),#6187); -#6189=IFCMATERIALPROFILE($,$,#17,#6181,$,$); -#6190=IFCCOLUMNTYPE('24XHPLplv0sAaSIbGFfKyn',$,'1067.0-10.0',$,$,$,$,$,$,$); -#6191=IFCMATERIALPROFILESET($,$,(#6193),$); -#6192=IFCRELASSOCIATESMATERIAL('2j5k$OsZHFnhQBqHXI7xsf',$,$,$,(#6190),#6191); -#6193=IFCMATERIALPROFILE($,$,#17,#6181,$,$); -#6194=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,12.5); -#6195=IFCBEAMTYPE('14SRvaoKv0vPKjzzO4XM87',$,'1067.0-12.5',$,$,$,$,$,$,$); -#6196=IFCMATERIALPROFILESET($,$,(#6198),$); -#6197=IFCRELASSOCIATESMATERIAL('0r6nGJvmL8geHaYcjubAXK',$,$,$,(#6195),#6196); -#6198=IFCMATERIALPROFILE($,$,#17,#6194,$,$); -#6199=IFCMEMBERTYPE('2FObwLr$rAjAfIAJN3Omgp',$,'1067.0-12.5',$,$,$,$,$,$,$); -#6200=IFCMATERIALPROFILESET($,$,(#6202),$); -#6201=IFCRELASSOCIATESMATERIAL('2BxdnrW0r47Oa8M5rOh29z',$,$,$,(#6199),#6200); -#6202=IFCMATERIALPROFILE($,$,#17,#6194,$,$); -#6203=IFCCOLUMNTYPE('2aua5a19bD8RfLQpHhFAzv',$,'1067.0-12.5',$,$,$,$,$,$,$); -#6204=IFCMATERIALPROFILESET($,$,(#6206),$); -#6205=IFCRELASSOCIATESMATERIAL('3RoN698ZL0_A2ih1KiioJX',$,$,$,(#6203),#6204); -#6206=IFCMATERIALPROFILE($,$,#17,#6194,$,$); -#6207=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,14.2); -#6208=IFCBEAMTYPE('3npUOZ8oX15xRnJfk1G2wC',$,'1067.0-14.2',$,$,$,$,$,$,$); -#6209=IFCMATERIALPROFILESET($,$,(#6211),$); -#6210=IFCRELASSOCIATESMATERIAL('3QQTD0_BPD$eb7VZ_jetbF',$,$,$,(#6208),#6209); -#6211=IFCMATERIALPROFILE($,$,#17,#6207,$,$); -#6212=IFCMEMBERTYPE('1q411PhJT2PxZ4CrMBVpHT',$,'1067.0-14.2',$,$,$,$,$,$,$); -#6213=IFCMATERIALPROFILESET($,$,(#6215),$); -#6214=IFCRELASSOCIATESMATERIAL('1tiYgtFvr1zwrPOcymD4LI',$,$,$,(#6212),#6213); -#6215=IFCMATERIALPROFILE($,$,#17,#6207,$,$); -#6216=IFCCOLUMNTYPE('2pR1ayIYX6ROMBlbbkmQY5',$,'1067.0-14.2',$,$,$,$,$,$,$); -#6217=IFCMATERIALPROFILESET($,$,(#6219),$); -#6218=IFCRELASSOCIATESMATERIAL('1Bi$AjP8fFEBIL6cKnqrBZ',$,$,$,(#6216),#6217); -#6219=IFCMATERIALPROFILE($,$,#17,#6207,$,$); -#6220=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,16.); -#6221=IFCBEAMTYPE('1sFKPQmfT5deAipLine0P8',$,'1067.0-16.0',$,$,$,$,$,$,$); -#6222=IFCMATERIALPROFILESET($,$,(#6224),$); -#6223=IFCRELASSOCIATESMATERIAL('2wxzL63fT1SeI$bmOwloWZ',$,$,$,(#6221),#6222); -#6224=IFCMATERIALPROFILE($,$,#17,#6220,$,$); -#6225=IFCMEMBERTYPE('122w9JF$T8_Pz8yOr1XUi7',$,'1067.0-16.0',$,$,$,$,$,$,$); -#6226=IFCMATERIALPROFILESET($,$,(#6228),$); -#6227=IFCRELASSOCIATESMATERIAL('0E3CTY0Rj3Du1fpaaSAOGq',$,$,$,(#6225),#6226); -#6228=IFCMATERIALPROFILE($,$,#17,#6220,$,$); -#6229=IFCCOLUMNTYPE('1kBo_qbxj2YRF$O0eN3O2G',$,'1067.0-16.0',$,$,$,$,$,$,$); -#6230=IFCMATERIALPROFILESET($,$,(#6232),$); -#6231=IFCRELASSOCIATESMATERIAL('0m7gBeHADErAuOLaF3RpHc',$,$,$,(#6229),#6230); -#6232=IFCMATERIALPROFILE($,$,#17,#6220,$,$); -#6233=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,20.); -#6234=IFCBEAMTYPE('3DDgtLyQXA4e2jLcYfxQ32',$,'1067.0-20.0',$,$,$,$,$,$,$); -#6235=IFCMATERIALPROFILESET($,$,(#6237),$); -#6236=IFCRELASSOCIATESMATERIAL('3$WCK$EgX9oBnB$crqav61',$,$,$,(#6234),#6235); -#6237=IFCMATERIALPROFILE($,$,#17,#6233,$,$); -#6238=IFCMEMBERTYPE('312udFKPz3og$r6t$VjAjA',$,'1067.0-20.0',$,$,$,$,$,$,$); -#6239=IFCMATERIALPROFILESET($,$,(#6241),$); -#6240=IFCRELASSOCIATESMATERIAL('1S97rsF1nE7x0hZLfI7FeY',$,$,$,(#6238),#6239); -#6241=IFCMATERIALPROFILE($,$,#17,#6233,$,$); -#6242=IFCCOLUMNTYPE('34$7s7iBTEye$yFTjfukqz',$,'1067.0-20.0',$,$,$,$,$,$,$); -#6243=IFCMATERIALPROFILESET($,$,(#6245),$); -#6244=IFCRELASSOCIATESMATERIAL('0BhziIAYT9avpu6jIb7H2E',$,$,$,(#6242),#6243); -#6245=IFCMATERIALPROFILE($,$,#17,#6233,$,$); -#6246=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,25.); -#6247=IFCBEAMTYPE('0eKHOZJ6n4ZRbPvFwj0qdZ',$,'1067.0-25.0',$,$,$,$,$,$,$); -#6248=IFCMATERIALPROFILESET($,$,(#6250),$); -#6249=IFCRELASSOCIATESMATERIAL('3mE74vA7P5MBW$brel__Hh',$,$,$,(#6247),#6248); -#6250=IFCMATERIALPROFILE($,$,#17,#6246,$,$); -#6251=IFCMEMBERTYPE('0RG5yX7Ab3zRnxBV6cJtmv',$,'1067.0-25.0',$,$,$,$,$,$,$); -#6252=IFCMATERIALPROFILESET($,$,(#6254),$); -#6253=IFCRELASSOCIATESMATERIAL('3K0JGQCtvDLPQG_g5xWVKd',$,$,$,(#6251),#6252); -#6254=IFCMATERIALPROFILE($,$,#17,#6246,$,$); -#6255=IFCCOLUMNTYPE('2oNhrUlJ96WA_DnSRIvqbc',$,'1067.0-25.0',$,$,$,$,$,$,$); -#6256=IFCMATERIALPROFILESET($,$,(#6258),$); -#6257=IFCRELASSOCIATESMATERIAL('0B7EoINIP3cPc$mDk7na0u',$,$,$,(#6255),#6256); -#6258=IFCMATERIALPROFILE($,$,#17,#6246,$,$); -#6259=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,533.5,30.); -#6260=IFCBEAMTYPE('3e4ui6mev7ig97sxeGIR77',$,'1067.0-30.0',$,$,$,$,$,$,$); -#6261=IFCMATERIALPROFILESET($,$,(#6263),$); -#6262=IFCRELASSOCIATESMATERIAL('3F$pAs1Y91ZxAtzwTtyKhK',$,$,$,(#6260),#6261); -#6263=IFCMATERIALPROFILE($,$,#17,#6259,$,$); -#6264=IFCMEMBERTYPE('0c6mYgt5bFJh$U0Vu_OsfX',$,'1067.0-30.0',$,$,$,$,$,$,$); -#6265=IFCMATERIALPROFILESET($,$,(#6267),$); -#6266=IFCRELASSOCIATESMATERIAL('3AcrxKkcj99AzictqRmdhP',$,$,$,(#6264),#6265); -#6267=IFCMATERIALPROFILE($,$,#17,#6259,$,$); -#6268=IFCCOLUMNTYPE('0$iQ0T3Wz3B9fiWuG2iqmA',$,'1067.0-30.0',$,$,$,$,$,$,$); -#6269=IFCMATERIALPROFILESET($,$,(#6271),$); -#6270=IFCRELASSOCIATESMATERIAL('1veEMxq9L9vgtr5tNinHvs',$,$,$,(#6268),#6269); -#6271=IFCMATERIALPROFILE($,$,#17,#6259,$,$); -#6272=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,584.,10.); -#6273=IFCBEAMTYPE('3ufapFqxnE$Pbw8EVQ$CmV',$,'1168.0-10.0',$,$,$,$,$,$,$); -#6274=IFCMATERIALPROFILESET($,$,(#6276),$); -#6275=IFCRELASSOCIATESMATERIAL('38rVW$ciH5IQIvElHICHSw',$,$,$,(#6273),#6274); -#6276=IFCMATERIALPROFILE($,$,#17,#6272,$,$); -#6277=IFCMEMBERTYPE('0ZixduZQT1WwX0VQ0I2v$a',$,'1168.0-10.0',$,$,$,$,$,$,$); -#6278=IFCMATERIALPROFILESET($,$,(#6280),$); -#6279=IFCRELASSOCIATESMATERIAL('3xMsbDc$PB5gif9R2amraO',$,$,$,(#6277),#6278); -#6280=IFCMATERIALPROFILE($,$,#17,#6272,$,$); -#6281=IFCCOLUMNTYPE('3L5Fc7ASjBRfBgez6r4y2d',$,'1168.0-10.0',$,$,$,$,$,$,$); -#6282=IFCMATERIALPROFILESET($,$,(#6284),$); -#6283=IFCRELASSOCIATESMATERIAL('2r4kbKCqf7TwiLKc4Qa45q',$,$,$,(#6281),#6282); -#6284=IFCMATERIALPROFILE($,$,#17,#6272,$,$); -#6285=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,584.,12.5); -#6286=IFCBEAMTYPE('1Sa_uQOtz76uZoTEg63i7x',$,'1168.0-12.5',$,$,$,$,$,$,$); -#6287=IFCMATERIALPROFILESET($,$,(#6289),$); -#6288=IFCRELASSOCIATESMATERIAL('1wpL3do013jRRQieVdatXy',$,$,$,(#6286),#6287); -#6289=IFCMATERIALPROFILE($,$,#17,#6285,$,$); -#6290=IFCMEMBERTYPE('0_NGAvr6D0khfcCGw89XNi',$,'1168.0-12.5',$,$,$,$,$,$,$); -#6291=IFCMATERIALPROFILESET($,$,(#6293),$); -#6292=IFCRELASSOCIATESMATERIAL('16uEQwD5D0OAQbJhzgz1dr',$,$,$,(#6290),#6291); -#6293=IFCMATERIALPROFILE($,$,#17,#6285,$,$); -#6294=IFCCOLUMNTYPE('3DgY45BlT7cOoNEms_mi8L',$,'1168.0-12.5',$,$,$,$,$,$,$); -#6295=IFCMATERIALPROFILESET($,$,(#6297),$); -#6296=IFCRELASSOCIATESMATERIAL('27nGUEUMX3yOILE8ePfXuJ',$,$,$,(#6294),#6295); -#6297=IFCMATERIALPROFILE($,$,#17,#6285,$,$); -#6298=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,584.,14.2); -#6299=IFCBEAMTYPE('0QuBTnjSv2AuYHeJ5ONeZm',$,'1168.0-14.2',$,$,$,$,$,$,$); -#6300=IFCMATERIALPROFILESET($,$,(#6302),$); -#6301=IFCRELASSOCIATESMATERIAL('3xjYJ$1qH5awIeFQggSLKZ',$,$,$,(#6299),#6300); -#6302=IFCMATERIALPROFILE($,$,#17,#6298,$,$); -#6303=IFCMEMBERTYPE('0Yh0sQJAf6CPExtjwnL1wi',$,'1168.0-14.2',$,$,$,$,$,$,$); -#6304=IFCMATERIALPROFILESET($,$,(#6306),$); -#6305=IFCRELASSOCIATESMATERIAL('0_wDHSA3v5j9eAZbpvqNPP',$,$,$,(#6303),#6304); -#6306=IFCMATERIALPROFILE($,$,#17,#6298,$,$); -#6307=IFCCOLUMNTYPE('1JmF0JY412NuMy9pbSVoOV',$,'1168.0-14.2',$,$,$,$,$,$,$); -#6308=IFCMATERIALPROFILESET($,$,(#6310),$); -#6309=IFCRELASSOCIATESMATERIAL('0SANmf$njAg8f_cYjbDkJk',$,$,$,(#6307),#6308); -#6310=IFCMATERIALPROFILE($,$,#17,#6298,$,$); -#6311=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,584.,16.); -#6312=IFCBEAMTYPE('24t0hsd4r5zugfVPsTb5Lw',$,'1168.0-16.0',$,$,$,$,$,$,$); -#6313=IFCMATERIALPROFILESET($,$,(#6315),$); -#6314=IFCRELASSOCIATESMATERIAL('2_w$u80eD4LPa2AO2zwz6I',$,$,$,(#6312),#6313); -#6315=IFCMATERIALPROFILE($,$,#17,#6311,$,$); -#6316=IFCMEMBERTYPE('0MPpVeDmrEGwE$_JJJvwNw',$,'1168.0-16.0',$,$,$,$,$,$,$); -#6317=IFCMATERIALPROFILESET($,$,(#6319),$); -#6318=IFCRELASSOCIATESMATERIAL('3PVaQWJ4b7vhIAkbUSeB1p',$,$,$,(#6316),#6317); -#6319=IFCMATERIALPROFILE($,$,#17,#6311,$,$); -#6320=IFCCOLUMNTYPE('2Rke$HXsXF88qUfCovqKS6',$,'1168.0-16.0',$,$,$,$,$,$,$); -#6321=IFCMATERIALPROFILESET($,$,(#6323),$); -#6322=IFCRELASSOCIATESMATERIAL('3OsMKl4WD0hwxqOmw16aRd',$,$,$,(#6320),#6321); -#6323=IFCMATERIALPROFILE($,$,#17,#6311,$,$); -#6324=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,584.,20.); -#6325=IFCBEAMTYPE('23YyxBQWf9KQJ6OfGixw_$',$,'1168.0-20.0',$,$,$,$,$,$,$); -#6326=IFCMATERIALPROFILESET($,$,(#6328),$); -#6327=IFCRELASSOCIATESMATERIAL('2FQYbcijz98gHSd8WP4dZc',$,$,$,(#6325),#6326); -#6328=IFCMATERIALPROFILE($,$,#17,#6324,$,$); -#6329=IFCMEMBERTYPE('2_7sF90tjCeOq$coCg4gbZ',$,'1168.0-20.0',$,$,$,$,$,$,$); -#6330=IFCMATERIALPROFILESET($,$,(#6332),$); -#6331=IFCRELASSOCIATESMATERIAL('121xUCexHECPIt11w5aE2N',$,$,$,(#6329),#6330); -#6332=IFCMATERIALPROFILE($,$,#17,#6324,$,$); -#6333=IFCCOLUMNTYPE('3tQUJIzlHEp8Y1FbvkgkrH',$,'1168.0-20.0',$,$,$,$,$,$,$); -#6334=IFCMATERIALPROFILESET($,$,(#6336),$); -#6335=IFCRELASSOCIATESMATERIAL('0Mig8S0eHB0AzgO0xOP$zg',$,$,$,(#6333),#6334); -#6336=IFCMATERIALPROFILE($,$,#17,#6324,$,$); -#6337=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,584.,25.); -#6338=IFCBEAMTYPE('0irmVwwpH6mB0gCGyJ$iV2',$,'1168.0-25.0',$,$,$,$,$,$,$); -#6339=IFCMATERIALPROFILESET($,$,(#6341),$); -#6340=IFCRELASSOCIATESMATERIAL('3_reBCr852OOUpvTWuhzXb',$,$,$,(#6338),#6339); -#6341=IFCMATERIALPROFILE($,$,#17,#6337,$,$); -#6342=IFCMEMBERTYPE('05jMNRLOT6Ye19Egm8BxN4',$,'1168.0-25.0',$,$,$,$,$,$,$); -#6343=IFCMATERIALPROFILESET($,$,(#6345),$); -#6344=IFCRELASSOCIATESMATERIAL('0A03S3$B9FVhy1vdsmRhmd',$,$,$,(#6342),#6343); -#6345=IFCMATERIALPROFILE($,$,#17,#6337,$,$); -#6346=IFCCOLUMNTYPE('0YpxSMfPjEae5FYC4oC7X2',$,'1168.0-25.0',$,$,$,$,$,$,$); -#6347=IFCMATERIALPROFILESET($,$,(#6349),$); -#6348=IFCRELASSOCIATESMATERIAL('3YHrphj3LAJP0eE$l3ZjAo',$,$,$,(#6346),#6347); -#6349=IFCMATERIALPROFILE($,$,#17,#6337,$,$); -#6350=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,609.5,10.); -#6351=IFCBEAMTYPE('3R2ekOjrfCbh$5FSWQC1G4',$,'1219.0-10.0',$,$,$,$,$,$,$); -#6352=IFCMATERIALPROFILESET($,$,(#6354),$); -#6353=IFCRELASSOCIATESMATERIAL('1npd3LYwrFlwUDovEbNvBX',$,$,$,(#6351),#6352); -#6354=IFCMATERIALPROFILE($,$,#17,#6350,$,$); -#6355=IFCMEMBERTYPE('2MS6dwH3v9H9nDCc24y_Pd',$,'1219.0-10.0',$,$,$,$,$,$,$); -#6356=IFCMATERIALPROFILESET($,$,(#6358),$); -#6357=IFCRELASSOCIATESMATERIAL('2JSH1Ev1T8YgNWnwsKic30',$,$,$,(#6355),#6356); -#6358=IFCMATERIALPROFILE($,$,#17,#6350,$,$); -#6359=IFCCOLUMNTYPE('2hrVWg4Uf67eI$j6SdYRqX',$,'1219.0-10.0',$,$,$,$,$,$,$); -#6360=IFCMATERIALPROFILESET($,$,(#6362),$); -#6361=IFCRELASSOCIATESMATERIAL('0H7WtpBIv7JeBMrcFp5a$s',$,$,$,(#6359),#6360); -#6362=IFCMATERIALPROFILE($,$,#17,#6350,$,$); -#6363=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,609.5,12.5); -#6364=IFCBEAMTYPE('1YAO4tCPX60w4c$izjMMTL',$,'1219.0-12.5',$,$,$,$,$,$,$); -#6365=IFCMATERIALPROFILESET($,$,(#6367),$); -#6366=IFCRELASSOCIATESMATERIAL('3HzmSCBAL9kQHwqCBnv87M',$,$,$,(#6364),#6365); -#6367=IFCMATERIALPROFILE($,$,#17,#6363,$,$); -#6368=IFCMEMBERTYPE('39$E_SG8L4HASWF7p9oPm6',$,'1219.0-12.5',$,$,$,$,$,$,$); -#6369=IFCMATERIALPROFILESET($,$,(#6371),$); -#6370=IFCRELASSOCIATESMATERIAL('1WKwOW9YX6nBPUy2oOHTNp',$,$,$,(#6368),#6369); -#6371=IFCMATERIALPROFILE($,$,#17,#6363,$,$); -#6372=IFCCOLUMNTYPE('2FLjCVpNP8SQx3GJvPvlGj',$,'1219.0-12.5',$,$,$,$,$,$,$); -#6373=IFCMATERIALPROFILESET($,$,(#6375),$); -#6374=IFCRELASSOCIATESMATERIAL('1V9_$QiAr579ZIqFMvB3MY',$,$,$,(#6372),#6373); -#6375=IFCMATERIALPROFILE($,$,#17,#6363,$,$); -#6376=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,609.5,14.2); -#6377=IFCBEAMTYPE('3Xd7QS5fLF_fT0PTAdALQJ',$,'1219.0-14.2',$,$,$,$,$,$,$); -#6378=IFCMATERIALPROFILESET($,$,(#6380),$); -#6379=IFCRELASSOCIATESMATERIAL('054LxBip5FHe7147OqlRgh',$,$,$,(#6377),#6378); -#6380=IFCMATERIALPROFILE($,$,#17,#6376,$,$); -#6381=IFCMEMBERTYPE('3fz0NmSPL3qwkselZwHnZH',$,'1219.0-14.2',$,$,$,$,$,$,$); -#6382=IFCMATERIALPROFILESET($,$,(#6384),$); -#6383=IFCRELASSOCIATESMATERIAL('3qeVYZURn8fxwp2M8QZI0m',$,$,$,(#6381),#6382); -#6384=IFCMATERIALPROFILE($,$,#17,#6376,$,$); -#6385=IFCCOLUMNTYPE('2jtbmWsITDpvO6itdndJTt',$,'1219.0-14.2',$,$,$,$,$,$,$); -#6386=IFCMATERIALPROFILESET($,$,(#6388),$); -#6387=IFCRELASSOCIATESMATERIAL('2BcMkeUSL0tPdOS$14luy9',$,$,$,(#6385),#6386); -#6388=IFCMATERIALPROFILE($,$,#17,#6376,$,$); -#6389=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,609.5,16.); -#6390=IFCBEAMTYPE('3PdvKIk_96N8PRsH3rd5YS',$,'1219.0-16.0',$,$,$,$,$,$,$); -#6391=IFCMATERIALPROFILESET($,$,(#6393),$); -#6392=IFCRELASSOCIATESMATERIAL('0r2eOuNdzEsR8EMR95WL4_',$,$,$,(#6390),#6391); -#6393=IFCMATERIALPROFILE($,$,#17,#6389,$,$); -#6394=IFCMEMBERTYPE('1Jt0AaOkL4X8$gJvl3RKb2',$,'1219.0-16.0',$,$,$,$,$,$,$); -#6395=IFCMATERIALPROFILESET($,$,(#6397),$); -#6396=IFCRELASSOCIATESMATERIAL('2qUW0O1bj3cBqU9TCC8pq5',$,$,$,(#6394),#6395); -#6397=IFCMATERIALPROFILE($,$,#17,#6389,$,$); -#6398=IFCCOLUMNTYPE('3Mq6i9sWX6JRzuZ3EoAHm_',$,'1219.0-16.0',$,$,$,$,$,$,$); -#6399=IFCMATERIALPROFILESET($,$,(#6401),$); -#6400=IFCRELASSOCIATESMATERIAL('0AtBrb4oD0rudJuAWDqW75',$,$,$,(#6398),#6399); -#6401=IFCMATERIALPROFILE($,$,#17,#6389,$,$); -#6402=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,609.5,20.); -#6403=IFCBEAMTYPE('3aRMIBCub6WuU4lTOlYBak',$,'1219.0-20.0',$,$,$,$,$,$,$); -#6404=IFCMATERIALPROFILESET($,$,(#6406),$); -#6405=IFCRELASSOCIATESMATERIAL('2t5u6Wt0b3KAY9Qo1o57qX',$,$,$,(#6403),#6404); -#6406=IFCMATERIALPROFILE($,$,#17,#6402,$,$); -#6407=IFCMEMBERTYPE('0IVQJr2CTAKeBIji0uv_wT',$,'1219.0-20.0',$,$,$,$,$,$,$); -#6408=IFCMATERIALPROFILESET($,$,(#6410),$); -#6409=IFCRELASSOCIATESMATERIAL('1Mx1IGqMf10Ruw2gBMOUfZ',$,$,$,(#6407),#6408); -#6410=IFCMATERIALPROFILE($,$,#17,#6402,$,$); -#6411=IFCCOLUMNTYPE('29LNNq$6f31xduwcyyCGeH',$,'1219.0-20.0',$,$,$,$,$,$,$); -#6412=IFCMATERIALPROFILESET($,$,(#6414),$); -#6413=IFCRELASSOCIATESMATERIAL('2H8UwMYnbFLejgeRd3D66C',$,$,$,(#6411),#6412); -#6414=IFCMATERIALPROFILE($,$,#17,#6402,$,$); -#6415=IFCCIRCLEHOLLOWPROFILEDEF(.AREA.,$,$,609.5,25.); -#6416=IFCBEAMTYPE('1kzisvQ3LDYQx_2RtEaEDz',$,'1219.0-25.0',$,$,$,$,$,$,$); -#6417=IFCMATERIALPROFILESET($,$,(#6419),$); -#6418=IFCRELASSOCIATESMATERIAL('34pbn1Fu1AL9AbpKNTV4zI',$,$,$,(#6416),#6417); -#6419=IFCMATERIALPROFILE($,$,#17,#6415,$,$); -#6420=IFCMEMBERTYPE('1B$2ISR9L1h9GbDNb6gk49',$,'1219.0-25.0',$,$,$,$,$,$,$); -#6421=IFCMATERIALPROFILESET($,$,(#6423),$); -#6422=IFCRELASSOCIATESMATERIAL('2cvss6bHH4$xe1d5JVYc7V',$,$,$,(#6420),#6421); -#6423=IFCMATERIALPROFILE($,$,#17,#6415,$,$); -#6424=IFCCOLUMNTYPE('3RLxnPPMb2N8QEyNYqSxi6',$,'1219.0-25.0',$,$,$,$,$,$,$); -#6425=IFCMATERIALPROFILESET($,$,(#6427),$); -#6426=IFCRELASSOCIATESMATERIAL('29AS8qrSrFieS14reCCq$2',$,$,$,(#6424),#6425); -#6427=IFCMATERIALPROFILE($,$,#17,#6415,$,$); -#6428=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,2.6,$,$); -#6429=IFCBEAMTYPE('37IPOjASnBEQxydWHl0NjK',$,'40-2.6',$,$,$,$,$,$,$); -#6430=IFCMATERIALPROFILESET($,$,(#6432),$); -#6431=IFCRELASSOCIATESMATERIAL('2hHv7o2J94dPmfd7aODGV9',$,$,$,(#6429),#6430); -#6432=IFCMATERIALPROFILE($,$,#17,#6428,$,$); -#6433=IFCMEMBERTYPE('3IXg4ALiLDsBEtKFFSR$vd',$,'40-2.6',$,$,$,$,$,$,$); -#6434=IFCMATERIALPROFILESET($,$,(#6436),$); -#6435=IFCRELASSOCIATESMATERIAL('2NKhEJ5fbEevfckNK_E_xb',$,$,$,(#6433),#6434); -#6436=IFCMATERIALPROFILE($,$,#17,#6428,$,$); -#6437=IFCCOLUMNTYPE('3gVmYxPKDCuBCL0HIW9ud6',$,'40-2.6',$,$,$,$,$,$,$); -#6438=IFCMATERIALPROFILESET($,$,(#6440),$); -#6439=IFCRELASSOCIATESMATERIAL('2Ai3Xc5ef1cxQjpeQ8XNOc',$,$,$,(#6437),#6438); -#6440=IFCMATERIALPROFILE($,$,#17,#6428,$,$); -#6441=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,3.2,$,$); -#6442=IFCBEAMTYPE('1WV4jflMrDsxAIdgcXc0Vg',$,'40-3.2',$,$,$,$,$,$,$); -#6443=IFCMATERIALPROFILESET($,$,(#6445),$); -#6444=IFCRELASSOCIATESMATERIAL('0$13KCKjLDuvEC3YjDPsRO',$,$,$,(#6442),#6443); -#6445=IFCMATERIALPROFILE($,$,#17,#6441,$,$); -#6446=IFCMEMBERTYPE('1iL_B7_xn4PhEQ73QlSNkI',$,'40-3.2',$,$,$,$,$,$,$); -#6447=IFCMATERIALPROFILESET($,$,(#6449),$); -#6448=IFCRELASSOCIATESMATERIAL('0XCdCBG6H4dh_GLQCTFXhp',$,$,$,(#6446),#6447); -#6449=IFCMATERIALPROFILE($,$,#17,#6441,$,$); -#6450=IFCCOLUMNTYPE('2gIddi8fjDvg5v02ESHMuo',$,'40-3.2',$,$,$,$,$,$,$); -#6451=IFCMATERIALPROFILESET($,$,(#6453),$); -#6452=IFCRELASSOCIATESMATERIAL('35t1I8c6r6VAZLJyWBYe74',$,$,$,(#6450),#6451); -#6453=IFCMATERIALPROFILE($,$,#17,#6441,$,$); -#6454=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,4.,$,$); -#6455=IFCBEAMTYPE('3BWd7ph9z6dQDlfFfP1qAp',$,'40-4.0',$,$,$,$,$,$,$); -#6456=IFCMATERIALPROFILESET($,$,(#6458),$); -#6457=IFCRELASSOCIATESMATERIAL('3cG_svWGX7meltHIz6OwYl',$,$,$,(#6455),#6456); -#6458=IFCMATERIALPROFILE($,$,#17,#6454,$,$); -#6459=IFCMEMBERTYPE('25IbonaiL8Gh8HE2K5wi7o',$,'40-4.0',$,$,$,$,$,$,$); -#6460=IFCMATERIALPROFILESET($,$,(#6462),$); -#6461=IFCRELASSOCIATESMATERIAL('2D9en6CtH8bxLyGPmxEVcu',$,$,$,(#6459),#6460); -#6462=IFCMATERIALPROFILE($,$,#17,#6454,$,$); -#6463=IFCCOLUMNTYPE('0ZmaRtAGn5F8OYlXzfzpGb',$,'40-4.0',$,$,$,$,$,$,$); -#6464=IFCMATERIALPROFILESET($,$,(#6466),$); -#6465=IFCRELASSOCIATESMATERIAL('2YJAB6zw51DAm9WEeRY2uW',$,$,$,(#6463),#6464); -#6466=IFCMATERIALPROFILE($,$,#17,#6454,$,$); -#6467=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,40.,5.,$,$); -#6468=IFCBEAMTYPE('0yZySV89vF$Bodh1Xw7blb',$,'40-5.0',$,$,$,$,$,$,$); -#6469=IFCMATERIALPROFILESET($,$,(#6471),$); -#6470=IFCRELASSOCIATESMATERIAL('38Ikto7n91PefsUQEevUQg',$,$,$,(#6468),#6469); -#6471=IFCMATERIALPROFILE($,$,#17,#6467,$,$); -#6472=IFCMEMBERTYPE('3IlqkIkjDFshELNeUtuXHr',$,'40-5.0',$,$,$,$,$,$,$); -#6473=IFCMATERIALPROFILESET($,$,(#6475),$); -#6474=IFCRELASSOCIATESMATERIAL('2myFPDlzv29BMrJ02F$q1E',$,$,$,(#6472),#6473); -#6475=IFCMATERIALPROFILE($,$,#17,#6467,$,$); -#6476=IFCCOLUMNTYPE('1Ur2ThMJb67x5O1lu0X17c',$,'40-5.0',$,$,$,$,$,$,$); -#6477=IFCMATERIALPROFILESET($,$,(#6479),$); -#6478=IFCRELASSOCIATESMATERIAL('2_HUE0Cqr7bfZu_hWNHa7S',$,$,$,(#6476),#6477); -#6479=IFCMATERIALPROFILE($,$,#17,#6467,$,$); -#6480=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,2.6,$,$); -#6481=IFCBEAMTYPE('1DtMp7JkD5gwLkIR9wWIIx',$,'50-2.6',$,$,$,$,$,$,$); -#6482=IFCMATERIALPROFILESET($,$,(#6484),$); -#6483=IFCRELASSOCIATESMATERIAL('04H7vo4GvArw_wsI$c5x59',$,$,$,(#6481),#6482); -#6484=IFCMATERIALPROFILE($,$,#17,#6480,$,$); -#6485=IFCMEMBERTYPE('1edyC4MO57VRReyp9_qf0F',$,'50-2.6',$,$,$,$,$,$,$); -#6486=IFCMATERIALPROFILESET($,$,(#6488),$); -#6487=IFCRELASSOCIATESMATERIAL('0eLckKSh9Fygyvl8L_OFMQ',$,$,$,(#6485),#6486); -#6488=IFCMATERIALPROFILE($,$,#17,#6480,$,$); -#6489=IFCCOLUMNTYPE('20et3xazj4oAijJAkEwE5H',$,'50-2.6',$,$,$,$,$,$,$); -#6490=IFCMATERIALPROFILESET($,$,(#6492),$); -#6491=IFCRELASSOCIATESMATERIAL('3zWs5VImbC7QoER_2H8CGe',$,$,$,(#6489),#6490); -#6492=IFCMATERIALPROFILE($,$,#17,#6480,$,$); -#6493=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,3.2,$,$); -#6494=IFCBEAMTYPE('0WCdL8jRnFgAH5aUw1kqcr',$,'50-3.2',$,$,$,$,$,$,$); -#6495=IFCMATERIALPROFILESET($,$,(#6497),$); -#6496=IFCRELASSOCIATESMATERIAL('3UxaZdlT9FWAn0zLPaytMa',$,$,$,(#6494),#6495); -#6497=IFCMATERIALPROFILE($,$,#17,#6493,$,$); -#6498=IFCMEMBERTYPE('1CSVrN9BLFh9wso5mHxXOl',$,'50-3.2',$,$,$,$,$,$,$); -#6499=IFCMATERIALPROFILESET($,$,(#6501),$); -#6500=IFCRELASSOCIATESMATERIAL('1DULy_tBX828DDxgpfsq_O',$,$,$,(#6498),#6499); -#6501=IFCMATERIALPROFILE($,$,#17,#6493,$,$); -#6502=IFCCOLUMNTYPE('2Cv9hAKETEpOSnyYGSScXd',$,'50-3.2',$,$,$,$,$,$,$); -#6503=IFCMATERIALPROFILESET($,$,(#6505),$); -#6504=IFCRELASSOCIATESMATERIAL('38mGusfav1qQEfk3ej9IW8',$,$,$,(#6502),#6503); -#6505=IFCMATERIALPROFILE($,$,#17,#6493,$,$); -#6506=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,4.,$,$); -#6507=IFCBEAMTYPE('16h4KST9TA8hfifhCGrG$0',$,'50-4.0',$,$,$,$,$,$,$); -#6508=IFCMATERIALPROFILESET($,$,(#6510),$); -#6509=IFCRELASSOCIATESMATERIAL('3mkZEY0If58gm5hH5bjEf_',$,$,$,(#6507),#6508); -#6510=IFCMATERIALPROFILE($,$,#17,#6506,$,$); -#6511=IFCMEMBERTYPE('27ePiG7Ej6VAz6xxFWPrjM',$,'50-4.0',$,$,$,$,$,$,$); -#6512=IFCMATERIALPROFILESET($,$,(#6514),$); -#6513=IFCRELASSOCIATESMATERIAL('01tshCBgT3SQzaNd52Fr$u',$,$,$,(#6511),#6512); -#6514=IFCMATERIALPROFILE($,$,#17,#6506,$,$); -#6515=IFCCOLUMNTYPE('3jJzfkSFT0Pe_627d9ZY09',$,'50-4.0',$,$,$,$,$,$,$); -#6516=IFCMATERIALPROFILESET($,$,(#6518),$); -#6517=IFCRELASSOCIATESMATERIAL('1sisBRY0z9TvFVs3WCjarz',$,$,$,(#6515),#6516); -#6518=IFCMATERIALPROFILE($,$,#17,#6506,$,$); -#6519=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,5.,$,$); -#6520=IFCBEAMTYPE('07jYHc2rb3hAtEIQsKs4dP',$,'50-5.0',$,$,$,$,$,$,$); -#6521=IFCMATERIALPROFILESET($,$,(#6523),$); -#6522=IFCRELASSOCIATESMATERIAL('3Zk7xjhsX4cey0VmDU5uSg',$,$,$,(#6520),#6521); -#6523=IFCMATERIALPROFILE($,$,#17,#6519,$,$); -#6524=IFCMEMBERTYPE('2zQNkkIFPBcOqicj1iDVB2',$,'50-5.0',$,$,$,$,$,$,$); -#6525=IFCMATERIALPROFILESET($,$,(#6527),$); -#6526=IFCRELASSOCIATESMATERIAL('0kO0MKW81El9LKqqNsCExt',$,$,$,(#6524),#6525); -#6527=IFCMATERIALPROFILE($,$,#17,#6519,$,$); -#6528=IFCCOLUMNTYPE('2C1Xj7IPfF6w5wdwQfIF4E',$,'50-5.0',$,$,$,$,$,$,$); -#6529=IFCMATERIALPROFILESET($,$,(#6531),$); -#6530=IFCRELASSOCIATESMATERIAL('2NvYPhXBj0pPUqPU7Aooto',$,$,$,(#6528),#6529); -#6531=IFCMATERIALPROFILE($,$,#17,#6519,$,$); -#6532=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,50.,6.3,$,$); -#6533=IFCBEAMTYPE('0RTcKLpIfACBPy2OL_c2BR',$,'50-6.3',$,$,$,$,$,$,$); -#6534=IFCMATERIALPROFILESET($,$,(#6536),$); -#6535=IFCRELASSOCIATESMATERIAL('2Cika0x29ByRE$lRmpQIRg',$,$,$,(#6533),#6534); -#6536=IFCMATERIALPROFILE($,$,#17,#6532,$,$); -#6537=IFCMEMBERTYPE('3pD9Y2J5D5XgDnBy8FbkL3',$,'50-6.3',$,$,$,$,$,$,$); -#6538=IFCMATERIALPROFILESET($,$,(#6540),$); -#6539=IFCRELASSOCIATESMATERIAL('2VdTMt7DHEt9mfs5TVvHsT',$,$,$,(#6537),#6538); -#6540=IFCMATERIALPROFILE($,$,#17,#6532,$,$); -#6541=IFCCOLUMNTYPE('1XhjGPj2f9COEUFNj$zu88',$,'50-6.3',$,$,$,$,$,$,$); -#6542=IFCMATERIALPROFILESET($,$,(#6544),$); -#6543=IFCRELASSOCIATESMATERIAL('2sLT$SX1179AxQuzS7OrbQ',$,$,$,(#6541),#6542); -#6544=IFCMATERIALPROFILE($,$,#17,#6532,$,$); -#6545=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,60.,2.6,$,$); -#6546=IFCBEAMTYPE('2ntddVo39AmQYEdbUiNXkt',$,'60-2.6',$,$,$,$,$,$,$); -#6547=IFCMATERIALPROFILESET($,$,(#6549),$); -#6548=IFCRELASSOCIATESMATERIAL('2zRiFYGvz4$gfQyTms1HV_',$,$,$,(#6546),#6547); -#6549=IFCMATERIALPROFILE($,$,#17,#6545,$,$); -#6550=IFCMEMBERTYPE('0NxrTqzen8MfpSf2AYd400',$,'60-2.6',$,$,$,$,$,$,$); -#6551=IFCMATERIALPROFILESET($,$,(#6553),$); -#6552=IFCRELASSOCIATESMATERIAL('16MHp0a3j0eP3uwdH9PLDH',$,$,$,(#6550),#6551); -#6553=IFCMATERIALPROFILE($,$,#17,#6545,$,$); -#6554=IFCCOLUMNTYPE('1fRY3Zf2T1xhwr72bL$Dz_',$,'60-2.6',$,$,$,$,$,$,$); -#6555=IFCMATERIALPROFILESET($,$,(#6557),$); -#6556=IFCRELASSOCIATESMATERIAL('17SV1Ax4PDQhk95g1TN9MX',$,$,$,(#6554),#6555); -#6557=IFCMATERIALPROFILE($,$,#17,#6545,$,$); -#6558=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,60.,3.2,$,$); -#6559=IFCBEAMTYPE('1MupVyC4HFTgP$EnH0bpb5',$,'60-3.2',$,$,$,$,$,$,$); -#6560=IFCMATERIALPROFILESET($,$,(#6562),$); -#6561=IFCRELASSOCIATESMATERIAL('35GuQc1KP5SBaLFUW4Q5Hg',$,$,$,(#6559),#6560); -#6562=IFCMATERIALPROFILE($,$,#17,#6558,$,$); -#6563=IFCMEMBERTYPE('2lVsdNbp99EuWwjdo4GGzX',$,'60-3.2',$,$,$,$,$,$,$); -#6564=IFCMATERIALPROFILESET($,$,(#6566),$); -#6565=IFCRELASSOCIATESMATERIAL('2uo1DEB5z7jfx9SktoFBPS',$,$,$,(#6563),#6564); -#6566=IFCMATERIALPROFILE($,$,#17,#6558,$,$); -#6567=IFCCOLUMNTYPE('1NCwDFpNPFKO0j9eFInS7$',$,'60-3.2',$,$,$,$,$,$,$); -#6568=IFCMATERIALPROFILESET($,$,(#6570),$); -#6569=IFCRELASSOCIATESMATERIAL('1VUZ2Ocw1AGhvUkxaOAyqH',$,$,$,(#6567),#6568); -#6570=IFCMATERIALPROFILE($,$,#17,#6558,$,$); -#6571=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,60.,4.,$,$); -#6572=IFCBEAMTYPE('2Qac5HboP5nfwZ2QnID1Y8',$,'60-4.0',$,$,$,$,$,$,$); -#6573=IFCMATERIALPROFILESET($,$,(#6575),$); -#6574=IFCRELASSOCIATESMATERIAL('0cF6wSSdb7jOJXFE4fVLSc',$,$,$,(#6572),#6573); -#6575=IFCMATERIALPROFILE($,$,#17,#6571,$,$); -#6576=IFCMEMBERTYPE('1LOKcE$8r4ZQH3XhNQlHVV',$,'60-4.0',$,$,$,$,$,$,$); -#6577=IFCMATERIALPROFILESET($,$,(#6579),$); -#6578=IFCRELASSOCIATESMATERIAL('2hT86nB3j8FAA0kdsRKE5t',$,$,$,(#6576),#6577); -#6579=IFCMATERIALPROFILE($,$,#17,#6571,$,$); -#6580=IFCCOLUMNTYPE('3jNoqB0q976ug8qZhXIwm4',$,'60-4.0',$,$,$,$,$,$,$); -#6581=IFCMATERIALPROFILESET($,$,(#6583),$); -#6582=IFCRELASSOCIATESMATERIAL('0THQzB__165PdvsvM3cPS4',$,$,$,(#6580),#6581); -#6583=IFCMATERIALPROFILE($,$,#17,#6571,$,$); -#6584=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,60.,5.,$,$); -#6585=IFCBEAMTYPE('38Rp2AGdv8vxmQhaKfIOP1',$,'60-5.0',$,$,$,$,$,$,$); -#6586=IFCMATERIALPROFILESET($,$,(#6588),$); -#6587=IFCRELASSOCIATESMATERIAL('29m7Lhv195DOxfRNVKnrGU',$,$,$,(#6585),#6586); -#6588=IFCMATERIALPROFILE($,$,#17,#6584,$,$); -#6589=IFCMEMBERTYPE('18E6Kc5SL1lxQ_5nMAX1vQ',$,'60-5.0',$,$,$,$,$,$,$); -#6590=IFCMATERIALPROFILESET($,$,(#6592),$); -#6591=IFCRELASSOCIATESMATERIAL('2Ek122agPBYhBQF7aR8mzF',$,$,$,(#6589),#6590); -#6592=IFCMATERIALPROFILE($,$,#17,#6584,$,$); -#6593=IFCCOLUMNTYPE('1$KBWlJibBmOG4XrVJ2DCg',$,'60-5.0',$,$,$,$,$,$,$); -#6594=IFCMATERIALPROFILESET($,$,(#6596),$); -#6595=IFCRELASSOCIATESMATERIAL('1Sxq5UZ5D8pAQO1Q6gsQ77',$,$,$,(#6593),#6594); -#6596=IFCMATERIALPROFILE($,$,#17,#6584,$,$); -#6597=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,60.,6.3,$,$); -#6598=IFCBEAMTYPE('37TJKayhTDRg4v1IguXqmB',$,'60-6.3',$,$,$,$,$,$,$); -#6599=IFCMATERIALPROFILESET($,$,(#6601),$); -#6600=IFCRELASSOCIATESMATERIAL('0Pgt7jq695q9$qs_ved2Dr',$,$,$,(#6598),#6599); -#6601=IFCMATERIALPROFILE($,$,#17,#6597,$,$); -#6602=IFCMEMBERTYPE('1iF3CXe1f5rRF04LRKXChm',$,'60-6.3',$,$,$,$,$,$,$); -#6603=IFCMATERIALPROFILESET($,$,(#6605),$); -#6604=IFCRELASSOCIATESMATERIAL('34G1KEuor6TuKIn2t1JUf7',$,$,$,(#6602),#6603); -#6605=IFCMATERIALPROFILE($,$,#17,#6597,$,$); -#6606=IFCCOLUMNTYPE('2GzKgvhMv3I8NPLgOLJiFK',$,'60-6.3',$,$,$,$,$,$,$); -#6607=IFCMATERIALPROFILESET($,$,(#6609),$); -#6608=IFCRELASSOCIATESMATERIAL('0FVUIg2TX09htkcow1TWkb',$,$,$,(#6606),#6607); -#6609=IFCMATERIALPROFILE($,$,#17,#6597,$,$); -#6610=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,60.,8.,$,$); -#6611=IFCBEAMTYPE('3ADuUvR4zEnBTbk_wkcp2_',$,'60-8.0',$,$,$,$,$,$,$); -#6612=IFCMATERIALPROFILESET($,$,(#6614),$); -#6613=IFCRELASSOCIATESMATERIAL('2ia47Emi1ClRj0mMnE6cky',$,$,$,(#6611),#6612); -#6614=IFCMATERIALPROFILE($,$,#17,#6610,$,$); -#6615=IFCMEMBERTYPE('1kpCAZ8Kn7ROSfW6T$jchN',$,'60-8.0',$,$,$,$,$,$,$); -#6616=IFCMATERIALPROFILESET($,$,(#6618),$); -#6617=IFCRELASSOCIATESMATERIAL('27ukwBWoT5KRfAPBpswTK_',$,$,$,(#6615),#6616); -#6618=IFCMATERIALPROFILE($,$,#17,#6610,$,$); -#6619=IFCCOLUMNTYPE('1TRsau7U91tfaEWrZJASHB',$,'60-8.0',$,$,$,$,$,$,$); -#6620=IFCMATERIALPROFILESET($,$,(#6622),$); -#6621=IFCRELASSOCIATESMATERIAL('07dmVB4kn3z9$ojkuwwcgL',$,$,$,(#6619),#6620); -#6622=IFCMATERIALPROFILE($,$,#17,#6610,$,$); -#6623=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,70.,70.,3.2,$,$); -#6624=IFCBEAMTYPE('2_beu1l_jB_vxp8JOI9tfR',$,'70-3.2',$,$,$,$,$,$,$); -#6625=IFCMATERIALPROFILESET($,$,(#6627),$); -#6626=IFCRELASSOCIATESMATERIAL('3Vc8QmioX1m93QlMZ4mnzH',$,$,$,(#6624),#6625); -#6627=IFCMATERIALPROFILE($,$,#17,#6623,$,$); -#6628=IFCMEMBERTYPE('3ITOmLxyTC983SBB9_C3Po',$,'70-3.2',$,$,$,$,$,$,$); -#6629=IFCMATERIALPROFILESET($,$,(#6631),$); -#6630=IFCRELASSOCIATESMATERIAL('35Rbm0F2P51w5BMU$kaNUd',$,$,$,(#6628),#6629); -#6631=IFCMATERIALPROFILE($,$,#17,#6623,$,$); -#6632=IFCCOLUMNTYPE('0wmePYih929whgMCuw0lVH',$,'70-3.2',$,$,$,$,$,$,$); -#6633=IFCMATERIALPROFILESET($,$,(#6635),$); -#6634=IFCRELASSOCIATESMATERIAL('1uIiTslqL1RAFY5sJBiMm5',$,$,$,(#6632),#6633); -#6635=IFCMATERIALPROFILE($,$,#17,#6623,$,$); -#6636=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,70.,70.,4.,$,$); -#6637=IFCBEAMTYPE('3UGJJhGPT4zv4Z0det$ku5',$,'70-4.0',$,$,$,$,$,$,$); -#6638=IFCMATERIALPROFILESET($,$,(#6640),$); -#6639=IFCRELASSOCIATESMATERIAL('2XOfK4NgD90ftHJUJam5yA',$,$,$,(#6637),#6638); -#6640=IFCMATERIALPROFILE($,$,#17,#6636,$,$); -#6641=IFCMEMBERTYPE('1xjfkpQ0j8yg7dfKYdSheK',$,'70-4.0',$,$,$,$,$,$,$); -#6642=IFCMATERIALPROFILESET($,$,(#6644),$); -#6643=IFCRELASSOCIATESMATERIAL('0hbaMNz6jAoPwWuW8lfeGP',$,$,$,(#6641),#6642); -#6644=IFCMATERIALPROFILE($,$,#17,#6636,$,$); -#6645=IFCCOLUMNTYPE('1bhu0QV5T2JfK21BYO5Us1',$,'70-4.0',$,$,$,$,$,$,$); -#6646=IFCMATERIALPROFILESET($,$,(#6648),$); -#6647=IFCRELASSOCIATESMATERIAL('3S$vG5N3H3GBaRv9uUbYDK',$,$,$,(#6645),#6646); -#6648=IFCMATERIALPROFILE($,$,#17,#6636,$,$); -#6649=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,70.,70.,5.,$,$); -#6650=IFCBEAMTYPE('2JTMbpazvArBxklSE8zLA3',$,'70-5.0',$,$,$,$,$,$,$); -#6651=IFCMATERIALPROFILESET($,$,(#6653),$); -#6652=IFCRELASSOCIATESMATERIAL('1vFgzeF5TDB95i9GHsfJm0',$,$,$,(#6650),#6651); -#6653=IFCMATERIALPROFILE($,$,#17,#6649,$,$); -#6654=IFCMEMBERTYPE('2HQ1QWI855ZQe7WEHniinx',$,'70-5.0',$,$,$,$,$,$,$); -#6655=IFCMATERIALPROFILESET($,$,(#6657),$); -#6656=IFCRELASSOCIATESMATERIAL('0fk6gsAfTEXBB86S5j8BHD',$,$,$,(#6654),#6655); -#6657=IFCMATERIALPROFILE($,$,#17,#6649,$,$); -#6658=IFCCOLUMNTYPE('3BCl5_VK5FJhR1uOhaEP3Y',$,'70-5.0',$,$,$,$,$,$,$); -#6659=IFCMATERIALPROFILESET($,$,(#6661),$); -#6660=IFCRELASSOCIATESMATERIAL('2TN2ZDeKDA3AGBVRHi4t6N',$,$,$,(#6658),#6659); -#6661=IFCMATERIALPROFILE($,$,#17,#6649,$,$); -#6662=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,70.,70.,6.3,$,$); -#6663=IFCBEAMTYPE('0uYcAuv117pwHJ7Dw1ws5r',$,'70-6.3',$,$,$,$,$,$,$); -#6664=IFCMATERIALPROFILESET($,$,(#6666),$); -#6665=IFCRELASSOCIATESMATERIAL('2s5RjMJGL7W9lLIkGz9Q_8',$,$,$,(#6663),#6664); -#6666=IFCMATERIALPROFILE($,$,#17,#6662,$,$); -#6667=IFCMEMBERTYPE('0YK3awEhbF5u9nj6liDt9o',$,'70-6.3',$,$,$,$,$,$,$); -#6668=IFCMATERIALPROFILESET($,$,(#6670),$); -#6669=IFCRELASSOCIATESMATERIAL('0G$VkyUt5A1A0qQD9IgGxo',$,$,$,(#6667),#6668); -#6670=IFCMATERIALPROFILE($,$,#17,#6662,$,$); -#6671=IFCCOLUMNTYPE('3uUb34Fr17FvWTVvbNs$Ce',$,'70-6.3',$,$,$,$,$,$,$); -#6672=IFCMATERIALPROFILESET($,$,(#6674),$); -#6673=IFCRELASSOCIATESMATERIAL('2fV5xGZT56lgjErstlB3Tj',$,$,$,(#6671),#6672); -#6674=IFCMATERIALPROFILE($,$,#17,#6662,$,$); -#6675=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,70.,70.,8.,$,$); -#6676=IFCBEAMTYPE('3jY1QGSbb6BQZQhO77NT1A',$,'70-8.0',$,$,$,$,$,$,$); -#6677=IFCMATERIALPROFILESET($,$,(#6679),$); -#6678=IFCRELASSOCIATESMATERIAL('2q$xzzIMP9yunuO_LUMIY$',$,$,$,(#6676),#6677); -#6679=IFCMATERIALPROFILE($,$,#17,#6675,$,$); -#6680=IFCMEMBERTYPE('2paSa1tF95zxhZ9uJ9i1j4',$,'70-8.0',$,$,$,$,$,$,$); -#6681=IFCMATERIALPROFILESET($,$,(#6683),$); -#6682=IFCRELASSOCIATESMATERIAL('0Sdx2qRTD1IfBYZMFGLYf_',$,$,$,(#6680),#6681); -#6683=IFCMATERIALPROFILE($,$,#17,#6675,$,$); -#6684=IFCCOLUMNTYPE('3RUkWPjs9Fvg_qsGeCRRSi',$,'70-8.0',$,$,$,$,$,$,$); -#6685=IFCMATERIALPROFILESET($,$,(#6687),$); -#6686=IFCRELASSOCIATESMATERIAL('2TJTA4ACXCSwPj2K0XPrI9',$,$,$,(#6684),#6685); -#6687=IFCMATERIALPROFILE($,$,#17,#6675,$,$); -#6688=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,80.,3.2,$,$); -#6689=IFCBEAMTYPE('2vOY4J$dPFhwyCDvS6qHCX',$,'80-3.2',$,$,$,$,$,$,$); -#6690=IFCMATERIALPROFILESET($,$,(#6692),$); -#6691=IFCRELASSOCIATESMATERIAL('1rzOelcGH94efSL8o_Tcst',$,$,$,(#6689),#6690); -#6692=IFCMATERIALPROFILE($,$,#17,#6688,$,$); -#6693=IFCMEMBERTYPE('2YDd1$Hz9FqfZNOzuomPxU',$,'80-3.2',$,$,$,$,$,$,$); -#6694=IFCMATERIALPROFILESET($,$,(#6696),$); -#6695=IFCRELASSOCIATESMATERIAL('3_aKmA6lr4TxPD1iCVmQ8e',$,$,$,(#6693),#6694); -#6696=IFCMATERIALPROFILE($,$,#17,#6688,$,$); -#6697=IFCCOLUMNTYPE('2O$JSr9ff0veaCw98gsVDs',$,'80-3.2',$,$,$,$,$,$,$); -#6698=IFCMATERIALPROFILESET($,$,(#6700),$); -#6699=IFCRELASSOCIATESMATERIAL('3nxLUNWcfAbRQeMFcL4qPE',$,$,$,(#6697),#6698); -#6700=IFCMATERIALPROFILE($,$,#17,#6688,$,$); -#6701=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,80.,4.,$,$); -#6702=IFCBEAMTYPE('0xsyYTjhb6ogEoEfCu4rTR',$,'80-4.0',$,$,$,$,$,$,$); -#6703=IFCMATERIALPROFILESET($,$,(#6705),$); -#6704=IFCRELASSOCIATESMATERIAL('34cFGvhYL9HwP8fCFY7pyO',$,$,$,(#6702),#6703); -#6705=IFCMATERIALPROFILE($,$,#17,#6701,$,$); -#6706=IFCMEMBERTYPE('0W8Noh2DT46xSGqA4eq0TW',$,'80-4.0',$,$,$,$,$,$,$); -#6707=IFCMATERIALPROFILESET($,$,(#6709),$); -#6708=IFCRELASSOCIATESMATERIAL('3ea4etMK95YfgwSrWqrVPa',$,$,$,(#6706),#6707); -#6709=IFCMATERIALPROFILE($,$,#17,#6701,$,$); -#6710=IFCCOLUMNTYPE('1yTI9VJZL1Th8jlwoO5i$V',$,'80-4.0',$,$,$,$,$,$,$); -#6711=IFCMATERIALPROFILESET($,$,(#6713),$); -#6712=IFCRELASSOCIATESMATERIAL('387E3NnPvA6xri1PIX976I',$,$,$,(#6710),#6711); -#6713=IFCMATERIALPROFILE($,$,#17,#6701,$,$); -#6714=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,80.,5.,$,$); -#6715=IFCBEAMTYPE('1bySK8YkT4sR0BHUem$hfp',$,'80-5.0',$,$,$,$,$,$,$); -#6716=IFCMATERIALPROFILESET($,$,(#6718),$); -#6717=IFCRELASSOCIATESMATERIAL('03sNzlqW93peKrYF4IBA0X',$,$,$,(#6715),#6716); -#6718=IFCMATERIALPROFILE($,$,#17,#6714,$,$); -#6719=IFCMEMBERTYPE('00$LnjoCb4wB_2oUTDbrIe',$,'80-5.0',$,$,$,$,$,$,$); -#6720=IFCMATERIALPROFILESET($,$,(#6722),$); -#6721=IFCRELASSOCIATESMATERIAL('2nuBvUVmn0X8FTsZgJxWEL',$,$,$,(#6719),#6720); -#6722=IFCMATERIALPROFILE($,$,#17,#6714,$,$); -#6723=IFCCOLUMNTYPE('3WEE1gyEbEMu6nef7gz4iy',$,'80-5.0',$,$,$,$,$,$,$); -#6724=IFCMATERIALPROFILESET($,$,(#6726),$); -#6725=IFCRELASSOCIATESMATERIAL('0RqOwukmDEfQY5nK8DjDSm',$,$,$,(#6723),#6724); -#6726=IFCMATERIALPROFILE($,$,#17,#6714,$,$); -#6727=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,80.,6.3,$,$); -#6728=IFCBEAMTYPE('30sEsugBv80xPcJRyctsfp',$,'80-6.3',$,$,$,$,$,$,$); -#6729=IFCMATERIALPROFILESET($,$,(#6731),$); -#6730=IFCRELASSOCIATESMATERIAL('3wlVVaQBD3Ivnj2tyEln$m',$,$,$,(#6728),#6729); -#6731=IFCMATERIALPROFILE($,$,#17,#6727,$,$); -#6732=IFCMEMBERTYPE('2YAWLr1A5EJf1dlbkxNiIh',$,'80-6.3',$,$,$,$,$,$,$); -#6733=IFCMATERIALPROFILESET($,$,(#6735),$); -#6734=IFCRELASSOCIATESMATERIAL('0d4qGRpTr19fgkOSfkZqT5',$,$,$,(#6732),#6733); -#6735=IFCMATERIALPROFILE($,$,#17,#6727,$,$); -#6736=IFCCOLUMNTYPE('1wYTutbKD10QZQWTpdPg2W',$,'80-6.3',$,$,$,$,$,$,$); -#6737=IFCMATERIALPROFILESET($,$,(#6739),$); -#6738=IFCRELASSOCIATESMATERIAL('3i1vO_D3HE987UAr4oVykx',$,$,$,(#6736),#6737); -#6739=IFCMATERIALPROFILE($,$,#17,#6727,$,$); -#6740=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,80.,8.,$,$); -#6741=IFCBEAMTYPE('3rkmahuMD2hfK02af2WGtf',$,'80-8.0',$,$,$,$,$,$,$); -#6742=IFCMATERIALPROFILESET($,$,(#6744),$); -#6743=IFCRELASSOCIATESMATERIAL('3pHAXLidr1EuQqhNmAOB$G',$,$,$,(#6741),#6742); -#6744=IFCMATERIALPROFILE($,$,#17,#6740,$,$); -#6745=IFCMEMBERTYPE('1pQtP7A5PCjBSc0tWWk32T',$,'80-8.0',$,$,$,$,$,$,$); -#6746=IFCMATERIALPROFILESET($,$,(#6748),$); -#6747=IFCRELASSOCIATESMATERIAL('0w1zZuhGf7vuY7Qk342S9D',$,$,$,(#6745),#6746); -#6748=IFCMATERIALPROFILE($,$,#17,#6740,$,$); -#6749=IFCCOLUMNTYPE('0xAnsjzAHDagIDVQUGvQFQ',$,'80-8.0',$,$,$,$,$,$,$); -#6750=IFCMATERIALPROFILESET($,$,(#6752),$); -#6751=IFCRELASSOCIATESMATERIAL('1Jc6DjJSTAGxqHAYTRkxrp',$,$,$,(#6749),#6750); -#6752=IFCMATERIALPROFILE($,$,#17,#6740,$,$); -#6753=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,90.,90.,4.,$,$); -#6754=IFCBEAMTYPE('15Lxb_pKnCMQrTKizg51cw',$,'90-4.0',$,$,$,$,$,$,$); -#6755=IFCMATERIALPROFILESET($,$,(#6757),$); -#6756=IFCRELASSOCIATESMATERIAL('1kuHHhEAf99RQ_zBf_LrRZ',$,$,$,(#6754),#6755); -#6757=IFCMATERIALPROFILE($,$,#17,#6753,$,$); -#6758=IFCMEMBERTYPE('0QYkCzPkb1uOQlNf1Thal5',$,'90-4.0',$,$,$,$,$,$,$); -#6759=IFCMATERIALPROFILESET($,$,(#6761),$); -#6760=IFCRELASSOCIATESMATERIAL('3Hm6GfGtLCp80QMhRwJhrN',$,$,$,(#6758),#6759); -#6761=IFCMATERIALPROFILE($,$,#17,#6753,$,$); -#6762=IFCCOLUMNTYPE('1WYb2hi0P1oh5u$$A9pZJx',$,'90-4.0',$,$,$,$,$,$,$); -#6763=IFCMATERIALPROFILESET($,$,(#6765),$); -#6764=IFCRELASSOCIATESMATERIAL('0ie_sobDn0QhBT8Hn86wg3',$,$,$,(#6762),#6763); -#6765=IFCMATERIALPROFILE($,$,#17,#6753,$,$); -#6766=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,90.,90.,5.,$,$); -#6767=IFCBEAMTYPE('2ID98$AxXB3e09Pd7WfZth',$,'90-5.0',$,$,$,$,$,$,$); -#6768=IFCMATERIALPROFILESET($,$,(#6770),$); -#6769=IFCRELASSOCIATESMATERIAL('3N$RJH9YHCg8T416n3z7Kr',$,$,$,(#6767),#6768); -#6770=IFCMATERIALPROFILE($,$,#17,#6766,$,$); -#6771=IFCMEMBERTYPE('1V_JjdvDz4jhwM8xHd3egM',$,'90-5.0',$,$,$,$,$,$,$); -#6772=IFCMATERIALPROFILESET($,$,(#6774),$); -#6773=IFCRELASSOCIATESMATERIAL('2UVrG0zQf4bwTkLDDBXIdq',$,$,$,(#6771),#6772); -#6774=IFCMATERIALPROFILE($,$,#17,#6766,$,$); -#6775=IFCCOLUMNTYPE('28eG4nf0T9jfbEWFTdDzo7',$,'90-5.0',$,$,$,$,$,$,$); -#6776=IFCMATERIALPROFILESET($,$,(#6778),$); -#6777=IFCRELASSOCIATESMATERIAL('3HEDJq_Eb4Fuba5ym6sP8$',$,$,$,(#6775),#6776); -#6778=IFCMATERIALPROFILE($,$,#17,#6766,$,$); -#6779=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,90.,90.,6.3,$,$); -#6780=IFCBEAMTYPE('3N3FapjrrBex5viw0uBv1b',$,'90-6.3',$,$,$,$,$,$,$); -#6781=IFCMATERIALPROFILESET($,$,(#6783),$); -#6782=IFCRELASSOCIATESMATERIAL('1wFQV0Ywv2hgWrMUMoNrUO',$,$,$,(#6780),#6781); -#6783=IFCMATERIALPROFILE($,$,#17,#6779,$,$); -#6784=IFCMEMBERTYPE('3AZ$_dLzzEPgQmZLkY1pxl',$,'90-6.3',$,$,$,$,$,$,$); -#6785=IFCMATERIALPROFILESET($,$,(#6787),$); -#6786=IFCRELASSOCIATESMATERIAL('0JxkbDJkX5BBL2EjCxfcZn',$,$,$,(#6784),#6785); -#6787=IFCMATERIALPROFILE($,$,#17,#6779,$,$); -#6788=IFCCOLUMNTYPE('0P3yP46wP2d8mCyVrFXtx2',$,'90-6.3',$,$,$,$,$,$,$); -#6789=IFCMATERIALPROFILESET($,$,(#6791),$); -#6790=IFCRELASSOCIATESMATERIAL('28yHA_VuvB4PKnpA0cX2gO',$,$,$,(#6788),#6789); -#6791=IFCMATERIALPROFILE($,$,#17,#6779,$,$); -#6792=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,90.,90.,8.,$,$); -#6793=IFCBEAMTYPE('3UtmHj4AH4bBaL7hPTBGo9',$,'90-8.0',$,$,$,$,$,$,$); -#6794=IFCMATERIALPROFILESET($,$,(#6796),$); -#6795=IFCRELASSOCIATESMATERIAL('3ItLSt3Nr4JQek8xf9cmpg',$,$,$,(#6793),#6794); -#6796=IFCMATERIALPROFILE($,$,#17,#6792,$,$); -#6797=IFCMEMBERTYPE('0GtklAtdjAJvA_raa_fhmf',$,'90-8.0',$,$,$,$,$,$,$); -#6798=IFCMATERIALPROFILESET($,$,(#6800),$); -#6799=IFCRELASSOCIATESMATERIAL('0EmIYWqiHBSwE5S7L4V20X',$,$,$,(#6797),#6798); -#6800=IFCMATERIALPROFILE($,$,#17,#6792,$,$); -#6801=IFCCOLUMNTYPE('39EOdxzc92YwrrnJLlHs3d',$,'90-8.0',$,$,$,$,$,$,$); -#6802=IFCMATERIALPROFILESET($,$,(#6804),$); -#6803=IFCRELASSOCIATESMATERIAL('2rUC1FBvv9HRS8qKllsP54',$,$,$,(#6801),#6802); -#6804=IFCMATERIALPROFILE($,$,#17,#6792,$,$); -#6805=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,4.,$,$); -#6806=IFCBEAMTYPE('2ayyCSOYn7AATnBp4MmjLs',$,'100-4.0',$,$,$,$,$,$,$); -#6807=IFCMATERIALPROFILESET($,$,(#6809),$); -#6808=IFCRELASSOCIATESMATERIAL('3S2fkLX550BxF28AyPO$R$',$,$,$,(#6806),#6807); -#6809=IFCMATERIALPROFILE($,$,#17,#6805,$,$); -#6810=IFCMEMBERTYPE('2crmeBkfXCjuEiA7pFpqJn',$,'100-4.0',$,$,$,$,$,$,$); -#6811=IFCMATERIALPROFILESET($,$,(#6813),$); -#6812=IFCRELASSOCIATESMATERIAL('0gIJ8yH7D9GQcKnbABZB6D',$,$,$,(#6810),#6811); -#6813=IFCMATERIALPROFILE($,$,#17,#6805,$,$); -#6814=IFCCOLUMNTYPE('2sfvHmGArDuALsocj_CcXh',$,'100-4.0',$,$,$,$,$,$,$); -#6815=IFCMATERIALPROFILESET($,$,(#6817),$); -#6816=IFCRELASSOCIATESMATERIAL('0pOEQaxwjDtBONbLIYtIpr',$,$,$,(#6814),#6815); -#6817=IFCMATERIALPROFILE($,$,#17,#6805,$,$); -#6818=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,5.,$,$); -#6819=IFCBEAMTYPE('0XSX1Ll4j2jfXCDbWljvPM',$,'100-5.0',$,$,$,$,$,$,$); -#6820=IFCMATERIALPROFILESET($,$,(#6822),$); -#6821=IFCRELASSOCIATESMATERIAL('28nLWL3Er8AxWqZaR6CFa3',$,$,$,(#6819),#6820); -#6822=IFCMATERIALPROFILE($,$,#17,#6818,$,$); -#6823=IFCMEMBERTYPE('3MwD7_Y5TDgRtHDckiDZhP',$,'100-5.0',$,$,$,$,$,$,$); -#6824=IFCMATERIALPROFILESET($,$,(#6826),$); -#6825=IFCRELASSOCIATESMATERIAL('299UQwX0zB_gWsGDBlytBs',$,$,$,(#6823),#6824); -#6826=IFCMATERIALPROFILE($,$,#17,#6818,$,$); -#6827=IFCCOLUMNTYPE('1zwJW3CrfDUQ7hcFciUAdv',$,'100-5.0',$,$,$,$,$,$,$); -#6828=IFCMATERIALPROFILESET($,$,(#6830),$); -#6829=IFCRELASSOCIATESMATERIAL('2YDopq8vX8xusZ5tutspA6',$,$,$,(#6827),#6828); -#6830=IFCMATERIALPROFILE($,$,#17,#6818,$,$); -#6831=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,6.3,$,$); -#6832=IFCBEAMTYPE('3Io16ZNar2I8sAuLF236En',$,'100-6.3',$,$,$,$,$,$,$); -#6833=IFCMATERIALPROFILESET($,$,(#6835),$); -#6834=IFCRELASSOCIATESMATERIAL('1ndJW2Cbn6rBZ$KTJ303Ys',$,$,$,(#6832),#6833); -#6835=IFCMATERIALPROFILE($,$,#17,#6831,$,$); -#6836=IFCMEMBERTYPE('1bvle5JKn45OGtruo4T9qK',$,'100-6.3',$,$,$,$,$,$,$); -#6837=IFCMATERIALPROFILESET($,$,(#6839),$); -#6838=IFCRELASSOCIATESMATERIAL('341AXTz_X9yws00ToRUlj$',$,$,$,(#6836),#6837); -#6839=IFCMATERIALPROFILE($,$,#17,#6831,$,$); -#6840=IFCCOLUMNTYPE('0BXpsMcgv8CRuUKpPH_MvU',$,'100-6.3',$,$,$,$,$,$,$); -#6841=IFCMATERIALPROFILESET($,$,(#6843),$); -#6842=IFCRELASSOCIATESMATERIAL('0k3FaXAfn1PxwQvxQfoEAp',$,$,$,(#6840),#6841); -#6843=IFCMATERIALPROFILE($,$,#17,#6831,$,$); -#6844=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,8.,$,$); -#6845=IFCBEAMTYPE('00w5O4P9DDefhTqriH5R7u',$,'100-8.0',$,$,$,$,$,$,$); -#6846=IFCMATERIALPROFILESET($,$,(#6848),$); -#6847=IFCRELASSOCIATESMATERIAL('2H8Vf8SUH3GgQLyRTb4JiW',$,$,$,(#6845),#6846); -#6848=IFCMATERIALPROFILE($,$,#17,#6844,$,$); -#6849=IFCMEMBERTYPE('3_rUTt9Yf0uQtBYXtFbImn',$,'100-8.0',$,$,$,$,$,$,$); -#6850=IFCMATERIALPROFILESET($,$,(#6852),$); -#6851=IFCRELASSOCIATESMATERIAL('3NDeZoksTC_Ow23QB5N5TR',$,$,$,(#6849),#6850); -#6852=IFCMATERIALPROFILE($,$,#17,#6844,$,$); -#6853=IFCCOLUMNTYPE('36RAavQw13YhpAmrVRIP56',$,'100-8.0',$,$,$,$,$,$,$); -#6854=IFCMATERIALPROFILESET($,$,(#6856),$); -#6855=IFCRELASSOCIATESMATERIAL('1qShPsH$9Duu7n_fRivHjD',$,$,$,(#6853),#6854); -#6856=IFCMATERIALPROFILE($,$,#17,#6844,$,$); -#6857=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,100.,10.,$,$); -#6858=IFCBEAMTYPE('3YP0ZIdp1Btww2cbwBkr6G',$,'100-10.0',$,$,$,$,$,$,$); -#6859=IFCMATERIALPROFILESET($,$,(#6861),$); -#6860=IFCRELASSOCIATESMATERIAL('1oEuGmDgP8$xDwrIVkogI_',$,$,$,(#6858),#6859); -#6861=IFCMATERIALPROFILE($,$,#17,#6857,$,$); -#6862=IFCMEMBERTYPE('2iVUTwVwT1qBNhsurszeSP',$,'100-10.0',$,$,$,$,$,$,$); -#6863=IFCMATERIALPROFILESET($,$,(#6865),$); -#6864=IFCRELASSOCIATESMATERIAL('27CKn9cQn9LhbSOgGpLpgf',$,$,$,(#6862),#6863); -#6865=IFCMATERIALPROFILE($,$,#17,#6857,$,$); -#6866=IFCCOLUMNTYPE('3VcT6bvZDDcBLBgdG9ULdC',$,'100-10.0',$,$,$,$,$,$,$); -#6867=IFCMATERIALPROFILESET($,$,(#6869),$); -#6868=IFCRELASSOCIATESMATERIAL('38IeSFEPn1JfJQKboT91SB',$,$,$,(#6866),#6867); -#6869=IFCMATERIALPROFILE($,$,#17,#6857,$,$); -#6870=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,120.,5.,$,$); -#6871=IFCBEAMTYPE('1Pf1mScsr6YAzp3bQqpGuF',$,'120-5.0',$,$,$,$,$,$,$); -#6872=IFCMATERIALPROFILESET($,$,(#6874),$); -#6873=IFCRELASSOCIATESMATERIAL('3$nyEPVf12kQHSo7ai9YLJ',$,$,$,(#6871),#6872); -#6874=IFCMATERIALPROFILE($,$,#17,#6870,$,$); -#6875=IFCMEMBERTYPE('20XxrTudP58uQucfcd0PMp',$,'120-5.0',$,$,$,$,$,$,$); -#6876=IFCMATERIALPROFILESET($,$,(#6878),$); -#6877=IFCRELASSOCIATESMATERIAL('2yGnVuhv5CABD$3wSMpe2Q',$,$,$,(#6875),#6876); -#6878=IFCMATERIALPROFILE($,$,#17,#6870,$,$); -#6879=IFCCOLUMNTYPE('1ubH8k6$57tx317hrpzt6p',$,'120-5.0',$,$,$,$,$,$,$); -#6880=IFCMATERIALPROFILESET($,$,(#6882),$); -#6881=IFCRELASSOCIATESMATERIAL('2iCQ_MBy59HuE3a$x9T78W',$,$,$,(#6879),#6880); -#6882=IFCMATERIALPROFILE($,$,#17,#6870,$,$); -#6883=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,120.,6.3,$,$); -#6884=IFCBEAMTYPE('0OLYZoD25EmB8747gZWLZR',$,'120-6.3',$,$,$,$,$,$,$); -#6885=IFCMATERIALPROFILESET($,$,(#6887),$); -#6886=IFCRELASSOCIATESMATERIAL('3eR3bofJvARv$N5DSUV4hB',$,$,$,(#6884),#6885); -#6887=IFCMATERIALPROFILE($,$,#17,#6883,$,$); -#6888=IFCMEMBERTYPE('11UHlkMb5EPhwCR82RpZ2w',$,'120-6.3',$,$,$,$,$,$,$); -#6889=IFCMATERIALPROFILESET($,$,(#6891),$); -#6890=IFCRELASSOCIATESMATERIAL('2VQ4PemrH2OhH8BZ8k$A4Q',$,$,$,(#6888),#6889); -#6891=IFCMATERIALPROFILE($,$,#17,#6883,$,$); -#6892=IFCCOLUMNTYPE('3QuFbzHMv7$BdwALubNt40',$,'120-6.3',$,$,$,$,$,$,$); -#6893=IFCMATERIALPROFILESET($,$,(#6895),$); -#6894=IFCRELASSOCIATESMATERIAL('0AmO6nBfHEbemmJ9KK00TS',$,$,$,(#6892),#6893); -#6895=IFCMATERIALPROFILE($,$,#17,#6883,$,$); -#6896=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,120.,8.,$,$); -#6897=IFCBEAMTYPE('2LkB9i8t93$v_7RwtlQnlm',$,'120-8.0',$,$,$,$,$,$,$); -#6898=IFCMATERIALPROFILESET($,$,(#6900),$); -#6899=IFCRELASSOCIATESMATERIAL('35l_Yh1Vv8yRhVduuqgbgL',$,$,$,(#6897),#6898); -#6900=IFCMATERIALPROFILE($,$,#17,#6896,$,$); -#6901=IFCMEMBERTYPE('2$AgF74gf0NQ9LxaK6M34P',$,'120-8.0',$,$,$,$,$,$,$); -#6902=IFCMATERIALPROFILESET($,$,(#6904),$); -#6903=IFCRELASSOCIATESMATERIAL('0GP$9MPIT2Igc6QH6_lyQU',$,$,$,(#6901),#6902); -#6904=IFCMATERIALPROFILE($,$,#17,#6896,$,$); -#6905=IFCCOLUMNTYPE('3yxwagazPEPRr7qeFmgKvG',$,'120-8.0',$,$,$,$,$,$,$); -#6906=IFCMATERIALPROFILESET($,$,(#6908),$); -#6907=IFCRELASSOCIATESMATERIAL('3y0NAKqUL2tw4rdzZu1j$A',$,$,$,(#6905),#6906); -#6908=IFCMATERIALPROFILE($,$,#17,#6896,$,$); -#6909=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,120.,10.,$,$); -#6910=IFCBEAMTYPE('2M9JQVCmTDIx_H0dikFF5t',$,'120-10.0',$,$,$,$,$,$,$); -#6911=IFCMATERIALPROFILESET($,$,(#6913),$); -#6912=IFCRELASSOCIATESMATERIAL('0jgrnvl49EHgtwhektO_0g',$,$,$,(#6910),#6911); -#6913=IFCMATERIALPROFILE($,$,#17,#6909,$,$); -#6914=IFCMEMBERTYPE('2NfhT7uo1FZ9Mftxy_i0_Y',$,'120-10.0',$,$,$,$,$,$,$); -#6915=IFCMATERIALPROFILESET($,$,(#6917),$); -#6916=IFCRELASSOCIATESMATERIAL('25XelJzS1AbPZe1OYNCVIb',$,$,$,(#6914),#6915); -#6917=IFCMATERIALPROFILE($,$,#17,#6909,$,$); -#6918=IFCCOLUMNTYPE('3az3_C26j6TxhnzuTShNSw',$,'120-10.0',$,$,$,$,$,$,$); -#6919=IFCMATERIALPROFILESET($,$,(#6921),$); -#6920=IFCRELASSOCIATESMATERIAL('1ODX9XSon3cApcUatJjWzY',$,$,$,(#6918),#6919); -#6921=IFCMATERIALPROFILE($,$,#17,#6909,$,$); -#6922=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,120.,12.5,$,$); -#6923=IFCBEAMTYPE('2ZVryuZ0X2eBi4IrV_Wd2L',$,'120-12.5',$,$,$,$,$,$,$); -#6924=IFCMATERIALPROFILESET($,$,(#6926),$); -#6925=IFCRELASSOCIATESMATERIAL('3ZelAKZvL11wl7ktkttdzu',$,$,$,(#6923),#6924); -#6926=IFCMATERIALPROFILE($,$,#17,#6922,$,$); -#6927=IFCMEMBERTYPE('2QLiLCaKLBhAz0FSSNkuZT',$,'120-12.5',$,$,$,$,$,$,$); -#6928=IFCMATERIALPROFILESET($,$,(#6930),$); -#6929=IFCRELASSOCIATESMATERIAL('1h4BJ3dCj4AARh51FpPI$Z',$,$,$,(#6927),#6928); -#6930=IFCMATERIALPROFILE($,$,#17,#6922,$,$); -#6931=IFCCOLUMNTYPE('1tszhRMrn3tf$BLy52rYQQ',$,'120-12.5',$,$,$,$,$,$,$); -#6932=IFCMATERIALPROFILESET($,$,(#6934),$); -#6933=IFCRELASSOCIATESMATERIAL('0z4LvCoKLBmufDR$NiXKeK',$,$,$,(#6931),#6932); -#6934=IFCMATERIALPROFILE($,$,#17,#6922,$,$); -#6935=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,140.,140.,5.,$,$); -#6936=IFCBEAMTYPE('1qZRhoJ2b4EelkRuC3nKvE',$,'140-5.0',$,$,$,$,$,$,$); -#6937=IFCMATERIALPROFILESET($,$,(#6939),$); -#6938=IFCRELASSOCIATESMATERIAL('1O5KjF00558g_yfL0E24bV',$,$,$,(#6936),#6937); -#6939=IFCMATERIALPROFILE($,$,#17,#6935,$,$); -#6940=IFCMEMBERTYPE('3h2kSuFtn109ZBQROzcWtT',$,'140-5.0',$,$,$,$,$,$,$); -#6941=IFCMATERIALPROFILESET($,$,(#6943),$); -#6942=IFCRELASSOCIATESMATERIAL('0eVN2gKU10WxdBK1sKxUl3',$,$,$,(#6940),#6941); -#6943=IFCMATERIALPROFILE($,$,#17,#6935,$,$); -#6944=IFCCOLUMNTYPE('0_jqiHwED11vC5Agg670kU',$,'140-5.0',$,$,$,$,$,$,$); -#6945=IFCMATERIALPROFILESET($,$,(#6947),$); -#6946=IFCRELASSOCIATESMATERIAL('2m3kNUGbfAkOXbJCJ0UjZJ',$,$,$,(#6944),#6945); -#6947=IFCMATERIALPROFILE($,$,#17,#6935,$,$); -#6948=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,140.,140.,6.3,$,$); -#6949=IFCBEAMTYPE('3x7Zn3L2X2qvYV6yqfaFsz',$,'140-6.3',$,$,$,$,$,$,$); -#6950=IFCMATERIALPROFILESET($,$,(#6952),$); -#6951=IFCRELASSOCIATESMATERIAL('2KMwVo14z0$holGAejab$8',$,$,$,(#6949),#6950); -#6952=IFCMATERIALPROFILE($,$,#17,#6948,$,$); -#6953=IFCMEMBERTYPE('2ehBfH4RH5hwOzTSNvosCZ',$,'140-6.3',$,$,$,$,$,$,$); -#6954=IFCMATERIALPROFILESET($,$,(#6956),$); -#6955=IFCRELASSOCIATESMATERIAL('3Kx0xHhIP5IRXj0LrS1tv6',$,$,$,(#6953),#6954); -#6956=IFCMATERIALPROFILE($,$,#17,#6948,$,$); -#6957=IFCCOLUMNTYPE('0osasrxFTCgvWWvx69arji',$,'140-6.3',$,$,$,$,$,$,$); -#6958=IFCMATERIALPROFILESET($,$,(#6960),$); -#6959=IFCRELASSOCIATESMATERIAL('0dWV68R2P8jAH2CHfYIbBx',$,$,$,(#6957),#6958); -#6960=IFCMATERIALPROFILE($,$,#17,#6948,$,$); -#6961=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,140.,140.,8.,$,$); -#6962=IFCBEAMTYPE('3R$hVQIUv9EP350CweIv2n',$,'140-8.0',$,$,$,$,$,$,$); -#6963=IFCMATERIALPROFILESET($,$,(#6965),$); -#6964=IFCRELASSOCIATESMATERIAL('32I$yU_tX1v8eFLp5276B2',$,$,$,(#6962),#6963); -#6965=IFCMATERIALPROFILE($,$,#17,#6961,$,$); -#6966=IFCMEMBERTYPE('0hi6apFSn4IOFy0ztYzhOU',$,'140-8.0',$,$,$,$,$,$,$); -#6967=IFCMATERIALPROFILESET($,$,(#6969),$); -#6968=IFCRELASSOCIATESMATERIAL('2kTBDwHgr1uhzxlmqQDRtm',$,$,$,(#6966),#6967); -#6969=IFCMATERIALPROFILE($,$,#17,#6961,$,$); -#6970=IFCCOLUMNTYPE('3GC15PHf1CivJR4QSUCTb_',$,'140-8.0',$,$,$,$,$,$,$); -#6971=IFCMATERIALPROFILESET($,$,(#6973),$); -#6972=IFCRELASSOCIATESMATERIAL('0iNhg5Ee98UfdR5jzBZzrE',$,$,$,(#6970),#6971); -#6973=IFCMATERIALPROFILE($,$,#17,#6961,$,$); -#6974=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,140.,140.,10.,$,$); -#6975=IFCBEAMTYPE('0UHGxXjrT1meJ3kokC7fvx',$,'140-10.0',$,$,$,$,$,$,$); -#6976=IFCMATERIALPROFILESET($,$,(#6978),$); -#6977=IFCRELASSOCIATESMATERIAL('1hBF450vD4aAu8n33zzy5m',$,$,$,(#6975),#6976); -#6978=IFCMATERIALPROFILE($,$,#17,#6974,$,$); -#6979=IFCMEMBERTYPE('0L0apR6an4XAU8RW2h3X1j',$,'140-10.0',$,$,$,$,$,$,$); -#6980=IFCMATERIALPROFILESET($,$,(#6982),$); -#6981=IFCRELASSOCIATESMATERIAL('1mVSneM4XBExPAZ08HgxY3',$,$,$,(#6979),#6980); -#6982=IFCMATERIALPROFILE($,$,#17,#6974,$,$); -#6983=IFCCOLUMNTYPE('0RiIjLuprCC8gLeqfiWRv$',$,'140-10.0',$,$,$,$,$,$,$); -#6984=IFCMATERIALPROFILESET($,$,(#6986),$); -#6985=IFCRELASSOCIATESMATERIAL('35IpIUB$f5Sx$8O0hYMWAt',$,$,$,(#6983),#6984); -#6986=IFCMATERIALPROFILE($,$,#17,#6974,$,$); -#6987=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,140.,140.,12.5,$,$); -#6988=IFCBEAMTYPE('08qVf1e4X5KBR2j332fMYk',$,'140-12.5',$,$,$,$,$,$,$); -#6989=IFCMATERIALPROFILESET($,$,(#6991),$); -#6990=IFCRELASSOCIATESMATERIAL('0J3SGgSkrBfRecFUMqqlOg',$,$,$,(#6988),#6989); -#6991=IFCMATERIALPROFILE($,$,#17,#6987,$,$); -#6992=IFCMEMBERTYPE('1mnOyd_1L5D8Vb6vSTp9h6',$,'140-12.5',$,$,$,$,$,$,$); -#6993=IFCMATERIALPROFILESET($,$,(#6995),$); -#6994=IFCRELASSOCIATESMATERIAL('0fx7s$nHH3WQA6eBpbXITJ',$,$,$,(#6992),#6993); -#6995=IFCMATERIALPROFILE($,$,#17,#6987,$,$); -#6996=IFCCOLUMNTYPE('04IFX7QWj2H8iUAcoD1JwM',$,'140-12.5',$,$,$,$,$,$,$); -#6997=IFCMATERIALPROFILESET($,$,(#6999),$); -#6998=IFCRELASSOCIATESMATERIAL('0h23E8mtLCwhYTeXL4tc7a',$,$,$,(#6996),#6997); -#6999=IFCMATERIALPROFILE($,$,#17,#6987,$,$); -#7000=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,5.,$,$); -#7001=IFCBEAMTYPE('1mlMLjUxvEmeaYHQ0d2v_5',$,'150-5.0',$,$,$,$,$,$,$); -#7002=IFCMATERIALPROFILESET($,$,(#7004),$); -#7003=IFCRELASSOCIATESMATERIAL('2InFLXXKD9dOWE4sl2XbDN',$,$,$,(#7001),#7002); -#7004=IFCMATERIALPROFILE($,$,#17,#7000,$,$); -#7005=IFCMEMBERTYPE('3_49FrsO1Bjg3_fL25ige0',$,'150-5.0',$,$,$,$,$,$,$); -#7006=IFCMATERIALPROFILESET($,$,(#7008),$); -#7007=IFCRELASSOCIATESMATERIAL('2TjeKNfiz4PglgMPTThi5O',$,$,$,(#7005),#7006); -#7008=IFCMATERIALPROFILE($,$,#17,#7000,$,$); -#7009=IFCCOLUMNTYPE('0EcHhXbFn9Jf35oH07T04P',$,'150-5.0',$,$,$,$,$,$,$); -#7010=IFCMATERIALPROFILESET($,$,(#7012),$); -#7011=IFCRELASSOCIATESMATERIAL('1gFkgmoSrFGRqP1vgpmtv0',$,$,$,(#7009),#7010); -#7012=IFCMATERIALPROFILE($,$,#17,#7000,$,$); -#7013=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,6.3,$,$); -#7014=IFCBEAMTYPE('1Ztb0FnLH7qBVff7E5l5S6',$,'150-6.3',$,$,$,$,$,$,$); -#7015=IFCMATERIALPROFILESET($,$,(#7017),$); -#7016=IFCRELASSOCIATESMATERIAL('0c$R4_TQ1FdR3RzBsUhCQ4',$,$,$,(#7014),#7015); -#7017=IFCMATERIALPROFILE($,$,#17,#7013,$,$); -#7018=IFCMEMBERTYPE('3Dy951jMX6VvL1jRt6PsAp',$,'150-6.3',$,$,$,$,$,$,$); -#7019=IFCMATERIALPROFILESET($,$,(#7021),$); -#7020=IFCRELASSOCIATESMATERIAL('3chU4hQ9T4Pen6Q6_q$IM4',$,$,$,(#7018),#7019); -#7021=IFCMATERIALPROFILE($,$,#17,#7013,$,$); -#7022=IFCCOLUMNTYPE('1L2j043EX65h8JsUw_OBc_',$,'150-6.3',$,$,$,$,$,$,$); -#7023=IFCMATERIALPROFILESET($,$,(#7025),$); -#7024=IFCRELASSOCIATESMATERIAL('1ECdTBfPL85RtKdSHozpCL',$,$,$,(#7022),#7023); -#7025=IFCMATERIALPROFILE($,$,#17,#7013,$,$); -#7026=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,8.,$,$); -#7027=IFCBEAMTYPE('2xpMj4YHvAThkCy5Zj9c0f',$,'150-8.0',$,$,$,$,$,$,$); -#7028=IFCMATERIALPROFILESET($,$,(#7030),$); -#7029=IFCRELASSOCIATESMATERIAL('1yga$IEBj0J970u3NMbjmN',$,$,$,(#7027),#7028); -#7030=IFCMATERIALPROFILE($,$,#17,#7026,$,$); -#7031=IFCMEMBERTYPE('0bskOKOpjDLARJE_m1XZLj',$,'150-8.0',$,$,$,$,$,$,$); -#7032=IFCMATERIALPROFILESET($,$,(#7034),$); -#7033=IFCRELASSOCIATESMATERIAL('3_$mLgR2166wu6Aj9MbpCq',$,$,$,(#7031),#7032); -#7034=IFCMATERIALPROFILE($,$,#17,#7026,$,$); -#7035=IFCCOLUMNTYPE('34JOFllJr2gvKrqECvo2tU',$,'150-8.0',$,$,$,$,$,$,$); -#7036=IFCMATERIALPROFILESET($,$,(#7038),$); -#7037=IFCRELASSOCIATESMATERIAL('2EtOILYjL0VxIsLqV2l4B7',$,$,$,(#7035),#7036); -#7038=IFCMATERIALPROFILE($,$,#17,#7026,$,$); -#7039=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,10.,$,$); -#7040=IFCBEAMTYPE('2u0YXpyyL8R9UKP7nB4qoJ',$,'150-10.0',$,$,$,$,$,$,$); -#7041=IFCMATERIALPROFILESET($,$,(#7043),$); -#7042=IFCRELASSOCIATESMATERIAL('28FB_WXMD0eAiRAjtkYRTD',$,$,$,(#7040),#7041); -#7043=IFCMATERIALPROFILE($,$,#17,#7039,$,$); -#7044=IFCMEMBERTYPE('3bA_hm4Nn39QXEjFS_rwEe',$,'150-10.0',$,$,$,$,$,$,$); -#7045=IFCMATERIALPROFILESET($,$,(#7047),$); -#7046=IFCRELASSOCIATESMATERIAL('2m6y4j$51E39XqKZSHmzhH',$,$,$,(#7044),#7045); -#7047=IFCMATERIALPROFILE($,$,#17,#7039,$,$); -#7048=IFCCOLUMNTYPE('1629EYinr47QtNqLfJypZ6',$,'150-10.0',$,$,$,$,$,$,$); -#7049=IFCMATERIALPROFILESET($,$,(#7051),$); -#7050=IFCRELASSOCIATESMATERIAL('0tNfuoxLP0JwjOn_uM32hf',$,$,$,(#7048),#7049); -#7051=IFCMATERIALPROFILE($,$,#17,#7039,$,$); -#7052=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,12.5,$,$); -#7053=IFCBEAMTYPE('1F2KUesQr8X96Dr$0N6KUM',$,'150-12.5',$,$,$,$,$,$,$); -#7054=IFCMATERIALPROFILESET($,$,(#7056),$); -#7055=IFCRELASSOCIATESMATERIAL('3eBpKjskrBlhzOmY8eeINv',$,$,$,(#7053),#7054); -#7056=IFCMATERIALPROFILE($,$,#17,#7052,$,$); -#7057=IFCMEMBERTYPE('1QwHZTZbv88O3vOY51ez1Q',$,'150-12.5',$,$,$,$,$,$,$); -#7058=IFCMATERIALPROFILESET($,$,(#7060),$); -#7059=IFCRELASSOCIATESMATERIAL('2sX7DZfs95cBTo$dIStA$o',$,$,$,(#7057),#7058); -#7060=IFCMATERIALPROFILE($,$,#17,#7052,$,$); -#7061=IFCCOLUMNTYPE('2w0dQ_A9X3XgkCyRW_pCij',$,'150-12.5',$,$,$,$,$,$,$); -#7062=IFCMATERIALPROFILESET($,$,(#7064),$); -#7063=IFCRELASSOCIATESMATERIAL('32q$OqdN57APMxujINP8vX',$,$,$,(#7061),#7062); -#7064=IFCMATERIALPROFILE($,$,#17,#7052,$,$); -#7065=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,14.2,$,$); -#7066=IFCBEAMTYPE('1JKQ02P6vFPvhM3t5aiauS',$,'150-14.2',$,$,$,$,$,$,$); -#7067=IFCMATERIALPROFILESET($,$,(#7069),$); -#7068=IFCRELASSOCIATESMATERIAL('1R3tAVOwj8cRIu3K_4jyB8',$,$,$,(#7066),#7067); -#7069=IFCMATERIALPROFILE($,$,#17,#7065,$,$); -#7070=IFCMEMBERTYPE('3SxZKVymzBQ9ONn6uHh2jx',$,'150-14.2',$,$,$,$,$,$,$); -#7071=IFCMATERIALPROFILESET($,$,(#7073),$); -#7072=IFCRELASSOCIATESMATERIAL('2qP5UYim1A38Nr1UHoX$oz',$,$,$,(#7070),#7071); -#7073=IFCMATERIALPROFILE($,$,#17,#7065,$,$); -#7074=IFCCOLUMNTYPE('1XNzS791PCi9M_d2fjigBf',$,'150-14.2',$,$,$,$,$,$,$); -#7075=IFCMATERIALPROFILESET($,$,(#7077),$); -#7076=IFCRELASSOCIATESMATERIAL('20gj0a6Br4uA92t6p161J2',$,$,$,(#7074),#7075); -#7077=IFCMATERIALPROFILE($,$,#17,#7065,$,$); -#7078=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,150.,16.,$,$); -#7079=IFCBEAMTYPE('1B_lYzxIDFFAAKGb$dOCdd',$,'150-16.0',$,$,$,$,$,$,$); -#7080=IFCMATERIALPROFILESET($,$,(#7082),$); -#7081=IFCRELASSOCIATESMATERIAL('1PG6AhUof219zQApOqOEQO',$,$,$,(#7079),#7080); -#7082=IFCMATERIALPROFILE($,$,#17,#7078,$,$); -#7083=IFCMEMBERTYPE('15ptd5yKXBauECvXEyoSyG',$,'150-16.0',$,$,$,$,$,$,$); -#7084=IFCMATERIALPROFILESET($,$,(#7086),$); -#7085=IFCRELASSOCIATESMATERIAL('2iHTgozfHDbBIvnchDVi62',$,$,$,(#7083),#7084); -#7086=IFCMATERIALPROFILE($,$,#17,#7078,$,$); -#7087=IFCCOLUMNTYPE('3NDp5FLnrCjfbhMCiN$fgF',$,'150-16.0',$,$,$,$,$,$,$); -#7088=IFCMATERIALPROFILESET($,$,(#7090),$); -#7089=IFCRELASSOCIATESMATERIAL('1W3EXnoi10HwHdMrQc0NAy',$,$,$,(#7087),#7088); -#7090=IFCMATERIALPROFILE($,$,#17,#7078,$,$); -#7091=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,5.,$,$); -#7092=IFCBEAMTYPE('1Zt6gvUg54muI4z1HGqBLy',$,'160-5.0',$,$,$,$,$,$,$); -#7093=IFCMATERIALPROFILESET($,$,(#7095),$); -#7094=IFCRELASSOCIATESMATERIAL('2aDr7HW2nBQAFbzftYkxpW',$,$,$,(#7092),#7093); -#7095=IFCMATERIALPROFILE($,$,#17,#7091,$,$); -#7096=IFCMEMBERTYPE('33toB5_Wv6M8ohWQx8elUZ',$,'160-5.0',$,$,$,$,$,$,$); -#7097=IFCMATERIALPROFILESET($,$,(#7099),$); -#7098=IFCRELASSOCIATESMATERIAL('1yXZLN7Dn88PW$FjB5rGJv',$,$,$,(#7096),#7097); -#7099=IFCMATERIALPROFILE($,$,#17,#7091,$,$); -#7100=IFCCOLUMNTYPE('13BMlrNrT9QeCSg_Cfq4s0',$,'160-5.0',$,$,$,$,$,$,$); -#7101=IFCMATERIALPROFILESET($,$,(#7103),$); -#7102=IFCRELASSOCIATESMATERIAL('2dgCPPktHECAPjhNlHdcXH',$,$,$,(#7100),#7101); -#7103=IFCMATERIALPROFILE($,$,#17,#7091,$,$); -#7104=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,6.3,$,$); -#7105=IFCBEAMTYPE('2eqU2fHoj7KuS9A8Y194hX',$,'160-6.3',$,$,$,$,$,$,$); -#7106=IFCMATERIALPROFILESET($,$,(#7108),$); -#7107=IFCRELASSOCIATESMATERIAL('0VVlXagMXF6wly1smk60RS',$,$,$,(#7105),#7106); -#7108=IFCMATERIALPROFILE($,$,#17,#7104,$,$); -#7109=IFCMEMBERTYPE('2s22SgL6b9nQQFjksuW2Sy',$,'160-6.3',$,$,$,$,$,$,$); -#7110=IFCMATERIALPROFILESET($,$,(#7112),$); -#7111=IFCRELASSOCIATESMATERIAL('0JuuiHMvjB2x4k2eOxaP4V',$,$,$,(#7109),#7110); -#7112=IFCMATERIALPROFILE($,$,#17,#7104,$,$); -#7113=IFCCOLUMNTYPE('2t_mT$3Fr5KR8ekIPLd8VJ',$,'160-6.3',$,$,$,$,$,$,$); -#7114=IFCMATERIALPROFILESET($,$,(#7116),$); -#7115=IFCRELASSOCIATESMATERIAL('3IVP$tjYTDtxmu6VVXvaha',$,$,$,(#7113),#7114); -#7116=IFCMATERIALPROFILE($,$,#17,#7104,$,$); -#7117=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,8.,$,$); -#7118=IFCBEAMTYPE('2K4LtQ_6L5wAIdQ5p9MKWw',$,'160-8.0',$,$,$,$,$,$,$); -#7119=IFCMATERIALPROFILESET($,$,(#7121),$); -#7120=IFCRELASSOCIATESMATERIAL('3YyU$FPcb2JgmdK0KmWm78',$,$,$,(#7118),#7119); -#7121=IFCMATERIALPROFILE($,$,#17,#7117,$,$); -#7122=IFCMEMBERTYPE('1vhEVOgevCjvrB6SV7uvMl',$,'160-8.0',$,$,$,$,$,$,$); -#7123=IFCMATERIALPROFILESET($,$,(#7125),$); -#7124=IFCRELASSOCIATESMATERIAL('3a$3t0Ew9A8P9HjZt9Gvb1',$,$,$,(#7122),#7123); -#7125=IFCMATERIALPROFILE($,$,#17,#7117,$,$); -#7126=IFCCOLUMNTYPE('0UrshUfH1B0v_jNM9s4uy3',$,'160-8.0',$,$,$,$,$,$,$); -#7127=IFCMATERIALPROFILESET($,$,(#7129),$); -#7128=IFCRELASSOCIATESMATERIAL('1dTr9glhDC6f6iUs010KgJ',$,$,$,(#7126),#7127); -#7129=IFCMATERIALPROFILE($,$,#17,#7117,$,$); -#7130=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,10.,$,$); -#7131=IFCBEAMTYPE('0EgFeZElX4gh1fyEULPFGp',$,'160-10.0',$,$,$,$,$,$,$); -#7132=IFCMATERIALPROFILESET($,$,(#7134),$); -#7133=IFCRELASSOCIATESMATERIAL('1_gnu4nlz4qQGus1khAkP5',$,$,$,(#7131),#7132); -#7134=IFCMATERIALPROFILE($,$,#17,#7130,$,$); -#7135=IFCMEMBERTYPE('13bvQlQYv8U9JV4qrJVGx3',$,'160-10.0',$,$,$,$,$,$,$); -#7136=IFCMATERIALPROFILESET($,$,(#7138),$); -#7137=IFCRELASSOCIATESMATERIAL('07eqf$E2TD4P4y3U6x2i_l',$,$,$,(#7135),#7136); -#7138=IFCMATERIALPROFILE($,$,#17,#7130,$,$); -#7139=IFCCOLUMNTYPE('2KtIR0GWL1LxgEeRcb2SOD',$,'160-10.0',$,$,$,$,$,$,$); -#7140=IFCMATERIALPROFILESET($,$,(#7142),$); -#7141=IFCRELASSOCIATESMATERIAL('05huF_juzCa8Gvanac45FB',$,$,$,(#7139),#7140); -#7142=IFCMATERIALPROFILE($,$,#17,#7130,$,$); -#7143=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,12.5,$,$); -#7144=IFCBEAMTYPE('3B4PrtdrP0YQbAdhRPwsTI',$,'160-12.5',$,$,$,$,$,$,$); -#7145=IFCMATERIALPROFILESET($,$,(#7147),$); -#7146=IFCRELASSOCIATESMATERIAL('37nWv60KrFoPSS2oOWACGz',$,$,$,(#7144),#7145); -#7147=IFCMATERIALPROFILE($,$,#17,#7143,$,$); -#7148=IFCMEMBERTYPE('2xb_tAAHvFaxJZyP2op6B9',$,'160-12.5',$,$,$,$,$,$,$); -#7149=IFCMATERIALPROFILESET($,$,(#7151),$); -#7150=IFCRELASSOCIATESMATERIAL('1np_q4vV94yuuBW7v1GRC_',$,$,$,(#7148),#7149); -#7151=IFCMATERIALPROFILE($,$,#17,#7143,$,$); -#7152=IFCCOLUMNTYPE('1eZV5LiET519Dq$RCYOo_q',$,'160-12.5',$,$,$,$,$,$,$); -#7153=IFCMATERIALPROFILESET($,$,(#7155),$); -#7154=IFCRELASSOCIATESMATERIAL('2v4cSwMkfAGPVfO4WA82Jx',$,$,$,(#7152),#7153); -#7155=IFCMATERIALPROFILE($,$,#17,#7143,$,$); -#7156=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,14.2,$,$); -#7157=IFCBEAMTYPE('1JfXG2epDBcOTjC03qawnd',$,'160-14.2',$,$,$,$,$,$,$); -#7158=IFCMATERIALPROFILESET($,$,(#7160),$); -#7159=IFCRELASSOCIATESMATERIAL('0sAWoetqDFP9eRTS29Wq74',$,$,$,(#7157),#7158); -#7160=IFCMATERIALPROFILE($,$,#17,#7156,$,$); -#7161=IFCMEMBERTYPE('38sojWgbz10AqODUYiwx3Z',$,'160-14.2',$,$,$,$,$,$,$); -#7162=IFCMATERIALPROFILESET($,$,(#7164),$); -#7163=IFCRELASSOCIATESMATERIAL('2sCilBbUv9EwEblySZCdav',$,$,$,(#7161),#7162); -#7164=IFCMATERIALPROFILE($,$,#17,#7156,$,$); -#7165=IFCCOLUMNTYPE('3JNY3uEZz7oP91Jn4Kgnio',$,'160-14.2',$,$,$,$,$,$,$); -#7166=IFCMATERIALPROFILESET($,$,(#7168),$); -#7167=IFCRELASSOCIATESMATERIAL('3uJfiKznTCJuNFyahwdxpS',$,$,$,(#7165),#7166); -#7168=IFCMATERIALPROFILE($,$,#17,#7156,$,$); -#7169=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,160.,160.,16.,$,$); -#7170=IFCBEAMTYPE('2P31dg2lj5rxKScYSYyGFw',$,'160-16.0',$,$,$,$,$,$,$); -#7171=IFCMATERIALPROFILESET($,$,(#7173),$); -#7172=IFCRELASSOCIATESMATERIAL('0q3zZRHuL6XvKDFZbbCFd4',$,$,$,(#7170),#7171); -#7173=IFCMATERIALPROFILE($,$,#17,#7169,$,$); -#7174=IFCMEMBERTYPE('3V3JuOowzAAeXjh8dXj8X4',$,'160-16.0',$,$,$,$,$,$,$); -#7175=IFCMATERIALPROFILESET($,$,(#7177),$); -#7176=IFCRELASSOCIATESMATERIAL('2P3gKzcJ9AhB11ND7YRTDE',$,$,$,(#7174),#7175); -#7177=IFCMATERIALPROFILE($,$,#17,#7169,$,$); -#7178=IFCCOLUMNTYPE('0A0ANzYW58V9NS8rbNnQG1',$,'160-16.0',$,$,$,$,$,$,$); -#7179=IFCMATERIALPROFILESET($,$,(#7181),$); -#7180=IFCRELASSOCIATESMATERIAL('3T891ExrD6whzL6nrc12nK',$,$,$,(#7178),#7179); -#7181=IFCMATERIALPROFILE($,$,#17,#7169,$,$); -#7182=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,5.,$,$); -#7183=IFCBEAMTYPE('15Olkcbyf95v7WriFtD2$v',$,'180-5.0',$,$,$,$,$,$,$); -#7184=IFCMATERIALPROFILESET($,$,(#7186),$); -#7185=IFCRELASSOCIATESMATERIAL('2IF8MOjfD1bglsYNpfOSFm',$,$,$,(#7183),#7184); -#7186=IFCMATERIALPROFILE($,$,#17,#7182,$,$); -#7187=IFCMEMBERTYPE('1q0osPV2z0KRjDzeQwRaRI',$,'180-5.0',$,$,$,$,$,$,$); -#7188=IFCMATERIALPROFILESET($,$,(#7190),$); -#7189=IFCRELASSOCIATESMATERIAL('07Abnj5pb4eBkIy_AF1LDW',$,$,$,(#7187),#7188); -#7190=IFCMATERIALPROFILE($,$,#17,#7182,$,$); -#7191=IFCCOLUMNTYPE('0ny299iWj5Agh_UF4ZTeV5',$,'180-5.0',$,$,$,$,$,$,$); -#7192=IFCMATERIALPROFILESET($,$,(#7194),$); -#7193=IFCRELASSOCIATESMATERIAL('2_y4V_qsD2QP72tOLkg5Tt',$,$,$,(#7191),#7192); -#7194=IFCMATERIALPROFILE($,$,#17,#7182,$,$); -#7195=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,6.3,$,$); -#7196=IFCBEAMTYPE('2r2kGo68vAxhWq3nrVrXu4',$,'180-6.3',$,$,$,$,$,$,$); -#7197=IFCMATERIALPROFILESET($,$,(#7199),$); -#7198=IFCRELASSOCIATESMATERIAL('2dliv4v3LFM8uMVhx564aL',$,$,$,(#7196),#7197); -#7199=IFCMATERIALPROFILE($,$,#17,#7195,$,$); -#7200=IFCMEMBERTYPE('2lLVQ_thj75Q_RWn_956d2',$,'180-6.3',$,$,$,$,$,$,$); -#7201=IFCMATERIALPROFILESET($,$,(#7203),$); -#7202=IFCRELASSOCIATESMATERIAL('01tuqQua12P9xxUa6q6qiO',$,$,$,(#7200),#7201); -#7203=IFCMATERIALPROFILE($,$,#17,#7195,$,$); -#7204=IFCCOLUMNTYPE('1WBnTBXef4Vw8lXKflhFTk',$,'180-6.3',$,$,$,$,$,$,$); -#7205=IFCMATERIALPROFILESET($,$,(#7207),$); -#7206=IFCRELASSOCIATESMATERIAL('3R1_OSJ51DwxhiYOxfAAD4',$,$,$,(#7204),#7205); -#7207=IFCMATERIALPROFILE($,$,#17,#7195,$,$); -#7208=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,8.,$,$); -#7209=IFCBEAMTYPE('0gVHowXnL1Be6NE3T4iKYw',$,'180-8.0',$,$,$,$,$,$,$); -#7210=IFCMATERIALPROFILESET($,$,(#7212),$); -#7211=IFCRELASSOCIATESMATERIAL('0mjZUBF3nFfe_s0b9tMUnY',$,$,$,(#7209),#7210); -#7212=IFCMATERIALPROFILE($,$,#17,#7208,$,$); -#7213=IFCMEMBERTYPE('1URGzZMZz5rw8gLIB0PPAj',$,'180-8.0',$,$,$,$,$,$,$); -#7214=IFCMATERIALPROFILESET($,$,(#7216),$); -#7215=IFCRELASSOCIATESMATERIAL('0rbL8cA4n5he6taTMQVuci',$,$,$,(#7213),#7214); -#7216=IFCMATERIALPROFILE($,$,#17,#7208,$,$); -#7217=IFCCOLUMNTYPE('21ZMxPDBfAmuygcHK4tmJq',$,'180-8.0',$,$,$,$,$,$,$); -#7218=IFCMATERIALPROFILESET($,$,(#7220),$); -#7219=IFCRELASSOCIATESMATERIAL('35toZoPKz49QjONdJyjTYl',$,$,$,(#7217),#7218); -#7220=IFCMATERIALPROFILE($,$,#17,#7208,$,$); -#7221=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,10.,$,$); -#7222=IFCBEAMTYPE('01aU2JJrDFEe8YDhOxACSK',$,'180-10.0',$,$,$,$,$,$,$); -#7223=IFCMATERIALPROFILESET($,$,(#7225),$); -#7224=IFCRELASSOCIATESMATERIAL('1h$eTGv5T6KAo7IaJgW3UV',$,$,$,(#7222),#7223); -#7225=IFCMATERIALPROFILE($,$,#17,#7221,$,$); -#7226=IFCMEMBERTYPE('0lbMw1vqTF7RWYoWgbcV_t',$,'180-10.0',$,$,$,$,$,$,$); -#7227=IFCMATERIALPROFILESET($,$,(#7229),$); -#7228=IFCRELASSOCIATESMATERIAL('2U$9lY9DLCEPPIow1RaS62',$,$,$,(#7226),#7227); -#7229=IFCMATERIALPROFILE($,$,#17,#7221,$,$); -#7230=IFCCOLUMNTYPE('0svbhJzWn9CfZO8W95k2b5',$,'180-10.0',$,$,$,$,$,$,$); -#7231=IFCMATERIALPROFILESET($,$,(#7233),$); -#7232=IFCRELASSOCIATESMATERIAL('1skyU2cR187RM4A2EryESJ',$,$,$,(#7230),#7231); -#7233=IFCMATERIALPROFILE($,$,#17,#7221,$,$); -#7234=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,12.5,$,$); -#7235=IFCBEAMTYPE('2Uk30HWxTBmQ6zvyDTpkyV',$,'180-12.5',$,$,$,$,$,$,$); -#7236=IFCMATERIALPROFILESET($,$,(#7238),$); -#7237=IFCRELASSOCIATESMATERIAL('34p3gxjXbFveLTv2NF2EgX',$,$,$,(#7235),#7236); -#7238=IFCMATERIALPROFILE($,$,#17,#7234,$,$); -#7239=IFCMEMBERTYPE('0vVQtAb611HetEyyy8gSkX',$,'180-12.5',$,$,$,$,$,$,$); -#7240=IFCMATERIALPROFILESET($,$,(#7242),$); -#7241=IFCRELASSOCIATESMATERIAL('0mFzrHbon3xBHvkvAwQ29B',$,$,$,(#7239),#7240); -#7242=IFCMATERIALPROFILE($,$,#17,#7234,$,$); -#7243=IFCCOLUMNTYPE('30IU4kM4z7O8GjDTfK7YEv',$,'180-12.5',$,$,$,$,$,$,$); -#7244=IFCMATERIALPROFILESET($,$,(#7246),$); -#7245=IFCRELASSOCIATESMATERIAL('08V6z960HD0PgLIuMV94NS',$,$,$,(#7243),#7244); -#7246=IFCMATERIALPROFILE($,$,#17,#7234,$,$); -#7247=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,14.2,$,$); -#7248=IFCBEAMTYPE('2$qXWPKHn6LwcI96p7aZ$N',$,'180-14.2',$,$,$,$,$,$,$); -#7249=IFCMATERIALPROFILESET($,$,(#7251),$); -#7250=IFCRELASSOCIATESMATERIAL('3wv3g5c1jDtf9xpfGNhe1i',$,$,$,(#7248),#7249); -#7251=IFCMATERIALPROFILE($,$,#17,#7247,$,$); -#7252=IFCMEMBERTYPE('3PfuOALWTBzQiJ8Q2Z6ccH',$,'180-14.2',$,$,$,$,$,$,$); -#7253=IFCMATERIALPROFILESET($,$,(#7255),$); -#7254=IFCRELASSOCIATESMATERIAL('1qqUIxl$10dAhYv$$guhod',$,$,$,(#7252),#7253); -#7255=IFCMATERIALPROFILE($,$,#17,#7247,$,$); -#7256=IFCCOLUMNTYPE('0_Sv3meyfDRPTW1UlQyZd8',$,'180-14.2',$,$,$,$,$,$,$); -#7257=IFCMATERIALPROFILESET($,$,(#7259),$); -#7258=IFCRELASSOCIATESMATERIAL('3Isf5br4L46OlLBH6pcCvH',$,$,$,(#7256),#7257); -#7259=IFCMATERIALPROFILE($,$,#17,#7247,$,$); -#7260=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,180.,16.,$,$); -#7261=IFCBEAMTYPE('2GISJpu8b0neJ6VGT8H$mG',$,'180-16.0',$,$,$,$,$,$,$); -#7262=IFCMATERIALPROFILESET($,$,(#7264),$); -#7263=IFCRELASSOCIATESMATERIAL('2Dha6$qAzA8uXGu9bNBMch',$,$,$,(#7261),#7262); -#7264=IFCMATERIALPROFILE($,$,#17,#7260,$,$); -#7265=IFCMEMBERTYPE('18UVvULZP4LPXU1pOd4Qaa',$,'180-16.0',$,$,$,$,$,$,$); -#7266=IFCMATERIALPROFILESET($,$,(#7268),$); -#7267=IFCRELASSOCIATESMATERIAL('0Xn6o80MPDs9H4kqqCkoDC',$,$,$,(#7265),#7266); -#7268=IFCMATERIALPROFILE($,$,#17,#7260,$,$); -#7269=IFCCOLUMNTYPE('0vVBCGBFP71PnEPKwrrK93',$,'180-16.0',$,$,$,$,$,$,$); -#7270=IFCMATERIALPROFILESET($,$,(#7272),$); -#7271=IFCRELASSOCIATESMATERIAL('1xMXKEQQf1ahd6DeCmrgzA',$,$,$,(#7269),#7270); -#7272=IFCMATERIALPROFILE($,$,#17,#7260,$,$); -#7273=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,5.,$,$); -#7274=IFCBEAMTYPE('2pF$_Zj1LAN8DeIp5dHdfF',$,'200-5.0',$,$,$,$,$,$,$); -#7275=IFCMATERIALPROFILESET($,$,(#7277),$); -#7276=IFCRELASSOCIATESMATERIAL('3LsdaJVsL39vPhsmCmWMjy',$,$,$,(#7274),#7275); -#7277=IFCMATERIALPROFILE($,$,#17,#7273,$,$); -#7278=IFCMEMBERTYPE('0PMzXEvbD15fh$MxPAbwPD',$,'200-5.0',$,$,$,$,$,$,$); -#7279=IFCMATERIALPROFILESET($,$,(#7281),$); -#7280=IFCRELASSOCIATESMATERIAL('3JHp1kewbAzwpuC1wN1JMR',$,$,$,(#7278),#7279); -#7281=IFCMATERIALPROFILE($,$,#17,#7273,$,$); -#7282=IFCCOLUMNTYPE('0$GZGUZJT4bPqK7V5qeM_l',$,'200-5.0',$,$,$,$,$,$,$); -#7283=IFCMATERIALPROFILESET($,$,(#7285),$); -#7284=IFCRELASSOCIATESMATERIAL('1onsZGLcn7jR_hFRQ4wcBv',$,$,$,(#7282),#7283); -#7285=IFCMATERIALPROFILE($,$,#17,#7273,$,$); -#7286=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,6.3,$,$); -#7287=IFCBEAMTYPE('3nco7EEMLBhOdVSYdJKZvX',$,'200-6.3',$,$,$,$,$,$,$); -#7288=IFCMATERIALPROFILESET($,$,(#7290),$); -#7289=IFCRELASSOCIATESMATERIAL('2HhZ66RcLFDw$CSRcnx72a',$,$,$,(#7287),#7288); -#7290=IFCMATERIALPROFILE($,$,#17,#7286,$,$); -#7291=IFCMEMBERTYPE('0hBbaIOe5A68jVUEpNb15Z',$,'200-6.3',$,$,$,$,$,$,$); -#7292=IFCMATERIALPROFILESET($,$,(#7294),$); -#7293=IFCRELASSOCIATESMATERIAL('0_XU2Y4i1238puRhqxJkKe',$,$,$,(#7291),#7292); -#7294=IFCMATERIALPROFILE($,$,#17,#7286,$,$); -#7295=IFCCOLUMNTYPE('3cXorFRG1CaQdA16esca0r',$,'200-6.3',$,$,$,$,$,$,$); -#7296=IFCMATERIALPROFILESET($,$,(#7298),$); -#7297=IFCRELASSOCIATESMATERIAL('2AJLBnq9b3bhnvhEV64X5K',$,$,$,(#7295),#7296); -#7298=IFCMATERIALPROFILE($,$,#17,#7286,$,$); -#7299=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,8.,$,$); -#7300=IFCBEAMTYPE('19dUnJO6X5nefq9Aq0ho_0',$,'200-8.0',$,$,$,$,$,$,$); -#7301=IFCMATERIALPROFILESET($,$,(#7303),$); -#7302=IFCRELASSOCIATESMATERIAL('3NQcSzx$PFQRw1H840o6PQ',$,$,$,(#7300),#7301); -#7303=IFCMATERIALPROFILE($,$,#17,#7299,$,$); -#7304=IFCMEMBERTYPE('3L9D1lsUn6Tugs3slexYi3',$,'200-8.0',$,$,$,$,$,$,$); -#7305=IFCMATERIALPROFILESET($,$,(#7307),$); -#7306=IFCRELASSOCIATESMATERIAL('2TaWnhP7X6nwrC_j3Y_cxG',$,$,$,(#7304),#7305); -#7307=IFCMATERIALPROFILE($,$,#17,#7299,$,$); -#7308=IFCCOLUMNTYPE('0F2cc0IEDDu8nsm_tqO5C0',$,'200-8.0',$,$,$,$,$,$,$); -#7309=IFCMATERIALPROFILESET($,$,(#7311),$); -#7310=IFCRELASSOCIATESMATERIAL('3IFPNQIbf3RQUarFIqmcDq',$,$,$,(#7308),#7309); -#7311=IFCMATERIALPROFILE($,$,#17,#7299,$,$); -#7312=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,10.,$,$); -#7313=IFCBEAMTYPE('3s58Nws295LfzsmXwLCv2k',$,'200-10.0',$,$,$,$,$,$,$); -#7314=IFCMATERIALPROFILESET($,$,(#7316),$); -#7315=IFCRELASSOCIATESMATERIAL('07l0lcMxP5JuaBDHkEJLRf',$,$,$,(#7313),#7314); -#7316=IFCMATERIALPROFILE($,$,#17,#7312,$,$); -#7317=IFCMEMBERTYPE('058HN8IMP7P9wgdxI3moUN',$,'200-10.0',$,$,$,$,$,$,$); -#7318=IFCMATERIALPROFILESET($,$,(#7320),$); -#7319=IFCRELASSOCIATESMATERIAL('10sIL6Atv6ZOkLl4JWf52K',$,$,$,(#7317),#7318); -#7320=IFCMATERIALPROFILE($,$,#17,#7312,$,$); -#7321=IFCCOLUMNTYPE('3CMW7dMi1DVPB$p2sBjSh1',$,'200-10.0',$,$,$,$,$,$,$); -#7322=IFCMATERIALPROFILESET($,$,(#7324),$); -#7323=IFCRELASSOCIATESMATERIAL('1xLr597C922BdcAGRXqwAS',$,$,$,(#7321),#7322); -#7324=IFCMATERIALPROFILE($,$,#17,#7312,$,$); -#7325=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,12.5,$,$); -#7326=IFCBEAMTYPE('3LcbxyKg56nOMsxTkg$SK_',$,'200-12.5',$,$,$,$,$,$,$); -#7327=IFCMATERIALPROFILESET($,$,(#7329),$); -#7328=IFCRELASSOCIATESMATERIAL('19H$ZU8jnDsujBaD3Z7Xiz',$,$,$,(#7326),#7327); -#7329=IFCMATERIALPROFILE($,$,#17,#7325,$,$); -#7330=IFCMEMBERTYPE('1Qo7euwZb16ucuDVxsmlgH',$,'200-12.5',$,$,$,$,$,$,$); -#7331=IFCMATERIALPROFILESET($,$,(#7333),$); -#7332=IFCRELASSOCIATESMATERIAL('0xOq00ShD4vAGBmwluXUxU',$,$,$,(#7330),#7331); -#7333=IFCMATERIALPROFILE($,$,#17,#7325,$,$); -#7334=IFCCOLUMNTYPE('3GmMs38fL3FQKaTfIkVc9E',$,'200-12.5',$,$,$,$,$,$,$); -#7335=IFCMATERIALPROFILESET($,$,(#7337),$); -#7336=IFCRELASSOCIATESMATERIAL('1rxCeOyb5BKOcncBn38zVv',$,$,$,(#7334),#7335); -#7337=IFCMATERIALPROFILE($,$,#17,#7325,$,$); -#7338=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,14.2,$,$); -#7339=IFCBEAMTYPE('2kdKgM9QH4sxlMrZnYgrw6',$,'200-14.2',$,$,$,$,$,$,$); -#7340=IFCMATERIALPROFILESET($,$,(#7342),$); -#7341=IFCRELASSOCIATESMATERIAL('3gdVdOGeDF2x0GCfIqh1ga',$,$,$,(#7339),#7340); -#7342=IFCMATERIALPROFILE($,$,#17,#7338,$,$); -#7343=IFCMEMBERTYPE('0$QDD3sNP2mR_kAAyD$4_X',$,'200-14.2',$,$,$,$,$,$,$); -#7344=IFCMATERIALPROFILESET($,$,(#7346),$); -#7345=IFCRELASSOCIATESMATERIAL('20l_FpBqLD6vzDlB8_P6kr',$,$,$,(#7343),#7344); -#7346=IFCMATERIALPROFILE($,$,#17,#7338,$,$); -#7347=IFCCOLUMNTYPE('2BqGiw68zDmOAQHsTo2vBu',$,'200-14.2',$,$,$,$,$,$,$); -#7348=IFCMATERIALPROFILESET($,$,(#7350),$); -#7349=IFCRELASSOCIATESMATERIAL('1L0z9s1rn6Owz9PK1boySa',$,$,$,(#7347),#7348); -#7350=IFCMATERIALPROFILE($,$,#17,#7338,$,$); -#7351=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,200.,16.,$,$); -#7352=IFCBEAMTYPE('3sytd71vn4gOHORUwsYWa0',$,'200-16.0',$,$,$,$,$,$,$); -#7353=IFCMATERIALPROFILESET($,$,(#7355),$); -#7354=IFCRELASSOCIATESMATERIAL('3beYglLOn3aw4qEoJ0Mdhb',$,$,$,(#7352),#7353); -#7355=IFCMATERIALPROFILE($,$,#17,#7351,$,$); -#7356=IFCMEMBERTYPE('0V3XjA6ZD9QfjzPl_9Ajfs',$,'200-16.0',$,$,$,$,$,$,$); -#7357=IFCMATERIALPROFILESET($,$,(#7359),$); -#7358=IFCRELASSOCIATESMATERIAL('3XPVjIHFz0fBo2d97ueGmU',$,$,$,(#7356),#7357); -#7359=IFCMATERIALPROFILE($,$,#17,#7351,$,$); -#7360=IFCCOLUMNTYPE('08Ti82Er9E_xQHR4tJxF0s',$,'200-16.0',$,$,$,$,$,$,$); -#7361=IFCMATERIALPROFILESET($,$,(#7363),$); -#7362=IFCRELASSOCIATESMATERIAL('0pcPAAGQb8_uJWewQ8yhMN',$,$,$,(#7360),#7361); -#7363=IFCMATERIALPROFILE($,$,#17,#7351,$,$); -#7364=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,220.,220.,6.3,$,$); -#7365=IFCBEAMTYPE('1_E1bfKpTAMhBTkFnSwI$e',$,'220-6.3',$,$,$,$,$,$,$); -#7366=IFCMATERIALPROFILESET($,$,(#7368),$); -#7367=IFCRELASSOCIATESMATERIAL('0EUPnod$b7Aw4_bZqmLjhR',$,$,$,(#7365),#7366); -#7368=IFCMATERIALPROFILE($,$,#17,#7364,$,$); -#7369=IFCMEMBERTYPE('29CcMWf5D4ch2tTbck5v$n',$,'220-6.3',$,$,$,$,$,$,$); -#7370=IFCMATERIALPROFILESET($,$,(#7372),$); -#7371=IFCRELASSOCIATESMATERIAL('0aaC_zCWP5FhROPEiqXCyR',$,$,$,(#7369),#7370); -#7372=IFCMATERIALPROFILE($,$,#17,#7364,$,$); -#7373=IFCCOLUMNTYPE('3n_GVP5W5FMuBNxk9x1vT7',$,'220-6.3',$,$,$,$,$,$,$); -#7374=IFCMATERIALPROFILESET($,$,(#7376),$); -#7375=IFCRELASSOCIATESMATERIAL('3qZif2BszDzPR2mxdfum6$',$,$,$,(#7373),#7374); -#7376=IFCMATERIALPROFILE($,$,#17,#7364,$,$); -#7377=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,220.,220.,8.,$,$); -#7378=IFCBEAMTYPE('2rpS5VJ7r2h9xatctZgwe0',$,'220-8.0',$,$,$,$,$,$,$); -#7379=IFCMATERIALPROFILESET($,$,(#7381),$); -#7380=IFCRELASSOCIATESMATERIAL('2yOMJlNIv51wK1wEUwcbqU',$,$,$,(#7378),#7379); -#7381=IFCMATERIALPROFILE($,$,#17,#7377,$,$); -#7382=IFCMEMBERTYPE('2HW_bL9fvDrf5s3i7Td2vx',$,'220-8.0',$,$,$,$,$,$,$); -#7383=IFCMATERIALPROFILESET($,$,(#7385),$); -#7384=IFCRELASSOCIATESMATERIAL('1q9xDC0tvFWOAiedhwlPbI',$,$,$,(#7382),#7383); -#7385=IFCMATERIALPROFILE($,$,#17,#7377,$,$); -#7386=IFCCOLUMNTYPE('0v1vTY2dr61gdDXGQrQC5n',$,'220-8.0',$,$,$,$,$,$,$); -#7387=IFCMATERIALPROFILESET($,$,(#7389),$); -#7388=IFCRELASSOCIATESMATERIAL('3BhHkV3754QA6pJw7CaCTs',$,$,$,(#7386),#7387); -#7389=IFCMATERIALPROFILE($,$,#17,#7377,$,$); -#7390=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,220.,220.,10.,$,$); -#7391=IFCBEAMTYPE('1XZOq_H8r58ubTMI9oZOZz',$,'220-10.0',$,$,$,$,$,$,$); -#7392=IFCMATERIALPROFILESET($,$,(#7394),$); -#7393=IFCRELASSOCIATESMATERIAL('2WbF0YTYH1he82zGdIoCw3',$,$,$,(#7391),#7392); -#7394=IFCMATERIALPROFILE($,$,#17,#7390,$,$); -#7395=IFCMEMBERTYPE('2rAMykGCP1T88JM$Kfjd_C',$,'220-10.0',$,$,$,$,$,$,$); -#7396=IFCMATERIALPROFILESET($,$,(#7398),$); -#7397=IFCRELASSOCIATESMATERIAL('3t62TL9Lj2MQiSbtsGx0bW',$,$,$,(#7395),#7396); -#7398=IFCMATERIALPROFILE($,$,#17,#7390,$,$); -#7399=IFCCOLUMNTYPE('3BgYio5iz46BML87thqMsr',$,'220-10.0',$,$,$,$,$,$,$); -#7400=IFCMATERIALPROFILESET($,$,(#7402),$); -#7401=IFCRELASSOCIATESMATERIAL('1Jp0Ju3dD5veu7VHHbVwIE',$,$,$,(#7399),#7400); -#7402=IFCMATERIALPROFILE($,$,#17,#7390,$,$); -#7403=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,220.,220.,12.5,$,$); -#7404=IFCBEAMTYPE('2ouvHxBanAwgDKRYfUvKyU',$,'220-12.5',$,$,$,$,$,$,$); -#7405=IFCMATERIALPROFILESET($,$,(#7407),$); -#7406=IFCRELASSOCIATESMATERIAL('1NkduwCIbC09mRKCC5wTxT',$,$,$,(#7404),#7405); -#7407=IFCMATERIALPROFILE($,$,#17,#7403,$,$); -#7408=IFCMEMBERTYPE('3x9yu0I7jCuQJjBZDn59oG',$,'220-12.5',$,$,$,$,$,$,$); -#7409=IFCMATERIALPROFILESET($,$,(#7411),$); -#7410=IFCRELASSOCIATESMATERIAL('08CM4B0Jv1mPGYgYCldNL0',$,$,$,(#7408),#7409); -#7411=IFCMATERIALPROFILE($,$,#17,#7403,$,$); -#7412=IFCCOLUMNTYPE('2iH90U9Lr7ZOpN4eGQkO1e',$,'220-12.5',$,$,$,$,$,$,$); -#7413=IFCMATERIALPROFILESET($,$,(#7415),$); -#7414=IFCRELASSOCIATESMATERIAL('0oEVxt4S12a9uuAm$6u00v',$,$,$,(#7412),#7413); -#7415=IFCMATERIALPROFILE($,$,#17,#7403,$,$); -#7416=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,220.,220.,14.2,$,$); -#7417=IFCBEAMTYPE('3aHZBMezT9D8dFNRhm8$Sm',$,'220-14.2',$,$,$,$,$,$,$); -#7418=IFCMATERIALPROFILESET($,$,(#7420),$); -#7419=IFCRELASSOCIATESMATERIAL('24BApfPOr4Wu1TLEq4yDe2',$,$,$,(#7417),#7418); -#7420=IFCMATERIALPROFILE($,$,#17,#7416,$,$); -#7421=IFCMEMBERTYPE('1jF2mFfoP94A8uvDyfH_4_',$,'220-14.2',$,$,$,$,$,$,$); -#7422=IFCMATERIALPROFILESET($,$,(#7424),$); -#7423=IFCRELASSOCIATESMATERIAL('2z18C0bpv8SPvylHJtZ0gb',$,$,$,(#7421),#7422); -#7424=IFCMATERIALPROFILE($,$,#17,#7416,$,$); -#7425=IFCCOLUMNTYPE('0XCBrS6L16muKkpHG9UT9Q',$,'220-14.2',$,$,$,$,$,$,$); -#7426=IFCMATERIALPROFILESET($,$,(#7428),$); -#7427=IFCRELASSOCIATESMATERIAL('2D3$JSXTv7vO1sDvjAp_dN',$,$,$,(#7425),#7426); -#7428=IFCMATERIALPROFILE($,$,#17,#7416,$,$); -#7429=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,220.,220.,16.,$,$); -#7430=IFCBEAMTYPE('3sC8mlkw50kv5M48vNu8NU',$,'220-16.0',$,$,$,$,$,$,$); -#7431=IFCMATERIALPROFILESET($,$,(#7433),$); -#7432=IFCRELASSOCIATESMATERIAL('0Qnhh4uo5AJB0_EE_kqYNd',$,$,$,(#7430),#7431); -#7433=IFCMATERIALPROFILE($,$,#17,#7429,$,$); -#7434=IFCMEMBERTYPE('3ZcOCZnVb7cvnNIo9bkQRz',$,'220-16.0',$,$,$,$,$,$,$); -#7435=IFCMATERIALPROFILESET($,$,(#7437),$); -#7436=IFCRELASSOCIATESMATERIAL('0dfY9rtDv5jhwLYYcK2xft',$,$,$,(#7434),#7435); -#7437=IFCMATERIALPROFILE($,$,#17,#7429,$,$); -#7438=IFCCOLUMNTYPE('2f9f6oM6HCJxsXh3DOA6V0',$,'220-16.0',$,$,$,$,$,$,$); -#7439=IFCMATERIALPROFILESET($,$,(#7441),$); -#7440=IFCRELASSOCIATESMATERIAL('2x0gIDMOP7RQM8sUmc$UoA',$,$,$,(#7438),#7439); -#7441=IFCMATERIALPROFILE($,$,#17,#7429,$,$); -#7442=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,6.3,$,$); -#7443=IFCBEAMTYPE('2yO9W3Lvf6RhsoIR1Gtk8n',$,'250-6.3',$,$,$,$,$,$,$); -#7444=IFCMATERIALPROFILESET($,$,(#7446),$); -#7445=IFCRELASSOCIATESMATERIAL('3zvlsJndb8bev8TbGUNEVI',$,$,$,(#7443),#7444); -#7446=IFCMATERIALPROFILE($,$,#17,#7442,$,$); -#7447=IFCMEMBERTYPE('1ptk7zlYj4uRiIO1m$4Cx7',$,'250-6.3',$,$,$,$,$,$,$); -#7448=IFCMATERIALPROFILESET($,$,(#7450),$); -#7449=IFCRELASSOCIATESMATERIAL('1eI6mT$RTFYhAsVcnAgjpi',$,$,$,(#7447),#7448); -#7450=IFCMATERIALPROFILE($,$,#17,#7442,$,$); -#7451=IFCCOLUMNTYPE('1rMbCS8RTDURcLuVFZwyuZ',$,'250-6.3',$,$,$,$,$,$,$); -#7452=IFCMATERIALPROFILESET($,$,(#7454),$); -#7453=IFCRELASSOCIATESMATERIAL('0Mkttp_7fDSBDFzIejRuPc',$,$,$,(#7451),#7452); -#7454=IFCMATERIALPROFILE($,$,#17,#7442,$,$); -#7455=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,8.,$,$); -#7456=IFCBEAMTYPE('1HU4IGoo9Dlf18J$732w16',$,'250-8.0',$,$,$,$,$,$,$); -#7457=IFCMATERIALPROFILESET($,$,(#7459),$); -#7458=IFCRELASSOCIATESMATERIAL('3z0EHoRzHFQQsHPQwtAq6u',$,$,$,(#7456),#7457); -#7459=IFCMATERIALPROFILE($,$,#17,#7455,$,$); -#7460=IFCMEMBERTYPE('3tLolTUD54S8J719IqpDu0',$,'250-8.0',$,$,$,$,$,$,$); -#7461=IFCMATERIALPROFILESET($,$,(#7463),$); -#7462=IFCRELASSOCIATESMATERIAL('27rGGxC9jCTfgfHYV5poNo',$,$,$,(#7460),#7461); -#7463=IFCMATERIALPROFILE($,$,#17,#7455,$,$); -#7464=IFCCOLUMNTYPE('2nvElT7hf4SxkbH6MSKELM',$,'250-8.0',$,$,$,$,$,$,$); -#7465=IFCMATERIALPROFILESET($,$,(#7467),$); -#7466=IFCRELASSOCIATESMATERIAL('1hlbsbR0LAc963um$hkkV0',$,$,$,(#7464),#7465); -#7467=IFCMATERIALPROFILE($,$,#17,#7455,$,$); -#7468=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,10.,$,$); -#7469=IFCBEAMTYPE('0W5sgE3PrAxRJIi0fZ0Ksn',$,'250-10.0',$,$,$,$,$,$,$); -#7470=IFCMATERIALPROFILESET($,$,(#7472),$); -#7471=IFCRELASSOCIATESMATERIAL('3AAzXd3BrBfOmz98DXcMgV',$,$,$,(#7469),#7470); -#7472=IFCMATERIALPROFILE($,$,#17,#7468,$,$); -#7473=IFCMEMBERTYPE('0ygfXbal92MezJ2LCzqdSS',$,'250-10.0',$,$,$,$,$,$,$); -#7474=IFCMATERIALPROFILESET($,$,(#7476),$); -#7475=IFCRELASSOCIATESMATERIAL('3BT8lLow12gPpV15xpytH2',$,$,$,(#7473),#7474); -#7476=IFCMATERIALPROFILE($,$,#17,#7468,$,$); -#7477=IFCCOLUMNTYPE('2BpN52cLXDVBoTl8oOVWCq',$,'250-10.0',$,$,$,$,$,$,$); -#7478=IFCMATERIALPROFILESET($,$,(#7480),$); -#7479=IFCRELASSOCIATESMATERIAL('0O4anUxfbC9e6AE71w1FtC',$,$,$,(#7477),#7478); -#7480=IFCMATERIALPROFILE($,$,#17,#7468,$,$); -#7481=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,12.5,$,$); -#7482=IFCBEAMTYPE('296oHo$nfB5uRw2IE_0Q38',$,'250-12.5',$,$,$,$,$,$,$); -#7483=IFCMATERIALPROFILESET($,$,(#7485),$); -#7484=IFCRELASSOCIATESMATERIAL('0of9AkL9n0K96WzmGiYL8x',$,$,$,(#7482),#7483); -#7485=IFCMATERIALPROFILE($,$,#17,#7481,$,$); -#7486=IFCMEMBERTYPE('1LSCZ1Ji5AufQLm$_9RkMG',$,'250-12.5',$,$,$,$,$,$,$); -#7487=IFCMATERIALPROFILESET($,$,(#7489),$); -#7488=IFCRELASSOCIATESMATERIAL('0K7vAahznE7B$U$wVTNYe6',$,$,$,(#7486),#7487); -#7489=IFCMATERIALPROFILE($,$,#17,#7481,$,$); -#7490=IFCCOLUMNTYPE('2Q5F9PGZjBeATSTT5PGJs1',$,'250-12.5',$,$,$,$,$,$,$); -#7491=IFCMATERIALPROFILESET($,$,(#7493),$); -#7492=IFCRELASSOCIATESMATERIAL('2abPkXjdH4rhrr43eYTmG1',$,$,$,(#7490),#7491); -#7493=IFCMATERIALPROFILE($,$,#17,#7481,$,$); -#7494=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,14.2,$,$); -#7495=IFCBEAMTYPE('2uuh5JALj08O_zPJRvFA1s',$,'250-14.2',$,$,$,$,$,$,$); -#7496=IFCMATERIALPROFILESET($,$,(#7498),$); -#7497=IFCRELASSOCIATESMATERIAL('2YWjfYwUPCbO_sq13GYCaC',$,$,$,(#7495),#7496); -#7498=IFCMATERIALPROFILE($,$,#17,#7494,$,$); -#7499=IFCMEMBERTYPE('1OF92YoSz24Pt3P5TR1YZn',$,'250-14.2',$,$,$,$,$,$,$); -#7500=IFCMATERIALPROFILESET($,$,(#7502),$); -#7501=IFCRELASSOCIATESMATERIAL('1JwpTuH9fA5Oe6mXkGO2Oj',$,$,$,(#7499),#7500); -#7502=IFCMATERIALPROFILE($,$,#17,#7494,$,$); -#7503=IFCCOLUMNTYPE('1zmboJeUj3Durdit9Muxg$',$,'250-14.2',$,$,$,$,$,$,$); -#7504=IFCMATERIALPROFILESET($,$,(#7506),$); -#7505=IFCRELASSOCIATESMATERIAL('0Rf68DwZ1Dy9YruFlOTTVe',$,$,$,(#7503),#7504); -#7506=IFCMATERIALPROFILE($,$,#17,#7494,$,$); -#7507=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,250.,16.,$,$); -#7508=IFCBEAMTYPE('199bTGy5P8vQiUuE5_q$$R',$,'250-16.0',$,$,$,$,$,$,$); -#7509=IFCMATERIALPROFILESET($,$,(#7511),$); -#7510=IFCRELASSOCIATESMATERIAL('1Eqxst8OzBUP8XK6GIG$WD',$,$,$,(#7508),#7509); -#7511=IFCMATERIALPROFILE($,$,#17,#7507,$,$); -#7512=IFCMEMBERTYPE('0pupf0_PPDxAVtEvaB$j2E',$,'250-16.0',$,$,$,$,$,$,$); -#7513=IFCMATERIALPROFILESET($,$,(#7515),$); -#7514=IFCRELASSOCIATESMATERIAL('2yVrv8oYj9oBIAKGpuPwU0',$,$,$,(#7512),#7513); -#7515=IFCMATERIALPROFILE($,$,#17,#7507,$,$); -#7516=IFCCOLUMNTYPE('17JXyNJ8fAOempRLYuqa25',$,'250-16.0',$,$,$,$,$,$,$); -#7517=IFCMATERIALPROFILESET($,$,(#7519),$); -#7518=IFCRELASSOCIATESMATERIAL('0zFfc2JkL9z9jVO5okX_6P',$,$,$,(#7516),#7517); -#7519=IFCMATERIALPROFILE($,$,#17,#7507,$,$); -#7520=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,260.,260.,6.3,$,$); -#7521=IFCBEAMTYPE('2GsZLAXN53xOWa5OilEUOD',$,'260-6.3',$,$,$,$,$,$,$); -#7522=IFCMATERIALPROFILESET($,$,(#7524),$); -#7523=IFCRELASSOCIATESMATERIAL('3vT1f0V3H8X8DtnV9A98j8',$,$,$,(#7521),#7522); -#7524=IFCMATERIALPROFILE($,$,#17,#7520,$,$); -#7525=IFCMEMBERTYPE('2xflOBe2D9CQj9ho0DyhMf',$,'260-6.3',$,$,$,$,$,$,$); -#7526=IFCMATERIALPROFILESET($,$,(#7528),$); -#7527=IFCRELASSOCIATESMATERIAL('3xiyu9Mbv2kvhYRFgFfMBG',$,$,$,(#7525),#7526); -#7528=IFCMATERIALPROFILE($,$,#17,#7520,$,$); -#7529=IFCCOLUMNTYPE('2EtmaGB4n5E9TPCdo_4HT0',$,'260-6.3',$,$,$,$,$,$,$); -#7530=IFCMATERIALPROFILESET($,$,(#7532),$); -#7531=IFCRELASSOCIATESMATERIAL('2ysVWVKPz6kBSfKl2LmwyW',$,$,$,(#7529),#7530); -#7532=IFCMATERIALPROFILE($,$,#17,#7520,$,$); -#7533=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,260.,260.,8.,$,$); -#7534=IFCBEAMTYPE('15u5BR0HPFpe1GR51JgS6T',$,'260-8.0',$,$,$,$,$,$,$); -#7535=IFCMATERIALPROFILESET($,$,(#7537),$); -#7536=IFCRELASSOCIATESMATERIAL('0PI7739WrA1Ambn_r8BHtp',$,$,$,(#7534),#7535); -#7537=IFCMATERIALPROFILE($,$,#17,#7533,$,$); -#7538=IFCMEMBERTYPE('39WT6n6OH5exqmO7osge4Y',$,'260-8.0',$,$,$,$,$,$,$); -#7539=IFCMATERIALPROFILESET($,$,(#7541),$); -#7540=IFCRELASSOCIATESMATERIAL('2o7B7Xs1j6DBdzJZXVbB43',$,$,$,(#7538),#7539); -#7541=IFCMATERIALPROFILE($,$,#17,#7533,$,$); -#7542=IFCCOLUMNTYPE('2LuSHsX1vElQNWkTGSvCdJ',$,'260-8.0',$,$,$,$,$,$,$); -#7543=IFCMATERIALPROFILESET($,$,(#7545),$); -#7544=IFCRELASSOCIATESMATERIAL('1OfXTIXUv5ahlJvV26OSYS',$,$,$,(#7542),#7543); -#7545=IFCMATERIALPROFILE($,$,#17,#7533,$,$); -#7546=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,260.,260.,10.,$,$); -#7547=IFCBEAMTYPE('3FJlcbzp16$BlC$aAXeB67',$,'260-10.0',$,$,$,$,$,$,$); -#7548=IFCMATERIALPROFILESET($,$,(#7550),$); -#7549=IFCRELASSOCIATESMATERIAL('1PkO$ZVPP7EPXkRq8TGJVi',$,$,$,(#7547),#7548); -#7550=IFCMATERIALPROFILE($,$,#17,#7546,$,$); -#7551=IFCMEMBERTYPE('3XF3RrjwL7GuTGTZqIaRDL',$,'260-10.0',$,$,$,$,$,$,$); -#7552=IFCMATERIALPROFILESET($,$,(#7554),$); -#7553=IFCRELASSOCIATESMATERIAL('2bVqBQ4vP2BfVQFv3Ff6wj',$,$,$,(#7551),#7552); -#7554=IFCMATERIALPROFILE($,$,#17,#7546,$,$); -#7555=IFCCOLUMNTYPE('3ON1mVHM1AAuyAYIQrEZcX',$,'260-10.0',$,$,$,$,$,$,$); -#7556=IFCMATERIALPROFILESET($,$,(#7558),$); -#7557=IFCRELASSOCIATESMATERIAL('27FDbRncL32ey5$xkToTJ3',$,$,$,(#7555),#7556); -#7558=IFCMATERIALPROFILE($,$,#17,#7546,$,$); -#7559=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,260.,260.,12.5,$,$); -#7560=IFCBEAMTYPE('3G$UDm9UXAhQD$KE5kwt$W',$,'260-12.5',$,$,$,$,$,$,$); -#7561=IFCMATERIALPROFILESET($,$,(#7563),$); -#7562=IFCRELASSOCIATESMATERIAL('0lHADncxbCDvgcZeLFSLdm',$,$,$,(#7560),#7561); -#7563=IFCMATERIALPROFILE($,$,#17,#7559,$,$); -#7564=IFCMEMBERTYPE('0ShkGw54jAkufhvkU_XH41',$,'260-12.5',$,$,$,$,$,$,$); -#7565=IFCMATERIALPROFILESET($,$,(#7567),$); -#7566=IFCRELASSOCIATESMATERIAL('2tioZ2MdT2OBFJnylDEH3U',$,$,$,(#7564),#7565); -#7567=IFCMATERIALPROFILE($,$,#17,#7559,$,$); -#7568=IFCCOLUMNTYPE('0smTxstDHAgRVqXk31N5XO',$,'260-12.5',$,$,$,$,$,$,$); -#7569=IFCMATERIALPROFILESET($,$,(#7571),$); -#7570=IFCRELASSOCIATESMATERIAL('30cjAejMf9vBtvr9FSrJw4',$,$,$,(#7568),#7569); -#7571=IFCMATERIALPROFILE($,$,#17,#7559,$,$); -#7572=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,260.,260.,14.2,$,$); -#7573=IFCBEAMTYPE('3z9n0jPtj8_OmVj0vMXHbC',$,'260-14.2',$,$,$,$,$,$,$); -#7574=IFCMATERIALPROFILESET($,$,(#7576),$); -#7575=IFCRELASSOCIATESMATERIAL('20Bm7S8kj3hf7akygamA6N',$,$,$,(#7573),#7574); -#7576=IFCMATERIALPROFILE($,$,#17,#7572,$,$); -#7577=IFCMEMBERTYPE('0$RrH0WLX6lvrs5izeXi5v',$,'260-14.2',$,$,$,$,$,$,$); -#7578=IFCMATERIALPROFILESET($,$,(#7580),$); -#7579=IFCRELASSOCIATESMATERIAL('11tyugH59AHQnX7CtqwGTs',$,$,$,(#7577),#7578); -#7580=IFCMATERIALPROFILE($,$,#17,#7572,$,$); -#7581=IFCCOLUMNTYPE('38bhj93eXBghWVNS3EJEF$',$,'260-14.2',$,$,$,$,$,$,$); -#7582=IFCMATERIALPROFILESET($,$,(#7584),$); -#7583=IFCRELASSOCIATESMATERIAL('3ruC8vmC55nOrMTtRF5pxz',$,$,$,(#7581),#7582); -#7584=IFCMATERIALPROFILE($,$,#17,#7572,$,$); -#7585=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,260.,260.,16.,$,$); -#7586=IFCBEAMTYPE('30LgM4SRj4OfQwvVfE7EyR',$,'260-16.0',$,$,$,$,$,$,$); -#7587=IFCMATERIALPROFILESET($,$,(#7589),$); -#7588=IFCRELASSOCIATESMATERIAL('0AkEql4Tv6EAIgMVnTRt5b',$,$,$,(#7586),#7587); -#7589=IFCMATERIALPROFILE($,$,#17,#7585,$,$); -#7590=IFCMEMBERTYPE('3iUELQD55FTPYwZyrEWcLS',$,'260-16.0',$,$,$,$,$,$,$); -#7591=IFCMATERIALPROFILESET($,$,(#7593),$); -#7592=IFCRELASSOCIATESMATERIAL('1FdwVgSg5BqAUGfG4d26yr',$,$,$,(#7590),#7591); -#7593=IFCMATERIALPROFILE($,$,#17,#7585,$,$); -#7594=IFCCOLUMNTYPE('0NzUuE9Iz8WgT5YFOyFDQU',$,'260-16.0',$,$,$,$,$,$,$); -#7595=IFCMATERIALPROFILESET($,$,(#7597),$); -#7596=IFCRELASSOCIATESMATERIAL('1m97n5sr99tQVwFXla0wyB',$,$,$,(#7594),#7595); -#7597=IFCMATERIALPROFILE($,$,#17,#7585,$,$); -#7598=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,6.3,$,$); -#7599=IFCBEAMTYPE('35eO_cllf1kw_INeTqML$X',$,'300-6.3',$,$,$,$,$,$,$); -#7600=IFCMATERIALPROFILESET($,$,(#7602),$); -#7601=IFCRELASSOCIATESMATERIAL('1jvXQjOfnBlvhkp_9LzLeB',$,$,$,(#7599),#7600); -#7602=IFCMATERIALPROFILE($,$,#17,#7598,$,$); -#7603=IFCMEMBERTYPE('3ycX63jaXA2OlwLVqWCHPQ',$,'300-6.3',$,$,$,$,$,$,$); -#7604=IFCMATERIALPROFILESET($,$,(#7606),$); -#7605=IFCRELASSOCIATESMATERIAL('23407Ps5j5$ukD2ZL4muia',$,$,$,(#7603),#7604); -#7606=IFCMATERIALPROFILE($,$,#17,#7598,$,$); -#7607=IFCCOLUMNTYPE('1MH7l4DBP5lP260bwsXI33',$,'300-6.3',$,$,$,$,$,$,$); -#7608=IFCMATERIALPROFILESET($,$,(#7610),$); -#7609=IFCRELASSOCIATESMATERIAL('0Nmv4VO9L8_v895yyG34b_',$,$,$,(#7607),#7608); -#7610=IFCMATERIALPROFILE($,$,#17,#7598,$,$); -#7611=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,8.,$,$); -#7612=IFCBEAMTYPE('2Bx46unCT2euSRPu0fNSMK',$,'300-8.0',$,$,$,$,$,$,$); -#7613=IFCMATERIALPROFILESET($,$,(#7615),$); -#7614=IFCRELASSOCIATESMATERIAL('2NK7erShj2OfPtL8PjdCEO',$,$,$,(#7612),#7613); -#7615=IFCMATERIALPROFILE($,$,#17,#7611,$,$); -#7616=IFCMEMBERTYPE('1G0XFrkknFCBoGTlegWZuJ',$,'300-8.0',$,$,$,$,$,$,$); -#7617=IFCMATERIALPROFILESET($,$,(#7619),$); -#7618=IFCRELASSOCIATESMATERIAL('1Jz2qe2Zj2IAOqphQ751L3',$,$,$,(#7616),#7617); -#7619=IFCMATERIALPROFILE($,$,#17,#7611,$,$); -#7620=IFCCOLUMNTYPE('3gJDC86Cn9TRj4UZJ4yoD3',$,'300-8.0',$,$,$,$,$,$,$); -#7621=IFCMATERIALPROFILESET($,$,(#7623),$); -#7622=IFCRELASSOCIATESMATERIAL('034cmia396fhS_4hZlUOth',$,$,$,(#7620),#7621); -#7623=IFCMATERIALPROFILE($,$,#17,#7611,$,$); -#7624=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,10.,$,$); -#7625=IFCBEAMTYPE('3uQuaHhN90kwSMJCIa7SZI',$,'300-10.0',$,$,$,$,$,$,$); -#7626=IFCMATERIALPROFILESET($,$,(#7628),$); -#7627=IFCRELASSOCIATESMATERIAL('2aHRsgx2L7feCEhM3cuT$z',$,$,$,(#7625),#7626); -#7628=IFCMATERIALPROFILE($,$,#17,#7624,$,$); -#7629=IFCMEMBERTYPE('0RC$_GFZD7CBKZzlOZWIqq',$,'300-10.0',$,$,$,$,$,$,$); -#7630=IFCMATERIALPROFILESET($,$,(#7632),$); -#7631=IFCRELASSOCIATESMATERIAL('0cockiajH92fTwnLSXi0x6',$,$,$,(#7629),#7630); -#7632=IFCMATERIALPROFILE($,$,#17,#7624,$,$); -#7633=IFCCOLUMNTYPE('0DBxROFdbECOJ$TPV5m5VB',$,'300-10.0',$,$,$,$,$,$,$); -#7634=IFCMATERIALPROFILESET($,$,(#7636),$); -#7635=IFCRELASSOCIATESMATERIAL('2V44byTR55qAVW9ZL_1AhL',$,$,$,(#7633),#7634); -#7636=IFCMATERIALPROFILE($,$,#17,#7624,$,$); -#7637=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,12.5,$,$); -#7638=IFCBEAMTYPE('3Az1F$l2r7hBJSi4MFg6_t',$,'300-12.5',$,$,$,$,$,$,$); -#7639=IFCMATERIALPROFILESET($,$,(#7641),$); -#7640=IFCRELASSOCIATESMATERIAL('20zhOW_bX0o9B5F87e2ddv',$,$,$,(#7638),#7639); -#7641=IFCMATERIALPROFILE($,$,#17,#7637,$,$); -#7642=IFCMEMBERTYPE('2qEgDF_iL2sBZ2ck03ID0e',$,'300-12.5',$,$,$,$,$,$,$); -#7643=IFCMATERIALPROFILESET($,$,(#7645),$); -#7644=IFCRELASSOCIATESMATERIAL('3xPVWlupb5z8fTHvIfcYAT',$,$,$,(#7642),#7643); -#7645=IFCMATERIALPROFILE($,$,#17,#7637,$,$); -#7646=IFCCOLUMNTYPE('3X$F35FRD6ugBEZ2igcNdf',$,'300-12.5',$,$,$,$,$,$,$); -#7647=IFCMATERIALPROFILESET($,$,(#7649),$); -#7648=IFCRELASSOCIATESMATERIAL('07OIJehM10_B5MtgMoLQ4p',$,$,$,(#7646),#7647); -#7649=IFCMATERIALPROFILE($,$,#17,#7637,$,$); -#7650=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,14.2,$,$); -#7651=IFCBEAMTYPE('3JNaRGN7H88RgvvXijEvxG',$,'300-14.2',$,$,$,$,$,$,$); -#7652=IFCMATERIALPROFILESET($,$,(#7654),$); -#7653=IFCRELASSOCIATESMATERIAL('2VekF2sc59ngUX0Dq352ps',$,$,$,(#7651),#7652); -#7654=IFCMATERIALPROFILE($,$,#17,#7650,$,$); -#7655=IFCMEMBERTYPE('0074Ak6_TFDAVcsCqSzuuq',$,'300-14.2',$,$,$,$,$,$,$); -#7656=IFCMATERIALPROFILESET($,$,(#7658),$); -#7657=IFCRELASSOCIATESMATERIAL('0ve2GI95LFbhebIMCYTDo5',$,$,$,(#7655),#7656); -#7658=IFCMATERIALPROFILE($,$,#17,#7650,$,$); -#7659=IFCCOLUMNTYPE('0raL$ZLLnAJh8CCha56zcG',$,'300-14.2',$,$,$,$,$,$,$); -#7660=IFCMATERIALPROFILESET($,$,(#7662),$); -#7661=IFCRELASSOCIATESMATERIAL('3Ewt4pAvv5Eucg6TUbX$Oy',$,$,$,(#7659),#7660); -#7662=IFCMATERIALPROFILE($,$,#17,#7650,$,$); -#7663=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,300.,16.,$,$); -#7664=IFCBEAMTYPE('29wSjkNuP9pwT9C7uTGCRC',$,'300-16.0',$,$,$,$,$,$,$); -#7665=IFCMATERIALPROFILESET($,$,(#7667),$); -#7666=IFCRELASSOCIATESMATERIAL('1scGl5Dwb03BRmlUozi6gq',$,$,$,(#7664),#7665); -#7667=IFCMATERIALPROFILE($,$,#17,#7663,$,$); -#7668=IFCMEMBERTYPE('2CJjr6bM5CVP0NmtuTJ_tH',$,'300-16.0',$,$,$,$,$,$,$); -#7669=IFCMATERIALPROFILESET($,$,(#7671),$); -#7670=IFCRELASSOCIATESMATERIAL('1ysJh$$JTD0QGKvA_qc0Ww',$,$,$,(#7668),#7669); -#7671=IFCMATERIALPROFILE($,$,#17,#7663,$,$); -#7672=IFCCOLUMNTYPE('2IWRb8XtXCe836NgRKaZvS',$,'300-16.0',$,$,$,$,$,$,$); -#7673=IFCMATERIALPROFILESET($,$,(#7675),$); -#7674=IFCRELASSOCIATESMATERIAL('32_w77jH5D3v6hVt5G651x',$,$,$,(#7672),#7673); -#7675=IFCMATERIALPROFILE($,$,#17,#7663,$,$); -#7676=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,8.,$,$); -#7677=IFCBEAMTYPE('1f$jCVWIj5GOqx4FFR$j1J',$,'350-8.0',$,$,$,$,$,$,$); -#7678=IFCMATERIALPROFILESET($,$,(#7680),$); -#7679=IFCRELASSOCIATESMATERIAL('0RtlH5uDr7Fvc5$7bQMCHx',$,$,$,(#7677),#7678); -#7680=IFCMATERIALPROFILE($,$,#17,#7676,$,$); -#7681=IFCMEMBERTYPE('2S60d2SvD0Ng4$AEband6_',$,'350-8.0',$,$,$,$,$,$,$); -#7682=IFCMATERIALPROFILESET($,$,(#7684),$); -#7683=IFCRELASSOCIATESMATERIAL('01MBMOZJrEbfhO6vciDH27',$,$,$,(#7681),#7682); -#7684=IFCMATERIALPROFILE($,$,#17,#7676,$,$); -#7685=IFCCOLUMNTYPE('0z$611dtfFLOZ2fCPKEtRG',$,'350-8.0',$,$,$,$,$,$,$); -#7686=IFCMATERIALPROFILESET($,$,(#7688),$); -#7687=IFCRELASSOCIATESMATERIAL('1DmB7donv4owD1NDecFebi',$,$,$,(#7685),#7686); -#7688=IFCMATERIALPROFILE($,$,#17,#7676,$,$); -#7689=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,10.,$,$); -#7690=IFCBEAMTYPE('0h6Xo1wSPCFwv10UAQqJca',$,'350-10.0',$,$,$,$,$,$,$); -#7691=IFCMATERIALPROFILESET($,$,(#7693),$); -#7692=IFCRELASSOCIATESMATERIAL('338zHr6397K9a1ltpyV_vP',$,$,$,(#7690),#7691); -#7693=IFCMATERIALPROFILE($,$,#17,#7689,$,$); -#7694=IFCMEMBERTYPE('2bKjVTPff6HBaEeiaR4igy',$,'350-10.0',$,$,$,$,$,$,$); -#7695=IFCMATERIALPROFILESET($,$,(#7697),$); -#7696=IFCRELASSOCIATESMATERIAL('0TC8OFrej3iua$mnLxWg_x',$,$,$,(#7694),#7695); -#7697=IFCMATERIALPROFILE($,$,#17,#7689,$,$); -#7698=IFCCOLUMNTYPE('0ivS7pMVb5PPxJZ9ayPqOc',$,'350-10.0',$,$,$,$,$,$,$); -#7699=IFCMATERIALPROFILESET($,$,(#7701),$); -#7700=IFCRELASSOCIATESMATERIAL('1kofP1P8549upwJmf7$rMq',$,$,$,(#7698),#7699); -#7701=IFCMATERIALPROFILE($,$,#17,#7689,$,$); -#7702=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,12.5,$,$); -#7703=IFCBEAMTYPE('3NCRmw9dT8MQAch5DFfa4l',$,'350-12.5',$,$,$,$,$,$,$); -#7704=IFCMATERIALPROFILESET($,$,(#7706),$); -#7705=IFCRELASSOCIATESMATERIAL('1cN35_pZz1xBQB62Dvjiwk',$,$,$,(#7703),#7704); -#7706=IFCMATERIALPROFILE($,$,#17,#7702,$,$); -#7707=IFCMEMBERTYPE('3CXRko6TP2WOveHZVqp8N7',$,'350-12.5',$,$,$,$,$,$,$); -#7708=IFCMATERIALPROFILESET($,$,(#7710),$); -#7709=IFCRELASSOCIATESMATERIAL('0aitzjyzX0kuI$9ankfiGL',$,$,$,(#7707),#7708); -#7710=IFCMATERIALPROFILE($,$,#17,#7702,$,$); -#7711=IFCCOLUMNTYPE('0rDUm$CzD24QXhd8XBKEfg',$,'350-12.5',$,$,$,$,$,$,$); -#7712=IFCMATERIALPROFILESET($,$,(#7714),$); -#7713=IFCRELASSOCIATESMATERIAL('0fJ$G9vDvA$vE8DJio4Elq',$,$,$,(#7711),#7712); -#7714=IFCMATERIALPROFILE($,$,#17,#7702,$,$); -#7715=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,14.2,$,$); -#7716=IFCBEAMTYPE('0pM2kcRWT3BRy5PRAV5CCy',$,'350-14.2',$,$,$,$,$,$,$); -#7717=IFCMATERIALPROFILESET($,$,(#7719),$); -#7718=IFCRELASSOCIATESMATERIAL('1xDYOWVi93yAHaO52b9DLO',$,$,$,(#7716),#7717); -#7719=IFCMATERIALPROFILE($,$,#17,#7715,$,$); -#7720=IFCMEMBERTYPE('33d2aqzXb7j8nlpRNGHuza',$,'350-14.2',$,$,$,$,$,$,$); -#7721=IFCMATERIALPROFILESET($,$,(#7723),$); -#7722=IFCRELASSOCIATESMATERIAL('37wDhSc590huFLRV0ZU8Qa',$,$,$,(#7720),#7721); -#7723=IFCMATERIALPROFILE($,$,#17,#7715,$,$); -#7724=IFCCOLUMNTYPE('0FMiedg1zCRgb8L1j1_W6W',$,'350-14.2',$,$,$,$,$,$,$); -#7725=IFCMATERIALPROFILESET($,$,(#7727),$); -#7726=IFCRELASSOCIATESMATERIAL('1P5w7brdL1HecavYKr$4w0',$,$,$,(#7724),#7725); -#7727=IFCMATERIALPROFILE($,$,#17,#7715,$,$); -#7728=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,350.,350.,16.,$,$); -#7729=IFCBEAMTYPE('3ZEH9qoPfDY9F2TqR5qTI$',$,'350-16.0',$,$,$,$,$,$,$); -#7730=IFCMATERIALPROFILESET($,$,(#7732),$); -#7731=IFCRELASSOCIATESMATERIAL('2wD$ySP2PFlh_be7BFDk7S',$,$,$,(#7729),#7730); -#7732=IFCMATERIALPROFILE($,$,#17,#7728,$,$); -#7733=IFCMEMBERTYPE('0WvWIPJiPE5f6hjfF4oHmN',$,'350-16.0',$,$,$,$,$,$,$); -#7734=IFCMATERIALPROFILESET($,$,(#7736),$); -#7735=IFCRELASSOCIATESMATERIAL('2BJEF2Uuv9SgrLNZYdLDqa',$,$,$,(#7733),#7734); -#7736=IFCMATERIALPROFILE($,$,#17,#7728,$,$); -#7737=IFCCOLUMNTYPE('3KDHjlmcb1$w7E6MSz6atS',$,'350-16.0',$,$,$,$,$,$,$); -#7738=IFCMATERIALPROFILESET($,$,(#7740),$); -#7739=IFCRELASSOCIATESMATERIAL('3A$cPsngb0lhGb2l8gJcE8',$,$,$,(#7737),#7738); -#7740=IFCMATERIALPROFILE($,$,#17,#7728,$,$); -#7741=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,10.,$,$); -#7742=IFCBEAMTYPE('3lGTJjrzz64gtd590R4orf',$,'400-10.0',$,$,$,$,$,$,$); -#7743=IFCMATERIALPROFILESET($,$,(#7745),$); -#7744=IFCRELASSOCIATESMATERIAL('2nTbfff214mB5CGjg9QN1A',$,$,$,(#7742),#7743); -#7745=IFCMATERIALPROFILE($,$,#17,#7741,$,$); -#7746=IFCMEMBERTYPE('0LUsuoK0109fjNCZkGxdy7',$,'400-10.0',$,$,$,$,$,$,$); -#7747=IFCMATERIALPROFILESET($,$,(#7749),$); -#7748=IFCRELASSOCIATESMATERIAL('0LSFjREZn0LOK1zqzHAJSr',$,$,$,(#7746),#7747); -#7749=IFCMATERIALPROFILE($,$,#17,#7741,$,$); -#7750=IFCCOLUMNTYPE('3Fn7AZtX90BRWOEdAEo1Zo',$,'400-10.0',$,$,$,$,$,$,$); -#7751=IFCMATERIALPROFILESET($,$,(#7753),$); -#7752=IFCRELASSOCIATESMATERIAL('26h8zPxxz9ewDvoQHaaJOd',$,$,$,(#7750),#7751); -#7753=IFCMATERIALPROFILE($,$,#17,#7741,$,$); -#7754=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,12.5,$,$); -#7755=IFCBEAMTYPE('2HntPrGzz5LfxZGL1oBoIT',$,'400-12.5',$,$,$,$,$,$,$); -#7756=IFCMATERIALPROFILESET($,$,(#7758),$); -#7757=IFCRELASSOCIATESMATERIAL('0wYjUOnL5ANR2W_UMchQ8c',$,$,$,(#7755),#7756); -#7758=IFCMATERIALPROFILE($,$,#17,#7754,$,$); -#7759=IFCMEMBERTYPE('3_9uBA$3LFSuoeIetcvCpD',$,'400-12.5',$,$,$,$,$,$,$); -#7760=IFCMATERIALPROFILESET($,$,(#7762),$); -#7761=IFCRELASSOCIATESMATERIAL('3XpC33HLfFOBV5Vfjv2jqx',$,$,$,(#7759),#7760); -#7762=IFCMATERIALPROFILE($,$,#17,#7754,$,$); -#7763=IFCCOLUMNTYPE('24YxL_WDb9swtPtLvhFCB$',$,'400-12.5',$,$,$,$,$,$,$); -#7764=IFCMATERIALPROFILESET($,$,(#7766),$); -#7765=IFCRELASSOCIATESMATERIAL('21TrTmcpL2Ixrwr4H_Erh0',$,$,$,(#7763),#7764); -#7766=IFCMATERIALPROFILE($,$,#17,#7754,$,$); -#7767=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,14.2,$,$); -#7768=IFCBEAMTYPE('3EnKikEGr0WwGvnQ$uDNoO',$,'400-14.2',$,$,$,$,$,$,$); -#7769=IFCMATERIALPROFILESET($,$,(#7771),$); -#7770=IFCRELASSOCIATESMATERIAL('1DkFHWbTz9gQuQLUiTNL9H',$,$,$,(#7768),#7769); -#7771=IFCMATERIALPROFILE($,$,#17,#7767,$,$); -#7772=IFCMEMBERTYPE('2LdzISayXB4ei6WURh_Plr',$,'400-14.2',$,$,$,$,$,$,$); -#7773=IFCMATERIALPROFILESET($,$,(#7775),$); -#7774=IFCRELASSOCIATESMATERIAL('3tPWHq8WX8O8NGDUxoD29Z',$,$,$,(#7772),#7773); -#7775=IFCMATERIALPROFILE($,$,#17,#7767,$,$); -#7776=IFCCOLUMNTYPE('2ER2f6igLEqQmc4FjyHJN4',$,'400-14.2',$,$,$,$,$,$,$); -#7777=IFCMATERIALPROFILESET($,$,(#7779),$); -#7778=IFCRELASSOCIATESMATERIAL('3fFMhRMNP7yAm_My_elLqI',$,$,$,(#7776),#7777); -#7779=IFCMATERIALPROFILE($,$,#17,#7767,$,$); -#7780=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,16.,$,$); -#7781=IFCBEAMTYPE('3z$wSSDV9B38n4Qs1D1Ngp',$,'400-16.0',$,$,$,$,$,$,$); -#7782=IFCMATERIALPROFILESET($,$,(#7784),$); -#7783=IFCRELASSOCIATESMATERIAL('0OGdmWz4TBNxb$34uhwrXm',$,$,$,(#7781),#7782); -#7784=IFCMATERIALPROFILE($,$,#17,#7780,$,$); -#7785=IFCMEMBERTYPE('0mba93N1XFEONYSKl5RMy2',$,'400-16.0',$,$,$,$,$,$,$); -#7786=IFCMATERIALPROFILESET($,$,(#7788),$); -#7787=IFCRELASSOCIATESMATERIAL('1XfvaOMnb2CeK$qVvwpdVm',$,$,$,(#7785),#7786); -#7788=IFCMATERIALPROFILE($,$,#17,#7780,$,$); -#7789=IFCCOLUMNTYPE('0HEE1rDJjCcROfZZmlgWmb',$,'400-16.0',$,$,$,$,$,$,$); -#7790=IFCMATERIALPROFILESET($,$,(#7792),$); -#7791=IFCRELASSOCIATESMATERIAL('3KLlbGZwX4ig4UibW0wgDs',$,$,$,(#7789),#7790); -#7792=IFCMATERIALPROFILE($,$,#17,#7780,$,$); -#7793=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,400.,400.,20.,$,$); -#7794=IFCBEAMTYPE('1PVuq2yQb7pA2YsyGU7m2P',$,'400-20.0',$,$,$,$,$,$,$); -#7795=IFCMATERIALPROFILESET($,$,(#7797),$); -#7796=IFCRELASSOCIATESMATERIAL('0OXymAbwHBpfsjDZFknH7g',$,$,$,(#7794),#7795); -#7797=IFCMATERIALPROFILE($,$,#17,#7793,$,$); -#7798=IFCMEMBERTYPE('0WVbAdPtD5SPRflk9l$nc5',$,'400-20.0',$,$,$,$,$,$,$); -#7799=IFCMATERIALPROFILESET($,$,(#7801),$); -#7800=IFCRELASSOCIATESMATERIAL('3yh4Ombqz0lBXNI5y2iT8Y',$,$,$,(#7798),#7799); -#7801=IFCMATERIALPROFILE($,$,#17,#7793,$,$); -#7802=IFCCOLUMNTYPE('3epUzBzFrFLOYqS1NIt00U',$,'400-20.0',$,$,$,$,$,$,$); -#7803=IFCMATERIALPROFILESET($,$,(#7805),$); -#7804=IFCRELASSOCIATESMATERIAL('2ucMaEggXEmBrkwG3VI0J8',$,$,$,(#7802),#7803); -#7805=IFCMATERIALPROFILE($,$,#17,#7793,$,$); -#7806=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,50.,2.6,$,$); -#7807=IFCBEAMTYPE('0em66qT$1EVgF_WV0CzlDp',$,'50-30-2.6',$,$,$,$,$,$,$); -#7808=IFCMATERIALPROFILESET($,$,(#7810),$); -#7809=IFCRELASSOCIATESMATERIAL('21OQethyL5FAy8Gg9sK$96',$,$,$,(#7807),#7808); -#7810=IFCMATERIALPROFILE($,$,#17,#7806,$,$); -#7811=IFCMEMBERTYPE('0IoyUoIqz6ivVBOtHPO8Sd',$,'50-30-2.6',$,$,$,$,$,$,$); -#7812=IFCMATERIALPROFILESET($,$,(#7814),$); -#7813=IFCRELASSOCIATESMATERIAL('29Q3J514PDqQRsYlzKF01$',$,$,$,(#7811),#7812); -#7814=IFCMATERIALPROFILE($,$,#17,#7806,$,$); -#7815=IFCCOLUMNTYPE('1V1zcRnJn4yOV_kR_fLX4L',$,'50-30-2.6',$,$,$,$,$,$,$); -#7816=IFCMATERIALPROFILESET($,$,(#7818),$); -#7817=IFCRELASSOCIATESMATERIAL('2uikUJ6Hj3SefXQf2bTzQk',$,$,$,(#7815),#7816); -#7818=IFCMATERIALPROFILE($,$,#17,#7806,$,$); -#7819=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,50.,3.2,$,$); -#7820=IFCBEAMTYPE('3mpgzZWHnBYRULS$VnbaMK',$,'50-30-3.2',$,$,$,$,$,$,$); -#7821=IFCMATERIALPROFILESET($,$,(#7823),$); -#7822=IFCRELASSOCIATESMATERIAL('2arSGpLubDXxqGiaiR0zVo',$,$,$,(#7820),#7821); -#7823=IFCMATERIALPROFILE($,$,#17,#7819,$,$); -#7824=IFCMEMBERTYPE('1jbQHnCyHFax_FL$kOdlPN',$,'50-30-3.2',$,$,$,$,$,$,$); -#7825=IFCMATERIALPROFILESET($,$,(#7827),$); -#7826=IFCRELASSOCIATESMATERIAL('3NSpjrF1j2bR3FUI45qCGJ',$,$,$,(#7824),#7825); -#7827=IFCMATERIALPROFILE($,$,#17,#7819,$,$); -#7828=IFCCOLUMNTYPE('0paT5ued93vhDAGPS8oner',$,'50-30-3.2',$,$,$,$,$,$,$); -#7829=IFCMATERIALPROFILESET($,$,(#7831),$); -#7830=IFCRELASSOCIATESMATERIAL('0KLbVrIsj6Wxz7rL7$qzgC',$,$,$,(#7828),#7829); -#7831=IFCMATERIALPROFILE($,$,#17,#7819,$,$); -#7832=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,50.,4.,$,$); -#7833=IFCBEAMTYPE('2b_vNCXPT6OfGhTWVSEAJ5',$,'50-30-4.0',$,$,$,$,$,$,$); -#7834=IFCMATERIALPROFILESET($,$,(#7836),$); -#7835=IFCRELASSOCIATESMATERIAL('3$6rad4DTDePztNT5F99YF',$,$,$,(#7833),#7834); -#7836=IFCMATERIALPROFILE($,$,#17,#7832,$,$); -#7837=IFCMEMBERTYPE('2OiVYH7ijDmgLF$RlykjTM',$,'50-30-4.0',$,$,$,$,$,$,$); -#7838=IFCMATERIALPROFILESET($,$,(#7840),$); -#7839=IFCRELASSOCIATESMATERIAL('22pxQ8fs11kR5hKMQp595s',$,$,$,(#7837),#7838); -#7840=IFCMATERIALPROFILE($,$,#17,#7832,$,$); -#7841=IFCCOLUMNTYPE('3ay$Pdc5r0LQew$9cyWKSG',$,'50-30-4.0',$,$,$,$,$,$,$); -#7842=IFCMATERIALPROFILESET($,$,(#7844),$); -#7843=IFCRELASSOCIATESMATERIAL('3yaO4mYCf9nwiydcUdIIjX',$,$,$,(#7841),#7842); -#7844=IFCMATERIALPROFILE($,$,#17,#7832,$,$); -#7845=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,30.,50.,5.,$,$); -#7846=IFCBEAMTYPE('2unyn2kMrAbRp4FjbSoIdX',$,'50-30-5.0',$,$,$,$,$,$,$); -#7847=IFCMATERIALPROFILESET($,$,(#7849),$); -#7848=IFCRELASSOCIATESMATERIAL('2opP0Zu$vBwfKJPEtsnuKk',$,$,$,(#7846),#7847); -#7849=IFCMATERIALPROFILE($,$,#17,#7845,$,$); -#7850=IFCMEMBERTYPE('0mk6py26z3lP1M1LpDpzMX',$,'50-30-5.0',$,$,$,$,$,$,$); -#7851=IFCMATERIALPROFILESET($,$,(#7853),$); -#7852=IFCRELASSOCIATESMATERIAL('3JvLPLa0z7LfF47YPqxVTW',$,$,$,(#7850),#7851); -#7853=IFCMATERIALPROFILE($,$,#17,#7845,$,$); -#7854=IFCCOLUMNTYPE('0ck81qMwfFNPc0QCxbx1ml',$,'50-30-5.0',$,$,$,$,$,$,$); -#7855=IFCMATERIALPROFILESET($,$,(#7857),$); -#7856=IFCRELASSOCIATESMATERIAL('1Cv8Lk0FP7kBtLlrYD9rKW',$,$,$,(#7854),#7855); -#7857=IFCMATERIALPROFILE($,$,#17,#7845,$,$); -#7858=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,60.,2.6,$,$); -#7859=IFCBEAMTYPE('0P7OTMcUP95Qpvfk$CfZn0',$,'60-40-2.6',$,$,$,$,$,$,$); -#7860=IFCMATERIALPROFILESET($,$,(#7862),$); -#7861=IFCRELASSOCIATESMATERIAL('0NAfaJWgH5AfbV7EOiaLcE',$,$,$,(#7859),#7860); -#7862=IFCMATERIALPROFILE($,$,#17,#7858,$,$); -#7863=IFCMEMBERTYPE('2dp$pbhk1F_AFwTWoWfivw',$,'60-40-2.6',$,$,$,$,$,$,$); -#7864=IFCMATERIALPROFILESET($,$,(#7866),$); -#7865=IFCRELASSOCIATESMATERIAL('2601G1S0PDBPy_Ev$HBtFo',$,$,$,(#7863),#7864); -#7866=IFCMATERIALPROFILE($,$,#17,#7858,$,$); -#7867=IFCCOLUMNTYPE('2$E4V7HFf4PQTzgh17udhl',$,'60-40-2.6',$,$,$,$,$,$,$); -#7868=IFCMATERIALPROFILESET($,$,(#7870),$); -#7869=IFCRELASSOCIATESMATERIAL('1IWbMCsS17DxRPfpJfCY5Y',$,$,$,(#7867),#7868); -#7870=IFCMATERIALPROFILE($,$,#17,#7858,$,$); -#7871=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,60.,3.2,$,$); -#7872=IFCBEAMTYPE('0QUDQbPMbEzOsuB0JxScFK',$,'60-40-3.2',$,$,$,$,$,$,$); -#7873=IFCMATERIALPROFILESET($,$,(#7875),$); -#7874=IFCRELASSOCIATESMATERIAL('0d449FObbE69pf5wpk2SRk',$,$,$,(#7872),#7873); -#7875=IFCMATERIALPROFILE($,$,#17,#7871,$,$); -#7876=IFCMEMBERTYPE('0VdP_czknDsRG2MHxHqz0W',$,'60-40-3.2',$,$,$,$,$,$,$); -#7877=IFCMATERIALPROFILESET($,$,(#7879),$); -#7878=IFCRELASSOCIATESMATERIAL('165kD0Jlv0TxoAjGA69H3u',$,$,$,(#7876),#7877); -#7879=IFCMATERIALPROFILE($,$,#17,#7871,$,$); -#7880=IFCCOLUMNTYPE('2hiEV_GNv56vV40xfSbqmE',$,'60-40-3.2',$,$,$,$,$,$,$); -#7881=IFCMATERIALPROFILESET($,$,(#7883),$); -#7882=IFCRELASSOCIATESMATERIAL('31VFEE44bB9AzAL3mBEM9z',$,$,$,(#7880),#7881); -#7883=IFCMATERIALPROFILE($,$,#17,#7871,$,$); -#7884=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,60.,4.,$,$); -#7885=IFCBEAMTYPE('1hDctnycb0SeYkkfTS3AOC',$,'60-40-4.0',$,$,$,$,$,$,$); -#7886=IFCMATERIALPROFILESET($,$,(#7888),$); -#7887=IFCRELASSOCIATESMATERIAL('2_kgX9PU9AE9X26ivJo5gR',$,$,$,(#7885),#7886); -#7888=IFCMATERIALPROFILE($,$,#17,#7884,$,$); -#7889=IFCMEMBERTYPE('0GtInJ$r1AKvJnHuoPX79b',$,'60-40-4.0',$,$,$,$,$,$,$); -#7890=IFCMATERIALPROFILESET($,$,(#7892),$); -#7891=IFCRELASSOCIATESMATERIAL('3m8jKd6mH3IhhCabKkCudl',$,$,$,(#7889),#7890); -#7892=IFCMATERIALPROFILE($,$,#17,#7884,$,$); -#7893=IFCCOLUMNTYPE('0f3ZooP1b6oApvw63m1Z8t',$,'60-40-4.0',$,$,$,$,$,$,$); -#7894=IFCMATERIALPROFILESET($,$,(#7896),$); -#7895=IFCRELASSOCIATESMATERIAL('1wyDSK5fT41wzvQtf5CgoB',$,$,$,(#7893),#7894); -#7896=IFCMATERIALPROFILE($,$,#17,#7884,$,$); -#7897=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,60.,5.,$,$); -#7898=IFCBEAMTYPE('2Bs4AhrHzBpgr8Qg$pS$sN',$,'60-40-5.0',$,$,$,$,$,$,$); -#7899=IFCMATERIALPROFILESET($,$,(#7901),$); -#7900=IFCRELASSOCIATESMATERIAL('3k7CpTPCf3rvfoAGoiH36q',$,$,$,(#7898),#7899); -#7901=IFCMATERIALPROFILE($,$,#17,#7897,$,$); -#7902=IFCMEMBERTYPE('3t718MNcf43gE6I1urBJRY',$,'60-40-5.0',$,$,$,$,$,$,$); -#7903=IFCMATERIALPROFILESET($,$,(#7905),$); -#7904=IFCRELASSOCIATESMATERIAL('1OY4c2DgfF5OS8$dgFhDD4',$,$,$,(#7902),#7903); -#7905=IFCMATERIALPROFILE($,$,#17,#7897,$,$); -#7906=IFCCOLUMNTYPE('0r1JABNWP1uAikl$R1dGJE',$,'60-40-5.0',$,$,$,$,$,$,$); -#7907=IFCMATERIALPROFILESET($,$,(#7909),$); -#7908=IFCRELASSOCIATESMATERIAL('0qXv_pVyX2LOVvT1lXPO5h',$,$,$,(#7906),#7907); -#7909=IFCMATERIALPROFILE($,$,#17,#7897,$,$); -#7910=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,60.,6.3,$,$); -#7911=IFCBEAMTYPE('1g0XdV$WD7nhM$EekPksi_',$,'60-40-6.3',$,$,$,$,$,$,$); -#7912=IFCMATERIALPROFILESET($,$,(#7914),$); -#7913=IFCRELASSOCIATESMATERIAL('0AyBZyOSXFNxs0UGDoBQts',$,$,$,(#7911),#7912); -#7914=IFCMATERIALPROFILE($,$,#17,#7910,$,$); -#7915=IFCMEMBERTYPE('3yyd5RBzbBCAh7bConLs$w',$,'60-40-6.3',$,$,$,$,$,$,$); -#7916=IFCMATERIALPROFILESET($,$,(#7918),$); -#7917=IFCRELASSOCIATESMATERIAL('0PDnQwHdz9wRCrUysjcM5a',$,$,$,(#7915),#7916); -#7918=IFCMATERIALPROFILE($,$,#17,#7910,$,$); -#7919=IFCCOLUMNTYPE('2oTPJhpZfEXAiFVNPen6I8',$,'60-40-6.3',$,$,$,$,$,$,$); -#7920=IFCMATERIALPROFILESET($,$,(#7922),$); -#7921=IFCRELASSOCIATESMATERIAL('2$$XXJSyb5$w7AX7xEi0PY',$,$,$,(#7919),#7920); -#7922=IFCMATERIALPROFILE($,$,#17,#7910,$,$); -#7923=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,80.,3.2,$,$); -#7924=IFCBEAMTYPE('21nUE216PFy8EWiYge_0tc',$,'80-40-3.2',$,$,$,$,$,$,$); -#7925=IFCMATERIALPROFILESET($,$,(#7927),$); -#7926=IFCRELASSOCIATESMATERIAL('2Mji82Caf3DfScaex5CkYv',$,$,$,(#7924),#7925); -#7927=IFCMATERIALPROFILE($,$,#17,#7923,$,$); -#7928=IFCMEMBERTYPE('3NDXHtBoP9U8JNFGYFQcQj',$,'80-40-3.2',$,$,$,$,$,$,$); -#7929=IFCMATERIALPROFILESET($,$,(#7931),$); -#7930=IFCRELASSOCIATESMATERIAL('3OZk5RdLT8$OWvgkbPh7Ab',$,$,$,(#7928),#7929); -#7931=IFCMATERIALPROFILE($,$,#17,#7923,$,$); -#7932=IFCCOLUMNTYPE('1v0B0Zq2z62hzKWgkp0IAd',$,'80-40-3.2',$,$,$,$,$,$,$); -#7933=IFCMATERIALPROFILESET($,$,(#7935),$); -#7934=IFCRELASSOCIATESMATERIAL('0jeEuHp216qAmQd6Zg1xz1',$,$,$,(#7932),#7933); -#7935=IFCMATERIALPROFILE($,$,#17,#7923,$,$); -#7936=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,80.,4.,$,$); -#7937=IFCBEAMTYPE('36OWsg0p98NeevLSc6vLoc',$,'80-40-4.0',$,$,$,$,$,$,$); -#7938=IFCMATERIALPROFILESET($,$,(#7940),$); -#7939=IFCRELASSOCIATESMATERIAL('0WBoZS_054VBrDtjstC5IZ',$,$,$,(#7937),#7938); -#7940=IFCMATERIALPROFILE($,$,#17,#7936,$,$); -#7941=IFCMEMBERTYPE('2ekzVPDNn0VPvtOkKCSiXs',$,'80-40-4.0',$,$,$,$,$,$,$); -#7942=IFCMATERIALPROFILESET($,$,(#7944),$); -#7943=IFCRELASSOCIATESMATERIAL('1BlNR8$lT4HRM4CBycZbjd',$,$,$,(#7941),#7942); -#7944=IFCMATERIALPROFILE($,$,#17,#7936,$,$); -#7945=IFCCOLUMNTYPE('1sWvxiDiz5tvzwou74CvB9',$,'80-40-4.0',$,$,$,$,$,$,$); -#7946=IFCMATERIALPROFILESET($,$,(#7948),$); -#7947=IFCRELASSOCIATESMATERIAL('1bfGlylozDc8T4Cp2OoMCY',$,$,$,(#7945),#7946); -#7948=IFCMATERIALPROFILE($,$,#17,#7936,$,$); -#7949=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,80.,5.,$,$); -#7950=IFCBEAMTYPE('2CMvAQ1fn87xbEIzvGFeaE',$,'80-40-5.0',$,$,$,$,$,$,$); -#7951=IFCMATERIALPROFILESET($,$,(#7953),$); -#7952=IFCRELASSOCIATESMATERIAL('0BE1CfbpDFXR0yltmvPdd0',$,$,$,(#7950),#7951); -#7953=IFCMATERIALPROFILE($,$,#17,#7949,$,$); -#7954=IFCMEMBERTYPE('0fpbUJrzDAShdEWB9MyiPB',$,'80-40-5.0',$,$,$,$,$,$,$); -#7955=IFCMATERIALPROFILESET($,$,(#7957),$); -#7956=IFCRELASSOCIATESMATERIAL('0jGo3Vcdj4fQhaqaIaz0BD',$,$,$,(#7954),#7955); -#7957=IFCMATERIALPROFILE($,$,#17,#7949,$,$); -#7958=IFCCOLUMNTYPE('0b70SHfsvB$xz2K80BlXGp',$,'80-40-5.0',$,$,$,$,$,$,$); -#7959=IFCMATERIALPROFILESET($,$,(#7961),$); -#7960=IFCRELASSOCIATESMATERIAL('1jZk9SvTPEJQRKBkd2zOdP',$,$,$,(#7958),#7959); -#7961=IFCMATERIALPROFILE($,$,#17,#7949,$,$); -#7962=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,80.,6.3,$,$); -#7963=IFCBEAMTYPE('1gjpmFAtb00RfKTWJjdlbK',$,'80-40-6.3',$,$,$,$,$,$,$); -#7964=IFCMATERIALPROFILESET($,$,(#7966),$); -#7965=IFCRELASSOCIATESMATERIAL('2zXxB5yu53khRlSJV6J45_',$,$,$,(#7963),#7964); -#7966=IFCMATERIALPROFILE($,$,#17,#7962,$,$); -#7967=IFCMEMBERTYPE('0KLmNqY8rCnQtuFK5Doh$d',$,'80-40-6.3',$,$,$,$,$,$,$); -#7968=IFCMATERIALPROFILESET($,$,(#7970),$); -#7969=IFCRELASSOCIATESMATERIAL('1$iemGLVT7YgjcImgTGYKf',$,$,$,(#7967),#7968); -#7970=IFCMATERIALPROFILE($,$,#17,#7962,$,$); -#7971=IFCCOLUMNTYPE('2W3zz5Utn1gQBQRHyJvA19',$,'80-40-6.3',$,$,$,$,$,$,$); -#7972=IFCMATERIALPROFILESET($,$,(#7974),$); -#7973=IFCRELASSOCIATESMATERIAL('2e$Q7U56D2Bh_6dCtGwNaN',$,$,$,(#7971),#7972); -#7974=IFCMATERIALPROFILE($,$,#17,#7962,$,$); -#7975=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,40.,80.,8.,$,$); -#7976=IFCBEAMTYPE('2VReSjvan13x4bft$YnJCc',$,'80-40-8.0',$,$,$,$,$,$,$); -#7977=IFCMATERIALPROFILESET($,$,(#7979),$); -#7978=IFCRELASSOCIATESMATERIAL('1XYX4ekRT4GQ_Sf5rXhNsd',$,$,$,(#7976),#7977); -#7979=IFCMATERIALPROFILE($,$,#17,#7975,$,$); -#7980=IFCMEMBERTYPE('0EX0DDxJH7cP2NqoUOc7rf',$,'80-40-8.0',$,$,$,$,$,$,$); -#7981=IFCMATERIALPROFILESET($,$,(#7983),$); -#7982=IFCRELASSOCIATESMATERIAL('1JcL$EsAz5agDPKPd5HOHs',$,$,$,(#7980),#7981); -#7983=IFCMATERIALPROFILE($,$,#17,#7975,$,$); -#7984=IFCCOLUMNTYPE('0ygQQfzfTAyxtOBoI$Ax93',$,'80-40-8.0',$,$,$,$,$,$,$); -#7985=IFCMATERIALPROFILESET($,$,(#7987),$); -#7986=IFCRELASSOCIATESMATERIAL('0lInEv0qnDJPfyXvgpQrpk',$,$,$,(#7984),#7985); -#7987=IFCMATERIALPROFILE($,$,#17,#7975,$,$); -#7988=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,90.,3.2,$,$); -#7989=IFCBEAMTYPE('0XtZ1JuKjAXwiHdPSIUMKJ',$,'90-50-3.2',$,$,$,$,$,$,$); -#7990=IFCMATERIALPROFILESET($,$,(#7992),$); -#7991=IFCRELASSOCIATESMATERIAL('0YDe$L88HAQ9gyI7_WR6CA',$,$,$,(#7989),#7990); -#7992=IFCMATERIALPROFILE($,$,#17,#7988,$,$); -#7993=IFCMEMBERTYPE('2SCWrDSgX78OHAhob$a7Au',$,'90-50-3.2',$,$,$,$,$,$,$); -#7994=IFCMATERIALPROFILESET($,$,(#7996),$); -#7995=IFCRELASSOCIATESMATERIAL('1FkWfj9nD2deADxSb0hogu',$,$,$,(#7993),#7994); -#7996=IFCMATERIALPROFILE($,$,#17,#7988,$,$); -#7997=IFCCOLUMNTYPE('1ADc07qRD4Dhxr0rdyDr8u',$,'90-50-3.2',$,$,$,$,$,$,$); -#7998=IFCMATERIALPROFILESET($,$,(#8000),$); -#7999=IFCRELASSOCIATESMATERIAL('2cLKqUbYX4l8Ob0EB4sOPQ',$,$,$,(#7997),#7998); -#8000=IFCMATERIALPROFILE($,$,#17,#7988,$,$); -#8001=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,90.,4.,$,$); -#8002=IFCBEAMTYPE('11fsUjH5j1teNxI0FxXXeB',$,'90-50-4.0',$,$,$,$,$,$,$); -#8003=IFCMATERIALPROFILESET($,$,(#8005),$); -#8004=IFCRELASSOCIATESMATERIAL('3jh7DloenA0RenGaXDrSwT',$,$,$,(#8002),#8003); -#8005=IFCMATERIALPROFILE($,$,#17,#8001,$,$); -#8006=IFCMEMBERTYPE('0u5KCaR9b1BAXxwUYO7i4p',$,'90-50-4.0',$,$,$,$,$,$,$); -#8007=IFCMATERIALPROFILESET($,$,(#8009),$); -#8008=IFCRELASSOCIATESMATERIAL('2FVZro9cnD$xkRaEuhLpCu',$,$,$,(#8006),#8007); -#8009=IFCMATERIALPROFILE($,$,#17,#8001,$,$); -#8010=IFCCOLUMNTYPE('0QhPAEupj0owVHf5V8Gj1X',$,'90-50-4.0',$,$,$,$,$,$,$); -#8011=IFCMATERIALPROFILESET($,$,(#8013),$); -#8012=IFCRELASSOCIATESMATERIAL('2$eure2tj7Ie0BajTwDge3',$,$,$,(#8010),#8011); -#8013=IFCMATERIALPROFILE($,$,#17,#8001,$,$); -#8014=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,90.,5.,$,$); -#8015=IFCBEAMTYPE('1zJNmrl2r9JxpUU8izTxY2',$,'90-50-5.0',$,$,$,$,$,$,$); -#8016=IFCMATERIALPROFILESET($,$,(#8018),$); -#8017=IFCRELASSOCIATESMATERIAL('2X9C7jJ790GevNsaSJou8V',$,$,$,(#8015),#8016); -#8018=IFCMATERIALPROFILE($,$,#17,#8014,$,$); -#8019=IFCMEMBERTYPE('1TP3vCxgv5j85RkBFv_U9I',$,'90-50-5.0',$,$,$,$,$,$,$); -#8020=IFCMATERIALPROFILESET($,$,(#8022),$); -#8021=IFCRELASSOCIATESMATERIAL('17BOYvcJ56VBf5gfVJXm03',$,$,$,(#8019),#8020); -#8022=IFCMATERIALPROFILE($,$,#17,#8014,$,$); -#8023=IFCCOLUMNTYPE('3zVP6StAD1TPydTqIJUFzu',$,'90-50-5.0',$,$,$,$,$,$,$); -#8024=IFCMATERIALPROFILESET($,$,(#8026),$); -#8025=IFCRELASSOCIATESMATERIAL('3fR242f2L0VRB$xpNsknhn',$,$,$,(#8023),#8024); -#8026=IFCMATERIALPROFILE($,$,#17,#8014,$,$); -#8027=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,90.,6.3,$,$); -#8028=IFCBEAMTYPE('1qwiqZei14T8CFTOH_rkOO',$,'90-50-6.3',$,$,$,$,$,$,$); -#8029=IFCMATERIALPROFILESET($,$,(#8031),$); -#8030=IFCRELASSOCIATESMATERIAL('3Pm9aK0aP3nOyhYZHDmDDM',$,$,$,(#8028),#8029); -#8031=IFCMATERIALPROFILE($,$,#17,#8027,$,$); -#8032=IFCMEMBERTYPE('2F8B1GHcPDARIXIFmRY7HJ',$,'90-50-6.3',$,$,$,$,$,$,$); -#8033=IFCMATERIALPROFILESET($,$,(#8035),$); -#8034=IFCRELASSOCIATESMATERIAL('29MU5S5ar69fjsQ8NQdq02',$,$,$,(#8032),#8033); -#8035=IFCMATERIALPROFILE($,$,#17,#8027,$,$); -#8036=IFCCOLUMNTYPE('1ncqS4KmH1Xh__dLxXvNBF',$,'90-50-6.3',$,$,$,$,$,$,$); -#8037=IFCMATERIALPROFILESET($,$,(#8039),$); -#8038=IFCRELASSOCIATESMATERIAL('3hrTOWYsv3X963gRNieKTr',$,$,$,(#8036),#8037); -#8039=IFCMATERIALPROFILE($,$,#17,#8027,$,$); -#8040=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,90.,8.,$,$); -#8041=IFCBEAMTYPE('1$RbOVrN16zReI1FZb$qNr',$,'90-50-8.0',$,$,$,$,$,$,$); -#8042=IFCMATERIALPROFILESET($,$,(#8044),$); -#8043=IFCRELASSOCIATESMATERIAL('38FcA$8WT9jv1$zLSg0RFu',$,$,$,(#8041),#8042); -#8044=IFCMATERIALPROFILE($,$,#17,#8040,$,$); -#8045=IFCMEMBERTYPE('0H9UbI4dv70A0GSHKeLt$A',$,'90-50-8.0',$,$,$,$,$,$,$); -#8046=IFCMATERIALPROFILESET($,$,(#8048),$); -#8047=IFCRELASSOCIATESMATERIAL('2em2rxt9rD8wVP_1I62ZV5',$,$,$,(#8045),#8046); -#8048=IFCMATERIALPROFILE($,$,#17,#8040,$,$); -#8049=IFCCOLUMNTYPE('1RW7puPSLAqBnnyETCviQG',$,'90-50-8.0',$,$,$,$,$,$,$); -#8050=IFCMATERIALPROFILESET($,$,(#8052),$); -#8051=IFCRELASSOCIATESMATERIAL('3a0PqURwj7ghoa4BoNWMfs',$,$,$,(#8049),#8050); -#8052=IFCMATERIALPROFILE($,$,#17,#8040,$,$); -#8053=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,100.,3.2,$,$); -#8054=IFCBEAMTYPE('2P59qLdV5F6hu9K2SmdN2S',$,'100-50-3.2',$,$,$,$,$,$,$); -#8055=IFCMATERIALPROFILESET($,$,(#8057),$); -#8056=IFCRELASSOCIATESMATERIAL('0DqVtd_2n31OoGT$DoXdTx',$,$,$,(#8054),#8055); -#8057=IFCMATERIALPROFILE($,$,#17,#8053,$,$); -#8058=IFCMEMBERTYPE('2TW5lFYgT8wB_3CNDgwkc$',$,'100-50-3.2',$,$,$,$,$,$,$); -#8059=IFCMATERIALPROFILESET($,$,(#8061),$); -#8060=IFCRELASSOCIATESMATERIAL('15ZTAgGyH4hPTXI0B_sIyZ',$,$,$,(#8058),#8059); -#8061=IFCMATERIALPROFILE($,$,#17,#8053,$,$); -#8062=IFCCOLUMNTYPE('1pIEjH8Lj8zAOHYdYBHi5y',$,'100-50-3.2',$,$,$,$,$,$,$); -#8063=IFCMATERIALPROFILESET($,$,(#8065),$); -#8064=IFCRELASSOCIATESMATERIAL('3XtVRTDFP0kOt9ugWVEq2m',$,$,$,(#8062),#8063); -#8065=IFCMATERIALPROFILE($,$,#17,#8053,$,$); -#8066=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,100.,4.,$,$); -#8067=IFCBEAMTYPE('2jOuSeR89DX9IMTG1XBxwa',$,'100-50-4.0',$,$,$,$,$,$,$); -#8068=IFCMATERIALPROFILESET($,$,(#8070),$); -#8069=IFCRELASSOCIATESMATERIAL('2ezr2htJH0DPUwYo0A390l',$,$,$,(#8067),#8068); -#8070=IFCMATERIALPROFILE($,$,#17,#8066,$,$); -#8071=IFCMEMBERTYPE('2hL4b8IfD5ixl6aYaonqf9',$,'100-50-4.0',$,$,$,$,$,$,$); -#8072=IFCMATERIALPROFILESET($,$,(#8074),$); -#8073=IFCRELASSOCIATESMATERIAL('3WLRPuWX59ePvozd2cWO2X',$,$,$,(#8071),#8072); -#8074=IFCMATERIALPROFILE($,$,#17,#8066,$,$); -#8075=IFCCOLUMNTYPE('0PDvGiKjv5pwDatXxTRovA',$,'100-50-4.0',$,$,$,$,$,$,$); -#8076=IFCMATERIALPROFILESET($,$,(#8078),$); -#8077=IFCRELASSOCIATESMATERIAL('3BB4hxuYn0Zv4DFx3wNSx6',$,$,$,(#8075),#8076); -#8078=IFCMATERIALPROFILE($,$,#17,#8066,$,$); -#8079=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,100.,5.,$,$); -#8080=IFCBEAMTYPE('0y6swUjZr8kvUnwN7$gw8b',$,'100-50-5.0',$,$,$,$,$,$,$); -#8081=IFCMATERIALPROFILESET($,$,(#8083),$); -#8082=IFCRELASSOCIATESMATERIAL('3PclqKyTL0IuO4eDBeI$Tn',$,$,$,(#8080),#8081); -#8083=IFCMATERIALPROFILE($,$,#17,#8079,$,$); -#8084=IFCMEMBERTYPE('1Q5oUBf4r2pBNJEngIQE7l',$,'100-50-5.0',$,$,$,$,$,$,$); -#8085=IFCMATERIALPROFILESET($,$,(#8087),$); -#8086=IFCRELASSOCIATESMATERIAL('2oPvyt7K94MB1Vyryp_WhO',$,$,$,(#8084),#8085); -#8087=IFCMATERIALPROFILE($,$,#17,#8079,$,$); -#8088=IFCCOLUMNTYPE('11Co16ykD7LBwkwM3uKjQt',$,'100-50-5.0',$,$,$,$,$,$,$); -#8089=IFCMATERIALPROFILESET($,$,(#8091),$); -#8090=IFCRELASSOCIATESMATERIAL('1cZXtrPuf9Ux1vJVpmF9Vf',$,$,$,(#8088),#8089); -#8091=IFCMATERIALPROFILE($,$,#17,#8079,$,$); -#8092=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,100.,6.3,$,$); -#8093=IFCBEAMTYPE('26mQ99y$H2SuxMoOEr9zB5',$,'100-50-6.3',$,$,$,$,$,$,$); -#8094=IFCMATERIALPROFILESET($,$,(#8096),$); -#8095=IFCRELASSOCIATESMATERIAL('3i7$isKKb8ygKoT1m5mTcq',$,$,$,(#8093),#8094); -#8096=IFCMATERIALPROFILE($,$,#17,#8092,$,$); -#8097=IFCMEMBERTYPE('18r7Xx_UXDRBHgndHrwk3L',$,'100-50-6.3',$,$,$,$,$,$,$); -#8098=IFCMATERIALPROFILESET($,$,(#8100),$); -#8099=IFCRELASSOCIATESMATERIAL('3v91KYiQH2$v0EgRjwlelp',$,$,$,(#8097),#8098); -#8100=IFCMATERIALPROFILE($,$,#17,#8092,$,$); -#8101=IFCCOLUMNTYPE('1PRdEmTMHD9eFK30rGleAs',$,'100-50-6.3',$,$,$,$,$,$,$); -#8102=IFCMATERIALPROFILESET($,$,(#8104),$); -#8103=IFCRELASSOCIATESMATERIAL('1NdMdxgGL6zAdTGtM4kVbk',$,$,$,(#8101),#8102); -#8104=IFCMATERIALPROFILE($,$,#17,#8092,$,$); -#8105=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,50.,100.,8.,$,$); -#8106=IFCBEAMTYPE('1bLyjmNhP2Mx1RGuF423E0',$,'100-50-8.0',$,$,$,$,$,$,$); -#8107=IFCMATERIALPROFILESET($,$,(#8109),$); -#8108=IFCRELASSOCIATESMATERIAL('2lJhjWuVf8MRVIpONv1kMV',$,$,$,(#8106),#8107); -#8109=IFCMATERIALPROFILE($,$,#17,#8105,$,$); -#8110=IFCMEMBERTYPE('2g_rfbEfH7BOLu91qTzkJ6',$,'100-50-8.0',$,$,$,$,$,$,$); -#8111=IFCMATERIALPROFILESET($,$,(#8113),$); -#8112=IFCRELASSOCIATESMATERIAL('0gOXeUSif8hOOBxWgPv4FF',$,$,$,(#8110),#8111); -#8113=IFCMATERIALPROFILE($,$,#17,#8105,$,$); -#8114=IFCCOLUMNTYPE('12I_eB5eDChfTKWgvaqQfo',$,'100-50-8.0',$,$,$,$,$,$,$); -#8115=IFCMATERIALPROFILESET($,$,(#8117),$); -#8116=IFCRELASSOCIATESMATERIAL('2XB5H$LY17ZgUX8dVxCdam',$,$,$,(#8114),#8115); -#8117=IFCMATERIALPROFILE($,$,#17,#8105,$,$); -#8118=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,100.,3.2,$,$); -#8119=IFCBEAMTYPE('3YjMhtR7L71Qc75eL4ZjcQ',$,'100-60-3.2',$,$,$,$,$,$,$); -#8120=IFCMATERIALPROFILESET($,$,(#8122),$); -#8121=IFCRELASSOCIATESMATERIAL('2FwuLAdST4_wOIc$luzvuW',$,$,$,(#8119),#8120); -#8122=IFCMATERIALPROFILE($,$,#17,#8118,$,$); -#8123=IFCMEMBERTYPE('0Fm045EZn5GA9aUtukg1RY',$,'100-60-3.2',$,$,$,$,$,$,$); -#8124=IFCMATERIALPROFILESET($,$,(#8126),$); -#8125=IFCRELASSOCIATESMATERIAL('3Tjhu$HJ5DRh758TVWaj7k',$,$,$,(#8123),#8124); -#8126=IFCMATERIALPROFILE($,$,#17,#8118,$,$); -#8127=IFCCOLUMNTYPE('0fIciKn094oeg39uuL2cOE',$,'100-60-3.2',$,$,$,$,$,$,$); -#8128=IFCMATERIALPROFILESET($,$,(#8130),$); -#8129=IFCRELASSOCIATESMATERIAL('29ImNhIQTBTR1xWxLnfNB4',$,$,$,(#8127),#8128); -#8130=IFCMATERIALPROFILE($,$,#17,#8118,$,$); -#8131=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,100.,4.,$,$); -#8132=IFCBEAMTYPE('317dRlLJbAxO4F$KZbXiT4',$,'100-60-4.0',$,$,$,$,$,$,$); -#8133=IFCMATERIALPROFILESET($,$,(#8135),$); -#8134=IFCRELASSOCIATESMATERIAL('1mBjQs$452NPevW5uL44uq',$,$,$,(#8132),#8133); -#8135=IFCMATERIALPROFILE($,$,#17,#8131,$,$); -#8136=IFCMEMBERTYPE('1DaiYWXK9BvAmhRM_ymP_B',$,'100-60-4.0',$,$,$,$,$,$,$); -#8137=IFCMATERIALPROFILESET($,$,(#8139),$); -#8138=IFCRELASSOCIATESMATERIAL('1gAbiSROT6Ah2iIUc5JD8o',$,$,$,(#8136),#8137); -#8139=IFCMATERIALPROFILE($,$,#17,#8131,$,$); -#8140=IFCCOLUMNTYPE('3P8EVyC2X6pQ5Y0OQ8sWCD',$,'100-60-4.0',$,$,$,$,$,$,$); -#8141=IFCMATERIALPROFILESET($,$,(#8143),$); -#8142=IFCRELASSOCIATESMATERIAL('0jQk6Ybqv3bhK3sMlLkXKi',$,$,$,(#8140),#8141); -#8143=IFCMATERIALPROFILE($,$,#17,#8131,$,$); -#8144=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,100.,5.,$,$); -#8145=IFCBEAMTYPE('1rfXn3n7r8lAjlIfhcp4VO',$,'100-60-5.0',$,$,$,$,$,$,$); -#8146=IFCMATERIALPROFILESET($,$,(#8148),$); -#8147=IFCRELASSOCIATESMATERIAL('1VBLlarG512fxwAL09y6YQ',$,$,$,(#8145),#8146); -#8148=IFCMATERIALPROFILE($,$,#17,#8144,$,$); -#8149=IFCMEMBERTYPE('0rpvokc1zEuPk2u6ox0KcH',$,'100-60-5.0',$,$,$,$,$,$,$); -#8150=IFCMATERIALPROFILESET($,$,(#8152),$); -#8151=IFCRELASSOCIATESMATERIAL('2BdQ8D3xL4sQu4KVIhD4Pv',$,$,$,(#8149),#8150); -#8152=IFCMATERIALPROFILE($,$,#17,#8144,$,$); -#8153=IFCCOLUMNTYPE('1D_sdAGxj73ArqZf7qvETC',$,'100-60-5.0',$,$,$,$,$,$,$); -#8154=IFCMATERIALPROFILESET($,$,(#8156),$); -#8155=IFCRELASSOCIATESMATERIAL('0ALwEAypz6Pxq1WtAc0I4d',$,$,$,(#8153),#8154); -#8156=IFCMATERIALPROFILE($,$,#17,#8144,$,$); -#8157=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,100.,6.3,$,$); -#8158=IFCBEAMTYPE('3js86PNb9Dp8F9VXA6QjVa',$,'100-60-6.3',$,$,$,$,$,$,$); -#8159=IFCMATERIALPROFILESET($,$,(#8161),$); -#8160=IFCRELASSOCIATESMATERIAL('3T3h8d_EP8iANw9z88AD2x',$,$,$,(#8158),#8159); -#8161=IFCMATERIALPROFILE($,$,#17,#8157,$,$); -#8162=IFCMEMBERTYPE('2B65yJmQ56SOYDgV5$MR4z',$,'100-60-6.3',$,$,$,$,$,$,$); -#8163=IFCMATERIALPROFILESET($,$,(#8165),$); -#8164=IFCRELASSOCIATESMATERIAL('2v_lLc4vL87hMQ7JnujLA0',$,$,$,(#8162),#8163); -#8165=IFCMATERIALPROFILE($,$,#17,#8157,$,$); -#8166=IFCCOLUMNTYPE('3XsnxCP4PBxfvIUyc11wx8',$,'100-60-6.3',$,$,$,$,$,$,$); -#8167=IFCMATERIALPROFILESET($,$,(#8169),$); -#8168=IFCRELASSOCIATESMATERIAL('0G0kG8OXzCwPC7NbyBKf5I',$,$,$,(#8166),#8167); -#8169=IFCMATERIALPROFILE($,$,#17,#8157,$,$); -#8170=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,100.,8.,$,$); -#8171=IFCBEAMTYPE('3wwYMCS1D86RU1zk_eYAcx',$,'100-60-8.0',$,$,$,$,$,$,$); -#8172=IFCMATERIALPROFILESET($,$,(#8174),$); -#8173=IFCRELASSOCIATESMATERIAL('3iZvQB7nT4f90ScCJaxQEe',$,$,$,(#8171),#8172); -#8174=IFCMATERIALPROFILE($,$,#17,#8170,$,$); -#8175=IFCMEMBERTYPE('1o$AB7YNjDeeiat$CNYM9S',$,'100-60-8.0',$,$,$,$,$,$,$); -#8176=IFCMATERIALPROFILESET($,$,(#8178),$); -#8177=IFCRELASSOCIATESMATERIAL('01b1UjOBz5vP7_46ob2HOr',$,$,$,(#8175),#8176); -#8178=IFCMATERIALPROFILE($,$,#17,#8170,$,$); -#8179=IFCCOLUMNTYPE('0T5bvJZ6D8XPdmaBArkM9v',$,'100-60-8.0',$,$,$,$,$,$,$); -#8180=IFCMATERIALPROFILESET($,$,(#8182),$); -#8181=IFCRELASSOCIATESMATERIAL('1jktrYHMT5wRXv5k9daLZD',$,$,$,(#8179),#8180); -#8182=IFCMATERIALPROFILE($,$,#17,#8170,$,$); -#8183=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,120.,4.,$,$); -#8184=IFCBEAMTYPE('3AGWiDEX1AZRehmZMySqfI',$,'120-60-4.0',$,$,$,$,$,$,$); -#8185=IFCMATERIALPROFILESET($,$,(#8187),$); -#8186=IFCRELASSOCIATESMATERIAL('3F2dtojBr3EfMCQYoXTqJy',$,$,$,(#8184),#8185); -#8187=IFCMATERIALPROFILE($,$,#17,#8183,$,$); -#8188=IFCMEMBERTYPE('3ABICw2vjBWug0u9ljaAIs',$,'120-60-4.0',$,$,$,$,$,$,$); -#8189=IFCMATERIALPROFILESET($,$,(#8191),$); -#8190=IFCRELASSOCIATESMATERIAL('1IBmDgdAj1IfihqrvzerMk',$,$,$,(#8188),#8189); -#8191=IFCMATERIALPROFILE($,$,#17,#8183,$,$); -#8192=IFCCOLUMNTYPE('1NjwRT_TL8zfNnwvr85L4F',$,'120-60-4.0',$,$,$,$,$,$,$); -#8193=IFCMATERIALPROFILESET($,$,(#8195),$); -#8194=IFCRELASSOCIATESMATERIAL('0IuXkWJ2rBEP7IYMB5XgTf',$,$,$,(#8192),#8193); -#8195=IFCMATERIALPROFILE($,$,#17,#8183,$,$); -#8196=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,120.,5.,$,$); -#8197=IFCBEAMTYPE('1JKiwqGRn4VgVhnz$2r$4H',$,'120-60-5.0',$,$,$,$,$,$,$); -#8198=IFCMATERIALPROFILESET($,$,(#8200),$); -#8199=IFCRELASSOCIATESMATERIAL('2MnvWQ4tH3CxWQSxcS_Xjf',$,$,$,(#8197),#8198); -#8200=IFCMATERIALPROFILE($,$,#17,#8196,$,$); -#8201=IFCMEMBERTYPE('1LVrrG82v6089AygsC43iy',$,'120-60-5.0',$,$,$,$,$,$,$); -#8202=IFCMATERIALPROFILESET($,$,(#8204),$); -#8203=IFCRELASSOCIATESMATERIAL('3nBvOe$1zEkfKC8z449wy2',$,$,$,(#8201),#8202); -#8204=IFCMATERIALPROFILE($,$,#17,#8196,$,$); -#8205=IFCCOLUMNTYPE('1U9kPglOf5Ux4Rs2JlIagF',$,'120-60-5.0',$,$,$,$,$,$,$); -#8206=IFCMATERIALPROFILESET($,$,(#8208),$); -#8207=IFCRELASSOCIATESMATERIAL('3CN3v_qwL1VRbq1a1LAyzQ',$,$,$,(#8205),#8206); -#8208=IFCMATERIALPROFILE($,$,#17,#8196,$,$); -#8209=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,120.,6.3,$,$); -#8210=IFCBEAMTYPE('2yhlOvZ816muRnJZG2JQPY',$,'120-60-6.3',$,$,$,$,$,$,$); -#8211=IFCMATERIALPROFILESET($,$,(#8213),$); -#8212=IFCRELASSOCIATESMATERIAL('1m0GVOfWD0_gXJ58SJYcrt',$,$,$,(#8210),#8211); -#8213=IFCMATERIALPROFILE($,$,#17,#8209,$,$); -#8214=IFCMEMBERTYPE('24BRFCVT9CaPzHeHusrIzY',$,'120-60-6.3',$,$,$,$,$,$,$); -#8215=IFCMATERIALPROFILESET($,$,(#8217),$); -#8216=IFCRELASSOCIATESMATERIAL('1FVmNDU0z67vEOSVmTOIk3',$,$,$,(#8214),#8215); -#8217=IFCMATERIALPROFILE($,$,#17,#8209,$,$); -#8218=IFCCOLUMNTYPE('21GrAUev975AlXg6PjpHqI',$,'120-60-6.3',$,$,$,$,$,$,$); -#8219=IFCMATERIALPROFILESET($,$,(#8221),$); -#8220=IFCRELASSOCIATESMATERIAL('2GSZQRHSrAZvA2xQWtYNCI',$,$,$,(#8218),#8219); -#8221=IFCMATERIALPROFILE($,$,#17,#8209,$,$); -#8222=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,120.,8.,$,$); -#8223=IFCBEAMTYPE('0h2zFZOPX2Ze3LkntfCcx1',$,'120-60-8.0',$,$,$,$,$,$,$); -#8224=IFCMATERIALPROFILESET($,$,(#8226),$); -#8225=IFCRELASSOCIATESMATERIAL('1kbI_xb3z7$BhDZ7jdxcR8',$,$,$,(#8223),#8224); -#8226=IFCMATERIALPROFILE($,$,#17,#8222,$,$); -#8227=IFCMEMBERTYPE('0fSUDTgyzEr9Z63Z97YznP',$,'120-60-8.0',$,$,$,$,$,$,$); -#8228=IFCMATERIALPROFILESET($,$,(#8230),$); -#8229=IFCRELASSOCIATESMATERIAL('1GWMgEm0TByenzM3I01Dl6',$,$,$,(#8227),#8228); -#8230=IFCMATERIALPROFILE($,$,#17,#8222,$,$); -#8231=IFCCOLUMNTYPE('3Z4hrleZ9Fiep7gNrmSFwT',$,'120-60-8.0',$,$,$,$,$,$,$); -#8232=IFCMATERIALPROFILESET($,$,(#8234),$); -#8233=IFCRELASSOCIATESMATERIAL('32hYjwRzHFQRKVZ7T$Ryrl',$,$,$,(#8231),#8232); -#8234=IFCMATERIALPROFILE($,$,#17,#8222,$,$); -#8235=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,60.,120.,10.,$,$); -#8236=IFCBEAMTYPE('1ZweU2KHnDMhZxCt0EYhEE',$,'120-60-10.0',$,$,$,$,$,$,$); -#8237=IFCMATERIALPROFILESET($,$,(#8239),$); -#8238=IFCRELASSOCIATESMATERIAL('0sftsgRiP1$gvvbZ5Jy2Yx',$,$,$,(#8236),#8237); -#8239=IFCMATERIALPROFILE($,$,#17,#8235,$,$); -#8240=IFCMEMBERTYPE('10OkoVIyP0nAnqY9wpY3lj',$,'120-60-10.0',$,$,$,$,$,$,$); -#8241=IFCMATERIALPROFILESET($,$,(#8243),$); -#8242=IFCRELASSOCIATESMATERIAL('0p0whZpbrFcRtvVmTNDQjV',$,$,$,(#8240),#8241); -#8243=IFCMATERIALPROFILE($,$,#17,#8235,$,$); -#8244=IFCCOLUMNTYPE('1fvMoxFyL2E9fctzG7XJt6',$,'120-60-10.0',$,$,$,$,$,$,$); -#8245=IFCMATERIALPROFILESET($,$,(#8247),$); -#8246=IFCRELASSOCIATESMATERIAL('14craH$XD2dva3DBlFztuF',$,$,$,(#8244),#8245); -#8247=IFCMATERIALPROFILE($,$,#17,#8235,$,$); -#8248=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,120.,4.,$,$); -#8249=IFCBEAMTYPE('2kZVQ6pZ52peyhKhlXEzbz',$,'120-80-4.0',$,$,$,$,$,$,$); -#8250=IFCMATERIALPROFILESET($,$,(#8252),$); -#8251=IFCRELASSOCIATESMATERIAL('1F1ODVOWb7QB4Bu8yWFgzI',$,$,$,(#8249),#8250); -#8252=IFCMATERIALPROFILE($,$,#17,#8248,$,$); -#8253=IFCMEMBERTYPE('1GCRbyFU14MhcbPAajfyQv',$,'120-80-4.0',$,$,$,$,$,$,$); -#8254=IFCMATERIALPROFILESET($,$,(#8256),$); -#8255=IFCRELASSOCIATESMATERIAL('1S0u$7luPCKBI2GNtEXCaz',$,$,$,(#8253),#8254); -#8256=IFCMATERIALPROFILE($,$,#17,#8248,$,$); -#8257=IFCCOLUMNTYPE('2EiiZhhL18NBud7bgkfrZF',$,'120-80-4.0',$,$,$,$,$,$,$); -#8258=IFCMATERIALPROFILESET($,$,(#8260),$); -#8259=IFCRELASSOCIATESMATERIAL('0UOKuXaYvF4PWSupktn10w',$,$,$,(#8257),#8258); -#8260=IFCMATERIALPROFILE($,$,#17,#8248,$,$); -#8261=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,120.,5.,$,$); -#8262=IFCBEAMTYPE('329sU6peX0_ueu850dz1oy',$,'120-80-5.0',$,$,$,$,$,$,$); -#8263=IFCMATERIALPROFILESET($,$,(#8265),$); -#8264=IFCRELASSOCIATESMATERIAL('2RshBleQP4JwnqbOmFE6up',$,$,$,(#8262),#8263); -#8265=IFCMATERIALPROFILE($,$,#17,#8261,$,$); -#8266=IFCMEMBERTYPE('2LGV0m6HPFGvKTvWohjyNJ',$,'120-80-5.0',$,$,$,$,$,$,$); -#8267=IFCMATERIALPROFILESET($,$,(#8269),$); -#8268=IFCRELASSOCIATESMATERIAL('35ddBmVvf7Phdjo9cycbA$',$,$,$,(#8266),#8267); -#8269=IFCMATERIALPROFILE($,$,#17,#8261,$,$); -#8270=IFCCOLUMNTYPE('0GmQ4GKb9ABxvtVxV43AfP',$,'120-80-5.0',$,$,$,$,$,$,$); -#8271=IFCMATERIALPROFILESET($,$,(#8273),$); -#8272=IFCRELASSOCIATESMATERIAL('2ojGj3kI5Aswb2uygW70Zc',$,$,$,(#8270),#8271); -#8273=IFCMATERIALPROFILE($,$,#17,#8261,$,$); -#8274=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,120.,6.3,$,$); -#8275=IFCBEAMTYPE('11sWx3VBT2eO4GFdqyDAGB',$,'120-80-6.3',$,$,$,$,$,$,$); -#8276=IFCMATERIALPROFILESET($,$,(#8278),$); -#8277=IFCRELASSOCIATESMATERIAL('02liKQfu9Eug82cl4cVw3m',$,$,$,(#8275),#8276); -#8278=IFCMATERIALPROFILE($,$,#17,#8274,$,$); -#8279=IFCMEMBERTYPE('2w_K78_9b3DvUWwkF_GPc3',$,'120-80-6.3',$,$,$,$,$,$,$); -#8280=IFCMATERIALPROFILESET($,$,(#8282),$); -#8281=IFCRELASSOCIATESMATERIAL('1JHHCtI2r8R96HTFehIth2',$,$,$,(#8279),#8280); -#8282=IFCMATERIALPROFILE($,$,#17,#8274,$,$); -#8283=IFCCOLUMNTYPE('3SnvfuYuL1q8ww$8xMsKt_',$,'120-80-6.3',$,$,$,$,$,$,$); -#8284=IFCMATERIALPROFILESET($,$,(#8286),$); -#8285=IFCRELASSOCIATESMATERIAL('3rSyrUq4f9ZvTHrHSHlqPK',$,$,$,(#8283),#8284); -#8286=IFCMATERIALPROFILE($,$,#17,#8274,$,$); -#8287=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,120.,8.,$,$); -#8288=IFCBEAMTYPE('3KCTcSGfHCSv_tzMrIz9TJ',$,'120-80-8.0',$,$,$,$,$,$,$); -#8289=IFCMATERIALPROFILESET($,$,(#8291),$); -#8290=IFCRELASSOCIATESMATERIAL('1ddldhyqj4exdw2WqEZNbO',$,$,$,(#8288),#8289); -#8291=IFCMATERIALPROFILE($,$,#17,#8287,$,$); -#8292=IFCMEMBERTYPE('25ta6KCFnDGAanjfO9Y6eO',$,'120-80-8.0',$,$,$,$,$,$,$); -#8293=IFCMATERIALPROFILESET($,$,(#8295),$); -#8294=IFCRELASSOCIATESMATERIAL('3RlY07GbPEGA_8$Skx0PyZ',$,$,$,(#8292),#8293); -#8295=IFCMATERIALPROFILE($,$,#17,#8287,$,$); -#8296=IFCCOLUMNTYPE('36l8csTPn67PyqlxTcMHRo',$,'120-80-8.0',$,$,$,$,$,$,$); -#8297=IFCMATERIALPROFILESET($,$,(#8299),$); -#8298=IFCRELASSOCIATESMATERIAL('1O9UsSFGb7Tw_qG46UBtBa',$,$,$,(#8296),#8297); -#8299=IFCMATERIALPROFILE($,$,#17,#8287,$,$); -#8300=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,120.,10.,$,$); -#8301=IFCBEAMTYPE('2QgrUX1RPA6xQCba_42eUb',$,'120-80-10.0',$,$,$,$,$,$,$); -#8302=IFCMATERIALPROFILESET($,$,(#8304),$); -#8303=IFCRELASSOCIATESMATERIAL('1bEHyo_A10ieuGzAXLF9AN',$,$,$,(#8301),#8302); -#8304=IFCMATERIALPROFILE($,$,#17,#8300,$,$); -#8305=IFCMEMBERTYPE('10IHGjNJLC$QieYeYMHOjg',$,'120-80-10.0',$,$,$,$,$,$,$); -#8306=IFCMATERIALPROFILESET($,$,(#8308),$); -#8307=IFCRELASSOCIATESMATERIAL('26xDPaH016k9Fx7d876f39',$,$,$,(#8305),#8306); -#8308=IFCMATERIALPROFILE($,$,#17,#8300,$,$); -#8309=IFCCOLUMNTYPE('35uaIH4QLD3QtTVd2dDBRJ',$,'120-80-10.0',$,$,$,$,$,$,$); -#8310=IFCMATERIALPROFILESET($,$,(#8312),$); -#8311=IFCRELASSOCIATESMATERIAL('2MHTKbZ51EXwSweqzb6hMT',$,$,$,(#8309),#8310); -#8312=IFCMATERIALPROFILE($,$,#17,#8300,$,$); -#8313=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,140.,4.,$,$); -#8314=IFCBEAMTYPE('3HTd7ZiTrF4PtyhHGtZQOs',$,'140-80-4.0',$,$,$,$,$,$,$); -#8315=IFCMATERIALPROFILESET($,$,(#8317),$); -#8316=IFCRELASSOCIATESMATERIAL('0BwzQIRLv0$PB_jpznYf_d',$,$,$,(#8314),#8315); -#8317=IFCMATERIALPROFILE($,$,#17,#8313,$,$); -#8318=IFCMEMBERTYPE('3uDmfTkh5A3earrnNe6BTM',$,'140-80-4.0',$,$,$,$,$,$,$); -#8319=IFCMATERIALPROFILESET($,$,(#8321),$); -#8320=IFCRELASSOCIATESMATERIAL('1ZTBcfTTj1BRhDUeNtSEXU',$,$,$,(#8318),#8319); -#8321=IFCMATERIALPROFILE($,$,#17,#8313,$,$); -#8322=IFCCOLUMNTYPE('31Yo95gRnDtutWmFmr3OSC',$,'140-80-4.0',$,$,$,$,$,$,$); -#8323=IFCMATERIALPROFILESET($,$,(#8325),$); -#8324=IFCRELASSOCIATESMATERIAL('24zvkpXA992eQP3SaiENio',$,$,$,(#8322),#8323); -#8325=IFCMATERIALPROFILE($,$,#17,#8313,$,$); -#8326=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,140.,5.,$,$); -#8327=IFCBEAMTYPE('053YHB0cT0AwAO7FZMvsVU',$,'140-80-5.0',$,$,$,$,$,$,$); -#8328=IFCMATERIALPROFILESET($,$,(#8330),$); -#8329=IFCRELASSOCIATESMATERIAL('3feFkJQ01BMhdJ0_yHGbCl',$,$,$,(#8327),#8328); -#8330=IFCMATERIALPROFILE($,$,#17,#8326,$,$); -#8331=IFCMEMBERTYPE('2AKkse2tj108bCGCbPJSKe',$,'140-80-5.0',$,$,$,$,$,$,$); -#8332=IFCMATERIALPROFILESET($,$,(#8334),$); -#8333=IFCRELASSOCIATESMATERIAL('1FDVH7m0r4XB2KmI$gCm96',$,$,$,(#8331),#8332); -#8334=IFCMATERIALPROFILE($,$,#17,#8326,$,$); -#8335=IFCCOLUMNTYPE('3Y2cWVqrT4Dx41$06yPbwK',$,'140-80-5.0',$,$,$,$,$,$,$); -#8336=IFCMATERIALPROFILESET($,$,(#8338),$); -#8337=IFCRELASSOCIATESMATERIAL('3tc2Ldndb5IAJgmR7C$oM3',$,$,$,(#8335),#8336); -#8338=IFCMATERIALPROFILE($,$,#17,#8326,$,$); -#8339=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,140.,6.3,$,$); -#8340=IFCBEAMTYPE('0Qe$8mywvEERUWAAVls1jN',$,'140-80-6.3',$,$,$,$,$,$,$); -#8341=IFCMATERIALPROFILESET($,$,(#8343),$); -#8342=IFCRELASSOCIATESMATERIAL('0wGYmC9b53BBQ_p5RWsfyf',$,$,$,(#8340),#8341); -#8343=IFCMATERIALPROFILE($,$,#17,#8339,$,$); -#8344=IFCMEMBERTYPE('1pu8y3Zjj4jBEmOCZVxUGU',$,'140-80-6.3',$,$,$,$,$,$,$); -#8345=IFCMATERIALPROFILESET($,$,(#8347),$); -#8346=IFCRELASSOCIATESMATERIAL('14fdngibD6o9H$ux9UXSRo',$,$,$,(#8344),#8345); -#8347=IFCMATERIALPROFILE($,$,#17,#8339,$,$); -#8348=IFCCOLUMNTYPE('2oTkwyTufC3hOdLifGMXJf',$,'140-80-6.3',$,$,$,$,$,$,$); -#8349=IFCMATERIALPROFILESET($,$,(#8351),$); -#8350=IFCRELASSOCIATESMATERIAL('2rsTNXM3TCsR4IJCSnhG8G',$,$,$,(#8348),#8349); -#8351=IFCMATERIALPROFILE($,$,#17,#8339,$,$); -#8352=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,140.,8.,$,$); -#8353=IFCBEAMTYPE('1Bz9G3dFrDdueNu3rMk7HD',$,'140-80-8.0',$,$,$,$,$,$,$); -#8354=IFCMATERIALPROFILESET($,$,(#8356),$); -#8355=IFCRELASSOCIATESMATERIAL('09Ng7AZ3P1XRHQXJqD8_jG',$,$,$,(#8353),#8354); -#8356=IFCMATERIALPROFILE($,$,#17,#8352,$,$); -#8357=IFCMEMBERTYPE('212jAqzDb0d9hDwOc1JJY9',$,'140-80-8.0',$,$,$,$,$,$,$); -#8358=IFCMATERIALPROFILESET($,$,(#8360),$); -#8359=IFCRELASSOCIATESMATERIAL('12q3VpHQ9ENx23XinPBQOj',$,$,$,(#8357),#8358); -#8360=IFCMATERIALPROFILE($,$,#17,#8352,$,$); -#8361=IFCCOLUMNTYPE('0oE__z9gb2RBuoBOsS9HbX',$,'140-80-8.0',$,$,$,$,$,$,$); -#8362=IFCMATERIALPROFILESET($,$,(#8364),$); -#8363=IFCRELASSOCIATESMATERIAL('0BbGWRYLr0kfI8Tg9whQQ0',$,$,$,(#8361),#8362); -#8364=IFCMATERIALPROFILE($,$,#17,#8352,$,$); -#8365=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,140.,10.,$,$); -#8366=IFCBEAMTYPE('3ULSd8xrT6MxMwiO1YU4MT',$,'140-80-10.0',$,$,$,$,$,$,$); -#8367=IFCMATERIALPROFILESET($,$,(#8369),$); -#8368=IFCRELASSOCIATESMATERIAL('22O3NDLon6Q9nknDiIFjaR',$,$,$,(#8366),#8367); -#8369=IFCMATERIALPROFILE($,$,#17,#8365,$,$); -#8370=IFCMEMBERTYPE('2_CBo7g$L0j96B9QlV0Uje',$,'140-80-10.0',$,$,$,$,$,$,$); -#8371=IFCMATERIALPROFILESET($,$,(#8373),$); -#8372=IFCRELASSOCIATESMATERIAL('0JcTub_HLCR94rDZIodLRF',$,$,$,(#8370),#8371); -#8373=IFCMATERIALPROFILE($,$,#17,#8365,$,$); -#8374=IFCCOLUMNTYPE('0APppGHW9Bqvr3tAHZWYoC',$,'140-80-10.0',$,$,$,$,$,$,$); -#8375=IFCMATERIALPROFILESET($,$,(#8377),$); -#8376=IFCRELASSOCIATESMATERIAL('0cw4d2Oc5ELA3bkr4ryyWw',$,$,$,(#8374),#8375); -#8377=IFCMATERIALPROFILE($,$,#17,#8365,$,$); -#8378=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,150.,4.,$,$); -#8379=IFCBEAMTYPE('0GjKExOcv1twM0dezU3_oA',$,'150-100-4.0',$,$,$,$,$,$,$); -#8380=IFCMATERIALPROFILESET($,$,(#8382),$); -#8381=IFCRELASSOCIATESMATERIAL('3fefag8Pn3Kg$MmrfJ8zzj',$,$,$,(#8379),#8380); -#8382=IFCMATERIALPROFILE($,$,#17,#8378,$,$); -#8383=IFCMEMBERTYPE('0SzPLue5v1_QcxB4TAp5kt',$,'150-100-4.0',$,$,$,$,$,$,$); -#8384=IFCMATERIALPROFILESET($,$,(#8386),$); -#8385=IFCRELASSOCIATESMATERIAL('2mBIPbZfzDkQz6xaKSEOlv',$,$,$,(#8383),#8384); -#8386=IFCMATERIALPROFILE($,$,#17,#8378,$,$); -#8387=IFCCOLUMNTYPE('0dN6adXAH1DeeBWf2yG0sj',$,'150-100-4.0',$,$,$,$,$,$,$); -#8388=IFCMATERIALPROFILESET($,$,(#8390),$); -#8389=IFCRELASSOCIATESMATERIAL('1oWNjE0fvAM85C3ujH9Lea',$,$,$,(#8387),#8388); -#8390=IFCMATERIALPROFILE($,$,#17,#8378,$,$); -#8391=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,150.,5.,$,$); -#8392=IFCBEAMTYPE('1ClUTgJw5FKAg_5zZOK9bl',$,'150-100-5.0',$,$,$,$,$,$,$); -#8393=IFCMATERIALPROFILESET($,$,(#8395),$); -#8394=IFCRELASSOCIATESMATERIAL('2I7TOwvbnCARFJcTBtxiI2',$,$,$,(#8392),#8393); -#8395=IFCMATERIALPROFILE($,$,#17,#8391,$,$); -#8396=IFCMEMBERTYPE('2bRzMGFS91vhC_dy47sD50',$,'150-100-5.0',$,$,$,$,$,$,$); -#8397=IFCMATERIALPROFILESET($,$,(#8399),$); -#8398=IFCRELASSOCIATESMATERIAL('1VIE3bZBzCqej_LrspWTTO',$,$,$,(#8396),#8397); -#8399=IFCMATERIALPROFILE($,$,#17,#8391,$,$); -#8400=IFCCOLUMNTYPE('0vDDEd82z9vP348BkljLBk',$,'150-100-5.0',$,$,$,$,$,$,$); -#8401=IFCMATERIALPROFILESET($,$,(#8403),$); -#8402=IFCRELASSOCIATESMATERIAL('3fzOigxv12PxfVECrsNtEB',$,$,$,(#8400),#8401); -#8403=IFCMATERIALPROFILE($,$,#17,#8391,$,$); -#8404=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,150.,6.3,$,$); -#8405=IFCBEAMTYPE('3O5otRrVb4GuKhqFqIecWs',$,'150-100-6.3',$,$,$,$,$,$,$); -#8406=IFCMATERIALPROFILESET($,$,(#8408),$); -#8407=IFCRELASSOCIATESMATERIAL('21yBCdWo5BsfCzgIr9_8HF',$,$,$,(#8405),#8406); -#8408=IFCMATERIALPROFILE($,$,#17,#8404,$,$); -#8409=IFCMEMBERTYPE('2TNBbsIp18vAHpI3lMXPtV',$,'150-100-6.3',$,$,$,$,$,$,$); -#8410=IFCMATERIALPROFILESET($,$,(#8412),$); -#8411=IFCRELASSOCIATESMATERIAL('3gRo8DxPnATgbWvDXuh_iU',$,$,$,(#8409),#8410); -#8412=IFCMATERIALPROFILE($,$,#17,#8404,$,$); -#8413=IFCCOLUMNTYPE('1PRyQQO491sB$o7U84DRNJ',$,'150-100-6.3',$,$,$,$,$,$,$); -#8414=IFCMATERIALPROFILESET($,$,(#8416),$); -#8415=IFCRELASSOCIATESMATERIAL('0zNlyWD$zA6xo11rOFm97G',$,$,$,(#8413),#8414); -#8416=IFCMATERIALPROFILE($,$,#17,#8404,$,$); -#8417=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,150.,8.,$,$); -#8418=IFCBEAMTYPE('0i98YIED52Ew7WyxXO7lzi',$,'150-100-8.0',$,$,$,$,$,$,$); -#8419=IFCMATERIALPROFILESET($,$,(#8421),$); -#8420=IFCRELASSOCIATESMATERIAL('3g6OsYBtrFhvj8u4MPTs4U',$,$,$,(#8418),#8419); -#8421=IFCMATERIALPROFILE($,$,#17,#8417,$,$); -#8422=IFCMEMBERTYPE('0LNsCoeOL8oOK2bMKQicvY',$,'150-100-8.0',$,$,$,$,$,$,$); -#8423=IFCMATERIALPROFILESET($,$,(#8425),$); -#8424=IFCRELASSOCIATESMATERIAL('0aukftb2D3DwiHArjUQFRd',$,$,$,(#8422),#8423); -#8425=IFCMATERIALPROFILE($,$,#17,#8417,$,$); -#8426=IFCCOLUMNTYPE('1RNvXb8FX3awCjJ2fqe3j5',$,'150-100-8.0',$,$,$,$,$,$,$); -#8427=IFCMATERIALPROFILESET($,$,(#8429),$); -#8428=IFCRELASSOCIATESMATERIAL('1Dbce$OdH2mOLmAgimTzMB',$,$,$,(#8426),#8427); -#8429=IFCMATERIALPROFILE($,$,#17,#8417,$,$); -#8430=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,150.,10.,$,$); -#8431=IFCBEAMTYPE('32mPJMIND5MvJhA1d_FuR8',$,'150-100-10.0',$,$,$,$,$,$,$); -#8432=IFCMATERIALPROFILESET($,$,(#8434),$); -#8433=IFCRELASSOCIATESMATERIAL('3R5qKZVYzDBAgyCYkitGPo',$,$,$,(#8431),#8432); -#8434=IFCMATERIALPROFILE($,$,#17,#8430,$,$); -#8435=IFCMEMBERTYPE('1ShYQ4DPf9Ref6bnmyzCCa',$,'150-100-10.0',$,$,$,$,$,$,$); -#8436=IFCMATERIALPROFILESET($,$,(#8438),$); -#8437=IFCRELASSOCIATESMATERIAL('30HAmsWkT5pP56zDWzMMsm',$,$,$,(#8435),#8436); -#8438=IFCMATERIALPROFILE($,$,#17,#8430,$,$); -#8439=IFCCOLUMNTYPE('2E5i8i2OnF2ORuirURZptl',$,'150-100-10.0',$,$,$,$,$,$,$); -#8440=IFCMATERIALPROFILESET($,$,(#8442),$); -#8441=IFCRELASSOCIATESMATERIAL('0yprlBFKv7yB01kp7wgHTU',$,$,$,(#8439),#8440); -#8442=IFCMATERIALPROFILE($,$,#17,#8430,$,$); -#8443=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,150.,12.5,$,$); -#8444=IFCBEAMTYPE('2dehhC2VrEWvi3HJxjXdMd',$,'150-100-12.5',$,$,$,$,$,$,$); -#8445=IFCMATERIALPROFILESET($,$,(#8447),$); -#8446=IFCRELASSOCIATESMATERIAL('0ii8hOarvACO_cafkDFINL',$,$,$,(#8444),#8445); -#8447=IFCMATERIALPROFILE($,$,#17,#8443,$,$); -#8448=IFCMEMBERTYPE('2BaT0dhon3i9$muYNbp$_F',$,'150-100-12.5',$,$,$,$,$,$,$); -#8449=IFCMATERIALPROFILESET($,$,(#8451),$); -#8450=IFCRELASSOCIATESMATERIAL('246GLsyEn0wOcGcvGuF7E2',$,$,$,(#8448),#8449); -#8451=IFCMATERIALPROFILE($,$,#17,#8443,$,$); -#8452=IFCCOLUMNTYPE('0mpOpWtPvEKul9$7NG_IDJ',$,'150-100-12.5',$,$,$,$,$,$,$); -#8453=IFCMATERIALPROFILESET($,$,(#8455),$); -#8454=IFCRELASSOCIATESMATERIAL('3gpuhBSFX9zw7LZi6QJdsS',$,$,$,(#8452),#8453); -#8455=IFCMATERIALPROFILE($,$,#17,#8443,$,$); -#8456=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,160.,4.,$,$); -#8457=IFCBEAMTYPE('1ZceHWRfj7zufwyF6uYufV',$,'160-80-4.0',$,$,$,$,$,$,$); -#8458=IFCMATERIALPROFILESET($,$,(#8460),$); -#8459=IFCRELASSOCIATESMATERIAL('20heN4xfz6DvTDwtpvlv0Q',$,$,$,(#8457),#8458); -#8460=IFCMATERIALPROFILE($,$,#17,#8456,$,$); -#8461=IFCMEMBERTYPE('1I4BccvPj7pvQg1fUha1eN',$,'160-80-4.0',$,$,$,$,$,$,$); -#8462=IFCMATERIALPROFILESET($,$,(#8464),$); -#8463=IFCRELASSOCIATESMATERIAL('1R1VS9niL2RuLBrsDMvQae',$,$,$,(#8461),#8462); -#8464=IFCMATERIALPROFILE($,$,#17,#8456,$,$); -#8465=IFCCOLUMNTYPE('3NyBDXpPXA0fy2uw_q1kR$',$,'160-80-4.0',$,$,$,$,$,$,$); -#8466=IFCMATERIALPROFILESET($,$,(#8468),$); -#8467=IFCRELASSOCIATESMATERIAL('36J6I9b_r1VO_EUDNGoO64',$,$,$,(#8465),#8466); -#8468=IFCMATERIALPROFILE($,$,#17,#8456,$,$); -#8469=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,160.,5.,$,$); -#8470=IFCBEAMTYPE('19GOPNDT95egC8$Mp5pON1',$,'160-80-5.0',$,$,$,$,$,$,$); -#8471=IFCMATERIALPROFILESET($,$,(#8473),$); -#8472=IFCRELASSOCIATESMATERIAL('1Udt7O3LD4CfeHQEAml1yL',$,$,$,(#8470),#8471); -#8473=IFCMATERIALPROFILE($,$,#17,#8469,$,$); -#8474=IFCMEMBERTYPE('0e2weLFgP1_R1tlXnimPfM',$,'160-80-5.0',$,$,$,$,$,$,$); -#8475=IFCMATERIALPROFILESET($,$,(#8477),$); -#8476=IFCRELASSOCIATESMATERIAL('0GUJJAZFP0ieOvmLJrlC61',$,$,$,(#8474),#8475); -#8477=IFCMATERIALPROFILE($,$,#17,#8469,$,$); -#8478=IFCCOLUMNTYPE('1JVgphVYbBCOt9bVYG5Gx2',$,'160-80-5.0',$,$,$,$,$,$,$); -#8479=IFCMATERIALPROFILESET($,$,(#8481),$); -#8480=IFCRELASSOCIATESMATERIAL('14EdGRUdzASQnfmuQGAQi5',$,$,$,(#8478),#8479); -#8481=IFCMATERIALPROFILE($,$,#17,#8469,$,$); -#8482=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,160.,6.3,$,$); -#8483=IFCBEAMTYPE('2P7dbM4t18SQaGzjLVh5$6',$,'160-80-6.3',$,$,$,$,$,$,$); -#8484=IFCMATERIALPROFILESET($,$,(#8486),$); -#8485=IFCRELASSOCIATESMATERIAL('0vc7fafyP5nh1kua4lTDrL',$,$,$,(#8483),#8484); -#8486=IFCMATERIALPROFILE($,$,#17,#8482,$,$); -#8487=IFCMEMBERTYPE('2T3UE3BwH0Qhc$3hrXdC4u',$,'160-80-6.3',$,$,$,$,$,$,$); -#8488=IFCMATERIALPROFILESET($,$,(#8490),$); -#8489=IFCRELASSOCIATESMATERIAL('3H3GimEiTCuv6qguljnWnn',$,$,$,(#8487),#8488); -#8490=IFCMATERIALPROFILE($,$,#17,#8482,$,$); -#8491=IFCCOLUMNTYPE('33XvLHjDD7wAzDa22Cre$i',$,'160-80-6.3',$,$,$,$,$,$,$); -#8492=IFCMATERIALPROFILESET($,$,(#8494),$); -#8493=IFCRELASSOCIATESMATERIAL('3ZP5gTv55DWwb$32_5eiZ5',$,$,$,(#8491),#8492); -#8494=IFCMATERIALPROFILE($,$,#17,#8482,$,$); -#8495=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,160.,8.,$,$); -#8496=IFCBEAMTYPE('21PaxVA9j7MhCVx2PEZCAW',$,'160-80-8.0',$,$,$,$,$,$,$); -#8497=IFCMATERIALPROFILESET($,$,(#8499),$); -#8498=IFCRELASSOCIATESMATERIAL('3m7MD99$P2qObmYwExpPGR',$,$,$,(#8496),#8497); -#8499=IFCMATERIALPROFILE($,$,#17,#8495,$,$); -#8500=IFCMEMBERTYPE('1aT7CEdrf6UvTLWfMGrkXR',$,'160-80-8.0',$,$,$,$,$,$,$); -#8501=IFCMATERIALPROFILESET($,$,(#8503),$); -#8502=IFCRELASSOCIATESMATERIAL('1vY7epGCD7Af$1TWhR1Hdy',$,$,$,(#8500),#8501); -#8503=IFCMATERIALPROFILE($,$,#17,#8495,$,$); -#8504=IFCCOLUMNTYPE('1LtnSscOX2GAEx18_hTDzF',$,'160-80-8.0',$,$,$,$,$,$,$); -#8505=IFCMATERIALPROFILESET($,$,(#8507),$); -#8506=IFCRELASSOCIATESMATERIAL('0WQYxVzhb6gw0uzOnXpsrI',$,$,$,(#8504),#8505); -#8507=IFCMATERIALPROFILE($,$,#17,#8495,$,$); -#8508=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,160.,10.,$,$); -#8509=IFCBEAMTYPE('2zGOx1Yin7xwglOmRgNCJ7',$,'160-80-10.0',$,$,$,$,$,$,$); -#8510=IFCMATERIALPROFILESET($,$,(#8512),$); -#8511=IFCRELASSOCIATESMATERIAL('3xGYuoHhn4z8rO_9WKaHnR',$,$,$,(#8509),#8510); -#8512=IFCMATERIALPROFILE($,$,#17,#8508,$,$); -#8513=IFCMEMBERTYPE('2Pa93cf5bDkRvsi8rQLRPQ',$,'160-80-10.0',$,$,$,$,$,$,$); -#8514=IFCMATERIALPROFILESET($,$,(#8516),$); -#8515=IFCRELASSOCIATESMATERIAL('3Tlkr5gt91mOAXZNMwWDMU',$,$,$,(#8513),#8514); -#8516=IFCMATERIALPROFILE($,$,#17,#8508,$,$); -#8517=IFCCOLUMNTYPE('09hzzkon5FzAUAKMw1RRt4',$,'160-80-10.0',$,$,$,$,$,$,$); -#8518=IFCMATERIALPROFILESET($,$,(#8520),$); -#8519=IFCRELASSOCIATESMATERIAL('1nAHpB5NzBofiBrLMKxU7o',$,$,$,(#8517),#8518); -#8520=IFCMATERIALPROFILE($,$,#17,#8508,$,$); -#8521=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,80.,160.,12.5,$,$); -#8522=IFCBEAMTYPE('2F3JWtnHD4gh5Wa7cajPDR',$,'160-80-12.5',$,$,$,$,$,$,$); -#8523=IFCMATERIALPROFILESET($,$,(#8525),$); -#8524=IFCRELASSOCIATESMATERIAL('2guMROCtv4y8pa1evT0Y8Y',$,$,$,(#8522),#8523); -#8525=IFCMATERIALPROFILE($,$,#17,#8521,$,$); -#8526=IFCMEMBERTYPE('1I3fuK6V16SBeWLe3OYBQ6',$,'160-80-12.5',$,$,$,$,$,$,$); -#8527=IFCMATERIALPROFILESET($,$,(#8529),$); -#8528=IFCRELASSOCIATESMATERIAL('21no_CQRb3cObbdGJ2yi8r',$,$,$,(#8526),#8527); -#8529=IFCMATERIALPROFILE($,$,#17,#8521,$,$); -#8530=IFCCOLUMNTYPE('2$zWXOXif81B$orbQxuhDG',$,'160-80-12.5',$,$,$,$,$,$,$); -#8531=IFCMATERIALPROFILESET($,$,(#8533),$); -#8532=IFCRELASSOCIATESMATERIAL('0ctsDowz526RCjmCkQ8gVk',$,$,$,(#8530),#8531); -#8533=IFCMATERIALPROFILE($,$,#17,#8521,$,$); -#8534=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,180.,4.,$,$); -#8535=IFCBEAMTYPE('2WaSh19Nn1nB1lndehucZS',$,'180-100-4.0',$,$,$,$,$,$,$); -#8536=IFCMATERIALPROFILESET($,$,(#8538),$); -#8537=IFCRELASSOCIATESMATERIAL('09FPdiZn9Czeuy9WtN0gm1',$,$,$,(#8535),#8536); -#8538=IFCMATERIALPROFILE($,$,#17,#8534,$,$); -#8539=IFCMEMBERTYPE('1Y3Utn$lr0oB6bi2HG_k05',$,'180-100-4.0',$,$,$,$,$,$,$); -#8540=IFCMATERIALPROFILESET($,$,(#8542),$); -#8541=IFCRELASSOCIATESMATERIAL('1SF2MtLKz09wq6NaPB$Yi9',$,$,$,(#8539),#8540); -#8542=IFCMATERIALPROFILE($,$,#17,#8534,$,$); -#8543=IFCCOLUMNTYPE('0f$$e9HKn3IB5QuNYq5W_K',$,'180-100-4.0',$,$,$,$,$,$,$); -#8544=IFCMATERIALPROFILESET($,$,(#8546),$); -#8545=IFCRELASSOCIATESMATERIAL('3DrYLVPTT7rh7OXyWCOdEX',$,$,$,(#8543),#8544); -#8546=IFCMATERIALPROFILE($,$,#17,#8534,$,$); -#8547=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,180.,5.,$,$); -#8548=IFCBEAMTYPE('35T39pwgrAwwVi1_mBjpr9',$,'180-100-5.0',$,$,$,$,$,$,$); -#8549=IFCMATERIALPROFILESET($,$,(#8551),$); -#8550=IFCRELASSOCIATESMATERIAL('2TJ4PQbx94shfU0X2n2SVc',$,$,$,(#8548),#8549); -#8551=IFCMATERIALPROFILE($,$,#17,#8547,$,$); -#8552=IFCMEMBERTYPE('0C8eZz0_b8bgpXueC38znu',$,'180-100-5.0',$,$,$,$,$,$,$); -#8553=IFCMATERIALPROFILESET($,$,(#8555),$); -#8554=IFCRELASSOCIATESMATERIAL('0V_lX9hd12TeOnv6ui6yck',$,$,$,(#8552),#8553); -#8555=IFCMATERIALPROFILE($,$,#17,#8547,$,$); -#8556=IFCCOLUMNTYPE('1Ww6Z1hPvA1QzGW_cIDyAS',$,'180-100-5.0',$,$,$,$,$,$,$); -#8557=IFCMATERIALPROFILESET($,$,(#8559),$); -#8558=IFCRELASSOCIATESMATERIAL('1hcSSHFibEq8AlAyrG6mdB',$,$,$,(#8556),#8557); -#8559=IFCMATERIALPROFILE($,$,#17,#8547,$,$); -#8560=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,180.,6.3,$,$); -#8561=IFCBEAMTYPE('2jQ3rJURHA4u5kZWow38bk',$,'180-100-6.3',$,$,$,$,$,$,$); -#8562=IFCMATERIALPROFILESET($,$,(#8564),$); -#8563=IFCRELASSOCIATESMATERIAL('0XEBA81on6uhCIPtEEayby',$,$,$,(#8561),#8562); -#8564=IFCMATERIALPROFILE($,$,#17,#8560,$,$); -#8565=IFCMEMBERTYPE('1JDjat$N14YhZrVV7b7XY2',$,'180-100-6.3',$,$,$,$,$,$,$); -#8566=IFCMATERIALPROFILESET($,$,(#8568),$); -#8567=IFCRELASSOCIATESMATERIAL('3VjWy1ccf6Vfi45WH0SOP$',$,$,$,(#8565),#8566); -#8568=IFCMATERIALPROFILE($,$,#17,#8560,$,$); -#8569=IFCCOLUMNTYPE('0MIqULJov19PtRScLPEQNg',$,'180-100-6.3',$,$,$,$,$,$,$); -#8570=IFCMATERIALPROFILESET($,$,(#8572),$); -#8571=IFCRELASSOCIATESMATERIAL('1ct6OeYDzBmRuLDmocmTbq',$,$,$,(#8569),#8570); -#8572=IFCMATERIALPROFILE($,$,#17,#8560,$,$); -#8573=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,180.,8.,$,$); -#8574=IFCBEAMTYPE('0lM$KxWMX4VQPaqSLFbhnv',$,'180-100-8.0',$,$,$,$,$,$,$); -#8575=IFCMATERIALPROFILESET($,$,(#8577),$); -#8576=IFCRELASSOCIATESMATERIAL('3fp$310pX7tPCR9BvsG71w',$,$,$,(#8574),#8575); -#8577=IFCMATERIALPROFILE($,$,#17,#8573,$,$); -#8578=IFCMEMBERTYPE('2EPmhQSFv9sQt8Ys9VnS8z',$,'180-100-8.0',$,$,$,$,$,$,$); -#8579=IFCMATERIALPROFILESET($,$,(#8581),$); -#8580=IFCRELASSOCIATESMATERIAL('0FwXdB3Eb13QfsQftYjvb$',$,$,$,(#8578),#8579); -#8581=IFCMATERIALPROFILE($,$,#17,#8573,$,$); -#8582=IFCCOLUMNTYPE('0EmJQJ5DH7vgHX2EQZV3db',$,'180-100-8.0',$,$,$,$,$,$,$); -#8583=IFCMATERIALPROFILESET($,$,(#8585),$); -#8584=IFCRELASSOCIATESMATERIAL('0jWOnWglT7yebNPYuQVjNr',$,$,$,(#8582),#8583); -#8585=IFCMATERIALPROFILE($,$,#17,#8573,$,$); -#8586=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,180.,10.,$,$); -#8587=IFCBEAMTYPE('1htxzX2iH69uO34aUIyIov',$,'180-100-10.0',$,$,$,$,$,$,$); -#8588=IFCMATERIALPROFILESET($,$,(#8590),$); -#8589=IFCRELASSOCIATESMATERIAL('1Jjm5rhJz7XgQyaXrRQ_SI',$,$,$,(#8587),#8588); -#8590=IFCMATERIALPROFILE($,$,#17,#8586,$,$); -#8591=IFCMEMBERTYPE('0JfPxJisb9rgP_ETBBXlz6',$,'180-100-10.0',$,$,$,$,$,$,$); -#8592=IFCMATERIALPROFILESET($,$,(#8594),$); -#8593=IFCRELASSOCIATESMATERIAL('2nuDxRPhr6sfrgU$77Uujm',$,$,$,(#8591),#8592); -#8594=IFCMATERIALPROFILE($,$,#17,#8586,$,$); -#8595=IFCCOLUMNTYPE('0r2kaQdOj42vA$NLHC01Do',$,'180-100-10.0',$,$,$,$,$,$,$); -#8596=IFCMATERIALPROFILESET($,$,(#8598),$); -#8597=IFCRELASSOCIATESMATERIAL('381wbWBiPCR9XEF1sBmNiu',$,$,$,(#8595),#8596); -#8598=IFCMATERIALPROFILE($,$,#17,#8586,$,$); -#8599=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,180.,12.5,$,$); -#8600=IFCBEAMTYPE('0rHtZLrGf4TPYDj$_w6XjC',$,'180-100-12.5',$,$,$,$,$,$,$); -#8601=IFCMATERIALPROFILESET($,$,(#8603),$); -#8602=IFCRELASSOCIATESMATERIAL('1WAgpxnfP6kv_Vrofn2_xU',$,$,$,(#8600),#8601); -#8603=IFCMATERIALPROFILE($,$,#17,#8599,$,$); -#8604=IFCMEMBERTYPE('1bMovhbGb9pxqwV8UH7bOz',$,'180-100-12.5',$,$,$,$,$,$,$); -#8605=IFCMATERIALPROFILESET($,$,(#8607),$); -#8606=IFCRELASSOCIATESMATERIAL('3XE$khjKz1bA7YEdjOLXXR',$,$,$,(#8604),#8605); -#8607=IFCMATERIALPROFILE($,$,#17,#8599,$,$); -#8608=IFCCOLUMNTYPE('16djiuFH5AoxRfrxhh6_zP',$,'180-100-12.5',$,$,$,$,$,$,$); -#8609=IFCMATERIALPROFILESET($,$,(#8611),$); -#8610=IFCRELASSOCIATESMATERIAL('163RsqxRX1ouoCd5eYB6RP',$,$,$,(#8608),#8609); -#8611=IFCMATERIALPROFILE($,$,#17,#8599,$,$); -#8612=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,4.,$,$); -#8613=IFCBEAMTYPE('2GLotf5Q13FgHduectMMB2',$,'200-100-4.0',$,$,$,$,$,$,$); -#8614=IFCMATERIALPROFILESET($,$,(#8616),$); -#8615=IFCRELASSOCIATESMATERIAL('3pA3TUx2n6FeQk6Km4JWr1',$,$,$,(#8613),#8614); -#8616=IFCMATERIALPROFILE($,$,#17,#8612,$,$); -#8617=IFCMEMBERTYPE('0pAtx_eFD3HgD2W6ceC8ot',$,'200-100-4.0',$,$,$,$,$,$,$); -#8618=IFCMATERIALPROFILESET($,$,(#8620),$); -#8619=IFCRELASSOCIATESMATERIAL('1Y4q$PFpj5KxNFICBJ6JNn',$,$,$,(#8617),#8618); -#8620=IFCMATERIALPROFILE($,$,#17,#8612,$,$); -#8621=IFCCOLUMNTYPE('2Xjnn1m1X9Rf1WQtIABHr8',$,'200-100-4.0',$,$,$,$,$,$,$); -#8622=IFCMATERIALPROFILESET($,$,(#8624),$); -#8623=IFCRELASSOCIATESMATERIAL('2b7g2wPyLEyB5Yyi0Hrbp0',$,$,$,(#8621),#8622); -#8624=IFCMATERIALPROFILE($,$,#17,#8612,$,$); -#8625=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,5.,$,$); -#8626=IFCBEAMTYPE('3ZIvaOeo97_u9fnt0imHdo',$,'200-100-5.0',$,$,$,$,$,$,$); -#8627=IFCMATERIALPROFILESET($,$,(#8629),$); -#8628=IFCRELASSOCIATESMATERIAL('36PeYweh5EjQQTWuEDjWkB',$,$,$,(#8626),#8627); -#8629=IFCMATERIALPROFILE($,$,#17,#8625,$,$); -#8630=IFCMEMBERTYPE('3U7glY1Xr6rx_IFjqAQEHM',$,'200-100-5.0',$,$,$,$,$,$,$); -#8631=IFCMATERIALPROFILESET($,$,(#8633),$); -#8632=IFCRELASSOCIATESMATERIAL('0$zQFM7x9AigbY$L6JJT9U',$,$,$,(#8630),#8631); -#8633=IFCMATERIALPROFILE($,$,#17,#8625,$,$); -#8634=IFCCOLUMNTYPE('2V7Hs9uQX4ifEo52ZQl2Gc',$,'200-100-5.0',$,$,$,$,$,$,$); -#8635=IFCMATERIALPROFILESET($,$,(#8637),$); -#8636=IFCRELASSOCIATESMATERIAL('09dlncIdvBiOIBS9ZgxK_y',$,$,$,(#8634),#8635); -#8637=IFCMATERIALPROFILE($,$,#17,#8625,$,$); -#8638=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,6.3,$,$); -#8639=IFCBEAMTYPE('0RDVJHrCD2ZPMc0CGK1enN',$,'200-100-6.3',$,$,$,$,$,$,$); -#8640=IFCMATERIALPROFILESET($,$,(#8642),$); -#8641=IFCRELASSOCIATESMATERIAL('2XP1nBFIn7U8TR1WDec0pA',$,$,$,(#8639),#8640); -#8642=IFCMATERIALPROFILE($,$,#17,#8638,$,$); -#8643=IFCMEMBERTYPE('1s58lrzfr52hXbzYIzlD2y',$,'200-100-6.3',$,$,$,$,$,$,$); -#8644=IFCMATERIALPROFILESET($,$,(#8646),$); -#8645=IFCRELASSOCIATESMATERIAL('2G$qiSiEH9Rut1$OWVaIt5',$,$,$,(#8643),#8644); -#8646=IFCMATERIALPROFILE($,$,#17,#8638,$,$); -#8647=IFCCOLUMNTYPE('2EnDPp_a973B0WhH15eA9A',$,'200-100-6.3',$,$,$,$,$,$,$); -#8648=IFCMATERIALPROFILESET($,$,(#8650),$); -#8649=IFCRELASSOCIATESMATERIAL('0goywHsuDFXQZjIiGkcdFC',$,$,$,(#8647),#8648); -#8650=IFCMATERIALPROFILE($,$,#17,#8638,$,$); -#8651=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,8.,$,$); -#8652=IFCBEAMTYPE('3_040xHcX6ghYY9H22q1NW',$,'200-100-8.0',$,$,$,$,$,$,$); -#8653=IFCMATERIALPROFILESET($,$,(#8655),$); -#8654=IFCRELASSOCIATESMATERIAL('31tYYY$dH0MBgKaDzyLGII',$,$,$,(#8652),#8653); -#8655=IFCMATERIALPROFILE($,$,#17,#8651,$,$); -#8656=IFCMEMBERTYPE('0prJhRg5r0$OZXCCmYWuif',$,'200-100-8.0',$,$,$,$,$,$,$); -#8657=IFCMATERIALPROFILESET($,$,(#8659),$); -#8658=IFCRELASSOCIATESMATERIAL('3LbENk50PELv9eKwjHy7dy',$,$,$,(#8656),#8657); -#8659=IFCMATERIALPROFILE($,$,#17,#8651,$,$); -#8660=IFCCOLUMNTYPE('0HX3kXotP6evYvdFYsXGd_',$,'200-100-8.0',$,$,$,$,$,$,$); -#8661=IFCMATERIALPROFILESET($,$,(#8663),$); -#8662=IFCRELASSOCIATESMATERIAL('2w9ItBeHX7_fPcuSUImUPt',$,$,$,(#8660),#8661); -#8663=IFCMATERIALPROFILE($,$,#17,#8651,$,$); -#8664=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,10.,$,$); -#8665=IFCBEAMTYPE('1P2O78sbH9FOk3PsHaFky1',$,'200-100-10.0',$,$,$,$,$,$,$); -#8666=IFCMATERIALPROFILESET($,$,(#8668),$); -#8667=IFCRELASSOCIATESMATERIAL('3eGEhoL_LEKe62vLIXbpWq',$,$,$,(#8665),#8666); -#8668=IFCMATERIALPROFILE($,$,#17,#8664,$,$); -#8669=IFCMEMBERTYPE('3wGUEp4cb03h$w7mx6MCmz',$,'200-100-10.0',$,$,$,$,$,$,$); -#8670=IFCMATERIALPROFILESET($,$,(#8672),$); -#8671=IFCRELASSOCIATESMATERIAL('3_yTk6ihH2k9_2aTfPbYHE',$,$,$,(#8669),#8670); -#8672=IFCMATERIALPROFILE($,$,#17,#8664,$,$); -#8673=IFCCOLUMNTYPE('3IR_eLYyvArf1PC28h9pXV',$,'200-100-10.0',$,$,$,$,$,$,$); -#8674=IFCMATERIALPROFILESET($,$,(#8676),$); -#8675=IFCRELASSOCIATESMATERIAL('0Uc5vmIrb7JfHRrUcIVu$Y',$,$,$,(#8673),#8674); -#8676=IFCMATERIALPROFILE($,$,#17,#8664,$,$); -#8677=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,12.5,$,$); -#8678=IFCBEAMTYPE('3pE6PtcHj4T94VnaD6ZYgQ',$,'200-100-12.5',$,$,$,$,$,$,$); -#8679=IFCMATERIALPROFILESET($,$,(#8681),$); -#8680=IFCRELASSOCIATESMATERIAL('14A$WZKLPAteKPxQvnQTPB',$,$,$,(#8678),#8679); -#8681=IFCMATERIALPROFILE($,$,#17,#8677,$,$); -#8682=IFCMEMBERTYPE('1qOw3uWKbCVAq$E8M7YJm3',$,'200-100-12.5',$,$,$,$,$,$,$); -#8683=IFCMATERIALPROFILESET($,$,(#8685),$); -#8684=IFCRELASSOCIATESMATERIAL('2020syd8j7jQM1uEJRA1U1',$,$,$,(#8682),#8683); -#8685=IFCMATERIALPROFILE($,$,#17,#8677,$,$); -#8686=IFCCOLUMNTYPE('3VhKhyUyX2egy4Cv42vpmS',$,'200-100-12.5',$,$,$,$,$,$,$); -#8687=IFCMATERIALPROFILESET($,$,(#8689),$); -#8688=IFCRELASSOCIATESMATERIAL('1QE1oUNc5D4vcX0vWWqgYx',$,$,$,(#8686),#8687); -#8689=IFCMATERIALPROFILE($,$,#17,#8677,$,$); -#8690=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,100.,200.,16.,$,$); -#8691=IFCBEAMTYPE('3ypsFt9rLAJgEuwW8nGQgk',$,'200-100-16.0',$,$,$,$,$,$,$); -#8692=IFCMATERIALPROFILESET($,$,(#8694),$); -#8693=IFCRELASSOCIATESMATERIAL('2sUZML6Yb3LhUyabaxB7zM',$,$,$,(#8691),#8692); -#8694=IFCMATERIALPROFILE($,$,#17,#8690,$,$); -#8695=IFCMEMBERTYPE('1wWSxjM6bAQgP_r7HTXTx0',$,'200-100-16.0',$,$,$,$,$,$,$); -#8696=IFCMATERIALPROFILESET($,$,(#8698),$); -#8697=IFCRELASSOCIATESMATERIAL('1OD9NsBQ17RgK4lo4DE_rX',$,$,$,(#8695),#8696); -#8698=IFCMATERIALPROFILE($,$,#17,#8690,$,$); -#8699=IFCCOLUMNTYPE('0Zclr613j7HfidZlanhbl0',$,'200-100-16.0',$,$,$,$,$,$,$); -#8700=IFCMATERIALPROFILESET($,$,(#8702),$); -#8701=IFCRELASSOCIATESMATERIAL('3Qeid6yz57qAC0wxb64s2Q',$,$,$,(#8699),#8700); -#8702=IFCMATERIALPROFILE($,$,#17,#8690,$,$); -#8703=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,200.,6.3,$,$); -#8704=IFCBEAMTYPE('0nRN4gcu9Dgf6COObyrAlI',$,'200-120-6.3',$,$,$,$,$,$,$); -#8705=IFCMATERIALPROFILESET($,$,(#8707),$); -#8706=IFCRELASSOCIATESMATERIAL('1xjIIGVqrC78AinVOwvZHz',$,$,$,(#8704),#8705); -#8707=IFCMATERIALPROFILE($,$,#17,#8703,$,$); -#8708=IFCMEMBERTYPE('2oymlEBu98rQMGVuhb4X77',$,'200-120-6.3',$,$,$,$,$,$,$); -#8709=IFCMATERIALPROFILESET($,$,(#8711),$); -#8710=IFCRELASSOCIATESMATERIAL('1o_mCP2vn7PeHvNdvYLCiY',$,$,$,(#8708),#8709); -#8711=IFCMATERIALPROFILE($,$,#17,#8703,$,$); -#8712=IFCCOLUMNTYPE('27IetwSsP3IeFFzhPuWhF7',$,'200-120-6.3',$,$,$,$,$,$,$); -#8713=IFCMATERIALPROFILESET($,$,(#8715),$); -#8714=IFCRELASSOCIATESMATERIAL('1hKcYhnXX8LA096PcnlCF1',$,$,$,(#8712),#8713); -#8715=IFCMATERIALPROFILE($,$,#17,#8703,$,$); -#8716=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,200.,8.,$,$); -#8717=IFCBEAMTYPE('2TSH6qQqf6IeH8LkbGFnKt',$,'200-120-8.0',$,$,$,$,$,$,$); -#8718=IFCMATERIALPROFILESET($,$,(#8720),$); -#8719=IFCRELASSOCIATESMATERIAL('20SuPna6fFAQJLQm0075OL',$,$,$,(#8717),#8718); -#8720=IFCMATERIALPROFILE($,$,#17,#8716,$,$); -#8721=IFCMEMBERTYPE('20OWhrCBbF08m61c0t65$6',$,'200-120-8.0',$,$,$,$,$,$,$); -#8722=IFCMATERIALPROFILESET($,$,(#8724),$); -#8723=IFCRELASSOCIATESMATERIAL('3s960Rybv9sQi5DdzBbMfo',$,$,$,(#8721),#8722); -#8724=IFCMATERIALPROFILE($,$,#17,#8716,$,$); -#8725=IFCCOLUMNTYPE('1kKHxvyWX5gh7q_iVBKGGD',$,'200-120-8.0',$,$,$,$,$,$,$); -#8726=IFCMATERIALPROFILESET($,$,(#8728),$); -#8727=IFCRELASSOCIATESMATERIAL('18gjDRUrv8tghM3iEUIUT3',$,$,$,(#8725),#8726); -#8728=IFCMATERIALPROFILE($,$,#17,#8716,$,$); -#8729=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,200.,10.,$,$); -#8730=IFCBEAMTYPE('04EB44vUD3z8d3VWv5tAkU',$,'200-120-10.0',$,$,$,$,$,$,$); -#8731=IFCMATERIALPROFILESET($,$,(#8733),$); -#8732=IFCRELASSOCIATESMATERIAL('1v6MY6XcD13ALlHDX4wqbD',$,$,$,(#8730),#8731); -#8733=IFCMATERIALPROFILE($,$,#17,#8729,$,$); -#8734=IFCMEMBERTYPE('3_3SdO7TXAyu4umwnnDrGQ',$,'200-120-10.0',$,$,$,$,$,$,$); -#8735=IFCMATERIALPROFILESET($,$,(#8737),$); -#8736=IFCRELASSOCIATESMATERIAL('2MlTzL55HA4Q11hKY1Hqm8',$,$,$,(#8734),#8735); -#8737=IFCMATERIALPROFILE($,$,#17,#8729,$,$); -#8738=IFCCOLUMNTYPE('0cnG6Mg957FeGiellJoim3',$,'200-120-10.0',$,$,$,$,$,$,$); -#8739=IFCMATERIALPROFILESET($,$,(#8741),$); -#8740=IFCRELASSOCIATESMATERIAL('3HMxcUPMP7nPXWxQhUBmdp',$,$,$,(#8738),#8739); -#8741=IFCMATERIALPROFILE($,$,#17,#8729,$,$); -#8742=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,120.,200.,12.5,$,$); -#8743=IFCBEAMTYPE('2jdr7Ws7XDWhGWsRo$MSTA',$,'200-120-12.5',$,$,$,$,$,$,$); -#8744=IFCMATERIALPROFILESET($,$,(#8746),$); -#8745=IFCRELASSOCIATESMATERIAL('3Gh_$_iyX1_v6ZVHu_733O',$,$,$,(#8743),#8744); -#8746=IFCMATERIALPROFILE($,$,#17,#8742,$,$); -#8747=IFCMEMBERTYPE('1U3NucUNHBke_Bgz7ae5Q_',$,'200-120-12.5',$,$,$,$,$,$,$); -#8748=IFCMATERIALPROFILESET($,$,(#8750),$); -#8749=IFCRELASSOCIATESMATERIAL('3XKSSGpHj4y89HjGIKHeT4',$,$,$,(#8747),#8748); -#8750=IFCMATERIALPROFILE($,$,#17,#8742,$,$); -#8751=IFCCOLUMNTYPE('2DpsFgCs1Bc9TBxYxyIjOc',$,'200-120-12.5',$,$,$,$,$,$,$); -#8752=IFCMATERIALPROFILESET($,$,(#8754),$); -#8753=IFCRELASSOCIATESMATERIAL('3Yny03N_vFpBXXPMDrEpZm',$,$,$,(#8751),#8752); -#8754=IFCMATERIALPROFILE($,$,#17,#8742,$,$); -#8755=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,250.,6.3,$,$); -#8756=IFCBEAMTYPE('2k_99qzKX5dPg7ihQWDmbA',$,'250-150-6.3',$,$,$,$,$,$,$); -#8757=IFCMATERIALPROFILESET($,$,(#8759),$); -#8758=IFCRELASSOCIATESMATERIAL('398U2Wphb0GPI9lUZfI9Zw',$,$,$,(#8756),#8757); -#8759=IFCMATERIALPROFILE($,$,#17,#8755,$,$); -#8760=IFCMEMBERTYPE('0Z9xXiyvXAIAAqKFysYtdZ',$,'250-150-6.3',$,$,$,$,$,$,$); -#8761=IFCMATERIALPROFILESET($,$,(#8763),$); -#8762=IFCRELASSOCIATESMATERIAL('33yQ4jkBT7hes4DWFKg2OE',$,$,$,(#8760),#8761); -#8763=IFCMATERIALPROFILE($,$,#17,#8755,$,$); -#8764=IFCCOLUMNTYPE('1VGB9rOQ9Bhh9X0220K5FA',$,'250-150-6.3',$,$,$,$,$,$,$); -#8765=IFCMATERIALPROFILESET($,$,(#8767),$); -#8766=IFCRELASSOCIATESMATERIAL('18uF_CM459vO3M4C335SCi',$,$,$,(#8764),#8765); -#8767=IFCMATERIALPROFILE($,$,#17,#8755,$,$); -#8768=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,250.,8.,$,$); -#8769=IFCBEAMTYPE('2DFWhIvJL0lP$qFGDQTwrB',$,'250-150-8.0',$,$,$,$,$,$,$); -#8770=IFCMATERIALPROFILESET($,$,(#8772),$); -#8771=IFCRELASSOCIATESMATERIAL('3m8YTnnyLAquqZS5ay9eXx',$,$,$,(#8769),#8770); -#8772=IFCMATERIALPROFILE($,$,#17,#8768,$,$); -#8773=IFCMEMBERTYPE('22cu8gUET4xQkZxjdtuYMj',$,'250-150-8.0',$,$,$,$,$,$,$); -#8774=IFCMATERIALPROFILESET($,$,(#8776),$); -#8775=IFCRELASSOCIATESMATERIAL('0MFipfvqz1PPYEfctmQfcv',$,$,$,(#8773),#8774); -#8776=IFCMATERIALPROFILE($,$,#17,#8768,$,$); -#8777=IFCCOLUMNTYPE('2y4GycBeXBSfNWZ4Lk_QaQ',$,'250-150-8.0',$,$,$,$,$,$,$); -#8778=IFCMATERIALPROFILESET($,$,(#8780),$); -#8779=IFCRELASSOCIATESMATERIAL('3FAZLkyZj4wRUhHzUhGuqO',$,$,$,(#8777),#8778); -#8780=IFCMATERIALPROFILE($,$,#17,#8768,$,$); -#8781=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,250.,10.,$,$); -#8782=IFCBEAMTYPE('2sJl_XolXCHOXuSrE2gmV3',$,'250-150-10.0',$,$,$,$,$,$,$); -#8783=IFCMATERIALPROFILESET($,$,(#8785),$); -#8784=IFCRELASSOCIATESMATERIAL('28egFeM9z14RRFhggTb6UY',$,$,$,(#8782),#8783); -#8785=IFCMATERIALPROFILE($,$,#17,#8781,$,$); -#8786=IFCMEMBERTYPE('1PjgD6jbDEIelr4Z8HdLh$',$,'250-150-10.0',$,$,$,$,$,$,$); -#8787=IFCMATERIALPROFILESET($,$,(#8789),$); -#8788=IFCRELASSOCIATESMATERIAL('1G3Z7et69CIxEACdjpzeHM',$,$,$,(#8786),#8787); -#8789=IFCMATERIALPROFILE($,$,#17,#8781,$,$); -#8790=IFCCOLUMNTYPE('371KT0kxHFWh8pqRA76tyy',$,'250-150-10.0',$,$,$,$,$,$,$); -#8791=IFCMATERIALPROFILESET($,$,(#8793),$); -#8792=IFCRELASSOCIATESMATERIAL('0VywMPLTj3sOkLFEQyx1PY',$,$,$,(#8790),#8791); -#8793=IFCMATERIALPROFILE($,$,#17,#8781,$,$); -#8794=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,250.,12.5,$,$); -#8795=IFCBEAMTYPE('2wF$$MEGj0dvw2lqhE1Sd3',$,'250-150-12.5',$,$,$,$,$,$,$); -#8796=IFCMATERIALPROFILESET($,$,(#8798),$); -#8797=IFCRELASSOCIATESMATERIAL('226Pcb1Y5EWggnyIx6CTJr',$,$,$,(#8795),#8796); -#8798=IFCMATERIALPROFILE($,$,#17,#8794,$,$); -#8799=IFCMEMBERTYPE('3kc2RB2gTBtO_Elz8ARCM9',$,'250-150-12.5',$,$,$,$,$,$,$); -#8800=IFCMATERIALPROFILESET($,$,(#8802),$); -#8801=IFCRELASSOCIATESMATERIAL('04ZNn2DFXDt9VDXpRbSZlC',$,$,$,(#8799),#8800); -#8802=IFCMATERIALPROFILE($,$,#17,#8794,$,$); -#8803=IFCCOLUMNTYPE('0oyI2Ghyj3lRMRHiQs8c97',$,'250-150-12.5',$,$,$,$,$,$,$); -#8804=IFCMATERIALPROFILESET($,$,(#8806),$); -#8805=IFCRELASSOCIATESMATERIAL('0NBNwf7JTApuYQxy2lTT0l',$,$,$,(#8803),#8804); -#8806=IFCMATERIALPROFILE($,$,#17,#8794,$,$); -#8807=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,250.,14.2,$,$); -#8808=IFCBEAMTYPE('2HsrxncB500xkgwbiX8onK',$,'250-150-14.2',$,$,$,$,$,$,$); -#8809=IFCMATERIALPROFILESET($,$,(#8811),$); -#8810=IFCRELASSOCIATESMATERIAL('3LPmYhcc52vQVbXT7n_2II',$,$,$,(#8808),#8809); -#8811=IFCMATERIALPROFILE($,$,#17,#8807,$,$); -#8812=IFCMEMBERTYPE('2mrYFv$jn81xi9lRvN6Yuw',$,'250-150-14.2',$,$,$,$,$,$,$); -#8813=IFCMATERIALPROFILESET($,$,(#8815),$); -#8814=IFCRELASSOCIATESMATERIAL('09IE7Kcl933euY$Sruyhl1',$,$,$,(#8812),#8813); -#8815=IFCMATERIALPROFILE($,$,#17,#8807,$,$); -#8816=IFCCOLUMNTYPE('0Yv1iUytv7m8v_CDev$gNf',$,'250-150-14.2',$,$,$,$,$,$,$); -#8817=IFCMATERIALPROFILESET($,$,(#8819),$); -#8818=IFCRELASSOCIATESMATERIAL('0lGs54KkHE487Jzci4B1AV',$,$,$,(#8816),#8817); -#8819=IFCMATERIALPROFILE($,$,#17,#8807,$,$); -#8820=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,150.,250.,16.,$,$); -#8821=IFCBEAMTYPE('1e2btMoS17kwsOoazW9OK4',$,'250-150-16.0',$,$,$,$,$,$,$); -#8822=IFCMATERIALPROFILESET($,$,(#8824),$); -#8823=IFCRELASSOCIATESMATERIAL('0IRtdgsWL1hfLB6d6XgfCd',$,$,$,(#8821),#8822); -#8824=IFCMATERIALPROFILE($,$,#17,#8820,$,$); -#8825=IFCMEMBERTYPE('1N2Qb$S2L4mgdgbnvMooqf',$,'250-150-16.0',$,$,$,$,$,$,$); -#8826=IFCMATERIALPROFILESET($,$,(#8828),$); -#8827=IFCRELASSOCIATESMATERIAL('07xCTzsiP1V8r5$6qRh7HK',$,$,$,(#8825),#8826); -#8828=IFCMATERIALPROFILE($,$,#17,#8820,$,$); -#8829=IFCCOLUMNTYPE('1i0gtxpyDDpPZ_yn8RMOoU',$,'250-150-16.0',$,$,$,$,$,$,$); -#8830=IFCMATERIALPROFILESET($,$,(#8832),$); -#8831=IFCRELASSOCIATESMATERIAL('3eWECWdNv7yBUDjm6IW6gm',$,$,$,(#8829),#8830); -#8832=IFCMATERIALPROFILE($,$,#17,#8820,$,$); -#8833=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,260.,6.3,$,$); -#8834=IFCBEAMTYPE('1Ro3ANErL9qAABYROdxpSW',$,'260-180-6.3',$,$,$,$,$,$,$); -#8835=IFCMATERIALPROFILESET($,$,(#8837),$); -#8836=IFCRELASSOCIATESMATERIAL('3xUWdlSdD4_Ojwe8g3j_xy',$,$,$,(#8834),#8835); -#8837=IFCMATERIALPROFILE($,$,#17,#8833,$,$); -#8838=IFCMEMBERTYPE('3OYqu4dXzBcBHrYiJwopLF',$,'260-180-6.3',$,$,$,$,$,$,$); -#8839=IFCMATERIALPROFILESET($,$,(#8841),$); -#8840=IFCRELASSOCIATESMATERIAL('15hCrTT511R9Ax3JIu1q3p',$,$,$,(#8838),#8839); -#8841=IFCMATERIALPROFILE($,$,#17,#8833,$,$); -#8842=IFCCOLUMNTYPE('1zEDq6w8LAhPjTRrEHUAz0',$,'260-180-6.3',$,$,$,$,$,$,$); -#8843=IFCMATERIALPROFILESET($,$,(#8845),$); -#8844=IFCRELASSOCIATESMATERIAL('1bocBwOrD73R9Y4tSfWw3N',$,$,$,(#8842),#8843); -#8845=IFCMATERIALPROFILE($,$,#17,#8833,$,$); -#8846=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,260.,8.,$,$); -#8847=IFCBEAMTYPE('1jmv9W5FX1agm_p7a8hEOM',$,'260-180-8.0',$,$,$,$,$,$,$); -#8848=IFCMATERIALPROFILESET($,$,(#8850),$); -#8849=IFCRELASSOCIATESMATERIAL('1qkm3M5$bDXfU5xDGGz$GZ',$,$,$,(#8847),#8848); -#8850=IFCMATERIALPROFILE($,$,#17,#8846,$,$); -#8851=IFCMEMBERTYPE('0NkQmIyj5EEu9g5ds4sJue',$,'260-180-8.0',$,$,$,$,$,$,$); -#8852=IFCMATERIALPROFILESET($,$,(#8854),$); -#8853=IFCRELASSOCIATESMATERIAL('2n_lXsnHz9ZeI4bxipazWG',$,$,$,(#8851),#8852); -#8854=IFCMATERIALPROFILE($,$,#17,#8846,$,$); -#8855=IFCCOLUMNTYPE('3YweKGN293JQX_ohKfEma_',$,'260-180-8.0',$,$,$,$,$,$,$); -#8856=IFCMATERIALPROFILESET($,$,(#8858),$); -#8857=IFCRELASSOCIATESMATERIAL('0TFkLDVeP7ZvKnaWwnrEn9',$,$,$,(#8855),#8856); -#8858=IFCMATERIALPROFILE($,$,#17,#8846,$,$); -#8859=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,260.,10.,$,$); -#8860=IFCBEAMTYPE('1PZi$tdXjDM9TA_VV2akFa',$,'260-180-10.0',$,$,$,$,$,$,$); -#8861=IFCMATERIALPROFILESET($,$,(#8863),$); -#8862=IFCRELASSOCIATESMATERIAL('29WSYlDjj9YAAEFy7AEqoL',$,$,$,(#8860),#8861); -#8863=IFCMATERIALPROFILE($,$,#17,#8859,$,$); -#8864=IFCMEMBERTYPE('1ldIi$brn2RgXdlSR3GF$e',$,'260-180-10.0',$,$,$,$,$,$,$); -#8865=IFCMATERIALPROFILESET($,$,(#8867),$); -#8866=IFCRELASSOCIATESMATERIAL('2HVHhNMrz13x8A$IaC6Pqo',$,$,$,(#8864),#8865); -#8867=IFCMATERIALPROFILE($,$,#17,#8859,$,$); -#8868=IFCCOLUMNTYPE('2U7_pZVsz1XxFtv8UJD6yM',$,'260-180-10.0',$,$,$,$,$,$,$); -#8869=IFCMATERIALPROFILESET($,$,(#8871),$); -#8870=IFCRELASSOCIATESMATERIAL('2egzd3Myz9txH9B0jpeTcY',$,$,$,(#8868),#8869); -#8871=IFCMATERIALPROFILE($,$,#17,#8859,$,$); -#8872=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,260.,12.5,$,$); -#8873=IFCBEAMTYPE('3OSUmREPbEUQyzpDDfr4qv',$,'260-180-12.5',$,$,$,$,$,$,$); -#8874=IFCMATERIALPROFILESET($,$,(#8876),$); -#8875=IFCRELASSOCIATESMATERIAL('3TVgWtwzP53AE9Wfv2GwKX',$,$,$,(#8873),#8874); -#8876=IFCMATERIALPROFILE($,$,#17,#8872,$,$); -#8877=IFCMEMBERTYPE('0aawZ7$An4PPJB_Eskwmi8',$,'260-180-12.5',$,$,$,$,$,$,$); -#8878=IFCMATERIALPROFILESET($,$,(#8880),$); -#8879=IFCRELASSOCIATESMATERIAL('0fFYSzLlvAVe2mKZPNgF_k',$,$,$,(#8877),#8878); -#8880=IFCMATERIALPROFILE($,$,#17,#8872,$,$); -#8881=IFCCOLUMNTYPE('1$yu50WNzCs917kOHwqiDO',$,'260-180-12.5',$,$,$,$,$,$,$); -#8882=IFCMATERIALPROFILESET($,$,(#8884),$); -#8883=IFCRELASSOCIATESMATERIAL('0C9r1iU516LAboQMypDr3D',$,$,$,(#8881),#8882); -#8884=IFCMATERIALPROFILE($,$,#17,#8872,$,$); -#8885=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,260.,14.2,$,$); -#8886=IFCBEAMTYPE('0q9ajG3qTETQqb8hOEJJ9g',$,'260-180-14.2',$,$,$,$,$,$,$); -#8887=IFCMATERIALPROFILESET($,$,(#8889),$); -#8888=IFCRELASSOCIATESMATERIAL('0sy9bXnl50PxG_CtG$ocK1',$,$,$,(#8886),#8887); -#8889=IFCMATERIALPROFILE($,$,#17,#8885,$,$); -#8890=IFCMEMBERTYPE('3YIQITtXT1DANFyRxvFVgN',$,'260-180-14.2',$,$,$,$,$,$,$); -#8891=IFCMATERIALPROFILESET($,$,(#8893),$); -#8892=IFCRELASSOCIATESMATERIAL('1sPwnf6uLCTP2m3CKm$FXn',$,$,$,(#8890),#8891); -#8893=IFCMATERIALPROFILE($,$,#17,#8885,$,$); -#8894=IFCCOLUMNTYPE('29kQWuUGLCfvA0w863r3Si',$,'260-180-14.2',$,$,$,$,$,$,$); -#8895=IFCMATERIALPROFILESET($,$,(#8897),$); -#8896=IFCRELASSOCIATESMATERIAL('0i719z8$914ByiA1CbNd8t',$,$,$,(#8894),#8895); -#8897=IFCMATERIALPROFILE($,$,#17,#8885,$,$); -#8898=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,180.,260.,16.,$,$); -#8899=IFCBEAMTYPE('2dMo1XiJ1CqhuOApRYe0qi',$,'260-180-16.0',$,$,$,$,$,$,$); -#8900=IFCMATERIALPROFILESET($,$,(#8902),$); -#8901=IFCRELASSOCIATESMATERIAL('1gc9z3PnD8dQqIQX$QQPm2',$,$,$,(#8899),#8900); -#8902=IFCMATERIALPROFILE($,$,#17,#8898,$,$); -#8903=IFCMEMBERTYPE('2VgQeUTLL5hez0MfGdsGyX',$,'260-180-16.0',$,$,$,$,$,$,$); -#8904=IFCMATERIALPROFILESET($,$,(#8906),$); -#8905=IFCRELASSOCIATESMATERIAL('30bKQwXkDBfwsfjFTJ7U8R',$,$,$,(#8903),#8904); -#8906=IFCMATERIALPROFILE($,$,#17,#8898,$,$); -#8907=IFCCOLUMNTYPE('2L0AF5IXj0aApXEx6QLfje',$,'260-180-16.0',$,$,$,$,$,$,$); -#8908=IFCMATERIALPROFILESET($,$,(#8910),$); -#8909=IFCRELASSOCIATESMATERIAL('20S5Pquz598BVl02aovnfy',$,$,$,(#8907),#8908); -#8910=IFCMATERIALPROFILE($,$,#17,#8898,$,$); -#8911=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,300.,6.3,$,$); -#8912=IFCBEAMTYPE('0w1lbILLT92RfFd3ASV4e_',$,'300-200-6.3',$,$,$,$,$,$,$); -#8913=IFCMATERIALPROFILESET($,$,(#8915),$); -#8914=IFCRELASSOCIATESMATERIAL('2NJ7sah8DAhQ8j1fSEHvsf',$,$,$,(#8912),#8913); -#8915=IFCMATERIALPROFILE($,$,#17,#8911,$,$); -#8916=IFCMEMBERTYPE('2jU8VFmZ56txk1m46pkhDg',$,'300-200-6.3',$,$,$,$,$,$,$); -#8917=IFCMATERIALPROFILESET($,$,(#8919),$); -#8918=IFCRELASSOCIATESMATERIAL('2p$9ScnUP1vOxIUapLXSAx',$,$,$,(#8916),#8917); -#8919=IFCMATERIALPROFILE($,$,#17,#8911,$,$); -#8920=IFCCOLUMNTYPE('1tTqKHAHL7oPmu4Y593Wx4',$,'300-200-6.3',$,$,$,$,$,$,$); -#8921=IFCMATERIALPROFILESET($,$,(#8923),$); -#8922=IFCRELASSOCIATESMATERIAL('07dIVBVp12KOMOA3Sym5jr',$,$,$,(#8920),#8921); -#8923=IFCMATERIALPROFILE($,$,#17,#8911,$,$); -#8924=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,300.,8.,$,$); -#8925=IFCBEAMTYPE('2sgfEhXYH28fqy4He5avHc',$,'300-200-8.0',$,$,$,$,$,$,$); -#8926=IFCMATERIALPROFILESET($,$,(#8928),$); -#8927=IFCRELASSOCIATESMATERIAL('0i1mg7BpHExwSXXAfTUkKY',$,$,$,(#8925),#8926); -#8928=IFCMATERIALPROFILE($,$,#17,#8924,$,$); -#8929=IFCMEMBERTYPE('1FQTyMuAP3ihr448gMepzG',$,'300-200-8.0',$,$,$,$,$,$,$); -#8930=IFCMATERIALPROFILESET($,$,(#8932),$); -#8931=IFCRELASSOCIATESMATERIAL('1YuQJM_Vf2Pu0EngcuiIn5',$,$,$,(#8929),#8930); -#8932=IFCMATERIALPROFILE($,$,#17,#8924,$,$); -#8933=IFCCOLUMNTYPE('2AHqP8aiH95uneXyNumq_N',$,'300-200-8.0',$,$,$,$,$,$,$); -#8934=IFCMATERIALPROFILESET($,$,(#8936),$); -#8935=IFCRELASSOCIATESMATERIAL('1sV0$vRLD6kP8j$y_ujQGZ',$,$,$,(#8933),#8934); -#8936=IFCMATERIALPROFILE($,$,#17,#8924,$,$); -#8937=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,300.,10.,$,$); -#8938=IFCBEAMTYPE('2iLcQo4U5CQuqIyzvHCWKL',$,'300-200-10.0',$,$,$,$,$,$,$); -#8939=IFCMATERIALPROFILESET($,$,(#8941),$); -#8940=IFCRELASSOCIATESMATERIAL('3BCZ0yBRv7DAyUooT6EqqB',$,$,$,(#8938),#8939); -#8941=IFCMATERIALPROFILE($,$,#17,#8937,$,$); -#8942=IFCMEMBERTYPE('2dWPsz7JHD$9mJlWGWJfDL',$,'300-200-10.0',$,$,$,$,$,$,$); -#8943=IFCMATERIALPROFILESET($,$,(#8945),$); -#8944=IFCRELASSOCIATESMATERIAL('0S99mR1JL6G8wPMwY8JrDl',$,$,$,(#8942),#8943); -#8945=IFCMATERIALPROFILE($,$,#17,#8937,$,$); -#8946=IFCCOLUMNTYPE('3g4JXWK55AaODyEFkJfmbG',$,'300-200-10.0',$,$,$,$,$,$,$); -#8947=IFCMATERIALPROFILESET($,$,(#8949),$); -#8948=IFCRELASSOCIATESMATERIAL('3X4vaKjxT19PfXWfUzGu3E',$,$,$,(#8946),#8947); -#8949=IFCMATERIALPROFILE($,$,#17,#8937,$,$); -#8950=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,300.,12.5,$,$); -#8951=IFCBEAMTYPE('38UgEtqlz4mub1oZWFufGl',$,'300-200-12.5',$,$,$,$,$,$,$); -#8952=IFCMATERIALPROFILESET($,$,(#8954),$); -#8953=IFCRELASSOCIATESMATERIAL('2ZC4AQ9iT0NPYFRHm73Ke4',$,$,$,(#8951),#8952); -#8954=IFCMATERIALPROFILE($,$,#17,#8950,$,$); -#8955=IFCMEMBERTYPE('1WglYwu4b4g9Ng2Ocif6lf',$,'300-200-12.5',$,$,$,$,$,$,$); -#8956=IFCMATERIALPROFILESET($,$,(#8958),$); -#8957=IFCRELASSOCIATESMATERIAL('3jOn7TK252Cv$o6GdhrGOU',$,$,$,(#8955),#8956); -#8958=IFCMATERIALPROFILE($,$,#17,#8950,$,$); -#8959=IFCCOLUMNTYPE('2ejSnfq9b7L9ABqrY8q3cv',$,'300-200-12.5',$,$,$,$,$,$,$); -#8960=IFCMATERIALPROFILESET($,$,(#8962),$); -#8961=IFCRELASSOCIATESMATERIAL('1R5S3rrP13W8mhc0GrJct4',$,$,$,(#8959),#8960); -#8962=IFCMATERIALPROFILE($,$,#17,#8950,$,$); -#8963=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,300.,14.2,$,$); -#8964=IFCBEAMTYPE('2D9aNY2PP9jgFeEtyWYcdT',$,'300-200-14.2',$,$,$,$,$,$,$); -#8965=IFCMATERIALPROFILESET($,$,(#8967),$); -#8966=IFCRELASSOCIATESMATERIAL('1_4UbhLg1CiOkcuG4B0SBw',$,$,$,(#8964),#8965); -#8967=IFCMATERIALPROFILE($,$,#17,#8963,$,$); -#8968=IFCMEMBERTYPE('2zTmsDG0DCJRqVGrXSv1T$',$,'300-200-14.2',$,$,$,$,$,$,$); -#8969=IFCMATERIALPROFILESET($,$,(#8971),$); -#8970=IFCRELASSOCIATESMATERIAL('16XePYFA5388hy8uMRHUH1',$,$,$,(#8968),#8969); -#8971=IFCMATERIALPROFILE($,$,#17,#8963,$,$); -#8972=IFCCOLUMNTYPE('16wjggQ713J9rw8j4MPlbW',$,'300-200-14.2',$,$,$,$,$,$,$); -#8973=IFCMATERIALPROFILESET($,$,(#8975),$); -#8974=IFCRELASSOCIATESMATERIAL('2tAf$xvQj7WghyiCDgTZM1',$,$,$,(#8972),#8973); -#8975=IFCMATERIALPROFILE($,$,#17,#8963,$,$); -#8976=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,300.,16.,$,$); -#8977=IFCBEAMTYPE('0ILfrCccj6iBk_OU6SKkbe',$,'300-200-16.0',$,$,$,$,$,$,$); -#8978=IFCMATERIALPROFILESET($,$,(#8980),$); -#8979=IFCRELASSOCIATESMATERIAL('2OYEj1MnX5svZ$9RspAwqR',$,$,$,(#8977),#8978); -#8980=IFCMATERIALPROFILE($,$,#17,#8976,$,$); -#8981=IFCMEMBERTYPE('0r0hnd_Yj1JAlE4E$7k0Ga',$,'300-200-16.0',$,$,$,$,$,$,$); -#8982=IFCMATERIALPROFILESET($,$,(#8984),$); -#8983=IFCRELASSOCIATESMATERIAL('3ZPLhrSu15zx1c9HqgKrmO',$,$,$,(#8981),#8982); -#8984=IFCMATERIALPROFILE($,$,#17,#8976,$,$); -#8985=IFCCOLUMNTYPE('2FHYMyR059Pxb4wbKD$W7I',$,'300-200-16.0',$,$,$,$,$,$,$); -#8986=IFCMATERIALPROFILESET($,$,(#8988),$); -#8987=IFCRELASSOCIATESMATERIAL('1Ux4sXcn17pQ0KnSwNP8N$',$,$,$,(#8985),#8986); -#8988=IFCMATERIALPROFILE($,$,#17,#8976,$,$); -#8989=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,350.,6.3,$,$); -#8990=IFCBEAMTYPE('2WyWRIA7DBrRPXhQKRwRlF',$,'350-250-6.3',$,$,$,$,$,$,$); -#8991=IFCMATERIALPROFILESET($,$,(#8993),$); -#8992=IFCRELASSOCIATESMATERIAL('0UbbvqHE18lA6ZgXbIvvVT',$,$,$,(#8990),#8991); -#8993=IFCMATERIALPROFILE($,$,#17,#8989,$,$); -#8994=IFCMEMBERTYPE('05Fi_rWYjDwPdyJb5l1s4X',$,'350-250-6.3',$,$,$,$,$,$,$); -#8995=IFCMATERIALPROFILESET($,$,(#8997),$); -#8996=IFCRELASSOCIATESMATERIAL('1wDsKR$V93yBg2DdYdoxT1',$,$,$,(#8994),#8995); -#8997=IFCMATERIALPROFILE($,$,#17,#8989,$,$); -#8998=IFCCOLUMNTYPE('0KYUJwmcT2kxJ4YAhIATaN',$,'350-250-6.3',$,$,$,$,$,$,$); -#8999=IFCMATERIALPROFILESET($,$,(#9001),$); -#9000=IFCRELASSOCIATESMATERIAL('1kxJ2hB6z60QU$u3ltuC1L',$,$,$,(#8998),#8999); -#9001=IFCMATERIALPROFILE($,$,#17,#8989,$,$); -#9002=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,350.,8.,$,$); -#9003=IFCBEAMTYPE('2xWFGc9c5E2BCtqG6nyZTb',$,'350-250-8.0',$,$,$,$,$,$,$); -#9004=IFCMATERIALPROFILESET($,$,(#9006),$); -#9005=IFCRELASSOCIATESMATERIAL('0IiS$U8GrALBq$l61uy_LC',$,$,$,(#9003),#9004); -#9006=IFCMATERIALPROFILE($,$,#17,#9002,$,$); -#9007=IFCMEMBERTYPE('3Synp5LNP6qf7RSb7m2u5g',$,'350-250-8.0',$,$,$,$,$,$,$); -#9008=IFCMATERIALPROFILESET($,$,(#9010),$); -#9009=IFCRELASSOCIATESMATERIAL('2wuibOC_HBrhoWzZcZF1UA',$,$,$,(#9007),#9008); -#9010=IFCMATERIALPROFILE($,$,#17,#9002,$,$); -#9011=IFCCOLUMNTYPE('06o6wTP5b2BPAPfN7deWm7',$,'350-250-8.0',$,$,$,$,$,$,$); -#9012=IFCMATERIALPROFILESET($,$,(#9014),$); -#9013=IFCRELASSOCIATESMATERIAL('0hMR9pG9b2twaPvq8dqKGk',$,$,$,(#9011),#9012); -#9014=IFCMATERIALPROFILE($,$,#17,#9002,$,$); -#9015=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,350.,10.,$,$); -#9016=IFCBEAMTYPE('0Ik0nTplrCSR4X1yXZAbi$',$,'350-250-10.0',$,$,$,$,$,$,$); -#9017=IFCMATERIALPROFILESET($,$,(#9019),$); -#9018=IFCRELASSOCIATESMATERIAL('2mi1uZD4fBWeVgwBrKUSyi',$,$,$,(#9016),#9017); -#9019=IFCMATERIALPROFILE($,$,#17,#9015,$,$); -#9020=IFCMEMBERTYPE('2GiOQ_T89Fvw2YmyyBcYSi',$,'350-250-10.0',$,$,$,$,$,$,$); -#9021=IFCMATERIALPROFILESET($,$,(#9023),$); -#9022=IFCRELASSOCIATESMATERIAL('17GCQsNfz3JewVAQ0HOq33',$,$,$,(#9020),#9021); -#9023=IFCMATERIALPROFILE($,$,#17,#9015,$,$); -#9024=IFCCOLUMNTYPE('0buigU4RrFR9gc_e5jvpsy',$,'350-250-10.0',$,$,$,$,$,$,$); -#9025=IFCMATERIALPROFILESET($,$,(#9027),$); -#9026=IFCRELASSOCIATESMATERIAL('2AGhhKZoXEQhTUuBd9Ftax',$,$,$,(#9024),#9025); -#9027=IFCMATERIALPROFILE($,$,#17,#9015,$,$); -#9028=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,350.,12.5,$,$); -#9029=IFCBEAMTYPE('1MFUhPBdT48PNColiR_0SN',$,'350-250-12.5',$,$,$,$,$,$,$); -#9030=IFCMATERIALPROFILESET($,$,(#9032),$); -#9031=IFCRELASSOCIATESMATERIAL('1vOFFWAXP248YmyEWbRVCA',$,$,$,(#9029),#9030); -#9032=IFCMATERIALPROFILE($,$,#17,#9028,$,$); -#9033=IFCMEMBERTYPE('2xUUyHy8vB5gmtDU7kgvoi',$,'350-250-12.5',$,$,$,$,$,$,$); -#9034=IFCMATERIALPROFILESET($,$,(#9036),$); -#9035=IFCRELASSOCIATESMATERIAL('3B9gd78gLF1QOQTY8sSU4y',$,$,$,(#9033),#9034); -#9036=IFCMATERIALPROFILE($,$,#17,#9028,$,$); -#9037=IFCCOLUMNTYPE('0g6Ynoajn6uQHQQ_r90jST',$,'350-250-12.5',$,$,$,$,$,$,$); -#9038=IFCMATERIALPROFILESET($,$,(#9040),$); -#9039=IFCRELASSOCIATESMATERIAL('3admFDgQ50MwP0TlHd9bOL',$,$,$,(#9037),#9038); -#9040=IFCMATERIALPROFILE($,$,#17,#9028,$,$); -#9041=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,350.,14.2,$,$); -#9042=IFCBEAMTYPE('2Ftjcw$Kf9xO0tTkH_Aqz4',$,'350-250-14.2',$,$,$,$,$,$,$); -#9043=IFCMATERIALPROFILESET($,$,(#9045),$); -#9044=IFCRELASSOCIATESMATERIAL('2SV9VXzNrA5hvV$N$WdBpp',$,$,$,(#9042),#9043); -#9045=IFCMATERIALPROFILE($,$,#17,#9041,$,$); -#9046=IFCMEMBERTYPE('0s0BtWn154Ig5CvGzQByUS',$,'350-250-14.2',$,$,$,$,$,$,$); -#9047=IFCMATERIALPROFILESET($,$,(#9049),$); -#9048=IFCRELASSOCIATESMATERIAL('0tkwefKjrFgOG5GZ96$Zoz',$,$,$,(#9046),#9047); -#9049=IFCMATERIALPROFILE($,$,#17,#9041,$,$); -#9050=IFCCOLUMNTYPE('2H6bwB7snEle0YnE6Wx7jP',$,'350-250-14.2',$,$,$,$,$,$,$); -#9051=IFCMATERIALPROFILESET($,$,(#9053),$); -#9052=IFCRELASSOCIATESMATERIAL('0pnhr46XfAnuhVIWL14$mH',$,$,$,(#9050),#9051); -#9053=IFCMATERIALPROFILE($,$,#17,#9041,$,$); -#9054=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,350.,16.,$,$); -#9055=IFCBEAMTYPE('19h0nZhm9AZxo2eRqMkcoU',$,'350-250-16.0',$,$,$,$,$,$,$); -#9056=IFCMATERIALPROFILESET($,$,(#9058),$); -#9057=IFCRELASSOCIATESMATERIAL('1TsnCAdmH8yhAMHnjIQzLl',$,$,$,(#9055),#9056); -#9058=IFCMATERIALPROFILE($,$,#17,#9054,$,$); -#9059=IFCMEMBERTYPE('1ZyT7XwD9Exep5cu5JMMym',$,'350-250-16.0',$,$,$,$,$,$,$); -#9060=IFCMATERIALPROFILESET($,$,(#9062),$); -#9061=IFCRELASSOCIATESMATERIAL('3R9169k3P7qPGq5AHd3Cks',$,$,$,(#9059),#9060); -#9062=IFCMATERIALPROFILE($,$,#17,#9054,$,$); -#9063=IFCCOLUMNTYPE('3kEjahyHP6fhCwpV3a$J2w',$,'350-250-16.0',$,$,$,$,$,$,$); -#9064=IFCMATERIALPROFILESET($,$,(#9066),$); -#9065=IFCRELASSOCIATESMATERIAL('0iGBXt0Vv89RIMCELb9K4E',$,$,$,(#9063),#9064); -#9066=IFCMATERIALPROFILE($,$,#17,#9054,$,$); -#9067=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,400.,8.,$,$); -#9068=IFCBEAMTYPE('1LXXeFfyv1$vIaZAjxo8wa',$,'400-200-8.0',$,$,$,$,$,$,$); -#9069=IFCMATERIALPROFILESET($,$,(#9071),$); -#9070=IFCRELASSOCIATESMATERIAL('1X248LcFv43QXU6Ve$w$H9',$,$,$,(#9068),#9069); -#9071=IFCMATERIALPROFILE($,$,#17,#9067,$,$); -#9072=IFCMEMBERTYPE('1v5XoUlnH1URY$PQ3e$d4i',$,'400-200-8.0',$,$,$,$,$,$,$); -#9073=IFCMATERIALPROFILESET($,$,(#9075),$); -#9074=IFCRELASSOCIATESMATERIAL('3POVumPyjD_BqtwsZoG1d8',$,$,$,(#9072),#9073); -#9075=IFCMATERIALPROFILE($,$,#17,#9067,$,$); -#9076=IFCCOLUMNTYPE('1rMOCVVZb4BfzJO8pWInaW',$,'400-200-8.0',$,$,$,$,$,$,$); -#9077=IFCMATERIALPROFILESET($,$,(#9079),$); -#9078=IFCRELASSOCIATESMATERIAL('1K4wevLgP4HutK3AaQhd7_',$,$,$,(#9076),#9077); -#9079=IFCMATERIALPROFILE($,$,#17,#9067,$,$); -#9080=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,400.,10.,$,$); -#9081=IFCBEAMTYPE('3V7HG9Yj54PRze2z_37y$2',$,'400-200-10.0',$,$,$,$,$,$,$); -#9082=IFCMATERIALPROFILESET($,$,(#9084),$); -#9083=IFCRELASSOCIATESMATERIAL('3vNn024dvFdBe834$nwpSE',$,$,$,(#9081),#9082); -#9084=IFCMATERIALPROFILE($,$,#17,#9080,$,$); -#9085=IFCMEMBERTYPE('2yTs1Iqyz8UR0DbNEWdMZd',$,'400-200-10.0',$,$,$,$,$,$,$); -#9086=IFCMATERIALPROFILESET($,$,(#9088),$); -#9087=IFCRELASSOCIATESMATERIAL('29yPZe_5T3Su1flktDi1YY',$,$,$,(#9085),#9086); -#9088=IFCMATERIALPROFILE($,$,#17,#9080,$,$); -#9089=IFCCOLUMNTYPE('0VEGvA6vjEYRGFuyGlMGxd',$,'400-200-10.0',$,$,$,$,$,$,$); -#9090=IFCMATERIALPROFILESET($,$,(#9092),$); -#9091=IFCRELASSOCIATESMATERIAL('2WUi1memD1vvIzPwPHcI1H',$,$,$,(#9089),#9090); -#9092=IFCMATERIALPROFILE($,$,#17,#9080,$,$); -#9093=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,400.,12.5,$,$); -#9094=IFCBEAMTYPE('0AJeoO7TrCVwkufsl0XfYB',$,'400-200-12.5',$,$,$,$,$,$,$); -#9095=IFCMATERIALPROFILESET($,$,(#9097),$); -#9096=IFCRELASSOCIATESMATERIAL('3zhrpmoBLAK8SeDcJUrEXK',$,$,$,(#9094),#9095); -#9097=IFCMATERIALPROFILE($,$,#17,#9093,$,$); -#9098=IFCMEMBERTYPE('1nUuvbSWX4xOlfDxenPRPn',$,'400-200-12.5',$,$,$,$,$,$,$); -#9099=IFCMATERIALPROFILESET($,$,(#9101),$); -#9100=IFCRELASSOCIATESMATERIAL('1lOmH1ALr5UfkniCUWApjj',$,$,$,(#9098),#9099); -#9101=IFCMATERIALPROFILE($,$,#17,#9093,$,$); -#9102=IFCCOLUMNTYPE('0RsUCD12v0jPPCeBOu_4iX',$,'400-200-12.5',$,$,$,$,$,$,$); -#9103=IFCMATERIALPROFILESET($,$,(#9105),$); -#9104=IFCRELASSOCIATESMATERIAL('2RT1mQ_Oj81gGBepuhWn$W',$,$,$,(#9102),#9103); -#9105=IFCMATERIALPROFILE($,$,#17,#9093,$,$); -#9106=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,400.,14.2,$,$); -#9107=IFCBEAMTYPE('0zgpr6CLz9hPytHu5gO89y',$,'400-200-14.2',$,$,$,$,$,$,$); -#9108=IFCMATERIALPROFILESET($,$,(#9110),$); -#9109=IFCRELASSOCIATESMATERIAL('3Pf94RG4jEYvx2LJw_C0r6',$,$,$,(#9107),#9108); -#9110=IFCMATERIALPROFILE($,$,#17,#9106,$,$); -#9111=IFCMEMBERTYPE('0NpTWBJnrAxgapP4RQj9MX',$,'400-200-14.2',$,$,$,$,$,$,$); -#9112=IFCMATERIALPROFILESET($,$,(#9114),$); -#9113=IFCRELASSOCIATESMATERIAL('2ALV40PRz2kuXtafYS4xE6',$,$,$,(#9111),#9112); -#9114=IFCMATERIALPROFILE($,$,#17,#9106,$,$); -#9115=IFCCOLUMNTYPE('3rgcM2MB9DFhKySRwP_aZi',$,'400-200-14.2',$,$,$,$,$,$,$); -#9116=IFCMATERIALPROFILESET($,$,(#9118),$); -#9117=IFCRELASSOCIATESMATERIAL('3ztJp_JY13$ecP4kQ4NKGp',$,$,$,(#9115),#9116); -#9118=IFCMATERIALPROFILE($,$,#17,#9106,$,$); -#9119=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,200.,400.,16.,$,$); -#9120=IFCBEAMTYPE('2NVoke64P0QwRt6jdUJUFZ',$,'400-200-16.0',$,$,$,$,$,$,$); -#9121=IFCMATERIALPROFILESET($,$,(#9123),$); -#9122=IFCRELASSOCIATESMATERIAL('2y3osissPF5fqM4nUeuABd',$,$,$,(#9120),#9121); -#9123=IFCMATERIALPROFILE($,$,#17,#9119,$,$); -#9124=IFCMEMBERTYPE('0lh0qsFeX2mAq_MkQXc_V0',$,'400-200-16.0',$,$,$,$,$,$,$); -#9125=IFCMATERIALPROFILESET($,$,(#9127),$); -#9126=IFCRELASSOCIATESMATERIAL('1NLwy$o7HDX8ETvVtUX8f9',$,$,$,(#9124),#9125); -#9127=IFCMATERIALPROFILE($,$,#17,#9119,$,$); -#9128=IFCCOLUMNTYPE('0LHOWGNM9AwfWqtgkr2npf',$,'400-200-16.0',$,$,$,$,$,$,$); -#9129=IFCMATERIALPROFILESET($,$,(#9131),$); -#9130=IFCRELASSOCIATESMATERIAL('1SOnGZH014reIo6ijR9c6Z',$,$,$,(#9128),#9129); -#9131=IFCMATERIALPROFILE($,$,#17,#9119,$,$); -#9132=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,450.,8.,$,$); -#9133=IFCBEAMTYPE('3OqN9Pcvn82xmJYVC05cB5',$,'450-250-8.0',$,$,$,$,$,$,$); -#9134=IFCMATERIALPROFILESET($,$,(#9136),$); -#9135=IFCRELASSOCIATESMATERIAL('1QsYBQvUz5b82EYqvtej6T',$,$,$,(#9133),#9134); -#9136=IFCMATERIALPROFILE($,$,#17,#9132,$,$); -#9137=IFCMEMBERTYPE('2zYri8sQj0jecKEpAwmw$Q',$,'450-250-8.0',$,$,$,$,$,$,$); -#9138=IFCMATERIALPROFILESET($,$,(#9140),$); -#9139=IFCRELASSOCIATESMATERIAL('3p5dQJ7ErA8R8GGgBgbE5I',$,$,$,(#9137),#9138); -#9140=IFCMATERIALPROFILE($,$,#17,#9132,$,$); -#9141=IFCCOLUMNTYPE('2MrsH_tT9CrOcCGHmHRsf$',$,'450-250-8.0',$,$,$,$,$,$,$); -#9142=IFCMATERIALPROFILESET($,$,(#9144),$); -#9143=IFCRELASSOCIATESMATERIAL('1DzCbNKar4x9hF5byEhdZg',$,$,$,(#9141),#9142); -#9144=IFCMATERIALPROFILE($,$,#17,#9132,$,$); -#9145=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,450.,10.,$,$); -#9146=IFCBEAMTYPE('1y_tbEgQb2wgnPK0W_jqXN',$,'450-250-10.0',$,$,$,$,$,$,$); -#9147=IFCMATERIALPROFILESET($,$,(#9149),$); -#9148=IFCRELASSOCIATESMATERIAL('3GJHpbPn1DlhtjeBwi9zcQ',$,$,$,(#9146),#9147); -#9149=IFCMATERIALPROFILE($,$,#17,#9145,$,$); -#9150=IFCMEMBERTYPE('15G6JZ0_j0TxA1wi8xow9u',$,'450-250-10.0',$,$,$,$,$,$,$); -#9151=IFCMATERIALPROFILESET($,$,(#9153),$); -#9152=IFCRELASSOCIATESMATERIAL('05S5aWeUv0GA$T1ZoIhIg$',$,$,$,(#9150),#9151); -#9153=IFCMATERIALPROFILE($,$,#17,#9145,$,$); -#9154=IFCCOLUMNTYPE('2MCBGcr9j0Uvc8aCV1iQA1',$,'450-250-10.0',$,$,$,$,$,$,$); -#9155=IFCMATERIALPROFILESET($,$,(#9157),$); -#9156=IFCRELASSOCIATESMATERIAL('1GT7e_q6jBkxe8BMzOk9uV',$,$,$,(#9154),#9155); -#9157=IFCMATERIALPROFILE($,$,#17,#9145,$,$); -#9158=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,450.,12.5,$,$); -#9159=IFCBEAMTYPE('3fUl8PtbT0awp8uBvLUh1z',$,'450-250-12.5',$,$,$,$,$,$,$); -#9160=IFCMATERIALPROFILESET($,$,(#9162),$); -#9161=IFCRELASSOCIATESMATERIAL('1k4L6Uyc94Buz9JZApoBch',$,$,$,(#9159),#9160); -#9162=IFCMATERIALPROFILE($,$,#17,#9158,$,$); -#9163=IFCMEMBERTYPE('2UqudXa9rAqucIO0V3Mrn3',$,'450-250-12.5',$,$,$,$,$,$,$); -#9164=IFCMATERIALPROFILESET($,$,(#9166),$); -#9165=IFCRELASSOCIATESMATERIAL('2waMYGbRX3GQuEkMlzzrpE',$,$,$,(#9163),#9164); -#9166=IFCMATERIALPROFILE($,$,#17,#9158,$,$); -#9167=IFCCOLUMNTYPE('1eNrqclTn9BegJP1rIeg_N',$,'450-250-12.5',$,$,$,$,$,$,$); -#9168=IFCMATERIALPROFILESET($,$,(#9170),$); -#9169=IFCRELASSOCIATESMATERIAL('1kB3FSxAn4Ih0uuoQAVo3Z',$,$,$,(#9167),#9168); -#9170=IFCMATERIALPROFILE($,$,#17,#9158,$,$); -#9171=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,450.,14.2,$,$); -#9172=IFCBEAMTYPE('1VlEFj$tz1X8mylZfFOeg9',$,'450-250-14.2',$,$,$,$,$,$,$); -#9173=IFCMATERIALPROFILESET($,$,(#9175),$); -#9174=IFCRELASSOCIATESMATERIAL('1_aUy5LdzCpQCtIQ2zz9PQ',$,$,$,(#9172),#9173); -#9175=IFCMATERIALPROFILE($,$,#17,#9171,$,$); -#9176=IFCMEMBERTYPE('36ZGcJGIHD$ATs39e0tGnS',$,'450-250-14.2',$,$,$,$,$,$,$); -#9177=IFCMATERIALPROFILESET($,$,(#9179),$); -#9178=IFCRELASSOCIATESMATERIAL('1W2z6nJof5fw2fdXNd376R',$,$,$,(#9176),#9177); -#9179=IFCMATERIALPROFILE($,$,#17,#9171,$,$); -#9180=IFCCOLUMNTYPE('2kWONKqhHFNunyBNqlqinH',$,'450-250-14.2',$,$,$,$,$,$,$); -#9181=IFCMATERIALPROFILESET($,$,(#9183),$); -#9182=IFCRELASSOCIATESMATERIAL('0OItnXwiz0Mg0w4MneKeZn',$,$,$,(#9180),#9181); -#9183=IFCMATERIALPROFILE($,$,#17,#9171,$,$); -#9184=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,250.,450.,16.,$,$); -#9185=IFCBEAMTYPE('3T_Vef2pf0HRhj6bnI0m64',$,'450-250-16.0',$,$,$,$,$,$,$); -#9186=IFCMATERIALPROFILESET($,$,(#9188),$); -#9187=IFCRELASSOCIATESMATERIAL('2CB_XHoiL7NBq8yft32V$A',$,$,$,(#9185),#9186); -#9188=IFCMATERIALPROFILE($,$,#17,#9184,$,$); -#9189=IFCMEMBERTYPE('1U2UrMz5f4DvBOLrQpQMsm',$,'450-250-16.0',$,$,$,$,$,$,$); -#9190=IFCMATERIALPROFILESET($,$,(#9192),$); -#9191=IFCRELASSOCIATESMATERIAL('0xUfaMIRz64RyEbqXjMtIU',$,$,$,(#9189),#9190); -#9192=IFCMATERIALPROFILE($,$,#17,#9184,$,$); -#9193=IFCCOLUMNTYPE('1bp3b$Kz54zQ1LtSyGv0l0',$,'450-250-16.0',$,$,$,$,$,$,$); -#9194=IFCMATERIALPROFILESET($,$,(#9196),$); -#9195=IFCRELASSOCIATESMATERIAL('3F1HsLCsTDMRdc2UbpvQdp',$,$,$,(#9193),#9194); -#9196=IFCMATERIALPROFILE($,$,#17,#9184,$,$); -#9197=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,500.,10.,$,$); -#9198=IFCBEAMTYPE('1WjHN_fcnEjgT2n5kMCWZe',$,'500-300-10.0',$,$,$,$,$,$,$); -#9199=IFCMATERIALPROFILESET($,$,(#9201),$); -#9200=IFCRELASSOCIATESMATERIAL('0LUqT5qkz9uODnfkX2nqzd',$,$,$,(#9198),#9199); -#9201=IFCMATERIALPROFILE($,$,#17,#9197,$,$); -#9202=IFCMEMBERTYPE('2l6gnzxBn0uw31TPxSgRk4',$,'500-300-10.0',$,$,$,$,$,$,$); -#9203=IFCMATERIALPROFILESET($,$,(#9205),$); -#9204=IFCRELASSOCIATESMATERIAL('1_MaA1XLj0hvj5l08SONAC',$,$,$,(#9202),#9203); -#9205=IFCMATERIALPROFILE($,$,#17,#9197,$,$); -#9206=IFCCOLUMNTYPE('17B0lLnXvFlPtsTP_nO2ib',$,'500-300-10.0',$,$,$,$,$,$,$); -#9207=IFCMATERIALPROFILESET($,$,(#9209),$); -#9208=IFCRELASSOCIATESMATERIAL('26Q4VZT5b1UhIEIxfy9KIh',$,$,$,(#9206),#9207); -#9209=IFCMATERIALPROFILE($,$,#17,#9197,$,$); -#9210=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,500.,12.5,$,$); -#9211=IFCBEAMTYPE('3fU5Pk5wrCdBuuyXSfLJXw',$,'500-300-12.5',$,$,$,$,$,$,$); -#9212=IFCMATERIALPROFILESET($,$,(#9214),$); -#9213=IFCRELASSOCIATESMATERIAL('1cI231UgLErvZl3QFA5Id9',$,$,$,(#9211),#9212); -#9214=IFCMATERIALPROFILE($,$,#17,#9210,$,$); -#9215=IFCMEMBERTYPE('05HnrVyy933v9WsbNrQupd',$,'500-300-12.5',$,$,$,$,$,$,$); -#9216=IFCMATERIALPROFILESET($,$,(#9218),$); -#9217=IFCRELASSOCIATESMATERIAL('0Ihdu54dnAVg07pc3q2OcC',$,$,$,(#9215),#9216); -#9218=IFCMATERIALPROFILE($,$,#17,#9210,$,$); -#9219=IFCCOLUMNTYPE('31lXSZe7v0KgVrRjMnV__6',$,'500-300-12.5',$,$,$,$,$,$,$); -#9220=IFCMATERIALPROFILESET($,$,(#9222),$); -#9221=IFCRELASSOCIATESMATERIAL('2riutPFgD0mQ$n4sxHpfzn',$,$,$,(#9219),#9220); -#9222=IFCMATERIALPROFILE($,$,#17,#9210,$,$); -#9223=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,500.,14.2,$,$); -#9224=IFCBEAMTYPE('3_sRYF$uj7l9dcnQEWPjbn',$,'500-300-14.2',$,$,$,$,$,$,$); -#9225=IFCMATERIALPROFILESET($,$,(#9227),$); -#9226=IFCRELASSOCIATESMATERIAL('2ODL1pV_rDJPAThDNzoUjy',$,$,$,(#9224),#9225); -#9227=IFCMATERIALPROFILE($,$,#17,#9223,$,$); -#9228=IFCMEMBERTYPE('2NzjaJTP9D1AYDTt_Zaoxf',$,'500-300-14.2',$,$,$,$,$,$,$); -#9229=IFCMATERIALPROFILESET($,$,(#9231),$); -#9230=IFCRELASSOCIATESMATERIAL('2S_suoJFLDvBqFzMa3OQbV',$,$,$,(#9228),#9229); -#9231=IFCMATERIALPROFILE($,$,#17,#9223,$,$); -#9232=IFCCOLUMNTYPE('0HdFnqxeT6AQXVSWbD$AD1',$,'500-300-14.2',$,$,$,$,$,$,$); -#9233=IFCMATERIALPROFILESET($,$,(#9235),$); -#9234=IFCRELASSOCIATESMATERIAL('1Hau2hz1L8SxjxpjgF3fQz',$,$,$,(#9232),#9233); -#9235=IFCMATERIALPROFILE($,$,#17,#9223,$,$); -#9236=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,500.,16.,$,$); -#9237=IFCBEAMTYPE('144SWexDf9fhVbTxpK5D_G',$,'500-300-16.0',$,$,$,$,$,$,$); -#9238=IFCMATERIALPROFILESET($,$,(#9240),$); -#9239=IFCRELASSOCIATESMATERIAL('3ngfON_nz2i9rprkF3bdUM',$,$,$,(#9237),#9238); -#9240=IFCMATERIALPROFILE($,$,#17,#9236,$,$); -#9241=IFCMEMBERTYPE('29Nbf5WW96dB_YGE$88gcD',$,'500-300-16.0',$,$,$,$,$,$,$); -#9242=IFCMATERIALPROFILESET($,$,(#9244),$); -#9243=IFCRELASSOCIATESMATERIAL('1zKuQuVWnA1fS1_fBanAyZ',$,$,$,(#9241),#9242); -#9244=IFCMATERIALPROFILE($,$,#17,#9236,$,$); -#9245=IFCCOLUMNTYPE('2snLb12pz7ogB1Iyi2oC1A',$,'500-300-16.0',$,$,$,$,$,$,$); -#9246=IFCMATERIALPROFILESET($,$,(#9248),$); -#9247=IFCRELASSOCIATESMATERIAL('29GnBrjgP7shdwvzPnIk6G',$,$,$,(#9245),#9246); -#9248=IFCMATERIALPROFILE($,$,#17,#9236,$,$); -#9249=IFCRECTANGLEHOLLOWPROFILEDEF(.AREA.,$,$,300.,500.,20.,$,$); -#9250=IFCBEAMTYPE('0Pjw6qzWbEY9HY0UilLMlp',$,'500-300-20.0',$,$,$,$,$,$,$); -#9251=IFCMATERIALPROFILESET($,$,(#9253),$); -#9252=IFCRELASSOCIATESMATERIAL('2JgWN2KjT4HfHA16wbtud$',$,$,$,(#9250),#9251); -#9253=IFCMATERIALPROFILE($,$,#17,#9249,$,$); -#9254=IFCMEMBERTYPE('3SviWkdbT1QwVWoQjkzF0J',$,'500-300-20.0',$,$,$,$,$,$,$); -#9255=IFCMATERIALPROFILESET($,$,(#9257),$); -#9256=IFCRELASSOCIATESMATERIAL('2OHBW925T8VwVjKXt2oUzy',$,$,$,(#9254),#9255); -#9257=IFCMATERIALPROFILE($,$,#17,#9249,$,$); -#9258=IFCCOLUMNTYPE('0_zoGcRt11Lf236fEn4tRO',$,'500-300-20.0',$,$,$,$,$,$,$); -#9259=IFCMATERIALPROFILESET($,$,(#9261),$); -#9260=IFCRELASSOCIATESMATERIAL('1K3pojHND2rv_UfAY7lD99',$,$,$,(#9258),#9259); -#9261=IFCMATERIALPROFILE($,$,#17,#9249,$,$); -ENDSEC; -END-ISO-10303-21; diff --git a/src/blenderbim/blenderbim/bim/handler.py b/src/blenderbim/blenderbim/bim/handler.py index e4ff613d7a..1f208585bf 100644 --- a/src/blenderbim/blenderbim/bim/handler.py +++ b/src/blenderbim/blenderbim/bim/handler.py @@ -26,7 +26,6 @@ from blenderbim.bim.module.drawing.prop import RasterStyleProperty from bpy.app.handlers import persistent from blenderbim.bim.ifc import IfcStore from blenderbim.bim.module.owner.prop import get_user_person, get_user_organisation -from blenderbim.bim.module.model.data import AuthoringData from ifcopenshell.api.material.data import Data as MaterialData from ifcopenshell.api.type.data import Data as TypeData @@ -302,4 +301,3 @@ def setDefaultProperties(scene): drawing_style.name = "Blender Default" drawing_style.render_type = "DEFAULT" bpy.ops.bim.save_drawing_style(index="2") - AuthoringData.type_thumbnails = {} diff --git a/src/blenderbim/blenderbim/bim/module/cad/workspace.py b/src/blenderbim/blenderbim/bim/module/cad/workspace.py index e5d7ef85e9..e8c91b3e9f 100644 --- a/src/blenderbim/blenderbim/bim/module/cad/workspace.py +++ b/src/blenderbim/blenderbim/bim/module/cad/workspace.py @@ -18,7 +18,6 @@ import os import bpy -import blenderbim.tool as tool import blenderbim.bim.module.type.prop as type_prop from bpy.types import WorkSpaceTool from blenderbim.bim.module.model.data import AuthoringData @@ -52,14 +51,9 @@ class CadTool(WorkSpaceTool): row = layout.row(align=True) row.label(text="", icon="EVENT_SHIFT") row.label(text="", icon="EVENT_Q") - if obj.BIMObjectProperties.ifc_definition_id: - row.operator("bim.edit_extrusion_profile", text="Save Profile") - row.operator("bim.align_view_to_profile", text="", icon="AXIS_FRONT") - row.operator("bim.disable_editing_extrusion_profile", text="", icon="CANCEL") - else: - row.operator("bim.edit_arbitrary_profile", text="Save Profile") - row.operator("bim.align_view_to_profile", text="", icon="AXIS_FRONT") - row.operator("bim.disable_editing_arbitrary_profile", text="", icon="CANCEL") + row.operator("bim.edit_extrusion_profile", text="Save Profile") + row.operator("bim.align_view_to_profile", text="", icon="AXIS_FRONT") + row.operator("bim.disable_editing_extrusion_profile", text="", icon="CANCEL") row = layout.row(align=True) row.label(text="", icon="EVENT_SHIFT") @@ -186,10 +180,7 @@ class CadHotkey(bpy.types.Operator): bpy.ops.bim.cad_offset(distance=self.props.distance) def hotkey_S_Q(self): - if tool.Ifc.get_entity(bpy.context.active_object): - bpy.ops.bim.edit_extrusion_profile() - else: - bpy.ops.bim.edit_arbitrary_profile() + bpy.ops.bim.edit_extrusion_profile() def hotkey_S_R(self): if self.is_profile(): diff --git a/src/blenderbim/blenderbim/bim/module/material/operator.py b/src/blenderbim/blenderbim/bim/module/material/operator.py index 164b68377f..49873808af 100644 --- a/src/blenderbim/blenderbim/bim/module/material/operator.py +++ b/src/blenderbim/blenderbim/bim/module/material/operator.py @@ -503,7 +503,6 @@ class DisableEditingAssignedMaterial(bpy.types.Operator): obj: bpy.props.StringProperty() def execute(self, context): - bpy.ops.bim.disable_editing_material_set_item() obj = bpy.data.objects.get(self.obj) if self.obj else context.active_object props = obj.BIMObjectMaterialProperties props.is_editing = False @@ -527,9 +526,6 @@ class EditAssignedMaterial(bpy.types.Operator): props = obj.BIMObjectMaterialProperties product_data = Data.products[obj.BIMObjectProperties.ifc_definition_id] - if props.active_material_set_item_id != 0: # We were editing a material layer set item - bpy.ops.bim.edit_material_set_item(material_set_item=props.active_material_set_item_id) - if product_data["type"] == "IfcMaterial": bpy.ops.bim.unassign_material(obj=obj.name) bpy.ops.bim.assign_material(obj=obj.name, material_type="IfcMaterial") diff --git a/src/blenderbim/blenderbim/bim/module/model/data.py b/src/blenderbim/blenderbim/bim/module/model/data.py index b9e39ad631..36b00f63bf 100644 --- a/src/blenderbim/blenderbim/bim/module/model/data.py +++ b/src/blenderbim/blenderbim/bim/module/model/data.py @@ -189,17 +189,14 @@ class AuthoringData: if not ifc_class and ifc_classes: ifc_class = ifc_classes[0][0] if ifc_class: - elements = sorted(tool.Ifc.get().by_type(ifc_class), key=lambda s: s.Name or "Unnamed") + elements = sorted(tool.Ifc.get().by_type(ifc_class), key=lambda s: s.Name) results.extend(elements) return results return [] @classmethod def relating_types(cls, ifc_class=None): - return [ - (str(e.id()), e.Name or "Unnamed", e.Description or "") - for e in cls.constr_class_entities(ifc_class=ifc_class) - ] + return [(str(e.id()), e.Name, e.Description or "") for e in cls.constr_class_entities(ifc_class=ifc_class)] @classmethod def relating_types_browser(cls): @@ -335,7 +332,7 @@ class ArrayData: @classmethod def load(cls): cls.is_loaded = True - cls.data = {"parameters": cls.parameters()} + cls.data = { "parameters": cls.parameters() } @classmethod def parameters(cls): diff --git a/src/blenderbim/blenderbim/bim/module/model/product.py b/src/blenderbim/blenderbim/bim/module/model/product.py index 0f5ef1da27..adec92d59a 100644 --- a/src/blenderbim/blenderbim/bim/module/model/product.py +++ b/src/blenderbim/blenderbim/bim/module/model/product.py @@ -201,9 +201,7 @@ class ChangeTypePage(bpy.types.Operator, tool.Ifc.Operator): page: bpy.props.IntProperty() def _execute(self, context): - props = context.scene.BIMModelProperties - bpy.ops.bim.load_type_thumbnails(ifc_class=props.type_class, offset=9 * (self.page - 1), limit=9) - props.type_page = self.page + context.scene.BIMModelProperties.type_page = self.page return {"FINISHED"} @@ -318,24 +316,14 @@ class LoadTypeThumbnails(bpy.types.Operator, tool.Ifc.Operator): bl_label = "Load Type Thumbnails" bl_options = {"REGISTER", "UNDO"} ifc_class: bpy.props.StringProperty() - limit: bpy.props.IntProperty() - offset: bpy.props.IntProperty() def _execute(self, context): from PIL import Image, ImageDraw - props = bpy.context.scene.BIMModelProperties processing = set() - # Only process at most one paginated class at a time. + # Only process at most one class at a time. # Large projects have hundreds of types which can lead to unnecessary lag. - queue = sorted(tool.Ifc.get().by_type(self.ifc_class), key=lambda e: e.Name or "Unnamed") - if self.limit: - queue = queue[self.offset:self.offset + self.limit] - else: - offset = 9 * (props.type_page - 1) - if offset < 0: - offset = 0 - queue = queue[offset:offset + 9] + queue = tool.Ifc.get().by_type(self.ifc_class) unit_scale = ifcopenshell.util.unit.calculate_unit_scale(tool.Ifc.get()) diff --git a/src/blenderbim/blenderbim/bim/module/model/slab.py b/src/blenderbim/blenderbim/bim/module/model/slab.py index f454957b25..a9fd989b82 100644 --- a/src/blenderbim/blenderbim/bim/module/model/slab.py +++ b/src/blenderbim/blenderbim/bim/module/model/slab.py @@ -173,9 +173,10 @@ class DumbSlabGenerator: matrix_world[2][3] = self.collection_obj.location[2] - self.depth else: matrix_world[2][3] -= self.depth - obj.matrix_world = Matrix.Rotation(self.x_angle, 4, 'X') @ matrix_world + obj.matrix_world = matrix_world bpy.context.view_layer.update() self.collection.objects.link(obj) + obj.matrix_world = Matrix.Rotation(self.x_angle, 4, 'X') element = blenderbim.core.root.assign_class( tool.Ifc, @@ -617,13 +618,122 @@ class EnableEditingExtrusionProfile(bpy.types.Operator, tool.Ifc.Operator): else: position = Matrix() - tool.Model.import_profile(extrusion.SweptArea, obj=obj, position=position) + self.vertices = [] + self.edges = [] + self.arcs = [] + self.circles = [] + + profile = extrusion.SweptArea + if profile.is_a("IfcArbitraryClosedProfileDef"): + self.process_curve(obj, position, profile.OuterCurve) + if profile.is_a("IfcArbitraryProfileDefWithVoids"): + for inner_curve in profile.InnerCurves: + self.process_curve(obj, position, inner_curve) + elif profile.is_a() == "IfcRectangleProfileDef": + self.process_rectangle(obj, position, profile) + + mesh = bpy.data.meshes.new("Profile") + mesh.from_pydata(self.vertices, self.edges, []) + mesh.BIMMeshProperties.is_profile = True + obj.data = mesh + + for arc in self.arcs: + group = obj.vertex_groups.new(name="IFCARCINDEX") + group.add(arc, 1, "REPLACE") + + for circle in self.circles: + group = obj.vertex_groups.new(name="IFCCIRCLE") + group.add(circle, 1, "REPLACE") bpy.ops.object.mode_set(mode="EDIT") DecorationsHandler.install(context) bpy.ops.wm.tool_set_by_id(name="bim.cad_tool") return {"FINISHED"} + def process_curve(self, obj, position, curve): + offset = len(self.vertices) + + if curve.is_a("IfcPolyline"): + total_points = len(curve.Points) + last_index = len(curve.Points) - 1 + for i, point in enumerate(curve.Points): + if i == last_index: + continue + global_point = position @ Vector(self.convert_unit_to_si(point.Coordinates)).to_3d() + self.vertices.append(global_point) + self.edges.extend([(i, i + 1) for i in range(offset, len(self.vertices))]) + self.edges[-1] = (len(self.vertices) - 1, offset) # Close the loop + elif curve.is_a("IfcIndexedPolyCurve"): + is_arc = False + if curve.Segments: + for segment in curve.Segments: + if len(segment[0]) == 3: # IfcArcIndex + is_arc = True + local_point = self.convert_unit_to_si(curve.Points.CoordList[segment[0][0] - 1]) + global_point = position @ Vector(local_point).to_3d() + self.vertices.append(global_point) + local_point = self.convert_unit_to_si(curve.Points.CoordList[segment[0][1] - 1]) + global_point = position @ Vector(local_point).to_3d() + self.vertices.append(global_point) + self.arcs.append([len(self.vertices) - 2, len(self.vertices) - 1]) + else: + local_point = self.convert_unit_to_si(curve.Points.CoordList[segment[0][0] - 1]) + global_point = position @ Vector(local_point).to_3d() + self.vertices.append(global_point) + if is_arc: + self.arcs[-1].append(len(self.vertices) - 1) + is_arc = False + else: + for local_point in curve.Points.CoordList: + global_point = position @ Vector(self.convert_unit_to_si(local_point)).to_3d() + self.vertices.append(global_point) + # Curves without segments are self closing + del self.vertices[-1] + + self.edges.extend([(i, i + 1) for i in range(offset, len(self.vertices))]) + self.edges[-1] = (len(self.vertices) - 1, offset) # Close the loop + elif curve.is_a("IfcCircle"): + center = self.convert_unit_to_si( + Matrix(ifcopenshell.util.placement.get_axis2placement(curve.Position).tolist()).col[3].to_3d() + ) + radius = self.convert_unit_to_si(curve.Radius) + self.vertices.extend( + [ + position @ Vector((center[0], center[1] - curve.Radius, 0.0)), + position @ Vector((center[0], center[1] + curve.Radius, 0.0)), + ] + ) + self.circles.append([offset, offset + 1]) + self.edges.append((offset, offset + 1)) + + def process_rectangle(self, obj, position, profile): + if profile.Position: + p_position = Matrix(ifcopenshell.util.placement.get_axis2placement(profile.Position).tolist()) + p_position[0][3] *= self.unit_scale + p_position[1][3] *= self.unit_scale + p_position[2][3] *= self.unit_scale + else: + p_position = Matrix() + + x = self.convert_unit_to_si(profile.XDim) + y = self.convert_unit_to_si(profile.YDim) + + self.vertices.extend( + [ + position @ p_position @ Vector((-x / 2, -y / 2, 0.0)), + position @ p_position @ Vector((x / 2, -y / 2, 0.0)), + position @ p_position @ Vector((x / 2, y / 2, 0.0)), + position @ p_position @ Vector((-x / 2, y / 2, 0.0)), + ] + ) + self.edges.extend([(i, i + 1) for i in range(0, len(self.vertices))]) + self.edges[-1] = (len(self.vertices) - 1, 0) # Close the loop + + def convert_unit_to_si(self, value): + if isinstance(value, (tuple, list)): + return [v * self.unit_scale for v in value] + return value * self.unit_scale + class EditExtrusionProfile(bpy.types.Operator, tool.Ifc.Operator): bl_idname = "bim.edit_extrusion_profile" @@ -648,16 +758,40 @@ class EditExtrusionProfile(bpy.types.Operator, tool.Ifc.Operator): else: position = Matrix() - profile = tool.Model.export_profile(obj, position=position) + helper = Helper(tool.Ifc.get()) + indices = helper.auto_detect_arbitrary_profile_with_voids(obj, obj.data) + + if isinstance(indices, tuple) and indices[0] is False: # Ugly - if not profile: def msg(self, context): self.layout.label(text="INVALID PROFILE: " + indices[1]) bpy.context.window_manager.popup_menu(msg, title="Error", icon="ERROR") DecorationsHandler.install(context) bpy.ops.object.mode_set(mode="EDIT") - return + return {"FINISHED"} + + self.bm = bmesh.new() + self.bm.from_mesh(obj.data) + self.bm.verts.ensure_lookup_table() + self.bm.edges.ensure_lookup_table() + + if indices["inner_curves"]: + profile = tool.Ifc.get().createIfcArbitraryProfileDefWithVoids("AREA") + else: + profile = tool.Ifc.get().createIfcArbitraryClosedProfileDef("AREA") + + if tool.Ifc.get().schema != "IFC2X3": + self.points = self.create_points(position, indices["points"]) + + profile.OuterCurve = self.create_curve(position, indices["profile"]) + if indices["inner_curves"]: + results = [] + for inner_curve in indices["inner_curves"]: + results.append(self.create_curve(position, inner_curve)) + profile.InnerCurves = results + + self.bm.free() old_profile = extrusion.SweptArea extrusion.SweptArea = profile @@ -697,6 +831,45 @@ class EditExtrusionProfile(bpy.types.Operator, tool.Ifc.Operator): ) return {"FINISHED"} + def create_points(self, position, indices): + position_i = position.inverted() + points = [] + for point in indices: + local_point = (position_i @ point).to_2d() + points.append(self.convert_si_to_unit(list(local_point))) + return tool.Ifc.get().createIfcCartesianPointList2D(points) + + def create_curve(self, position, edge_indices, points=None): + position_i = position.inverted() + if len(edge_indices) == 2: + diameter = edge_indices[0] + p1 = self.bm.verts[diameter[0]].co + p2 = self.bm.verts[diameter[1]].co + center = self.convert_si_to_unit(list(position_i @ p1.lerp(p2, 0.5))) + radius = self.convert_si_to_unit((p1 - p2).length / 2) + return tool.Ifc.get().createIfcCircle( + tool.Ifc.get().createIfcAxis2Placement2D(tool.Ifc.get().createIfcCartesianPoint(center[0:2])), radius + ) + if tool.Ifc.get().schema == "IFC2X3": + points = [] + for edge in edge_indices: + local_point = (position_i @ Vector(self.bm.verts[edge[0]].co)).to_2d() + points.append(tool.Ifc.get().createIfcCartesianPoint(self.convert_si_to_unit(local_point))) + points.append(points[0]) + return tool.Ifc.get().createIfcPolyline(points) + segments = [] + for segment in edge_indices: + if len(segment) == 2: + segments.append(tool.Ifc.get().createIfcLineIndex([i + 1 for i in segment])) + elif len(segment) == 3: + segments.append(tool.Ifc.get().createIfcArcIndex([i + 1 for i in segment])) + return tool.Ifc.get().createIfcIndexedPolyCurve(self.points, segments, False) + + def convert_si_to_unit(self, value): + if isinstance(value, (tuple, list)): + return [v / self.unit_scale for v in value] + return value / self.unit_scale + class ResetVertex(bpy.types.Operator): bl_idname = "bim.reset_vertex" diff --git a/src/blenderbim/blenderbim/bim/module/model/ui.py b/src/blenderbim/blenderbim/bim/module/model/ui.py index d62bf9ee4f..b172d667f7 100644 --- a/src/blenderbim/blenderbim/bim/module/model/ui.py +++ b/src/blenderbim/blenderbim/bim/module/model/ui.py @@ -38,7 +38,7 @@ class LaunchTypeManager(bpy.types.Operator): props.type_page = 1 if props.ifc_class: props.type_class = props.ifc_class - bpy.ops.bim.load_type_thumbnails(ifc_class=props.ifc_class, offset=0, limit=9) + bpy.ops.bim.load_type_thumbnails(ifc_class=props.ifc_class) if not AuthoringData.is_loaded: AuthoringData.load() return context.window_manager.invoke_popup(self, width=550) diff --git a/src/blenderbim/blenderbim/bim/module/model/workspace.py b/src/blenderbim/blenderbim/bim/module/model/workspace.py index 9dd7ab6c64..96d3dfc2d8 100644 --- a/src/blenderbim/blenderbim/bim/module/model/workspace.py +++ b/src/blenderbim/blenderbim/bim/module/model/workspace.py @@ -413,9 +413,7 @@ class Hotkey(bpy.types.Operator, tool.Ifc.Operator): bpy.ops.bim.align_product(align_type="CENTERLINE") def hotkey_S_E(self): - if not bpy.context.selected_objects: - return - elif self.active_class in ("IfcWall", "IfcWallStandardCase"): + if self.active_class in ("IfcWall", "IfcWallStandardCase"): bpy.ops.bim.join_wall(join_type="T") elif self.active_class in ("IfcSlab", "IfcSlabStandardCase", "IfcRamp", "IfcRoof"): if not bpy.context.active_object: diff --git a/src/blenderbim/blenderbim/bim/module/profile/__init__.py b/src/blenderbim/blenderbim/bim/module/profile/__init__.py index 101e9a3cde..18c05e7619 100644 --- a/src/blenderbim/blenderbim/bim/module/profile/__init__.py +++ b/src/blenderbim/blenderbim/bim/module/profile/__init__.py @@ -20,16 +20,12 @@ import bpy from . import ui, prop, operator classes = ( - operator.AddProfileDef, - operator.DisableEditingArbitraryProfile, - operator.DisableEditingProfile, - operator.DisableProfileEditingUI, - operator.EditArbitraryProfile, - operator.EditProfile, - operator.EnableEditingArbitraryProfile, - operator.EnableEditingProfile, operator.LoadProfiles, + operator.DisableProfileEditingUI, operator.RemoveProfileDef, + operator.EnableEditingProfile, + operator.DisableEditingProfile, + operator.EditProfile, prop.Profile, prop.BIMProfileProperties, ui.BIM_PT_profiles, diff --git a/src/blenderbim/blenderbim/bim/module/profile/data.py b/src/blenderbim/blenderbim/bim/module/profile/data.py deleted file mode 100644 index e0da6336c5..0000000000 --- a/src/blenderbim/blenderbim/bim/module/profile/data.py +++ /dev/null @@ -1,72 +0,0 @@ -# BlenderBIM Add-on - OpenBIM Blender Add-on -# Copyright (C) 2022 Dion Moult -# -# This file is part of BlenderBIM Add-on. -# -# BlenderBIM Add-on is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# BlenderBIM Add-on is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with BlenderBIM Add-on. If not, see . - -import bpy -import ifcopenshell.util.doc -import blenderbim.tool as tool - - -def refresh(): - ProfileData.is_loaded = False - - -class ProfileData: - data = {} - is_loaded = False - - @classmethod - def load(cls): - cls.data = { - "total_profiles": cls.total_profiles(), - "profile_classes": cls.profile_classes(), - "is_arbitrary_profile": cls.is_arbitrary_profile(), - "is_editing_arbitrary_profile": cls.is_editing_arbitrary_profile(), - } - cls.is_loaded = True - - @classmethod - def total_profiles(cls): - return len(tool.Ifc.get().by_type("IfcProfileDef")) - - @classmethod - def profile_classes(cls): - classes = ["IfcArbitraryClosedProfileDef"] - queue = ["IfcParameterizedProfileDef"] - while queue: - item = queue.pop() - subtypes = [s.name() for s in tool.Ifc.schema().declaration_by_name(item).subtypes()] - classes.extend(subtypes) - queue.extend(subtypes) - schema_identifier = tool.Ifc.get_schema() - return [ - (c, c, ifcopenshell.util.doc.get_entity_doc(schema_identifier, c)["description"] or "") - for c in sorted(classes) - ] - - @classmethod - def is_arbitrary_profile(cls): - props = bpy.context.scene.BIMProfileProperties - if props.active_profile_id: - profile = tool.Ifc.get().by_id(props.active_profile_id) - if profile.is_a("IfcArbitraryClosedProfileDef"): - return True - - @classmethod - def is_editing_arbitrary_profile(cls): - obj = bpy.context.active_object - return obj and obj.data and hasattr(obj.data, "BIMMeshProperties") and obj.data.BIMMeshProperties.is_profile diff --git a/src/blenderbim/blenderbim/bim/module/profile/operator.py b/src/blenderbim/blenderbim/bim/module/profile/operator.py index b72927661c..76ea8fa98a 100644 --- a/src/blenderbim/blenderbim/bim/module/profile/operator.py +++ b/src/blenderbim/blenderbim/bim/module/profile/operator.py @@ -1,5 +1,5 @@ # BlenderBIM Add-on - OpenBIM Blender Add-on -# Copyright (C) 2020, 2021, 2022 Dion Moult +# Copyright (C) 2020, 2021 Dion Moult # # This file is part of BlenderBIM Add-on. # @@ -19,8 +19,8 @@ import bpy import ifcopenshell.api import blenderbim.bim.helper -import blenderbim.tool as tool -from blenderbim.bim.module.model.slab import DecorationsHandler +from blenderbim.bim.ifc import IfcStore +from ifcopenshell.api.profile.data import Data class LoadProfiles(bpy.types.Operator): @@ -32,11 +32,10 @@ class LoadProfiles(bpy.types.Operator): props = context.scene.BIMProfileProperties props.profiles.clear() - for profile in tool.Ifc.get().by_type("IfcProfileDef"): + for ifc_definition_id, profile in Data.profiles.items(): new = props.profiles.add() - new.ifc_definition_id = profile.id() - new.name = profile.ProfileName or "Unnamed" - new.ifc_class = profile.is_a() + new.ifc_definition_id = ifc_definition_id + new.name = profile.get("ProfileName", "") or "Unnamed" props.is_editing = True bpy.ops.bim.disable_editing_profile() @@ -53,28 +52,39 @@ class DisableProfileEditingUI(bpy.types.Operator): return {"FINISHED"} -class RemoveProfileDef(bpy.types.Operator, tool.Ifc.Operator): +class RemoveProfileDef(bpy.types.Operator): bl_idname = "bim.remove_profile_def" bl_label = "Remove Profile Definition" bl_options = {"REGISTER", "UNDO"} profile: bpy.props.IntProperty() + def execute(self, context): + return IfcStore.execute_ifc_operator(self, context) + def _execute(self, context): - ifcopenshell.api.run("profile.remove_profile", tool.Ifc.get(), profile=tool.Ifc.get().by_id(self.profile)) + props = context.scene.BIMProfileProperties + self.file = IfcStore.get_file() + ifcopenshell.api.run("profile.remove_profile", self.file, **{"profile": self.file.by_id(self.profile)}) + Data.load(self.file) bpy.ops.bim.load_profiles() + return {"FINISHED"} -class EnableEditingProfile(bpy.types.Operator, tool.Ifc.Operator): +class EnableEditingProfile(bpy.types.Operator): bl_idname = "bim.enable_editing_profile" bl_label = "Enable Editing Profile" bl_options = {"REGISTER", "UNDO"} profile: bpy.props.IntProperty() - def _execute(self, context): + def execute(self, context): props = context.scene.BIMProfileProperties props.profile_attributes.clear() - blenderbim.bim.helper.import_attributes2(tool.Ifc.get().by_id(self.profile), props.profile_attributes) + + data = Data.profiles[self.profile] + + blenderbim.bim.helper.import_attributes(data["type"], props.profile_attributes, data) props.active_profile_id = self.profile + return {"FINISHED"} class DisableEditingProfile(bpy.types.Operator): @@ -87,91 +97,20 @@ class DisableEditingProfile(bpy.types.Operator): return {"FINISHED"} -class EditProfile(bpy.types.Operator, tool.Ifc.Operator): +class EditProfile(bpy.types.Operator): bl_idname = "bim.edit_profile" bl_label = "Edit Profile" bl_options = {"REGISTER", "UNDO"} + def execute(self, context): + return IfcStore.execute_ifc_operator(self, context) + def _execute(self, context): props = context.scene.BIMProfileProperties attributes = blenderbim.bim.helper.export_attributes(props.profile_attributes) - profile = tool.Ifc.get().by_id(props.active_profile_id) - ifcopenshell.api.run("profile.edit_profile", tool.Ifc.get(), profile=profile, attributes=attributes) + self.file = IfcStore.get_file() + profile = self.file.by_id(props.active_profile_id) + ifcopenshell.api.run("profile.edit_profile", self.file, **{"profile": profile, "attributes": attributes}) + Data.load(IfcStore.get_file()) bpy.ops.bim.load_profiles() - - -class AddProfileDef(bpy.types.Operator, tool.Ifc.Operator): - bl_idname = "bim.add_profile_def" - bl_label = "Add Profile" - bl_options = {"REGISTER", "UNDO"} - - def _execute(self, context): - props = context.scene.BIMProfileProperties - profile_class = props.profile_classes - if profile_class == "IfcArbitraryClosedProfileDef": - points = [(0, 0), (0.1, 0), (0.1, 0.1), (0, 0.1), (0, 0)] - profile = ifcopenshell.api.run("profile.add_arbitrary_profile", tool.Ifc.get(), profile=points) - else: - profile = ifcopenshell.api.run("profile.add_parameterized_profile", tool.Ifc.get(), ifc_class=profile_class) - profile.ProfileName = "New Profile" - bpy.ops.bim.load_profiles() - - -class EnableEditingArbitraryProfile(bpy.types.Operator, tool.Ifc.Operator): - bl_idname = "bim.enable_editing_arbitrary_profile" - bl_label = "Enable Editing Arbitrary Profile" - bl_options = {"REGISTER", "UNDO"} - - def _execute(self, context): - props = context.scene.BIMProfileProperties - profile = tool.Ifc.get().by_id(props.active_profile_id) - obj = tool.Model.import_profile(profile) - bpy.context.scene.collection.objects.link(obj) - bpy.context.view_layer.objects.active = obj - bpy.ops.object.mode_set(mode="EDIT") - DecorationsHandler.install(context) - bpy.ops.wm.tool_set_by_id(name="bim.cad_tool") - - -class DisableEditingArbitraryProfile(bpy.types.Operator, tool.Ifc.Operator): - bl_idname = "bim.disable_editing_arbitrary_profile" - bl_label = "Disable Editing Arbitrary Profile" - bl_options = {"REGISTER", "UNDO"} - - def _execute(self, context): - obj = context.active_object - DecorationsHandler.uninstall() - bpy.ops.object.mode_set(mode="OBJECT") - bpy.data.objects.remove(obj) - - -class EditArbitraryProfile(bpy.types.Operator, tool.Ifc.Operator): - bl_idname = "bim.edit_arbitrary_profile" - bl_label = "Edit Arbitrary Profile" - bl_options = {"REGISTER", "UNDO"} - - def _execute(self, context): - props = context.scene.BIMProfileProperties - old_profile = tool.Ifc.get().by_id(props.active_profile_id) - - obj = context.active_object - - DecorationsHandler.uninstall() - bpy.ops.object.mode_set(mode="OBJECT") - - profile = tool.Model.export_profile(obj) - if not profile: - def msg(self, context): - self.layout.label(text="INVALID PROFILE: " + indices[1]) - - bpy.context.window_manager.popup_menu(msg, title="Error", icon="ERROR") - DecorationsHandler.install(context) - bpy.ops.object.mode_set(mode="EDIT") - return - - bpy.data.objects.remove(obj) - profile.ProfileType = old_profile.ProfileType - profile.ProfileName = old_profile.ProfileName - ifcopenshell.util.element.remove_deep2(tool.Ifc.get(), old_profile) - bpy.ops.bim.load_profiles() - props.active_profile_id = profile.id() + return {"FINISHED"} diff --git a/src/blenderbim/blenderbim/bim/module/profile/prop.py b/src/blenderbim/blenderbim/bim/module/profile/prop.py index 3b7b0a91ef..1f8f06ca33 100644 --- a/src/blenderbim/blenderbim/bim/module/profile/prop.py +++ b/src/blenderbim/blenderbim/bim/module/profile/prop.py @@ -22,7 +22,6 @@ import ifcopenshell.util.schema import ifcopenshell.util.attribute from blenderbim.bim.ifc import IfcStore from blenderbim.bim.prop import StrProperty, Attribute -from blenderbim.bim.module.profile.data import ProfileData from bpy.types import PropertyGroup from bpy.props import ( PointerProperty, @@ -36,15 +35,8 @@ from bpy.props import ( ) -def get_profile_classes(self, context): - if not ProfileData.is_loaded: - ProfileData.load() - return ProfileData.data["profile_classes"] - - class Profile(PropertyGroup): name: StringProperty(name="Name") - ifc_class: StringProperty(name="IFC Class") ifc_definition_id: IntProperty(name="IFC Definition ID") @@ -54,4 +46,3 @@ class BIMProfileProperties(PropertyGroup): active_profile_index: IntProperty(name="Active Profile Index") active_profile_id: IntProperty(name="Active Profile Id") profile_attributes: CollectionProperty(name="Profile Attributes", type=Attribute) - profile_classes: EnumProperty(items=get_profile_classes, name="Profile Classes") diff --git a/src/blenderbim/blenderbim/bim/module/profile/ui.py b/src/blenderbim/blenderbim/bim/module/profile/ui.py index 36dbd35c83..00081ab41e 100644 --- a/src/blenderbim/blenderbim/bim/module/profile/ui.py +++ b/src/blenderbim/blenderbim/bim/module/profile/ui.py @@ -1,5 +1,5 @@ # BlenderBIM Add-on - OpenBIM Blender Add-on -# Copyright (C) 2020, 2021, 2022 Dion Moult +# Copyright (C) 2020, 2021 Dion Moult # # This file is part of BlenderBIM Add-on. # @@ -17,9 +17,9 @@ # along with BlenderBIM Add-on. If not, see . import blenderbim.bim.helper -import blenderbim.tool as tool from bpy.types import Panel, UIList -from blenderbim.bim.module.profile.data import ProfileData +from blenderbim.bim.ifc import IfcStore +from ifcopenshell.api.profile.data import Data class BIM_PT_profiles(Panel): @@ -33,15 +33,17 @@ class BIM_PT_profiles(Panel): @classmethod def poll(cls, context): - return tool.Ifc.get() + file = IfcStore.get_file() + return file def draw(self, context): - if not ProfileData.is_loaded: - ProfileData.load() + self.file = IfcStore.get_file() + if not Data.is_loaded: + Data.load(self.file) self.props = context.scene.BIMProfileProperties row = self.layout.row(align=True) - row.label(text="{} Profiles Found".format(ProfileData.data["total_profiles"]), icon="SNAP_GRID") + row.label(text="{} Profiles Found".format(len(Data.profiles)), icon="SNAP_GRID") if self.props.is_editing: row.operator("bim.disable_profile_editing_ui", text="", icon="CANCEL") else: @@ -50,10 +52,6 @@ class BIM_PT_profiles(Panel): if not self.props.is_editing: return - row = self.layout.row(align=True) - row.prop(self.props, "profile_classes", text="") - row.operator("bim.add_profile_def", text="", icon="ADD") - self.layout.template_list( "BIM_UL_profiles", "", @@ -67,14 +65,6 @@ class BIM_PT_profiles(Panel): self.draw_editable_ui(context) def draw_editable_ui(self, context): - if ProfileData.data["is_arbitrary_profile"]: - if ProfileData.data["is_editing_arbitrary_profile"]: - row = self.layout.row(align=True) - row.operator("bim.edit_arbitrary_profile", text="Save Profile", icon="CHECKMARK") - row.operator("bim.disable_editing_arbitrary_profile", text="", icon="CANCEL") - else: - row = self.layout.row() - row.operator("bim.enable_editing_arbitrary_profile", text="Edit Profile", icon="GREASEPENCIL") blenderbim.bim.helper.draw_attributes(self.props.profile_attributes, self.layout) @@ -84,7 +74,6 @@ class BIM_UL_profiles(UIList): if item: row = layout.row(align=True) row.label(text=item.name or "Unnamed") - row.label(text=item.ifc_class) if props.active_profile_id == item.ifc_definition_id: row.operator("bim.edit_profile", text="", icon="CHECKMARK") diff --git a/src/blenderbim/blenderbim/bim/module/pset/calc_quantity_function_mapper.py b/src/blenderbim/blenderbim/bim/module/pset/calc_quantity_function_mapper.py index 9220817331..75aa45a498 100644 --- a/src/blenderbim/blenderbim/bim/module/pset/calc_quantity_function_mapper.py +++ b/src/blenderbim/blenderbim/bim/module/pset/calc_quantity_function_mapper.py @@ -1,578 +1,10 @@ mapper = { - 'Qto_AudioVisualApplianceBaseQuantities' : { - 'GrossWeight' : None, + "Qto_WallBaseQuantities" : { + "Length" : "get_length", + "Width" : "get_width", + "Height" : "get_height", }, - 'Qto_PlateBaseQuantities' : { - 'Width' : None, - 'Perimeter' : None, - 'GrossArea' : None, - 'NetArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_OpeningElementBaseQuantities' : { - 'Width' : None, - 'Height' : None, - 'Depth' : None, - 'Area' : None, - 'Volume' : None, - }, - 'Qto_MarineFacilityBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - 'Area' : None, - 'Volume' : None, - }, - 'Qto_ChillerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_PileBaseQuantities' : { - 'Length' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_VibrationIsolatorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_LampBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_VehicleBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - }, - 'Qto_PipeFittingBaseQuantities' : { - 'Length' : None, - 'GrossCrossSectionArea' : None, - 'NetCrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_CableCarrierFittingBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_HeatExchangerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_DoorBaseQuantities' : { - 'Width' : None, - 'Height' : None, - 'Perimeter' : None, - 'Area' : None, - }, - 'Qto_DuctSegmentBaseQuantities' : { - 'Length' : None, - 'GrossCrossSectionArea' : None, - 'NetCrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossWeight' : None, - }, - 'Qto_TransformerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_FacilityPartBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - 'Area' : None, - 'Volume' : None, - }, - 'Qto_ProjectionElementBaseQuantities' : { - 'Area' : None, - 'Volume' : None, - }, - 'Qto_SignBaseQuantities' : { - 'Height' : None, - 'Width' : None, - 'Thickness' : None, - 'Weight' : None, - }, - 'Qto_CableSegmentBaseQuantities' : { - 'GrossWeight' : None, - 'Length' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - }, - 'Qto_BuildingBaseQuantities' : { - 'Height' : None, - 'EavesHeight' : None, - 'FootPrintArea' : None, - 'GrossFloorArea' : None, - 'NetFloorArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - }, - 'Qto_ElectricFlowStorageDeviceBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_CommunicationsApplianceBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_RailBaseQuantities' : { - 'Length' : None, - 'Volume' : None, - 'Weight' : None, - }, - 'Qto_PictorialSignQuantities' : { - 'Area' : None, - 'SignArea' : None, - }, - 'Qto_SpaceHeaterBaseQuantities' : { - 'Length' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_CoveringBaseQuantities' : { - 'Width' : None, - 'GrossArea' : None, - 'NetArea' : None, - }, - 'Qto_PipeSegmentBaseQuantities' : { - 'Length' : None, - 'GrossCrossSectionArea' : None, - 'NetCrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - 'FootPrintArea' : None, - }, - 'Qto_HumidifierBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ConstructionEquipmentResourceBaseQuantities' : { - 'UsageTime' : None, - 'OperatingTime' : None, - }, - 'Qto_AlarmBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_JunctionBoxBaseQuantities' : { - 'GrossWeight' : None, - 'NumberOfGangs' : None, - 'Length' : None, - 'Width' : None, - 'Height' : None, - }, - 'Qto_ArealStratumBaseQuantities' : { - 'Area' : None, - 'Length' : None, - 'PlanLength' : None, - }, - 'Qto_SiteBaseQuantities' : { - 'GrossPerimeter' : None, - 'GrossArea' : None, - }, - 'Qto_MotorConnectionBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_RoofBaseQuantities' : { - 'GrossArea' : None, - 'NetArea' : None, - 'ProjectedArea' : None, - }, - 'Qto_ChimneyBaseQuantities' : { - 'Length' : None, - }, - 'Qto_ElectricTimeControlBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ElectricMotorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_EarthworksFillBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Depth' : None, - 'CompactedVolume' : None, - 'LooseVolume' : None, - }, - 'Qto_ConduitSegmentBaseQuantities' : { - 'InnerDiameter' : None, - 'OuterDiameter' : None, - }, - 'Qto_SignalBaseQuantities' : { - 'Weight' : None, - }, - 'Qto_DuctFittingBaseQuantities' : { - 'Length' : None, - 'GrossCrossSectionArea' : None, - 'NetCrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossWeight' : None, - }, - 'Qto_UnitaryControlElementBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ActuatorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_CurtainWallQuantities' : { - 'Length' : None, - 'Height' : None, - 'Width' : None, - 'GrossSideArea' : None, - 'NetSideArea' : None, - }, - 'Qto_BoilerBaseQuantities' : { - 'GrossWeight' : None, - 'NetWeight' : None, - 'TotalSurfaceArea' : None, - }, - 'Qto_FlowMeterBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_AirTerminalBaseQuantities' : { - 'GrossWeight' : None, - 'Perimeter' : None, - 'TotalSurfaceArea' : None, - }, - 'Qto_DuctSilencerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_WasteTerminalBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_SlabBaseQuantities' : { - 'Width' : None, - 'Length' : None, - 'Depth' : "get_height", - 'Perimeter' : None, - 'GrossArea' : None, - 'NetArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_ImpactProtectionDeviceBaseQuantities' : { - 'Weight' : None, - }, - 'Qto_LightFixtureBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_FlowInstrumentBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_BuildingStoreyBaseQuantities' : { - 'GrossHeight' : None, - 'NetHeight' : None, - 'GrossPerimeter' : None, - 'GrossFloorArea' : None, - 'NetFloorArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - }, - 'Qto_ReinforcedSoilBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Depth' : None, - 'Area' : None, - 'Volume' : None, - }, - 'Qto_DistributionBoardBaseQuantities' : { - 'GrossWeight' : None, - 'NumberOfCircuits' : None, - }, - 'Qto_FootingBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_PumpBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_CableCarrierSegmentBaseQuantities' : { - 'GrossWeight' : None, - 'Length' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - }, - 'Qto_InterceptorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ColumnBaseQuantities' : { - 'Length' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossSurfaceArea' : None, - 'NetSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_EarthworksCutBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Depth' : None, - 'UndisturbedVolume' : None, - 'LooseVolume' : None, - 'Weight' : None, - }, - 'Qto_StackTerminalBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_CoilBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_KerbBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - 'Depth' : None, - 'Volume' : None, - 'Weight' : None, - }, - 'Qto_PavementBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Depth' : None, - 'GrossArea' : None, - 'NetArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - }, - 'Qto_ControllerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_SolarDeviceBaseQuantities' : { - 'GrossWeight' : None, - 'GrossArea' : None, - }, - 'Qto_RampFlightBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'GrossArea' : None, - 'NetArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - }, - 'Qto_ElectricApplianceBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ValveBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_DamperBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_SurfaceFeatureBaseQuantities' : { - 'Area' : None, - 'Length' : None, - }, - 'Qto_WallBaseQuantities' : { - 'Length' : "get_length", - 'Width' : "get_width", - 'Height' : None, - 'GrossFootPrintArea' : None, - 'NetFootPrintArea' : None, - 'GrossSideArea' : None, - 'NetSideArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_StairFlightBaseQuantities' : { - 'Length' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - }, - 'Qto_SwitchingDeviceBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_BurnerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ConstructionMaterialResourceBaseQuantities' : { - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_ElectricGeneratorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_LinearStratumBaseQuantities' : { - 'Diameter' : None, - 'Length' : None, - }, - 'Qto_CableFittingBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_DistributionChamberElementBaseQuantities' : { - 'GrossSurfaceArea' : None, - 'NetSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'Depth' : None, - }, - 'Qto_CompressorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_ProtectiveDeviceTrippingUnitBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_EvaporatorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_SpaceBaseQuantities' : { - 'Height' : None, - 'FinishCeilingHeight' : None, - 'FinishFloorHeight' : None, - 'GrossPerimeter' : None, - 'NetPerimeter' : None, - 'GrossFloorArea' : None, - 'NetFloorArea' : None, - 'GrossWallArea' : None, - 'NetWallArea' : None, - 'GrossCeilingArea' : None, - 'NetCeilingArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - }, - 'Qto_CourseBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Thickness' : None, - 'Volume' : None, - 'GrossVolume' : None, - 'Weight' : None, - }, - 'Qto_CondenserBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_FireSuppressionTerminalBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_RailingBaseQuantities' : { - 'Length' : None, - }, - 'Qto_TubeBundleBaseQuantities' : { - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_BeamBaseQuantities' : { - 'Length' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossSurfaceArea' : None, - 'NetSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_SleeperBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - }, - 'Qto_ProtectiveDeviceBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_CooledBeamBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_TankBaseQuantities' : { - 'GrossWeight' : None, - 'NetWeight' : None, - 'TotalSurfaceArea' : None, - }, - 'Qto_AirToAirHeatRecoveryBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_CoolingTowerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_SensorBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_WindowBaseQuantities' : { - 'Width' : None, - 'Height' : None, - 'Perimeter' : None, - 'Area' : None, - }, - 'Qto_SanitaryTerminalBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_BuildingElementProxyQuantities' : { - 'NetSurfaceArea' : None, - 'NetVolume' : None, - }, - 'Qto_FanBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_OutletBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_UnitaryEquipmentBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_FilterBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_MemberBaseQuantities' : { - 'Length' : None, - 'CrossSectionArea' : None, - 'OuterSurfaceArea' : None, - 'GrossSurfaceArea' : None, - 'NetSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'GrossWeight' : None, - 'NetWeight' : None, - }, - 'Qto_BodyGeometryValidation' : { - 'GrossSurfaceArea' : None, - 'NetSurfaceArea' : None, - 'GrossVolume' : None, - 'NetVolume' : None, - 'SurfaceGenusBeforeFeatures' : None, - 'SurfaceGenusAfterFeatures' : None, - }, - 'Qto_VolumetricStratumBaseQuantities' : { - 'Area' : None, - 'Mass' : None, - 'PlanArea' : None, - 'Volume' : None, - }, - 'Qto_SpatialZoneBaseQuantities' : { - 'Length' : None, - 'Width' : None, - 'Height' : None, - }, - 'Qto_ReinforcingElementBaseQuantities' : { - 'Count' : None, - 'Length' : None, - 'Weight' : None, - }, - 'Qto_EvaporativeCoolerBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_AirTerminalBoxTypeBaseQuantities' : { - 'GrossWeight' : None, - }, - 'Qto_LaborResourceBaseQuantities' : { - 'StandardWork' : None, - 'OvertimeWork' : None, + "Qto_SlabBaseQuantities" : { + "Depth" : "get_height", }, } diff --git a/src/blenderbim/blenderbim/bim/module/pset/qto_calculator.py b/src/blenderbim/blenderbim/bim/module/pset/qto_calculator.py index 609ede209a..99478f8036 100644 --- a/src/blenderbim/blenderbim/bim/module/pset/qto_calculator.py +++ b/src/blenderbim/blenderbim/bim/module/pset/qto_calculator.py @@ -37,10 +37,7 @@ class QtoCalculator: for key in self.mapping_dict.keys(): for item in self.mapping_dict[key].keys(): - if self.mapping_dict[key][item]: - self.mapping_dict[key][item] = eval("self." + self.mapping_dict[key][item]) - else: - self.mapping_dict[key][item] = None + self.mapping_dict[key][item] = eval("self." + self.mapping_dict[key][item]) def calculate_quantity(self, qto_name, quantity_name, obj): return self.mapping_dict[qto_name][quantity_name](obj) diff --git a/src/blenderbim/blenderbim/bim/prop.py b/src/blenderbim/blenderbim/bim/prop.py index b75059332b..71d98ff0da 100644 --- a/src/blenderbim/blenderbim/bim/prop.py +++ b/src/blenderbim/blenderbim/bim/prop.py @@ -215,7 +215,7 @@ class Attribute(PropertyGroup): has_calculator: BoolProperty(name="Has Calculator", default=False) def get_value(self): - if self.is_optional and self.is_null: + if self.is_null: return None return getattr(self, str(self.get_value_name()), None) diff --git a/src/blenderbim/blenderbim/bim/ui.py b/src/blenderbim/blenderbim/bim/ui.py index c40cb18b9a..2fdcde1b9b 100644 --- a/src/blenderbim/blenderbim/bim/ui.py +++ b/src/blenderbim/blenderbim/bim/ui.py @@ -392,12 +392,6 @@ class BIM_PT_misc_object(Panel): def draw_custom_context_menu(self, context): # https://blender.stackexchange.com/a/275555/86891 - if ( - not hasattr(context, "button_pointer") - or not hasattr(context, "button_prop") - or not hasattr(context.button_prop, "identifier") - ): - return prop = context.button_pointer prop_name = context.button_prop.identifier prop_value = getattr(prop, prop_name, None) diff --git a/src/blenderbim/blenderbim/tool/model.py b/src/blenderbim/blenderbim/tool/model.py index 5aec36bbc1..cd2d5acd0d 100644 --- a/src/blenderbim/blenderbim/tool/model.py +++ b/src/blenderbim/blenderbim/tool/model.py @@ -92,19 +92,14 @@ class Model(blenderbim.core.tool.Model): unit_scale = ifcopenshell.util.unit.calculate_unit_scale(tool.Ifc.get()) offset = 0.0 thickness = 0.0 - direction_sense = "POSITIVE" material = ifcopenshell.util.element.get_material(element) if material: if material.is_a("IfcMaterialLayerSetUsage"): offset = material.OffsetFromReferenceLine * unit_scale - direction_sense = material.DirectionSense material = material.ForLayerSet if material.is_a("IfcMaterialLayerSet"): thickness = sum([l.LayerThickness for l in material.MaterialLayers]) * unit_scale - if direction_sense == "NEGATIVE": - thickness *= -1 - offset *= -1 - return {"thickness": thickness, "offset": offset, "direction_sense": direction_sense} + return {"thickness": thickness, "offset": offset} @classmethod def get_manual_booleans(cls, element): diff --git a/src/blenderbim/blenderbim/tool/project.py b/src/blenderbim/blenderbim/tool/project.py index 75e2c0e820..585da491be 100644 --- a/src/blenderbim/blenderbim/tool/project.py +++ b/src/blenderbim/blenderbim/tool/project.py @@ -42,7 +42,7 @@ class Project(blenderbim.core.tool.Project): def load_default_thumbnails(cls): if tool.Ifc.get().by_type("IfcElementType"): ifc_class = sorted(tool.Ifc.get().by_type("IfcElementType"), key=lambda e: e.is_a())[0].is_a() - bpy.ops.bim.load_type_thumbnails(ifc_class=ifc_class, offset=0, limit=9) + bpy.ops.bim.load_type_thumbnails(ifc_class=ifc_class) @classmethod def run_aggregate_assign_object(cls, relating_obj=None, related_obj=None): diff --git a/src/blenderbim/docs/devs/installation.rst b/src/blenderbim/docs/devs/installation.rst index c32529b36a..37894e9f9e 100644 --- a/src/blenderbim/docs/devs/installation.rst +++ b/src/blenderbim/docs/devs/installation.rst @@ -42,8 +42,8 @@ IfcOpenShell (using an IfcOpenBot build) for convenience. Instructions on how to compile IfcOpenShell is out of scope of this document. You can create your own package by using the Makefile as shown below. You can -choose between a ``PLATFORM`` of ``linux``, ``macos``, ``macosm1``, and ``win``. -You can choose between a ``PYVERSION`` of ``py39``, ``py37``, or ``py310``. +choose between a ``PLATFORM`` of ``linux``, ``macos``, and ``win``. You can +choose between a ``PYVERSION`` of ``py39``, ``py37``, or ``py310``. :: $ cd src/blenderbim diff --git a/src/blenderbim/scripts/generate_steel_profiles_library.py b/src/blenderbim/scripts/generate_steel_profiles_library.py deleted file mode 100644 index dcfa2b8522..0000000000 --- a/src/blenderbim/scripts/generate_steel_profiles_library.py +++ /dev/null @@ -1,200 +0,0 @@ -# BlenderBIM Add-on - OpenBIM Blender Add-on -# Copyright (C) 2022 @Andrej730 -# -# This file is part of BlenderBIM Add-on. -# -# BlenderBIM Add-on is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# BlenderBIM Add-on is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with BlenderBIM Add-on. If not, see . - -# fmt: off -# pylint: skip-file - -import ifcopenshell -import ifcopenshell.api -import boltspy as bolts - - -class LibraryGenerator: - def generate(self, parse_profiles_type="EU", output_filename="IFC4 EU Steel.ifc"): - ifcopenshell.api.pre_listeners = {} - ifcopenshell.api.post_listeners = {} - - self.materials = {} - - self.file = ifcopenshell.api.run("project.create_file") - self.project = ifcopenshell.api.run( - "root.create_entity", self.file, ifc_class="IfcProject", name=f"{parse_profiles_type} Steel Profiles Library" - ) - self.library = ifcopenshell.api.run( - "root.create_entity", self.file, ifc_class="IfcProjectLibrary", name=f"{parse_profiles_type} Steel Profiles Library" - ) - ifcopenshell.api.run( - "project.assign_declaration", self.file, definition=self.library, relating_context=self.project - ) - unit = ifcopenshell.api.run("unit.add_si_unit", self.file, unit_type="LENGTHUNIT", name="METRE", prefix="MILLI") - ifcopenshell.api.run("unit.assign_unit", self.file, units=[unit]) - - model = ifcopenshell.api.run("context.add_context", self.file, context_type="Model") - plan = ifcopenshell.api.run("context.add_context", self.file, context_type="Plan") - self.representations = { - "body": ifcopenshell.api.run( - "context.add_context", - self.file, - context_type="Model", - context_identifier="Body", - target_view="MODEL_VIEW", - parent=model, - ), - "annotation": ifcopenshell.api.run( - "context.add_context", - self.file, - context_type="Plan", - context_identifier="Annotation", - target_view="PLAN_VIEW", - parent=plan, - ), - } - - self.material = ifcopenshell.api.run("material.add_material", self.file, name="Unknown") - - profiles_translation = { - "profile_i": ("IfcIShapeProfileDef", {"tw": "WebThickness", "tf": "FlangeThickness", "h": "OverallDepth", "b": "OverallWidth"}), - "profile_z": ("IfcZShapeProfileDef", {"tw": "WebThickness", "tf": "FlangeThickness", "h": "Depth", "c1": "FlangeWidth"}), - "profile_c": ("IfcUShapeProfileDef", {"tw": "WebThickness", "tf": "FlangeThickness", "h": "Depth", "b": "FlangeWidth"}), - "profile_l*_equal": ("IfcLShapeProfileDef", {"a": "Depth", "t": "Thickness"}), - "profile_l*_unequal": ("IfcLShapeProfileDef", {"a": "Depth", "b": "Width", "t": "Thickness"}), - "profile_hollow*_circle": ("IfcCircleHollowProfileDef", {"t": "WallThickness", "D": "Radius"}), - "profile_hollow*_square": ("IfcRectangleHollowProfileDef", {"t": "WallThickness", "b": "XDim"}), - "profile_hollow*_rectangular": ("IfcRectangleHollowProfileDef", {"t": "WallThickness", "b": "XDim", "h": "YDim"}), - } - - if parse_profiles_type == "AU": - bolt_class_filter = lambda x: "bluescope" in x.id - elif parse_profiles_type == "EU": - bolt_class_filter = lambda x: "bluescope" not in x.id - else: - bolt_class_filter = lambda x: True - - for prof_type in profiles_translation: - ifc_profile_name, ifc_params_translation = profiles_translation[prof_type] - col_name, _, prof_keyword = prof_type.partition("*") - bolt_col = bolts.repo.collections[col_name] - - for bolt_class in bolts.repo.collection_classes.get_dsts(bolt_col): - if not bolt_class_filter(bolt_class): - continue - - if prof_keyword and prof_keyword not in bolt_class.id: - continue - - if not bolt_class.parameters.tables: - # some bolt classes have no data attached - # like hollow_generic_square - continue - - bolts_cols = bolt_class.parameters.tables[0].columns - bolts_cols = [ifc_params_translation.get(c, "unused") for c in bolts_cols] - bolts_data = bolt_class.parameters.tables[0].data - - for prof_name in bolts_data.keys(): - ifc_params = dict(zip(bolts_cols, bolts_data[prof_name])) - if "unused" in ifc_params: - del ifc_params["unused"] - - if prof_type == "profile_hollow*_square": - ifc_params["YDim"] = ifc_params["XDim"] - elif prof_type == "profile_hollow*_circle": - # by default bolts provides diameter, so we need to convert it to radius - ifc_params["Radius"] /= 2 - - # profile is setup by type of profile and by supplying it's parameters - # ProfileType stays AREA - profile = self.file.create_entity(ifc_profile_name, ProfileType="AREA", **ifc_params) - - # building profiles for each of 3 types - self.create_profile_type("IfcBeamType", prof_name, profile) - self.create_profile_type("IfcMemberType", prof_name, profile) - self.create_profile_type("IfcColumnType", prof_name, profile) - - self.file.write(output_filename) - - def create_layer_set_type(self, name, data): - element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class=data["type"], name=name) - element.Description = data["Description"] - rel = ifcopenshell.api.run("material.assign_material", self.file, product=element, type="IfcMaterialLayerSet") - layer_set = rel.RelatingMaterial - for layer_data in data["Layers"]: - layer = ifcopenshell.api.run( - "material.add_layer", self.file, layer_set=layer_set, material=self.materials[layer_data[1]]["ifc"] - ) - layer.Name = layer_data[0] - layer.LayerThickness = layer_data[2] - ifcopenshell.api.run("project.assign_declaration", self.file, definition=element, relating_context=self.library) - return element - - def create_layer_type(self, ifc_class, name, thickness): - element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class=ifc_class, name=name) - rel = ifcopenshell.api.run("material.assign_material", self.file, product=element, type="IfcMaterialLayerSet") - layer_set = rel.RelatingMaterial - layer = ifcopenshell.api.run("material.add_layer", self.file, layer_set=layer_set, material=self.materials["TBD"]["ifc"]) - layer.LayerThickness = thickness - ifcopenshell.api.run("project.assign_declaration", self.file, definition=element, relating_context=self.library) - return element - - def create_profile_type(self, ifc_class, name, profile): - element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class=ifc_class, name=name) - rel = ifcopenshell.api.run("material.assign_material", self.file, product=element, type="IfcMaterialProfileSet") - profile_set = rel.RelatingMaterial - material_profile = ifcopenshell.api.run( - "material.add_profile", self.file, profile_set=profile_set, material=self.material - # material=self.materials["TBD"]["ifc"] - ) - ifcopenshell.api.run("material.assign_profile", self.file, material_profile=material_profile, profile=profile) - ifcopenshell.api.run("project.assign_declaration", self.file, definition=element, relating_context=self.library) - - def create_type(self, ifc_class, name, representations): - element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class=ifc_class, name=name) - for rep_name, obj_name in representations.items(): - obj = bpy.data.objects.get(obj_name) - representation = ifcopenshell.api.run( - "geometry.add_representation", - self.file, - context=self.representations[rep_name], - blender_object=obj, - geometry=obj.data, - total_items=max(1, len(obj.material_slots)), - ) - styles = [] - for slot in obj.material_slots: - style = ifcopenshell.api.run("style.add_style", self.file, name=slot.material.name) - ifcopenshell.api.run( - "style.add_surface_style", - self.file, - style=style, - ifc_class="IfcSurfaceStyleRendering", - attributes=tool.Style.get_surface_rendering_attributes(slot.material), - ) - styles.append(style) - if styles: - ifcopenshell.api.run( - "style.assign_representation_styles", self.file, shape_representation=representation, styles=styles - ) - ifcopenshell.api.run( - "geometry.assign_representation", self.file, product=element, representation=representation - ) - ifcopenshell.api.run("project.assign_declaration", self.file, definition=element, relating_context=self.library) - - -if __name__ == "__main__": - LibraryGenerator().generate(parse_profiles_type="EU", output_filename="IFC4 EU Steel.ifc") - LibraryGenerator().generate(parse_profiles_type="AU", output_filename="IFC4 AU Steel.ifc") \ No newline at end of file diff --git a/src/ifcopenshell-python/ifcopenshell/util/doc.py b/src/ifcopenshell-python/ifcopenshell/util/doc.py index e0d0473bd5..3342720979 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/doc.py +++ b/src/ifcopenshell-python/ifcopenshell/util/doc.py @@ -18,9 +18,6 @@ import json from pathlib import Path -from pprint import pprint -import copy -import ifcopenshell try: import glob @@ -42,17 +39,15 @@ SCHEMA_FILES = { "IFC2X3": { "entities": BASE_MODULE_PATH / "schema/ifc2x3_entities.json", "properties": BASE_MODULE_PATH / "schema/ifc2x3_properties.json", - "types": BASE_MODULE_PATH / "schema/ifc2x3_types.json", }, "IFC4": { "entities": BASE_MODULE_PATH / "schema/ifc4_entities.json", "properties": BASE_MODULE_PATH / "schema/ifc4_properties.json", - "types": BASE_MODULE_PATH / "schema/ifc4_types.json", }, } db = None -schema_by_name = {"IFC2X3": None, "IFC4": None} + def get_db(version): global db @@ -70,35 +65,17 @@ def get_db(version): db[ifc_version][data_type] = json.load(fi) return db.get(version) -def get_schema_by_name(version): - global schema_by_name - if not schema_by_name[version]: - schema_by_name[version] = ifcopenshell.ifcopenshell_wrapper.schema_by_name(version) - return schema_by_name[version] -def get_entity_doc(version, entity_name, recursive=True): +def get_entity_doc(version, entity): db = get_db(version) if db: - entity = copy.deepcopy(db["entities"].get(entity_name)) - if not recursive: - return entity - - ifc_schema = get_schema_by_name(version) - ifc_entity = ifc_schema.declaration_by_name(entity_name) - ifc_supertype = ifc_entity.supertype() - if ifc_entity.supertype(): - parent_entity = get_entity_doc(version, ifc_supertype.name(), recursive=True) - if 'attributes' not in entity: - entity['attributes'] = dict() - for parent_attr in parent_entity["attributes"]: - entity['attributes'][parent_attr] = parent_entity["attributes"][parent_attr] - return entity + return db["entities"].get(entity) -def get_attribute_doc(version, entity, attribute, recursive=True): +def get_attribute_doc(version, entity, attribute): db = get_db(version) if db: - entity = get_entity_doc(version, entity, recursive) + entity = db["entities"].get(entity) if entity: return entity["attributes"].get(attribute) @@ -114,6 +91,7 @@ def get_property_set_doc(version, pset): if db: return db["properties"].get(pset) + def get_property_doc(version, pset, prop): db = get_db(version) if db: @@ -121,10 +99,6 @@ def get_property_doc(version, pset, prop): if pset: return pset["properties"].get(prop) -def get_type_doc(version, ifc_type): - db = get_db(version) - if db: - return db["types"].get(ifc_type) class DocExtractor: def extract_ifc2x3(self): @@ -143,10 +117,10 @@ class DocExtractor: # probably due domains on the website being from 4_0 # example (property set / github domain / website domain): # Pset_AirTerminalBoxPHistory IfcControlExtension IfcHvacDomain + self.extract_ifc2x3_property_sets_site_domains() self.extract_ifc2x3_entities() self.extract_ifc2x3_property_sets() - self.extract_ifc2x3_types() def extract_ifc2x3_property_sets_site_domains(self): property_sets_domains = dict() @@ -212,14 +186,14 @@ class DocExtractor: # because BeautifulSoup wrongly assume we confused # html code for filepath and gives warnings with warnings.catch_warnings(): - warnings.simplefilter("ignore", category=MarkupResemblesLocatorWarning) + warnings.simplefilter("ignore", category=MarkupResemblesLocatorWarning) for html_attr in bs_tree.find_all("docattribute"): attr_name = html_attr["name"] if attr_name == "PredefinedType": # get references to all predefined types defined_type = html_attr["definedtype"] - enum_path = xml_path.parents[2] / "Types" / defined_type / "DocEnumeration.xml" + enum_path = xml_path.parents[2] / "Types" / defined_type / 'DocEnumeration.xml' with open(enum_path, "r", encoding="utf-8") as fi: enum_bs_tree = BeautifulSoup(fi.read(), features="lxml") hrefs = [i["href"] for i in enum_bs_tree.find_all("docconstant")] @@ -257,6 +231,7 @@ class DocExtractor: attr_description = attr_description.strip().rstrip(">").strip() entity_attrs[attr_name] = attr_description + if entity_attrs: entities_dict[entity_name]["attributes"] = entity_attrs @@ -278,6 +253,7 @@ class DocExtractor: def extract_ifc2x3_property_sets(self): property_sets_dict = dict() property_sets_references = dict() + property_sets_spec_urls = dict() # extract lists of properties and theirs references for each property set parsed_paths = [ @@ -292,27 +268,9 @@ class DocExtractor: for property_set_path in glob.iglob(f"{parse_folder_path}/**/"): property_set_path = Path(property_set_path) property_set_name = property_set_path.stem - property_set_dict = dict() property_references = list() xml_path = property_set_path / "DocPropertySet.xml" - md_path = property_set_path / "Documentation.md" - - if md_path.is_file(): - with open(md_path, "r", encoding="utf-8-sig") as fi: - # convert markdown to html for easier parsing - html = markdown(fi.read()) - property_set_description = BeautifulSoup(html, features="lxml").find("p").text - property_set_description = property_set_description.replace("\n", " ") - property_set_description = property_set_description.split("HISTORY:", 1)[0] - property_set_description = property_set_description.strip() - property_set_dict["description"] = property_set_description - else: - print( - f"WARNING. Property set {property_set_name} has no Documentation.md, " - f"property set will be left without description." - ) - with open(xml_path, "r", encoding="utf-8") as fi: bs_tree = BeautifulSoup(fi.read(), features="lxml") for html_attr in bs_tree.find_all("docproperty"): @@ -324,8 +282,7 @@ class DocExtractor: "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML" f"/psd/{property_set_domain}/{property_set_name}.xml" ) - property_set_dict["spec_url"] = spec_url - property_sets_dict[property_set_name] = property_set_dict + property_sets_spec_urls[property_set_name] = spec_url # setup references look up tables to convert property hrefs to actual data paths references_paths_lookup = self.setup_ifc2x3_reference_lookup() @@ -388,54 +345,16 @@ class DocExtractor: for property_reference in property_sets_references[property_set_name]: property_name, property_dict = get_property_info_by_href(property_reference) properties_dict[property_name] = property_dict - property_sets_dict[property_set_name]["properties"] = properties_dict + property_sets_dict[property_set_name] = { + "properties": properties_dict, + "spec_url": property_sets_spec_urls[property_set_name], + } # export property sets data with open(BASE_MODULE_PATH / "schema/ifc2x3_properties.json", "w", encoding="utf-8") as fo: print(f"{len(property_sets_dict)} property sets parsed") json.dump(property_sets_dict, fo, sort_keys=True, indent=4) - def extract_ifc2x3_types(self): - types_dict = dict() - # search - types_paths = [ - filepath for filepath in glob.iglob(f"{IFC2x3_DOCS_LOCATION}/Sections/**/Types", recursive=True) - ] - for parse_folder_path in types_paths: - for type_path in glob.iglob(f"{parse_folder_path}/**/"): - type_path = Path(type_path) - type_name = type_path.stem - types_dict[type_name] = dict() - md_path = type_path / "Documentation.md" - - # utf-8-sig because of \ufeff occcurs - meaning it's utf bom encoded - with open(md_path, "r", encoding="utf-8-sig") as fi: - # convert markdown to html for easier parsing - html = markdown(fi.read()) - type_description = BeautifulSoup(html, features="lxml").find("p").text - type_description = type_description.replace("\n", " ") - type_description = type_description.replace("\u00a0", " ") - type_description = type_description.replace("Definition from ISO/CD 10303-46:1992: ", "") - type_description = type_description.replace("Definition from ISO/CD 10303-42:1992 ", "") - type_description = type_description.replace("Definition from ISO/CD 10303-42:1992: ", "") - type_description = type_description.replace("Definition from ISO/CD 10303-41:1992: ", "") - - type_description = type_description.strip() - - if type_description: - types_dict[type_name]['description'] = type_description - - spec_url = ( - "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/" - f"{md_path.parents[2].name.lower()}/lexical/{type_name.lower()}.htm" - ) - types_dict[type_name]['spec_url'] = spec_url - - # export entities data - with open(BASE_MODULE_PATH / "schema/ifc2x3_types.json", "w", encoding="utf-8") as fo: - print(f"{len(types_dict)} ifc types parsed") - json.dump(types_dict, fo, sort_keys=True, indent=4) - def extract_ifc4(self): print("Parsing data for Ifc4.0.2.1") if not IFC4_DOCS_LOCATION.is_dir(): @@ -455,7 +374,6 @@ class DocExtractor: self.extract_ifc4_property_sets_site_domains() self.extract_ifc4_entities() self.extract_ifc4_property_sets() - self.extract_ifc4_types() def extract_ifc4_property_sets_site_domains(self): property_sets_domains = dict() @@ -516,12 +434,12 @@ class DocExtractor: entity_name = entity_path.stem entities_dict[entity_name] = dict() + # utf-8-sig because of \ufeff occcurs - meaning it's utf bom encoded md_path = entity_path / "Documentation.md" xml_path = entity_path / "DocEntity.xml" md_url_part = urllib.parse.quote(str(md_path.relative_to(Path(__file__).parent).as_posix())) github_md_url = f"https://github.com/buildingSMART/IFC/blob/{md_url_part}" - # utf-8-sig because of \ufeff occcurs - meaning it's utf bom encoded with open(md_path, "r", encoding="utf-8-sig") as fi: # convert markdown to html for easier parsing html = markdown(fi.read()) @@ -541,13 +459,12 @@ class DocExtractor: # html code for filepath and gives warnings with warnings.catch_warnings(): warnings.simplefilter("ignore", category=MarkupResemblesLocatorWarning) - for html_attr in bs_tree.find_all("docattribute"): attr_name = html_attr["name"] if attr_name == "PredefinedType": # get references to all predefined types defined_type = html_attr["definedtype"] - enum_path = xml_path.parents[2] / "Types" / defined_type / "DocEnumeration.xml" + enum_path = xml_path.parents[2] / "Types" / defined_type / 'DocEnumeration.xml' with open(enum_path, "r", encoding="utf-8") as fi: enum_bs_tree = BeautifulSoup(fi.read(), features="lxml") hrefs = [i["href"] for i in enum_bs_tree.find_all("docconstant")] @@ -603,6 +520,7 @@ class DocExtractor: # function parses both property and quantity sets property_sets_dict = dict() property_sets_references = dict() + property_sets_spec_urls = dict() # extract lists of properties and theirs references for each property set parsed_paths = [ @@ -621,27 +539,10 @@ class DocExtractor: for property_set_path in glob.iglob(f"{parse_folder_path}/**/"): property_set_path = Path(property_set_path) property_set_name = property_set_path.stem - property_set_dict = dict() property_references = list() property_quantity = property_set_path.parents[0].name == "QuantitySets" xml_path = property_set_path / ("DocQuantitySet.xml" if property_quantity else "DocPropertySet.xml") - md_path = property_set_path / "Documentation.md" - - if md_path.is_file(): - with open(md_path, "r", encoding="utf-8-sig") as fi: - # convert markdown to html for easier parsing - html = markdown(fi.read()) - property_set_description = BeautifulSoup(html, features="lxml").find("p").text - property_set_description = property_set_description.replace("\n", " ") - property_set_description = property_set_description.split("HISTORY:", 1)[0] - property_set_description = property_set_description.strip() - property_set_dict["description"] = property_set_description - else: - print( - f"WARNING. Property set {property_set_name} has no Documentation.md, " - f"property set will be left without description." - ) with open(xml_path, "r", encoding="utf-8") as fi: bs_tree = BeautifulSoup(fi.read(), features="lxml") @@ -660,11 +561,10 @@ class DocExtractor: spec_url = ( "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML" f"/schema/{property_set_domain}" - f"/{'qset' if property_quantity else 'pset'}" + f'/{"qset" if property_quantity else "pset"}' f"/{property_set_name.lower()}.htm" ) - property_set_dict["spec_url"] = spec_url - property_sets_dict[property_set_name] = property_set_dict + property_sets_spec_urls[property_set_name] = spec_url # setup references look up tables to convert property hrefs to actual data paths references_paths_lookup = self.setup_ifc4_reference_lookup() @@ -729,61 +629,25 @@ class DocExtractor: for property_reference in property_sets_references[property_set_name]: property_name, property_dict = get_property_info_by_href(property_reference) properties_dict[property_name] = property_dict - property_sets_dict[property_set_name]["properties"] = properties_dict + property_sets_dict[property_set_name] = {"properties": properties_dict} + if property_set_name in property_sets_spec_urls: + spec_url = property_sets_spec_urls[property_set_name] + property_sets_dict[property_set_name]["spec_url"] = spec_url # export property sets data with open(BASE_MODULE_PATH / "schema/ifc4_properties.json", "w", encoding="utf-8") as fo: print(f"{len(property_sets_dict)} property sets parsed") json.dump(property_sets_dict, fo, sort_keys=True, indent=4) - def extract_ifc4_types(self): - types_dict = dict() - # search - types_paths = [ - filepath for filepath in glob.iglob(f"{IFC4_DOCS_LOCATION}/Sections/**/Types", recursive=True) - ] - for parse_folder_path in types_paths: - for type_path in glob.iglob(f"{parse_folder_path}/**/"): - type_path = Path(type_path) - type_name = type_path.stem - types_dict[type_name] = dict() - md_path = type_path / "Documentation.md" - - # utf-8-sig because of \ufeff occcurs - meaning it's utf bom encoded - with open(md_path, "r", encoding="utf-8-sig") as fi: - # convert markdown to html for easier parsing - html = markdown(fi.read().replace("{ .extDef}", "")) - type_description = BeautifulSoup(html, features="lxml").find("p").text - type_description = type_description.replace("\n", " ") - type_description = type_description.replace("\u00a0", " ") - type_description = type_description.replace("{ .extDef}", "") - type_description = type_description.replace("NOTE Definition according to ISO/CD 10303-41:1992 ", "") - type_description = type_description.replace("Definition from ISO/CD 10303-41:1992: ", "") - - type_description = type_description.strip() - - if type_description: - types_dict[type_name]['description'] = type_description - - spec_url = ( - "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/" - f"{md_path.parents[2].name.lower()}/lexical/{type_name.lower()}.htm" - ) - types_dict[type_name]['spec_url'] = spec_url - - # export entities data - with open(BASE_MODULE_PATH / "schema/ifc4_types.json", "w", encoding="utf-8") as fo: - print(f"{len(types_dict)} ifc types parsed") - json.dump(types_dict, fo, sort_keys=True, indent=4) def run_doc_api_examples(): - print("Entities (with parent entities attributes included):") - print(get_entity_doc("IFC2X3", "IfcWindow")) - print(get_entity_doc("IFC4", "IfcWindow")) + print("Entities:") + print(get_entity_doc("IFC2X3", "IfcActionRequest")) + print(get_entity_doc("IFC4", "IfcActionRequest")) - print("Entity attributes (with parent entities attributes included):") - print(get_attribute_doc("IFC2X3", "IfcWindow", "OwnerHistory")) - print(get_attribute_doc("IFC4", "IfcWindow", "OwnerHistory")) + print("Entity attributes:") + print(get_attribute_doc("IFC2X3", "IfcActionRequest", "RequestID")) + print(get_attribute_doc("IFC4", "IfcActionRequest", "LongDescription")) print("Entity predefined types:") print(get_predefined_type_doc("IFC2X3", "IfcControllerType", "FLOATING")) @@ -797,10 +661,6 @@ def run_doc_api_examples(): print(get_property_doc("IFC2X3", "Pset_ZoneCommon", "Category")) print(get_property_doc("IFC4", "Pset_ZoneCommon", "NetPlannedArea")) - print("Types:") - print(get_type_doc("IFC2X3", "IfcIsothermalMoistureCapacityMeasure")) - print(get_type_doc("IFC4", "IfcDuration")) - if __name__ == "__main__": extractor = DocExtractor() diff --git a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_properties.json b/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_properties.json index 5e9e10fb1a..f7abfe34de 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_properties.json +++ b/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_properties.json @@ -1,6 +1,5 @@ { "Pset_ActionRequest": { - "description": "An action request is a request for an action to fulfill a need.", "properties": { "RequestComments": { "description": "Comments that may be made on the request." @@ -24,7 +23,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcFacilitiesMgmtDomain/Pset_ActionRequest.xml" }, "Pset_ActorCommon": { - "description": "A property set that enables further classification of actors, including the ability to give a number of actors to be designated as a population, the number being specified as a property to be dealt with as a single value rather than having to aggregate a number of instances of IfcActor.", "properties": { "Category": { "description": "Designation of the category into which the actors in the population belong." @@ -39,7 +37,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcKernel/Pset_ActorCommon.xml" }, "Pset_ActuatorTypeCommon": { - "description": "Actuator type common attributes.", "properties": { "FailPosition": { "description": "Specifies the required fail-safe position of the actuator." @@ -51,7 +48,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ActuatorTypeCommon.xml" }, "Pset_ActuatorTypeElectricActuator": { - "description": "A device that electrically actuates a control element.", "properties": { "ActuatorInputPower": { "description": "Maximum input power requirement" @@ -63,7 +59,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ActuatorTypeElectricActuator.xml" }, "Pset_ActuatorTypeHydraulicActuator": { - "description": "A device that hydraulically actuates a control element.", "properties": { "InputFlowrate": { "description": "Maximum hydraulic flowrate requirement." @@ -75,7 +70,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ActuatorTypeHydraulicActuator.xml" }, "Pset_ActuatorTypeLinearActuation": { - "description": "Characteristics of linear actuation of an actuator History: Replaces Pset_LinearActuator", "properties": { "Force": { "description": "Indicates the maximum close-off force for the actuator." @@ -87,7 +81,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ActuatorTypeLinearActuation.xml" }, "Pset_ActuatorTypePneumaticActuator": { - "description": "A device that pneumatically actuates a control element", "properties": { "InputFlowrate": { "description": "Maximum input control air flowrate requirement" @@ -99,7 +92,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ActuatorTypePneumaticActuator.xml" }, "Pset_ActuatorTypeRotationalActuation": { - "description": "Characteristics of rotational actuation of an actuator History: Replaces Pset_RotationalActuator", "properties": { "RangeAngle": { "description": "Indicates the maximum rotation the actuator must traverse." @@ -111,7 +103,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ActuatorTypeRotationalActuation.xml" }, "Pset_AirSideSystemInformation": { - "description": "Attributes that apply to an air side HVAC system.", "properties": { "AirSideSystemDistributionType": { "description": "This enumeration defines the basic types of air side systems (e.g., SingleDuct, DualDuct, Multizone, etc.)" @@ -171,7 +162,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_AirSideSystemInformation.xml" }, "Pset_AirTerminalBoxPHistory": { - "description": "Air terminal box performance history attributes.", "properties": { "AirflowCurve": { "description": "Air flowrate versus damper position relationship;airflow = f ( valve position)." @@ -189,7 +179,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalBoxPHistory.xml" }, "Pset_AirTerminalBoxTypeCommon": { - "description": "Air terminal box type common attributes.", "properties": { "AirPressureRange": { "description": "Allowable air static pressure range at the entrance of the air terminal box." @@ -240,7 +229,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalBoxTypeCommon.xml" }, "Pset_AirTerminalPHistory": { - "description": "Air terminal performance history common attributes.", "properties": { "AirFlowRate": { "description": "Volumetric flow rate." @@ -267,7 +255,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalPHistory.xml" }, "Pset_AirTerminalTypeCommon": { - "description": "Air terminal type common attributes. SoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirDiffusionPerformanceIndex": { "description": "The Air Diffusion Performance Index (ADPI) is used for cooling mode conditions. If several measurements of air velocity and air temperature are made throughout the occupied zone of a space, the ADPI is the percentage of locations where measurements were taken that meet the specifications for effective draft temperature and air velocity." @@ -339,7 +326,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalTypeCommon.xml" }, "Pset_AirTerminalTypeRectangular": { - "description": "Rectangular air terminal type attributes.", "properties": { "FaceType": { "description": "Identifies how the terminal face of an AirTerminal is constructed." @@ -348,7 +334,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalTypeRectangular.xml" }, "Pset_AirTerminalTypeRound": { - "description": "Round air terminal type attributes.", "properties": { "FaceType": { "description": "Identifies how the terminal face of an AirTerminal is constructed." @@ -357,7 +342,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalTypeRound.xml" }, "Pset_AirTerminalTypeSlot": { - "description": "Slot air terminal type attributes.", "properties": { "NumberOfSlots": { "description": "Number of slots." @@ -372,7 +356,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalTypeSlot.xml" }, "Pset_AirTerminalTypeSquare": { - "description": "Square air terminal type attributes.", "properties": { "FaceType": { "description": "Identifies how the terminal face of an AirTerminal is constructed." @@ -381,7 +364,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirTerminalTypeSquare.xml" }, "Pset_AirToAirHeatRecoveryPHist": { - "description": "Air to Air Heat Recovery performance history common attributes.", "properties": { "AirPressureDropCurves": { "description": "Air pressure drop as function of air flow rate" @@ -420,7 +402,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirToAirHeatRecoveryPHist.xml" }, "Pset_AirToAirHeatRecoveryTypeCommon": { - "description": "Air to Air Heat Recovery type common attributes.", "properties": { "HasDefrost": { "description": "has the heat exchanger has defrost function or not" @@ -445,7 +426,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_AirToAirHeatRecoveryTypeCommon.xml" }, "Pset_AnalogInput": { - "description": "Defines the characteristics of an analog input.", "properties": { "Deadband": { "description": "The deadband value for the analog input." @@ -472,7 +452,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_AnalogInput.xml" }, "Pset_AnalogOutput": { - "description": "Defines the characteristics of an analog output.", "properties": { "Deadband": { "description": "The deadband value for the analog output." @@ -499,7 +478,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_AnalogOutput.xml" }, "Pset_Asset": { - "description": "An asset is a uniquely identifiable element which has a financial value and against which maintenance actions are recorded.", "properties": { "AssetAccountingType": { "description": "Identifies the predefined types of risk from which the type required may be set." @@ -514,7 +492,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_Asset.xml" }, "Pset_BeamCommon": { - "description": "Properties common to the definition of all occurrences of IfcBeam.", "properties": { "FireRating": { "description": "Fire rating for this object. It is given according to the national fire safety classification." @@ -538,7 +515,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_BeamCommon.xml" }, "Pset_BinaryInput": { - "description": "Defines the characteristics of a binary input.", "properties": { "AckedTransitions": { "description": "Enumeration that defines the type of transition acknowledgement" @@ -568,7 +544,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_BinaryInput.xml" }, "Pset_BinaryOutput": { - "description": "Defines the characteristics of a binary output.", "properties": { "AckedTransitions": { "description": "Enumeration that defines the type of transition acknowledgement" @@ -592,7 +567,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_BinaryOutput.xml" }, "Pset_BoilerPHistory": { - "description": "Boiler performance history common attributes. WaterQuality attribute deleted in IFC2x2 Pset Addendum: Use IfcWaterProperties instead. CombustionProductsMaximulLoad and CombustionProductsPartialLoad attributes deleted in IFC2x2 Pset Addendum: Use IfcProductsOfCombustionProperties instead.", "properties": { "AuxiliaryEnergyConsumption": { "description": "Boiler secondary energy source consumption (i.e., the electricity consumed by electrical devices such as fans and pumps)." @@ -625,7 +599,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_BoilerPHistory.xml" }, "Pset_BoilerTypeCommon": { - "description": "Boiler type common attributes. SoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. PrimaryEnergySource and AuxiliaryEnergySource attributes deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead.", "properties": { "HeatOutput": { "description": "Total nominal heat output as listed by the Boiler manufacturer. For water boilers, it is a function of inlet versus outlet temperature. For steam boilers, it is a function of inlet temperature versus steam pressure." @@ -673,7 +646,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_BoilerTypeCommon.xml" }, "Pset_BoilerTypeSteam": { - "description": "Steam boiler type common attributes.", "properties": { "MaximumOutletPressure": { "description": "Maximum steam outlet pressure." @@ -682,7 +654,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_BoilerTypeSteam.xml" }, "Pset_BuildingCommon": { - "description": "Properties common to the definition of all instances of IfcBuilding. Please note that several building attributes are handled directly at the IfcBuilding instance, the building number (or short name) by IfcBuilding.Name, the building name (or long name) by IfcBuilding.LongName, and the description (or comments) by IfcBuilding.Description. Actual building quantities, like building perimeter, building area and building volume are provided by IfcElementQuantities, and the building classification according to national building code by IfcClassificationReference.", "properties": { "AncillaryFireUse": { "description": "Ancillary fire use for the building which is assigned from the fire use classification table as given by the relevant national building code." @@ -721,7 +692,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_BuildingCommon.xml" }, "Pset_BuildingElementProxyCommon": { - "description": "Properties common to the definition of all instances of IfcBuildingElementProxy.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1')" @@ -730,7 +700,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_BuildingElementProxyCommon.xml" }, "Pset_BuildingStoreyCommon": { - "description": "Properties common to the definition of all instances of IfcBuildingStorey. Please note that several building attributes are handled directly at the IfcBuildingStorey instance, the building storey number (or short name) by IfcBuildingStorey.Name, the building storey name (or long name) by IfcBuildingStorey.LongName, and the description (or comments) by IfcBuildingStorey.Description. Actual building storey quantities, like building storey perimeter, building storey area and building storey volume are provided by IfcElementQuantities, and the building storey classification according to national building code by IfcClassificationReference.", "properties": { "AboveGround": { "description": "Indication whether this building storey is fully above ground (TRUE), or below ground (FALSE), or partially above and below ground (UNKNOWN) - as in sloped terrain." @@ -754,7 +723,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_BuildingStoreyCommon.xml" }, "Pset_BuildingUse": { - "description": "Provides information on on the real estate context of the building of interest both current and anticipated.", "properties": { "MarketCategory": { "description": "Category of use e.g. residential, commercial, recreation etc." @@ -796,7 +764,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_BuildingUse.xml" }, "Pset_BuildingUseAdjacent": { - "description": "Provides information on adjacent buildings and their uses to enable their impact on the building of interest to be determined. Note that for each instance of the property set used, where there is an existence of risk, there will be an instance of the property set Pset_Risk (q.v)", "properties": { "MarketCategory": { "description": "Category of use e.g. residential, commercial, recreation etc." @@ -814,7 +781,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_BuildingUseAdjacent.xml" }, "Pset_BuildingWaterStorage": { - "description": "The basic set of properties that are used for determining the water requirements for a building. Typically, this property set is expected to be used in conjunction with IfcBuilding.", "properties": { "OneDayCoolingTowerMakeupWater": { "description": "The volume of water that needs to be stored to supply make up water to the cooling towers in a building for one day in the event of water supply failure." @@ -835,7 +801,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_BuildingWaterStorage.xml" }, "Pset_CableCarrierSegmentTypeCableLadderSegment": { - "description": "An open carrier segment on which cables are carried on a ladder structure.", "properties": { "LadderConfiguration": { "description": "Description of the configuration of the ladder structure used." @@ -853,7 +818,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_CableCarrierSegmentTypeCableLadderSegment.xml" }, "Pset_CableCarrierSegmentTypeCableTraySegment": { - "description": "An (typically) open carrier segment onto which cables are laid.", "properties": { "HasCover": { "description": "Indication of whether the cable tray has a cover (=TRUE) or not (= FALSE). By default, this value should be set to FALSE." @@ -871,7 +835,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_CableCarrierSegmentTypeCableTraySegment.xml" }, "Pset_CableCarrierSegmentTypeCableTrunkingSegment": { - "description": "An enclosed carrier segment with one or more compartments into which cables are placed.", "properties": { "NominalHeight": { "description": "The nominal height of the segment" @@ -889,7 +852,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_CableCarrierSegmentTypeCableTrunkingSegment.xml" }, "Pset_CableCarrierSegmentTypeConduitSegment": { - "description": "An enclosed tubular carrier segment through which cables are pulled.", "properties": { "ConduitShapeType": { "description": "The shape of the conduit segment" @@ -910,7 +872,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_CableCarrierSegmentTypeConduitSegment.xml" }, "Pset_CableSegmentTypeCableSegment": { - "description": "Electrical cable with a specific purpose to lead electric current within a circuit or any other electric construction. Includes all types of electric cables, mainly several electrical segments wrapped together, e.g. cable, tube, busbar. Note that the number of conductors within a cable is determined by an aggregation mechanism that aggregates the conductors within the cable.", "properties": { "CableInsulationMaterial": { "description": "The material from which the insulation is constructed. Such as PVC, PEX, EPR,..." @@ -940,7 +901,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_CableSegmentTypeCableSegment.xml" }, "Pset_CableSegmentTypeConductorSegment": { - "description": "An electrical conductor is a single linear element with the specific purpose to lead electric current. The core of one lead is normally single wired or multiwired which are intertwined.", "properties": { "ConductorMaterial": { "description": "Type of material from which the conductor is constructed. Such as Aluminium or Copper" @@ -973,7 +933,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_CableSegmentTypeConductorSegment.xml" }, "Pset_ChillerPHistory": { - "description": "Chiller performance history attributes.", "properties": { "Capacity": { "description": "The product of the ideal capacity and the overall volumetric efficiency of the compressor." @@ -997,7 +956,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ChillerPHistory.xml" }, "Pset_ChillerTypeCommon": { - "description": "Chiller type common attributes.", "properties": { "NominalCapacity": { "description": "Nominal cooling capacity of chiller at standardized conditions per ARI Standards 550-92, Centrifugal and Rotary Screw Water-Chilling Packages, and ARI Standards 590-92, Positive Displacement Compressor." @@ -1021,7 +979,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ChillerTypeCommon.xml" }, "Pset_CoilPHistory": { - "description": "Coil performance history common attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirPressureDropCurve": { "description": "Air pressure drop curve, pressure drop \u2013 flow rate curve, AirPressureDrop = f (AirflowRate)." @@ -1039,7 +996,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CoilPHistory.xml" }, "Pset_CoilTypeCommon": { - "description": "Coil type common attributes.", "properties": { "AirflowRateRange": { "description": "Possible range of airflow that can be delivered." @@ -1060,7 +1016,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CoilTypeCommon.xml" }, "Pset_CoilTypeHydronic": { - "description": "Hydronic coil type attributes.", "properties": { "BypassFactor": { "description": "Fraction of air that is bypassed by the coil (0-1)." @@ -1108,7 +1063,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CoilTypeHydronic.xml" }, "Pset_ColumnCommon": { - "description": "Properties common to the definition of all occurrences of IfcColumn.", "properties": { "FireRating": { "description": "Fire rating for this object. It is given according to the national fire safety classification." @@ -1129,7 +1083,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_ColumnCommon.xml" }, "Pset_CompressorPHistory": { - "description": "Compressor performance history attributes.", "properties": { "CoefficientOfPerformance": { "description": "Coefficient of performance (COP)." @@ -1177,7 +1130,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CompressorPHistory.xml" }, "Pset_CompressorTypeCommon": { - "description": "Compressor type common attributes.", "properties": { "CompressorSpeed": { "description": "Compressor speed" @@ -1213,7 +1165,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CompressorTypeCommon.xml" }, "Pset_CondenserPHistory": { - "description": "Condenser performance history attributes.", "properties": { "CompressorCondenserHeatGain": { "description": "Heat gain between condenser inlet to compressor outlet." @@ -1252,7 +1203,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CondenserPHistory.xml" }, "Pset_CondenserTypeCommon": { - "description": "Condenser type common attributes.", "properties": { "ExternalSurfaceArea": { "description": "External surface area (both primary and secondary area)." @@ -1282,7 +1232,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CondenserTypeCommon.xml" }, "Pset_ControllerTypeCommon": { - "description": "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued output.", "properties": { "ControlType": { "description": "The type of signal modification effected" @@ -1300,7 +1249,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ControllerTypeCommon.xml" }, "Pset_ControllerTypeProportional": { - "description": "Properties for signal handling for an proportional controller taking a single input and creating a single valued output", "properties": { "ControlType": { "description": "The type of signal modification effected" @@ -1321,7 +1269,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ControllerTypeProportional.xml" }, "Pset_ControllerTypeTwoPosition": { - "description": "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued binary output.", "properties": { "BandWidth": { "description": "Dead band for controller" @@ -1333,7 +1280,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_ControllerTypeTwoPosition.xml" }, "Pset_CooledBeamPHistory": { - "description": "Common performance history attributes for a cooled beam.", "properties": { "BeamCoolingCapacity": { "description": "Cooling capacity of beam. This excludes cooling capacity of supply air" @@ -1378,7 +1324,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CooledBeamPHistory.xml" }, "Pset_CooledBeamPHistoryActive": { - "description": "Performance history attributes for an active cooled beam.", "properties": { "AirFlowRate": { "description": "Air flow rate" @@ -1393,7 +1338,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CooledBeamPHistoryActive.xml" }, "Pset_CooledBeamTypeActive": { - "description": "Active (ventilated) cooled beam common attributes.", "properties": { "AirFlowConfiguration": { "description": "Air flow configuration type of cooled beam" @@ -1411,7 +1355,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CooledBeamTypeActive.xml" }, "Pset_CooledBeamTypeCommon": { - "description": "Cooled beam common attributes. SoundLevel and SoundAttenuation attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "CoilLength": { "description": "Length of coil" @@ -1483,7 +1426,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CooledBeamTypeCommon.xml" }, "Pset_CoolingTowerPHistory": { - "description": "Cooling tower performance history attributes.", "properties": { "Capacity": { "description": "Cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream." @@ -1504,7 +1446,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CoolingTowerPHistory.xml" }, "Pset_CoolingTowerTypeCommon": { - "description": "Cooling tower type common attributes. WaterRequirement attribute unit type modified in IFC2x2 Pset Addendum.", "properties": { "AmbientDesignDryBulbTemperature": { "description": "Ambient design dry bulb temperature used for selecting the cooling tower." @@ -1558,7 +1499,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_CoolingTowerTypeCommon.xml" }, "Pset_CoveringCeiling": { - "description": "Properties common to the definition of all occurrences of IfcCovering with the PredefinedType set to CEILING.", "properties": { "FragilityRating": { "description": "The level of fragility of the ceiling. It is giving according to the national building code." @@ -1576,7 +1516,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_CoveringCeiling.xml" }, "Pset_CoveringCommon": { - "description": "Properties common to the definition of all occurrences of IfcCovering.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -1612,7 +1551,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_CoveringCommon.xml" }, "Pset_CoveringFlooring": { - "description": "Properties common to the definition of all occurrences of IfcCovering with the PredefinedType set to FLOORING.", "properties": { "HasAntiStaticSurface": { "description": "Indication whether the surface finish is designed to prevent electrostatic charge (TRUE) or not (FALSE)." @@ -1624,7 +1562,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_CoveringFlooring.xml" }, "Pset_CurtainWallCommon": { - "description": "Properties common to the definition of all occurrences of IfcCurtainWall.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -1651,7 +1588,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_CurtainWallCommon.xml" }, "Pset_DamperPHistory": { - "description": "Damper performance history attributes.", "properties": { "AirFlowRate": { "description": "Air flow rate." @@ -1675,7 +1611,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DamperPHistory.xml" }, "Pset_DamperTypeCommon": { - "description": "Damper type common attributes.", "properties": { "BladeAction": { "description": "Blade action." @@ -1759,7 +1694,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DamperTypeCommon.xml" }, "Pset_DamperTypeControlDamper": { - "description": "Control damper type attributes. Pset renamed from Pset_DamperTypeControl to Pset_DamperTypeControlDamper in IFC2x2 Pset Addendum.", "properties": { "ControlDamperOperation": { "description": "The inherent characteristic of the control damper operation." @@ -1771,7 +1705,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DamperTypeControlDamper.xml" }, "Pset_DamperTypeFireDamper": { - "description": "Fire damper type attributes. Pset renamed from Pset_DamperTypeFire to Pset_DamperTypeFireDamper in IFC2x2 Pset Addendum.", "properties": { "ActuationType": { "description": "Enumeration that identifies the different types of dampers" @@ -1789,7 +1722,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DamperTypeFireDamper.xml" }, "Pset_DamperTypeFireSmokeDamper": { - "description": "Combination Fire and Smoke damper type attributes. New Pset in IFC2x2 Pset Addendum.", "properties": { "ControlType": { "description": "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.)" @@ -1798,7 +1730,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DamperTypeFireSmokeDamper.xml" }, "Pset_DamperTypeSmokeDamper": { - "description": "Smoke damper type attributes. Pset renamed from Pset_DamperTypeSmoke to Pset_DamperTypeSmokeDamper in IFC2x2 Pset Addendum.", "properties": { "ControlType": { "description": "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.)" @@ -1807,7 +1738,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DamperTypeSmokeDamper.xml" }, "Pset_DesignPoint": { - "description": "A point of connection taken as a reference for hydraulic calculations in sprinkler systems. The point is assigned to an instance of IfcDistributionPort and located according to circumstances as set out by local building codes. For instance, it may be either the last elbow, tee or branch downstream of which a sprinkler array is located (where ranges are directly connected to the distribution pipe without risers or drops) or the point of connection of the riser or drop nearest the installation valves in the sprinkler array (where ranges are connected to the distribution pipe with risers or drops). Other circumstances may be referenced in local codes and the assignment of the design point must be established by a user.", "properties": { "IsDesignPoint": { "description": "Indicates whether an instance of IfcDistributionPort is to act as the design point for sprinkler hydraulic calculation (set TRUE) or not (either set FALSE or assumed to be FALSE where an instance of the property set is not assigned to an instance of IfcDistributionPort)." @@ -1816,7 +1746,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_DesignPoint.xml" }, "Pset_DiscreteAccessoryAnchorBolt": { - "description": "Properties common to different types of anchor bolts.", "properties": { "AnchorBoltDiameter": { "description": "The nominal diameter of the anchor bolt bar(s)." @@ -1834,7 +1763,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryAnchorBolt.xml" }, "Pset_DiscreteAccessoryColumnShoe": { - "description": "Shape properties common to column shoes.", "properties": { "ColumnShoeBasePlateDepth": { "description": "The depth of the column shoe base plate." @@ -1858,7 +1786,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryColumnShoe.xml" }, "Pset_DiscreteAccessoryCornerFixingPlate": { - "description": "Properties specific to corner fixing plates.", "properties": { "CornerFixingPlateFlangeWidthInPlaneX": { "description": "The flange width of the L-shaped corner plate in plane X." @@ -1876,7 +1803,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryCornerFixingPlate.xml" }, "Pset_DiscreteAccessoryDiagonalTrussConnector": { - "description": "Shape properties specific to connecting accessories in truss form with diagonal cross-bars.", "properties": { "DiagonalTrussBaseBarDiameter": { "description": "The nominal diameter of the base bar." @@ -1900,7 +1826,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryDiagonalTrussConnector.xml" }, "Pset_DiscreteAccessoryEdgeFixingPlate": { - "description": "Properties specific to edge fixing plates.", "properties": { "EdgeFixingPlateFlangeWidthInPlaneX": { "description": "The flange width of the L-shaped edge plate in plane X." @@ -1918,7 +1843,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryEdgeFixingPlate.xml" }, "Pset_DiscreteAccessoryFixingSocket": { - "description": "Properties common to fixing sockets.", "properties": { "FixingSocketHeight": { "description": "The overall height of the fixing socket." @@ -1936,7 +1860,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryFixingSocket.xml" }, "Pset_DiscreteAccessoryLadderTrussConnector": { - "description": "Shape properties specific to connecting accessories in truss form with straight cross-bars in ladder shape.", "properties": { "LadderTrussBaseBarDiameter": { "description": "The nominal diameter of the base bar." @@ -1960,7 +1883,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryLadderTrussConnector.xml" }, "Pset_DiscreteAccessoryStandardFixingPlate": { - "description": "Properties specific to standard fixing plates.", "properties": { "StandardFixingPlateDepth": { "description": "The depth of the standard fixing plate." @@ -1975,7 +1897,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryStandardFixingPlate.xml" }, "Pset_DiscreteAccessoryWireLoop": { - "description": "Shape properties common to wire loop joint connectors.", "properties": { "WireDiameter": { "description": "The nominal diameter of the wire." @@ -1999,7 +1920,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedComponentElements/Pset_DiscreteAccessoryWireLoop.xml" }, "Pset_DistributionChamberElementTypeFormedDuct": { - "description": "Definition from BS6100 100 3410: Space formed in the ground for the passage of pipes, cables, ducts.", "properties": { "AccessCoverLoadRating": { "description": "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)" @@ -2032,7 +1952,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeFormedDuct.xml" }, "Pset_DistributionChamberElementTypeInspectionChamber": { - "description": "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits visible inspection.", "properties": { "AccessCoverLoadRating": { "description": "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)" @@ -2077,7 +1996,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeInspectionChamber.xml" }, "Pset_DistributionChamberElementTypeInspectionPit": { - "description": "Recess or chamber formed to permit access for inspection of substructure and services (definition modified from BS6100 221 4128).", "properties": { "Depth": { "description": "The depth of the pit." @@ -2092,7 +2010,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeInspectionPit.xml" }, "Pset_DistributionChamberElementTypeManhole": { - "description": "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits the entry of a person.", "properties": { "AccessCoverLoadRating": { "description": "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)" @@ -2137,7 +2054,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeManhole.xml" }, "Pset_DistributionChamberElementTypeMeterChamber": { - "description": "Chamber that houses a meter(s) (definition modified from BS6100 250 6224).", "properties": { "AccessCoverMaterial": { "description": "The material from which the access cover to the chamber is constructed. NOTE: It is assumed that chamber walls will be constructed of a single material." @@ -2164,7 +2080,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeMeterChamber.xml" }, "Pset_DistributionChamberElementTypeSump": { - "description": "Definition from BS6100 100 3431: Recess or small chamber into which liquid is drained to facilitate its removal.", "properties": { "InvertLevel": { "description": "The lowest point in the cross section of the sump." @@ -2179,7 +2094,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeSump.xml" }, "Pset_DistributionChamberElementTypeTrench": { - "description": "Definition from BS6100 221 4118: Excavation, the length of which greatly exceeds the width.", "properties": { "Depth": { "description": "The depth of the trench." @@ -2194,7 +2108,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeTrench.xml" }, "Pset_DistributionChamberElementTypeValveChamber": { - "description": "Definition from BS6100 250 6224: Chamber that houses a valve(s).", "properties": { "AccessCoverMaterial": { "description": "The material from which the access cover to the chamber is constructed. NOTE: It is assumed that chamber walls will be constructed of a single material." @@ -2221,7 +2134,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionChamberElementTypeValveChamber.xml" }, "Pset_DistributionFlowElementCommon": { - "description": "Common properties of all occurrences of IfcDistributionFlowElement and their subtypes.", "properties": { "Reference": { "description": "Reference ID for this specific instance (e.g. 'WWS/VS1/400/001', which indicates the occurrence belongs to system WWS, subsystems VSI/400, and has the component number 001)" @@ -2230,7 +2142,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionFlowElementCommon.xml" }, "Pset_DistributionPortDuct": { - "description": "Duct port occurrence attributes attached to an instance of IfcDistributionPort.", "properties": { "ConnectionType": { "description": "The end-style treatment of the duct port: BEADEDSLEEVE: Beaded Sleeve. COMPRESSION: Compression. CRIMP: Crimp. DRAWBAND: Drawband. DRIVESLIP: Drive slip. FLANGED: Flanged. OUTSIDESLEEVE: Outside Sleeve. SLIPON: Slipon. SOLDERED: Soldered. SSLIP: S-Slip. STANDINGSEAM: Standing seam. SWEDGE: Swedge. WELDED: Welded. OTHER: Another type of end-style has been applied. NONE: No end-style has been applied." @@ -2242,7 +2153,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionPortDuct.xml" }, "Pset_DistributionPortPipe": { - "description": "Pipe port occurrence attributes attached to an instance of IfcDistributionPort.", "properties": { "ConnectionType": { "description": "The end-style treatment of the pipe port: BRAZED: Brazed. COMPRESSION: Compression. FLANGED: Flanged. GROOVED: Grooved. OUTSIDESLEEVE: Outside Sleeve. SOLDERED: Soldered. SWEDGE: Swedge. THREADED: Threaded. WELDED: Welded. OTHER: Another type of end-style has been applied. NONE: No end-style has been applied. USERDEFINED: User-defined port connection type. NOTDEFINED: Undefined port connection type." @@ -2254,7 +2164,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_DistributionPortPipe.xml" }, "Pset_DoorCommon": { - "description": "Properties common to the definition of all occurrences of IfcDoor.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -2296,7 +2205,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_DoorCommon.xml" }, "Pset_DoorWindowGlazingType": { - "description": "Properties common to the definition of the glazing component of occurrences of IfcDoor and IfcWindow, used for thermal and lighting calculations.", "properties": { "BeamRadiationTransmittance": { "description": "Direct solar radiation transmittance that passes the glazing at normal incidence. It is a value without unit, often referred to as (Tsol)." @@ -2350,7 +2258,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_DoorWindowGlazingType.xml" }, "Pset_DoorWindowShadingType": { - "description": "Properties common to the definition of the shading component of occurrences of IfcDoor and IfcWindow, used for static (simplified) shading calculations.", "properties": { "ExternalShadingCoefficient": { "description": "Radiation transmission coefficient of the outside shading device. It is a value without unit." @@ -2365,7 +2272,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_DoorWindowShadingType.xml" }, "Pset_DrainageCatchment": { - "description": "Area of land that drains naturally to a given point (BS6100 modified). Used as a non type driven property set in conjunction with an appropriate instance of IfcSpatialStructureElement that is identified as a catchment using the inherited IfcRoot.Name attribute. Catchments may be nested using IfcRelNests so that subcatchment areas (as component parts of a catchment area) can be identified. A catchment area will be geometrically defined by a closed loop (closed polyline or polyloop) Note also that the boundary between catchment areas (watershed) is not currently identified.", "properties": { "AreaDrained": { "description": "The area measure enclosed within the catchment" @@ -2374,7 +2280,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_DrainageCatchment.xml" }, "Pset_DrainageCulvert": { - "description": "Covered channel or large pipe that forms a watercourse below ground level, usually under a road or railway (BS6100). Used as a non type driven property set in conjunction with an instance of IfcSystem that is classified as a culvert.", "properties": { "ClearDepth": { "description": "The clear depth of the culvert" @@ -2386,7 +2291,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_DrainageCulvert.xml" }, "Pset_DrainageOutfall": { - "description": "Structure through which water is discharged into a watercourse or body of water (BS6100). Used as a non type driven property set in conjunction with an instance of IfcProxy that is identified as an outfall using the inherited IfcRoot.Name attribute.", "properties": { "InvertLevel": { "description": "The lowest point of the outfall" @@ -2395,7 +2299,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_DrainageOutfall.xml" }, "Pset_DrainageReserve": { - "description": "Area exclusively reserved for the routing of drainage services. Used as a non type driven property set in conjunction with an appropriate instance of IfcSpatialStructureElement that is identified as a drainage reserve using the inherited IfcRoot.Name attribute.", "properties": { "Width": { "description": "The width of the drainage reserve" @@ -2404,7 +2307,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_DrainageReserve.xml" }, "Pset_Draughting": { - "description": "Property set to capture layer and colour as a quick win implementation within IFC2x platform to enable more efficient exchange of 3D building models. NOTE: With implementation of the IFC2x2 capabilities defined in the presentation resources (IfcPresentationLayerAssignment, IfcCurveStyle) the use of this property set may become obsolete.", "properties": { "Colour": { "children": { @@ -2427,7 +2329,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_Draughting.xml" }, "Pset_DuctConnection": { - "description": "This property set is used to define the various types of duct connections. It is applied to occurrences of duct segments and fittings.", "properties": { "ConnectionType": { "description": "The connection type between duct segments or fittings and other segments or fittings. If the list contains only one value, then this connection type value applies to all ports. For more than one value in the list, the connection type value applies to the port that corresponds to the list index.The following suggested items should be utilized whenever possible for correlation with port enumerations: ANGLE: Angle. BEADEDSLEEVE: Beaded Sleeve. BRAZED: Brazed. COMPRESSION: Compression. CRIMP: Crimp. DRAWBAND: Drawband. DRIVESLIP: Drive slip. FLANGED: Flanged. OUTSIDESLEEVE: Outside Sleeve. SLIPON: Slipon. SOLDERED: Soldered. SSLIP: S-Slip. STANDINGSEAM: Standing seam. SWEDGE: Swedge. WELDED: Welded. NONE: No connection type. NOTDEFINED: Undefined connection type." @@ -2436,7 +2337,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctConnection.xml" }, "Pset_DuctDesignCriteria": { - "description": "This property set is used to define the general characteristics of the duct design parameters. This property set is typically attached to an instance of an IfcSystem, however, it may also be attached to individual elements within a duct distribution system where individual design parameters overrule those of the system.", "properties": { "AspectRatio": { "description": "The default aspect ratio" @@ -2475,7 +2375,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctDesignCriteria.xml" }, "Pset_DuctFittingPHistory": { - "description": "Duct fitting performance history common attributes.", "properties": { "AirFlowLeakage": { "description": "Volumetric leakage flow rate." @@ -2490,7 +2389,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctFittingPHistory.xml" }, "Pset_DuctFittingTypeCommon": { - "description": "Duct fitting type common attributes.", "properties": { "EndStyleTreatment": { "description": "The end-style treatment of the duct fitting manufactured. If the list contains only one value, then this end-style applies to all ports. For more than one value in the list, the end-style value applies to the port that corresponds to the list index.The following suggested items should be utilized whenever possible for correlation with port enumerations: ANGLE: Angle. BEADEDSLEEVE: Beaded Sleeve. BRAZED: Brazed. COMPRESSION: Compression. CRIMP: Crimp. DRAWBAND: Drawband. DRIVESLIP: Drive slip. FLANGED: Flanged. OUTSIDESLEEVE: Outside Sleeve. SLIPON: Slipon. SOLDERED: Soldered. SSLIP: S-Slip. STANDINGSEAM: Standing seam. SWEDGE: Swedge. WELDED: Welded. NONE: No end-style treatment has been applied. NOTDEFINED: Undefined end-style type." @@ -2526,7 +2424,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctFittingTypeCommon.xml" }, "Pset_DuctSegmentPHistory": { - "description": "Duct segment performance history common attributes.", "properties": { "AtmosphericPressure": { "description": "Ambient atmospheric pressure." @@ -2544,7 +2441,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctSegmentPHistory.xml" }, "Pset_DuctSegmentTypeCommon": { - "description": "Duct segment type common attributes.", "properties": { "EndStyleTreatment": { "description": "The end-style treatment of the duct segment manufactured. If the list contains only one value, then this end-style applies to all ports. For more than one value in the list, the end-style value applies to the port that corresponds to the list index.The following suggested items should be utilized whenever possible for correlation with port enumerations: ANGLE: Angle. BEADEDSLEEVE: Beaded Sleeve. BRAZED: Brazed. COMPRESSION: Compression. CRIMP: Crimp. DRAWBAND: Drawband. DRIVESLIP: Drive slip. FLANGED: Flanged. OUTSIDESLEEVE: Outside Sleeve. SLIPON: Slipon. SOLDERED: Soldered. SSLIP: S-Slip. STANDINGSEAM: Standing seam. SWEDGE: Swedge. WELDED: Welded. NONE: No end-style treatment has been applied. NOTDEFINED: Undefined end-style type." @@ -2592,7 +2488,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctSegmentTypeCommon.xml" }, "Pset_DuctSilencerPHistory": { - "description": "Duct silencer performance history common attributes.", "properties": { "AirFlowRate": { "description": "Volumetric air flow rate." @@ -2604,7 +2499,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctSilencerPHistory.xml" }, "Pset_DuctSilencerTypeCommon": { - "description": "Duct silencer type common attributes. InsertionLoss and RegeneratedSound attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirFlowrateRange": { "description": "Possible range of airflow that can be delivered." @@ -2634,7 +2528,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_DuctSilencerTypeCommon.xml" }, "Pset_ElectricDistributionPointCommon": { - "description": "A room or a place or a box where an electrical supply enters and is then further distributed via electrical circuits. A distribution point may be a main distribution point or a sub-main distribution point.", "properties": { "CaseMaterial": { "description": "Material from which the casing surrounding the distribution point is constructed." @@ -2655,7 +2548,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricDistributionPointCommon.xml" }, "Pset_ElectricGeneratorTypeCommon": { - "description": "Defines a particular type of engine that is a machine for converting mechanical energy into electrical energy.", "properties": { "ElectricGeneratorEfficiency": { "description": "The ratio of output capacity to intake capacity." @@ -2670,7 +2562,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricGeneratorTypeCommon.xml" }, "Pset_ElectricHeaterTypeElectricalCableHeater": { - "description": "An electrical device that outputs heat uniformly along its path.", "properties": { "HeatOutputPerUnitLength": { "description": "The amount of heat output per unit length of heat emitter." @@ -2679,7 +2570,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricHeaterTypeElectricalCableHeater.xml" }, "Pset_ElectricHeaterTypeElectricalMatHeater": { - "description": "An electrical device that outputs heat uniformly across its surface area.", "properties": { "HeatOutputPerUnitArea": { "description": "The amount of heat output per unit area of heat emitter." @@ -2688,7 +2578,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricHeaterTypeElectricalMatHeater.xml" }, "Pset_ElectricHeaterTypeElectricalPointHeater": { - "description": "An electrical device that outputs heat as a total quantity from a point or restricted area that can be considered as a point.", "properties": { "HeatOutput": { "description": "The total amount of heat output by the heat emitter." @@ -2697,7 +2586,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricHeaterTypeElectricalPointHeater.xml" }, "Pset_ElectricalCircuit": { - "description": "A circuit supplies electrical devices with voltage and current.", "properties": { "Diversity": { "description": "A factor that is a means of reducing the cable size on the basis that not all the connected load will be drawing current simultaneously." @@ -2715,7 +2603,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricalCircuit.xml" }, "Pset_ElectricalDeviceCommon": { - "description": "A means of collecting together all properties that are commonly used by electrical devices.", "properties": { "ElectricalDeviceNominalPower": { "description": "The output power rating that is certified for a device." @@ -2754,7 +2641,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ElectricalDeviceCommon.xml" }, "Pset_ElementShading": { - "description": "Shading device properties associated with an element that represents a shading device, e.g. an IfcBuildingElementProxy or any other building element.", "properties": { "AverageSolarTransmittance": { "description": "Overall or average ratio of the solar flux transmitted through a body to that incident upon it." @@ -2787,7 +2673,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_ElementShading.xml" }, "Pset_EnergyConsumptionPHistoryElectricity": { - "description": "Measured electrical energy consumption properties.", "properties": { "ApparentPower": { "description": "Apparent power." @@ -2811,7 +2696,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EnergyConsumptionPHistoryElectricity.xml" }, "Pset_EnergyConsumptionPHistoryFuel": { - "description": "Measured fuel energy consumption properties.", "properties": { "Flowrate": { "description": "The flowrate of the fuel." @@ -2826,7 +2710,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EnergyConsumptionPHistoryFuel.xml" }, "Pset_EnergyConsumptionPHistorySteam": { - "description": "Measured steam energy consumption properties.", "properties": { "Flowrate": { "description": "The mass flowrate of the steam." @@ -2844,7 +2727,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EnergyConsumptionPHistorySteam.xml" }, "Pset_EnergyConversionDeviceCoil": { - "description": "Coil occurrence attributes attached to an instance of IfcEnergyConversionDevice.", "properties": { "HasSoundAttentuation": { "description": "TRUE if the coil has sound attenuation, FALSE if it does not." @@ -2853,7 +2735,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_EnergyConversionDeviceCoil.xml" }, "Pset_EnergyConversionDeviceSpaceHeaterPanel": { - "description": "Panel space heater type occurrence attributes.", "properties": { "NumberOfPanels": { "description": "Number of panels." @@ -2862,7 +2743,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_EnergyConversionDeviceSpaceHeaterPanel.xml" }, "Pset_EnergyConversionDeviceSpaceHeaterSectional": { - "description": "Sectional space heater type occurrence attributes.", "properties": { "NumberOfSections": { "description": "Number of vertical sections, measured in the direction of flow." @@ -2871,7 +2751,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_EnergyConversionDeviceSpaceHeaterSectional.xml" }, "Pset_EvaporativeCoolerPHistory": { - "description": "Evaporative cooler performance history attributes.", "properties": { "AirPressureDropCurve": { "description": "Air pressure drop as function of air flow rate." @@ -2901,7 +2780,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EvaporativeCoolerPHistory.xml" }, "Pset_EvaporativeCoolerTypeCommon": { - "description": "Evaporative cooler type common attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. WaterRequirement attribute unit type modified in IFC2x2 Pset Addendum.", "properties": { "FlowArrangement": { "description": "CounterFlow: Air and water flow enter in different directions. CrossFlow: Air and water flow are perpendicular. ParallelFlow: Air and water flow enter in same directions." @@ -2925,7 +2803,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EvaporativeCoolerTypeCommon.xml" }, "Pset_EvaporatorPHistory": { - "description": "Evaporator performance history attributes.", "properties": { "CompressorEvaporatorHeatGain": { "description": "Heat gain between the evaporator outlet and the compressor inlet." @@ -2964,7 +2841,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EvaporatorPHistory.xml" }, "Pset_EvaporatorTypeCommon": { - "description": "Evaporator type common attributes.", "properties": { "EvaporatorCoolant": { "description": "The fluid used for the coolant in the evaporator." @@ -3000,7 +2876,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_EvaporatorTypeCommon.xml" }, "Pset_FanPHistory": { - "description": "Fan performance history attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "DischargePressureLoss": { "description": "Fan discharge pressure loss associated with the discharge arrangement." @@ -3039,7 +2914,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FanPHistory.xml" }, "Pset_FanTypeCommon": { - "description": "Fan type common attributes.", "properties": { "CapacityControlType": { "description": "InletVane: Control by adjusting inlet vane VariableSpeedDrive: Control by variable speed drive BladePitchAngle: Control by adjusting blade pitch angle TwoSpeed: Control by switch between high and low speed DischargeDamper: Control by modulating discharge damper" @@ -3081,7 +2955,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FanTypeCommon.xml" }, "Pset_FanTypeSmokeControl": { - "description": "Smoke control attributes of a fan participating as part of a smoke control system.", "properties": { "MaximumDesignTemperature": { "description": "Maximum design operational temperature." @@ -3096,7 +2969,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FanTypeSmokeControl.xml" }, "Pset_FilterPHistory": { - "description": "Filter performance history attributes.", "properties": { "CountedEfficiency": { "description": "Filter efficiency based the particle counts concentration before and after filter against particles with certain size distribution." @@ -3111,7 +2983,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FilterPHistory.xml" }, "Pset_FilterTypeAirParticleFilter": { - "description": "Air particle filter type attributes.", "properties": { "AirParticleFilterType": { "description": "A panel dry type extended surface filter is a dry-type air filter with random fiber mats or blankets in the forms of pockets, V-shaped or radial pleats, and include the following: CoarseFilter: Filter with a efficiency lower than 30% for atmosphere dust-spot. CoarseMetalScreen: Filter made of metal screen. CoarseCellFoams: Filter made of cell foams. CoarseSpunGlass: Filter made of spun glass. MediumFilter: Filter with an efficiency between 30-98% for atmosphere dust-spot. MediumElectretFilter: Filter with fine electret synthetic fibers. MediumNaturalFiberFilter: Filter with natural fibers. HEPAFilter: High efficiency particulate air filter. ULPAFilter: Ultra low penetration air filter. MembraneFilters: Filter made of membrane for certain pore diameters in flat sheet and pleated form. A renewable media with a moving curtain viscous filter are random-fiber media coated with viscous substance in roll form or curtain where fresh media is fed across the face of the filter and the dirty media is rewound onto a roll at the bottom or to into a reservoir: RollForm: Viscous filter used in roll form. AdhesiveReservoir: Viscous filter used in moving curtain form. A renewable moving curtain dry media filter is a random-fiber dry media of relatively high porosity used in moving-curtain(roll) filters. An electrical filter uses electrostatic precipitation to remove and collect particulate contaminants." @@ -3153,7 +3024,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FilterTypeAirParticleFilter.xml" }, "Pset_FilterTypeCommon": { - "description": "Filter type common attributes.", "properties": { "FinalResistance": { "description": "Filter fluid resistance when replacement is required (i.e., Pressure drop at the maximum air flowrate across the filter when the filter needs replacement per ASHRAE Standard 52.1)." @@ -3195,7 +3065,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FilterTypeCommon.xml" }, "Pset_FireRatingProperties": { - "description": "Properties related to the combustion of materials for purposes of assessing fire hazard.", "properties": { "FireResistanceRating": { "description": "Fire rating identifying the entity's fire resistive value (e.g., 1-hour, 2-hour, etc.) so that its resistance to fire can be compared to that of the surrounding structure." @@ -3210,7 +3079,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FireRatingProperties.xml" }, "Pset_FireSuppressionTerminalTypeBreechingInlet": { - "description": "Symmetrical pipe fitting that unites two or more inlets into a single pipe (BS6100 330 114 adapted).", "properties": { "BreechingInletType": { "description": "Defines the type of breeching inlet." @@ -3234,7 +3102,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_FireSuppressionTerminalTypeBreechingInlet.xml" }, "Pset_FireSuppressionTerminalTypeFireHydrant": { - "description": "Device, fitted to a pipe, through which a temporary supply of water may be provided (BS6100 330 6107)", "properties": { "BodyColor": { "description": "Color of the body of the hydrant." @@ -3270,7 +3137,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_FireSuppressionTerminalTypeFireHydrant.xml" }, "Pset_FireSuppressionTerminalTypeHoseReel": { - "description": "A supporting framework on which a hose may be wound (BS6100 155 8201).", "properties": { "ClassOfService": { "description": "A classification of usage of the hose reel that may be applied." @@ -3300,7 +3166,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_FireSuppressionTerminalTypeHoseReel.xml" }, "Pset_FireSuppressionTerminalTypeSprinkler": { - "description": "Device for sprinkling water from a pipe under pressure over an area (BS6100 100 3432)", "properties": { "Activation": { "description": "Identifies the predefined methods of sprinkler activation from which that required may be set." @@ -3348,7 +3213,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_FireSuppressionTerminalTypeSprinkler.xml" }, "Pset_FlowControllerDamper": { - "description": "Damper occurrence attributes attached to an instance of IfcFlowController.", "properties": { "SizingMethod": { "description": "Identifies whether the damper is sized nominally or with exact measurements: NOMINAL: Nominal sizing method. EXACT: Exact sizing method." @@ -3357,7 +3221,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowControllerDamper.xml" }, "Pset_FlowControllerFlowMeter": { - "description": "Flow meter occurrence common attributes.", "properties": { "Purpose": { "description": "Enumeration defining the purpose of the flow meter occurrence." @@ -3366,7 +3229,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowControllerFlowMeter.xml" }, "Pset_FlowFittingDuctFitting": { - "description": "Duct fitting occurrence attributes attached to an instance of IfcFlowFitting.", "properties": { "AbsoluteRoughnessFactor": { "description": "The absolute roughness factor of the duct fitting." @@ -3381,7 +3243,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowFittingDuctFitting.xml" }, "Pset_FlowFittingPipeFitting": { - "description": "Pipe fitting occurrence attributes attached to an instance of IfcFlowFitting.", "properties": { "Color": { "description": "The color of the pipe fitting." @@ -3393,7 +3254,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowFittingPipeFitting.xml" }, "Pset_FlowInstrumentTypePressureGauge": { - "description": "A device that reads and displays a pressure value at a point or the pressure difference between two points.", "properties": { "DisplaySize": { "description": "The physical size of the display. For a dial pressure gauge it will be the diameter of the dial." @@ -3405,7 +3265,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_FlowInstrumentTypePressureGauge.xml" }, "Pset_FlowInstrumentTypeThermometer": { - "description": "A device that reads and displays a temperature value at a point.", "properties": { "DisplaySize": { "description": "The physical size of the display. In the case of a stem thermometer, this will be the length of the stem. For a dial thermometer, it will be the diameter of the dial." @@ -3417,7 +3276,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_FlowInstrumentTypeThermometer.xml" }, "Pset_FlowMeterTypeCommon": { - "description": "Common attributes of a flow meter type", "properties": { "IsMain": { "description": "Indicates whether the meter is the main meter on the system. If FALSE, it is a submeter." @@ -3432,7 +3290,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FlowMeterTypeCommon.xml" }, "Pset_FlowMeterTypeEnergyMeter": { - "description": "Device that measures, indicates and sometimes records, the energy usage in a system.", "properties": { "ConnectionSize": { "description": "Defines the size of inlet and outlet pipe connections to the meter." @@ -3441,7 +3298,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FlowMeterTypeEnergyMeter.xml" }, "Pset_FlowMeterTypeGasMeter": { - "description": "Device that measures, indicates and sometimes records, the volume of gas that passes through it without interrupting the flow.", "properties": { "ConnectionSize": { "description": "Defines the size of inlet and outlet pipe connections to the meter." @@ -3459,7 +3315,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FlowMeterTypeGasMeter.xml" }, "Pset_FlowMeterTypeOilMeter": { - "description": "Device that measures, indicates and sometimes records, the volume of oil that passes through it without interrupting the flow.", "properties": { "ConnectionSize": { "description": "Defines the size of inlet and outlet pipe connections to the meter." @@ -3471,7 +3326,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FlowMeterTypeOilMeter.xml" }, "Pset_FlowMeterTypeWaterMeter": { - "description": "Device that measures, indicates and sometimes records, the volume of water that passes through it without interrupting the flow.", "properties": { "BackflowPreventerType": { "description": "Identifies the type of backflow preventer installed to prevent the backflow of contaminated or polluted water from an irrigation/reticulation system to a potable water supply." @@ -3492,7 +3346,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_FlowMeterTypeWaterMeter.xml" }, "Pset_FlowMovingDeviceCompressor": { - "description": "Compressor occurrence attributes attached to an instance of IfcFlowMovingDevice.", "properties": { "ImpellerDiameter": { "description": "Diameter of compressor impeller - used to scale performance of geometrically similar compressors." @@ -3501,7 +3354,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowMovingDeviceCompressor.xml" }, "Pset_FlowMovingDeviceFan": { - "description": "Fan occurrence attributes attached to an instance of IfcFlowMovingDevice.", "properties": { "ApplicationOfFan": { "description": "The functional application of the fan: SUPPLYAIR: Supply air fan. RETURNAIR: Return air fan. EXHAUSTAIR: Exhaust air fan. OTHER: Other type of application not defined above." @@ -3528,7 +3380,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowMovingDeviceFan.xml" }, "Pset_FlowMovingDeviceFanCentrifugal": { - "description": "Centrifugal fan occurrence attributes attached to an instance of IfcFlowMovingDevice.", "properties": { "Arrangement": { "description": "Defines the fan and motor drive arrangement as defined by AMCA: ARRANGEMENT1: Arrangement 1. ARRANGEMENT2: Arrangement 2. ARRANGEMENT3: Arrangement 3. ARRANGEMENT4: Arrangement 4. ARRANGEMENT7: Arrangement 7. ARRANGEMENT8: Arrangement 8. ARRANGEMENT9: Arrangement 9. ARRANGEMENT10: Arrangement 10. OTHER: Other type of fan drive arrangement." @@ -3543,7 +3394,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowMovingDeviceFanCentrifugal.xml" }, "Pset_FlowMovingDevicePump": { - "description": "Pump occurrence attributes attached to an instance of IfcFlowMovingDevice.", "properties": { "BaseType": { "description": "Defines general types of pump bases: FRAME: Frame. BASE: Base. NONE: There is no pump base, such as an inline pump. OTHER: Other type of pump base." @@ -3558,7 +3408,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowMovingDevicePump.xml" }, "Pset_FlowSegmentDuctSegment": { - "description": "Duct segment occurrence attributes attached to an instance of IfcFlowSegment.", "properties": { "Color": { "description": "The color of the duct segment." @@ -3579,7 +3428,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowSegmentDuctSegment.xml" }, "Pset_FlowSegmentPipeSegment": { - "description": "Pipe segment occurrence attributes attached to an instance of IfcFlowSegment.", "properties": { "Color": { "description": "The color of the pipe segment." @@ -3600,7 +3448,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowSegmentPipeSegment.xml" }, "Pset_FlowStorageDeviceTank": { - "description": "Properties that relate to an instance of a flow storage device that is typed as a tank. Note that a partial tank may be considered as a compartment within a compartmentalized tank.", "properties": { "HasLadder": { "description": "Indication of whether the tank is provided with a ladder (set TRUE) for access to the top. If no ladder is provided then value is set FALSE." @@ -3615,7 +3462,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowStorageDeviceTank.xml" }, "Pset_FlowTerminalAirTerminal": { - "description": "Air terminal occurrence attributes attached to an instance of IfcFlowTerminal.", "properties": { "AirflowType": { "description": "Enumeration defining the functional type of air flow through the terminal." @@ -3627,7 +3473,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_FlowTerminalAirTerminal.xml" }, "Pset_FurnitureTypeChair": { - "description": "A set of specific properties for furniture type chair.", "properties": { "HighestSeatingHeight": { "description": "The value of seating height of high level if the chair height is adjustable." @@ -3642,7 +3487,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_FurnitureTypeChair.xml" }, "Pset_FurnitureTypeCommon": { - "description": "Common properties for all types of furniture such as chair, desk, table, and file cabinet.", "properties": { "Description": { "description": "Specific description of this type of furniture." @@ -3666,7 +3510,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_FurnitureTypeCommon.xml" }, "Pset_FurnitureTypeDesk": { - "description": "A set of specific properties for furniture type desk.", "properties": { "WorksurfaceArea": { "description": "The value of the work surface area of the desk." @@ -3675,7 +3518,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_FurnitureTypeDesk.xml" }, "Pset_FurnitureTypeFileCabinet": { - "description": "A set of specific properties for furniture type file cabinet", "properties": { "WithLock": { "description": "Indicates whether the file cabinet is lockable (= TRUE) or not (= FALSE)." @@ -3684,7 +3526,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_FurnitureTypeFileCabinet.xml" }, "Pset_FurnitureTypeTable": { - "description": "A set of specific properties for furniture type table.", "properties": { "NumberOfChairs": { "description": "Maximum number of chairs that can fit with the table for normal use." @@ -3696,7 +3537,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_FurnitureTypeTable.xml" }, "Pset_GasTerminalPHistory": { - "description": "Gas terminal performance history common attributes.", "properties": { "GasFlowRate": { "description": "The volumetric flowrate of gas to the gas terminal." @@ -3705,7 +3545,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_GasTerminalPHistory.xml" }, "Pset_GasTerminalTypeCommon": { - "description": "Common attributes of gas terminal types. GasProperties attribute deleted in IFC2x2 Pset Addendum: Use IfcFuelProperties instead.", "properties": { "GasFlowRateRange": { "description": "Gas volumetric flowrate within which the gas terminal is designed to operate." @@ -3714,7 +3553,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_GasTerminalTypeCommon.xml" }, "Pset_GasTerminalTypeGasAppliance": { - "description": "Piece of equipment for occupants use that is connected to a gas installation (definition is a modification from that found in BS6100).", "properties": { "FlueType": { "description": "Defines the types of flue that may be specified for connection to gas appliances where:" @@ -3726,7 +3564,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_GasTerminalTypeGasAppliance.xml" }, "Pset_GasTerminalTypeGasBurner": { - "description": "A complete unit on which or in which a flame is maintained through the provision of a gas supply.", "properties": { "GasBurnerType": { "description": "Selection of the type of gas burner from the enumerated list of types" @@ -3735,7 +3572,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_GasTerminalTypeGasBurner.xml" }, "Pset_HeatExchangerTypeCommon": { - "description": "Heat exchanger type common attributes.", "properties": { "Arrangement": { "description": "Defines the basic flow arrangements for the heat exchanger: COUNTERFLOW: Counterflow heat exchanger arrangement. CROSSFLOW: Crossflow heat exchanger arrangement. PARALLELFLOW: Parallel flow heat exchanger arrangement. MULTIPASS: Multipass flow heat exchanger arrangement. OTHER: Other type of heat exchanger flow arrangement not defined above." @@ -3747,7 +3583,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_HeatExchangerTypeCommon.xml" }, "Pset_HeatExchangerTypePlate": { - "description": "Plate heat exchanger type common attributes.", "properties": { "NumberOfPlates": { "description": "Number of plates used by the plate heat exchanger." @@ -3756,7 +3591,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_HeatExchangerTypePlate.xml" }, "Pset_HumidifierPHistory": { - "description": "Humidifier performance history attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirPressureDropCurve": { "description": "Air pressure drop versus air-flow rate." @@ -3774,7 +3608,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_HumidifierPHistory.xml" }, "Pset_HumidifierTypeCommon": { - "description": "Humidifier type common attributes. WaterProperties attribute renamed to WaterRequirement and unit type modified in IFC2x2 Pset Addendum.", "properties": { "Application": { "description": "Humidifier application. Fixed: Humidifier installed in a ducted flow distribution system. Portable: Humidifier is not installed in a ducted flow distribution system." @@ -3798,7 +3631,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_HumidifierTypeCommon.xml" }, "Pset_LampTypeCommon": { - "description": "A lamp is a component within a light fixture that is designed to emit light.", "properties": { "ColorAppearance": { "description": "In both the DIN and CIE standards, artificial light sources are classified in terms of their color appearance. To the human eye they all appear to be white; the difference can only be detected by direct comparison. Visual performance is not directly affected by differences in color appearance." @@ -3831,7 +3663,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_LampTypeCommon.xml" }, "Pset_LightFixtureTypeCommon": { - "description": "Common data for light fixtures.", "properties": { "ArticleNumber": { "description": "The article number." @@ -3858,7 +3689,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_LightFixtureTypeCommon.xml" }, "Pset_LightFixtureTypeExitSign": { - "description": "Properties that characterize an illuminated exit sign", "properties": { "Addressablility": { "description": "The type of addressability." @@ -3879,7 +3709,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_LightFixtureTypeExitSign.xml" }, "Pset_LightFixtureTypeThermal": { - "description": "Heat load data for a light fixture.", "properties": { "MaximumPlenumSensibleLoad": { "description": "Maximum or Peak sensible thermal load contributed to the conditioned space by the light fixture." @@ -3894,7 +3723,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_LightFixtureTypeThermal.xml" }, "Pset_ManufacturerOccurrence": { - "description": "Defines properties of individual instances of manufactured products that may be given by the manufacturer.", "properties": { "AcquisitionDate": { "description": "The date that the manufactured item was purchased." @@ -3912,7 +3740,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_ManufacturerOccurrence.xml" }, "Pset_ManufacturerTypeInformation": { - "description": "Defines characteristics of manufactured products that may be given by the manufacturer. Note that the term 'manufactured' may also be used to refer to products that are supplied and identified by the supplier or that are assembled off site by a third party provider. This property set replaces the entity IfcManufacturerInformation from previous IFC releases.", "properties": { "ArticleNumber": { "description": "Article number or reference that may be applied to a product according to a standard scheme for article number definition (e.g. UN, EAN)" @@ -3933,7 +3760,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_ManufacturerTypeInformation.xml" }, "Pset_MemberCommon": { - "description": "Properties common to the definition of all occurrences of IfcMember.", "properties": { "FireRating": { "description": "Fire rating for this object. It is given according to the national fire safety classification." @@ -3957,7 +3783,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_MemberCommon.xml" }, "Pset_MultiStateInput": { - "description": "Defines the characteristics of a multi-state input.", "properties": { "AlarmValues": { "description": "Specifies any states the present value must equal before an EventEnable shall occur. Upper limit of the list is equal to the NumberOfStates." @@ -3978,7 +3803,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_MultiStateInput.xml" }, "Pset_MultiStateOutput": { - "description": "Defines the characteristics of a multi-state output.", "properties": { "AlarmValues": { "description": "Specifies any states the present value must equal before an EventEnable shall occur. Upper limit of the list is equal to the NumberOfStates." @@ -3999,7 +3823,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_MultiStateOutput.xml" }, "Pset_OpeningElementCommon": { - "description": "Properties common to the definition of all instances of IfcOpeningElement.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes." @@ -4020,7 +3843,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_OpeningElementCommon.xml" }, "Pset_OutletTypeCommon": { - "description": "Common properties for different outlet types.", "properties": { "IsPluggableOutlet": { "description": "Indication of whether the outlet accepts a loose plug connection (= TRUE) or whether it is directly connected (= FALSE) or whether the form of connection has not yet been determined (= UNKNOWN)" @@ -4029,7 +3851,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_OutletTypeCommon.xml" }, "Pset_OutsideDesignCriteria": { - "description": "Outside air conditions used as the basis for calculating thermal loads at peak conditions, as well as the weather data location from which these conditions were obtained.", "properties": { "BuildingThermalExposure": { "description": "The thermal exposure expected by the building based on surrounding site conditions." @@ -4068,7 +3889,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_OutsideDesignCriteria.xml" }, "Pset_PackingInstructions": { - "description": "Packing instructions are specific instructions relating to the packing that is required for an artefact (instance of IfcProduct) in the event of a move (where the product is related to an instance of IfcMove).", "properties": { "ContainerMaterial": { "description": "Special requirements for material used to contain an artefact." @@ -4086,7 +3906,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcFacilitiesMgmtDomain/Pset_PackingInstructions.xml" }, "Pset_Permit": { - "description": "A permit is a document that allows permission to gain access to an area or carry out work in a situation where security or other access restrictions apply.", "properties": { "EndTime": { "description": "End time." @@ -4113,7 +3932,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcFacilitiesMgmtDomain/Pset_Permit.xml" }, "Pset_PipeConnection": { - "description": "This property set is used to define the various types of pipe connections. It is applied to occurrences of pipe segments and fittings.", "properties": { "ConnectionType": { "description": "The connection type between pipe segments or fittings and other segments or fittings. If the list contains only one value, then this connection type value applies to all ports. For more than one value in the list, the connection type value applies to the port that corresponds to the list index.The following suggested items should be utilized whenever possible for correlation with port enumerations: BRAZED: Brazed connection type. COMPRESSION: Compression connection type. FLANGED: Flanged connection type including bolts and gasket. GLANDJOINT: Gland-joint connection type. FLEXIBLEBOLTEDGLANDJOINT: Flexible bolted gland-joint connection type. FLEXIBLEBOLTEDGLANDJOINTWITHANODEENDCAP: Flexible bolted gland-joint with anode end-cap connection type. GROOVED: Grooved connection type. SOLDERED: Soldered connection type. SOLDERED_FEMALE: Female-soldered connection type. SOLDERED_MALE: Male-soldered connection type. SWEDGE: Swedge connection type. THREADED: Threaded connection type. THREADED_FEMALE: Female-threaded connection type. THREADED_MALE: Male-threaded connection type. WELDED: Welded connection type. WELDED_BUTT: Butt-welded connection type. WELDED_BRANCH: Branch-welded connection type. WELDED_FLANGE: Flange-welded connection type. NONE: There is no connection. NOTDEFINED: Undefined connection type." @@ -4122,7 +3940,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeConnection.xml" }, "Pset_PipeConnectionFlanged": { - "description": "This property set is used to define the specifics of a flanged pipe connection used between occurrences of pipe segments and fittings.", "properties": { "BoltSize": { "description": "Size of the bolts securing the flange" @@ -4155,7 +3972,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeConnectionFlanged.xml" }, "Pset_PipeFittingPHistory": { - "description": "Pipe fitting performance history common attributes.", "properties": { "FlowrateLeakage": { "description": "Leakage flowrate versus pressure difference." @@ -4167,7 +3983,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeFittingPHistory.xml" }, "Pset_PipeFittingTypeCommon": { - "description": "Pipe fitting type common attributes.", "properties": { "EndStyleTreatment": { "description": "The end-style treatment of the pipe fitting as made available from the manufacturer. If the list contains only one value, then this end-style applies to all ports. For more than one value in the list, the end-style value applies to the port that corresponds to the list index.The following suggested items should be utilized whenever possible for correlation with port enumerations: FLANGED: Flanged. GROOVED: Grooved. THREADED: Threaded. NONE: No end-style has been applied. NOTDEFINED: Undefined end-style type." @@ -4206,7 +4021,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeFittingTypeCommon.xml" }, "Pset_PipeSegmentPHistory": { - "description": "Pipe segment performance history common attributes.", "properties": { "FluidFlowLeakage": { "description": "Volumetric leakage flow rate." @@ -4218,7 +4032,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeSegmentPHistory.xml" }, "Pset_PipeSegmentTypeCommon": { - "description": "Pipe segment type common attributes.", "properties": { "EndStyleTreatment": { "description": "The end-style treatment of the pipe segment as made available from the manufacturer. If the list contains only one value, then this end-style applies to all ports. For more than one value in the list, the end-style value applies to the port that corresponds to the list index.The following suggested items should be utilized whenever possible for correlation with port enumerations: FLANGED: Flanged. GROOVED: Grooved. THREADED: Threaded. NONE: No end-style has been applied. NOTDEFINED: Undefined end-style type." @@ -4251,7 +4064,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeSegmentTypeCommon.xml" }, "Pset_PipeSegmentTypeGutter": { - "description": "Gutter segment type common attributes.", "properties": { "FlowRating": { "description": "Actual flow capacity for the gutter. Value of 0.00 means this value has not been set." @@ -4263,7 +4075,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PipeSegmentTypeGutter.xml" }, "Pset_PlateCommon": { - "description": "Properties common to the definition of all occurrences of IfcPlate.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -4287,7 +4098,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_PlateCommon.xml" }, "Pset_ProductRequirements": { - "description": "Categorization of the required properties of an entity that are used to determine what the level of the requirement is, to enable its performance/quality to be determined, assessed, or measured, and compared against the requirement, and then to analyze whether the entity is suitable for use within a given context..", "properties": { "Category": { "description": "A reference to a classification of the degree of aggregation or granularity of topic data such as regional, local etc." @@ -4323,7 +4133,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcKernel/Pset_ProductRequirements.xml" }, "Pset_ProjectCommon": { - "description": "Common properties for a building project.", "properties": { "BuildingPermitId": { "description": "The building permit identifier for the written authorization required by building authorities before construction on a specific project can begin." @@ -4338,7 +4147,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcKernel/Pset_ProjectCommon.xml" }, "Pset_ProjectOrderChangeOrder": { - "description": "A change order is an instruction to make a change to a product or work being undertake. Note that the change order status is defined in the same way as a work order status since a change order implies a work requirement.", "properties": { "BudgetSource": { "description": "The budget source requested." @@ -4353,7 +4161,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedMgmtElements/Pset_ProjectOrderChangeOrder.xml" }, "Pset_ProjectOrderMaintenanceWorkOrder": { - "description": "A MaintenanceWorkOrder is a detailed description of maintenance work that is to be performed. Note that the Scheduled Frequency property of the maintenance work order is used when the order is required as an instance of a scheduled work order.", "properties": { "ContractualType": { "description": "The contractual type of the work." @@ -4389,7 +4196,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedMgmtElements/Pset_ProjectOrderMaintenanceWorkOrder.xml" }, "Pset_ProjectOrderMoveOrder": { - "description": "Defines the requirements for move orders. Note that the move order status is defined in the same way as a work order status since a move order implies a work requirement.", "properties": { "MoveDescription": { "description": "A textual description of the move required." @@ -4401,7 +4207,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedMgmtElements/Pset_ProjectOrderMoveOrder.xml" }, "Pset_ProjectOrderPurchaseOrder": { - "description": "Defines the requirements for purchase orders in a project.", "properties": { "IsFOB": { "description": "Indication of whether contents of the purchase order are delivered 'Free on Board' (= True) or not (= False)." @@ -4413,7 +4218,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedMgmtElements/Pset_ProjectOrderPurchaseOrder.xml" }, "Pset_ProjectOrderWorkOrder": { - "description": "Defines the requirements for purchase orders in a project.", "properties": { "ContractualType": { "description": "The contractual type of the work." @@ -4437,7 +4241,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedMgmtElements/Pset_ProjectOrderWorkOrder.xml" }, "Pset_ProjectionElementShadingDevicePHistory": { - "description": "Shading device performance history attributes.", "properties": { "Azimuth": { "description": "The azimuth of the outward normal for the outward or upward facing surface." @@ -4449,7 +4252,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ProjectionElementShadingDevicePHistory.xml" }, "Pset_PropertyAgreement": { - "description": "A property agreement is an agreement that enables the occupation of a property for a period of time.", "properties": { "AgreementType": { "description": "Identifies the predefined types of property agreement from which the type required may be set." @@ -4491,7 +4293,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_PropertyAgreement.xml" }, "Pset_ProtectiveDeviceTypeCircuitBreaker": { - "description": "Definition from IEC 441-14-20: A circuit breaker is a mechanical switching device capable of making, carrying, and breaking currents under normal circuit conditions and also making, carrying for a specified time and breaking, current under specified abnormal circuit conditions such as those of short circuit.", "properties": { "CircuitBreakerType": { "description": "A list of the available types of circuit breaker from which that required may be selected where:" @@ -4500,7 +4301,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeCircuitBreaker.xml" }, "Pset_ProtectiveDeviceTypeCommon": { - "description": "Common properties for different protective device types.", "properties": { "CharacteristicTripCurve": { "description": "A curve giving the time, e.g. prearcing time or operating time, as a function of the protective current under stated conditions of operation." @@ -4530,7 +4330,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeCommon.xml" }, "Pset_ProtectiveDeviceTypeEarthFailureDevice": { - "description": "An earth failure device acts to protect people and equipment from the effects of current leakage.", "properties": { "EarthFailureDeviceType": { "description": "A list of the available types of circuit breaker from which that required may be selected where:" @@ -4542,7 +4341,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeEarthFailureDevice.xml" }, "Pset_ProtectiveDeviceTypeFuseDisconnector": { - "description": "A device that will electrically open the circuit after a period of prolonged, abnormal current flow.", "properties": { "FuseDisconnectorType": { "description": "A list of the available types of fuse disconnector from which that required may be selected where:" @@ -4551,7 +4349,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeFuseDisconnector.xml" }, "Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker": { - "description": "A residual current circuit breaker opens, closes or isolates a circuit and has short circuit and overload protection.", "properties": { "Sensitivity": { "description": "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)" @@ -4560,7 +4357,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker.xml" }, "Pset_ProtectiveDeviceTypeResidualCurrentSwitch": { - "description": "A residual current switch opens, closes or isolates a circuit and has no short circuit or overload protection.", "properties": { "Sensitivity": { "description": "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)" @@ -4569,7 +4365,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeResidualCurrentSwitch.xml" }, "Pset_ProtectiveDeviceTypeVaristor": { - "description": "A high voltage surge protection device.", "properties": { "VaristorType": { "description": "A list of the available types of varistor from which that required may be selected." @@ -4578,7 +4373,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_ProtectiveDeviceTypeVaristor.xml" }, "Pset_PumpPHistory": { - "description": "Pump performance history attributes.", "properties": { "Flowrate": { "description": "The actual operational fluid flowrate." @@ -4602,7 +4396,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PumpPHistory.xml" }, "Pset_PumpTypeCommon": { - "description": "Common attributes of a pump type.", "properties": { "CasingMaterial": { "description": "Material from which the casing of the pump is constructed" @@ -4635,7 +4428,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_PumpTypeCommon.xml" }, "Pset_QuantityTakeOff": { - "description": "Description of quantities for work items to be exchanged in addition to the IfcElementQuantity", "properties": { "LayerQuantity": { "children": { @@ -4658,7 +4450,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_QuantityTakeOff.xml" }, "Pset_RailingCommon": { - "description": "Properties common to the definition of all occurrences of IfcRailing.", "properties": { "Diameter": { "description": "Diameter of the object. It is the diameter of the handrail of the railing. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence. Here the diameter of the hand or guardrail within the railing." @@ -4676,7 +4467,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_RailingCommon.xml" }, "Pset_RampCommon": { - "description": "Properties common to the definition of all occurrences of IfcRamp.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit ramp in accordance to the national building code." @@ -4706,7 +4496,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_RampCommon.xml" }, "Pset_RampFlightCommon": { - "description": "Properties common to the definition of all occurrences of IfcRampFlight.", "properties": { "Headroom": { "description": "Actual headroom clearance for the passageway according to the current design. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." @@ -4721,7 +4510,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_RampFlightCommon.xml" }, "Pset_ReinforcementBarCountOfIndependentFooting": { - "description": "Reinforcement Concrete parameter [ST-2]: The amount number information of reinforcement bar with the independent footing. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -4745,7 +4533,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcementBarCountOfIndependentFooting.xml" }, "Pset_ReinforcementBarPitchOfBeam": { - "description": "The ptich length information of reinforcement bar with the beam.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -4763,7 +4550,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcementBarPitchOfBeam.xml" }, "Pset_ReinforcementBarPitchOfColumn": { - "description": "The pitch length information of reinforcement bar with the column. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -4793,7 +4579,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcementBarPitchOfColumn.xml" }, "Pset_ReinforcementBarPitchOfContinuousFooting": { - "description": "Reinforcement Concrete parameter [ST-2]: The pitch length information of reinforcement bar with the continuous footing.", "properties": { "CrossingLowerBarPitch": { "description": "The pitch length of the crossing lower bar." @@ -4811,7 +4596,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcementBarPitchOfContinuousFooting.xml" }, "Pset_ReinforcementBarPitchOfSlab": { - "description": "The pitch length information of reinforcement bar with the slab.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -4859,7 +4643,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcementBarPitchOfSlab.xml" }, "Pset_ReinforcementBarPitchOfWall": { - "description": "The pitch length information of reinforcement bar with the wall.", "properties": { "BarAllocationType": { "description": "Defines the type of the reinforcement bar allocation." @@ -4883,7 +4666,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcementBarPitchOfWall.xml" }, "Pset_ReinforcingBarBendingsBECCommon": { - "description": "Properties expressing the bending information of non-prestressed reinforcing bars. The properties in this Pset are defined according to the local Finnish BEC standard with minor adjustements (only bar bending information is included). The bending shape property definitions apply to both reinforcing bars (IfcReinforcingBar) and reinforcing meshes (IfcReinforcingMesh). It is presumed that a single standard for defining the bar bending is used throughout the project and that this standard is referenced from the IfcProject object through the IfcDocumentReference mechanism.", "properties": { "BECBarShapeCode": { "description": "The bending type code for the specific bending shape as defined in the BEC standard. Note: depending on the standardized shape different combinations of following parameters a...e (f...l), TD, u, v, u1, v1, aid_x, and aid_y are used." @@ -4952,7 +4734,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcingBarBendingsBECCommon.xml" }, "Pset_ReinforcingBarBendingsBS8666Common": { - "description": "Properties expressing the bending information of non-prestressed reinforcing bars. The properties in this Pset are largely defined according to BS8666. It is presumed that a single standard for defining the bar bending is used throughout the project and that this standard is referenced from the IfcProject object through the IfcDocumentReference mechanism.", "properties": { "BS8666ShapeCode": { "description": "The bending type code for the specific bending shape as defined in the BS8666 standard. Note: depending on the standardized shape different combinations of following parameters A...E and r are used." @@ -4979,7 +4760,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcingBarBendingsBS8666Common.xml" }, "Pset_ReinforcingBarBendingsDIN135610Common": { - "description": "Properties expressing the bending information of non-prestressed reinforcing bars. The properties in this Pset are largely defined according to DIN 1356 Teil 10 with some minor omissions: the shape type X2 is not considered since it is better represented by the explicit shape geometry. It is presumed that a single standard for defining the bar bending is used throughout the project and that this standard is referenced from the IfcProject object through the IfcDocumentReference mechanism. Note: This bending standard is presumably to be replaced by the upcoming ISO 3766 standard.", "properties": { "DIN135610ShapeCode": { "description": "The bending type code for the specific bending shape as defined in the DIN 1356 Teil 10 standard. Note: depending on the standardized shape different combinations of following parameters a...z are used." @@ -5006,7 +4786,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcingBarBendingsDIN135610Common.xml" }, "Pset_ReinforcingBarBendingsISOCD3766Common": { - "description": "Properties expressing the bending information of non-prestressed reinforcing bars. The properties in this Pset are largely defined according to ISO/CD 3766 with some minor changes in how the hooks are defined (explicit angle measures instead of coded parameters). It is presumed that a single standard for defining the bar bending is used throughout the project and that this standard is referenced from the IfcProject object through the IfcDocumentReference mechanism. Note: This standard is still under development and the Pset will be changed accordingly if so required.", "properties": { "ISOCD3766BendingEndHook": { "description": "The angle of the hook at end of the bar. If the property is not included the bar has no end hook. Note: this differs from how ISO/CD 3766 handles end hooks." @@ -5039,7 +4818,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcStructuralElementsDomain/Pset_ReinforcingBarBendingsISOCD3766Common.xml" }, "Pset_Reliability": { - "description": "Indication of the expected reliability of a product", "properties": { "MeanTimeBetweenFailure": { "description": "The average time duration between instances of failure of a product." @@ -5048,7 +4826,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_Reliability.xml" }, "Pset_Risk": { - "description": "An indication of exposure to mischance, peril, menace, hazard or loss.", "properties": { "AffectsSurroundings": { "description": "Indicates wether the risk affects only to the person assigned to that task (FALSE) or if it can also affect to the people in the surroundings (TRUE)." @@ -5087,7 +4864,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_Risk.xml" }, "Pset_RoofCommon": { - "description": "Properties common to the definition of all occurrences of IfcRoof. Note: Properties for ProjectedArea and TotalArea added in IFC 2x3", "properties": { "FireRating": { "description": "Fire rating for this object. It is given according to the national fire safety classification." @@ -5108,7 +4884,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_RoofCommon.xml" }, "Pset_SanitaryTerminalTypeBath": { - "description": "Sanitary appliance for immersion of the human body or parts of it (BS6100).", "properties": { "BathType": { "description": "The property enumeration defines the types of bath that may be specified within the property set where:" @@ -5141,7 +4916,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeBath.xml" }, "Pset_SanitaryTerminalTypeBidet": { - "description": "Waste water appliance for washing the excretory organs while sitting astride the bowl (BS6100)", "properties": { "BidetMounting": { "description": "The property enumeration Pset_SanitaryMountingEnum defines the forms of mounting or fixing of the sanitary terminal that may be specified within property sets used to define sanitary terminals (WC\u2019s, basins, sinks, etc.) where:-" @@ -5171,7 +4945,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeBidet.xml" }, "Pset_SanitaryTerminalTypeCistern": { - "description": "A water storage unit attached to a sanitary terminal that is fitted with a device, operated automatically or by the user, that discharges water to cleanse a water closet (toilet) pan, urinal or slop hopper. (BS6100 330 5008)", "properties": { "CisternCapacity": { "description": "Volumetric capacity of the cistern" @@ -5201,7 +4974,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeCistern.xml" }, "Pset_SanitaryTerminalTypeSanitaryFountain": { - "description": "A sanitary terminal that provides a low pressure jet of water for a specific purpose (IAI).", "properties": { "Color": { "description": "Color selection for this object" @@ -5231,7 +5003,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeSanitaryFountain.xml" }, "Pset_SanitaryTerminalTypeShower": { - "description": "Installation or waste water appliance that emits a spray of water to wash the human body (BS6100).", "properties": { "Color": { "description": "Color selection for this object" @@ -5267,7 +5038,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeShower.xml" }, "Pset_SanitaryTerminalTypeSink": { - "description": "Waste water appliance for receiving, retaining or disposing of domestic, culinary, laboratory or industrial process liquids.", "properties": { "Color": { "description": "Color selection for this object" @@ -5297,7 +5067,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeSink.xml" }, "Pset_SanitaryTerminalTypeToiletPan": { - "description": "Soil appliance for the disposal of excrement.", "properties": { "NominalDepth": { "description": "Nominal or quoted depth of the object." @@ -5330,7 +5099,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeToiletPan.xml" }, "Pset_SanitaryTerminalTypeUrinal": { - "description": "Soil appliance that receives urine and directs it to a waste outlet (BS6100)", "properties": { "NominalDepth": { "description": "Nominal or quoted depth of the object." @@ -5357,7 +5125,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeUrinal.xml" }, "Pset_SanitaryTerminalTypeWCSeat": { - "description": "Hinged seat that fits on the top of a water closet (WC) pan. (BS6100 330 1401)", "properties": { "SeatColor": { "description": "Color of the object" @@ -5375,7 +5142,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeWCSeat.xml" }, "Pset_SanitaryTerminalTypeWashHandBasin": { - "description": "Waste water appliance for washing the upper parts of the body.", "properties": { "Color": { "description": "Color of the object" @@ -5405,7 +5171,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_SanitaryTerminalTypeWashHandBasin.xml" }, "Pset_SensorTypeCO2Sensor": { - "description": "A device that senses or detects carbon dioxide.", "properties": { "AccuracyOfCO2Sensor": { "description": "The accuracy of the sensor" @@ -5426,7 +5191,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeCO2Sensor.xml" }, "Pset_SensorTypeFireSensor": { - "description": "A device that senses or detects the presence of fire.", "properties": { "AccuracyOfFireSensor": { "description": "The accuracy of the sensor" @@ -5441,7 +5205,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeFireSensor.xml" }, "Pset_SensorTypeGasSensor": { - "description": "A device that senses or detects gas.", "properties": { "AccuracyOfGasSensor": { "description": "The accuracy of the sensor" @@ -5462,7 +5225,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeGasSensor.xml" }, "Pset_SensorTypeHeatSensor": { - "description": "A device that senses or detects heat.", "properties": { "CoverageArea": { "description": "The area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)" @@ -5483,7 +5245,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeHeatSensor.xml" }, "Pset_SensorTypeHumiditySensor": { - "description": "A device that senses or detects humidity.", "properties": { "AccuracyOfHumiditySensor": { "description": "The accuracy of the sensor" @@ -5501,7 +5262,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeHumiditySensor.xml" }, "Pset_SensorTypeLightSensor": { - "description": "A device that senses or detects light.", "properties": { "LightSensorAccuracy": { "description": "The accuracy of the sensor." @@ -5519,7 +5279,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeLightSensor.xml" }, "Pset_SensorTypeMovementSensor": { - "description": "A device that senses or detects movement.", "properties": { "MovementSensingType": { "description": "Enumeration that identifies the type of movement sensing mechanism." @@ -5531,7 +5290,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeMovementSensor.xml" }, "Pset_SensorTypePressureSensor": { - "description": "A device that senses or detects pressure.", "properties": { "AccuracyOfPressureSensor": { "description": "The accuracy of the sensor" @@ -5552,7 +5310,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypePressureSensor.xml" }, "Pset_SensorTypeSmokeSensor": { - "description": "A device that senses or detects smoke.", "properties": { "AccuracyOfSmokeSensor": { "description": "The accuracy of the sensor" @@ -5576,7 +5333,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeSmokeSensor.xml" }, "Pset_SensorTypeSoundSensor": { - "description": "A device that senses or detects sound.", "properties": { "SoundSensorAccuracy": { "description": "The accuracy of the sensor." @@ -5594,7 +5350,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeSoundSensor.xml" }, "Pset_SensorTypeTemperatureSensor": { - "description": "A device that senses or detects temperature.", "properties": { "AccuracyOfTemperatureSensor": { "description": "The accuracy of the sensor" @@ -5615,7 +5370,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcBuildingControlsDomain/Pset_SensorTypeTemperatureSensor.xml" }, "Pset_SiteCommon": { - "description": "Properties common to the definition of all occurrences of IfcSite. Please note that several site attributes are handled directly at the IfcSite instance, the site number (or short name) by IfcSite.Name, the site name (or long name) by IfcSite.LongName, and the description (or comments) by IfcSite.Description. The land title number is also given as an explicit attribute IfcSite.LandTitleNumber. Actual site quantities, like site perimeter, site area and site volume are provided by IfcElementQuantities, and site classification according to national building code by IfcClassificationReference. The global positioning of the site in terms of Northing and Easting and height above sea level datum is given by IfcSite.RefLongitude, IfcSite.RefLatitude, IfcSite.RefElevation and the postal address by IfcSite.SiteAddress.", "properties": { "BuildableArea": { "description": "The area of utilization expressed as a minimum value and a maximum value - according to local building codes." @@ -5630,7 +5384,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SiteCommon.xml" }, "Pset_SlabCommon": { - "description": "Properties common to the definition of all occurrences of IfcSlab. Note: Properties for PitchAngle added in IFC 2x3", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values" @@ -5666,7 +5419,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_SlabCommon.xml" }, "Pset_SpaceCommon": { - "description": "Properties common to the definition of all occurrences of IfcSpace. Please note that several space attributes are handled directly at the IfcSpace instance, the space number (or short name) by IfcSpace.Name, the space name (or long name) by IfcSpace:LongName, and the description (or comments) by IfcSpace.Description. Actual space quantities, like space perimeter, space area and space volume are provided by IfcElementQuantities, and space classification according to national building code by IfcClassificationReference. The level above zero (relative to the building) for the slab row construction is provided by the IfcBuildingStorey.Elevation, the level above zero (relative to the building) for the floor finish is provided by the IfcSpace.ElevationWithFlooring.", "properties": { "Category": { "description": "Category of space usage or utilization of the area. It is defined according to the presiding national building code." @@ -5706,7 +5458,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceCommon.xml" }, "Pset_SpaceFireSafetyRequirements": { - "description": "Properties related to fire protection of spaces that apply to the occurrences of IfcSpace or IfcZone.", "properties": { "AirPressurization": { "description": "Indication whether the space is required to have pressurized air (TRUE) or not (FALSE)." @@ -5739,7 +5490,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceFireSafetyRequirements.xml" }, "Pset_SpaceHeaterPHistoryCommon": { - "description": "Space heater performance history common attributes.", "properties": { "AirResistanceCurve": { "description": "Air resistance curve (w/ fan only); Pressure = f ( flow rate)." @@ -5781,7 +5531,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_SpaceHeaterPHistoryCommon.xml" }, "Pset_SpaceHeaterTypeCommon": { - "description": "Space heater type common attributes. SoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "BodyMass": { "description": "Overall body mass of the heater." @@ -5808,7 +5557,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_SpaceHeaterTypeCommon.xml" }, "Pset_SpaceHeaterTypeHydronic": { - "description": "Hydronic space heater type common attributes. WaterProperties attribute deleted in IFC2x2 Pset Addendum: Use IfcWaterProperties instead.", "properties": { "TubingLength": { "description": "Water tube length inside the component." @@ -5820,7 +5568,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_SpaceHeaterTypeHydronic.xml" }, "Pset_SpaceLightingRequirements": { - "description": "Properties related to the lighting requirements that apply to the occurrences of IfcSpace or IfcZone. This includes the required artificial lighting, illuminance, etc.", "properties": { "ArtificialLighting": { "description": "Indication whether this space requires artificial lighting (as natural lighting would be not sufficient). (TRUE) indicates yes (FALSE) otherwise." @@ -5832,7 +5579,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceLightingRequirements.xml" }, "Pset_SpaceOccupancyRequirements": { - "description": "Properties concerning work activities occurring or expected to occur within one or a set of similar spatial structure elements.", "properties": { "AreaPerOccupant": { "description": "Design occupancy loading for this type of usage assigned to this space." @@ -5859,7 +5605,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceOccupancyRequirements.xml" }, "Pset_SpaceParking": { - "description": "Properties common to the definition of all occurrences of IfcSpace which have an attribute value for ObjectType = 'Parking'. NOTE: Modified in IFC 2x3, properties ParkingUse and ParkingUnits added.", "properties": { "HandicapAccessible": { "description": "Indication that this object is designed to be accessible by the handicapped. It is giving according to the requirements of the national building code." @@ -5874,7 +5619,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceParking.xml" }, "Pset_SpaceParkingAisle": { - "description": "Properties common to the definition of all occurrences of IfcSpace which have an attribute value for ObjectType = 'ParkingAisle'.", "properties": { "IsOneWay": { "description": "Indicates whether the parking aisle is designed for oneway traffic (TRUE) or twoway traffic (FALSE)." @@ -5883,7 +5627,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceParkingAisle.xml" }, "Pset_SpaceProgramCommon": { - "description": "Properties common to the definition of all instances of IfcSpaceProgram", "properties": { "EmployeeType": { "description": "General description of the employee type that will occupy the space (e.g. manager, programmer, secretary, etc.). The type classification depends on the company based terms for employee types." @@ -5916,7 +5659,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcArchitectureDomain/Pset_SpaceProgramCommon.xml" }, "Pset_SpaceThermalDesign": { - "description": "Space or zone HVAC design requirements.", "properties": { "BoundaryAreaHeatLoss": { "description": "Heat loss per unit area for the boundary object. This is a design input value for use in the absence of calculated load data." @@ -5961,7 +5703,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_SpaceThermalDesign.xml" }, "Pset_SpaceThermalPHistory": { - "description": "Thermal and air flow conditions of a space or zone.", "properties": { "CoolingAirFlowRate": { "description": "Cooling air flow rate in the space." @@ -5985,7 +5726,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_SpaceThermalPHistory.xml" }, "Pset_SpaceThermalRequirements": { - "description": "Properties related to the comfort requirements for thermal and other thermal related performances of spaces that apply to the occurrences of IfcSpace or IfcZone. This includes the required design temperature, humidity, and air conditioning.", "properties": { "AirConditioning": { "description": "Indication whether this space requires air conditioning provided (TRUE) or not (FALSE)." @@ -6036,7 +5776,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_SpaceThermalRequirements.xml" }, "Pset_StairCommon": { - "description": "Properties common to the definition of all occurrences of IfcStair.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit stair in accordance to the national building code." @@ -6075,7 +5814,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_StairCommon.xml" }, "Pset_StairFlightCommon": { - "description": "Properties common to the definition of all occurrences of IfcStairFlight.", "properties": { "Headroom": { "description": "Actual headroom clearance for the passageway according to the current design. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." @@ -6114,7 +5852,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_StairFlightCommon.xml" }, "Pset_SwitchingDeviceTypeCommon": { - "description": "Definition from IEC 441-14-01: A switching device is a device designed to make or break the current in one or more electric circuits.", "properties": { "HasLock": { "description": "Indication of whether a switching device has a key operated lock (=TRUE) or not (= FALSE)" @@ -6129,7 +5866,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_SwitchingDeviceTypeCommon.xml" }, "Pset_SwitchingDeviceTypeContactor": { - "description": "An electrical device used to control the flow of power in a circuit on or off.", "properties": { "ContactorType": { "description": "A list of the available types of contactor from which that required may be selected where:" @@ -6138,7 +5874,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_SwitchingDeviceTypeContactor.xml" }, "Pset_SwitchingDeviceTypeEmergencyStop": { - "description": "Definition from IEC 826-08-03: An emergency stop device acts to remove as quickly as possible any danger that may have arisen unexpectedly.", "properties": { "SwitchOperation": { "description": "Indicates operation of emergency stop switch." @@ -6147,7 +5882,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_SwitchingDeviceTypeEmergencyStop.xml" }, "Pset_SwitchingDeviceTypeStarter": { - "description": "A starter is a switch which in the closed position controls the application of power to an electrical device.", "properties": { "StarterType": { "description": "A list of the available types of starter from which that required may be selected where:" @@ -6156,7 +5890,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_SwitchingDeviceTypeStarter.xml" }, "Pset_SwitchingDeviceTypeSwitchDisconnector": { - "description": "Definition from IEC 441-14-12: A switch disconnector is a switch which in the open position satisfies the isolating requirements specified for a disconnector.", "properties": { "HasVisualIndication": { "description": "Indicates whether a means of being to visually ascertain whether the contacts are open or closed is fitted (= TRUE) or not (= FALSE)" @@ -6171,7 +5904,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_SwitchingDeviceTypeSwitchDisconnector.xml" }, "Pset_SwitchingDeviceTypeToggleSwitch": { - "description": "A toggle switch is a switch that enables or isolates electrical power through a two position on/off action..", "properties": { "IsIlluminated": { "description": "An indication of whether there is an illuminated indicator to show that the switch is on (=TRUE) or not (= FALSE)." @@ -6192,7 +5924,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_SwitchingDeviceTypeToggleSwitch.xml" }, "Pset_SystemFurnitureElementTypeCommon": { - "description": "Common properties for all systems furniture (I.e. modular furniture) element types (e.g. vertical panels, work surfaces, and storage).", "properties": { "Finishing": { "description": "The finishing applied to system furniture elements of this type e.g. walnut, fabric." @@ -6213,7 +5944,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_SystemFurnitureElementTypeCommon.xml" }, "Pset_SystemFurnitureElementTypePanel": { - "description": "A set of specific properties for vertical panels that assembly workstations..", "properties": { "FurniturePanelType": { "description": "Available panel types from which that required may be selected." @@ -6228,7 +5958,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_SystemFurnitureElementTypePanel.xml" }, "Pset_SystemFurnitureElementTypeWorkSurface": { - "description": "A set of specific properties for work surfaces used in workstations.", "properties": { "HangingHeight": { "description": "The hanging height of the worksurface." @@ -6249,7 +5978,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedFacilitiesElements/Pset_SystemFurnitureElementTypeWorkSurface.xml" }, "Pset_TankTypeCommon": { - "description": "Common attributes of a tank type.", "properties": { "AccessType": { "description": "Defines the types of access (or cover) to a tank that may be specified." @@ -6285,7 +6013,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TankTypeCommon.xml" }, "Pset_TankTypeExpansion": { - "description": "Common attributes of an expansion type tank.", "properties": { "ChargePressure": { "description": "Nominal or design operating pressure of the tank." @@ -6300,7 +6027,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TankTypeExpansion.xml" }, "Pset_TankTypePreformed": { - "description": "Fixed vessel manufactured as a single unit with one or more compartments for storing a liquid.", "properties": { "EndShapeType": { "description": "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used." @@ -6318,7 +6044,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TankTypePreformed.xml" }, "Pset_TankTypePressureVessel": { - "description": "Common attributes of a pressure vessel.", "properties": { "ChargePressure": { "description": "Nominal or design operating pressure of the tank." @@ -6333,7 +6058,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TankTypePressureVessel.xml" }, "Pset_TankTypeSectional": { - "description": "Fixed vessel constructed from sectional parts with one or more compartments for storing a liquid.", "properties": { "NumberOfSections": { "description": "Number of sections used in the construction of the tank" @@ -6348,7 +6072,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TankTypeSectional.xml" }, "Pset_ThermalLoadAggregate": { - "description": "The aggregated thermal loads experienced by one or many spaces, zones, or buildings. This aggregate thermal load information is typically addressed by a system or plant.", "properties": { "ApplianceDiversity": { "description": "Diversity of appliance load." @@ -6375,7 +6098,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_ThermalLoadAggregate.xml" }, "Pset_ThermalLoadDesignCriteria": { - "description": "Building thermal load design data that are used for calculating thermal loads in a space or building.", "properties": { "AppliancePercentLoadToRadiant": { "description": "Percent of sensible load to radiant heat." @@ -6399,7 +6121,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_ThermalLoadDesignCriteria.xml" }, "Pset_TransformerTypeCommon": { - "description": "An inductive stationary device that transfers electrical energy from one circuit to another.", "properties": { "MaximumApparentPower": { "description": "Maximum apparent power/capacity in VA (volt ampere)." @@ -6435,7 +6156,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcElectricalDomain/Pset_TransformerTypeCommon.xml" }, "Pset_TransportElementCommon": { - "description": "Properties common to the definition of all occurrences of IfcTransportElement.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here whether the transport element (in case of e.g., a lift) is designed to serve as a fire exit, e.g., for fire escape purposes." @@ -6447,7 +6167,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_TransportElementCommon.xml" }, "Pset_TransportElementElevator": { - "description": "Properties common to the definition of all occurrences of IfcTransportElement with the predefined type =\"ELEVATOR\"", "properties": { "ClearDepth": { "description": "Clear depth of the object (elevator). It indicates the distance from the inner surface of the elevator door to the opposite surface of the elevator car. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." @@ -6462,7 +6181,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcProductExtension/Pset_TransportElementElevator.xml" }, "Pset_TubeBundleTypeCommon": { - "description": "Tube bundle type common attributes.", "properties": { "FoulingFactor": { "description": "Fouling factor of the tubes in the tube bundle." @@ -6513,7 +6231,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TubeBundleTypeCommon.xml" }, "Pset_TubeBundleTypeFinned": { - "description": "Finned tube bundle type attributes. Contains the attributes related to the fins attached to a tube in a finned tube bundle such as is commonly found in coils.", "properties": { "Diameter": { "description": "Actual diameter of a fin for circular fins only." @@ -6546,7 +6263,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_TubeBundleTypeFinned.xml" }, "Pset_UnitaryEquipmentTypeAirConditioningUnit": { - "description": "Air conditioning unit equipment type attributes. Note that these attributes were formely Pset_PackagedACUnit prior to IFC2x2. HeatingEnergySource attribute deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead.", "properties": { "CondenserEnteringTemperature": { "description": "Temperature of fluid entering condenser per manufacturer's listing (if available)" @@ -6579,7 +6295,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_UnitaryEquipmentTypeAirConditioningUnit.xml" }, "Pset_UnitaryEquipmentTypeAirHandler": { - "description": "Air handler unitary equipment type attributes. Note that these attributes were formerly Pset_AirHandler prior to IFC2x2.", "properties": { "AirHandlerConstruction": { "description": "Enumeration defining how the air handler might be fabricated." @@ -6594,7 +6309,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_UnitaryEquipmentTypeAirHandler.xml" }, "Pset_UtilityConsumption": { - "description": "Consumption of utility resources, typically applied to the IfcBuilding instance, used to identify how much was consumed on I.e., a monthly basis.", "properties": { "Electricity": { "description": "The amount of electricity consumed during the period specified in the time series." @@ -6615,7 +6329,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgServiceElements/Pset_UtilityConsumption.xml" }, "Pset_ValvePHistory": { - "description": "Valve performance history common attributes of a typical 2 port pattern type valve.", "properties": { "MeasuredFlowRate": { "description": "The rate of flow of a fluid measured across the valve." @@ -6630,7 +6343,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValvePHistory.xml" }, "Pset_ValveTypeAirRelease": { - "description": "Valve used to release air from a pipe or fitting. Note that an air release valve is constrained to have a single port pattern", "properties": { "IsAutomatic": { "description": "Indication of whether the valve is automatically operated (TRUE) or manually operated (FALSE)" @@ -6639,7 +6351,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeAirRelease.xml" }, "Pset_ValveTypeCommon": { - "description": "Valve type common attributes.", "properties": { "BodyMaterial": { "description": "Material from which the body of the valve is constructed" @@ -6675,7 +6386,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeCommon.xml" }, "Pset_ValveTypeDrawOffCock": { - "description": "Definition from BS6100 250 6223: A small diameter valve, used to drain water from a cistern or water filled system.", "properties": { "HasHoseUnion": { "description": "Indicates whether the drawoff cock is fitted with a hose union connection (= TRUE) or not (= FALSE)" @@ -6684,7 +6394,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeDrawOffCock.xml" }, "Pset_ValveTypeFaucet": { - "description": "Definition from BS6100: A small diameter valve, with a free outlet, from which water is drawn.", "properties": { "FaucetFunction": { "description": "Defines the operating temperature of a faucet that may be specified." @@ -6705,7 +6414,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeFaucet.xml" }, "Pset_ValveTypeFlushing": { - "description": "Valve that flushes a predetermined quantity of water to cleanse a WC, urinal or slop hopper. Note that a flushing valve is constrained to have a 2 port pattern.", "properties": { "FlushingRate": { "description": "The predetermined quantity of water to be flushed" @@ -6720,7 +6428,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeFlushing.xml" }, "Pset_ValveTypeGasTap": { - "description": "A small diameter valve, used to discharge gas from a system.", "properties": { "HasHoseUnion": { "description": "Indicates whether the gas tap is fitted with a hose union connection (= TRUE) or not (= FALSE)" @@ -6729,7 +6436,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeGasTap.xml" }, "Pset_ValveTypeIsolating": { - "description": "Valve that is used to isolate system components. Note that an isolating valve is constrained to have a 2 port pattern.", "properties": { "IsNormallyOpen": { "description": "If TRUE, the valve is normally open. If FALSE is is normally closed." @@ -6741,7 +6447,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeIsolating.xml" }, "Pset_ValveTypeMixing": { - "description": "A valve where typically the temperature of the outlet is determined by mixing hot and cold water inlet flows.", "properties": { "MixerControl": { "description": "Defines the form of control of the mixing valve." @@ -6753,7 +6458,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypeMixing.xml" }, "Pset_ValveTypePressureReducing": { - "description": "Valve that reduces the pressure of a fluid immediately downstream of its position in a pipeline to a preselected value or by a predetermined ratio. Note that a pressure reducing valve is constrained to have a 2 port pattern.", "properties": { "DownstreamPressure": { "description": "The operating pressure of the fluid downstream of the pressure reducing valve" @@ -6765,7 +6469,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypePressureReducing.xml" }, "Pset_ValveTypePressureRelief": { - "description": "Spring or weight loaded valve that automatically discharges to a safe place fluid that has built up to excessive pressure in pipes or fittings. Note that a pressure relief valve is constrained to have a single port pattern.", "properties": { "ReliefPressure": { "description": "The pressure at which the spring or weight in the valve is set to discharge fluid" @@ -6774,7 +6477,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_ValveTypePressureRelief.xml" }, "Pset_VibrationIsolatorTypeCommon": { - "description": "Vibration isolator type common attributes.", "properties": { "Height": { "description": "Height of the vibration isolator before tha application of load." @@ -6798,7 +6500,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcHvacDomain/Pset_VibrationIsolatorTypeCommon.xml" }, "Pset_WallCommon": { - "description": "Properties common to the definition of all occurrences of IfcWall and IfcWallStandardCase.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -6834,7 +6535,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_WallCommon.xml" }, "Pset_WasteTerminalTypeFloorTrap": { - "description": "Pipe fitting, set into the floor, that retains liquid to prevent the passage of foul air.", "properties": { "BodyMaterial": { "description": "The primary material used to construct the object" @@ -6882,7 +6582,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeFloorTrap.xml" }, "Pset_WasteTerminalTypeFloorWaste": { - "description": "Pipe fitting, set into the floor, that collects waste water and discharges it to a separate trap.", "properties": { "BodyMaterial": { "description": "The primary material used to construct the object" @@ -6912,7 +6611,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeFloorWaste.xml" }, "Pset_WasteTerminalTypeGreaseInterceptor": { - "description": "Chamber, on the line of a drain or discharge pipe, that prevents grease passing into a drainage system (BS6100 330 6205).", "properties": { "BodyDepth": { "description": "Nominal or quoted length, measured along the z-axis of the local coordinate system of the object, of the body of the object." @@ -6954,7 +6652,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeGreaseInterceptor.xml" }, "Pset_WasteTerminalTypeGullySump": { - "description": "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover.", "properties": { "BackInletPatternType": { "description": "Identifies the pattern of inlet connections to a gully trap." @@ -6996,7 +6693,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeGullySump.xml" }, "Pset_WasteTerminalTypeGullyTrap": { - "description": "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover and discharging through a trap (BS6100 330 3504 modified)", "properties": { "BackInletPatternType": { "description": "Identifies the pattern of inlet connections to a gully trap." @@ -7041,7 +6737,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeGullyTrap.xml" }, "Pset_WasteTerminalTypeOilInterceptor": { - "description": "One or more chambers arranged to prevent the ingress of oil to a drain or sewer, that retain the oil for later removal (BS6100 330 67316).", "properties": { "BodyMaterial": { "description": "The material from which the object is constructed." @@ -7074,7 +6769,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeOilInterceptor.xml" }, "Pset_WasteTerminalTypePetrolInterceptor": { - "description": "Two or more chambers with inlet and outlet pipes arranged to allow petrol/gasoline collected on the surface of water drained into them to evaporate through ventilating pipes.", "properties": { "BodyMaterial": { "description": "The material from which the object is constructed." @@ -7110,7 +6804,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypePetrolInterceptor.xml" }, "Pset_WasteTerminalTypeRoofDrain": { - "description": "Pipe fitting, set into the roof, that collects rainwater for discharge into the rainwater system.", "properties": { "BodyMaterial": { "description": "The primary material used to construct the object" @@ -7140,7 +6833,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeRoofDrain.xml" }, "Pset_WasteTerminalTypeWasteDisposalUnit": { - "description": "Electrically operated device that reduces kitchen or other waste into fragments small enough to be flushed into a drainage system.", "properties": { "DrainConnectionSize": { "description": "Size of the drain connection inlet to the waste disposal unit." @@ -7155,7 +6847,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeWasteDisposalUnit.xml" }, "Pset_WasteTerminalTypeWasteTrap": { - "description": "Pipe fitting, set adjacent to a sanitary terminal, that retains liquid to prevent the passage of foul air.", "properties": { "InletConnectionSize": { "description": "Size of the inlet connection(s), where used, of the inlet connections." @@ -7170,7 +6861,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcPlumbingFireProtectionDomain/Pset_WasteTerminalTypeWasteTrap.xml" }, "Pset_WindowCommon": { - "description": "Properties common to the definition of all occurrences of Window.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -7203,7 +6893,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/psd/IfcSharedBldgElements/Pset_WindowCommon.xml" }, "Pset_ZoneCommon": { - "description": "Properties common to the definition of all occurrences of IfcZone.", "properties": { "Category": { "description": "Category of space usage or utilization of the area. It is defined according to the presiding national building code." diff --git a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_types.json b/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_types.json deleted file mode 100644 index 3f7f7919da..0000000000 --- a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc2x3_types.json +++ /dev/null @@ -1,1310 +0,0 @@ -{ - "IfcAbsorbedDoseMeasure": { - "description": "A measure of the absorbed radioactivity dose.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcabsorbeddosemeasure.htm" - }, - "IfcAccelerationMeasure": { - "description": "A measure of acceleration.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcaccelerationmeasure.htm" - }, - "IfcActionSourceTypeEnum": { - "description": "This enumeration type contains possible action sources. The IfcActionSourceTypeEnum type is referenced by the entity IfcStructuralLoadGroup which shall normally be of the type LOAD_CASE (see also IfcLoadGroupTypeEnum).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcactionsourcetypeenum.htm" - }, - "IfcActionTypeEnum": { - "description": "This enumeration type is used to distinguish between possible action types at a high level. It can be used for an automated definition of load combinations and for dimensioning. The contained items and their acronyms are adopted from the Eurocode standard.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcactiontypeenum.htm" - }, - "IfcActorSelect": { - "description": "The actor select type allows a person and/or organization to be referenced.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcactorresource/lexical/ifcactorselect.htm" - }, - "IfcActuatorTypeEnum": { - "description": "The IfcActuatorTypeEnum defines the range of different types of actuator that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcbuildingcontrolsdomain/lexical/ifcactuatortypeenum.htm" - }, - "IfcAddressTypeEnum": { - "description": "Identifies the logical location of the address.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcactorresource/lexical/ifcaddresstypeenum.htm" - }, - "IfcAheadOrBehind": { - "description": "An enumeration type that is used to specify whether a local time is ahead or behind of the coordinated universal time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcaheadorbehind.htm" - }, - "IfcAirTerminalBoxTypeEnum": { - "description": "This enumeration identifies different types of air terminal boxes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcairterminalboxtypeenum.htm" - }, - "IfcAirTerminalTypeEnum": { - "description": "Enumeration defining the functional types of air terminals. The IfcAirTerminalTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcairterminaltypeenum.htm" - }, - "IfcAirToAirHeatRecoveryTypeEnum": { - "description": "Defines general types of pumps. The IfcPumpTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcairtoairheatrecoverytypeenum.htm" - }, - "IfcAlarmTypeEnum": { - "description": "The IfcAlarmTypeEnum defines the range of different types of alarm that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcbuildingcontrolsdomain/lexical/ifcalarmtypeenum.htm" - }, - "IfcAmountOfSubstanceMeasure": { - "description": "An amount of substance measure is the value for the quantity of a substance when compared with the number of atoms in 0.012kilogram of carbon 12.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcamountofsubstancemeasure.htm" - }, - "IfcAnalysisModelTypeEnum": { - "description": "This type definition is used to distinguish between different types of structural analysis models. The analysis models are differentiated by their dimensionality.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcanalysismodeltypeenum.htm" - }, - "IfcAnalysisTheoryTypeEnum": { - "description": "This type definition is used to distinguish between different types of structural analysis methods, i.e. first order theory, second order theory (small deformations), third order theory (large deformations) and the full nonlinear theory (large deformations and higher order effects). The IfcAnalysisTheoryTypeEnum type is referenced by the entity IfcStructuralResultGroup.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcanalysistheorytypeenum.htm" - }, - "IfcAngularVelocityMeasure": { - "description": "A measure of the velocity of a body measured in terms of angle subtended per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcangularvelocitymeasure.htm" - }, - "IfcAppliedValueSelect": { - "description": "The IfcAppliedValueSelect defines the selection of whether a value (expressed as a ratio) or an amount should be used as the value for an IfcAppliedValue.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifccostresource/lexical/ifcappliedvalueselect.htm" - }, - "IfcAreaMeasure": { - "description": "An area measure is the value of the extent of a surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcareameasure.htm" - }, - "IfcArithmeticOperatorEnum": { - "description": "The IfcArithmeticOperatorEnum specifies the form of arithmetical operation implied by the relationship.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifccostresource/lexical/ifcarithmeticoperatorenum.htm" - }, - "IfcAssemblyPlaceEnum": { - "description": "Enumeration defining where the assembly is intended to take place, either in a factory or on the building site.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcassemblyplaceenum.htm" - }, - "IfcAxis2Placement": { - "description": "This select type collects together both versions of the placement as used in two dimensional or in three dimensional Cartesian space. This enables entities requiring this information to reference them without specifying the space dimensionality.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifcaxis2placement.htm" - }, - "IfcBSplineCurveForm": { - "description": "This type is used to indicate that the B-spline curve represents a part of a curve of some specific form.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifcbsplinecurveform.htm" - }, - "IfcBeamTypeEnum": { - "description": "This enumeration defines the different types of linear elements an IfcBeamType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcbeamtypeenum.htm" - }, - "IfcBenchmarkEnum": { - "description": "An IfcBenchmarkEnum is an enumeration used to identify the logical comparators that can be applied in conjunction with constraint values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcconstraintresource/lexical/ifcbenchmarkenum.htm" - }, - "IfcBoilerTypeEnum": { - "description": "Enumeration defining the typical types of boilers. The IfcBoilerTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcboilertypeenum.htm" - }, - "IfcBoolean": { - "description": "A defined data type of simple data type Boolean. (Required since a select type, i.e. IfcSimpleValue, cannot include directly simple types in its select list). A boolean type can have value TRUE or FALSE.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcboolean.htm" - }, - "IfcBooleanOperand": { - "description": "This select type identifies all those types of entities which may participate in a Boolean operation to form a CSG solid.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricmodelresource/lexical/ifcbooleanoperand.htm" - }, - "IfcBooleanOperator": { - "description": "This type defines the three Boolean operators used in the definition of CSG solids.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricmodelresource/lexical/ifcbooleanoperator.htm" - }, - "IfcBoxAlignment": { - "description": "Definition from IAI: The box alignment specifies the alignment of the text box relative to its position. The following string values shall be used:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationdefinitionresource/lexical/ifcboxalignment.htm" - }, - "IfcBuildingElementProxyTypeEnum": { - "description": "This enumeration defines the available generic types for IfcBuildingElementProxyType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcbuildingelementproxytypeenum.htm" - }, - "IfcCableCarrierFittingTypeEnum": { - "description": "The IfcCableCarrierFittingTypeEnum defines the range of different types of cable carrier fitting that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifccablecarrierfittingtypeenum.htm" - }, - "IfcCableCarrierSegmentTypeEnum": { - "description": "The IfcCableCarrierSegmentTypeEnum defines the range of different types of cable carrier segment that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifccablecarriersegmenttypeenum.htm" - }, - "IfcCableSegmentTypeEnum": { - "description": "The IfcCableSegmentTypeEnum defines the range of different types of cable segment that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifccablesegmenttypeenum.htm" - }, - "IfcChangeActionEnum": { - "description": "Enumeration identifying the type of change that might have occurred to the object during the last session (e.g., unchanged, added, deleted, etc.). This information is required in a partial model exchange scenario so that an application or model server will know how an object might have been affected by the previous application. Valid enumerations are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcutilityresource/lexical/ifcchangeactionenum.htm" - }, - "IfcCharacterStyleSelect": { - "description": "Definition from IAI: The character style select allows for a selection of character styles for text. Currently only text color and background color is selectable.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifccharacterstyleselect.htm" - }, - "IfcChillerTypeEnum": { - "description": "Enumeration defining the typical types of Chillers classified by their method of heat rejection. The IfcChillerTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcchillertypeenum.htm" - }, - "IfcClassificationNotationSelect": { - "description": "IfcClassificationNotationSelect enables selection of whether a classification notation is to be contained within an IFC model or is to be referenced from an external source (or classification server).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcexternalreferenceresource/lexical/ifcclassificationnotationselect.htm" - }, - "IfcCoilTypeEnum": { - "description": "Enumeration defining the typical types of coils. The IfcCoilTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifccoiltypeenum.htm" - }, - "IfcColour": { - "description": "The colour entity defines a basic appearance of elements which shall be visualized in a picture.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifccolour.htm" - }, - "IfcColourOrFactor": { - "description": "The IfcColourOrFactor enables the selection of either a RGB colour value or a scalar factor value for the use as values of the reflectance components.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifccolourorfactor.htm" - }, - "IfcColumnTypeEnum": { - "description": "This enumeration defines the different types of linear elements an IfcColumnType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifccolumntypeenum.htm" - }, - "IfcComplexNumber": { - "description": "Representation of a complex number expressed as an array with two elements. The first element (index 1) denotes the real component, i.e. the numerical component of a complex number whose square roots can be calculated explicitly. The second element (index 2) denotes the imaginary component, i.e. numerical component of a complex number whose square roots cannot be determined other than through the provision of the square of the imaginary number j where j\\^2 = -1. Note that the imaginary component may be referred to as i in certain references.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifccomplexnumber.htm" - }, - "IfcCompoundPlaneAngleMeasure": { - "description": "A compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifccompoundplaneanglemeasure.htm" - }, - "IfcCompressorTypeEnum": { - "description": "Types of compressors. The IfcCompressorTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifccompressortypeenum.htm" - }, - "IfcCondenserTypeEnum": { - "description": "Enumeration defining the typical types of condensers. The IfcCondenserTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifccondensertypeenum.htm" - }, - "IfcConditionCriterionSelect": { - "description": "An IfcConditionCriterionSelect enables the selection of the criterion that is to be measured or assessed to establish the condition of an artifact(s).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcfacilitiesmgmtdomain/lexical/ifcconditioncriterionselect.htm" - }, - "IfcConnectionTypeEnum": { - "description": "This enumeration defines the different ways how path based elements (here IfcWallStandardCase) can connect..", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcconnectiontypeenum.htm" - }, - "IfcConstraintEnum": { - "description": "An IfcConstraintEnum is an enumeration used to qualify a constraint.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcconstraintresource/lexical/ifcconstraintenum.htm" - }, - "IfcContextDependentMeasure": { - "description": "Is the value of a physical quantity as defined by an application context.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifccontextdependentmeasure.htm" - }, - "IfcControllerTypeEnum": { - "description": "The IfcControllerTypeEnum defines the range of different types of controller that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcbuildingcontrolsdomain/lexical/ifccontrollertypeenum.htm" - }, - "IfcCooledBeamTypeEnum": { - "description": "Enumeration defining the typical types of cooled beams. The IfcCooledBeamTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifccooledbeamtypeenum.htm" - }, - "IfcCoolingTowerTypeEnum": { - "description": "Enumeration defining the typical types of cooling towers. The IfcCoolingTowerTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifccoolingtowertypeenum.htm" - }, - "IfcCostScheduleTypeEnum": { - "description": "An IfcCostScheduleTypeEnum is a list of the available types of cost schedule from which that required may be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedmgmtelements/lexical/ifccostscheduletypeenum.htm" - }, - "IfcCountMeasure": { - "description": "A count measure is the value of a count.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifccountmeasure.htm" - }, - "IfcCoveringTypeEnum": { - "description": "This enumeration defines the range of different types of covering that can further specify an IfcCovering or an IfcCoveringType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifccoveringtypeenum.htm" - }, - "IfcCsgSelect": { - "description": "This type identifies the types of entity which may be selected as the root of a CSG tree including a single CSG primitive as a special case (currently not in IFC).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricmodelresource/lexical/ifccsgselect.htm" - }, - "IfcCurrencyEnum": { - "description": "An enumeration of the international abbreviations of currencies used of various countries.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifccurrencyenum.htm" - }, - "IfcCurtainWallTypeEnum": { - "description": "Enumeration defining the valid types of curtain wall that can be predefined using the enumeration values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifccurtainwalltypeenum.htm" - }, - "IfcCurvatureMeasure": { - "description": "A measure for curvature, which is defined as the change of slope per length. This is typically a computed value in structural analysis. It is usually measured in rad/m.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifccurvaturemeasure.htm" - }, - "IfcCurveFontOrScaledCurveFontSelect": { - "description": "The curve font or scaled curve font select is a selection of either a curve font style select (being either a predefined curve font or an explicitly defined curve font) or a curve style font and scaling.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifccurvefontorscaledcurvefontselect.htm" - }, - "IfcCurveOrEdgeCurve": { - "description": "The IfcCurveOrEdgeCurve provides the option to either select a geometric curve (IfcCurve and subtypes) within a geometric model, or a curve with associated geometry and coordinates (Ifc__EdgeCurve) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricconstraintresource/lexical/ifccurveoredgecurve.htm" - }, - "IfcCurveStyleFontSelect": { - "description": "The curve style font select is a selection of a curve style font or a predefined curve style font.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifccurvestylefontselect.htm" - }, - "IfcDamperTypeEnum": { - "description": "This enumeration defines the various types of damper:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcdampertypeenum.htm" - }, - "IfcDataOriginEnum": { - "description": "The IfcTimeSeriesDataGeneratedByEnum identifies the origin of the time series data:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifctimeseriesresource/lexical/ifcdataoriginenum.htm" - }, - "IfcDateTimeSelect": { - "description": "Allows a date (IfcCalendarDate) and/or local time (IfcDateAndTime, IfcLocalTime) to be referenced.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcdatetimeselect.htm" - }, - "IfcDayInMonthNumber": { - "description": "The position of the specified day in a month.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcdayinmonthnumber.htm" - }, - "IfcDaylightSavingHour": { - "description": "The positive integer value by which clock time is offset from solar time at the particular location.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcdaylightsavinghour.htm" - }, - "IfcDefinedSymbolSelect": { - "description": "The defined symbol select is a selection between a predefined symbol and an externally defined symbol.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationdefinitionresource/lexical/ifcdefinedsymbolselect.htm" - }, - "IfcDerivedMeasureValue": { - "description": "A select type for selecting between derived measure types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcderivedmeasurevalue.htm" - }, - "IfcDerivedUnitEnum": { - "description": "An enumeration type for allowed types of derived units.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcderivedunitenum.htm" - }, - "IfcDescriptiveMeasure": { - "description": "A descriptive measure is a human interpretable definition of a quantifiable value.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcdescriptivemeasure.htm" - }, - "IfcDimensionCount": { - "description": "A dimension count is a positive integer used to define the coordinate space dimensionality.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifcdimensioncount.htm" - }, - "IfcDimensionExtentUsage": { - "description": "The dimension extent usage declares the usage of a dimension terminator symbol, being either an origin, or a target.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationdimensioningresource/lexical/ifcdimensionextentusage.htm" - }, - "IfcDirectionSenseEnum": { - "description": "Enumeration denoting whether sense of direction is positive or negative along the given axis.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmaterialresource/lexical/ifcdirectionsenseenum.htm" - }, - "IfcDistributionChamberElementTypeEnum": { - "description": "The This enumeration identifies different types of distribution chambers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcdistributionchamberelementtypeenum.htm" - }, - "IfcDocumentConfidentialityEnum": { - "description": "IfcDocumentConfidentialityEnum enables selection of the level of confidentiality of document information from a list of choices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcexternalreferenceresource/lexical/ifcdocumentconfidentialityenum.htm" - }, - "IfcDocumentSelect": { - "description": "IfcDocumentSelect enables selection of whether document information is to be contained within an IFC model or is to be referenced from an external source.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcexternalreferenceresource/lexical/ifcdocumentselect.htm" - }, - "IfcDocumentStatusEnum": { - "description": "Enables selection of the status of document information from a list of choices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcexternalreferenceresource/lexical/ifcdocumentstatusenum.htm" - }, - "IfcDoorPanelOperationEnum": { - "description": "This enumeration defines the basic ways how individual door panels operate.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcdoorpaneloperationenum.htm" - }, - "IfcDoorPanelPositionEnum": { - "description": "This enumeration defines the basic ways to describe the location of a door panel within a door lining.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcdoorpanelpositionenum.htm" - }, - "IfcDoorStyleConstructionEnum": { - "description": "This enumeration defines the basic types of construction of doors. The construction type relates to the main material (or material combination) used for making the door.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcdoorstyleconstructionenum.htm" - }, - "IfcDoorStyleOperationEnum": { - "description": "This enumeration defines the basic ways to describe how doors operate.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcdoorstyleoperationenum.htm" - }, - "IfcDoseEquivalentMeasure": { - "description": "A measure of the radioactive dose equivalent.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcdoseequivalentmeasure.htm" - }, - "IfcDraughtingCalloutElement": { - "description": "The draughting callout elements can either be annotated curves, symbols or text.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationdimensioningresource/lexical/ifcdraughtingcalloutelement.htm" - }, - "IfcDuctFittingTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a duct fitting. This is a very basic categorization mechanism to generically identify the duct fitting type. Subcategories of duct fittings are not enumerated. The IfcDuctFittingTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcductfittingtypeenum.htm" - }, - "IfcDuctSegmentTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a duct segment. This is a very basic categorization mechanism to generically identify the duct segment type. Subcategories of duct segments are not enumerated. The IfcDuctSegmentTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcductsegmenttypeenum.htm" - }, - "IfcDuctSilencerTypeEnum": { - "description": "Enumeration defining the typical types of duct silencers. The IfcDuctSilencerTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcductsilencertypeenum.htm" - }, - "IfcDynamicViscosityMeasure": { - "description": "A measure of the viscous resistance of a medium.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcdynamicviscositymeasure.htm" - }, - "IfcElectricApplianceTypeEnum": { - "description": "The IfcElectricApplianceTypeEnum defines the range of different types of electrical appliance that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectricappliancetypeenum.htm" - }, - "IfcElectricCapacitanceMeasure": { - "description": "A measure of the electric capacitance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcelectriccapacitancemeasure.htm" - }, - "IfcElectricChargeMeasure": { - "description": "A measure of the electric charge.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcelectricchargemeasure.htm" - }, - "IfcElectricConductanceMeasure": { - "description": "A measure of the electric conductance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcelectricconductancemeasure.htm" - }, - "IfcElectricCurrentEnum": { - "description": "This enumeration defines the different types of available electrical current:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcelectriccurrentenum.htm" - }, - "IfcElectricCurrentMeasure": { - "description": "The value for the movement of electrically charged particles.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcelectriccurrentmeasure.htm" - }, - "IfcElectricDistributionPointFunctionEnum": { - "description": "The IfcElectricDistributionPointTypeEnum defines the range of different functions that an electric distribution point can fulfil.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectricdistributionpointfunctionenum.htm" - }, - "IfcElectricFlowStorageDeviceTypeEnum": { - "description": "The IfcElectricFlowStorageDeviceTypeEnum defines the range of different types of electrical flow storage device available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectricflowstoragedevicetypeenum.htm" - }, - "IfcElectricGeneratorTypeEnum": { - "description": "The IfcElectricGeneratorTypeEnum defines the range of types of electric generators available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectricgeneratortypeenum.htm" - }, - "IfcElectricHeaterTypeEnum": { - "description": "The IfcElectricHeaterTypeEnum defines the range of types of electric heater available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectricheatertypeenum.htm" - }, - "IfcElectricMotorTypeEnum": { - "description": "The IfcElectricMotorTypeEnum defines the range of different types of electric motor that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectricmotortypeenum.htm" - }, - "IfcElectricResistanceMeasure": { - "description": "A measure of the electric resistance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcelectricresistancemeasure.htm" - }, - "IfcElectricTimeControlTypeEnum": { - "description": "The IfcElectricTimeControlTypeEnum defines the range of types of electrical time control available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcelectrictimecontroltypeenum.htm" - }, - "IfcElectricVoltageMeasure": { - "description": "A measure of electromotive force.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcelectricvoltagemeasure.htm" - }, - "IfcElementAssemblyTypeEnum": { - "description": "An enumeration defining the basic configuration types for element assemblies.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcelementassemblytypeenum.htm" - }, - "IfcElementCompositionEnum": { - "description": "Enumeration that provides an indication, whether the spatial structure element or proxy represents a:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcelementcompositionenum.htm" - }, - "IfcEnergyMeasure": { - "description": "A measure of energy required or used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcenergymeasure.htm" - }, - "IfcEnergySequenceEnum": { - "description": "This enumeration is used to identify the sequence of usage of the energy source. The IfcEnergySequenceEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcenergysequenceenum.htm" - }, - "IfcEnvironmentalImpactCategoryEnum": { - "description": "The IfcEnvironmentalImpactCategoryEnum defines the range of categories into which an environmental impact can be broken down and from which the category required may be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifccostresource/lexical/ifcenvironmentalimpactcategoryenum.htm" - }, - "IfcEvaporativeCoolerTypeEnum": { - "description": "Enumeration defining the typical types of evaporative coolers. The IfcEvaporativeCoolerTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcevaporativecoolertypeenum.htm" - }, - "IfcEvaporatorTypeEnum": { - "description": "Enumeration defining the typical types of evaporators. The IfcEvaporatorTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcevaporatortypeenum.htm" - }, - "IfcFanTypeEnum": { - "description": "Enumeration defining the typical types of fans. The IfcFanTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcfantypeenum.htm" - }, - "IfcFillAreaStyleTileShapeSelect": { - "description": "The fill area style tile shape select is used to make a selection for the style of the fill area style tile.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcfillareastyletileshapeselect.htm" - }, - "IfcFillStyleSelect": { - "description": "The fill style select is a selection between different fill area styles.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcfillstyleselect.htm" - }, - "IfcFilterTypeEnum": { - "description": "This enumeration defines the various types of filter typically used within building services distribution systems:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcfiltertypeenum.htm" - }, - "IfcFireSuppressionTerminalTypeEnum": { - "description": "The IfcFireSuppressionTerminalTypeEnum defines the range of different types of fire suppression terminal that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcplumbingfireprotectiondomain/lexical/ifcfiresuppressionterminaltypeenum.htm" - }, - "IfcFlowDirectionEnum": { - "description": "This enumeration defines the flow direction at a connection point as either a Source, Sink, or both SourceAndSink:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcflowdirectionenum.htm" - }, - "IfcFlowInstrumentTypeEnum": { - "description": "The IfcFlowInstrumentTypeEnum defines the range of different types of flow instrument that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcbuildingcontrolsdomain/lexical/ifcflowinstrumenttypeenum.htm" - }, - "IfcFlowMeterTypeEnum": { - "description": "This enumeration defines various types of flow meter:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcflowmetertypeenum.htm" - }, - "IfcFontStyle": { - "description": "Definition from CSS1 (W3C Recommendation): The font-style property selects between normal (sometimes referred to as \"roman\" or \"upright\"), italic and oblique faces within a font family. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifcfontstyle.htm" - }, - "IfcFontVariant": { - "description": "Definition from CSS1 (W3C Recommendation): The font-style property selects between normal and small-caps within a font family. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifcfontvariant.htm" - }, - "IfcFontWeight": { - "description": "Definition from CSS1 (W3C Recommendation): The 'font-weight' property selects the weight of the font. The values '100' to '900' form an ordered sequence, where each number indicates a weight that is at least as dark as its predecessor. The keyword 'normal' is synonymous with '400', and 'bold' is synonymous with '700'. Keywords other than 'normal' and 'bold' have been shown to be often confused with font names and a numerical scale was therefore chosen for the 9-value list. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifcfontweight.htm" - }, - "IfcFootingTypeEnum": { - "description": "Definition from IAI: Enumeration defining the generic footing type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralelementsdomain/lexical/ifcfootingtypeenum.htm" - }, - "IfcForceMeasure": { - "description": "A measure of the force.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcforcemeasure.htm" - }, - "IfcFrequencyMeasure": { - "description": "A measure of the number of times that an item vibrates in unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcfrequencymeasure.htm" - }, - "IfcGasTerminalTypeEnum": { - "description": "Enumeration defining the functional type of gas terminal. The IfcGasTerminalTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcgasterminaltypeenum.htm" - }, - "IfcGeometricProjectionEnum": { - "description": "Definition from IAI: The IfcGeometricProjectionEnum defines the various representation types that can be semantically distinguished. Often different levels of detail of the shape representation are controlled by the representation type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcrepresentationresource/lexical/ifcgeometricprojectionenum.htm" - }, - "IfcGeometricSetSelect": { - "description": "This select type identifies the types of entities which can occur in a geometric set.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricmodelresource/lexical/ifcgeometricsetselect.htm" - }, - "IfcGlobalOrLocalEnum": { - "description": "Definition from IAI: This enumeration type defines if the local object coordinate system or the global world coordinate system for the project is used to describe the measure values of entities which have a reference to this type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcrepresentationresource/lexical/ifcglobalorlocalenum.htm" - }, - "IfcGloballyUniqueId": { - "description": "Holds an identifier that is unique throughout the software world. This is also known as a Globally Unique Identifier (GUID) or Universal Unique Identifier (UUID) by the Open Group. The identifier is generated using an algorithm published by the Object Management Group. The algorithm is explained at the open group website. The Microsoft Foundation Class (MFC) function \"CoCreateGuid\", which is an implementation of the above algorithm, has been used by many IFC implementers to create an identifier.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcutilityresource/lexical/ifcgloballyuniqueid.htm" - }, - "IfcHatchLineDistanceSelect": { - "description": "Definition from IAI: The IfcHatchLineDistanceSelect is a selection between different ways to determine the distance and potentially start point of hatch lines, either by an offset distance length measure or by a vector..", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifchatchlinedistanceselect.htm" - }, - "IfcHeatExchangerTypeEnum": { - "description": "Enumeration defining the typical types of heat exchangers. The IfcHeatExchangerTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcheatexchangertypeenum.htm" - }, - "IfcHeatFluxDensityMeasure": { - "description": "A measure of the density of heat flux within a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcheatfluxdensitymeasure.htm" - }, - "IfcHeatingValueMeasure": { - "description": "Defines the amount of energy released (usually in MJ/kg) when a fuel is burned.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcheatingvaluemeasure.htm" - }, - "IfcHourInDay": { - "description": "The hour element of a specified time on a 24 hour clock.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifchourinday.htm" - }, - "IfcHumidifierTypeEnum": { - "description": "Enumeration defining the typical types of humidifiers. The IfcHumidifierTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifchumidifiertypeenum.htm" - }, - "IfcIdentifier": { - "description": "An identifier is an alphanumeric string which allows an individual thing to be identified. It may not provide natural-language meaning.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcidentifier.htm" - }, - "IfcIlluminanceMeasure": { - "description": "A measure of the illuminance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcilluminancemeasure.htm" - }, - "IfcInductanceMeasure": { - "description": "A measure of the inductance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcinductancemeasure.htm" - }, - "IfcInteger": { - "description": "A defined type of simple data type Integer. (Required since a select type, i.e. IfcSimpleValue, cannot include directly simple types in its select list).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcinteger.htm" - }, - "IfcIntegerCountRateMeasure": { - "description": "A measure of the integer number of units flowing per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcintegercountratemeasure.htm" - }, - "IfcInternalOrExternalEnum": { - "description": "This enumeration defines the different types of spaces or space boundaries in terms of either being inside the building or outside the building.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcinternalorexternalenum.htm" - }, - "IfcInventoryTypeEnum": { - "description": "IfcInventoryTypeEnum defines the types of inventory that can be defined.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedfacilitieselements/lexical/ifcinventorytypeenum.htm" - }, - "IfcIonConcentrationMeasure": { - "description": "A measure of particular ion concentration in a liquid, given in mg/L.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcionconcentrationmeasure.htm" - }, - "IfcIsothermalMoistureCapacityMeasure": { - "description": "A measure of isothermal moisture capacity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcisothermalmoisturecapacitymeasure.htm" - }, - "IfcJunctionBoxTypeEnum": { - "description": "The IfcJunctionBoxTypeEnum defines the range of types of junction boxes available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcjunctionboxtypeenum.htm" - }, - "IfcKinematicViscosityMeasure": { - "description": "A measure of the viscous resistance of a medium to a moving body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifckinematicviscositymeasure.htm" - }, - "IfcLabel": { - "description": "A label is the term by which something may be referred to. It is a string which represents the human-interpretable name of something and shall have a natural-language meaning.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclabel.htm" - }, - "IfcLampTypeEnum": { - "description": "The IfcLampTypeEnum defines the range of different types of lamp available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifclamptypeenum.htm" - }, - "IfcLayerSetDirectionEnum": { - "description": "Identification of the axis of element geometry denoting the layer set thickness direction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmaterialresource/lexical/ifclayersetdirectionenum.htm" - }, - "IfcLayeredItem": { - "description": "The layered things type selects those things, which can be grouped in layers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationorganizationresource/lexical/ifclayereditem.htm" - }, - "IfcLengthMeasure": { - "description": "A length measure is the value of a distance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclengthmeasure.htm" - }, - "IfcLibrarySelect": { - "description": "An IfcLibrarySelect enables selection of whether library information is to be contained within an IFC model or is to be referenced from an external source.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcexternalreferenceresource/lexical/ifclibraryselect.htm" - }, - "IfcLightDistributionCurveEnum": { - "description": "There are three kinds of light distribution curves:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationorganizationresource/lexical/ifclightdistributioncurveenum.htm" - }, - "IfcLightDistributionDataSourceSelect": { - "description": "A goniometric light gets its intensity distribution function (how much light goes in any one direction) from one of two sources: (i) an industry-standard file, (ii) from distribution data passed directly via the IfcLightIntensityDistribution.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationorganizationresource/lexical/ifclightdistributiondatasourceselect.htm" - }, - "IfcLightEmissionSourceEnum": { - "description": "The IfcLightEmissionSourceEnum defines the range of different types of light emitter available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationorganizationresource/lexical/ifclightemissionsourceenum.htm" - }, - "IfcLightFixtureTypeEnum": { - "description": "The IfcLightFixtureTypeEnum defines the range of different types of light fixture available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifclightfixturetypeenum.htm" - }, - "IfcLinearForceMeasure": { - "description": "A measure of linear force.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclinearforcemeasure.htm" - }, - "IfcLinearMomentMeasure": { - "description": "A measure of linear moment.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclinearmomentmeasure.htm" - }, - "IfcLinearStiffnessMeasure": { - "description": "A measure of linear stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclinearstiffnessmeasure.htm" - }, - "IfcLinearVelocityMeasure": { - "description": "A measure of the velocity of a body measured in terms of distance moved per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclinearvelocitymeasure.htm" - }, - "IfcLoadGroupTypeEnum": { - "description": "This type definition is used to distinguish between different kinds and purposes of load grouping. It allows to differentiate between load groups, load cases, load combination groups and load combinations. Normally, these enumeration types shall be used in the following context :", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcloadgrouptypeenum.htm" - }, - "IfcLogical": { - "description": "A defined type of simple type logical. (Required since a select type, i.e. IfcSimpleValue, cannot include directly simple types in its select list). Logical datatype can have values TRUE, FALSE or UNKNOWN.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifclogical.htm" - }, - "IfcLogicalOperatorEnum": { - "description": "IfcLogicalOperatorEnum is an enumeration that defines the logical operators that may be applied for the satisfaction of more than one constraint at a time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcconstraintresource/lexical/ifclogicaloperatorenum.htm" - }, - "IfcLuminousFluxMeasure": { - "description": "A measure of the luminous flux.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcluminousfluxmeasure.htm" - }, - "IfcLuminousIntensityDistributionMeasure": { - "description": "A measure of the luminous intensity of a light source that changes according to the direction of the ray. It is normally based on some standardized distribution light distribution curves.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcluminousintensitydistributionmeasure.htm" - }, - "IfcLuminousIntensityMeasure": { - "description": "A luminous intensity measure is the value for the brightness of a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcluminousintensitymeasure.htm" - }, - "IfcMagneticFluxDensityMeasure": { - "description": "A measure of the magnetic flux density.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmagneticfluxdensitymeasure.htm" - }, - "IfcMagneticFluxMeasure": { - "description": "A measure of the magnetic flux.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmagneticfluxmeasure.htm" - }, - "IfcMassDensityMeasure": { - "description": "A measure of the density of a medium.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmassdensitymeasure.htm" - }, - "IfcMassFlowRateMeasure": { - "description": "A measure of the mass of a medium flowing per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmassflowratemeasure.htm" - }, - "IfcMassMeasure": { - "description": "A mass measure is the value of the amount of matter that a body contains.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmassmeasure.htm" - }, - "IfcMassPerLengthMeasure": { - "description": "A measure for mass per length. For example for rolled steel profiles the weight of an imaginary beam is usually expressed by kg/m length for cost calculation and structural analysis purposes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmassperlengthmeasure.htm" - }, - "IfcMaterialSelect": { - "description": "Selection of whether a material, a material layer, material layer set (with or without usage information) or a material list is assigned to an element.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmaterialresource/lexical/ifcmaterialselect.htm" - }, - "IfcMeasureValue": { - "description": "A measure value is a value as defined in ISO 31-0 (clause 2).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmeasurevalue.htm" - }, - "IfcMemberTypeEnum": { - "description": "This enumeration defines the different types of linear elements an IfcMemberType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcmembertypeenum.htm" - }, - "IfcMetricValueSelect": { - "description": "An IfcMetricValueSelect is a select type that enables selection of the data type for the value component of an IfcMetric.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcconstraintresource/lexical/ifcmetricvalueselect.htm" - }, - "IfcMinuteInHour": { - "description": "The minute element of a specified time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcminuteinhour.htm" - }, - "IfcModulusOfElasticityMeasure": { - "description": "A measure of modulus of elasticity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmodulusofelasticitymeasure.htm" - }, - "IfcModulusOfLinearSubgradeReactionMeasure": { - "description": "A measure for modulus of linear subgrade reaction, which expresses the elastic bedding of a linear structural element per length, e.g. a beam. It is typically measured in N/m\\^2.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmodulusoflinearsubgradereactionmeasure.htm" - }, - "IfcModulusOfRotationalSubgradeReactionMeasure": { - "description": "A measure for modulus of rotational subgrade reaction, which expresses the rotational elastic bedding of a linear structural element per length, e.g. a beam. It is typically measured in Nm/(m*rad).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmodulusofrotationalsubgradereactionmeasure.htm" - }, - "IfcModulusOfSubgradeReactionMeasure": { - "description": "A geotechnical measure describing interaction between foundation structures and the soil. May also be known as bedding measure.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmodulusofsubgradereactionmeasure.htm" - }, - "IfcMoistureDiffusivityMeasure": { - "description": "A measure of moisture diffusivity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmoisturediffusivitymeasure.htm" - }, - "IfcMolecularWeightMeasure": { - "description": "A measure of molecular weight of material (typically gas).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmolecularweightmeasure.htm" - }, - "IfcMomentOfInertiaMeasure": { - "description": "A measure of moment of inertia.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmomentofinertiameasure.htm" - }, - "IfcMonetaryMeasure": { - "description": "A monetary measure is the value of an amount of money without regard to its currency.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcmonetarymeasure.htm" - }, - "IfcMonthInYearNumber": { - "description": "The position of the specified month in a year as defined in ISO 8601 (subcaluse 5.2.1).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcmonthinyearnumber.htm" - }, - "IfcMotorConnectionTypeEnum": { - "description": "The IfcMotorConnectionTypeEnum defines the range of different types of motor connection that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcmotorconnectiontypeenum.htm" - }, - "IfcNormalisedRatioMeasure": { - "description": "Dimensionless measure to express ratio values ranging from 0.0 to 1.0", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcnormalisedratiomeasure.htm" - }, - "IfcNullStyle": { - "description": "The null style type specifies, that a representation item is not styled.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcnullstyle.htm" - }, - "IfcNumericMeasure": { - "description": "A numeric measure is the numeric value of a physical quantity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcnumericmeasure.htm" - }, - "IfcObjectReferenceSelect": { - "description": "A select type, that holds a list of resource level entities that can be used as properties within a property set.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpropertyresource/lexical/ifcobjectreferenceselect.htm" - }, - "IfcObjectTypeEnum": { - "description": "This enumeration defines the applicable object categories (i.e. the subtypes at the 2^nd^ level of the IFC inheritance tree) . Attached to an object, it indicates to which subtype of IfcObject the entity referencing it would otherwise comply with.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifckernel/lexical/ifcobjecttypeenum.htm" - }, - "IfcObjectiveEnum": { - "description": "An IfcObjectiveEnum is an enumeration used to determine the objective for which purpose the constraint needs to be satisfied.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcconstraintresource/lexical/ifcobjectiveenum.htm" - }, - "IfcOccupantTypeEnum": { - "description": "IfcOccupantTypeEnum defines the types of occupant from which the type required can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedfacilitieselements/lexical/ifcoccupanttypeenum.htm" - }, - "IfcOrientationSelect": { - "description": "The IfcOrientationSelect is a selection between different ways to determine the orientation of a profile about the longitudinal axis.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcorientationselect.htm" - }, - "IfcOutletTypeEnum": { - "description": "The IfcOutletTypeEnum defines the range of different types of outlet that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcoutlettypeenum.htm" - }, - "IfcPHMeasure": { - "description": "A measure of the molar hydrogen ion concentration in a liquid (usually defined as the measure of acidity) in a range from 0 to 14.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcphmeasure.htm" - }, - "IfcParameterValue": { - "description": "A parameter value is the value which specifies the amount of a parameter in some parameter space.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcparametervalue.htm" - }, - "IfcPermeableCoveringOperationEnum": { - "description": "Enumeration defining the valid types of permeable coverings.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcarchitecturedomain/lexical/ifcpermeablecoveringoperationenum.htm" - }, - "IfcPhysicalOrVirtualEnum": { - "description": "This enumeration defines the different types of space boundaries in terms of its physical manifestation. A space boundary can either be physically dividing or can be a virtual divider.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcphysicalorvirtualenum.htm" - }, - "IfcPileConstructionEnum": { - "description": "Enumeration defining the construction type for piles. The type is mainly based on how the piles are used and manufactured. Some material information is mixed in because this affects the way the piles are used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralelementsdomain/lexical/ifcpileconstructionenum.htm" - }, - "IfcPileTypeEnum": { - "description": "Enumeration defining the pile type according to function.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralelementsdomain/lexical/ifcpiletypeenum.htm" - }, - "IfcPipeFittingTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a pipe fitting. This is a very basic categorization mechanism to generically identify the pipe fitting type. Subcategories of pipe fittings are not enumerated. The IfcpipeFittingTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcpipefittingtypeenum.htm" - }, - "IfcPipeSegmentTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a pipe segment. This is a very basic categorization mechanism to generically identify the pipe segment type. Subcategories of pipe segments are not enumerated. The IfcPipeSegmentTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcpipesegmenttypeenum.htm" - }, - "IfcPlanarForceMeasure": { - "description": "A measure of force on an area.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcplanarforcemeasure.htm" - }, - "IfcPlaneAngleMeasure": { - "description": "A plane angle measure is the value of an angle in a plane.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcplaneanglemeasure.htm" - }, - "IfcPlateTypeEnum": { - "description": "This enumeration defines the different types of planar elements an IfcPlateType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcplatetypeenum.htm" - }, - "IfcPointOrVertexPoint": { - "description": "The IfcPointOrVertexPoint provides the option to either select a geometric point (IfcPoint and subtypes) within a geometric model, or a vertex with associated point coordinates (IfcVertexPoint) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricconstraintresource/lexical/ifcpointorvertexpoint.htm" - }, - "IfcPositiveLengthMeasure": { - "description": "A positive length measure is a length measure that is greater than zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcpositivelengthmeasure.htm" - }, - "IfcPositivePlaneAngleMeasure": { - "description": "A positive plaPositive plane angle measure is a plane angle measure that is greater than zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcpositiveplaneanglemeasure.htm" - }, - "IfcPositiveRatioMeasure": { - "description": "A positive ratio measure is a ratio measure that is greater than zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcpositiveratiomeasure.htm" - }, - "IfcPowerMeasure": { - "description": "A measure of power required or used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcpowermeasure.htm" - }, - "IfcPresentableText": { - "description": "Definition from IAI: The IfcPresentableText is a text string used to capture the content of a text literal for the purpose of presentation. The _IfcPresentableText_can include multiple lines of text, then the line feed character LF, 0x0A, should be used to separate lines.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifcpresentabletext.htm" - }, - "IfcPresentationStyleSelect": { - "description": "The presentation style select is a selection of one of many kinds of styles, a different one for each kind of geometric representation item to be styled.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcpresentationstyleselect.htm" - }, - "IfcPressureMeasure": { - "description": "A measure of the quantity of a medium acting on a unit area.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcpressuremeasure.htm" - }, - "IfcProcedureTypeEnum": { - "description": "The IfcProcedureTypeEnum defines the range of different types of procedure that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprocessextension/lexical/ifcproceduretypeenum.htm" - }, - "IfcProfileTypeEnum": { - "description": "Definition from IAI: The enumeration defines whether the definition of a profile shape shall be geometrically resolved into a curve or into a surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprofileresource/lexical/ifcprofiletypeenum.htm" - }, - "IfcProjectOrderRecordTypeEnum": { - "description": "An IfcProjectOrderRecordTypeEnum is a designation of the type of event being recorded.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedmgmtelements/lexical/ifcprojectorderrecordtypeenum.htm" - }, - "IfcProjectOrderTypeEnum": { - "description": "An IfcProjectOrderTypeEnum is a list of the types of project order that may be identified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedmgmtelements/lexical/ifcprojectordertypeenum.htm" - }, - "IfcProjectedOrTrueLengthEnum": { - "description": "This enumeration type is needed for load definition and is only considered if the load values are given as global actions and if they define linear or planar loads.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcprojectedortruelengthenum.htm" - }, - "IfcPropertySourceEnum": { - "description": "This enumeration is used to qualify the life-cycle or design state of the properties contained in the entity and contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcpropertysourceenum.htm" - }, - "IfcProtectiveDeviceTypeEnum": { - "description": "The IfcProtectiveDeviceTypeEnum defines the range of different types of protective device available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcprotectivedevicetypeenum.htm" - }, - "IfcPumpTypeEnum": { - "description": "Defines general types of pumps. The IfcPumpTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcpumptypeenum.htm" - }, - "IfcRadioActivityMeasure": { - "description": "A measure of activity of radionuclide.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcradioactivitymeasure.htm" - }, - "IfcRailingTypeEnum": { - "description": "Enumeration defining the valid types of railings that can be predefined using the enumeration values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcrailingtypeenum.htm" - }, - "IfcRampFlightTypeEnum": { - "description": "This enumeration defines the different types of linear elements an IfcRampFlightType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcrampflighttypeenum.htm" - }, - "IfcRampTypeEnum": { - "description": "This enumeration defines the basic configuration of the ramp type in terms of the number and shape of ramp flights. The type also distinguished turns by landings. In addition the subdivision of the straight and changing direction ramps is included. The ramp configurations are given for ramps without and with one and two landings.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcramptypeenum.htm" - }, - "IfcRatioMeasure": { - "description": "A ratio measure is the value of the relation between two physical quantities that are of the same kind.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcratiomeasure.htm" - }, - "IfcReal": { - "description": "A defined type of simple data type REAL (required since a select type, i.e. IfcSimpleValue, cannot include directly simple types in its select list). In principle, the domain of IfcReal (being a Real) is all rational, irrational and scientific real numbers. Here the precision is unconstrained, but in practice it is implementation specific.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcreal.htm" - }, - "IfcReflectanceMethodEnum": { - "description": "The IfcReflectanceMethodEnum defines the range of different reflectance methods available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcreflectancemethodenum.htm" - }, - "IfcReinforcingBarRoleEnum": { - "description": "Enumeration defining standard types for the role, purpose or usage of the bar, i.e. the kind of loads and stresses they are intended to carry.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprofilepropertyresource/lexical/ifcreinforcingbarroleenum.htm" - }, - "IfcReinforcingBarSurfaceEnum": { - "description": "Enumeration indicating whether the bar has a plain or textured (ribbed) surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprofilepropertyresource/lexical/ifcreinforcingbarsurfaceenum.htm" - }, - "IfcResourceConsumptionEnum": { - "description": "This enumeration indicates how the resource is consumed during the use.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcconstructionmgmtdomain/lexical/ifcresourceconsumptionenum.htm" - }, - "IfcRibPlateDirectionEnum": { - "description": "This enumeration type specifies the axis which is used for the definition of the profile properties. This differentiation is only needed for the definition of profile properties of face members. The IfcRibPlateDirectionEnum type is referenced by the entity IfcRibPlateProfileProperties.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprofilepropertyresource/lexical/ifcribplatedirectionenum.htm" - }, - "IfcRoleEnum": { - "description": "Roles which may be played by an actor.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcactorresource/lexical/ifcroleenum.htm" - }, - "IfcRoofTypeEnum": { - "description": "This enumeration defines the basic configuration of the roof in terms of the different roof shapes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcrooftypeenum.htm" - }, - "IfcRotationalFrequencyMeasure": { - "description": "A measure of the number of cycles that an item revolves in unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcrotationalfrequencymeasure.htm" - }, - "IfcRotationalMassMeasure": { - "description": "The rotational mass measure denotes the inertia of a body with respect to angular acceleration.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcrotationalmassmeasure.htm" - }, - "IfcRotationalStiffnessMeasure": { - "description": "A measure of rotational stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcrotationalstiffnessmeasure.htm" - }, - "IfcSIPrefix": { - "description": "An SI prefix is the name of a prefix that may be associated with an SI unit. The definitions of SI prefixes are specified in ISO 1000 (clause 3).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsiprefix.htm" - }, - "IfcSIUnitName": { - "description": "An SI unit name is the name of an SI unit. The definitions of the names of SI units are specified in ISO 1000 (clause 2).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsiunitname.htm" - }, - "IfcSanitaryTerminalTypeEnum": { - "description": "The IfcSanitaryTerminalTypeEnum defines the range of different types of sanitary terminal that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcplumbingfireprotectiondomain/lexical/ifcsanitaryterminaltypeenum.htm" - }, - "IfcSecondInMinute": { - "description": "The second element of a specified time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcsecondinminute.htm" - }, - "IfcSectionModulusMeasure": { - "description": "A measure for the resistance of a cross section against bending or torsional moment. It is usually measured in m\\^3.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsectionmodulusmeasure.htm" - }, - "IfcSectionTypeEnum": { - "description": "An enumeration indicating whether a specific piece of a cross section is uniform or tapered in longitudinal direction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprofilepropertyresource/lexical/ifcsectiontypeenum.htm" - }, - "IfcSectionalAreaIntegralMeasure": { - "description": "The sectional area integral measure is typically used in torsional analysis. It is usually measured in m\\^5.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsectionalareaintegralmeasure.htm" - }, - "IfcSensorTypeEnum": { - "description": "The IfcSensorTypeEnum defines the range of different types of sensor that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcbuildingcontrolsdomain/lexical/ifcsensortypeenum.htm" - }, - "IfcSequenceEnum": { - "description": "This enumeration defines the different ways, in which a time lag is applied to a sequence between two processes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifckernel/lexical/ifcsequenceenum.htm" - }, - "IfcServiceLifeFactorTypeEnum": { - "description": "An IfcServiceLifeFactorTypeEnum is an enumerated list of the types of service life factor that can be applied and that modify the extent of the service life.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedfacilitieselements/lexical/ifcservicelifefactortypeenum.htm" - }, - "IfcServiceLifeTypeEnum": { - "description": "An IfcServiceLifeTypeEnum is an enumerated list of the types of service life of an artefact", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedfacilitieselements/lexical/ifcservicelifetypeenum.htm" - }, - "IfcShearModulusMeasure": { - "description": "A measure of shear modulus.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcshearmodulusmeasure.htm" - }, - "IfcShell": { - "description": "This type collects together, for reference when constructing more complex models, the subtypes which have the characteristics of a shell. A shell is a connected object of fixed dimensionality d = 0; 1; or 2, typically used to bound a region. The domain of a shell, if present, includes its bounds and 0 \u00a3X<\u00a5 .", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifctopologyresource/lexical/ifcshell.htm" - }, - "IfcSimpleValue": { - "description": "A select type for selecting between simple value types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsimplevalue.htm" - }, - "IfcSizeSelect": { - "description": "The size select is a selection of a specific positive length measure.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcsizeselect.htm" - }, - "IfcSlabTypeEnum": { - "description": "This enumeration defines the available predefined types of a slab. The IfcSlabTypeEnum can be used for slab occurrences, IfcSlab, and slab types, IfcSlabType. A special property set definition may be provided for each predefined type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcslabtypeenum.htm" - }, - "IfcSolidAngleMeasure": { - "description": "A solid angle measure is the value of an angle in a solid.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsolidanglemeasure.htm" - }, - "IfcSoundPowerMeasure": { - "description": "A sound power measure is a measure of total radiated noise with units of decibels with a reference value of picowatts.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsoundpowermeasure.htm" - }, - "IfcSoundPressureMeasure": { - "description": "A sound pressure measure is a measure of the pressure fluctuations superimposed over the ambient pressure level with units of decibels with a reference value of micropascals.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcsoundpressuremeasure.htm" - }, - "IfcSoundScaleEnum": { - "description": "This enumeration defines the different sound scales:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcsoundscaleenum.htm" - }, - "IfcSpaceHeaterTypeEnum": { - "description": "Enumeration defining the functional type of space heater. The IfcSpaceHeaterTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcspaceheatertypeenum.htm" - }, - "IfcSpaceTypeEnum": { - "description": "This enumeration defines the available generic types for IfcSpaceType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifcspacetypeenum.htm" - }, - "IfcSpecificHeatCapacityMeasure": { - "description": "Defines the specific heat of material: The heat energy absorbed per temperature unit.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcspecificheatcapacitymeasure.htm" - }, - "IfcSpecularExponent": { - "description": "The IfcSpecularExponent defines the datatype for exponent determining the sharpness of the 'reflection'. reflection is made sharper with large values of the exponent, such as 10.0. Small values, such as 1.0, decrease the specular fall-off.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcspecularexponent.htm" - }, - "IfcSpecularHighlightSelect": { - "description": "The IfcSpecularHighlightSelect defines the selectable types of value for specular highlight sharpness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcspecularhighlightselect.htm" - }, - "IfcSpecularRoughness": { - "description": "The IfcSpecularRoughness defines the datatype for the reflection resulting from the roughness of a surface through the height of surface impurities where the specular highlight is made sharper with small values for the roughness, such as 0.1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcspecularroughness.htm" - }, - "IfcStackTerminalTypeEnum": { - "description": "An IfcStackTerminalTypeEnum defines the range of different types of stack terminal that can be specified for use at the top of a vertical stack subsystem.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcplumbingfireprotectiondomain/lexical/ifcstackterminaltypeenum.htm" - }, - "IfcStairFlightTypeEnum": { - "description": "This enumeration defines the different types of stair flights an IfcStairFlightType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcstairflighttypeenum.htm" - }, - "IfcStairTypeEnum": { - "description": "This enumeration defines the basic configuration of the stair type in terms of the number of stair flights and the number of landings. The type also distinguished turns by windings or by landings. In addition the subdivision of the straight and changing direction stairs is included. The stair configurations are given for stairs without and with one, two or three landings.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcstairtypeenum.htm" - }, - "IfcStateEnum": { - "description": "Enumeration identifying the state or accessibility of the object (e.g., read/write, locked, etc.). This concept was initially introduced in IFC 2.0 as IfcModifiedFlag of type BINARY(3) FIXED and has been modified in R2x to an enumeration. It was initially introduced as a first step towards providing facilities for partial model exchange from a server as requested by the IFC implementers. It is intended for use primarily by a model server so that an application can identify the state of the object.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcutilityresource/lexical/ifcstateenum.htm" - }, - "IfcStructuralActivityAssignmentSelect": { - "description": "This type definition shall be used to distinguish between a reference to an instance either of IfcStructuralItem or IfcBuildingElement. The IfcStructuralActivityAssignmentSelect type is referenced by the entity IfcRelConnectsStructuralActivity which defines the connection between activities (IfcStructuralActivity) and the loaded element.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcstructuralactivityassignmentselect.htm" - }, - "IfcStructuralCurveTypeEnum": { - "description": "This type definition shall be used to distinguish between different types of structural 'curve' members, such as cables. The IfcStructuralCurveTypeEnum type is referenced by the entity IfcStructuralCurveMember.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcstructuralcurvetypeenum.htm" - }, - "IfcStructuralSurfaceTypeEnum": { - "description": "This type definition shall be used to distinguish between different types of structural surface members, such as the typical mechanical function of walls, slabs and shells.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralanalysisdomain/lexical/ifcstructuralsurfacetypeenum.htm" - }, - "IfcSurfaceOrFaceSurface": { - "description": "The IfcSurfaceOrFaceSurface provides the option to either select a geometric surface (IfcSurface and subtypes) within a geometric model, or a face with associated surface geometry and coordinates (IfcFaceSurface) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometricconstraintresource/lexical/ifcsurfaceorfacesurface.htm" - }, - "IfcSurfaceSide": { - "description": "Denotion of whether negative, positive or both sides of a surface are being referenced.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcsurfaceside.htm" - }, - "IfcSurfaceStyleElementSelect": { - "description": "The surface style element select is a selection of the different surface styles to use in the presentation of the side of a surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcsurfacestyleelementselect.htm" - }, - "IfcSurfaceTextureEnum": { - "description": "The IfcSurfaceTextureEnum defines the range of different types of image or pixel maps available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcsurfacetextureenum.htm" - }, - "IfcSwitchingDeviceTypeEnum": { - "description": "The IfcSwitchingDeviceTypeEnum defines the range of different types of switch that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifcswitchingdevicetypeenum.htm" - }, - "IfcSymbolStyleSelect": { - "description": "The symbol style select allows for the selection of styles to be assigned to an annotated symbol.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifcsymbolstyleselect.htm" - }, - "IfcTankTypeEnum": { - "description": "Enumeration defining the typical types of tanks. The IfcTankTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifctanktypeenum.htm" - }, - "IfcTemperatureGradientMeasure": { - "description": "The temperature gradient measures the difference of a temperature per lenght, as for instance used in an external wall or its layers. It is usually measured in K/m.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifctemperaturegradientmeasure.htm" - }, - "IfcTendonTypeEnum": { - "description": "Enumeration defining the types of tendons.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcstructuralelementsdomain/lexical/ifctendontypeenum.htm" - }, - "IfcText": { - "description": "A text is an alphanumeric string of characters which is intended to be read and understood by a human being. It is for information purposes only.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifctext.htm" - }, - "IfcTextAlignment": { - "description": "Definition from CSS1 (W3C Recommendation): This property describes how text is aligned within the element. The actual justification algorithm used is user agent and human language dependent. If 'justify' is not supported, the user agent will supply a replacement. Typically, this will be 'left' for western languages. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifctextalignment.htm" - }, - "IfcTextDecoration": { - "description": "Definition from CSS1 (W3C Recommendation): This property describes decorations that are added to the text of an element. A value of 'blink' causes the text to blink.. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifctextdecoration.htm" - }, - "IfcTextFontName": { - "description": "Definition from CSS1 (W3C Recommendation): The value is a font family name and/or generic family name. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifctextfontname.htm" - }, - "IfcTextFontSelect": { - "description": "The IfcTextFontSelect allows for either a predefined text font, a text font model or an externally defined text font to be used to describe the font of a text literal. The definition of the text font model is based on W3C TR Cascading Style Sheet Version 1, whereas the definition of predefined text font is based on ISO 10303.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationresource/lexical/ifctextfontselect.htm" - }, - "IfcTextPath": { - "description": "The text path determines the direction of the text characters in respect to each other.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationdefinitionresource/lexical/ifctextpath.htm" - }, - "IfcTextStyleSelect": { - "description": "Definition from IAI: The text style select allows for the selection of styles to be assigned to an annotated text. The text style determines the text model that affect the visual presentation of characters, spaces, words, and paragraphs. There are two choices:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifctextstyleselect.htm" - }, - "IfcTextTransformation": { - "description": "Definition from CSS1 (W3C Recommendation): This property describes how the cases of characters are handled. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcpresentationappearanceresource/lexical/ifctexttransformation.htm" - }, - "IfcThermalAdmittanceMeasure": { - "description": "The measure of the ability of a surface to smooth out temperature variations.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcthermaladmittancemeasure.htm" - }, - "IfcThermalConductivityMeasure": { - "description": "A measure of thermal conductivity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcthermalconductivitymeasure.htm" - }, - "IfcThermalExpansionCoefficientMeasure": { - "description": "A measure of the thermal expansion coefficient of a material, which expresses its elongation (as a ratio) per temperature difference. It is usually measured in 1/K. A positive elongation per (positive) rise of temperature is expressed by a positive value.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcthermalexpansioncoefficientmeasure.htm" - }, - "IfcThermalLoadSourceEnum": { - "description": "This enumeration defines the various sources of thermal gains or losses for spaces or zones, derived from various use cases:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcthermalloadsourceenum.htm" - }, - "IfcThermalLoadTypeEnum": { - "description": "This enumeration defines the type of thermal load for spaces or zones, as derived from various use cases:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgserviceelements/lexical/ifcthermalloadtypeenum.htm" - }, - "IfcThermalResistanceMeasure": { - "description": "A measure of the resistance offered by a body to the flow of energy.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcthermalresistancemeasure.htm" - }, - "IfcThermalTransmittanceMeasure": { - "description": "A measure of the rate at which energy is transmitted through a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcthermaltransmittancemeasure.htm" - }, - "IfcThermodynamicTemperatureMeasure": { - "description": "A thermodynamic temperature measure is the value for the degree of heat of a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcthermodynamictemperaturemeasure.htm" - }, - "IfcTimeMeasure": { - "description": "A time measure is the value of the duration of periods.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifctimemeasure.htm" - }, - "IfcTimeSeriesDataTypeEnum": { - "description": "The IfcTimeSeriesDataTypeEnum describes a type of time series data and is used to determine a value during the time series which is not explicitly specified:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifctimeseriesresource/lexical/ifctimeseriesdatatypeenum.htm" - }, - "IfcTimeSeriesScheduleTypeEnum": { - "description": "Defines the type of time series schedule, such as daily, weekly, monthly or annually.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifccontrolextension/lexical/ifctimeseriesscheduletypeenum.htm" - }, - "IfcTimeStamp": { - "description": "An indication of date and time by measuring the number of seconds which have elapsed since the beginning of the year 1970.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifctimestamp.htm" - }, - "IfcTorqueMeasure": { - "description": "A measure of the torque or moment of a couple.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifctorquemeasure.htm" - }, - "IfcTransformerTypeEnum": { - "description": "The IfcTransformerTypeEnum defines the range of different types of transformer that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcelectricaldomain/lexical/ifctransformertypeenum.htm" - }, - "IfcTransitionCode": { - "description": "This type conveys the continuity properties of a composite curve or surface. The continuity referred to is geometric, not parametric continuity. For example, in ContSameGradient the tangent vectors of successive segments will have the same direction, but may have different magnitude.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifctransitioncode.htm" - }, - "IfcTransportElementTypeEnum": { - "description": "This enumeration is used to identify primary transport element types. The IfcTransportElementTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcproductextension/lexical/ifctransportelementtypeenum.htm" - }, - "IfcTrimmingPreference": { - "description": "This type is used to describe the preferred way of trimming a parametric curve where the trimming is multiply defined.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifctrimmingpreference.htm" - }, - "IfcTrimmingSelect": { - "description": "This select type identifies the two possible ways of trimming a parametric curve; by a Cartesian point on the curve, or by a REAL number defining a parameter value within the parametric range of the curve.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifctrimmingselect.htm" - }, - "IfcTubeBundleTypeEnum": { - "description": "Enumeration defining the typical types of tube bundles. The IfcTubeBundleTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifctubebundletypeenum.htm" - }, - "IfcUnit": { - "description": "A unit is a physical quantity, with a value of one, which is used as a standard in terms of which other quantities are expressed.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcunit.htm" - }, - "IfcUnitEnum": { - "description": "An enumeration type for allowed unit types of IfcNamedUnit.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcunitenum.htm" - }, - "IfcUnitaryEquipmentTypeEnum": { - "description": "Enumeration defining the functional type of unitary equipment. The IfcUnitaryEquipmentTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcunitaryequipmenttypeenum.htm" - }, - "IfcValue": { - "description": "A select type for selecting between more specialised select types IfcSimpleValue, IfcMeasureValue and IfcDerivedMeasureValue.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcvalue.htm" - }, - "IfcValveTypeEnum": { - "description": "The IfcValveTypeEnum defines the range of different types of valve that can be specified. These are typically used in conjunction with Pset_ValveTypeCommon, which contains common properties for all valve types. The IfcValveTypeEnum contains:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcvalvetypeenum.htm" - }, - "IfcVaporPermeabilityMeasure": { - "description": "A measure of vapor permeability.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcvaporpermeabilitymeasure.htm" - }, - "IfcVectorOrDirection": { - "description": "This type is used to identify the types of entity which can participate in vector computations.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcgeometryresource/lexical/ifcvectorordirection.htm" - }, - "IfcVibrationIsolatorTypeEnum": { - "description": "Enumeration defining the typical types of vibration isolators. The IfcVibrationIsolatorTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifchvacdomain/lexical/ifcvibrationisolatortypeenum.htm" - }, - "IfcVolumeMeasure": { - "description": "A volume measure is the value of the solid content of a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcvolumemeasure.htm" - }, - "IfcVolumetricFlowRateMeasure": { - "description": "A measure of the volume of a medium flowing per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcvolumetricflowratemeasure.htm" - }, - "IfcWallTypeEnum": { - "description": "This enumeration defines the different types of walls an IfcWallType object can fulfill:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcwalltypeenum.htm" - }, - "IfcWarpingConstantMeasure": { - "description": "A measure for the warping constant or warping resistance of a cross section under torsional loading. It is usually measured in m\\^6.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcwarpingconstantmeasure.htm" - }, - "IfcWarpingMomentMeasure": { - "description": "The warping moment measure is a measure for the warping moment, which occurs in warping torsional analysis. It is usually measured in kN*m\\^2.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcmeasureresource/lexical/ifcwarpingmomentmeasure.htm" - }, - "IfcWasteTerminalTypeEnum": { - "description": "IfcWasteTerminalTypeEnum", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcplumbingfireprotectiondomain/lexical/ifcwasteterminaltypeenum.htm" - }, - "IfcWindowPanelOperationEnum": { - "description": "This enumeration defines the basic ways to describe how window panels operate.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcwindowpaneloperationenum.htm" - }, - "IfcWindowPanelPositionEnum": { - "description": "This enumeration defines the basic configuration of the window type in terms of the location of window panels. The window configurations are given for windows with one, two or three panels (including fixed panels). It corresponds to the OperationType of the IfcWindowStyle definition, which references the IfcWindowPanelProperties.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcwindowpanelpositionenum.htm" - }, - "IfcWindowStyleConstructionEnum": { - "description": "This enumeration defines the basic types of construction of windows. The construction type relates to the main material (or material combination) used for making the window.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcwindowstyleconstructionenum.htm" - }, - "IfcWindowStyleOperationEnum": { - "description": "This enumeration defines the basic configuration of the window type in terms of the number of window panels and the subdivision of the total window. The window configurations are given for windows with one, two or three panels (including fixed panels).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcsharedbldgelements/lexical/ifcwindowstyleoperationenum.htm" - }, - "IfcWorkControlTypeEnum": { - "description": "An IfcWorkControlTypeEnum is an enumeration data type that specifies the types of work control from which the relevant control can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcprocessextension/lexical/ifcworkcontroltypeenum.htm" - }, - "IfcYearNumber": { - "description": "The year as defined in Gregorian Calendar.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC2x3/TC1/HTML/ifcdatetimeresource/lexical/ifcyearnumber.htm" - } -} \ No newline at end of file diff --git a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_properties.json b/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_properties.json index 16db2f158c..ab84c8e6bc 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_properties.json +++ b/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_properties.json @@ -1,6 +1,5 @@ { "Pset_ActionRequest": { - "description": "An action request is a request for an action to fulfill a need.", "properties": { "RequestComments": { "description": "Comments that may be made on the request." @@ -15,7 +14,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_actionrequest.htm" }, "Pset_ActorCommon": { - "description": "A property set that enables further classification of actors, including the ability to give a number of actors to be designated as a population, the number being specified as a property to be dealt with as a single value rather than having to aggregate a number of instances of IfcActor.", "properties": { "Category": { "description": "Designation of the category into which the actors in the population belong." @@ -30,7 +28,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/pset/pset_actorcommon.htm" }, "Pset_ActuatorPHistory": { - "description": "Properties for history of actuators.", "properties": { "Position": { "description": "Indicates position of the actuator over time where 0.0 is fully closed and 1.0 is fully open." @@ -45,7 +42,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatorphistory.htm" }, "Pset_ActuatorTypeCommon": { - "description": "Actuator type common attributes.", "properties": { "Application": { "description": "Indicates application of actuator." @@ -66,7 +62,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatortypecommon.htm" }, "Pset_ActuatorTypeElectricActuator": { - "description": "A device that electrically actuates a control element.", "properties": { "ActuatorInputPower": { "description": "Maximum input power requirement." @@ -78,7 +73,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatortypeelectricactuator.htm" }, "Pset_ActuatorTypeHydraulicActuator": { - "description": "A device that hydraulically actuates a control element.", "properties": { "InputFlowrate": { "description": "Maximum hydraulic flowrate requirement." @@ -90,7 +84,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatortypehydraulicactuator.htm" }, "Pset_ActuatorTypeLinearActuation": { - "description": "Characteristics of linear actuation of an actuator History: Replaces Pset_LinearActuator", "properties": { "Force": { "description": "Indicates the maximum close-off force for the actuator." @@ -102,7 +95,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatortypelinearactuation.htm" }, "Pset_ActuatorTypePneumaticActuator": { - "description": "A device that pneumatically actuates a control element", "properties": { "InputFlowrate": { "description": "Maximum input control air flowrate requirement." @@ -114,7 +106,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatortypepneumaticactuator.htm" }, "Pset_ActuatorTypeRotationalActuation": { - "description": "Characteristics of rotational actuation of an actuator History: Replaces Pset_RotationalActuator", "properties": { "RangeAngle": { "description": "Indicates the maximum rotation the actuator must traverse." @@ -126,7 +117,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_actuatortyperotationalactuation.htm" }, "Pset_AirSideSystemInformation": { - "description": "Attributes that apply to an air side HVAC system.", "properties": { "AirSideSystemDistributionType": { "description": "This enumeration defines the basic types of air side systems (e.g., SingleDuct, DualDuct, Multizone, etc.)." @@ -186,7 +176,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_airsidesysteminformation.htm" }, "Pset_AirTerminalBoxPHistory": { - "description": "Air terminal box performance history attributes.", "properties": { "AirflowCurve": { "description": "Air flowrate versus damper position relationship;airflow = f ( valve position)." @@ -204,7 +193,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airterminalboxphistory.htm" }, "Pset_AirTerminalBoxTypeCommon": { - "description": "Air terminal box type common attributes.", "properties": { "AirPressureRange": { "description": "Allowable air static pressure range at the entrance of the air terminal box." @@ -255,7 +243,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airterminalboxtypecommon.htm" }, "Pset_AirTerminalOccurrence": { - "description": "Air terminal occurrence attributes attached to an instance of IfcAirTerminal.", "properties": { "AirFlowRate": { "description": "The actual airflow rate as designed." @@ -270,7 +257,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airterminaloccurrence.htm" }, "Pset_AirTerminalPHistory": { - "description": "Air terminal performance history common attributes.", "properties": { "AirFlowRate": { "description": "Volumetric flow rate." @@ -297,7 +283,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airterminalphistory.htm" }, "Pset_AirTerminalTypeCommon": { - "description": "Air terminal type common attributes. SoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirDiffusionPerformanceIndex": { "description": "The Air Diffusion Performance Index (ADPI) is used for cooling mode conditions. If several measurements of air velocity and air temperature are made throughout the occupied zone of a space, the ADPI is the percentage of locations where measurements were taken that meet the specifications for effective draft temperature and air velocity." @@ -381,7 +366,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airterminaltypecommon.htm" }, "Pset_AirToAirHeatRecoveryPHistory": { - "description": "Air to Air Heat Recovery performance history common attributes.", "properties": { "AirPressureDropCurves": { "description": "Air pressure drop as function of air flow rate." @@ -420,7 +404,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airtoairheatrecoveryphistory.htm" }, "Pset_AirToAirHeatRecoveryTypeCommon": { - "description": "Air to Air Heat Recovery type common attributes.", "properties": { "HasDefrost": { "description": "has the heat exchanger has defrost function or not." @@ -447,7 +430,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_airtoairheatrecoverytypecommon.htm" }, "Pset_AlarmPHistory": { - "description": "Properties for history of alarm values.", "properties": { "Acknowledge": { "description": "Indicates acknowledgement status where False indicates acknowlegement is required and outstanding, True indicates condition has been acknowedged, and Unknown indicates no acknowledgement is required. Upon resetting the condition, then acknowledgement reverts to Unknown." @@ -468,7 +450,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_alarmphistory.htm" }, "Pset_AlarmTypeCommon": { - "description": "Alarm type common attributes.", "properties": { "Condition": { "description": "Table mapping alarm condition identifiers to descriptive labels, which may be used for interpreting Pset_AlarmPHistory.Condition." @@ -483,7 +464,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_alarmtypecommon.htm" }, "Pset_AnnotationContourLine": { - "description": "Specifies parameters of a standard curve that has a single, consistent measure value.", "properties": { "ContourValue": { "description": "Value of the elevation of the contour above or below a reference plane." @@ -492,7 +472,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_annotationcontourline.htm" }, "Pset_AnnotationLineOfSight": { - "description": "Specifies the properties of the line of sight at a point of connection between two elements. Typically used to define the line of sight visibility at the junction between two roads (particularly between an access road and a public road).", "properties": { "RoadVisibleDistanceLeft": { "description": "Distance visible to the left of the access." @@ -513,7 +492,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_annotationlineofsight.htm" }, "Pset_AnnotationSurveyArea": { - "description": "Specifies particular properties of survey methods to be assigned to survey point set or resulting surface patches", "properties": { "AccuracyQualityExpected": { "description": "A measure of the accuracy quality of survey points as expected expressed in percentage terms." @@ -528,7 +506,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_annotationsurveyarea.htm" }, "Pset_Asset": { - "description": "An asset is a uniquely identifiable element which has a financial value and against which maintenance actions are recorded.", "properties": { "AssetAccountingType": { "description": "Identifies the predefined types of risk from which the type required may be set." @@ -543,7 +520,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_asset.htm" }, "Pset_AudioVisualAppliancePHistory": { - "description": "Captures realtime information for audio-video devices, such as for security camera footage and retail information displays.", "properties": { "AudioVolume": { "description": "Indicates the audio volume level where the integer level corresponds to an entry or interpolation within Pset_AudioVisualApplianceTypeCommon.AudioVolume." @@ -561,7 +537,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancephistory.htm" }, "Pset_AudioVisualApplianceTypeAmplifier": { - "description": "An audio-visual amplifier is a device that renders audio from a single external source connected from a port.", "properties": { "AmplifierType": { "description": "Indicates the type of amplifier." @@ -576,7 +551,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypeamplifier.htm" }, "Pset_AudioVisualApplianceTypeCamera": { - "description": "An audio-visual camera is a device that captures video, such as for security.", "properties": { "CameraType": { "description": "Indicates the type of camera." @@ -618,7 +592,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypecamera.htm" }, "Pset_AudioVisualApplianceTypeCommon": { - "description": "An audio-visual appliance is a device that renders or captures audio and/or video.", "properties": { "AudioVolume": { "description": "Indicates discrete audio volume levels and corresponding sound power offsets, if applicable. Missing values may be interpolated." @@ -636,7 +609,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypecommon.htm" }, "Pset_AudioVisualApplianceTypeDisplay": { - "description": "An audio-visual display is a device that renders video from a screen.", "properties": { "AudioMode": { "description": "Indicates audio sound modes and corresponding labels, if applicable." @@ -684,7 +656,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypedisplay.htm" }, "Pset_AudioVisualApplianceTypePlayer": { - "description": "An audio-visual player is a device that plays stored media into a stream of audio and/or video, such as camera footage in security systems, background audio in retail areas, or media presentations in conference rooms or theatres.", "properties": { "PlayerMediaEject": { "description": "Indicates whether the media can be ejected from the player (if physical media)." @@ -699,7 +670,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypeplayer.htm" }, "Pset_AudioVisualApplianceTypeProjector": { - "description": "An audio-visual projector is a device that projects video to a surface.", "properties": { "ProjectorType": { "description": "Indicates the type of projector." @@ -723,7 +693,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypeprojector.htm" }, "Pset_AudioVisualApplianceTypeReceiver": { - "description": "An audio-visual receiver is a device that switches audio and/or video from multiple sources, including external sources connected from ports and internal aggregated sources.", "properties": { "AudioAmplification": { "description": "Indicates audio amplification frequency ranges." @@ -738,7 +707,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypereceiver.htm" }, "Pset_AudioVisualApplianceTypeSpeaker": { - "description": "An audio-visual speaker is a device that converts amplified audio signals into sound waves.", "properties": { "FrequencyResponse": { "description": "Indicates the output over a specified range of frequencies." @@ -759,7 +727,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypespeaker.htm" }, "Pset_AudioVisualApplianceTypeTuner": { - "description": "An audio-visual tuner is a device that demodulates a signal into a stream of audio and/or video.", "properties": { "TunerChannel": { "description": "Indicates the tuner channels, if applicable." @@ -777,7 +744,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_audiovisualappliancetypetuner.htm" }, "Pset_BeamCommon": { - "description": "Properties common to the definition of all occurrence and type objects of beam.", "properties": { "FireRating": { "description": "Fire rating for the element. It is given according to the national fire safety classification." @@ -810,7 +776,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_beamcommon.htm" }, "Pset_BoilerPHistory": { - "description": "Boiler performance history common attributes. WaterQuality attribute deleted in IFC2x2 Pset Addendum: Use IfcWaterProperties instead. CombustionProductsMaximulLoad and CombustionProductsPartialLoad attributes deleted in IFC2x2 Pset Addendum: Use IfcProductsOfCombustionProperties instead.", "properties": { "AuxiliaryEnergyConsumption": { "description": "Boiler secondary energy source consumption (i.e., the electricity consumed by electrical devices such as fans and pumps)." @@ -843,7 +808,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_boilerphistory.htm" }, "Pset_BoilerTypeCommon": { - "description": "Boiler type common attributes. SoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. PrimaryEnergySource and AuxiliaryEnergySource attributes deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead.", "properties": { "EnergySource": { "description": "Enumeration defining the energy source or fuel cumbusted to generate heat." @@ -888,7 +852,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_boilertypecommon.htm" }, "Pset_BoilerTypeSteam": { - "description": "Steam boiler type common attributes.", "properties": { "HeatOutput": { "description": "Total nominal heat output as listed by the Boiler manufacturer. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure) and OutletTemperature(IfcThermodynamicTemperatureMeasure) in DefiningValues, and HeatOutput(IfcEnergyMeasure) in DefinedValues. For example, DefiningValues(InletTemp, OutletTemp), DefinedValues(null, HeatOutput). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." @@ -903,7 +866,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_boilertypesteam.htm" }, "Pset_BoilerTypeWater": { - "description": "Water boiler type common attributes.", "properties": { "HeatOutput": { "description": "Total nominal heat output as listed by the Boiler manufacturer. For water boilers, it is a function of inlet versus outlet temperature. For steam boilers, it is a function of inlet temperature versus steam pressure. Note: as two variables are used, DefiningValues and DefinedValues are null, and values are stored in IfcTable in the following order: InletTemperature(IfcThermodynamicTemperatureMeasure), OutletTemperature(IfcThermodynamicTemperatureMeasure), HeatOutput(IfcEnergyMeasure). The IfcTable is related to IfcPropertyTableValue using IfcMetric and IfcPropertyConstraintRelationship." @@ -915,7 +877,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_boilertypewater.htm" }, "Pset_BuildingCommon": { - "description": "Properties common to the definition of all instances of IfcBuilding. Please note that several building attributes are handled directly at the IfcBuilding instance, the building number (or short name) by IfcBuilding.Name, the building name (or long name) by IfcBuilding.LongName, and the description (or comments) by IfcBuilding.Description. Actual building quantities, like building perimeter, building area and building volume are provided by IfcElementQuantity, and the building classification according to national building code by IfcClassificationReference.", "properties": { "BuildingID": { "description": "A unique identifier assigned to a building. A temporary identifier is initially assigned at the time of making a planning application. This temporary identifier is changed to a permanent identifier when the building is registered into a statutory buildings and properties database." @@ -979,7 +940,6 @@ } }, "Pset_BuildingElementProxyCommon": { - "description": "Properties common to the definition of all instances of IfcBuildingElementProxy.", "properties": { "FireRating": { "description": "Fire rating for the element. It is given according to the national fire safety classification." @@ -1003,7 +963,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_buildingelementproxycommon.htm" }, "Pset_BuildingElementProxyProvisionForVoid": { - "description": "Properties common to the definition of a provision for void as a special type of an instance of IfcBuildingElementProxy. A provision for void is a spatial provision that might be resolved into a void in a building element. The properties carry requested values.", "properties": { "Depth": { "description": "The requested depth or thickness of the provision for void." @@ -1027,7 +986,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_buildingelementproxyprovisionforvoid.htm" }, "Pset_BuildingStoreyCommon": { - "description": "Properties common to the definition of all instances of IfcBuildingStorey. Please note that several building attributes are handled directly at the IfcBuildingStorey instance, the building storey number (or short name) by IfcBuildingStorey.Name, the building storey name (or long name) by IfcBuildingStorey.LongName, and the description (or comments) by IfcBuildingStorey.Description. Actual building storey quantities, like building storey perimeter, building storey area and building storey volume are provided by IfcElementQuantity, and the building storey classification according to national building code by IfcClassificationReference.", "properties": { "AboveGround": { "description": "Indication whether this building storey is fully above ground (TRUE), or below ground (FALSE), or partially above and below ground (UNKNOWN) - as in sloped terrain." @@ -1057,7 +1015,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_buildingstoreycommon.htm" }, "Pset_BuildingSystemCommon": { - "description": "Properties common to the definition of building systems.", "properties": { "Reference": { "description": "Reference ID for this specified instance of building system in this project (e.g. 'TRA/EL1'), The reference values depend on the local code of practice." @@ -1066,7 +1023,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_buildingsystemcommon.htm" }, "Pset_BuildingUse": { - "description": "Provides information on on the real estate context of the building of interest both current and anticipated.", "properties": { "MarketCategory": { "description": "Category of use e.g. residential, commercial, recreation etc." @@ -1108,7 +1064,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_buildinguse.htm" }, "Pset_BuildingUseAdjacent": { - "description": "Provides information on adjacent buildings and their uses to enable their impact on the building of interest to be determined. Note that for each instance of the property set used, where there is an existence of risk, there will be an instance of the property set Pset_Risk (q.v).", "properties": { "MarketCategory": { "description": "Category of use e.g. residential, commercial, recreation etc." @@ -1126,7 +1081,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_buildinguseadjacent.htm" }, "Pset_BurnerTypeCommon": { - "description": "Common attributes of burner types.", "properties": { "EnergySource": { "description": "Enumeration defining the energy source or fuel cumbusted to generate heat." @@ -1141,7 +1095,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_burnertypecommon.htm" }, "Pset_CableCarrierFittingTypeCommon": { - "description": "Common properties for cable carrier fittings.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -1153,7 +1106,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablecarrierfittingtypecommon.htm" }, "Pset_CableCarrierSegmentTypeCableLadderSegment": { - "description": "An open carrier segment on which cables are carried on a ladder structure.", "properties": { "LadderConfiguration": { "description": "Description of the configuration of the ladder structure used." @@ -1168,7 +1120,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablecarriersegmenttypecableladdersegment.htm" }, "Pset_CableCarrierSegmentTypeCableTraySegment": { - "description": "An (typically) open carrier segment onto which cables are laid.", "properties": { "HasCover": { "description": "Indication of whether the cable tray has a cover (=TRUE) or not (= FALSE). By default, this value should be set to FALSE.." @@ -1183,7 +1134,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablecarriersegmenttypecabletraysegment.htm" }, "Pset_CableCarrierSegmentTypeCableTrunkingSegment": { - "description": "An enclosed carrier segment with one or more compartments into which cables are placed.", "properties": { "NominalHeight": { "description": "The nominal height of the segment." @@ -1198,7 +1148,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablecarriersegmenttypecabletrunkingsegment.htm" }, "Pset_CableCarrierSegmentTypeCommon": { - "description": "Common properties for cable carrier segments.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -1210,7 +1159,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablecarriersegmenttypecommon.htm" }, "Pset_CableCarrierSegmentTypeConduitSegment": { - "description": "An enclosed tubular carrier segment through which cables are pulled.", "properties": { "ConduitShapeType": { "description": "The shape of the conduit segment." @@ -1228,7 +1176,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablecarriersegmenttypeconduitsegment.htm" }, "Pset_CableFittingTypeCommon": { - "description": "Common properties for cable fittings.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -1240,7 +1187,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablefittingtypecommon.htm" }, "Pset_CableSegmentOccurrence": { - "description": "Properties for the occurrence of an electrical cable, core or conductor that conforms to a type as specified by an appropriate type definition within IFC. NOTE: Maximum allowed voltage drop should be derived from the property within Pset_ElectricalCircuit.", "properties": { "CarrierStackNumber": { "description": "Number of carrier segments (tray, ladder etc.) that are vertically stacked (vertical is measured as the z-axis of the local coordinate system of the carrier segment)." @@ -1288,7 +1234,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablesegmentoccurrence.htm" }, "Pset_CableSegmentTypeBusBarSegment": { - "description": "Properties specific to busbar cable segments.", "properties": { "IsHorizontalBusbar": { "description": "Indication of whether the busbar occurrences are routed horizontally (= TRUE) or vertically (= FALSE)." @@ -1297,7 +1242,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablesegmenttypebusbarsegment.htm" }, "Pset_CableSegmentTypeCableSegment": { - "description": "Electrical cable with a specific purpose to lead electric current within a circuit or any other electric construction. Includes all types of electric cables, mainly several electrical segments wrapped together, e.g. cable, tube, busbar. Note that the number of conductors within a cable is determined by an aggregation mechanism that aggregates the conductors within the cable. A single-core cable is defined in IEV 461-06-02 as being 'a cable having only one core'; a multiconductor cable is defined in IEV 461-06-03 as b eing 'a cable having more than one conductor, some of which may be uninsulated'; a mulicore cable is defined in IEV 461-06-04 as being 'a cable having more than one core'.", "properties": { "FunctionReliable": { "description": "Cable/bus maintain given properties/functions over a given (tested) time and conditions. According to IEC standard." @@ -1348,7 +1292,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablesegmenttypecablesegment.htm" }, "Pset_CableSegmentTypeCommon": { - "description": "Properties for the definitions of electrical cable segments.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -1360,7 +1303,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablesegmenttypecommon.htm" }, "Pset_CableSegmentTypeConductorSegment": { - "description": "An electrical conductor is a single linear element with the specific purpose to lead electric current. The core of one lead is normally single wired or multiwired which are intertwined. According to IEC 60050: IEV 195-01-07, a conductor is a conductive part intended to carry a specified electric current.", "properties": { "Construction": { "description": "Purpose of informing on how the vonductor is constucted (interwined or solid). I.e. Solid (IEV 461-01-06), stranded (IEV 461-01-07), solid-/finestranded(IEV 461-01-11) (not flexible/flexible)." @@ -1381,7 +1323,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablesegmenttypeconductorsegment.htm" }, "Pset_CableSegmentTypeCoreSegment": { - "description": "An assembly comprising a conductor with its own insulation (and screens if any)", "properties": { "CoreIdentifier": { "description": "The core identification used Identifiers may be used such as by color (Black, Brown, Grey) or by number (1, 2, 3) or by IEC phase reference (L1, L2, L3) etc." @@ -1423,7 +1364,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_cablesegmenttypecoresegment.htm" }, "Pset_ChillerPHistory": { - "description": "Chiller performance history attributes.", "properties": { "Capacity": { "description": "The product of the ideal capacity and the overall volumetric efficiency of the compressor." @@ -1438,7 +1378,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_chillerphistory.htm" }, "Pset_ChillerTypeCommon": { - "description": "Chiller type common attributes.", "properties": { "CapacityCurve": { "description": "Chiller cooling capacity is a function of condensing temperature and evaporating temperature, data is in table form, Capacity = f (TempCon, TempEvp), capacity = a1+b1*Tei+c1*Tei\\^2+d1*Tci+e1*Tci\\^2+f1*Tei*Tci. This table uses multiple input variables; to represent, both DefiningValues and DefinedValues lists are null and IfcTable is attached using IfcPropertyConstraintRelationship and IfcMetric. Columns are specified in the following order: 1.IfcPowerMeasure:Capacity 2.IfcThermodynamicTemperatureMeasure:CondensingTemperature 3.IfcThermodynamicTemperatureMeasure:EvaporatingTemperature" @@ -1477,7 +1416,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_chillertypecommon.htm" }, "Pset_ChimneyCommon": { - "description": "Properties common to the definition of all occurrence and type objects of chimneys.", "properties": { "FireRating": { "description": "Fire rating for the element. It is given according to the national fire safety classification." @@ -1504,7 +1442,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_chimneycommon.htm" }, "Pset_CivilElementCommon": { - "description": "Properties common to the definition of all occurrence and type objects of civil element.", "properties": { "Reference": {}, "Status": {} @@ -1512,7 +1449,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_civilelementcommon.htm" }, "Pset_CoilOccurrence": { - "description": "Coil occurrence attributes attached to an instance of IfcCoil.", "properties": { "HasSoundAttenuation": { "description": "TRUE if the coil has sound attenuation, FALSE if it does not." @@ -1521,7 +1457,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_coiloccurrence.htm" }, "Pset_CoilPHistory": { - "description": "Coil performance history common attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirPressureDropCurve": { "description": "Air pressure drop curve, pressure drop \u2013 flow rate curve, AirPressureDrop = f (AirflowRate)." @@ -1539,7 +1474,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_coilphistory.htm" }, "Pset_CoilTypeCommon": { - "description": "Coil type common attributes.", "properties": { "AirflowRateRange": { "description": "Possible range of airflow that can be delivered. For cases where there is no airflow across the coil (e.g. electric coil in a floor slab), then the value is zero." @@ -1569,7 +1503,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_coiltypecommon.htm" }, "Pset_CoilTypeHydronic": { - "description": "Hydronic coil type attributes.", "properties": { "BypassFactor": { "description": "Fraction of air that is bypassed by the coil (0-1)." @@ -1614,7 +1547,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_coiltypehydronic.htm" }, "Pset_ColumnCommon": { - "description": "Properties common to the definition of all occurrence and type objects of column.", "properties": { "FireRating": { "description": "Fire rating for the element. It is given according to the national fire safety classification." @@ -1644,7 +1576,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_columncommon.htm" }, "Pset_CommunicationsAppliancePHistory": { - "description": "Captures realtime information for communications devices, such as for server farm energy usage.", "properties": { "PowerState": { "description": "Indicates the power state of the device where True is on and False is off." @@ -1653,7 +1584,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_communicationsappliancephistory.htm" }, "Pset_CommunicationsApplianceTypeCommon": { - "description": "Common properties for communications appliances.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -1665,7 +1595,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_communicationsappliancetypecommon.htm" }, "Pset_CompressorPHistory": { - "description": "Compressor performance history attributes.", "properties": { "CoefficientOfPerformance": { "description": "Coefficient of performance (COP)." @@ -1713,7 +1642,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_compressorphistory.htm" }, "Pset_CompressorTypeCommon": { - "description": "Compressor type common attributes.", "properties": { "CompressorSpeed": { "description": "Compressor speed." @@ -1755,7 +1683,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_compressortypecommon.htm" }, "Pset_ConcreteElementGeneral": { - "description": "General properties common to different types of concrete elements, including reinforced concrete elements. The property set can be used by a number of subtypes of IfcBuildingElement, indicated that such element is designed or constructed using a concrete construction method.", "properties": { "ConcreteCover": { "description": "The protective concrete cover at the reinforcing bars according to local building regulations." @@ -1797,7 +1724,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_concreteelementgeneral.htm" }, "Pset_CondenserPHistory": { - "description": "Condenser performance history attributes.", "properties": { "CompressorCondenserHeatGain": { "description": "Heat gain between condenser inlet to compressor outlet." @@ -1836,7 +1762,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_condenserphistory.htm" }, "Pset_CondenserTypeCommon": { - "description": "Condenser type common attributes.", "properties": { "ExternalSurfaceArea": { "description": "External surface area (both primary and secondary area)." @@ -1867,7 +1792,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_condensertypecommon.htm" }, "Pset_Condition": { - "description": "Determines the state or condition of an element at a particular point in time.", "properties": { "AssessmentCondition": { "description": "The overall condition of a product based on an assessment of the contributions to the overall condition made by the various criteria considered. The meanings given to the values of assessed condition should be agreed and documented by local agreements. For instance, is overall condition measured on a scale of 1 - 10 or by assigning names such as Good, OK, Poor." @@ -1882,7 +1806,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_condition.htm" }, "Pset_ConstructionResource": { - "description": "Properties for tracking resource usage over time.", "properties": { "ActualCompletion": { "description": "The actual completion percentage of the allocation." @@ -1912,7 +1835,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/pset/pset_constructionresource.htm" }, "Pset_ControllerPHistory": { - "description": "Properties for history of controller values.", "properties": { "Quality": { "description": "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." @@ -1927,7 +1849,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllerphistory.htm" }, "Pset_ControllerTypeCommon": { - "description": "Controller type common attributes.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -1939,7 +1860,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllertypecommon.htm" }, "Pset_ControllerTypeFloating": { - "description": "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued output.", "properties": { "ControlType": { "description": "The type of signal modification effected and applicable ports: " @@ -1966,7 +1886,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllertypefloating.htm" }, "Pset_ControllerTypeMultiPosition": { - "description": "Properties for discrete inputs, outputs, and values within a programmable logic controller.", "properties": { "ControlType": { "description": "The type of signal modification effected and applicable ports:" @@ -1984,7 +1903,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllertypemultiposition.htm" }, "Pset_ControllerTypeProgrammable": { - "description": "Properties for Discrete Digital Control (DDC) or programmable logic controllers.", "properties": { "Application": { "description": "Indicates application of controller." @@ -2002,7 +1920,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllertypeprogrammable.htm" }, "Pset_ControllerTypeProportional": { - "description": "Properties for signal handling for an proportional controller taking setpoint and feedback inputs and creating a single valued output.", "properties": { "ControlType": { "description": "The type of signal modification. PROPORTIONAL: Output is proportional to the control error. The gain of a proportional control (Kp) will have the effect of reducing the rise time and reducing , but never eliminating, the steady-state error of the variable controlled. PROPORTIONALINTEGRAL: Part of the output is proportional to the control error and part is proportional to the time integral of the control error. Adding the gain of an integral control (Ki) will have the effect of eliminating the steady-state error of the variable controlled, but it may make the transient response worse. PROPORTIONALINTEGRALDERIVATIVE: Part of the output is proportional to the control error, part is proportional to the time integral of the control error and part is proportional to the time derivative of the control error. Adding the gain of a derivative control (Kd) will have the effect of increasing the stability of the system, reducing the overshoot, and improving the transient response of the variable controlled." @@ -2035,7 +1952,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllertypeproportional.htm" }, "Pset_ControllerTypeTwoPosition": { - "description": "Properties for signal handling for an analog controller taking disparate valued multiple inputs and creating a single valued binary output.", "properties": { "ControlType": { "description": "The type of signal modification effected and applicable ports:" @@ -2053,7 +1969,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_controllertypetwoposition.htm" }, "Pset_CooledBeamPHistory": { - "description": "Common performance history attributes for a cooled beam.", "properties": { "BeamCoolingCapacity": { "description": "Cooling capacity of beam. This excludes cooling capacity of supply air." @@ -2098,7 +2013,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_cooledbeamphistory.htm" }, "Pset_CooledBeamPHistoryActive": { - "description": "Performance history attributes for an active cooled beam.", "properties": { "AirFlowRate": { "description": "Air flow rate." @@ -2113,7 +2027,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_cooledbeamphistoryactive.htm" }, "Pset_CooledBeamTypeActive": { - "description": "Active (ventilated) cooled beam common attributes.", "properties": { "AirFlowConfiguration": { "description": "Air flow configuration type of cooled beam." @@ -2131,7 +2044,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_cooledbeamtypeactive.htm" }, "Pset_CooledBeamTypeCommon": { - "description": "Cooled beam common attributes. SoundLevel and SoundAttenuation attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "CoilLength": { "description": "Length of coil." @@ -2200,7 +2112,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_cooledbeamtypecommon.htm" }, "Pset_CoolingTowerPHistory": { - "description": "Cooling tower performance history attributes.", "properties": { "Capacity": { "description": "Cooling tower capacity in terms of heat transfer rate of the cooling tower between air stream and water stream." @@ -2221,7 +2132,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_coolingtowerphistory.htm" }, "Pset_CoolingTowerTypeCommon": { - "description": "Cooling tower type common attributes. WaterRequirement attribute unit type modified in IFC2x2 Pset Addendum.", "properties": { "AmbientDesignDryBulbTemperature": { "description": "Ambient design dry bulb temperature used for selecting the cooling tower." @@ -2272,7 +2182,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_coolingtowertypecommon.htm" }, "Pset_CoveringCeiling": { - "description": "Properties common to the definition of all occurrence and type objects of covering with the predefined type set to CEILING.", "properties": { "Permeability": { "description": "Ratio of the permeability of the ceiling. The ration can be used to indicate an open ceiling (that enables identification of whether ceiling construction should be considered as impeding distribution of sprinkler water, light etc. from installations within the ceiling area)." @@ -2287,7 +2196,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_coveringceiling.htm" }, "Pset_CoveringCommon": { - "description": "Properties common to the definition of all occurrence and type objects of covering", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is giving according to the national building code. It indicates the sound transmission resistance of this object by an index ration (instead of providing full sound absorbtion values)." @@ -2326,7 +2234,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_coveringcommon.htm" }, "Pset_CoveringFlooring": { - "description": "Properties common to the definition of all occurrence and type objects of covering with the predefined type set to FLOORING.", "properties": { "HasAntiStaticSurface": { "description": "Indication whether the surface finish is designed to prevent electrostatic charge (TRUE) or not (FALSE)." @@ -2338,7 +2245,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_coveringflooring.htm" }, "Pset_CurtainWallCommon": { - "description": "Properties common to the definition of all occurrences of IfcCurtainWall.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -2368,7 +2274,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_curtainwallcommon.htm" }, "Pset_DamperOccurrence": { - "description": "Damper occurrence attributes attached to an instance of IfcDamper", "properties": { "SizingMethod": { "description": "Identifies whether the damper is sized nominally or with exact measurements:" @@ -2377,7 +2282,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_damperoccurrence.htm" }, "Pset_DamperPHistory": { - "description": "Damper performance history attributes.", "properties": { "AirFlowRate": { "description": "Air flow rate." @@ -2401,7 +2305,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_damperphistory.htm" }, "Pset_DamperTypeCommon": { - "description": "Damper type common attributes.", "properties": { "BladeAction": { "description": "Blade action." @@ -2479,7 +2382,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_dampertypecommon.htm" }, "Pset_DamperTypeControlDamper": { - "description": "Control damper type attributes. Pset renamed from Pset_DamperTypeControl to Pset_DamperTypeControlDamper in IFC2x2 Pset Addendum.", "properties": { "ControlDamperOperation": { "description": "The inherent characteristic of the control damper operation." @@ -2491,7 +2393,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_dampertypecontroldamper.htm" }, "Pset_DamperTypeFireDamper": { - "description": "Fire damper type attributes. Pset renamed from Pset_DamperTypeFire to Pset_DamperTypeFireDamper in IFC2x2 Pset Addendum.", "properties": { "ActuationType": { "description": "Enumeration that identifies the different types of dampers." @@ -2509,7 +2410,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_dampertypefiredamper.htm" }, "Pset_DamperTypeFireSmokeDamper": { - "description": "Combination Fire and Smoke damper type attributes. New Pset in IFC2x2 Pset Addendum.", "properties": { "ActuationType": { "description": "Enumeration that identifies the different types of dampers." @@ -2530,7 +2430,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_dampertypefiresmokedamper.htm" }, "Pset_DamperTypeSmokeDamper": { - "description": "Smoke damper type attributes. Pset renamed from Pset_DamperTypeSmoke to Pset_DamperTypeSmokeDamper in IFC2x2 Pset Addendum.", "properties": { "ControlType": { "description": "The type of control used to operate the damper (e.g., Open/Closed Indicator, Resetable Temperature Sensor, Temperature Override, etc.) ." @@ -2539,7 +2438,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_dampertypesmokedamper.htm" }, "Pset_DiscreteAccessoryColumnShoe": { - "description": "Shape properties common to column shoes.", "properties": { "ColumnShoeBasePlateDepth": { "description": "The depth of the column shoe base plate." @@ -2563,7 +2461,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessorycolumnshoe.htm" }, "Pset_DiscreteAccessoryCornerFixingPlate": { - "description": "Properties specific to corner fixing plates.", "properties": { "CornerFixingPlateFlangeWidthInPlaneX": { "description": "The flange width of the L-shaped corner plate in plane X." @@ -2581,7 +2478,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessorycornerfixingplate.htm" }, "Pset_DiscreteAccessoryDiagonalTrussConnector": { - "description": "Shape properties specific to connecting accessories in truss form with diagonal cross-bars.", "properties": { "DiagonalTrussBaseBarDiameter": { "description": "The nominal diameter of the base bar." @@ -2605,7 +2501,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessorydiagonaltrussconnector.htm" }, "Pset_DiscreteAccessoryEdgeFixingPlate": { - "description": "Properties specific to edge fixing plates.", "properties": { "EdgeFixingPlateFlangeWidthInPlaneX": { "description": "The flange width of the L-shaped edge plate in plane X." @@ -2623,7 +2518,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessoryedgefixingplate.htm" }, "Pset_DiscreteAccessoryFixingSocket": { - "description": "Properties common to fixing sockets.", "properties": { "FixingSocketHeight": { "description": "The overall height of the fixing socket." @@ -2641,7 +2535,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessoryfixingsocket.htm" }, "Pset_DiscreteAccessoryLadderTrussConnector": { - "description": "Shape properties specific to connecting accessories in truss form with straight cross-bars in ladder shape.", "properties": { "LadderTrussBaseBarDiameter": { "description": "The nominal diameter of the base bar." @@ -2665,7 +2558,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessoryladdertrussconnector.htm" }, "Pset_DiscreteAccessoryStandardFixingPlate": { - "description": "Properties specific to standard fixing plates.", "properties": { "StandardFixingPlateDepth": { "description": "The depth of the standard fixing plate." @@ -2680,7 +2572,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessorystandardfixingplate.htm" }, "Pset_DiscreteAccessoryWireLoop": { - "description": "Shape properties common to wire loop joint connectors.", "properties": { "WireDiameter": { "description": "The nominal diameter of the wire." @@ -2704,7 +2595,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_discreteaccessorywireloop.htm" }, "Pset_DistributionChamberElementCommon": { - "description": "Common properties of all occurrences of IfcDistributionChamberElement.", "properties": { "Reference": { "description": "Reference ID for this specific instance (e.g. 'WWS/VS1/400/001', which indicates the occurrence belongs to system WWS, subsystems VSI/400, and has the component number 001)." @@ -2716,7 +2606,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementcommon.htm" }, "Pset_DistributionChamberElementTypeFormedDuct": { - "description": "Space formed in the ground for the passage of pipes, cables, ducts.", "properties": { "AccessCoverLoadRating": { "description": "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." @@ -2737,7 +2626,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypeformedduct.htm" }, "Pset_DistributionChamberElementTypeInspectionChamber": { - "description": "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits visible inspection.", "properties": { "AccessCoverLoadRating": { "description": "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." @@ -2782,7 +2670,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypeinspectionchamber.htm" }, "Pset_DistributionChamberElementTypeInspectionPit": { - "description": "Recess or chamber formed to permit access for inspection of substructure and services (definition modified from BS6100 221 4128).", "properties": { "Depth": { "description": "The depth of the pit." @@ -2797,7 +2684,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypeinspectionpit.htm" }, "Pset_DistributionChamberElementTypeManhole": { - "description": "Chamber constructed on a drain, sewer or pipeline and with a removable cover, that permits the entry of a person.", "properties": { "AccessCoverLoadRating": { "description": "The load rating of the access cover (which may be a value or an alphanumerically defined class rating)." @@ -2842,7 +2728,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypemanhole.htm" }, "Pset_DistributionChamberElementTypeMeterChamber": { - "description": "Chamber that houses a meter(s) (definition modified from BS6100 250 6224).", "properties": { "AccessCoverMaterial": { "description": "The material from which the access cover to the chamber is constructed. NOTE: It is assumed that chamber walls will be constructed of a single material." @@ -2869,7 +2754,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypemeterchamber.htm" }, "Pset_DistributionChamberElementTypeSump": { - "description": "Recess or small chamber into which liquid is drained to facilitate its removal.", "properties": { "InvertLevel": { "description": "The lowest point in the cross section of the sump." @@ -2884,7 +2768,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypesump.htm" }, "Pset_DistributionChamberElementTypeTrench": { - "description": "Excavation, the length of which greatly exceeds the width.", "properties": { "Depth": { "description": "The depth of the trench." @@ -2899,7 +2782,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypetrench.htm" }, "Pset_DistributionChamberElementTypeValveChamber": { - "description": "Chamber that houses a valve(s).", "properties": { "AccessCoverMaterial": { "description": "The material from which the access cover to the chamber is constructed. NOTE: It is assumed that chamber walls will be constructed of a single material." @@ -2926,7 +2808,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionchamberelementtypevalvechamber.htm" }, "Pset_DistributionPortCommon": { - "description": "Common attributes attached to an instance of IfcDistributionPort.", "properties": { "ColorCode": { "description": "Name of a color for identifying the connector, if applicable." @@ -2938,7 +2819,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionportcommon.htm" }, "Pset_DistributionPortPHistoryCable": { - "description": "Log of electrical activity attached to an instance of IfcPerformanceHistory having an assigned IfcDistributionPort of type CABLE.", "properties": { "ApparentPower": { "description": "Apparent power." @@ -2968,7 +2848,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionportphistorycable.htm" }, "Pset_DistributionPortPHistoryDuct": { - "description": "Fluid flow performance history attached to an instance of IfcPerformanceHistory assigned to IfcDistributionPort. This replaces the deprecated IfcFluidFlowProperties for performance values.", "properties": { "FlowCondition": { "description": "Defines the flow condition as a percentage of the cross-sectional area." @@ -2995,7 +2874,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionportphistoryduct.htm" }, "Pset_DistributionPortPHistoryPipe": { - "description": "Log of substance usage attached to an instance of IfcPerformanceHistory having an assigned IfcDistributionPort of type PIPE.", "properties": { "Flowrate": { "description": "The flowrate of the fuel." @@ -3010,7 +2888,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionportphistorypipe.htm" }, "Pset_DistributionPortTypeCable": { - "description": "Cable port occurrence attributes attached to an instance of IfcDistributionPort.", "properties": { "ConductorFunction": { "description": "For ports distributing power, indicates function of the conductors to which the load is connected." @@ -3043,7 +2920,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionporttypecable.htm" }, "Pset_DistributionPortTypeDuct": { - "description": "Duct port occurrence attributes attached to an instance of IfcDistributionPort.", "properties": { "ConnectionSubType": { "description": "The physical port connection subtype that further qualifies the ConnectionType." @@ -3079,7 +2955,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionporttypeduct.htm" }, "Pset_DistributionPortTypePipe": { - "description": "Pipe port occurrence attributes attached to an instance of IfcDistributionPort.", "properties": { "ConnectionSubType": { "description": "The physical port connection subtype that further qualifies the ConnectionType." @@ -3118,7 +2993,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionporttypepipe.htm" }, "Pset_DistributionSystemCommon": { - "description": "Distribution system occurrence attributes attached to an instance of IfcDistributionSystem.", "properties": { "Reference": { "description": "Reference ID for this specific instance of a distribution system, or sub-system (e.g. 'WWS/VS1', which indicates the system to be WWS, subsystems VSI/400). The reference values depend on the local code of practice." @@ -3127,7 +3001,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionsystemcommon.htm" }, "Pset_DistributionSystemTypeElectrical": { - "description": "Properties of electrical circuits.", "properties": { "Diversity": { "description": "The ratio, expressed as a numerical value or as a percentage, of the simultaneous maximum demand of a group of electrical appliances or consumers within a specified period, to the sum of their individual maximum demands within the same period. The group of electrical appliances is in this case connected to this circuit. Defenition from IEC 60050, IEV 691-10-04 NOTE1: It is often not desirable to size each conductor in a distribution system to support the total connected load at that point in the network. Diversity is applied on the basis of the anticipated loadings that are likely to result from all loads not being connected at the same time. NOTE2: Diversity is applied to final circuits only, not to sub-main circuits supplying other DBs." @@ -3151,7 +3024,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionsystemtypeelectrical.htm" }, "Pset_DistributionSystemTypeVentilation": { - "description": "This property set is used to define the general characteristics of the duct design parameters within a system.", "properties": { "AspectRatio": { "description": "The default aspect ratio." @@ -3190,7 +3062,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_distributionsystemtypeventilation.htm" }, "Pset_DoorCommon": { - "description": "Properties common to the definition of all occurrences of IfcDoor.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -3253,7 +3124,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_doorcommon.htm" }, "Pset_DoorWindowGlazingType": { - "description": "Properties common to the definition of the glazing component of occurrences of IfcDoor and IfcWindow, used for thermal and lighting calculations.", "properties": { "FillGas": { "description": "Name of the gas by which the gap between two glass layers is filled. It is given for information purposes only." @@ -3316,7 +3186,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_doorwindowglazingtype.htm" }, "Pset_DuctFittingOccurrence": { - "description": "Duct fitting occurrence attributes.", "properties": { "Color": { "description": "The color of the duct segment." @@ -3331,7 +3200,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductfittingoccurrence.htm" }, "Pset_DuctFittingPHistory": { - "description": "Duct fitting performance history common attributes.", "properties": { "AirFlowLeakage": { "description": "Volumetric leakage flow rate." @@ -3346,7 +3214,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductfittingphistory.htm" }, "Pset_DuctFittingTypeCommon": { - "description": "Duct fitting type common attributes.", "properties": { "PressureClass": { "description": "Pressure classification as defined by the authority having jurisdiction (e.g., SMACNA, etc.)." @@ -3367,7 +3234,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductfittingtypecommon.htm" }, "Pset_DuctSegmentOccurrence": { - "description": "Duct segment occurrence attributes attached to an instance of IfcDuctSegment.", "properties": { "Color": { "description": "The color of the duct segment." @@ -3382,7 +3248,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductsegmentoccurrence.htm" }, "Pset_DuctSegmentPHistory": { - "description": "Duct segment performance history common attributes.", "properties": { "AtmosphericPressure": { "description": "Ambient atmospheric pressure." @@ -3400,7 +3265,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductsegmentphistory.htm" }, "Pset_DuctSegmentTypeCommon": { - "description": "Duct segment type common attributes.", "properties": { "LongitudinalSeam": { "description": "The type of seam to be used along the longitudinal axis of the duct segment." @@ -3439,7 +3303,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductsegmenttypecommon.htm" }, "Pset_DuctSilencerPHistory": { - "description": "Duct silencer performance history common attributes.", "properties": { "AirFlowRate": { "description": "Volumetric air flow rate." @@ -3451,7 +3314,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductsilencerphistory.htm" }, "Pset_DuctSilencerTypeCommon": { - "description": "Duct silencer type common attributes. InsertionLoss and RegeneratedSound attributes deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AirFlowrateRange": { "description": "Possible range of airflow that can be delivered." @@ -3484,7 +3346,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_ductsilencertypecommon.htm" }, "Pset_ElectricAppliancePHistory": { - "description": "Captures realtime information for electric appliances, such as for energy usage.", "properties": { "PowerState": { "description": "Indicates the power state of the device where True is on and False is off." @@ -3493,7 +3354,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricappliancephistory.htm" }, "Pset_ElectricApplianceTypeCommon": { - "description": "Common properties for electric appliances.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -3505,7 +3365,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricappliancetypecommon.htm" }, "Pset_ElectricApplianceTypeDishwasher": { - "description": "Common properties for dishwasher appliances.", "properties": { "DishwasherType": { "description": "Type of dishwasher." @@ -3514,7 +3373,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricappliancetypedishwasher.htm" }, "Pset_ElectricApplianceTypeElectricCooker": { - "description": "Common properties for electric cooker appliances.", "properties": { "ElectricCookerType": { "description": "Type of electric cooker." @@ -3523,7 +3381,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricappliancetypeelectriccooker.htm" }, "Pset_ElectricDistributionBoardOccurrence": { - "description": "Properties that may be applied to electric distribution board occurrences.", "properties": { "IsMain": { "description": "Identifies if the current instance is a main distribution point or topmost level in an electrical distribution hierarchy (= TRUE) or a sub-main distribution point (= FALSE)." @@ -3535,7 +3392,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricdistributionboardoccurrence.htm" }, "Pset_ElectricDistributionBoardTypeCommon": { - "description": "Properties that may be applied to electric distribution boards.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -3547,7 +3403,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricdistributionboardtypecommon.htm" }, "Pset_ElectricFlowStorageDevicePHistory": { - "description": "Electric flow storage device performance history common attributes.", "properties": { "Level": { "description": "The fraction of usable energy stored." @@ -3556,7 +3411,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricflowstoragedevicephistory.htm" }, "Pset_ElectricFlowStorageDeviceTypeCommon": { - "description": "The characteristics of the supply associated with an electrical device occurrence acting as a source of supply to an electrical distribution system NOTE: Properties within this property set should ONLY be used in circumstances when an electrical supply is applied. The property set, the properties contained and their values are not applicable to a circumstance where the sypply is not being applied to the eletrical system or is temporarily disconnected. All properties within this property set are considered to represent a steady state situation.", "properties": { "ConnectedConductorFunction": { "description": "Function of the conductors to which the load is connected." @@ -3628,7 +3482,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricflowstoragedevicetypecommon.htm" }, "Pset_ElectricGeneratorTypeCommon": { - "description": "Defines a particular type of engine that is a machine for converting mechanical energy into electrical energy.", "properties": { "ElectricGeneratorEfficiency": { "description": "The ratio of output capacity to intake capacity." @@ -3649,7 +3502,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricgeneratortypecommon.htm" }, "Pset_ElectricMotorTypeCommon": { - "description": "Defines a particular type of engine that is a machine for converting electrical energy into mechanical energy. Note that in cases where a close coupled or monobloc pump or close coupled fan is being driven by the motor, the motor may itself be considered to be directly part of the pump or fan. In this case , motor information may need to be specified directly at the pump or fan and not througfh separate motor/motor connection entities. NOTE: StartingTime and TeTime added at IFC4", "properties": { "ElectricMotorEfficiency": { "description": "The ratio of output capacity to intake capacity." @@ -3691,7 +3543,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricmotortypecommon.htm" }, "Pset_ElectricTimeControlTypeCommon": { - "description": "Common properties for electric time control devices.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -3703,7 +3554,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electrictimecontroltypecommon.htm" }, "Pset_ElectricalDeviceCommon": { - "description": "A collection of properties that are commonly used by electrical device types.", "properties": { "ConductorFunction": { "description": "Function of a line conductor to which a device is intended to be connected where L1, L2 and L3 represent the phase lines according to IEC 60446 notation (sometimes phase lines may be referenced by color [Red, Blue, Yellow] or by number [1, 2, 3] etc). Protective Earth is sometimes also known as CPC or common protective conductor. Note that for an electrical device, a set of line conductor functions may be applied." @@ -3739,7 +3589,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_electricaldevicecommon.htm" }, "Pset_ElementAssemblyCommon": { - "description": "Properties common to the definition of all occurrence and type objects of element assembly.", "properties": { "Reference": {}, "Status": {} @@ -3747,7 +3596,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_elementassemblycommon.htm" }, "Pset_ElementCommon": { - "description": "This property set serves as a placeholder for common properties to assist in translation, and is not currently published (the property set type is set to NOTDEFINED).", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), Also referred to as \"construction type\". It should be provided as an alternative to the name of the \"object type\", if the software does not support object types." @@ -3758,7 +3606,6 @@ } }, "Pset_ElementComponentCommon": { - "description": "Set of common properties of component elements (especially discrete accessories, but also fasteners, reinforcement elements, or other types of components).", "properties": { "CorrosionTreatment": { "description": "Determines corrosion treatment for metal components. This property is provided if the requirement needs to be expressed (a) independently of a material specification and (b) as a mere requirements statement rather than a workshop design/ processing feature." @@ -3776,7 +3623,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_elementcomponentcommon.htm" }, "Pset_EngineTypeCommon": { - "description": "Engine type common attributes.", "properties": { "EnergySource": { "description": "The source of energy." @@ -3791,7 +3637,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_enginetypecommon.htm" }, "Pset_EnvironmentalImpactIndicators": { - "description": "Environmental impact indicators are related to a given \u201cfunctional unit\u201d (ISO 14040 concept). An example of functional unit is a \"Double glazing window with PVC frame\" and the unit to consider is \"one square meter of opening elements filled by this product\u201d. Indicators values are valid for the whole life cycle or only a specific phase (see LifeCyclePhase property). Values of all the indicators are expressed per year according to the expected service life. The first five properties capture the characteristics of the functional unit. The following properties are related to environmental indicators. There is a consensus agreement international for the five one. Last ones are not yet fully and formally agreed at the international level.", "properties": { "AtmosphericAcidificationPerUnit": { "description": "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2" @@ -3854,7 +3699,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_environmentalimpactindicators.htm" }, "Pset_EnvironmentalImpactValues": { - "description": "The following properties capture environmental impact values of an element. They correspond to the indicators defined into Pset_EnvironmentalImpactIndicators. Environmental impact values are obtained multiplying indicator value per unit by the relevant quantity of the element.", "properties": { "AtmosphericAcidification": { "description": "Quantity of gases responsible for the atmospheric acidification calculated in equivalent SO2." @@ -3911,7 +3755,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_environmentalimpactvalues.htm" }, "Pset_EvaporativeCoolerPHistory": { - "description": "Evaporative cooler performance history attributes.", "properties": { "Effectiveness": { "description": "Ratio of the change in dry bulb temperature of the (primary) air stream to the difference between the entering dry bulb temperature of the (primary) air and the wet-bulb temperature of the (secondary) air." @@ -3932,7 +3775,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_evaporativecoolerphistory.htm" }, "Pset_EvaporativeCoolerTypeCommon": { - "description": "Evaporative cooler type common attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. WaterRequirement attribute unit type modified in IFC2x2 Pset Addendum.", "properties": { "AirPressureDropCurve": { "description": "Air pressure drop as function of air flow rate." @@ -3965,7 +3807,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_evaporativecoolertypecommon.htm" }, "Pset_EvaporatorPHistory": { - "description": "Evaporator performance history attributes.", "properties": { "CompressorEvaporatorHeatGain": { "description": "Heat gain between the evaporator outlet and the compressor inlet." @@ -4004,7 +3845,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_evaporatorphistory.htm" }, "Pset_EvaporatorTypeCommon": { - "description": "Evaporator type common attributes.", "properties": { "EvaporatorCoolant": { "description": "The fluid used for the coolant in the evaporator." @@ -4043,7 +3883,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_evaporatortypecommon.htm" }, "Pset_FanCentrifugal": { - "description": "Centrifugal fan occurrence attributes attached to an instance of IfcFan.", "properties": { "Arrangement": { "description": "Defines the fan and motor drive arrangement as defined by AMCA." @@ -4058,7 +3897,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_fancentrifugal.htm" }, "Pset_FanOccurrence": { - "description": "Fan occurrence attributes attached to an instance of IfcFan.", "properties": { "ApplicationOfFan": { "description": "The functional application of the fan." @@ -4085,7 +3923,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_fanoccurrence.htm" }, "Pset_FanPHistory": { - "description": "Fan performance history attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "DischargePressureLoss": { "description": "Fan discharge pressure loss associated with the discharge arrangement." @@ -4118,7 +3955,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_fanphistory.htm" }, "Pset_FanTypeCommon": { - "description": "Fan type common attributes.", "properties": { "CapacityControlType": { "description": "InletVane: Control by adjusting inlet vane. VariableSpeedDrive: Control by variable speed drive. BladePitchAngle: Control by adjusting blade pitch angle. TwoSpeed: Control by switch between high and low speed. DischargeDamper: Control by modulating discharge damper." @@ -4163,7 +3999,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_fantypecommon.htm" }, "Pset_FastenerWeld": { - "description": "Properties related to welded connections.", "properties": { "Intermittent": { "description": "If fillet weld, intermittent or not" @@ -4217,7 +4052,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_fastenerweld.htm" }, "Pset_FilterPHistory": { - "description": "Filter performance history attributes.", "properties": { "CountedEfficiency": { "description": "Filter efficiency based the particle counts concentration before and after filter against particles with certain size distribution." @@ -4232,7 +4066,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_filterphistory.htm" }, "Pset_FilterTypeAirParticleFilter": { - "description": "Air particle filter type attributes.", "properties": { "AirParticleFilterType": { "description": "A panel dry type extended surface filter is a dry-type air filter with random fiber mats or blankets in the forms of pockets, V-shaped or radial pleats, and include the following:" @@ -4271,7 +4104,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_filtertypeairparticlefilter.htm" }, "Pset_FilterTypeCommon": { - "description": "Filter type common attributes.", "properties": { "FinalResistance": { "description": "Filter fluid resistance when replacement is required (i.e., Pressure drop at the maximum air flowrate across the filter when the filter needs replacement per ASHRAE Standard 52.1)." @@ -4316,7 +4148,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_filtertypecommon.htm" }, "Pset_FilterTypeCompressedAirFilter": { - "description": "Compressed air filter type attributes.", "properties": { "AutomaticCondensateDischarge": { "description": "Whether or not the condensing water or oil is discharged automatically from the filter." @@ -4337,7 +4168,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_filtertypecompressedairfilter.htm" }, "Pset_FilterTypeWaterFilter": { - "description": "Water filter type attributes.", "properties": { "WaterFilterType": { "description": "Further qualifies the type of water filter. Filtration removes undissolved matter; Purification removes dissolved matter; Softening replaces dissolved matter." @@ -4346,7 +4176,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_filtertypewaterfilter.htm" }, "Pset_FireSuppressionTerminalTypeBreechingInlet": { - "description": "Symmetrical pipe fitting that unites two or more inlets into a single pipe (BS6100 330 114 adapted).", "properties": { "BreechingInletType": { "description": "Defines the type of breeching inlet." @@ -4367,7 +4196,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_firesuppressionterminaltypebreechinginlet.htm" }, "Pset_FireSuppressionTerminalTypeCommon": { - "description": "Common properties for fire suppression terminals.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -4379,7 +4207,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_firesuppressionterminaltypecommon.htm" }, "Pset_FireSuppressionTerminalTypeFireHydrant": { - "description": "Device, fitted to a pipe, through which a temporary supply of water may be provided (BS6100 330 6107)", "properties": { "BodyColor": { "description": "Color of the body of the hydrant." @@ -4415,7 +4242,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_firesuppressionterminaltypefirehydrant.htm" }, "Pset_FireSuppressionTerminalTypeHoseReel": { - "description": "A supporting framework on which a hose may be wound (BS6100 155 8201).", "properties": { "ClassOfService": { "description": "A classification of usage of the hose reel that may be applied." @@ -4445,7 +4271,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_firesuppressionterminaltypehosereel.htm" }, "Pset_FireSuppressionTerminalTypeSprinkler": { - "description": "Device for sprinkling water from a pipe under pressure over an area (BS6100 100 3432)", "properties": { "Activation": { "description": "Identifies the predefined methods of sprinkler activation from which that required may be set." @@ -4487,7 +4312,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_firesuppressionterminaltypesprinkler.htm" }, "Pset_FlowInstrumentPHistory": { - "description": "Properties for history of flow instrument values.", "properties": { "Quality": { "description": "Indicates the quality of measurement or failure condition, which may be further qualified by the Status. True: measured values are considered reliable; False: measured values are considered not reliable (i.e. a fault has been detected); Unknown: reliability of values is uncertain." @@ -4502,7 +4326,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_flowinstrumentphistory.htm" }, "Pset_FlowInstrumentTypeCommon": { - "description": "Flow Instrument type common attributes.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -4514,7 +4337,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_flowinstrumenttypecommon.htm" }, "Pset_FlowInstrumentTypePressureGauge": { - "description": "A device that reads and displays a pressure value at a point or the pressure difference between two points.", "properties": { "DisplaySize": { "description": "The physical size of the display. For a dial pressure gauge it will be the diameter of the dial." @@ -4526,7 +4348,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_flowinstrumenttypepressuregauge.htm" }, "Pset_FlowInstrumentTypeThermometer": { - "description": "A device that reads and displays a temperature value at a point.", "properties": { "DisplaySize": { "description": "The physical size of the display. In the case of a stem thermometer, this will be the length of the stem. For a dial thermometer, it will be the diameter of the dial." @@ -4538,7 +4359,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_flowinstrumenttypethermometer.htm" }, "Pset_FlowMeterOccurrence": { - "description": "Flow meter occurrence common attributes.", "properties": { "Purpose": { "description": "Enumeration defining the purpose of the flow meter occurrence." @@ -4547,7 +4367,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_flowmeteroccurrence.htm" }, "Pset_FlowMeterTypeCommon": { - "description": "Common attributes of a flow meter type", "properties": { "ReadOutType": { "description": "Indication of the form that readout from the meter takes. In the case of a dial read out, this may comprise multiple dials that give a cumulative reading and/or a mechanical odometer." @@ -4565,7 +4384,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_flowmetertypecommon.htm" }, "Pset_FlowMeterTypeEnergyMeter": { - "description": "Device that measures, indicates and sometimes records, the energy usage in a system.", "properties": { "MaximumCurrent": { "description": "The maximum allowed current that a device is certified to handle." @@ -4580,7 +4398,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_flowmetertypeenergymeter.htm" }, "Pset_FlowMeterTypeGasMeter": { - "description": "Device that measures, indicates and sometimes records, the volume of gas that passes through it without interrupting the flow.", "properties": { "ConnectionSize": { "description": "Defines the size of inlet and outlet pipe connections to the meter." @@ -4598,7 +4415,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_flowmetertypegasmeter.htm" }, "Pset_FlowMeterTypeOilMeter": { - "description": "Device that measures, indicates and sometimes records, the volume of oil that passes through it without interrupting the flow.", "properties": { "ConnectionSize": { "description": "Defines the size of inlet and outlet pipe connections to the meter." @@ -4610,7 +4426,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_flowmetertypeoilmeter.htm" }, "Pset_FlowMeterTypeWaterMeter": { - "description": "Device that measures, indicates and sometimes records, the volume of water that passes through it without interrupting the flow.", "properties": { "BackflowPreventerType": { "description": "Identifies the type of backflow preventer installed to prevent the backflow of contaminated or polluted water from an irrigation/reticulation system to a potable water supply." @@ -4631,7 +4446,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_flowmetertypewatermeter.htm" }, "Pset_FootingCommon": { - "description": "Properties common to the definition of all occurrences of IfcFooting.", "properties": { "LoadBearing": { "description": "Indicates whether the object is intended to carry loads (TRUE) or not (FALSE)" @@ -4646,7 +4460,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_footingcommon.htm" }, "Pset_FurnitureTypeChair": { - "description": "A set of specific properties for furniture type chair.", "properties": { "HighestSeatingHeight": { "description": "The value of seating height of high level if the chair height is adjustable." @@ -4661,7 +4474,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_furnituretypechair.htm" }, "Pset_FurnitureTypeCommon": { - "description": "Common properties for all types of furniture such as chair, desk, table, and file cabinet.", "properties": { "IsBuiltIn": { "description": "Indicates whether the furniture type is intended to be 'built in' i.e. physically attached to a building or facility (= TRUE) or not i.e. Loose and movable (= FALSE)." @@ -4687,7 +4499,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_furnituretypecommon.htm" }, "Pset_FurnitureTypeDesk": { - "description": "A set of specific properties for furniture type desk.", "properties": { "WorksurfaceArea": { "description": "The value of the work surface area of the desk." @@ -4696,7 +4507,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_furnituretypedesk.htm" }, "Pset_FurnitureTypeFileCabinet": { - "description": "A set of specific properties for furniture type file cabinet", "properties": { "WithLock": { "description": "Indicates whether the file cabinet is lockable (= TRUE) or not (= FALSE)." @@ -4705,7 +4515,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_furnituretypefilecabinet.htm" }, "Pset_FurnitureTypeTable": { - "description": "", "properties": { "NumberOfChairs": { "description": "Maximum number of chairs that can fit with the table for normal use." @@ -4717,7 +4526,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_furnituretypetable.htm" }, "Pset_HeatExchangerTypeCommon": { - "description": "Heat exchanger type common attributes.", "properties": { "Arrangement": { "description": "Defines the basic flow arrangements for the heat exchanger:" @@ -4732,7 +4540,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_heatexchangertypecommon.htm" }, "Pset_HeatExchangerTypePlate": { - "description": "Plate heat exchanger type common attributes.", "properties": { "NumberOfPlates": { "description": "Number of plates used by the plate heat exchanger." @@ -4741,7 +4548,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_heatexchangertypeplate.htm" }, "Pset_HumidifierPHistory": { - "description": "Humidifier performance history attributes. Sound attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead.", "properties": { "AtmosphericPressure": { "description": "Ambient atmospheric pressure." @@ -4753,7 +4559,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_humidifierphistory.htm" }, "Pset_HumidifierTypeCommon": { - "description": "Humidifier type common attributes. WaterProperties attribute renamed to WaterRequirement and unit type modified in IFC2x2 Pset Addendum.", "properties": { "AirPressureDropCurve": { "description": "Air pressure drop versus air-flow rate." @@ -4789,7 +4594,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_humidifiertypecommon.htm" }, "Pset_InterceptorTypeCommon": { - "description": "Common properties for interceptors.", "properties": { "CoverLength": { "description": "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the oil interceptor." @@ -4825,7 +4629,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_interceptortypecommon.htm" }, "Pset_JunctionBoxTypeCommon": { - "description": "A junction box is an enclosure within which cables are connected.", "properties": { "ClearDepth": { "description": "Clear unobstructed depth available for cable inclusion within the junction box." @@ -4858,7 +4661,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_junctionboxtypecommon.htm" }, "Pset_LampTypeCommon": { - "description": "A lamp is a component within a light fixture that is designed to emit light.", "properties": { "ColorAppearance": { "description": "In both the DIN and CIE standards, artificial light sources are classified in terms of their color appearance. To the human eye they all appear to be white; the difference can only be detected by direct comparison. Visual performance is not directly affected by differences in color appearance." @@ -4897,7 +4699,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_lamptypecommon.htm" }, "Pset_LandRegistration": { - "description": "Specifies the identity of land within a statutory registration system.", "properties": { "IsPermanentID": { "description": "Indicates whether the identity assigned to a land parcel is permanent (= TRUE) or temporary (=FALSE)." @@ -4912,7 +4713,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_landregistration.htm" }, "Pset_LightFixtureTypeCommon": { - "description": "Common data for light fixtures. History: IFC4 - Article number and manufacturer specific information deleted. Use Pset_ManufacturerTypeInformation. ArticleNumber instead. Load properties moved from Pset_LightFixtureTypeThermal (deleted).", "properties": { "LightFixtureMountingType": { "description": "A list of the available types of mounting for light fixtures from which that required may be selected." @@ -4948,7 +4748,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_lightfixturetypecommon.htm" }, "Pset_LightFixtureTypeSecurityLighting": { - "description": "Properties that characterize security lighting.", "properties": { "Addressablility": { "description": "The type of addressability." @@ -4972,7 +4771,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_lightfixturetypesecuritylighting.htm" }, "Pset_ManufacturerOccurrence": { - "description": "Defines properties of individual instances of manufactured products that may be given by the manufacturer.", "properties": { "AcquisitionDate": { "description": "The date that the manufactured item was purchased." @@ -4993,7 +4791,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_manufactureroccurrence.htm" }, "Pset_ManufacturerTypeInformation": { - "description": "Defines characteristics of types (ranges) of manufactured products that may be given by the manufacturer. Note that the term 'manufactured' may also be used to refer to products that are supplied and identified by the supplier or that are assembled off site by a third party provider.", "properties": { "ArticleNumber": { "description": "Article number or reference that is be applied to a configured product according to a standard scheme for article number definition as defined by the manufacturer. It is often used as the purchasing number." @@ -5020,7 +4817,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_manufacturertypeinformation.htm" }, "Pset_MaterialCombustion": { - "description": "A set of extended material properties of products of combustion generated by elements typically used within the context of building services and flow distribution systems.", "properties": { "CO2Content": { "description": "Carbon dioxide (CO2) content of the products of combustion. This is measured in weight of CO2 per unit weight and is therefore unitless." @@ -5038,7 +4834,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialcombustion.htm" }, "Pset_MaterialCommon": { - "description": "A set of general material properties.", "properties": { "MassDensity": { "description": "Material mass density." @@ -5053,7 +4848,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialcommon.htm" }, "Pset_MaterialConcrete": { - "description": "A set of extended mechanical properties related to concrete materials.", "properties": { "AdmixturesDescription": { "description": "Description of the admixtures added to the concrete mix." @@ -5077,7 +4871,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialconcrete.htm" }, "Pset_MaterialEnergy": { - "description": "A set of extended material properties for energy calculation purposes.", "properties": { "GasPressure": { "description": "Fill pressure (e.g. for between-pane gas fills): the pressure exerted by a mass of gas confined in a constant volume." @@ -5104,7 +4897,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialenergy.htm" }, "Pset_MaterialFuel": { - "description": "A set of extended material properties of fuel energy typically used within the context of building services and flow distribution systems.", "properties": { "CarbonContent": { "description": "The carbon content in the fuel. This is measured in weight of carbon per unit weight of fuel and is therefore unitless." @@ -5122,7 +4914,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialfuel.htm" }, "Pset_MaterialHygroscopic": { - "description": "A set of hygroscopic properties of materials.", "properties": { "IsothermalMoistureCapacity": { "description": "Based on water vapor density." @@ -5143,7 +4934,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialhygroscopic.htm" }, "Pset_MaterialMechanical": { - "description": "A set of mechanical material properties normally used for structural analysis purpose. It contains all properties which are independent of the actual material type.", "properties": { "DynamicViscosity": { "description": "A measure of the viscous resistance of the material." @@ -5164,7 +4954,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialmechanical.htm" }, "Pset_MaterialOptical": { - "description": "A set of optical properties of materials.", "properties": { "SolarReflectanceBack": { "description": "Reflectance at normal incidence (solar): back side. Defines the fraction of the solar ray that is reflected and not transmitted when the ray passes from one medium into another, at the \"back\" side of the other material, perpendicular to the surface. Dependent on material and surface characteristics." @@ -5197,7 +4986,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialoptical.htm" }, "Pset_MaterialSteel": { - "description": "A set of extended mechanical properties related to steel (or other metallic and isotropic) materials.", "properties": { "HardeningModule": { "description": "A measure of the hardening module of the material (slope of stress versus strain curve after yield range)." @@ -5224,7 +5012,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialsteel.htm" }, "Pset_MaterialThermal": { - "description": "A set of thermal material properties.", "properties": { "BoilingPoint": { "description": "The boiling point of the material (fluid)." @@ -5242,7 +5029,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialthermal.htm" }, "Pset_MaterialWater": { - "description": "A set of extended material properties for of water typically used within the context of building services and flow distribution systems.", "properties": { "AcidityConcentration": { "description": "Maximum CaCO3 equivalent that would neutralize the acid." @@ -5269,7 +5055,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialwater.htm" }, "Pset_MaterialWood": { - "description": "This is a collection of properties applicable to wood-based materials that specify kind and grade of material as well as moisture related parameters.", "properties": { "AppearanceGrade": { "description": "Grade with respect to visual quality." @@ -5302,7 +5087,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialwood.htm" }, "Pset_MaterialWoodBasedBeam": { - "description": "This is a collection of mechanical properties applicable to wood-based materials for beam-like products, especially laminated materials like glulam and LVL. Anisotropy of such materials is taken into account by different properties according to grain direction and load types.", "properties": { "ApplicableStructuralDesignMethod": { "description": "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design." @@ -5470,7 +5254,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialwoodbasedbeam.htm" }, "Pset_MaterialWoodBasedPanel": { - "description": "This is a collection of mechanical properties related to wood-based materials for panel-like products like plywood or OSB. The propositions given above for wood-based beam materials with respect to anisotropy, strength graduation according to element sizes (especially panel thickness) apply accordingly.", "properties": { "ApplicableStructuralDesignMethod": { "description": "Determines whether mechanical material properties are applicable to 'ASD' = allowable stress design (working stress design), 'LSD' = limit state design, or 'LRFD' = load and resistance factor design." @@ -5593,7 +5376,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/pset/pset_materialwoodbasedpanel.htm" }, "Pset_MechanicalFastenerAnchorBolt": { - "description": "Properties common to different types of anchor bolts.", "properties": { "AnchorBoltDiameter": { "description": "The nominal diameter of the anchor bolt bar(s)." @@ -5611,7 +5393,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_mechanicalfasteneranchorbolt.htm" }, "Pset_MechanicalFastenerBolt": { - "description": "Properties related to bolt-type fasteners. The properties of a whole set with bolt, washers and nut may be provided. Note, it is usually not necessary to transmit these properties in case of standardized bolts. Instead, the standard is referred to.", "properties": { "HeadShape": { "description": "Shape of the bolt's head, e.g. 'Hexagon', 'Countersunk', 'Cheese'" @@ -5641,7 +5422,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_mechanicalfastenerbolt.htm" }, "Pset_MechanicalFastenerCommon": { - "description": "Properties related to mechanical fasteners.", "properties": { "NominalDiameter": { "description": "The nominal diameter describing the cross-section size of the fastener type." @@ -5653,7 +5433,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/pset/pset_mechanicalfastenercommon.htm" }, "Pset_MedicalDeviceTypeCommon": { - "description": "Medical device type common attributes.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1')." @@ -5665,7 +5444,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_medicaldevicetypecommon.htm" }, "Pset_MemberCommon": { - "description": "Properties common to the definition of all occurrences of IfcMember.", "properties": { "FireRating": { "description": "Fire rating for this object. It is given according to the national fire safety classification." @@ -5698,7 +5476,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_membercommon.htm" }, "Pset_MotorConnectionTypeCommon": { - "description": "Common properties for motor connections.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -5710,7 +5487,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_motorconnectiontypecommon.htm" }, "Pset_OpeningElementCommon": { - "description": "Properties common to the definition of all instances of IfcOpeningElement.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here whether the space (in case of e.g., a corridor) is designed to serve as an exit space, e.g., for fire escape purposes." @@ -5731,7 +5507,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_openingelementcommon.htm" }, "Pset_OutletTypeCommon": { - "description": "Common properties for different outlet types.", "properties": { "IsPluggableOutlet": { "description": "Indication of whether the outlet accepts a loose plug connection (= TRUE) or whether it is directly connected (= FALSE) or whether the form of connection has not yet been determined (= UNKNOWN)." @@ -5749,7 +5524,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_outlettypecommon.htm" }, "Pset_OutsideDesignCriteria": { - "description": "Outside air conditions used as the basis for calculating thermal loads at peak conditions, as well as the weather data location from which these conditions were obtained.", "properties": { "BuildingThermalExposure": { "description": "The thermal exposure expected by the building based on surrounding site conditions." @@ -5788,7 +5562,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_outsidedesigncriteria.htm" }, "Pset_PackingInstructions": { - "description": "Packing instructions are specific instructions relating to the packing that is required for an artifact in the event of a move (or transport).", "properties": { "ContainerMaterial": { "description": "Special requirements for material used to contain an artefact." @@ -5806,7 +5579,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_packinginstructions.htm" }, "Pset_Permit": { - "description": "A permit is a document that allows permission to gain access to an area or carry out work in a situation where security or other access restrictions apply.", "properties": { "EndDate": { "description": "Date and time at which the permit ceases to be valid." @@ -5824,7 +5596,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_permit.htm" }, "Pset_PileCommon": { - "description": "Properties common to the definition of all occurrences of IfcPile.", "properties": { "LoadBearing": {}, "Reference": { @@ -5837,7 +5608,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_pilecommon.htm" }, "Pset_PipeConnectionFlanged": { - "description": "This property set is used to define the specifics of a flanged pipe connection used between occurrences of pipe segments and fittings.", "properties": { "BoltSize": { "description": "Size of the bolts securing the flange." @@ -5867,7 +5637,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipeconnectionflanged.htm" }, "Pset_PipeFittingOccurrence": { - "description": "Pipe segment occurrence attributes attached to an instance of IfcPipeSegment.", "properties": { "Color": { "description": "The color of the pipe segment." @@ -5879,7 +5648,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipefittingoccurrence.htm" }, "Pset_PipeFittingPHistory": { - "description": "Pipe fitting performance history common attributes.", "properties": { "FlowrateLeakage": { "description": "Leakage flowrate versus pressure difference." @@ -5891,7 +5659,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipefittingphistory.htm" }, "Pset_PipeFittingTypeBend": { - "description": "Pipe fitting type attributes for bend shapes.", "properties": { "BendAngle": { "description": "The change of direction of flow." @@ -5903,7 +5670,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipefittingtypebend.htm" }, "Pset_PipeFittingTypeCommon": { - "description": "Pipe fitting type common attributes.", "properties": { "FittingLossFactor": { "description": "A factor that determines the pressure loss due to friction through the fitting." @@ -5927,7 +5693,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipefittingtypecommon.htm" }, "Pset_PipeFittingTypeJunction": { - "description": "Pipe fitting type attributes for junction shapes.", "properties": { "JunctionLeftAngle": { "description": "The change of direction of flow for the left junction." @@ -5948,7 +5713,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipefittingtypejunction.htm" }, "Pset_PipeSegmentOccurrence": { - "description": "Pipe segment occurrence attributes attached to an instance of IfcPipeSegment.", "properties": { "Color": { "description": "The color of the pipe segment." @@ -5966,7 +5730,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipesegmentoccurrence.htm" }, "Pset_PipeSegmentPHistory": { - "description": "Pipe segment performance history common attributes.", "properties": { "FluidFlowLeakage": { "description": "Volumetric leakage flow rate." @@ -5978,7 +5741,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipesegmentphistory.htm" }, "Pset_PipeSegmentTypeCommon": { - "description": "Pipe segment type common attributes.", "properties": { "InnerDiameter": { "description": "The actual inner diameter of the pipe." @@ -6008,7 +5770,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipesegmenttypecommon.htm" }, "Pset_PipeSegmentTypeCulvert": { - "description": "Covered channel or large pipe that forms a watercourse below ground level, usually under a road or railway (BS6100).", "properties": { "ClearDepth": { "description": "The clear depth of the culvert." @@ -6020,7 +5781,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipesegmenttypeculvert.htm" }, "Pset_PipeSegmentTypeGutter": { - "description": "Gutter segment type common attributes.", "properties": { "FlowRating": { "description": "Actual flow capacity for the gutter. Value of 0.00 means this value has not been set." @@ -6032,7 +5792,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pipesegmenttypegutter.htm" }, "Pset_PlateCommon": { - "description": "Properties common to the definition of all occurrences of IfcPlate.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -6059,7 +5818,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_platecommon.htm" }, "Pset_PrecastConcreteElementFabrication": { - "description": "Production and manufacturing related properties common to different types of precast concrete elements. The Pset applies to manufactured pieces. It can be used by a number of subtypes of IfcBuildingElement. If the precast concrete ele", "properties": { "ActualErectionDate": { "description": "Date erected." @@ -6086,7 +5844,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_precastconcreteelementfabrication.htm" }, "Pset_PrecastConcreteElementGeneral": { - "description": "Production and manufacturing related properties common to different types of precast concrete elements. The Pset can be used by a number of subtypes of IfcBuildingElement. If the precast concrete element is a sandwich wall panel each structural layer or shell represented by an IfcBuildingElementPart may be attached to a separate Pset of this type, if needed. Some of the properties apply only for specific types of precast concrete elements.", "properties": { "BatterAtEnd": { "description": "The angle, in radians, by which the formwork at the ending face of a piece is to be rotated from the vertical in order to compensate for the rotation of the face that will occur once the piece is stripped from its form, inducing camber due to eccentric prestressing." @@ -6152,7 +5909,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_precastconcreteelementgeneral.htm" }, "Pset_PrecastSlab": { - "description": "Layout and component information defining how prestressed slab components are laid out in a precast slab assembly. The values are global defaults for the slab as a whole, but can be overridden by local placements of the individual com", "properties": { "AngleBetweenComponentAxes": { "description": "The angle between the axes of each pair of components." @@ -6182,7 +5938,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_precastslab.htm" }, "Pset_ProfileArbitraryDoubleT": { - "description": "This is a collection of geometric properties of double-T section profiles of precast concrete elements, to be used in conjunction with IfcArbitraryProfileDef when profile designation alone does not fulfill the information requirements.", "properties": { "FlangeBaseFillet": { "description": "Flange base fillet of the profile." @@ -6233,7 +5988,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/pset/pset_profilearbitrarydoublet.htm" }, "Pset_ProfileArbitraryHollowCore": { - "description": "This is a collection of geometric properties of hollow core section profiles of precast concrete elements, to be used in conjunction with IfcArbitraryProfileDefWithVoids when profile designation alone does not fulfill the information requirements.", "properties": { "BaseChamfer": { "description": "Base chamfer of the profile." @@ -6308,7 +6062,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/pset/pset_profilearbitraryhollowcore.htm" }, "Pset_ProfileMechanical": { - "description": "This is a collection of mechanical properties that are applicable to virtually all profile classes. Most of these properties are especially used in structural analysis.", "properties": { "CentreOfGravityInX": { "description": "Location of the profile's centre of gravity (geometric centroid), measured along xp." @@ -6389,7 +6142,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/pset/pset_profilemechanical.htm" }, "Pset_ProjectOrderChangeOrder": { - "description": "A change order is an instruction to make a change to a product or work being undertake. Note that the change order status is defined in the same way as a work order status since a change order implies a work requirement.", "properties": { "BudgetSource": { "description": "The budget source requested." @@ -6401,7 +6153,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_projectorderchangeorder.htm" }, "Pset_ProjectOrderMaintenanceWorkOrder": { - "description": "A MaintenanceWorkOrder is a detailed description of maintenance work that is to be performed. Note that the Scheduled Frequency property of the maintenance work order is used when the order is required as an instance of a scheduled work order.", "properties": { "ContractualType": { "description": "The contractual type of the work." @@ -6431,7 +6182,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_projectordermaintenanceworkorder.htm" }, "Pset_ProjectOrderMoveOrder": { - "description": "Defines the requirements for move orders. Note that the move order status is defined in the same way as a work order status since a move order implies a work requirement.", "properties": { "SpecialInstructions": { "description": "Special instructions that affect the move." @@ -6440,7 +6190,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_projectordermoveorder.htm" }, "Pset_ProjectOrderPurchaseOrder": { - "description": "Defines the requirements for purchase orders in a project.", "properties": { "IsFOB": { "description": "Indication of whether contents of the purchase order are delivered 'Free on Board' (= True) or not (= False). FOB is a shipping term which indicates that the supplier pays the shipping costs (and usually also the insurance costs) from the point of manufacture to a specified destination, at which point the buyer takes responsibility." @@ -6452,7 +6201,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_projectorderpurchaseorder.htm" }, "Pset_ProjectOrderWorkOrder": { - "description": "Defines the requirements for purchase orders in a project.", "properties": { "ContractualType": { "description": "The contractual type of the work." @@ -6470,7 +6218,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/pset/pset_projectorderworkorder.htm" }, "Pset_PropertyAgreement": { - "description": "A property agreement is an agreement that enables the occupation of a property for a period of time.", "properties": { "AgreementType": { "description": "Identifies the predefined types of property agreement from which the type required may be set." @@ -6512,7 +6259,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_propertyagreement.htm" }, "Pset_ProtectiveDeviceBreakerUnitI2TCurve": { - "description": "A coherent set of attributes representing a curve for let-through energy of a protective device. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics", "properties": { "BreakerUnitCurve": { "description": "A curve that establishes the let through energy of a breaker unit when a particular prospective current is applied. Note that the breaker unit curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set:" @@ -6527,7 +6273,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicebreakeruniti2tcurve.htm" }, "Pset_ProtectiveDeviceBreakerUnitI2TFuseCurve": { - "description": "A coherent set of attributes representing curves for melting- and breaking-energy of a fuse. Note - A fuse may be associated with different instances of this property set providing information related to different basic characteristics.", "properties": { "BreakerUnitFuseBreakingingCurve": { "description": "A curve that establishes the let through breaking energy of a breaker unit when a particular prospective breaking current is applied. Note that the breaker unit fuse breaking curve is defined within a Cartesian coordinate system and this fact must be:" @@ -6542,7 +6287,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicebreakeruniti2tfusecurve.htm" }, "Pset_ProtectiveDeviceBreakerUnitIPICurve": { - "description": "A coherent set of attributes representing curves for let-through currents of a protective device. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics.", "properties": { "BreakerUnitIPICurve": { "description": "A curve that establishes the let through peak current of a breaker unit when a particular prospective current is applied. Note that the breaker unit IPI curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set:" @@ -6557,7 +6301,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicebreakerunitipicurve.htm" }, "Pset_ProtectiveDeviceBreakerUnitTypeMCB": { - "description": "A coherent set of attributes representing the breaking capacities of an MCB. Note - A protective device may be associated with different instances of this property set providing information related to different basic characteristics.", "properties": { "ICN60898": { "description": "The nominal breaking capacity in [A] for an MCB tested in accordance with the IEC 60898 series." @@ -6584,7 +6327,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicebreakerunittypemcb.htm" }, "Pset_ProtectiveDeviceBreakerUnitTypeMotorProtection": { - "description": "A coherent set of attributes representing different capacities of a a motor protection device, defined in accordance with IEC 60947. Note - A protective device may be associated with different instances of this Pset.", "properties": { "ICM60947": { "description": "The making capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." @@ -6608,7 +6350,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicebreakerunittypemotorprotection.htm" }, "Pset_ProtectiveDeviceOccurrence": { - "description": "Properties that are applied to an occurrence of a protective device.", "properties": { "GroundFaultCurrentSetValue": { "description": "Ground fault current set value. The set value of the ground tripping current if adjustable." @@ -6656,7 +6397,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedeviceoccurrence.htm" }, "Pset_ProtectiveDeviceTrippingCurve": { - "description": "Tripping curves are applied to thermal, thermal magnetic or MCB_RCD tripping units (i.e. tripping units having type property sets for thermal, thermal magnetic or MCB_RCD tripping defined). They are not applied to electronic tripping units.", "properties": { "TrippingCurve": { "description": "A curve that establishes the release time of a tripping unit when a particular prospective current is applied. Note that the tripping curve is defined within a Cartesian coordinate system and this fact must be asserted within the property set: " @@ -6668,7 +6408,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingcurve.htm" }, "Pset_ProtectiveDeviceTrippingFunctionGCurve": { - "description": "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units. This property set represent the ground fault protection (G-curve) of an electronic protection device", "properties": { "CurrentTolerance1": { "description": "The tolerance for the current of time/current-curve in [%]." @@ -6725,7 +6464,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingfunctiongcurve.htm" }, "Pset_ProtectiveDeviceTrippingFunctionICurve": { - "description": "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units. This property set represent the instantaneous time protection (I-curve) of an electronic protection device.", "properties": { "CurrentTolerance1": { "description": "The tolerance for the current of time/current-curve in [%]." @@ -6773,7 +6511,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingfunctionicurve.htm" }, "Pset_ProtectiveDeviceTrippingFunctionLCurve": { - "description": "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units. This property set represent the long time protection (L-curve) of an electronic protection device", "properties": { "IsSelectable": { "description": "Indication whether the L-function can be switched off or not." @@ -6806,7 +6543,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingfunctionlcurve.htm" }, "Pset_ProtectiveDeviceTrippingFunctionSCurve": { - "description": "Tripping functions are applied to electronic tripping units (i.e. tripping units having type property sets for electronic tripping defined). They are not applied to thermal, thermal magnetic or RCD tripping units. This property set represent the short time protection (S-curve) of an electronic protection device.", "properties": { "CurrentTolerance1": { "description": "The tolerance for the current of time/current-curve in [%]." @@ -6863,7 +6599,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingfunctionscurve.htm" }, "Pset_ProtectiveDeviceTrippingUnitCurrentAdjustment": { - "description": "A set of current adjustment values that may be applied to an electronic or thermal tripping unit type.", "properties": { "AdjustmentDesignation": { "description": "The desgnation on the device for the adjustment." @@ -6884,7 +6619,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunitcurrentadjustment.htm" }, "Pset_ProtectiveDeviceTrippingUnitTimeAdjustment": { - "description": "A set of time adjustment values that may be applied to an electronic or thermal tripping unit type.", "properties": { "AdjustmentDesignation": { "description": "The desgnation on the device for the adjustment." @@ -6911,7 +6645,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittimeadjustment.htm" }, "Pset_ProtectiveDeviceTrippingUnitTypeCommon": { - "description": "Common information concerning tripping units that area associated with protective devices", "properties": { "AtexVerified": { "description": "An indication whether the tripping_unit is verified to be applied in EX-environment or not." @@ -6938,7 +6671,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittypecommon.htm" }, "Pset_ProtectiveDeviceTrippingUnitTypeElectroMagnetic": { - "description": "Information on tripping units that are electrically or magnetically tripped.", "properties": { "CurveDesignation": { "description": "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898." @@ -6974,7 +6706,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittypeelectromagnetic.htm" }, "Pset_ProtectiveDeviceTrippingUnitTypeElectronic": { - "description": "Information on tripping units that are electronically tripped.", "properties": { "ElectronicTrippingUnitType": { "description": "A list of the available types of electronic tripping unit from which that required may be selected." @@ -6998,7 +6729,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittypeelectronic.htm" }, "Pset_ProtectiveDeviceTrippingUnitTypeResidualCurrent": { - "description": "Information on tripping units that are activated by residual current.", "properties": { "TrippingUnitReleaseCurrent": { "description": "The value of tripping or residual current for which the device has the possibility to be equipped. The values are given in mA." @@ -7007,7 +6737,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittyperesidualcurrent.htm" }, "Pset_ProtectiveDeviceTrippingUnitTypeThermal": { - "description": "Information on tripping units that are thermally tripped.", "properties": { "CurveDesignation": { "description": "The designation of the trippingcurve given by the manufacturer. For a MCB the designation should be in accordance with the designations given in IEC 60898." @@ -7034,7 +6763,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetrippingunittypethermal.htm" }, "Pset_ProtectiveDeviceTypeCircuitBreaker": { - "description": "A coherent set of attributes representing different capacities of a circuit breaker or of a motor protection device, defined in accordance with IEC 60947. Note - A protective device may be associated with different instances of this property set providing information related to different basic characteristics.", "properties": { "ICM60947": { "description": "The making capacity in [A] for a circuit breaker or motor protection device tested in accordance with the IEC 60947 series." @@ -7058,7 +6786,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetypecircuitbreaker.htm" }, "Pset_ProtectiveDeviceTypeCommon": { - "description": "Properties that are applied to a definition of a protective device.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -7070,7 +6797,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetypecommon.htm" }, "Pset_ProtectiveDeviceTypeEarthLeakageCircuitBreaker": { - "description": "An earth failure device acts to protect people and equipment from the effects of current leakage.", "properties": { "EarthFailureDeviceType": { "description": "A list of the available types of circuit breaker from which that required may be selected where:" @@ -7082,7 +6808,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetypeearthleakagecircuitbreaker.htm" }, "Pset_ProtectiveDeviceTypeFuseDisconnector": { - "description": "A coherent set of attributes representing the breakeing capacity of a fuse, defined in accordance with IEC 60269. Note - A protective device may be associated with different instances of this pSet providing information related to different basic characteristics.", "properties": { "FuseDisconnectorType": { "description": "A list of the available types of fuse disconnector from which that required may be selected where:" @@ -7100,7 +6825,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetypefusedisconnector.htm" }, "Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker": { - "description": "A residual current circuit breaker opens, closes or isolates a circuit and has short circuit and overload protection.", "properties": { "Sensitivity": { "description": "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)." @@ -7109,7 +6833,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetyperesidualcurrentcircuitbreaker.htm" }, "Pset_ProtectiveDeviceTypeResidualCurrentSwitch": { - "description": "A residual current switch opens, closes or isolates a circuit and has no short circuit or overload protection.", "properties": { "Sensitivity": { "description": "Current leakage to an unwanted leading path during normal operation (IEC 151-14-49)." @@ -7118,7 +6841,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetyperesidualcurrentswitch.htm" }, "Pset_ProtectiveDeviceTypeVaristor": { - "description": "A high voltage surge protection device.", "properties": { "VaristorType": { "description": "A list of the available types of varistor from which that required may be selected." @@ -7127,7 +6849,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_protectivedevicetypevaristor.htm" }, "Pset_PumpOccurrence": { - "description": "Pump occurrence attributes attached to an instance of IfcPump.", "properties": { "BaseType": { "description": "Defines general types of pump bases." @@ -7142,7 +6863,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pumpoccurrence.htm" }, "Pset_PumpPHistory": { - "description": "Pump performance history attributes.", "properties": { "Flowrate": { "description": "The actual operational fluid flowrate." @@ -7166,7 +6886,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pumpphistory.htm" }, "Pset_PumpTypeCommon": { - "description": "Common attributes of a pump type.", "properties": { "ConnectionSize": { "description": "The connection size of the to and from the pump." @@ -7196,7 +6915,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_pumptypecommon.htm" }, "Pset_RailingCommon": { - "description": "Properties common to the definition of all occurrences of IfcRailing.", "properties": { "Diameter": { "description": "Diameter of the object. It is the diameter of the handrail of the railing. The size information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the size properties, provided in the attached property set, the geometric parameters take precedence. Here the diameter of the hand or guardrail within the railing." @@ -7217,7 +6935,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_railingcommon.htm" }, "Pset_RampCommon": { - "description": "Properties common to the definition of all occurrences of IfcRamp.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit ramp in accordance to the national building code." @@ -7252,7 +6969,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_rampcommon.htm" }, "Pset_RampFlightCommon": { - "description": "Properties common to the definition of all occurrences of IfcRampFlight.", "properties": { "ClearWidth": { "description": "Actual clear width measured as the clear space for accessibility and egress; it is a measured distance betwen the two handrails or the wall and a handrail on a ramp. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." @@ -7276,7 +6992,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_rampflightcommon.htm" }, "Pset_ReinforcementBarCountOfIndependentFooting": { - "description": "Reinforcement Concrete parameter [ST-2]: The amount number information of reinforcement bar with the independent footing. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -7300,7 +7015,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcementbarcountofindependentfooting.htm" }, "Pset_ReinforcementBarPitchOfBeam": { - "description": "The pitch length information of reinforcement bar with the beam.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -7318,7 +7032,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcementbarpitchofbeam.htm" }, "Pset_ReinforcementBarPitchOfColumn": { - "description": "The pitch length information of reinforcement bar with the column. The X and Y direction are based on the local coordinate system of building storey. The X and Y direction of the reinforcement bar are parallel to the X and Y axis of the IfcBuildingStorey's local coordinate system, respectively.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -7348,7 +7061,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcementbarpitchofcolumn.htm" }, "Pset_ReinforcementBarPitchOfContinuousFooting": { - "description": "Reinforcement Concrete parameter [ST-2]: The pitch length information of reinforcement bar with the continuous footing.", "properties": { "CrossingLowerBarPitch": { "description": "The pitch length of the crossing lower bar." @@ -7366,7 +7078,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcementbarpitchofcontinuousfooting.htm" }, "Pset_ReinforcementBarPitchOfSlab": { - "description": "The pitch length information of reinforcement bar with the slab.", "properties": { "Description": { "description": "Description of the reinforcement." @@ -7414,7 +7125,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcementbarpitchofslab.htm" }, "Pset_ReinforcementBarPitchOfWall": { - "description": "The pitch length information of reinforcement bar with the wall.", "properties": { "BarAllocationType": { "description": "Defines the type of the reinforcement bar allocation." @@ -7438,7 +7148,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcementbarpitchofwall.htm" }, "Pset_ReinforcingBarCommon": { - "description": "Properties common to the definition of all occurrences of IfcReinforcingBar.", "properties": { "BarLength": { "description": "The total length of the reinforcing bar. The total length of bended bars are calculated according to local standards with corrections for the bends." @@ -7468,7 +7177,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcingbarcommon.htm" }, "Pset_ReinforcingMeshCommon": { - "description": "Properties common to the definition of all occurrences of IfcReinforcingMesh.", "properties": { "LongitudinalBarNominalDiameter": {}, "LongitudinalBarSpacing": {}, @@ -7498,7 +7206,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_reinforcingmeshcommon.htm" }, "Pset_Risk": { - "description": "An indication of exposure to mischance, peril, menace, hazard or loss.", "properties": { "AffectsSurroundings": { "description": "Indicates wether the risk affects only to the person assigned to that task (FALSE) or if it can also affect to the people in the surroundings (TRUE)." @@ -7537,7 +7244,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_risk.htm" }, "Pset_RoofCommon": { - "description": "Properties common to the definition of all occurrences of IfcRoof. Note: Properties for ProjectedArea and TotalArea added in IFC 2x3", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -7562,7 +7268,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_roofcommon.htm" }, "Pset_SanitaryTerminalTypeBath": { - "description": "Sanitary appliance for immersion of the human body or parts of it (BS6100).", "properties": { "BathType": { "description": "The property enumeration defines the types of bath that may be specified within the property set." @@ -7577,7 +7282,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypebath.htm" }, "Pset_SanitaryTerminalTypeBidet": { - "description": "Waste water appliance for washing the excretory organs while sitting astride the bowl (BS6100).", "properties": { "DrainSize": { "description": "The size of the drain outlet connection from the object." @@ -7592,7 +7296,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypebidet.htm" }, "Pset_SanitaryTerminalTypeCistern": { - "description": "A water storage unit attached to a sanitary terminal that is fitted with a device, operated automatically or by the user, that discharges water to cleanse a water closet (toilet) pan, urinal or slop hopper. (BS6100 330 5008)", "properties": { "CisternCapacity": { "description": "Volumetric capacity of the cistern" @@ -7616,7 +7319,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypecistern.htm" }, "Pset_SanitaryTerminalTypeCommon": { - "description": "Common properties for sanitary terminals.", "properties": { "Color": { "description": "Color selection for this object." @@ -7638,7 +7340,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypecommon.htm" }, "Pset_SanitaryTerminalTypeSanitaryFountain": { - "description": "Asanitary terminal that provides a low pressure jet of water for a specific purpose (IAI).", "properties": { "DrainSize": { "description": "The size of the drain outlet connection from the object." @@ -7653,7 +7354,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypesanitaryfountain.htm" }, "Pset_SanitaryTerminalTypeShower": { - "description": "Installation or waste water appliance that emits a spray of water to wash the human body (BS6100).", "properties": { "DrainSize": { "description": "The size of the drain outlet connection from the object." @@ -7671,7 +7371,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypeshower.htm" }, "Pset_SanitaryTerminalTypeSink": { - "description": "Waste water appliance for receiving, retaining or disposing of domestic, culinary, laboratory or industrial process liquids.", "properties": { "Color": { "description": "Color selection for this object." @@ -7692,7 +7391,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypesink.htm" }, "Pset_SanitaryTerminalTypeToiletPan": { - "description": "Soil appliance for the disposal of excrement.", "properties": { "PanMounting": { "description": "The property enumeration Pset_SanitaryMountingEnum defines the forms of mounting or fixing of the sanitary terminal that may be specified within property sets used to define sanitary terminals (WC\u2019s, basins, sinks, etc.) where:-" @@ -7710,7 +7408,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypetoiletpan.htm" }, "Pset_SanitaryTerminalTypeUrinal": { - "description": "Soil appliance that receives urine and directs it to a waste outlet (BS6100).", "properties": { "Mounting": { "description": "Selection of the form of mounting from the enumerated list of mountings where:-" @@ -7725,7 +7422,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypeurinal.htm" }, "Pset_SanitaryTerminalTypeWashHandBasin": { - "description": "Waste water appliance for washing the upper parts of the body.", "properties": { "DrainSize": { "description": "The size of the drain outlet connection from the object." @@ -7743,7 +7439,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_sanitaryterminaltypewashhandbasin.htm" }, "Pset_SensorPHistory": { - "description": "Properties for history of controller values.", "properties": { "Direction": { "description": "Indicates sensed direction for sensors capturing magnitude and direction measured from True North (0 degrees) in a clockwise direction." @@ -7761,7 +7456,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensorphistory.htm" }, "Pset_SensorTypeCO2Sensor": { - "description": "A device that senses or detects carbon dioxide.", "properties": { "SetPointConcentration": { "description": "The carbon dioxide concentration to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7770,7 +7464,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypeco2sensor.htm" }, "Pset_SensorTypeCommon": { - "description": "Sensor type common attributes.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -7782,7 +7475,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypecommon.htm" }, "Pset_SensorTypeConductanceSensor": { - "description": "A device that senses or detects electrical conductance.", "properties": { "SetPointConductance": { "description": "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7791,7 +7483,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypeconductancesensor.htm" }, "Pset_SensorTypeContactSensor": { - "description": "A device that senses or detects contact.", "properties": { "SetPointContact": { "description": "The contact value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7800,7 +7491,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypecontactsensor.htm" }, "Pset_SensorTypeFireSensor": { - "description": "A device that senses or detects the presence of fire.", "properties": { "AccuracyOfFireSensor": { "description": "The accuracy of the sensor." @@ -7815,7 +7505,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypefiresensor.htm" }, "Pset_SensorTypeFlowSensor": { - "description": "A device that senses or detects flow.", "properties": { "SetPointFlow": { "description": "The volumetric flow value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7824,7 +7513,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypeflowsensor.htm" }, "Pset_SensorTypeFrostSensor": { - "description": "A device that senses or detects the presense of frost.", "properties": { "SetPointFrost": { "description": "The detection of frost." @@ -7833,7 +7521,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypefrostsensor.htm" }, "Pset_SensorTypeGasSensor": { - "description": "A device that senses or detects gas.", "properties": { "CoverageArea": { "description": "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." @@ -7848,7 +7535,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypegassensor.htm" }, "Pset_SensorTypeHeatSensor": { - "description": "A device that senses or detects heat.", "properties": { "CoverageArea": { "description": "The area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." @@ -7863,7 +7549,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypeheatsensor.htm" }, "Pset_SensorTypeHumiditySensor": { - "description": "A device that senses or detects humidity.", "properties": { "SetPointHumidity": { "description": "The humidity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7872,7 +7557,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypehumiditysensor.htm" }, "Pset_SensorTypeIdentifierSensor": { - "description": "A device that senses identification tags.", "properties": { "SetPointIdentifier": { "description": "The detected tag value." @@ -7881,7 +7565,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypeidentifiersensor.htm" }, "Pset_SensorTypeIonConcentrationSensor": { - "description": "A device that senses or detects ion concentration such as water hardness.", "properties": { "SetPointConcentration": { "description": "The ion concentration value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7893,7 +7576,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypeionconcentrationsensor.htm" }, "Pset_SensorTypeLevelSensor": { - "description": "A device that senses or detects fill level.", "properties": { "SetPointLevel": { "description": "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7902,7 +7584,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypelevelsensor.htm" }, "Pset_SensorTypeLightSensor": { - "description": "A device that senses or detects light.", "properties": { "SetPointIlluminance": { "description": "The illuminance value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7911,7 +7592,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypelightsensor.htm" }, "Pset_SensorTypeMoistureSensor": { - "description": "A device that senses or detects moisture.", "properties": { "SetPointMoisture": { "description": "The moisture value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7920,7 +7600,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypemoisturesensor.htm" }, "Pset_SensorTypeMovementSensor": { - "description": "A device that senses or detects movement.", "properties": { "MovementSensingType": { "description": "Enumeration that identifies the type of movement sensing mechanism." @@ -7932,7 +7611,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypemovementsensor.htm" }, "Pset_SensorTypePHSensor": { - "description": "A device that senses or detects acidity.", "properties": { "SetPointPH": { "description": "The fill level value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7941,7 +7619,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypephsensor.htm" }, "Pset_SensorTypePressureSensor": { - "description": "A device that senses or detects pressure.", "properties": { "IsSwitch": { "description": "Identifies if the sensor also functions as a switch at the set point (=TRUE) or not (= FALSE)." @@ -7953,7 +7630,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypepressuresensor.htm" }, "Pset_SensorTypeRadiationSensor": { - "description": "A device that senses or detects radiation.", "properties": { "SetPointRadiation": { "description": "The radiation power value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7962,7 +7638,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortyperadiationsensor.htm" }, "Pset_SensorTypeRadioactivitySensor": { - "description": "A device that senses or detects atomic decay.", "properties": { "SetPointRadioactivity": { "description": "The radioactivity value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7971,7 +7646,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortyperadioactivitysensor.htm" }, "Pset_SensorTypeSmokeSensor": { - "description": "A device that senses or detects smoke.", "properties": { "CoverageArea": { "description": "The floor area that is covered by the sensor (typically measured as a circle whose center is at the location of the sensor)." @@ -7986,7 +7660,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypesmokesensor.htm" }, "Pset_SensorTypeSoundSensor": { - "description": "A device that senses or detects sound.", "properties": { "SetPointSound": { "description": "The sound pressure value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -7995,7 +7668,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypesoundsensor.htm" }, "Pset_SensorTypeTemperatureSensor": { - "description": "A device that senses or detects temperature.", "properties": { "SetPointTemperature": { "description": "The temperature value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -8007,7 +7679,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypetemperaturesensor.htm" }, "Pset_SensorTypeWindSensor": { - "description": "A device that senses or detects wind speed and direction.", "properties": { "SetPointSpeed": { "description": "The wind speed value to be sensed. Use IfcPropertyBoundedValue.SetPointValue to set the set point value." @@ -8019,7 +7690,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_sensortypewindsensor.htm" }, "Pset_ServiceLife": { - "description": "Captures the period of time that an artifact will last.", "properties": { "MeanTimeBetweenFailure": { "description": "The average time duration between instances of failure of a product." @@ -8031,7 +7701,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_servicelife.htm" }, "Pset_ServiceLifeFactors": { - "description": "Captures various factors that impact the expected service life of elements within the system or zone.", "properties": { "DesignLevel": { "description": "Adjustment of the service life resulting from the effect of design level employed." @@ -8058,7 +7727,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_servicelifefactors.htm" }, "Pset_ShadingDeviceCommon": { - "description": "Shading device properties associated with an element that represents a shading device", "properties": { "IsExternal": { "description": "Indication whether the element is designed for use in the exterior (TRUE) or not (FALSE). If (TRUE) it is an external element and faces the outside of the building." @@ -8100,7 +7768,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_shadingdevicecommon.htm" }, "Pset_ShadingDevicePHistory": { - "description": "Shading device performance history attributes.", "properties": { "Azimuth": { "description": "The azimuth of the outward normal for the outward or upward facing surface." @@ -8112,7 +7779,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_shadingdevicephistory.htm" }, "Pset_SiteCommon": { - "description": "Properties common to the definition of all occurrences of IfcSite. Please note that several site attributes are handled directly at the IfcSite instance, the site number (or short name) by IfcSite.Name, the site name (or long name) by IfcSite.LongName, and the description (or comments) by IfcSite.Description. The land title number is also given as an explicit attribute IfcSite.LandTitleNumber. Actual site quantities, like site perimeter, site area and site volume are provided by IfcElementQuantity, and site classification according to national building code by IfcClassificationReference. The global positioning of the site in terms of Northing and Easting and height above sea level datum is given by IfcSite.RefLongitude, IfcSite.RefLatitude, IfcSite.RefElevation and the postal address by IfcSite.SiteAddress.", "properties": { "BuildableArea": { "description": "The area of site utilization expressed as a maximum value according to local building codes." @@ -8136,7 +7802,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_sitecommon.htm" }, "Pset_SlabCommon": { - "description": "Properties common to the definition of all occurrences of IfcSlab. Note: Properties for PitchAngle added in IFC 2x3", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -8175,7 +7840,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_slabcommon.htm" }, "Pset_SolarDeviceTypeCommon": { - "description": "Common properties for solar device types.", "properties": { "ActiveCellSurfaceAreaFraction": { "description": "The percentage of surface area containing active solar cells. Note: the surface area may be provided at Qto_SolarDeviceBaseQuantities.GrossArea." @@ -8193,7 +7857,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_solardevicetypecommon.htm" }, "Pset_SoundAttenuation": { - "description": "Common definition to capture sound pressure at a point on behalf of a device typically used within the context of building services and flow distribution systems. To indicate sound values from an instance of IfcDistributionFlowElement at a particular location, IfcAnnotation instance(s) should be assigned to the IfcDistributionFlowElement through the IfcRelAssignsToProduct relationship. The IfcAnnotation should specify ObjectType of 'Sound' and geometric representation of 'Annotation Point' consisting of a single IfcPoint subtype as described at IfcAnnotation. This property set is instantiated multiple times on an object for each frequency band.", "properties": { "SoundFrequency": { "description": "List of nominal sound frequencies, correlated to the SoundPressure time series values (IfcTimeSeries.ListValues)" @@ -8208,7 +7871,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_soundattenuation.htm" }, "Pset_SoundGeneration": { - "description": "Common definition to capture the properties of sound typically used within the context of building services and flow distribution systems. This property set is instantiated multiple times on an object for each frequency band.", "properties": { "SoundCurve": { "description": "Table of sound frequencies and sound power measured in decibels at a reference power of 1 picowatt(10\\^(-12) watt) for the referenced octave band frequency." @@ -8217,7 +7879,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_soundgeneration.htm" }, "Pset_SpaceCommon": { - "description": "Properties common to the definition of all occurrences of IfcSpace. Please note that several space attributes are handled directly at the IfcSpace instance, the space number (or short name) by IfcSpace.Name, the space name (or long name) by IfcSpace:LongName, and the description (or comments) by IfcSpace.Description. Actual space quantities, like space perimeter, space area and space volume are provided by IfcElementQuantity, and space classification according to national building code by IfcClassificationReference. The level above zero (relative to the building) for the slab row construction is provided by the IfcBuildingStorey.Elevation, the level above zero (relative to the building) for the floor finish is provided by the IfcSpace.ElevationWithFlooring.", "properties": { "GrossPlannedArea": { "description": "Total planned gross area for the space. Used for programming the space." @@ -8241,7 +7902,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spacecommon.htm" }, "Pset_SpaceCoveringRequirements": { - "description": "Properties common to the definition of covering requirements of IfcSpace. Those properties define the requirements coming from a space program in early project phases and can later be used to define the room book information, if such coverings are not modeled explicitly as covering elements.", "properties": { "CeilingCovering": { "description": "Label to indicate the material or finish of the space flooring. The label is used for room book information and often displayed in room stamp." @@ -8289,7 +7949,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spacecoveringrequirements.htm" }, "Pset_SpaceFireSafetyRequirements": { - "description": "Properties related to fire protection of spaces that apply to the occurrences of IfcSpace or IfcZone.", "properties": { "AirPressurization": { "description": "Indication whether the space is required to have pressurized air (TRUE) or not (FALSE)." @@ -8313,7 +7972,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spacefiresafetyrequirements.htm" }, "Pset_SpaceHeaterPHistory": { - "description": "Space heater performance history common attributes.", "properties": { "AirResistanceCurve": { "description": "Air resistance curve (w/ fan only); Pressure = f ( flow rate)." @@ -8355,7 +8013,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_spaceheaterphistory.htm" }, "Pset_SpaceHeaterTypeCommon": { - "description": "Space heater type common attributes. SoundLevel attribute deleted in IFC2x2 Pset Addendum: Use IfcSoundProperties instead. Properties added in IFC4.", "properties": { "BodyMass": { "description": "Overall body mass of the heater." @@ -8400,7 +8057,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_spaceheatertypecommon.htm" }, "Pset_SpaceHeaterTypeConvector": { - "description": "Space heater type convector attributes.", "properties": { "ConvectorType": { "description": "Indicates the type of convector, whether forced air (mechanically driven) or natural (gravity)." @@ -8409,7 +8065,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_spaceheatertypeconvector.htm" }, "Pset_SpaceHeaterTypeRadiator": { - "description": "Space heater type radiator attributes.", "properties": { "RadiatorType": { "description": "Indicates the type of radiator." @@ -8424,7 +8079,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_spaceheatertyperadiator.htm" }, "Pset_SpaceLightingRequirements": { - "description": "Properties related to the lighting requirements that apply to the occurrences of IfcSpace or IfcZone. This includes the required artificial lighting, illuminance, etc.", "properties": { "ArtificialLighting": { "description": "Indication whether this space requires artificial lighting (as natural lighting would be not sufficient). (TRUE) indicates yes (FALSE) otherwise." @@ -8436,7 +8090,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spacelightingrequirements.htm" }, "Pset_SpaceOccupancyRequirements": { - "description": "Properties concerning work activities occurring or expected to occur within one or a set of similar spatial structure elements.", "properties": { "AreaPerOccupant": { "description": "Design occupancy loading for this type of usage assigned to this space." @@ -8463,7 +8116,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spaceoccupancyrequirements.htm" }, "Pset_SpaceParking": { - "description": "Properties common to the definition of all occurrences of IfcSpace which have an attribute value for ObjectType = 'Parking'. NOTE: Modified in IFC 2x3, properties ParkingUse and ParkingUnits added.", "properties": { "IsAisle": { "description": "Indicates that this parking zone is for accessing the parking units, i.e. an aisle (TRUE) and not a parking unit itself (FALSE)" @@ -8481,7 +8133,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spaceparking.htm" }, "Pset_SpaceThermalDesign": { - "description": "Space or zone HVAC design requirements.", "properties": { "BoundaryAreaHeatLoss": { "description": "Heat loss per unit area for the boundary object. This is a design input value for use in the absence of calculated load data." @@ -8526,7 +8177,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_spacethermaldesign.htm" }, "Pset_SpaceThermalLoad": { - "description": "The space thermal load defines all thermal losses and gains occurring within a space or zone. The thermal load source attribute defines an enumeration of possible sources of the thermal load. The maximum, minimum, time series and app", "properties": { "AirExchangeRate": { "description": "Loads from the air exchange rate." @@ -8574,7 +8224,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_spacethermalload.htm" }, "Pset_SpaceThermalLoadPHistory": { - "description": "The space thermal load IfcSpaceThermalLoadProperties defines actual measured thermal losses and gains occurring within a space or zone. The thermal load source attribute defines an enumeration of possible sources of the thermal load.", "properties": { "AirExchangeRate": { "description": "Loads from the air exchange rate." @@ -8622,7 +8271,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_spacethermalloadphistory.htm" }, "Pset_SpaceThermalPHistory": { - "description": "Thermal and air flow conditions of a space or zone.", "properties": { "CoolingAirFlowRate": { "description": "Cooling air flow rate in the space." @@ -8646,7 +8294,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_spacethermalphistory.htm" }, "Pset_SpaceThermalRequirements": { - "description": "Properties related to the comfort requirements for thermal and other thermal related performance properties of spaces that apply to the occurrences of IfcSpace, IfcSpatialZone or IfcZone. It can also be used to capture requirements for IfcSpaceType's. This includes the required design temperature, humidity, ventilation, and air conditioning.", "properties": { "AirConditioning": { "description": "Indication whether this space requires air conditioning provided (TRUE) or not (FALSE)." @@ -8715,7 +8362,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_spatialzonecommon.htm" }, "Pset_StackTerminalTypeCommon": { - "description": "Common properties for stack terminals.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -8727,7 +8373,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_stackterminaltypecommon.htm" }, "Pset_StairCommon": { - "description": "Properties common to the definition of all occurrences of IfcStair.", "properties": { "FireExit": { "description": "Indication whether this object is designed to serve as an exit in the case of fire (TRUE) or not (FALSE). Here it defines an exit stair in accordance to the national building code." @@ -8786,7 +8431,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_staircommon.htm" }, "Pset_StairFlightCommon": { - "description": "Properties common to the definition of all occurrences of IfcStairFlight.", "properties": { "Headroom": { "description": "Actual headroom clearance for the passageway according to the current design. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." @@ -8828,7 +8472,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_stairflightcommon.htm" }, "Pset_StructuralSurfaceMemberVaryingThickness": { - "description": "Thickness parameters of a surface member (structural analysis item) with varying thickness, particularly with linearly varying thickness. The thickness is interpolated/ extrapolated from three points. The locations of these points are given either in local x,y coordinates of the surface member or in global X,Y,Z coordinates. Either way, these points are required to be located within the face or at the bounds of the face of the surface member, and they must not be located on a common line. Local and global coordinates shall not be mixed within the same property set instance.", "properties": { "Location1Global": { "description": "Global X,Y,Z coordinates of the point in which Thickness1 is given" @@ -8861,7 +8504,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/pset/pset_structuralsurfacemembervaryingthickness.htm" }, "Pset_SwitchingDeviceTypeCommon": { - "description": "A switching device is a device designed to make or break the current in one or more electric circuits.", "properties": { "HasLock": { "description": "Indication of whether a switching device has a key operated lock (=TRUE) or not (= FALSE)." @@ -8891,7 +8533,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypecommon.htm" }, "Pset_SwitchingDeviceTypeContactor": { - "description": "An electrical device used to control the flow of power in a circuit on or off.", "properties": { "ContactorType": { "description": "A list of the available types of contactor from which that required may be selected where:" @@ -8900,7 +8541,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypecontactor.htm" }, "Pset_SwitchingDeviceTypeDimmerSwitch": { - "description": "A dimmer switch is a switch that adjusts electrical power through a variable position level action.", "properties": { "DimmerType": { "description": "A list of the available types of dimmer switch from which that required may be selected." @@ -8909,7 +8549,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypedimmerswitch.htm" }, "Pset_SwitchingDeviceTypeEmergencyStop": { - "description": "An emergency stop device acts to remove as quickly as possible any danger that may have arisen unexpectedly.", "properties": { "SwitchOperation": { "description": "Indicates operation of emergency stop switch." @@ -8918,7 +8557,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypeemergencystop.htm" }, "Pset_SwitchingDeviceTypeKeypad": { - "description": "A keypad is a switch supporting multiple functions.", "properties": { "KeypadType": { "description": "A list of the available types of keypad switch from which that required may be selected." @@ -8927,7 +8565,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypekeypad.htm" }, "Pset_SwitchingDeviceTypeMomentarySwitch": { - "description": "A momentary switch is a switch that does not hold state.", "properties": { "MomentaryType": { "description": "A list of the available types of momentary switch from which that required may be selected." @@ -8936,7 +8573,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypemomentaryswitch.htm" }, "Pset_SwitchingDeviceTypePHistory": { - "description": "Indicates switch positions or levels over time, such as for energy management or surveillance.", "properties": { "SetPoint": { "description": "Indicates the switch position over time according to Pset_SwitchingDeviceTypeCommon.SetPoint." @@ -8945,7 +8581,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypephistory.htm" }, "Pset_SwitchingDeviceTypeSelectorSwitch": { - "description": "A selector switch is a switch that adjusts electrical power through a multi-position action.", "properties": { "SelectorType": { "description": "A list of the available types of selector switch from which that required may be selected." @@ -8960,7 +8595,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypeselectorswitch.htm" }, "Pset_SwitchingDeviceTypeStarter": { - "description": "A starter is a switch which in the closed position controls the application of power to an electrical device.", "properties": { "StarterType": { "description": "A list of the available types of starter from which that required may be selected where:" @@ -8969,7 +8603,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypestarter.htm" }, "Pset_SwitchingDeviceTypeSwitchDisconnector": { - "description": "A switch disconnector is a switch which in the open position satisfies the isolating requirements specified for a disconnector.", "properties": { "LoadDisconnectionType": { "description": "A list of the available types of load disconnection from which that required may be selected." @@ -8981,7 +8614,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypeswitchdisconnector.htm" }, "Pset_SwitchingDeviceTypeToggleSwitch": { - "description": "A toggle switch is a switch that enables or isolates electrical power through a two position on/off action.", "properties": { "SwitchActivation": { "description": "A list of the available activations for toggle switches from which that required may be selected." @@ -8996,7 +8628,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_switchingdevicetypetoggleswitch.htm" }, "Pset_SystemFurnitureElementTypeCommon": { - "description": "Common properties for all systems furniture (I.e. modular furniture) element types (e.g. vertical panels, work surfaces, and storage).", "properties": { "Finishing": { "description": "The finishing applied to system furniture elements of this type e.g. walnut, fabric." @@ -9017,7 +8648,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_systemfurnitureelementtypecommon.htm" }, "Pset_SystemFurnitureElementTypePanel": { - "description": "A set of specific properties for vertical panels that assembly workstations..", "properties": { "FurniturePanelType": { "description": "Available panel types from which that required may be selected." @@ -9032,7 +8662,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_systemfurnitureelementtypepanel.htm" }, "Pset_SystemFurnitureElementTypeWorkSurface": { - "description": "A set of specific properties for work surfaces used in workstations.", "properties": { "HangingHeight": { "description": "The hanging height of the worksurface." @@ -9053,7 +8682,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_systemfurnitureelementtypeworksurface.htm" }, "Pset_TankOccurrence": { - "description": "Properties that relate to a tank. Note that a partial tank may be considered as a compartment within a compartmentalized tank.", "properties": { "HasLadder": { "description": "Indication of whether the tank is provided with a ladder (set TRUE) for access to the top. If no ladder is provided then value is set FALSE." @@ -9068,7 +8696,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tankoccurrence.htm" }, "Pset_TankPHistory": { - "description": "Tank performance history common attributes.", "properties": { "Level": { "description": "The level of the tank as a fraction of its available capacity." @@ -9083,7 +8710,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tankphistory.htm" }, "Pset_TankTypeCommon": { - "description": "Common attributes of a tank type.", "properties": { "AccessType": { "description": "Defines the types of access (or cover) to a tank that may be specified." @@ -9134,7 +8760,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tanktypecommon.htm" }, "Pset_TankTypeExpansion": { - "description": "Common attributes of an expansion type tank.", "properties": { "ChargePressure": { "description": "Nominal or design operating pressure of the tank." @@ -9149,7 +8774,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tanktypeexpansion.htm" }, "Pset_TankTypePreformed": { - "description": "Fixed vessel manufactured as a single unit with one or more compartments for storing a liquid.", "properties": { "EndShapeType": { "description": "Defines the types of end shapes that can be used for preformed tanks. The convention for reading these enumerated values is that for a vertical cylinder, the first value is the base and the second is the top; for a horizontal cylinder, the order of reading should be left to right. For a speherical tank, the value UNSET should be used." @@ -9167,7 +8791,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tanktypepreformed.htm" }, "Pset_TankTypePressureVessel": { - "description": "Common attributes of a pressure vessel.", "properties": { "ChargePressure": { "description": "Nominal or design operating pressure of the tank." @@ -9182,7 +8805,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tanktypepressurevessel.htm" }, "Pset_TankTypeSectional": { - "description": "Fixed vessel constructed from sectional parts with one or more compartments for storing a liquid.", "properties": { "NumberOfSections": { "description": "Number of sections used in the construction of the tank" @@ -9197,7 +8819,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tanktypesectional.htm" }, "Pset_TendonAnchorCommon": { - "description": "Properties common to the definition of all occurrences of IfcTendonAnchor.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1')." @@ -9209,7 +8830,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_tendonanchorcommon.htm" }, "Pset_TendonCommon": { - "description": "Properties common to the definition of all occurrences of IfcTendon.", "properties": { "NominalDiameter": { "description": "The nominal diameter defining the cross-section size of the prestressed part of the tendon." @@ -9227,7 +8847,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/pset/pset_tendoncommon.htm" }, "Pset_ThermalLoadAggregate": { - "description": "The aggregated thermal loads experienced by one or many spaces, zones, or buildings. This aggregate thermal load information is typically addressed by a system or plant.", "properties": { "ApplianceDiversity": { "description": "Diversity of appliance load." @@ -9254,7 +8873,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_thermalloadaggregate.htm" }, "Pset_ThermalLoadDesignCriteria": { - "description": "Building thermal load design data that are used for calculating thermal loads in a space or building.", "properties": { "AppliancePercentLoadToRadiant": { "description": "Percent of sensible load to radiant heat." @@ -9278,7 +8896,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_thermalloaddesigncriteria.htm" }, "Pset_TransformerTypeCommon": { - "description": "An inductive stationary device that transfers electrical energy from one circuit to another.", "properties": { "EfficiencyCurve": { "description": "The ratio of power transformed according to fractional load, where the first value indicates the load percentage and the second value indicates the efficiency of power transformation." @@ -9344,7 +8961,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/pset/pset_transformertypecommon.htm" }, "Pset_TransportElementCommon": { - "description": "Properties common to the definition of all occurrences of IfcTransportElement or IfcTransportElementType", "properties": { "CapacityPeople": { "description": "Capacity of the transportation element measured in numbers of person." @@ -9365,7 +8981,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_transportelementcommon.htm" }, "Pset_TransportElementElevator": { - "description": "Properties common to the definition of all occurrences of IfcTransportElement with the predefined type =\"ELEVATOR\"", "properties": { "ClearDepth": { "description": "Clear depth of the object (elevator). It indicates the distance from the inner surface of the elevator door to the opposite surface of the elevator car. The shape information is provided in addition to the shape representation and the geometric parameters used within. In cases of inconsistency between the geometric parameters and the shape properties, provided in the attached property, the geometric parameters take precedence." @@ -9383,7 +8998,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_transportelementelevator.htm" }, "Pset_TubeBundleTypeCommon": { - "description": "Tube bundle type common attributes.", "properties": { "FoulingFactor": { "description": "Fouling factor of the tubes in the tube bundle." @@ -9437,7 +9051,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tubebundletypecommon.htm" }, "Pset_TubeBundleTypeFinned": { - "description": "Finned tube bundle type attributes. Contains the attributes related to the fins attached to a tube in a finned tube bundle such as is commonly found in coils.", "properties": { "Diameter": { "description": "Actual diameter of a fin for circular fins only." @@ -9467,7 +9080,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_tubebundletypefinned.htm" }, "Pset_UnitaryControlElementPHistory": { - "description": "Properties for history and operating schedules of thermostats.", "properties": { "Fan": { "description": "Indicates fan operation where True is on, False is off, and Unknown is automatic." @@ -9485,7 +9097,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_unitarycontrolelementphistory.htm" }, "Pset_UnitaryControlElementTypeCommon": { - "description": "Unitary control element type common attributes.", "properties": { "Mode": { "description": "Table mapping operation mode identifiers to descriptive labels, which may be used for interpreting Pset_UnitaryControlElementPHistory.Mode." @@ -9500,7 +9111,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_unitarycontrolelementtypecommon.htm" }, "Pset_UnitaryControlElementTypeIndicatorPanel": { - "description": "Unitary control element type indicator panel attributes.", "properties": { "Application": { "description": "The application of the unitary control element." @@ -9509,7 +9119,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_unitarycontrolelementtypeindicatorpanel.htm" }, "Pset_UnitaryControlElementTypeThermostat": { - "description": "Unitary control element type thermostat attributes.", "properties": { "TemperatureSetPoint": { "description": "The temperature setpoint range and default setpoint." @@ -9518,7 +9127,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/pset/pset_unitarycontrolelementtypethermostat.htm" }, "Pset_UnitaryEquipmentTypeAirConditioningUnit": { - "description": "Air conditioning unit equipment type attributes. Note that these attributes were formely Pset_PackagedACUnit prior to IFC2x2. HeatingEnergySource attribute deleted in IFC2x2 Pset Addendum: Use IfcEnergyProperties, IfcFuelProperties, etc. instead.", "properties": { "CondenserEnteringTemperature": { "description": "Temperature of fluid entering condenser." @@ -9551,7 +9159,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_unitaryequipmenttypeairconditioningunit.htm" }, "Pset_UnitaryEquipmentTypeAirHandler": { - "description": "Air handler unitary equipment type attributes. Note that these attributes were formerly Pset_AirHandler prior to IFC2x2.", "properties": { "AirHandlerConstruction": { "description": "Enumeration defining how the air handler might be fabricated." @@ -9566,7 +9173,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_unitaryequipmenttypeairhandler.htm" }, "Pset_UnitaryEquipmentTypeCommon": { - "description": "Unitary equipment type common attributes.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1')." @@ -9578,7 +9184,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_unitaryequipmenttypecommon.htm" }, "Pset_UtilityConsumptionPHistory": { - "description": "Consumption of utility resources, typically applied to the IfcBuilding instance, used to identify how much was consumed on I.e., a monthly basis.", "properties": { "Electricity": { "description": "The amount of electricity consumed during the period specified in the time series." @@ -9599,7 +9204,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/pset/pset_utilityconsumptionphistory.htm" }, "Pset_ValvePHistory": { - "description": "Valve performance history common attributes of a typical 2 port pattern type valve.", "properties": { "MeasuredFlowRate": { "description": "The rate of flow of a fluid measured across the valve." @@ -9614,7 +9218,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvephistory.htm" }, "Pset_ValveTypeAirRelease": { - "description": "Valve used to release air from a pipe or fitting. Note that an air release valve is constrained to have a single port pattern", "properties": { "IsAutomatic": { "description": "Indication of whether the valve is automatically operated (TRUE) or manually operated (FALSE)." @@ -9623,7 +9226,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypeairrelease.htm" }, "Pset_ValveTypeCommon": { - "description": "Valve type common attributes.", "properties": { "CloseOffRating": { "description": "Close off rating." @@ -9657,7 +9259,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypecommon.htm" }, "Pset_ValveTypeDrawOffCock": { - "description": "A small diameter valve, used to drain water from a cistern or water filled system.", "properties": { "HasHoseUnion": { "description": "Indicates whether the drawoff cock is fitted with a hose union connection (= TRUE) or not (= FALSE)." @@ -9666,7 +9267,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypedrawoffcock.htm" }, "Pset_ValveTypeFaucet": { - "description": "A small diameter valve, with a free outlet, from which water is drawn.", "properties": { "FaucetFunction": { "description": "Defines the operating temperature of a faucet that may be specified." @@ -9687,7 +9287,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypefaucet.htm" }, "Pset_ValveTypeFlushing": { - "description": "Valve that flushes a predetermined quantity of water to cleanse a WC, urinal or slop hopper. Note that a flushing valve is constrained to have a 2 port pattern.", "properties": { "FlushingRate": { "description": "The predetermined quantity of water to be flushed." @@ -9702,7 +9301,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypeflushing.htm" }, "Pset_ValveTypeGasTap": { - "description": "A small diameter valve, used to discharge gas from a system.", "properties": { "HasHoseUnion": { "description": "Indicates whether the gas tap is fitted with a hose union connection (= TRUE) or not (= FALSE)." @@ -9711,7 +9309,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypegastap.htm" }, "Pset_ValveTypeIsolating": { - "description": "Valve that is used to isolate system components. Note that an isolating valve is constrained to have a 2 port pattern.", "properties": { "IsNormallyOpen": { "description": "If TRUE, the valve is normally open. If FALSE is is normally closed." @@ -9723,7 +9320,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypeisolating.htm" }, "Pset_ValveTypeMixing": { - "description": "A valve where typically the temperature of the outlet is determined by mixing hot and cold water inlet flows.", "properties": { "MixerControl": { "description": "Defines the form of control of the mixing valve." @@ -9735,7 +9331,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypemixing.htm" }, "Pset_ValveTypePressureReducing": { - "description": "Valve that reduces the pressure of a fluid immediately downstream of its position in a pipeline to a preselected value or by a predetermined ratio. Note that a pressure reducing valve is constrained to have a 2 port pattern.", "properties": { "DownstreamPressure": { "description": "The operating pressure of the fluid downstream of the pressure reducing valve." @@ -9747,7 +9342,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypepressurereducing.htm" }, "Pset_ValveTypePressureRelief": { - "description": "Spring or weight loaded valve that automatically discharges to a safe place fluid that has built up to excessive pressure in pipes or fittings. Note that a pressure relief valve is constrained to have a single port pattern.", "properties": { "ReliefPressure": { "description": "The pressure at which the spring or weight in the valve is set to discharge fluid." @@ -9756,7 +9350,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_valvetypepressurerelief.htm" }, "Pset_VibrationIsolatorTypeCommon": { - "description": "Vibration isolator type common attributes.", "properties": { "IsolatorCompressibility": { "description": "The compressibility of the vibration isolator." @@ -9781,7 +9374,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/pset/pset_vibrationisolatortypecommon.htm" }, "Pset_WallCommon": { - "description": "Properties common to the definition of all occurrences of IfcWall and IfcWallStandardCase.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -9820,7 +9412,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_wallcommon.htm" }, "Pset_Warranty": { - "description": "An assurance given by the seller or provider of an artefact that the artefact is without defects and will operate as described for a defined period of time without failure and that if a defect does arise during that time, that it will be corrected by the seller or provider.", "properties": { "Exclusions": { "description": "Items, conditions or actions that may be excluded from the warranty or that may cause the warranty to become void." @@ -9850,7 +9441,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/pset/pset_warranty.htm" }, "Pset_WasteTerminalTypeCommon": { - "description": "Common properties for waste terminals.", "properties": { "Reference": { "description": "Reference ID for this specified type in this project (e.g. type 'A-1'), provided, if there is no classification reference to a recognized classification system used." @@ -9862,7 +9452,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypecommon.htm" }, "Pset_WasteTerminalTypeFloorTrap": { - "description": "Pipe fitting, set into the floor, that retains liquid to prevent the passage of foul air.", "properties": { "CoverLength": { "description": "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the trap." @@ -9907,7 +9496,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypefloortrap.htm" }, "Pset_WasteTerminalTypeFloorWaste": { - "description": "Pipe fitting, set into the floor, that collects waste water and discharges it to a separate trap.", "properties": { "CoverLength": { "description": "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the waste." @@ -9931,7 +9519,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypefloorwaste.htm" }, "Pset_WasteTerminalTypeGullySump": { - "description": "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover.", "properties": { "BackInletPatternType": { "description": "Identifies the pattern of inlet connections to a gully trap." @@ -9967,7 +9554,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypegullysump.htm" }, "Pset_WasteTerminalTypeGullyTrap": { - "description": "Pipe fitting or assembly of fittings to receive surface water or waste water, fitted with a grating or sealed cover and discharging through a trap (BS6100 330 3504 modified)", "properties": { "BackInletPatternType": { "description": "Identifies the pattern of inlet connections to a gully trap." @@ -10006,7 +9592,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypegullytrap.htm" }, "Pset_WasteTerminalTypeRoofDrain": { - "description": "Pipe fitting, set into the roof, that collects rainwater for discharge into the rainwater system.", "properties": { "CoverLength": { "description": "The length measured along the x-axis in the local coordinate system or the radius (in the case of a circular shape in plan) of the cover of the drain." @@ -10030,7 +9615,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltyperoofdrain.htm" }, "Pset_WasteTerminalTypeWasteDisposalUnit": { - "description": "Electrically operated device that reduces kitchen or other waste into fragments small enough to be flushed into a drainage system.", "properties": { "DrainConnectionSize": { "description": "Size of the drain connection inlet to the waste disposal unit." @@ -10045,7 +9629,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypewastedisposalunit.htm" }, "Pset_WasteTerminalTypeWasteTrap": { - "description": "Pipe fitting, set adjacent to a sanitary terminal, that retains liquid to prevent the passage of foul air.", "properties": { "InletConnectionSize": { "description": "Size of the inlet connection(s), where used, of the inlet connections." @@ -10060,7 +9643,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/pset/pset_wasteterminaltypewastetrap.htm" }, "Pset_WindowCommon": { - "description": "Properties common to the definition of all occurrences of Window.", "properties": { "AcousticRating": { "description": "Acoustic rating for this object. It is provided according to the national building code. It indicates the sound transmission resistance of this object by an index ratio (instead of providing full sound absorbtion values)." @@ -10117,7 +9699,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/pset/pset_windowcommon.htm" }, "Pset_WorkControlCommon": { - "description": "Properties common to the definition of all occurrences of IfcWorkPlan and IfcWorkSchedule (subtypes of IfcWorkControl).", "properties": { "WorkDayDuration": { "description": "The elapsed time within a worktime-based day. For presentation purposes, applications may choose to display IfcTask durations in work days where IfcTaskTime.DurationType=WORKTIME. This value must be less than or equal to 24 hours (an elapsed day); if omitted then 8 hours is assumed." @@ -10138,7 +9719,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/pset/pset_workcontrolcommon.htm" }, "Pset_ZoneCommon": { - "description": "Properties common to the definition of all occurrences of IfcZone.", "properties": { "GrossPlannedArea": { "description": "Total planned gross area for the zone. Used for programming the zone." @@ -10162,7 +9742,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/pset/pset_zonecommon.htm" }, "Qto_ActuatorBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of actuator.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10171,7 +9750,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/qset/qto_actuatorbasequantities.htm" }, "Qto_AirTerminalBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of air terminals.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10186,7 +9764,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_airterminalbasequantities.htm" }, "Qto_AirTerminalBoxTypeBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of air terminal boxes.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10195,7 +9772,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_airterminalboxtypebasequantities.htm" }, "Qto_AirToAirHeatRecoveryBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of air-to-air heat recovery elements.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10204,7 +9780,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_airtoairheatrecoverybasequantities.htm" }, "Qto_AlarmBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of alarm.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10213,7 +9788,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/qset/qto_alarmbasequantities.htm" }, "Qto_AudioVisualApplianceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of audio visual appliance.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10222,7 +9796,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_audiovisualappliancebasequantities.htm" }, "Qto_BeamBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of beams.", "properties": { "CrossSectionArea": { "description": "Total area of the cross section (or profile) of the beam." @@ -10255,7 +9828,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_beambasequantities.htm" }, "Qto_BoilerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of boilers.", "properties": { "GrossWeight": { "description": "Weight of the element, not including contained fluid." @@ -10270,7 +9842,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_boilerbasequantities.htm" }, "Qto_BuildingBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of building.", "properties": { "EavesHeight": { "description": "Standard net height of this storey, from the top surface of the construction floor, to the bottom surface of the construction floor or roof above. Only provided is there is a constant height." @@ -10304,7 +9875,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_buildingelementproxyquantities.htm" }, "Qto_BuildingStoreyBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of building storey.", "properties": { "GrossFloorArea": { "description": "Sum of all gross areas of spaces within the building storey. It includes the area of construction elements within the building storey. May be provided in addition to the quantities of the spaces and the construction elements assigend to the storey. In case of inconsistencies, the individual quantities of spaces and construction elements take precedence." @@ -10331,7 +9901,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/qset/qto_buildingstoreybasequantities.htm" }, "Qto_BurnerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of burners.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10340,7 +9909,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_burnerbasequantities.htm" }, "Qto_CableCarrierFittingBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of cable carrier fitting.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10349,7 +9917,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_cablecarrierfittingbasequantities.htm" }, "Qto_CableCarrierSegmentBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of cable carrier segment.", "properties": { "CrossSectionArea": { "description": "Area of the cross section." @@ -10367,7 +9934,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_cablecarriersegmentbasequantities.htm" }, "Qto_CableFittingBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of flow cable fitting.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10376,7 +9942,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_cablefittingbasequantities.htm" }, "Qto_CableSegmentBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of cable segment.", "properties": { "CrossSectionArea": { "description": "Area of the cross section." @@ -10394,7 +9959,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_cablesegmentbasequantities.htm" }, "Qto_ChillerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of chillers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10403,7 +9967,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_chillerbasequantities.htm" }, "Qto_ChimneyBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of chimneys.", "properties": { "Length": { "description": "Total length of the chimney from the foundation (or beginning) to the top not taking into account any cut-out's or other processing features." @@ -10412,7 +9975,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_chimneybasequantities.htm" }, "Qto_CoilBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of coils.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10421,7 +9983,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_coilbasequantities.htm" }, "Qto_ColumnBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of columns.", "properties": { "CrossSectionArea": { "description": "Total area of the cross section (or profile) of the column." @@ -10454,7 +10015,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_columnbasequantities.htm" }, "Qto_CommunicationsApplianceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of communications appliance.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10463,7 +10023,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_communicationsappliancebasequantities.htm" }, "Qto_CompressorBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of compressors.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10472,7 +10031,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_compressorbasequantities.htm" }, "Qto_CondenserBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of condensers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10481,7 +10039,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_condenserbasequantities.htm" }, "Qto_ConstructionEquipmentResourceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of construction equipment resources.", "properties": { "OperatingTime": { "description": "Productive time using the equipment including operating time and excluding idle time." @@ -10493,7 +10050,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/qset/qto_constructionequipmentresourcebasequantities.htm" }, "Qto_ConstructionMaterialResourceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of construction material resources.", "properties": { "GrossVolume": { "description": "Total gross volume of the material, including material placed and wasted." @@ -10511,7 +10067,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/qset/qto_constructionmaterialresourcebasequantities.htm" }, "Qto_ControllerBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of controller.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10520,7 +10075,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/qset/qto_controllerbasequantities.htm" }, "Qto_CooledBeamBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of cooled beams.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10529,7 +10083,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_cooledbeambasequantities.htm" }, "Qto_CoolingTowerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of cooling towers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10538,7 +10091,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_coolingtowerbasequantities.htm" }, "Qto_CoveringBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of coverings applied to spaces.", "properties": { "GrossArea": { "description": "Sum of all gross areas of the covering facing the space. No opening that is included in the covering is subtracted." @@ -10553,7 +10105,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_coveringbasequantities.htm" }, "Qto_CurtainWallQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of curtain walls.", "properties": { "GrossSideArea": { "description": "Area of the curtain wall as viewed by an elevation view of the middle plane of the curtain wall. It does not take into account any curtain wall modifications." @@ -10574,7 +10125,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_curtainwallquantities.htm" }, "Qto_DamperBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of dampers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10583,7 +10133,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_damperbasequantities.htm" }, "Qto_DistributionChamberElementBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of distribution chamber elements.", "properties": { "GrossSurfaceArea": { "description": "Total gross area of the inner surface of the chamber, not taking into account openings such as for pipes, ducts, or cables." @@ -10601,7 +10150,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/qset/qto_distributionchamberelementbasequantities.htm" }, "Qto_DoorBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of doors.", "properties": { "Area": { "description": "Total area of the outer lining of the door." @@ -10619,7 +10167,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_doorbasequantities.htm" }, "Qto_DuctFittingBaseQuantities": { - "description": "Base quantities that are common to the definition of all types and occurrences of duct fittings.", "properties": { "GrossCrossSectionArea": { "description": "Area of the cross section at the inlet, including the duct fitting itself and the interior flow space." @@ -10640,7 +10187,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_ductfittingbasequantities.htm" }, "Qto_DuctSegmentBaseQuantities": { - "description": "Base quantities that are common to the definition of all types and occurrences of duct segments.", "properties": { "GrossCrossSectionArea": { "description": "Area of the cross section, including the duct itself and the interior flow space." @@ -10661,7 +10207,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_ductsegmentbasequantities.htm" }, "Qto_DuctSilencerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of duct silencers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10670,7 +10215,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_ductsilencerbasequantities.htm" }, "Qto_ElectricApplianceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of electric appliance.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10679,7 +10223,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_electricappliancebasequantities.htm" }, "Qto_ElectricDistributionBoardBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of electric distribution board.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10691,7 +10234,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_electricdistributionboardbasequantities.htm" }, "Qto_ElectricFlowStorageDeviceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of electric flow storage device.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10700,7 +10242,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_electricflowstoragedevicebasequantities.htm" }, "Qto_ElectricGeneratorBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of electric generator.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10709,7 +10250,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_electricgeneratorbasequantities.htm" }, "Qto_ElectricMotorBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of electric motor.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10718,7 +10258,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_electricmotorbasequantities.htm" }, "Qto_ElectricTimeControlBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of electric time control.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10727,7 +10266,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_electrictimecontrolbasequantities.htm" }, "Qto_EvaporativeCoolerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of evaporative coolers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10736,7 +10274,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_evaporativecoolerbasequantities.htm" }, "Qto_EvaporatorBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of evaporators.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10745,7 +10282,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_evaporatorbasequantities.htm" }, "Qto_FanBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of fans.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10754,7 +10290,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_fanbasequantities.htm" }, "Qto_FilterBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of filters.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10763,7 +10298,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_filterbasequantities.htm" }, "Qto_FireSuppressionTerminalBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of fire suppression terminal.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10772,7 +10306,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/qset/qto_firesuppressionterminalbasequantities.htm" }, "Qto_FlowInstrumentBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of flow instrument.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10781,7 +10314,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/qset/qto_flowinstrumentbasequantities.htm" }, "Qto_FlowMeterBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of flow meters.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10790,7 +10322,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_flowmeterbasequantities.htm" }, "Qto_FootingBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of footings.", "properties": { "CrossSectionArea": { "description": "Total area of the cross section (or profile) of the footing." @@ -10826,7 +10357,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/qset/qto_footingbasequantities.htm" }, "Qto_HeatExchangerBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of heat exchangers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10835,7 +10365,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_heatexchangerbasequantities.htm" }, "Qto_HumidifierBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of humidifiers.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10844,7 +10373,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_humidifierbasequantities.htm" }, "Qto_InterceptorBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of interceptor.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10853,7 +10381,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/qset/qto_interceptorbasequantities.htm" }, "Qto_JunctionBoxBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of junction box.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10865,7 +10392,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_junctionboxbasequantities.htm" }, "Qto_LaborResourceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of labour resources.", "properties": { "OvertimeWork": { "description": "Work that is performed after exceeding a particular limit such as hours per day and/or hours per week, after which company or municipal policy requires a different rate to apply. Note: Policies for when overtime takes effect are the responsibility of the user or application; they are not modelled in IFC." @@ -10877,7 +10403,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/qset/qto_laborresourcebasequantities.htm" }, "Qto_LampBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of lamp.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10886,7 +10411,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_lampbasequantities.htm" }, "Qto_LightFixtureBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of light fixture.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10895,7 +10419,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_lightfixturebasequantities.htm" }, "Qto_MemberBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of members.", "properties": { "CrossSectionArea": { "description": "Total area of the cross section (or profile) of the member." @@ -10928,7 +10451,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_memberbasequantities.htm" }, "Qto_MotorConnectionBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of motor connection.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10937,7 +10459,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_motorconnectionbasequantities.htm" }, "Qto_OpeningElementBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of opening elements.", "properties": { "Area": { "description": "Area of the opening as viewed by an elevation view (for wall openings) or as viewed by a ground floor view (for slab openings)." @@ -10958,7 +10479,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/qset/qto_openingelementbasequantities.htm" }, "Qto_OutletBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of outlet.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -10967,7 +10487,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_outletbasequantities.htm" }, "Qto_PileBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of piles.", "properties": { "CrossSectionArea": { "description": "Total area of the cross section (or profile) of the pile." @@ -10997,7 +10516,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/qset/qto_pilebasequantities.htm" }, "Qto_PipeFittingBaseQuantities": { - "description": "Base quantities that are common to the definition of all types and occurrences of pipe fittings.", "properties": { "GrossCrossSectionArea": { "description": "Area of the cross section at the inlet, including the pipe fitting itself and the interior flow space." @@ -11021,7 +10539,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_pipefittingbasequantities.htm" }, "Qto_PipeSegmentBaseQuantities": { - "description": "Base quantities that are common to the definition of all types and occurrences of pipe segments.", "properties": { "GrossCrossSectionArea": { "description": "Area of the cross section, including the pipe itself and the interior flow space." @@ -11045,7 +10562,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_pipesegmentbasequantities.htm" }, "Qto_PlateBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of plates.", "properties": { "GrossArea": { "description": "Total area of the extruded area of the plate. Openings, recesses and projections are not taken into account. Only given, if the plate is prismatic." @@ -11075,7 +10591,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_platebasequantities.htm" }, "Qto_ProjectionElementBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of projection elements.", "properties": { "Area": { "description": "Area of the projection as viewed by an elevation view (for wall projections or as viewed by a ground floor view (for slab projections)." @@ -11087,7 +10602,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/qset/qto_projectionelementbasequantities.htm" }, "Qto_ProtectiveDeviceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of protective device.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11096,7 +10610,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_protectivedevicebasequantities.htm" }, "Qto_ProtectiveDeviceTrippingUnitBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of protective device tripping unit.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11105,7 +10618,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_protectivedevicetrippingunitbasequantities.htm" }, "Qto_PumpBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of pumps.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11114,7 +10626,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_pumpbasequantities.htm" }, "Qto_RailingBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of railings.", "properties": { "Length": { "description": "Total nominal length of the railing, not taking into account any cut-out's or other processing features." @@ -11123,7 +10634,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_railingbasequantities.htm" }, "Qto_RampFlightBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of ramp flights.", "properties": { "GrossArea": { "description": "Total area of the ramp flight (not the projected area). Openings, recesses and projections are not taken into account. Only given, if the ramp flight is prismatic." @@ -11147,7 +10657,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_rampflightbasequantities.htm" }, "Qto_ReinforcingElementBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of reinforcement.", "properties": { "Count": { "description": "Total count of reinforcing items." @@ -11162,7 +10671,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/qset/qto_reinforcingelementbasequantities.htm" }, "Qto_RoofBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of roof.", "properties": { "GrossArea": { "description": "Total gross area of the outer surface of the roof. It is the sum of all roof slab gross areas. Roof openings, like sky windows and other openings and cut-outs are not taken into account." @@ -11177,7 +10685,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_roofbasequantities.htm" }, "Qto_SanitaryTerminalBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of sanitary terminal.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11186,7 +10693,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/qset/qto_sanitaryterminalbasequantities.htm" }, "Qto_SensorBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of sensor.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11195,7 +10701,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/qset/qto_sensorbasequantities.htm" }, "Qto_SiteBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of site.", "properties": { "GrossArea": { "description": "Gross area for this site, measured in horizontal projections." @@ -11207,7 +10712,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/qset/qto_sitebasequantities.htm" }, "Qto_SlabBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of slabs.", "properties": { "Depth": { "description": "Depth (one direction of the non-projected foot print area) of the slab. It shall only be provided, if the slab is rectangular." @@ -11243,7 +10747,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_slabbasequantities.htm" }, "Qto_SolarDeviceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of solar devices.", "properties": { "GrossArea": { "description": "Area of the solar device including the outer frame." @@ -11255,7 +10758,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_solardevicebasequantities.htm" }, "Qto_SpaceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of spaces.", "properties": { "FinishCeilingHeight": { "description": "Height of the suspended ceiling (from top of flooring to the bottom of the suspended ceiling). To be provided only if the space has a suspended ceiling with constant height." @@ -11300,7 +10802,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/qset/qto_spacebasequantities.htm" }, "Qto_SpaceHeaterBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of space heaters.", "properties": { "GrossWeight": { "description": "Weight of the element itself, not including contained fluid." @@ -11315,7 +10816,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_spaceheaterbasequantities.htm" }, "Qto_StackTerminalBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of stack terminal.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11324,7 +10824,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/qset/qto_stackterminalbasequantities.htm" }, "Qto_StairFlightBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of stair flights.", "properties": { "GrossVolume": { "description": "Total gross volume of the stair flight. Openings, recesses, and projections are not taken into account." @@ -11339,7 +10838,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_stairflightbasequantities.htm" }, "Qto_SwitchingDeviceBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of switching device.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11348,7 +10846,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_switchingdevicebasequantities.htm" }, "Qto_TankBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of tanks.", "properties": { "GrossWeight": { "description": "Weight of the element itself, not including contained fluid." @@ -11363,7 +10860,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_tankbasequantities.htm" }, "Qto_TransformerBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of transformer.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11372,7 +10868,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/qset/qto_transformerbasequantities.htm" }, "Qto_TubeBundleBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of tube bundles.", "properties": { "GrossWeight": { "description": "Weight of the element itself, not including contained fluid." @@ -11384,7 +10879,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_tubebundlebasequantities.htm" }, "Qto_UnitaryControlElementBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of unitary control element.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11393,7 +10887,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/qset/qto_unitarycontrolelementbasequantities.htm" }, "Qto_UnitaryEquipmentBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of unitary equipment.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11402,7 +10895,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_unitaryequipmentbasequantities.htm" }, "Qto_ValveBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of valves.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11411,7 +10903,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_valvebasequantities.htm" }, "Qto_VibrationIsolatorBaseQuantities": { - "description": "Base quantities that are common to the definition of all types of vibration isolators.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11420,7 +10911,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/qset/qto_vibrationisolatorbasequantities.htm" }, "Qto_WallBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of walls.", "properties": { "GrossFootprintArea": { "description": "Area of the wall as viewed by a ground floor view, not taking any wall modifications (like recesses) into account. It is also referred to as the foot print of the wall." @@ -11459,7 +10949,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/qset/qto_wallbasequantities.htm" }, "Qto_WasteTerminalBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of waste terminal.", "properties": { "GrossWeight": { "description": "Weight of the element." @@ -11468,7 +10957,6 @@ "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/qset/qto_wasteterminalbasequantities.htm" }, "Qto_WindowBaseQuantities": { - "description": "Base quantities that are common to the definition of all occurrences of windows.", "properties": { "Area": { "description": "Total area of the outer lining of the window." diff --git a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_types.json b/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_types.json deleted file mode 100644 index d8f2b9d3a6..0000000000 --- a/src/ifcopenshell-python/ifcopenshell/util/schema/ifc4_types.json +++ /dev/null @@ -1,1590 +0,0 @@ -{ - "IfcAbsorbedDoseMeasure": { - "description": "IfcAbsorbedDoseMeasure is a measure of the absorbed radioactivity dose.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcabsorbeddosemeasure.htm" - }, - "IfcAccelerationMeasure": { - "description": "IfcAccelerationMeasure is a measure of acceleration.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcaccelerationmeasure.htm" - }, - "IfcActionRequestTypeEnum": { - "description": "IfcActionRequestTypeEnum defines the types of sources through which a request can be made.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/lexical/ifcactionrequesttypeenum.htm" - }, - "IfcActionSourceTypeEnum": { - "description": "This enumeration type contains possible action sources.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcactionsourcetypeenum.htm" - }, - "IfcActionTypeEnum": { - "description": "This enumeration type is used to distinguish between possible action types at a high level. It can be used for an automated definition of load combinations and for dimensioning. The contained items and their acronyms are adopted from the Eurocode standard.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcactiontypeenum.htm" - }, - "IfcActorSelect": { - "description": "The actor select type allows a person, or an organization, or a person associated with an organization to be referenced.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcactorresource/lexical/ifcactorselect.htm" - }, - "IfcActuatorTypeEnum": { - "description": "The IfcActuatorTypeEnum defines the range of different types of actuator that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/lexical/ifcactuatortypeenum.htm" - }, - "IfcAddressTypeEnum": { - "description": "This enumeration identifies the logical location of the address.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcactorresource/lexical/ifcaddresstypeenum.htm" - }, - "IfcAirTerminalBoxTypeEnum": { - "description": "This enumeration identifies different types of air terminal boxes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcairterminalboxtypeenum.htm" - }, - "IfcAirTerminalTypeEnum": { - "description": "Enumeration defining the functional types of air terminals.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcairterminaltypeenum.htm" - }, - "IfcAirToAirHeatRecoveryTypeEnum": { - "description": "Defines general types of air-to-air heat recovery devices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcairtoairheatrecoverytypeenum.htm" - }, - "IfcAlarmTypeEnum": { - "description": "The IfcAlarmTypeEnum defines the range of different types of alarm that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/lexical/ifcalarmtypeenum.htm" - }, - "IfcAmountOfSubstanceMeasure": { - "description": "An amount of substance measure is the value for the quantity of a substance when compared with the number of atoms in 0.012 kg of carbon 12.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcamountofsubstancemeasure.htm" - }, - "IfcAnalysisModelTypeEnum": { - "description": "This type definition is used to distinguish between different types of structural analysis models. The analysis models are differentiated by their dimensionality.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcanalysismodeltypeenum.htm" - }, - "IfcAnalysisTheoryTypeEnum": { - "description": "This enumeration is used to distinguish between different types of structural analysis methods, including first order theory, second order theory (small deformations), third order theory (large deformations) and the full nonlinear theory (geometric nonlinearity together with other nonlinearities such as plasticity).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcanalysistheorytypeenum.htm" - }, - "IfcAngularVelocityMeasure": { - "description": "IfcAngularVelocityMeasure is a measure of the velocity of a body measured in terms of angle subtended per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcangularvelocitymeasure.htm" - }, - "IfcAppliedValueSelect": { - "description": "IfcAppliedValueSelect defines a value to be calculated within a formula.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifccostresource/lexical/ifcappliedvalueselect.htm" - }, - "IfcArcIndex": { - "description": "The IfcArcIndex describes a single circular arc segment within a poly curve by providing a list on indices. The first index is the start point of the circular arc, the second index is a point on arc, the third index is the end point of the circular arc. The three points shall not be co-linear.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcarcindex.htm" - }, - "IfcAreaDensityMeasure": { - "description": "IfcAreaDensityMeasure is a measure of the density of a two-dimensional object and is calculated as the mass per unit area.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcareadensitymeasure.htm" - }, - "IfcAreaMeasure": { - "description": "An area measure is the value of the extent of a surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcareameasure.htm" - }, - "IfcArithmeticOperatorEnum": { - "description": "IfcArithmeticOperatorEnum specifies the form of arithmetic operation implied by the relationship.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifccostresource/lexical/ifcarithmeticoperatorenum.htm" - }, - "IfcAssemblyPlaceEnum": { - "description": "This enumeration defines where the assembly is intended to take place, either in a factory or on the building site.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcassemblyplaceenum.htm" - }, - "IfcAudioVisualApplianceTypeEnum": { - "description": "Defines the range of different types of audio-video devices that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcaudiovisualappliancetypeenum.htm" - }, - "IfcAxis2Placement": { - "description": "The IfcAxis2Placement allows for the choice of various placement entities.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcaxis2placement.htm" - }, - "IfcBSplineCurveForm": { - "description": "The IfcBSplineCurveForm represents a part of a curve of some sppecific form.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcbsplinecurveform.htm" - }, - "IfcBSplineSurfaceForm": { - "description": "The IfcBSplineSurfaceForm represents a part of a surface of some specific form.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcbsplinesurfaceform.htm" - }, - "IfcBeamTypeEnum": { - "description": "This enumeration defines the different predefined types of beams that can further specify an IfcBeam or IfcBeamType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcbeamtypeenum.htm" - }, - "IfcBenchmarkEnum": { - "description": "IfcBenchmarkEnum is an enumeration used to identify the logical comparators that can be applied in conjunction with constraint values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstraintresource/lexical/ifcbenchmarkenum.htm" - }, - "IfcBendingParameterSelect": { - "description": "A select type for selecting between simple measure types for reinforcement bending parameters.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcbendingparameterselect.htm" - }, - "IfcBinary": { - "description": "IfcBinary is a defined type of simple data type BINARY which may be used to encode binary data such as embedded textures.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcbinary.htm" - }, - "IfcBoilerTypeEnum": { - "description": "Enumeration defining the typical types of boilers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcboilertypeenum.htm" - }, - "IfcBoolean": { - "description": "IfcBoolean is a defined data type of simple data type Boolean. It is required since a select type (IfcSimpleValue) cannot directly include simple types in its select list. A Boolean type can have value TRUE or FALSE.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcboolean.htm" - }, - "IfcBooleanOperand": { - "description": "Select type including all geometric representation items which may participate in a Boolean operation to form a CSG solid. It includes solid models, half space solids and CSG primitives. Boolean results can also be used as operands thus enabling nested Boolean operations.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricmodelresource/lexical/ifcbooleanoperand.htm" - }, - "IfcBooleanOperator": { - "description": "Boolean operators that apply to the first and second Boolean operands.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricmodelresource/lexical/ifcbooleanoperator.htm" - }, - "IfcBoxAlignment": { - "description": "The box alignment specifies the alignment of the text box relative to its position. The following string values shall be used:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationdefinitionresource/lexical/ifcboxalignment.htm" - }, - "IfcBuildingElementPartTypeEnum": { - "description": "This enumeration defines the different types of building element parts.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/lexical/ifcbuildingelementparttypeenum.htm" - }, - "IfcBuildingElementProxyTypeEnum": { - "description": "This enumeration defines the available generic types for IfcBuildingElementProxy or IfcBuildingElementProxyType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcbuildingelementproxytypeenum.htm" - }, - "IfcBuildingSystemTypeEnum": { - "description": "This enumeration identifies different types of building systems.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcbuildingsystemtypeenum.htm" - }, - "IfcBurnerTypeEnum": { - "description": "Enumeration defining the functional type of burner.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcburnertypeenum.htm" - }, - "IfcCableCarrierFittingTypeEnum": { - "description": "The IfcCableCarrierFittingTypeEnum defines the range of different types of cable carrier fitting that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifccablecarrierfittingtypeenum.htm" - }, - "IfcCableCarrierSegmentTypeEnum": { - "description": "The IfcCableCarrierSegmentTypeEnum defines the range of different types of cable carrier segment that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifccablecarriersegmenttypeenum.htm" - }, - "IfcCableFittingTypeEnum": { - "description": "The IfcCableFittingTypeEnum defines the range of different types of cable fitting that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifccablefittingtypeenum.htm" - }, - "IfcCableSegmentTypeEnum": { - "description": "The IfcCableSegmentTypeEnum defines the range of different types of cable segment that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifccablesegmenttypeenum.htm" - }, - "IfcCardinalPointReference": { - "description": "An IfcCardinalPointReference is an index reference to significant points of a section profile. This index is used to describe the spatial relationship between the section of a member and a reference axis of the same member.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/lexical/ifccardinalpointreference.htm" - }, - "IfcChangeActionEnum": { - "description": "IfcChangeActionEnum identifies the type of change that might have occurred to the object during the last session (for example, added, modified, deleted). This information is required in a partial model exchange scenario so that an application or model server will know how an object might have been affected by the previous application. Valid enumerations are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcutilityresource/lexical/ifcchangeactionenum.htm" - }, - "IfcChillerTypeEnum": { - "description": "Enumeration defining the typical types of Chillers classified by their method of heat rejection.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcchillertypeenum.htm" - }, - "IfcChimneyTypeEnum": { - "description": "This enumeration defines the valid types of chimneys that can be predefined using the enumeration values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcchimneytypeenum.htm" - }, - "IfcClassificationReferenceSelect": { - "description": "The IfcClassificationReferenceSelect enables selection of whether a classification reference is a subset of another classification reference or is a top level entry of a classification source.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcclassificationreferenceselect.htm" - }, - "IfcClassificationSelect": { - "description": "The IfcClassificationSelect enables selection of whether a classification reference is to be referenced from an external source, or whether a classification is referenced as such.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcclassificationselect.htm" - }, - "IfcCoilTypeEnum": { - "description": "Enumeration defining the typical types of coils.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifccoiltypeenum.htm" - }, - "IfcColour": { - "description": "The IfcColour is a select between different definitions of colour used for presentation styles.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifccolour.htm" - }, - "IfcColourOrFactor": { - "description": "The IfcColourOrFactor enables the selection of either a RGB colour value or a scalar factor value for the use as values of the reflectance components.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifccolourorfactor.htm" - }, - "IfcColumnTypeEnum": { - "description": "This enumeration defines the different predefined types of columns that can further specify an IfcColumn or IfcColumnType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifccolumntypeenum.htm" - }, - "IfcCommunicationsApplianceTypeEnum": { - "description": "Defines the range of different types of communications appliance that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifccommunicationsappliancetypeenum.htm" - }, - "IfcComplexNumber": { - "description": "IfcComplexNumber is a representation of a complex number expressed as an array with two elements. The first element (index 1) denotes the real component which is the numerical component of a complex number whose square roots can be calculated explicitly. The second element (index 2) denotes the imaginary component which is the numerical component of a complex number whose square roots cannot be determined other than through the provision of the square of the imaginary number j where j\\^2 = -1. Note that the imaginary component may be referred to as i in certain references.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifccomplexnumber.htm" - }, - "IfcComplexPropertyTemplateTypeEnum": { - "description": "This enumeration defines the applicable subtype of instances of IfcComplexProperty or IfcPhysicalComplexQuantity that may be created and defined by an IfcComplexPropertyTemplate.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifccomplexpropertytemplatetypeenum.htm" - }, - "IfcCompoundPlaneAngleMeasure": { - "description": "IfcCompoundPlaneAngleMeasure is a compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifccompoundplaneanglemeasure.htm" - }, - "IfcCompressorTypeEnum": { - "description": "Enumeration defining the typical types of compressors.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifccompressortypeenum.htm" - }, - "IfcCondenserTypeEnum": { - "description": "Enumeration defining the typical types of condensers. Air is used as the cooling medium for AIRCOOLED; water is used as the cooling medium for all other types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifccondensertypeenum.htm" - }, - "IfcConnectionTypeEnum": { - "description": "This enumeration defines the different ways how path based elements (such as IfcWallStandardCase) can connect, as shown in Figure 1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcconnectiontypeenum.htm" - }, - "IfcConstraintEnum": { - "description": "IfcConstraintEnum is an enumeration used to qualify a constraint.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstraintresource/lexical/ifcconstraintenum.htm" - }, - "IfcConstructionEquipmentResourceTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a construction equipment resource. It is limited to the most common equipment used in construction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/lexical/ifcconstructionequipmentresourcetypeenum.htm" - }, - "IfcConstructionMaterialResourceTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a construction material resource. It is limited to the most common raw materials used in construction and excludes materials commonly sold as finished products.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/lexical/ifcconstructionmaterialresourcetypeenum.htm" - }, - "IfcConstructionProductResourceTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a construction product resource. It describes use of products created for construction, and excludes products of the finished building model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/lexical/ifcconstructionproductresourcetypeenum.htm" - }, - "IfcContextDependentMeasure": { - "description": "The value of a physical quantity as defined within the exchange context.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifccontextdependentmeasure.htm" - }, - "IfcControllerTypeEnum": { - "description": "The IfcControllerTypeEnum defines the range of different types of controller that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/lexical/ifccontrollertypeenum.htm" - }, - "IfcCooledBeamTypeEnum": { - "description": "There are two general types of cooled or chilled beams: passive and active. An active Cooled Beam uses a fan or other auxilliary device to aid in air recirculation, while a passive Cooled Beam relies solely on convection to cool the space.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifccooledbeamtypeenum.htm" - }, - "IfcCoolingTowerTypeEnum": { - "description": "Enumeration defining the typical types of cooling towers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifccoolingtowertypeenum.htm" - }, - "IfcCoordinateReferenceSystemSelect": { - "description": "IfcCoordinateReferenceSystemSelect is a select between either the local engineering coordinate system, represented by the IfcGeometricRepresentationContext, or another coordinate reference system, represented by IfcCoordinateReferenceSystem, to be the source of a coordinate operation.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcrepresentationresource/lexical/ifccoordinatereferencesystemselect.htm" - }, - "IfcCostItemTypeEnum": { - "description": "An IfcCostItemTypeEnum is a list of the available types of cost items.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/lexical/ifccostitemtypeenum.htm" - }, - "IfcCostScheduleTypeEnum": { - "description": "An IfcCostScheduleTypeEnum is a list of the available types of cost schedule from which that required may be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/lexical/ifccostscheduletypeenum.htm" - }, - "IfcCountMeasure": { - "description": "A count measure is the value of a count of items.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifccountmeasure.htm" - }, - "IfcCoveringTypeEnum": { - "description": "This enumeration defines the range of different types of covering that can further specify an IfcCovering or an IfcCoveringType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifccoveringtypeenum.htm" - }, - "IfcCrewResourceTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a crew resource.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/lexical/ifccrewresourcetypeenum.htm" - }, - "IfcCsgSelect": { - "description": "Select type enabling the choice between IfcBooleanResult and subtypes of IfcCsgPrimitive3D as potential root tree expression at IfcCsgSolid.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricmodelresource/lexical/ifccsgselect.htm" - }, - "IfcCurtainWallTypeEnum": { - "description": "This enumeration defines the valid types of curtain wall that can be predefined using the enumeration values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifccurtainwalltypeenum.htm" - }, - "IfcCurvatureMeasure": { - "description": "IfcCurvatureMeasure is a measure for curvature, which is defined as the change of slope per length. This is typically a computed value in structural analysis. It is usually measured in rad/m.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifccurvaturemeasure.htm" - }, - "IfcCurveFontOrScaledCurveFontSelect": { - "description": "The IfcCurveFontOrScaledCurveFontSelect provides a selection between a curve font and a scaled curve font.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifccurvefontorscaledcurvefontselect.htm" - }, - "IfcCurveInterpolationEnum": { - "description": "IfcCurveInterpolationEnum specifies the possible methods for the interpolation of property values given as a curve.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpropertyresource/lexical/ifccurveinterpolationenum.htm" - }, - "IfcCurveOnSurface": { - "description": "The IfcCurveOnSurface enables the choice of curve types on parameteric surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifccurveonsurface.htm" - }, - "IfcCurveOrEdgeCurve": { - "description": "IfcCurveOrEdgeCurve provides the option to either select a geometric curve (IfcCurve and subtypes) within a geometric model, or a curve with associated geometry and coordinates (Ifc__EdgeCurve) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricconstraintresource/lexical/ifccurveoredgecurve.htm" - }, - "IfcCurveStyleFontSelect": { - "description": "The IfcCurveStyleFontSelect provides a selection between an explicitly defined and a predefined curve style font.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifccurvestylefontselect.htm" - }, - "IfcDamperTypeEnum": { - "description": "This enumeration defines the various types of damper", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcdampertypeenum.htm" - }, - "IfcDataOriginEnum": { - "description": "IfcDataOriginEnum identifies the origin of time data.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcdataoriginenum.htm" - }, - "IfcDate": { - "description": "The IfcData identifies a particular calender day, expressed by year, calender month and day in month. It is expressed by a string value following a particular lexical representation.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcdate.htm" - }, - "IfcDateTime": { - "description": "The IfcDataTime identifies a particular point in time, expressed by hours, minutes and optional seconds elapsed within a calender day, expressed by year, calender month and day in month. It is expressed by a string value following a particular lexical representation.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcdatetime.htm" - }, - "IfcDayInMonthNumber": { - "description": "IfcDayInMonthNumber is an integer that defines the position of the specified day in a month.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcdayinmonthnumber.htm" - }, - "IfcDayInWeekNumber": { - "description": "The IfcDayInWeekNumber is an integer that defines the position of the specified day in a week. The positions have the following meaning that assigns the ordinal day number in the week to the Calendar day name.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcdayinweeknumber.htm" - }, - "IfcDefinitionSelect": { - "description": "IfcDefinitionSelect provides the option to either select an object or type object IfcObjectDefinition, or a property set template or property set, IfcPropertyDefinition.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcdefinitionselect.htm" - }, - "IfcDerivedMeasureValue": { - "description": "IfcDerivedMeasureValue is a select type for selecting between derived measure types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcderivedmeasurevalue.htm" - }, - "IfcDerivedUnitEnum": { - "description": "IfcDerivedUnitEnum is an enumeration type for allowed types of derived units.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcderivedunitenum.htm" - }, - "IfcDescriptiveMeasure": { - "description": "A descriptive measure is a human interpretable definition of a quantifiable value. The mode of interpretation has to be established for the exchange context.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcdescriptivemeasure.htm" - }, - "IfcDimensionCount": { - "description": "The IfcDimensionCount defins the dimensionality of the coordinate space. It is restricted to have the dimensionality of either 1, 2, or 3 for the purpose of this specification.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcdimensioncount.htm" - }, - "IfcDirectionSenseEnum": { - "description": "IfcDirectionSenseEnum is an enumeration denoting whether sense of direction is positive or negative along the given axis.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/lexical/ifcdirectionsenseenum.htm" - }, - "IfcDiscreteAccessoryTypeEnum": { - "description": "This enumeration defines the different types of discrete accessories.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/lexical/ifcdiscreteaccessorytypeenum.htm" - }, - "IfcDistributionChamberElementTypeEnum": { - "description": "This enumeration identifies different types of distribution chambers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/lexical/ifcdistributionchamberelementtypeenum.htm" - }, - "IfcDistributionPortTypeEnum": { - "description": "This enumeration identifies different types of distribution ports. It is used to designate ports by their general function, which determines applicable property sets and compatible systems.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/lexical/ifcdistributionporttypeenum.htm" - }, - "IfcDistributionSystemEnum": { - "description": "This enumeration identifies different types of distribution systems. It is used to designate systems by their function as well as ports of devices within such systems to restrict connectivity to compatible connections.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/lexical/ifcdistributionsystemenum.htm" - }, - "IfcDocumentConfidentialityEnum": { - "description": "IfcDocumentConfidentialityEnum enables selection of the level of confidentiality of document information from a list of choices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcdocumentconfidentialityenum.htm" - }, - "IfcDocumentSelect": { - "description": "The IfcDocumentSelect enables selection of whether document information is to be contained within an IFC model or is to be referenced from an external source.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcdocumentselect.htm" - }, - "IfcDocumentStatusEnum": { - "description": "IfcDocumentStatusEnum enables selection of the status of document information from a list of choices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcdocumentstatusenum.htm" - }, - "IfcDoorPanelOperationEnum": { - "description": "This enumeration defines the basic ways how individual door panels operate as shown in Figure 1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcdoorpaneloperationenum.htm" - }, - "IfcDoorPanelPositionEnum": { - "description": "This enumeration defines the basic ways to describe the location of a door panel within a door lining.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcdoorpanelpositionenum.htm" - }, - "IfcDoorStyleConstructionEnum": { - "description": "This enumeration defines the basic types of construction of doors. The construction type relates to the main material (or material combination) used for making the door.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcdoorstyleconstructionenum.htm" - }, - "IfcDoorStyleOperationEnum": { - "description": "This enumeration defines the basic ways to describe how doors operate as shown in Figure 1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcdoorstyleoperationenum.htm" - }, - "IfcDoorTypeEnum": { - "description": "This enumeration defines the different predefined types of an IfcDoor or IfcDoorType object.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcdoortypeenum.htm" - }, - "IfcDoorTypeOperationEnum": { - "description": "This enumeration defines the basic ways to describe how doors operate, as shown in Figure 1. It combines the partitioning of the door into a single or multiple door panels and the operation types of that panels.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcdoortypeoperationenum.htm" - }, - "IfcDoseEquivalentMeasure": { - "description": "IfcDoseEquivalentMeasure is a measure of the radioactive dose equivalent.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcdoseequivalentmeasure.htm" - }, - "IfcDuctFittingTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a duct fitting. This is a very basic categorization mechanism to generically identify the duct fitting type. Subcategories of duct fittings are not enumerated.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcductfittingtypeenum.htm" - }, - "IfcDuctSegmentTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a duct segment. This is a very basic categorization mechanism to generically identify the duct segment type. Subcategories of duct segments are not enumerated.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcductsegmenttypeenum.htm" - }, - "IfcDuctSilencerTypeEnum": { - "description": "Enumeration defining the typical types of duct silencers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcductsilencertypeenum.htm" - }, - "IfcDuration": { - "description": "The IfcDuration identifies a quantity of time (or a \"lenght\" of an event occurring in time).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcduration.htm" - }, - "IfcDynamicViscosityMeasure": { - "description": "IfcDynamicViscosityMeasure is a measure of the viscous resistance of a medium.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcdynamicviscositymeasure.htm" - }, - "IfcElectricApplianceTypeEnum": { - "description": "The IfcElectricApplianceTypeEnum defines the range of different types of electrical appliance that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcelectricappliancetypeenum.htm" - }, - "IfcElectricCapacitanceMeasure": { - "description": "IfcElectricCapacitanceMeasure is a measure of the electric capacitance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcelectriccapacitancemeasure.htm" - }, - "IfcElectricChargeMeasure": { - "description": "IfcElectricChargeMeasure is a measure of the electric charge.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcelectricchargemeasure.htm" - }, - "IfcElectricConductanceMeasure": { - "description": "IfcElectricConductanceMeasure is a measure of the electric conductance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcelectricconductancemeasure.htm" - }, - "IfcElectricCurrentMeasure": { - "description": "The value for the movement of electrically charged particles.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcelectriccurrentmeasure.htm" - }, - "IfcElectricDistributionBoardTypeEnum": { - "description": "The IfcElectricDistributionBoardTypeEnum defines different types and/or functions of electric distribution boards.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcelectricdistributionboardtypeenum.htm" - }, - "IfcElectricFlowStorageDeviceTypeEnum": { - "description": "The IfcElectricFlowStorageDeviceTypeEnum defines different types of electrical flow storage devices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcelectricflowstoragedevicetypeenum.htm" - }, - "IfcElectricGeneratorTypeEnum": { - "description": "The IfcElectricGeneratorTypeEnum defines different types of electric generators.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcelectricgeneratortypeenum.htm" - }, - "IfcElectricMotorTypeEnum": { - "description": "The IfcElectricMotorTypeEnum defines the range of different types of electric motor that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcelectricmotortypeenum.htm" - }, - "IfcElectricResistanceMeasure": { - "description": "IfcElectricResistanceMeasure is a measure of the electric resistance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcelectricresistancemeasure.htm" - }, - "IfcElectricTimeControlTypeEnum": { - "description": "The IfcElectricTimeControlTypeEnum defines different types of electrical time control devices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcelectrictimecontroltypeenum.htm" - }, - "IfcElectricVoltageMeasure": { - "description": "IfcElectricVoltageMeasure is a measure of electromotive force.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcelectricvoltagemeasure.htm" - }, - "IfcElementAssemblyTypeEnum": { - "description": "This enumeration defines the basic configuration types for element assemblies.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcelementassemblytypeenum.htm" - }, - "IfcElementCompositionEnum": { - "description": "This enumeration indicates the composition of a spatial structure element or proxy.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcelementcompositionenum.htm" - }, - "IfcEnergyMeasure": { - "description": "IfcEnergyMeasure is a measure of energy required or used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcenergymeasure.htm" - }, - "IfcEngineTypeEnum": { - "description": "Enumeration defining the typical types of engines.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcenginetypeenum.htm" - }, - "IfcEvaporativeCoolerTypeEnum": { - "description": "Enumeration defining the typical types of evaporative coolers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcevaporativecoolertypeenum.htm" - }, - "IfcEvaporatorTypeEnum": { - "description": "Enumeration defining the typical types of evaporators.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcevaporatortypeenum.htm" - }, - "IfcEventTriggerTypeEnum": { - "description": "The IfcEventTriggerTypeEnum defines the range of different types of event trigger that can be specified. The definition of event trigger types has been adopted from the Business Process Modeling Notation (BPMN), which is also used in the Information Delivery Manual (IDM) for defining business processes. More detailed information about the use of event trigger types can be found in these specifications.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifceventtriggertypeenum.htm" - }, - "IfcEventTypeEnum": { - "description": "The IfcEventTypeEnum defines the range of different types of event that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifceventtypeenum.htm" - }, - "IfcExternalSpatialElementTypeEnum": { - "description": "This enumeration defines the different types of external spatial elements.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcexternalspatialelementtypeenum.htm" - }, - "IfcFanTypeEnum": { - "description": "Enumeration defining the typical types of fans.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcfantypeenum.htm" - }, - "IfcFastenerTypeEnum": { - "description": "This enumeration defines the different types of fasteners, except for mechanical fasteners.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/lexical/ifcfastenertypeenum.htm" - }, - "IfcFillStyleSelect": { - "description": "The IfcFillStyleSelect provides a selection between a simple fill colour, a hatching, a tiling or an externally defined hatch style as presentation styles for a styled item.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcfillstyleselect.htm" - }, - "IfcFilterTypeEnum": { - "description": "This enumeration defines the various types of filter typically used within building services distribution systems:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcfiltertypeenum.htm" - }, - "IfcFireSuppressionTerminalTypeEnum": { - "description": "The IfcFireSuppressionTerminalTypeEnum defines the range of different types of fire suppression terminal that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/lexical/ifcfiresuppressionterminaltypeenum.htm" - }, - "IfcFlowDirectionEnum": { - "description": "This enumeration defines the flow direction at a distribution port.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgserviceelements/lexical/ifcflowdirectionenum.htm" - }, - "IfcFlowInstrumentTypeEnum": { - "description": "The IfcFlowInstrumentTypeEnum defines the range of different types of flow instrument that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/lexical/ifcflowinstrumenttypeenum.htm" - }, - "IfcFlowMeterTypeEnum": { - "description": "This enumeration defines various types of flow meter:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcflowmetertypeenum.htm" - }, - "IfcFontStyle": { - "description": "The IfcFontStyle type defines whether the normal, the italic or the oblique faces within a font family shall be used. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcfontstyle.htm" - }, - "IfcFontVariant": { - "description": "The IfcFontVariant type defines whether the normal or the small-caps faces within a font family shall be used. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcfontvariant.htm" - }, - "IfcFontWeight": { - "description": "The IfcFontWeight type defines the weight of the font. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcfontweight.htm" - }, - "IfcFootingTypeEnum": { - "description": "Enumeration defining the generic footing type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcfootingtypeenum.htm" - }, - "IfcForceMeasure": { - "description": "IfcForceMeasure is a measure of the force.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcforcemeasure.htm" - }, - "IfcFrequencyMeasure": { - "description": "IfcFrequencyMeasure is a measure of the number of times that an item vibrates in unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcfrequencymeasure.htm" - }, - "IfcFurnitureTypeEnum": { - "description": "IfcFurnitureTypeEnum defines the types of furniture from which the type required can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/lexical/ifcfurnituretypeenum.htm" - }, - "IfcGeographicElementTypeEnum": { - "description": "This enumeration defines the different predefined types of geographic elements that can further specify an IfcGeographicElement or an IfcGeographicElementType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcgeographicelementtypeenum.htm" - }, - "IfcGeometricProjectionEnum": { - "description": "IfcGeometricProjectionEnum defines the various representation types that can be semantically distinguished. Often different levels of detail of the shape representation are controlled by the representation type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcrepresentationresource/lexical/ifcgeometricprojectionenum.htm" - }, - "IfcGeometricSetSelect": { - "description": "The IfcGeometricSetSelect includes the geometric representation items applicable to be part of the geometric set.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricmodelresource/lexical/ifcgeometricsetselect.htm" - }, - "IfcGlobalOrLocalEnum": { - "description": "This enumeration type defines if the local object coordinate system or the global world coordinate system for the project is used to describe the measure values of entities which have a reference to this type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcrepresentationresource/lexical/ifcglobalorlocalenum.htm" - }, - "IfcGloballyUniqueId": { - "description": "An IfcGloballyUniqueId holds an encoded string identifier that is used to uniquely identify an IFC object. An IfcGloballyUniqueId is a Globally Unique Identifier (GUID) which is an auto-generated 128-bit number. Since this identifier is required for all IFC object instances, it is desirable to compress it to reduce overhead. The encoding of the base 64 character set is shown below:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcutilityresource/lexical/ifcgloballyuniqueid.htm" - }, - "IfcGridPlacementDirectionSelect": { - "description": "IfcGridPlacementDirectionSelect enables the choice of defining a grid placement be either an explicit direction, or by referencing a second grid intersection to provide the direction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricconstraintresource/lexical/ifcgridplacementdirectionselect.htm" - }, - "IfcGridTypeEnum": { - "description": "This enumeration defines the different layout types of grids. Restriction on the correct use of IfcGrid instantiations may be imposed depending on the value of the PredefinedType being IfcGridTypeEnum.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcgridtypeenum.htm" - }, - "IfcHatchLineDistanceSelect": { - "description": "The IfcHatchLineDistanceSelect is a selection between different ways to determine the distance and optionally the start point of hatch lines, either by an offset distance measure or by a vector.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifchatchlinedistanceselect.htm" - }, - "IfcHeatExchangerTypeEnum": { - "description": "Enumeration defining the typical types of heat exchangers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcheatexchangertypeenum.htm" - }, - "IfcHeatFluxDensityMeasure": { - "description": "IfcHeatFluxDensityMeasure is a measure of the density of heat flux within a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcheatfluxdensitymeasure.htm" - }, - "IfcHeatingValueMeasure": { - "description": "IfcHeatingValueMeasure defines the amount of energy released (usually in MJ/kg) when a fuel is burned.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcheatingvaluemeasure.htm" - }, - "IfcHumidifierTypeEnum": { - "description": "Enumeration defining the typical types of humidifiers.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifchumidifiertypeenum.htm" - }, - "IfcIdentifier": { - "description": "An identifier is an alphanumeric string which allows an individual thing to be identified. It may not provide natural-language meaning.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcidentifier.htm" - }, - "IfcIlluminanceMeasure": { - "description": "IfcIlluminanceMeasure is a measure of the illuminance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcilluminancemeasure.htm" - }, - "IfcInductanceMeasure": { - "description": "IfcInductanceMeasure is a measure of the inductance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcinductancemeasure.htm" - }, - "IfcInteger": { - "description": "IfcInteger is a defined type of simple data type Integer. It is required since a select type (IfcSimpleValue) cannot include directly simple types in its select list.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcinteger.htm" - }, - "IfcIntegerCountRateMeasure": { - "description": "IfcIntegerCountRateMeasure is a measure of the integer number of units flowing per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcintegercountratemeasure.htm" - }, - "IfcInterceptorTypeEnum": { - "description": "The IfcInterceptorTypeEnum defines the range of different types of interceptor that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/lexical/ifcinterceptortypeenum.htm" - }, - "IfcInternalOrExternalEnum": { - "description": "This enumeration defines the different types of space boundaries in terms of either being inside the building or outside the building.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcinternalorexternalenum.htm" - }, - "IfcInventoryTypeEnum": { - "description": "IfcInventoryTypeEnum defines the types of inventory that can be defined.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/lexical/ifcinventorytypeenum.htm" - }, - "IfcIonConcentrationMeasure": { - "description": "IfcIonConcentrationMeasure is a measure of particular ion concentration in a liquid, given in mg/L.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcionconcentrationmeasure.htm" - }, - "IfcIsothermalMoistureCapacityMeasure": { - "description": "IfcIsothermalMoistureCapacityMeasure is a measure of isothermal moisture capacity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcisothermalmoisturecapacitymeasure.htm" - }, - "IfcJunctionBoxTypeEnum": { - "description": "The IfcJunctionBoxTypeEnum defines different types of junction boxes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcjunctionboxtypeenum.htm" - }, - "IfcKinematicViscosityMeasure": { - "description": "IfcKinematicViscosityMeasure is a measure of the viscous resistance of a medium to a moving body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifckinematicviscositymeasure.htm" - }, - "IfcKnotType": { - "description": "The IfcKnotType indicates the particular form of b-spline knots.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcknottype.htm" - }, - "IfcLabel": { - "description": "A label is the term by which something may be referred to. It is a string which represents the human-interpretable name of something and shall have a natural-language meaning.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclabel.htm" - }, - "IfcLaborResourceTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a labour resource, and is limited to high-level categories based upon common skill sets.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/lexical/ifclaborresourcetypeenum.htm" - }, - "IfcLampTypeEnum": { - "description": "The IfcLampTypeEnum defines the range of different types of lamp available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifclamptypeenum.htm" - }, - "IfcLanguageId": { - "description": "The IfcLanguageId identifies the language in which a natural language text is expressed. It uses a language tag to identify the language.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifclanguageid.htm" - }, - "IfcLayerSetDirectionEnum": { - "description": "IfcLayerSetDirectionEnum provides identification of the axis of element geometry, denoting the layer set thickness direction, or direction of layer offsets.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/lexical/ifclayersetdirectionenum.htm" - }, - "IfcLayeredItem": { - "description": "The IfcLayeredItem is the collection of all those items, that are assigned to a single layer. These items are representation items or complete representations (IfcRepresentationItem, IfcRepresentation). If an IfcRepresentation is referenced, all IfcRepresentationItem within its set of Items are assigned to the same layer.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationorganizationresource/lexical/ifclayereditem.htm" - }, - "IfcLengthMeasure": { - "description": "An IfcLengthMeasure is the value of a distance.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclengthmeasure.htm" - }, - "IfcLibrarySelect": { - "description": "The IfcLibrarySelect enables selection of whether library information is to be contained within an IFC model or is to be referenced from an external source.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifclibraryselect.htm" - }, - "IfcLightDistributionCurveEnum": { - "description": "There are three kinds of light distribution curves, see Figure 1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationorganizationresource/lexical/ifclightdistributioncurveenum.htm" - }, - "IfcLightDistributionDataSourceSelect": { - "description": "A goniometric light gets its intensity distribution function (how much light goes in any one direction) from one of two sources: (i) an industry-standard file, (ii) from distribution data passed directly via the IfcLightIntensityDistribution.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationorganizationresource/lexical/ifclightdistributiondatasourceselect.htm" - }, - "IfcLightEmissionSourceEnum": { - "description": "IfcLightEmissionSourceEnum defines the range of different types of light emitter available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationorganizationresource/lexical/ifclightemissionsourceenum.htm" - }, - "IfcLightFixtureTypeEnum": { - "description": "The IfcLightFixtureTypeEnum defines the different types of light fixtures.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifclightfixturetypeenum.htm" - }, - "IfcLineIndex": { - "description": "The IfcLineIndex describes a single or multiple straight segments within a poly curve by providing a list on indices. The first index is the start point of the line segment, the last index is the end point of the line segment. If more than two indices are included, then all intermediate indices define intermediate points of the poly line segment connected in the order of appearance of the list of indices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifclineindex.htm" - }, - "IfcLinearForceMeasure": { - "description": "IfcLinearForceMeasure is a measure of linear force.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclinearforcemeasure.htm" - }, - "IfcLinearMomentMeasure": { - "description": "IfcLinearMomentMeasure is a measure of linear moment.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclinearmomentmeasure.htm" - }, - "IfcLinearStiffnessMeasure": { - "description": "IfcLinearStiffnessMeasure is a measure of linear stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclinearstiffnessmeasure.htm" - }, - "IfcLinearVelocityMeasure": { - "description": "IfcLinearVelocityMeasure is a measure of the velocity of a body measured in terms of distance moved per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclinearvelocitymeasure.htm" - }, - "IfcLoadGroupTypeEnum": { - "description": "This enumeration is used to distinguish between different levels of load grouping. It allows to differentiate between load groups, load cases, and load combinations.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcloadgrouptypeenum.htm" - }, - "IfcLogical": { - "description": "IfcLogical_IfcSimpleValue) cannot directly include simple types in its select list). Logical datatype can have values TRUE, FALSE or UNKNOWN._", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifclogical.htm" - }, - "IfcLogicalOperatorEnum": { - "description": "IfcLogicalOperatorEnum is an enumeration that defines the logical operators that may be applied for the satisfaction of one or more operands (IfcConstraint) at a time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstraintresource/lexical/ifclogicaloperatorenum.htm" - }, - "IfcLuminousFluxMeasure": { - "description": "IfcLuminousFluxMeasure is a measure of the luminous flux.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcluminousfluxmeasure.htm" - }, - "IfcLuminousIntensityDistributionMeasure": { - "description": "IfcLuminousIntensityDistributionMeasure is a measure of the luminous intensity of a light source that changes according to the direction of the ray. It is normally based on some standardized distribution light distribution curves.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcluminousintensitydistributionmeasure.htm" - }, - "IfcLuminousIntensityMeasure": { - "description": "An IfcLuminousIntensityMeasure is the value for the brightness of a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcluminousintensitymeasure.htm" - }, - "IfcMagneticFluxDensityMeasure": { - "description": "IfcMagneticFluxDensityMeasure is a measure of the magnetic flux density.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmagneticfluxdensitymeasure.htm" - }, - "IfcMagneticFluxMeasure": { - "description": "IfcMagneticFluxMeasure is a measure of the magnetic flux.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmagneticfluxmeasure.htm" - }, - "IfcMassDensityMeasure": { - "description": "IfcMassDensityMeasure is a measure of the density of a medium.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmassdensitymeasure.htm" - }, - "IfcMassFlowRateMeasure": { - "description": "IfcMassFlowRateMeasure is a measure of the mass of a medium flowing per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmassflowratemeasure.htm" - }, - "IfcMassMeasure": { - "description": "An IfcMassMeasure is the value of the amount of matter that a body contains.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmassmeasure.htm" - }, - "IfcMassPerLengthMeasure": { - "description": "IfcMassPerLengthMeasure is a measure for mass per length. For example for rolled steel profiles the weight of an imaginary beam is usually expressed by kg/m length for cost calculation and structural analysis purposes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmassperlengthmeasure.htm" - }, - "IfcMaterialSelect": { - "description": "IfcMaterialSelect provides selection of either a material definition or a material usage definition that can be assigned to an element, a resource or another entity within this specification.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmaterialresource/lexical/ifcmaterialselect.htm" - }, - "IfcMeasureValue": { - "description": "A measure value is a value as defined in ISO 31-0 (clause 2).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmeasurevalue.htm" - }, - "IfcMechanicalFastenerTypeEnum": { - "description": "This enumeration defines the different types of mechanical fasteners.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedcomponentelements/lexical/ifcmechanicalfastenertypeenum.htm" - }, - "IfcMedicalDeviceTypeEnum": { - "description": "Enumeration defining the functional type of medical device.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcmedicaldevicetypeenum.htm" - }, - "IfcMemberTypeEnum": { - "description": "This enumeration defines the different types of linear elements an IfcMember or IfcMemberType object can fulfill.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcmembertypeenum.htm" - }, - "IfcMetricValueSelect": { - "description": "IfcMetricValueSelect is a select type that enables selection of the data type for the value component of an IfcMetric.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstraintresource/lexical/ifcmetricvalueselect.htm" - }, - "IfcModulusOfElasticityMeasure": { - "description": "IfcModulusOfElasticityMeasure is a measure of modulus of elasticity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmodulusofelasticitymeasure.htm" - }, - "IfcModulusOfLinearSubgradeReactionMeasure": { - "description": "IfcModulusOfLinearSubgradeReactionMeasure is a measure for modulus of linear subgrade reaction, which expresses the elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in N/m\\^2.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmodulusoflinearsubgradereactionmeasure.htm" - }, - "IfcModulusOfRotationalSubgradeReactionMeasure": { - "description": "IfcModulusOfRotationalSubgradeReactionMeasure is a measure for modulus of rotational subgrade reaction, which expresses the rotational elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in Nm/(m*rad).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmodulusofrotationalsubgradereactionmeasure.htm" - }, - "IfcModulusOfRotationalSubgradeReactionSelect": { - "description": "A measure for modulus of rotational subgrade reaction which expresses the rotational bedding of a structural curve item per length. TRUE denotes infinite stiffness (rigidity). FALSE denotes no stiffness (a release). A numeric value denotes finite linear-elastic stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusofrotationalsubgradereactionselect.htm" - }, - "IfcModulusOfSubgradeReactionMeasure": { - "description": "IfcModulusOfSubgradeReactionMeasure is a geotechnical measure describing interaction between foundation structures and the soil. May also be known as bedding measure.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmodulusofsubgradereactionmeasure.htm" - }, - "IfcModulusOfSubgradeReactionSelect": { - "description": "Bedding measure which expresses the bedding of a structural face item per area. TRUE denotes infinite stiffness (rigidity). FALSE denotes no stiffness (a release). A numeric value denotes finite linear-elastic stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusofsubgradereactionselect.htm" - }, - "IfcModulusOfTranslationalSubgradeReactionSelect": { - "description": "A measure for modulus of translational subgrade reaction which expresses the translational bedding of a structural curve item per length. TRUE denotes infinite stiffness (rigidity). FALSE denotes no stiffness (a release). A numeric value denotes finite linear-elastic stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusoftranslationalsubgradereactionselect.htm" - }, - "IfcMoistureDiffusivityMeasure": { - "description": "IfcMoistureDiffusivityMeasure is a measure of moisture diffusivity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmoisturediffusivitymeasure.htm" - }, - "IfcMolecularWeightMeasure": { - "description": "IfcMolecularWeightMeasure is a measure of molecular weight of material (typically gas).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmolecularweightmeasure.htm" - }, - "IfcMomentOfInertiaMeasure": { - "description": "IfcMomentOfInertiaMeasure is a measure of moment of inertia.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmomentofinertiameasure.htm" - }, - "IfcMonetaryMeasure": { - "description": "A monetary measure is the value of an amount of money without regard to its currency.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcmonetarymeasure.htm" - }, - "IfcMonthInYearNumber": { - "description": "IfcMonthInYearNumber is an integer that defines the position of the specified month in a year.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcmonthinyearnumber.htm" - }, - "IfcMotorConnectionTypeEnum": { - "description": "The IfcMotorConnectionTypeEnum defines the range of different types of motor connection that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcmotorconnectiontypeenum.htm" - }, - "IfcNonNegativeLengthMeasure": { - "description": "A non-negative length measure is a length measure that is greater than or equal to zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcnonnegativelengthmeasure.htm" - }, - "IfcNormalisedRatioMeasure": { - "description": "IfcNormalisedRatioMeasure is a dimensionless measure to express ratio values ranging from 0.0 to 1.0.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcnormalisedratiomeasure.htm" - }, - "IfcNullStyle": { - "description": "The IfcNullStyle is an enumeration with a fixed value NULL to indicate that no presentation style is defined for the representation item.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcnullstyle.htm" - }, - "IfcNumericMeasure": { - "description": "An IfcNumericMeasure is the numeric value of a physical quantity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcnumericmeasure.htm" - }, - "IfcObjectReferenceSelect": { - "description": "IfcObjectReferenceSelect is a select type, that holds a list of resource level entities that can be used as property values for an IfcPropertyReferenceValue being a property within an IfcPropertySet.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpropertyresource/lexical/ifcobjectreferenceselect.htm" - }, - "IfcObjectTypeEnum": { - "description": "This enumeration defines the applicable object categories. Attached to an object, it indicates to which subtype of IfcObject the entity referencing it would otherwise comply with.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcobjecttypeenum.htm" - }, - "IfcObjectiveEnum": { - "description": "IfcObjectiveEnum is an enumeration used to determine the objective for which purpose the constraint needs to be satisfied.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstraintresource/lexical/ifcobjectiveenum.htm" - }, - "IfcOccupantTypeEnum": { - "description": "IfcOccupantTypeEnum defines the types of occupant from which the type required can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/lexical/ifcoccupanttypeenum.htm" - }, - "IfcOpeningElementTypeEnum": { - "description": "This enumeration defines the basic types for opening elements.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcopeningelementtypeenum.htm" - }, - "IfcOutletTypeEnum": { - "description": "The IfcOutletTypeEnum defines the range of different types of outlet that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcoutlettypeenum.htm" - }, - "IfcPHMeasure": { - "description": "IfcPHMeasure is a measure of the molar hydrogen ion concentration in a liquid (usually defined as the measure of acidity) in a range from 0 to 14.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcphmeasure.htm" - }, - "IfcParameterValue": { - "description": "An IfcParameterValue is the value which specifies the amount of a parameter in some parameter space.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcparametervalue.htm" - }, - "IfcPerformanceHistoryTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of performance history. The IfcPerformanceHistoryTypeEnum contains the following:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifccontrolextension/lexical/ifcperformancehistorytypeenum.htm" - }, - "IfcPermeableCoveringOperationEnum": { - "description": "This enumeration defines the valid types of permeable coverings.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcpermeablecoveringoperationenum.htm" - }, - "IfcPermitTypeEnum": { - "description": "IfcPermitTypeEnum defines the types of permits that can be granted.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/lexical/ifcpermittypeenum.htm" - }, - "IfcPhysicalOrVirtualEnum": { - "description": "This enumeration defines the different types of space boundaries in terms of its physical manifestation. A space boundary can either be physically dividing or can be a virtual divider.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcphysicalorvirtualenum.htm" - }, - "IfcPileConstructionEnum": { - "description": "Enumeration defining the construction type for piles. The type is mainly based on how the piles are used and manufactured. Some material information is mixed in because this affects the way the piles are used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcpileconstructionenum.htm" - }, - "IfcPileTypeEnum": { - "description": "Enumeration defining the pile type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcpiletypeenum.htm" - }, - "IfcPipeFittingTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a pipe fitting. This is a very basic categorization mechanism to generically identify the pipe fitting type. Subcategories of pipe fittings are not enumerated.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcpipefittingtypeenum.htm" - }, - "IfcPipeSegmentTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a pipe segment. This is a very basic categorization mechanism to generically identify the pipe segment type. Subcategories of pipe segments are not enumerated.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcpipesegmenttypeenum.htm" - }, - "IfcPlanarForceMeasure": { - "description": "IfcPlanarForceMeasure is a measure of force on an area.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcplanarforcemeasure.htm" - }, - "IfcPlaneAngleMeasure": { - "description": "An IfcPlaneAngleMeasure is the value of an angle in a plane.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcplaneanglemeasure.htm" - }, - "IfcPlateTypeEnum": { - "description": "This enumeration defines the different types of planar elements an IfcPlate or IfcPlateType object can fulfill.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcplatetypeenum.htm" - }, - "IfcPointOrVertexPoint": { - "description": "IfcPointOrVertexPoint provides the option to either select a geometric point (IfcPoint and subtypes) within a geometric model, or a vertex with associated point coordinates (IfcVertexPoint) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricconstraintresource/lexical/ifcpointorvertexpoint.htm" - }, - "IfcPositiveInteger": { - "description": "IfcPositiveInteger is a defined type based on simple data type Integer with the additional restriction to positive integers (excluding zero).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcpositiveinteger.htm" - }, - "IfcPositiveLengthMeasure": { - "description": "An IfcPositiveLengthMeasure is a length measure that is greater than zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcpositivelengthmeasure.htm" - }, - "IfcPositivePlaneAngleMeasure": { - "description": "An IfcPositivePlaneAngleMeasure is a plane angle measure that is greater than zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcpositiveplaneanglemeasure.htm" - }, - "IfcPositiveRatioMeasure": { - "description": "An IfcPositiveRatioMeasure is a ratio measure that is greater than zero.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcpositiveratiomeasure.htm" - }, - "IfcPowerMeasure": { - "description": "IfcPowerMeasure is a measure of power required or used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcpowermeasure.htm" - }, - "IfcPreferredSurfaceCurveRepresentation": { - "description": "The IfcPreferredSurfaceCurveRepresentation indicates the preferred form of an edge curve representation.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcpreferredsurfacecurverepresentation.htm" - }, - "IfcPresentableText": { - "description": "IfcPresentableText is a text string used to capture the content of a text literal for the purpose of presentation. The IfcPresentableText can include multiple lines of text, for which the line feed character LF, 0x0A, should be used to separate lines.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcpresentabletext.htm" - }, - "IfcPresentationStyleSelect": { - "description": "The IfcPresentationStyleSelect provides for the selection between different presentation styles to be assigned to a styled item.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcpresentationstyleselect.htm" - }, - "IfcPressureMeasure": { - "description": "IfcPressureMeasure is a measure of the quantity of a medium acting on a unit area.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcpressuremeasure.htm" - }, - "IfcProcedureTypeEnum": { - "description": "The IfcProcedureTypeEnum defines the range of different types of procedure that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifcproceduretypeenum.htm" - }, - "IfcProcessSelect": { - "description": "IfcProcessSelect provides the option to either select a process or activity occurrence, IfcProcess, or a process or activity type, IfcTypeProcess.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcprocessselect.htm" - }, - "IfcProductRepresentationSelect": { - "description": "The IfcProductRepresentationSelect selects an IfcProductDefinitionShape and an IfcRepresentationMap to be targets of IfcShapeAspect definitions, i.e. both product representations may be further defined using shape aspects..", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcrepresentationresource/lexical/ifcproductrepresentationselect.htm" - }, - "IfcProductSelect": { - "description": "IfcProductSelect provides the option to either select a product occurrence, IfcProduct, or a product type, IfcTypeProduct.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcproductselect.htm" - }, - "IfcProfileTypeEnum": { - "description": "The enumeration defines whether the definition of a profile shape shall be geometrically resolved into a curve or into a surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/lexical/ifcprofiletypeenum.htm" - }, - "IfcProjectOrderTypeEnum": { - "description": "An IfcProjectOrderTypeEnum is a list of the types of project order that may be identified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedmgmtelements/lexical/ifcprojectordertypeenum.htm" - }, - "IfcProjectedOrTrueLengthEnum": { - "description": "This enumeration type is needed for load definition and is only considered if the load values are given as global actions and if they define linear or planar loads (that is, one- or two-dimensionally distributed loads).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcprojectedortruelengthenum.htm" - }, - "IfcProjectionElementTypeEnum": { - "description": "This enumeration defines the basic types of projection elements.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcprojectionelementtypeenum.htm" - }, - "IfcPropertySetDefinitionSelect": { - "description": "The purpose of this select type is enabling th assignment of a set of IfcPropertySet's using the relationship IfcRelDefinesByProperties relationship in addition to a single IfcPropertySet.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcpropertysetdefinitionselect.htm" - }, - "IfcPropertySetDefinitionSet": { - "description": "The purpose of this defined type is enabling the assignment of a set of IfcPropertySetDefinition's to an IfcRelDefinesByProperties relationship.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcpropertysetdefinitionset.htm" - }, - "IfcPropertySetTemplateTypeEnum": { - "description": "This enumeration defines the general applicability of instances of IfcPropertySet, or IfcElementQuantity defined by this IfcPropertySetTemplate, to subtypes of IfcObjectDefinition.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcpropertysettemplatetypeenum.htm" - }, - "IfcProtectiveDeviceTrippingUnitTypeEnum": { - "description": "Defines the range of different tripping unit types that can be used in conjunction with a protective device.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcprotectivedevicetrippingunittypeenum.htm" - }, - "IfcProtectiveDeviceTypeEnum": { - "description": "The IfcProtectiveDeviceTypeEnum specifically defines the range of different breaker unit types that can be used in conjunction with protective device. Types may also be used as a reference to a complete protective device in circumstances where tripping units are not separately identified (typically expected to be the case during earlier stages of design).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcprotectivedevicetypeenum.htm" - }, - "IfcPumpTypeEnum": { - "description": "Defines general types of pumps.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcpumptypeenum.htm" - }, - "IfcRadioActivityMeasure": { - "description": "IfcRadioActivityMeasure is a measure of activity of radionuclide.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcradioactivitymeasure.htm" - }, - "IfcRailingTypeEnum": { - "description": "This enumeration defines the different types of IfcRailing or IfcRailingType that can be predefined using the enumeration values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcrailingtypeenum.htm" - }, - "IfcRampFlightTypeEnum": { - "description": "This enumeration defines the different types an IfcRampFlight or IfcRampFlightType object can fulfill.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcrampflighttypeenum.htm" - }, - "IfcRampTypeEnum": { - "description": "This enumeration defines the basic configuration of the ramp type in terms of the number and shape of ramp flights, as shown in Figure 1. The type also distinguished turns by landings. In addition the subdivision of the straight and changing direction ramps is included. The ramp configurations are given for ramps without and with one and two landings.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcramptypeenum.htm" - }, - "IfcRatioMeasure": { - "description": "An IfcRatioMeasure is the value of the relation between two physical quantities that are of the same kind.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcratiomeasure.htm" - }, - "IfcReal": { - "description": "IfcReal is a defined type of simple data type REAL. It is required since a select type (IfcSimpleValue), cannot directly include simple types in its select list.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcreal.htm" - }, - "IfcRecurrenceTypeEnum": { - "description": "IfcRecurrenceTypeEnum enumerates the recurring pattern type, with valid combinations as indicated.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifcrecurrencetypeenum.htm" - }, - "IfcReflectanceMethodEnum": { - "description": "The IfcReflectanceMethodEnum defines the range of different reflectance methods available.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcreflectancemethodenum.htm" - }, - "IfcReinforcingBarRoleEnum": { - "description": "Enumeration defining standard types for the role, purpose or usage of the bar, i.e. the kind of loads and stresses they are intended to carry.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/lexical/ifcreinforcingbarroleenum.htm" - }, - "IfcReinforcingBarSurfaceEnum": { - "description": "Enumeration indicating whether the bar has a plain or textured (ribbed) surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/lexical/ifcreinforcingbarsurfaceenum.htm" - }, - "IfcReinforcingBarTypeEnum": { - "description": "Enumeration defining standard types for the role, purpose or usage of the bar, i.e. the kind of loads and stresses they are intended to carry.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcreinforcingbartypeenum.htm" - }, - "IfcReinforcingMeshTypeEnum": { - "description": "Enumeration defining the reinforcing mesh type.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcreinforcingmeshtypeenum.htm" - }, - "IfcResourceObjectSelect": { - "description": "The IfcResourceObjectSelect enables selection of resource level objects that are to be related to an resource level relationship object. The use of IfcResourceObjectSelect includes the ability to assign an external reference entity (library, classification, or documentation reference) to entities within the resource level.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcresourceobjectselect.htm" - }, - "IfcResourceSelect": { - "description": "IfcResourceSelect provides the option to either select a resource occurrence, IfcResource, or a resource type, IfcTypeResource.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcresourceselect.htm" - }, - "IfcRoleEnum": { - "description": "This enumeration defines roles which may be played by an actor.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcactorresource/lexical/ifcroleenum.htm" - }, - "IfcRoofTypeEnum": { - "description": "This enumeration defines the basic configuration of the roof in terms of the different roof shapes, as illustrated in Figure 1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcrooftypeenum.htm" - }, - "IfcRotationalFrequencyMeasure": { - "description": "IfcRotationalFrequencyMeasure is a measure of the number of cycles that an item revolves in unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcrotationalfrequencymeasure.htm" - }, - "IfcRotationalMassMeasure": { - "description": "The rotational mass measure denotes the inertia of a body with respect to angular acceleration.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcrotationalmassmeasure.htm" - }, - "IfcRotationalStiffnessMeasure": { - "description": "IfcRotationalStiffnessMeasure is a measure of rotational stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcrotationalstiffnessmeasure.htm" - }, - "IfcRotationalStiffnessSelect": { - "description": "A measure of rotational stiffness. TRUE denotes infinite stiffness (rigidity). FALSE denotes no stiffness (a release). A numeric value denotes finite linear-elastic stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralloadresource/lexical/ifcrotationalstiffnessselect.htm" - }, - "IfcSIPrefix": { - "description": "An SI prefix is the name of a prefix that may be associated with an SI unit. The definitions of SI prefixes are specified in ISO 1000 (clause 3).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsiprefix.htm" - }, - "IfcSIUnitName": { - "description": "An SI unit name is the name of an SI unit. The definitions of the names of SI units are specified in ISO 1000 (clause 2).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsiunitname.htm" - }, - "IfcSanitaryTerminalTypeEnum": { - "description": "The IfcSanitaryTerminalTypeEnum defines the range of different types of sanitary terminal that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/lexical/ifcsanitaryterminaltypeenum.htm" - }, - "IfcSectionModulusMeasure": { - "description": "IfcSectionModulusMeasure is a measure for the resistance of a cross section against bending or torsional moment. It is usually measured in m\\^3.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsectionmodulusmeasure.htm" - }, - "IfcSectionTypeEnum": { - "description": "An enumeration indicating whether a specific piece of a cross section is uniform or tapered in longitudinal direction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprofileresource/lexical/ifcsectiontypeenum.htm" - }, - "IfcSectionalAreaIntegralMeasure": { - "description": "The sectional area integral measure is typically used in torsional analysis. It is usually measured in m\\^5.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsectionalareaintegralmeasure.htm" - }, - "IfcSegmentIndexSelect": { - "description": "The IfcSegmentIndexSelect provides a choice of different list of indices into a point list.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcsegmentindexselect.htm" - }, - "IfcSensorTypeEnum": { - "description": "The IfcSensorTypeEnum defines the range of different types of sensor that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/lexical/ifcsensortypeenum.htm" - }, - "IfcSequenceEnum": { - "description": "IfcSequenceEnum is an enumeration that defines the different ways in which a time lag is applied to a sequence between two processes.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifcsequenceenum.htm" - }, - "IfcShadingDeviceTypeEnum": { - "description": "This enumeration defines the valid types of IfcShadingDevice or IfcShadingDeviceType that can be predefined using the enumeration values.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcshadingdevicetypeenum.htm" - }, - "IfcShearModulusMeasure": { - "description": "IfcShearModulusMeasure is a measure of shear modulus.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcshearmodulusmeasure.htm" - }, - "IfcShell": { - "description": "A type comprising different kinds of shell.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifctopologyresource/lexical/ifcshell.htm" - }, - "IfcSimplePropertyTemplateTypeEnum": { - "description": "This enumeration defines the correct subtype of instances of IfcSimpleProperty or IfcPhysicalSimpleQuantity that are created and are assigned to this IfcSimplePropertyTemplate. It also determines how the attributes of IfcPropertyTemplate, PrimaryUnit, SecondaryUnit, Enumerators, PrimaryDataType, SecondaryDataType, should be used.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifckernel/lexical/ifcsimplepropertytemplatetypeenum.htm" - }, - "IfcSimpleValue": { - "description": "IfcSimpleValue is a select type for selecting between simple value types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsimplevalue.htm" - }, - "IfcSizeSelect": { - "description": "The IfcSizeSelect provides for the selection between different measure types used for provision of a length measure.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcsizeselect.htm" - }, - "IfcSlabTypeEnum": { - "description": "This enumeration defines the available predefined types of slabs that can further specify an IfcSlab or IfcSlabType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcslabtypeenum.htm" - }, - "IfcSolarDeviceTypeEnum": { - "description": "The IfcSolarDeviceTypeEnum defines different types of solar devices.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcsolardevicetypeenum.htm" - }, - "IfcSolidAngleMeasure": { - "description": "An IfcSolidAngleMeasure is the value of an angle in a solid.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsolidanglemeasure.htm" - }, - "IfcSolidOrShell": { - "description": "The IfcSolidOrShell provides the option to either select a geometric volume (IfcSolidModel and subtypes) within a geometric model, or a shell (IfcClosedShell) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricconstraintresource/lexical/ifcsolidorshell.htm" - }, - "IfcSoundPowerLevelMeasure": { - "description": "A sound power level measure is a measure of total radiated noise with units of decibels with a reference value of picowatts.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsoundpowerlevelmeasure.htm" - }, - "IfcSoundPowerMeasure": { - "description": "A sound power measure is a measure of total radiated noise with units of watts (sonic energy per time unit).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsoundpowermeasure.htm" - }, - "IfcSoundPressureLevelMeasure": { - "description": "A sound pressure level measure is a measure of the pressure fluctuations superimposed over the ambient pressure level with units of decibels with a reference value of micropascals.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsoundpressurelevelmeasure.htm" - }, - "IfcSoundPressureMeasure": { - "description": "A sound pressure measure is a measure of the pressure fluctuations superimposed over the ambient pressure level with units of pascals.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcsoundpressuremeasure.htm" - }, - "IfcSpaceBoundarySelect": { - "description": "The IfcSpaceBoundarySelect selects either an internal space for internal or external space boundaries, or an external spatial element for external space boundaries at the outer envelop of the building.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcspaceboundaryselect.htm" - }, - "IfcSpaceHeaterTypeEnum": { - "description": "Enumeration defining the functional type of space heater.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcspaceheatertypeenum.htm" - }, - "IfcSpaceTypeEnum": { - "description": "This enumeration defines the available generic types for IfcSpace and IfcSpaceType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcspacetypeenum.htm" - }, - "IfcSpatialZoneTypeEnum": { - "description": "This enumeration defines the range of different types of spatial zones that can further specify an IfcSpatialZoneTypeEnum.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifcspatialzonetypeenum.htm" - }, - "IfcSpecificHeatCapacityMeasure": { - "description": "IfcSpecificHeatCapacityMeasure defines the specific heat of material: The heat energy absorbed per temperature unit.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcspecificheatcapacitymeasure.htm" - }, - "IfcSpecularExponent": { - "description": "The IfcSpecularExponent defines the datatype for exponent determining the sharpness of the 'reflection'. The reflection is made sharper with large values of the exponent, such as 10.0. Small values, such as 1.0, decrease the specular fall-off.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcspecularexponent.htm" - }, - "IfcSpecularHighlightSelect": { - "description": "The IfcSpecularHighlightSelect defines the selectable types of value for specular highlight sharpness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcspecularhighlightselect.htm" - }, - "IfcSpecularRoughness": { - "description": "The IfcSpecularRoughness defines the datatype for the reflection resulting from the roughness of a surface through the height of surface impurities where the specular highlight is made sharper with small values for the roughness, such as 0.1. Applies to \"glass\", \"metal\", \"mirror\" and \"plastic\" reflection models. Larger values, close to 1.0 decrease the specular fall-off.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcspecularroughness.htm" - }, - "IfcStackTerminalTypeEnum": { - "description": "An IfcStackTerminalTypeEnum defines the range of different types of stack terminal that can be specified for use at the top of a vertical stack subsystem.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/lexical/ifcstackterminaltypeenum.htm" - }, - "IfcStairFlightTypeEnum": { - "description": "This enumeration defines the different types of stair flights that can further specify an IfcStairFlight or IfcStairFlightType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcstairflighttypeenum.htm" - }, - "IfcStairTypeEnum": { - "description": "This enumeration defines the basic configuration of the stair type in terms of the number of stair flights and the number of landings, as illustrated in Figure 1. The type also distinguished turns by windings or by landings. In addition the subdivision of the straight and changing direction stairs is included. The stair configurations are given for stairs without and with one, two or three landings.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcstairtypeenum.htm" - }, - "IfcStateEnum": { - "description": "The IfcStateEnum enumeration identifies the state or accessibility of the object (for example, read/write, locked).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcutilityresource/lexical/ifcstateenum.htm" - }, - "IfcStructuralActivityAssignmentSelect": { - "description": "This type definition shall be used to distinguish between a reference to an instance either of IfcStructuralItem or IfcElement. The IfcStructuralActivityAssignmentSelect type is referenced by the entity IfcRelConnectsStructuralActivity which defines the connection between activities (IfcStructuralActivity) and the loaded element.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcstructuralactivityassignmentselect.htm" - }, - "IfcStructuralCurveActivityTypeEnum": { - "description": "This enumeration defines the distribution of load values in a curve action or reaction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcstructuralcurveactivitytypeenum.htm" - }, - "IfcStructuralCurveMemberTypeEnum": { - "description": "This enumeration distinguishes between different types of structural 'curve' members, such as cables.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcstructuralcurvemembertypeenum.htm" - }, - "IfcStructuralSurfaceActivityTypeEnum": { - "description": "This enumeration defines the distribution of load values in a surface action or reaction.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcstructuralsurfaceactivitytypeenum.htm" - }, - "IfcStructuralSurfaceMemberTypeEnum": { - "description": "This enumeration distinguishes between different types of structural surface members, such as the typical mechanical function of walls, slabs and shells.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralanalysisdomain/lexical/ifcstructuralsurfacemembertypeenum.htm" - }, - "IfcStyleAssignmentSelect": { - "description": "The style assignment select is a selection of two wasy of assigning presentation styles to an IfcStyledItem.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcstyleassignmentselect.htm" - }, - "IfcSubContractResourceTypeEnum": { - "description": "This enumeration is used to identify the primary purpose of a subcontract resource.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcconstructionmgmtdomain/lexical/ifcsubcontractresourcetypeenum.htm" - }, - "IfcSurfaceFeatureTypeEnum": { - "description": "This enumeration indicates the type of a surface feature.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcsurfacefeaturetypeenum.htm" - }, - "IfcSurfaceOrFaceSurface": { - "description": "IfcSurfaceOrFaceSurface provides the option to either select a geometric surface (IfcSurface and subtypes) within a geometric model, or a face with associated surface geometry and coordinates (IfcFaceSurface) within a topological model.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometricconstraintresource/lexical/ifcsurfaceorfacesurface.htm" - }, - "IfcSurfaceSide": { - "description": "IfcSurfaceSide is a denotion of whether negative, positive or both sides of a surface are being referenced.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcsurfaceside.htm" - }, - "IfcSurfaceStyleElementSelect": { - "description": "The IfcSurfaceStyleElementSelect provides a selection between different surface styles, including IfcSurfaceStyleRendering for rendering properties, IfcSurfaceStyleLighting, which holds the exact physically based lighting properties for lighting based calculation algorithms (as the opposite to the rendering based calculation), the IfcSurfaceStyleRefraction (for more advanced refraction indices) and IfcSurfaceStyleWithTextures to allow for image textures applied to surfaces. In addition an IfcExternallyDefinedSurfaceStyle can be selected that points into an external rendering material library.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifcsurfacestyleelementselect.htm" - }, - "IfcSwitchingDeviceTypeEnum": { - "description": "The IfcSwitchingDeviceTypeEnum defines the range of different types of switch that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifcswitchingdevicetypeenum.htm" - }, - "IfcSystemFurnitureElementTypeEnum": { - "description": "IfcSystemFurnitureTypeEnum defines the types of system furniture from which the type required can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedfacilitieselements/lexical/ifcsystemfurnitureelementtypeenum.htm" - }, - "IfcTankTypeEnum": { - "description": "Enumeration defining the typical types of tanks.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifctanktypeenum.htm" - }, - "IfcTaskDurationEnum": { - "description": "IfcTaskDurationEnum identifies how a time duration is measured.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifctaskdurationenum.htm" - }, - "IfcTaskTypeEnum": { - "description": "The IfcTaskTypeEnum defines the range of different types of task that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifctasktypeenum.htm" - }, - "IfcTemperatureGradientMeasure": { - "description": "The temperature gradient measures the difference of a temperature per length, as for instance used in an external wall or its layers. It is usually measured in K/m.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifctemperaturegradientmeasure.htm" - }, - "IfcTemperatureRateOfChangeMeasure": { - "description": "The temperature rate of change measures the difference of a temperature per time (positive: rise, negative: fall), as for instance used with heat sensors. It is for example measured in K/s (Kelvin per second).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifctemperaturerateofchangemeasure.htm" - }, - "IfcTendonAnchorTypeEnum": { - "description": "Enumeration defining the types of tendon anchors.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifctendonanchortypeenum.htm" - }, - "IfcTendonTypeEnum": { - "description": "Enumeration defining the types of tendons.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifctendontypeenum.htm" - }, - "IfcText": { - "description": "An IfcText is an alphanumeric string of characters which is intended to be read and understood by a human being. It is for information purposes only.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifctext.htm" - }, - "IfcTextAlignment": { - "description": "The IfcTextAlignment describes how text is aligned within the element. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifctextalignment.htm" - }, - "IfcTextDecoration": { - "description": "The IfcTextDecoration describes decorations that are added to the text of an element. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifctextdecoration.htm" - }, - "IfcTextFontName": { - "description": "The IfcTextFontName is a list of font family names and/or generic family name.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifctextfontname.htm" - }, - "IfcTextFontSelect": { - "description": "IfcTextFontSelect allows for either a predefined text font, a text font model or an externally defined text font to be used to describe the font of a text literal.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifctextfontselect.htm" - }, - "IfcTextPath": { - "description": "The text path determines the direction of the text characters in respect to each other.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationdefinitionresource/lexical/ifctextpath.htm" - }, - "IfcTextTransformation": { - "description": "The IfcTextTransformation describes how the cases of characters are handled. Values are:", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcpresentationappearanceresource/lexical/ifctexttransformation.htm" - }, - "IfcThermalAdmittanceMeasure": { - "description": "IfcThermalAdmittanceMeasure is the measure of the ability of a surface to smooth out temperature variations.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcthermaladmittancemeasure.htm" - }, - "IfcThermalConductivityMeasure": { - "description": "IfcThermalConductivityMeasure is a measure of thermal conductivity.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcthermalconductivitymeasure.htm" - }, - "IfcThermalExpansionCoefficientMeasure": { - "description": "IfcThermalExpansionCoeffientMeasure is a measure of the thermal expansion coefficient of a material, which expresses its elongation (as a ratio) per temperature difference. It is usually measured in 1/K. A positive elongation per (positive) rise of temperature is expressed by a positive value.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcthermalexpansioncoefficientmeasure.htm" - }, - "IfcThermalResistanceMeasure": { - "description": "IfcThermalResistanceMeasure is a measure of the resistance offered by a body to the flow of energy.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcthermalresistancemeasure.htm" - }, - "IfcThermalTransmittanceMeasure": { - "description": "IfcThermalTransmittanceMeasure is a measure of the rate at which energy is transmitted through a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcthermaltransmittancemeasure.htm" - }, - "IfcThermodynamicTemperatureMeasure": { - "description": "A thermodynamic temperature measure is the value for the degree of heat of a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcthermodynamictemperaturemeasure.htm" - }, - "IfcTime": { - "description": "The IfcTime identifies a time within a day, expressed by hours, minutes and second. It is expressed by a string value following a particular lexical representation.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifctime.htm" - }, - "IfcTimeMeasure": { - "description": "An IfcTimeMeasure is the value of the duration of periods.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifctimemeasure.htm" - }, - "IfcTimeOrRatioSelect": { - "description": "IfcTimeOrRatioSelect allows a value to be selected as being either a ratio or a time measure.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifctimeorratioselect.htm" - }, - "IfcTimeSeriesDataTypeEnum": { - "description": "IfcTimeSeriesDataTypeEnum describes a type of time series data and is used to determine a value during the time series which is not explicitly specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifctimeseriesdatatypeenum.htm" - }, - "IfcTimeStamp": { - "description": "IfcTimeStamp is an indication of date and time by measuring the number of seconds which have elapsed since 1 January 1970, 00:00:00 UTC.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcdatetimeresource/lexical/ifctimestamp.htm" - }, - "IfcTorqueMeasure": { - "description": "IfcTorqueMeasure is a measure of the torque or moment of a couple.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifctorquemeasure.htm" - }, - "IfcTransformerTypeEnum": { - "description": "The IfcTransformerTypeEnum defines the range of different types of transformer that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcelectricaldomain/lexical/ifctransformertypeenum.htm" - }, - "IfcTransitionCode": { - "description": "The IfcTransitionCode indicated the continuity between consecutive segments of a curve or surface.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifctransitioncode.htm" - }, - "IfcTranslationalStiffnessSelect": { - "description": "A measure of linear stiffness. TRUE denotes infinite stiffness (rigidity). FALSE denotes no stiffness (a release). A numeric value denotes finite linear-elastic stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralloadresource/lexical/ifctranslationalstiffnessselect.htm" - }, - "IfcTransportElementTypeEnum": { - "description": "This enumeration is used to identify primary transport element types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcproductextension/lexical/ifctransportelementtypeenum.htm" - }, - "IfcTrimmingPreference": { - "description": "The IfcTrimmingPreference indicates the preferred way of trimming.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifctrimmingpreference.htm" - }, - "IfcTrimmingSelect": { - "description": "The IfcTrimmingSelect allows for a choice between two ways of trimming a curve.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifctrimmingselect.htm" - }, - "IfcTubeBundleTypeEnum": { - "description": "Enumeration defining the typical types of tube bundles.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifctubebundletypeenum.htm" - }, - "IfcURIReference": { - "description": "The IfcURIReference provides for identifying a Uniform Resource Identifier (URI). A URI can be classified as a locator or a name or both, that is it may comprise a Uniform Resource Locator (URL) and/or a Uniform Resource Name (URN).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcexternalreferenceresource/lexical/ifcurireference.htm" - }, - "IfcUnit": { - "description": "A unit is a physical quantity, with a value of one, which is used as a standard in terms of which other quantities are expressed.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcunit.htm" - }, - "IfcUnitEnum": { - "description": "IfcUnitEnum is an enumeration type for allowed unit types of IfcNamedUnit.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcunitenum.htm" - }, - "IfcUnitaryControlElementTypeEnum": { - "description": "The IfcUnitaryControlElementTypeEnum defines the range of different types and/or functions of unitary control elements possible.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcbuildingcontrolsdomain/lexical/ifcunitarycontrolelementtypeenum.htm" - }, - "IfcUnitaryEquipmentTypeEnum": { - "description": "Enumeration defining the functional type of unitary equipment.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcunitaryequipmenttypeenum.htm" - }, - "IfcValue": { - "description": "IfcValue is a select type for selecting between more specialised select types IfcSimpleValue, IfcMeasureValue and IfcDerivedMeasureValue.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcvalue.htm" - }, - "IfcValveTypeEnum": { - "description": "The IfcValveTypeEnum defines the range of different types of valve that can be specified. These are typically used in conjunction with Pset_ValveTypeCommon, which contains common properties for all valve types.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcvalvetypeenum.htm" - }, - "IfcVaporPermeabilityMeasure": { - "description": "IfcVaporPermeabilityMeasure is a measure of vapor permeability.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcvaporpermeabilitymeasure.htm" - }, - "IfcVectorOrDirection": { - "description": "The IfcVectorOrDirection enables a choice between IfcVector and IfcDirection for vector functions.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcgeometryresource/lexical/ifcvectorordirection.htm" - }, - "IfcVibrationIsolatorTypeEnum": { - "description": "Enumeration defining the typical types of vibration isolators.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifchvacdomain/lexical/ifcvibrationisolatortypeenum.htm" - }, - "IfcVoidingFeatureTypeEnum": { - "description": "This enumeration qualifies a voiding feature regarding its shape and configuration relative to the voided element.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralelementsdomain/lexical/ifcvoidingfeaturetypeenum.htm" - }, - "IfcVolumeMeasure": { - "description": "An IfcVolumeMeasure is the value of the solid content of a body.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcvolumemeasure.htm" - }, - "IfcVolumetricFlowRateMeasure": { - "description": "IfcVolumetricFlowRateMeasure is a measure of the volume of a medium flowing per unit time.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcvolumetricflowratemeasure.htm" - }, - "IfcWallTypeEnum": { - "description": "This enumeration defines the different types of walls that can further specify an IfcWall or IfcWallType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcwalltypeenum.htm" - }, - "IfcWarpingConstantMeasure": { - "description": "IfcWarpingConstantMeasure is a measure for the warping constant or warping resistance of a cross section under torsional loading. It is usually measured in m\\^6.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcwarpingconstantmeasure.htm" - }, - "IfcWarpingMomentMeasure": { - "description": "The warping moment measure is a measure for the warping moment, which occurs in warping torsional analysis. It is usually measured in kN*m\\^2.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcmeasureresource/lexical/ifcwarpingmomentmeasure.htm" - }, - "IfcWarpingStiffnessSelect": { - "description": "A measure of warping stiffness. TRUE denotes infinite stiffness (rigidity). FALSE denotes no stiffness (a release). A numeric value denotes finite linear-elastic stiffness.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcstructuralloadresource/lexical/ifcwarpingstiffnessselect.htm" - }, - "IfcWasteTerminalTypeEnum": { - "description": "The IfcWasteTerminalTypeEnum defines the range of different types of waste terminal that can be specified.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcplumbingfireprotectiondomain/lexical/ifcwasteterminaltypeenum.htm" - }, - "IfcWindowPanelOperationEnum": { - "description": "This enumeration defines the basic ways to describe how window panels operate, as shown in Figure 2.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcwindowpaneloperationenum.htm" - }, - "IfcWindowPanelPositionEnum": { - "description": "This enumeration defines the basic configuration of the window type in terms of the location of window panels. The window configurations are given for windows with one, two or three panels (including fixed panels) as shown in Figure 1. It corresponds to the OperationType of the IfcWindowStyle definition, which references the IfcWindowPanelProperties.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcwindowpanelpositionenum.htm" - }, - "IfcWindowStyleConstructionEnum": { - "description": "This enumeration defines the basic types of construction of windows. The construction type relates to the main material (or material combination) used for making the window.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcwindowstyleconstructionenum.htm" - }, - "IfcWindowStyleOperationEnum": { - "description": "This enumeration defines the basic configuration of the window type in terms of the number of window panels and the subdivision of the total window. The window configurations are given for windows with one, two or three panels (including fixed panels) as shown in Figure 1.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcarchitecturedomain/lexical/ifcwindowstyleoperationenum.htm" - }, - "IfcWindowTypeEnum": { - "description": "This enumeration defines the different predefined types of windows that can further specify an IfcWindow or IfcWindowType.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcwindowtypeenum.htm" - }, - "IfcWindowTypePartitioningEnum": { - "description": "This enumeration defines the basic configuration of the window type in terms of the number of window panels and the subdivision of the total window as shown in Figure 1. The window configurations are given for windows with one, two or three panels (including fixed panels).", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcsharedbldgelements/lexical/ifcwindowtypepartitioningenum.htm" - }, - "IfcWorkCalendarTypeEnum": { - "description": "An IfcWorkCalendarTypeEnum is an enumeration data type that specifies the types of work calendar from which the relevant control can be selected. If given it should help to identify base calendars.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifcworkcalendartypeenum.htm" - }, - "IfcWorkPlanTypeEnum": { - "description": "An IfcWorkPlanTypeEnum is an enumeration data type that specifies the types of work plan from which the relevant control can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifcworkplantypeenum.htm" - }, - "IfcWorkScheduleTypeEnum": { - "description": "An IfcWorkScheduleTypeEnum is an enumeration data type that specifies the types of work schedule from which the relevant control can be selected.", - "spec_url": "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/schema/ifcprocessextension/lexical/ifcworkscheduletypeenum.htm" - } -} \ No newline at end of file diff --git a/src/ifcpatch/ifcpatch/recipes/MergeDuplicateTypes.py b/src/ifcpatch/ifcpatch/recipes/MergeDuplicateTypesByTag.py similarity index 93% rename from src/ifcpatch/ifcpatch/recipes/MergeDuplicateTypes.py rename to src/ifcpatch/ifcpatch/recipes/MergeDuplicateTypesByTag.py index ab29957464..345ff5bbce 100644 --- a/src/ifcpatch/ifcpatch/recipes/MergeDuplicateTypes.py +++ b/src/ifcpatch/ifcpatch/recipes/MergeDuplicateTypesByTag.py @@ -28,13 +28,9 @@ class Patcher: self.args = args def patch(self): - if self.args: - key = self.args[0] - else: - key = "Tag" - keys = {} + tags = {} for element_type in self.file.by_type("IfcTypeObject"): - original_type = keys.get(getattr(element_type, key), None) + original_type = tags.get(element_type.Tag, None) if original_type: for element in ifcopenshell.util.element.get_types(element_type): self.assign_type(element, original_type) @@ -42,7 +38,7 @@ class Patcher: ifcopenshell.util.element.replace_attribute(inverse, element_type, original_type) self.file.remove(element_type) else: - keys[getattr(element_type, key)] = element_type + tags[element_type.Tag] = element_type def assign_type(self, related_object, relating_type): # This is basically a portion of the type.assign_type API which only diff --git a/src/ifctester/README.md b/src/ifctester/README.md index a1f76f098e..ae533658ae 100644 --- a/src/ifctester/README.md +++ b/src/ifctester/README.md @@ -1,35 +1,3 @@ # ifctester -With **IfcTester**, you can author and read **Information Delivery Specification** - **IDS** - files and validate your IFC models against IDS to see if your model is compliant. After the audit, you can generate reports in console, as a web page, JSON or BCF file. It works from the command line, as a web app, or as a library. - -## How to use it - -``` -# create new IDS -my_ids = ids.Ids(title="My IDS") - -# add specification to it -my_spec = ids.Specification(name="My first specification") -my_spec.applicability.append(ids.Entity(name="IFCWALL")) -property = ids.Property( - name="IsExternal", - value="TRUE", - propertySet="Pset_WallCommon", - measure="IfcBoolean", - uri="https://identifier.buildingsmart.org/uri/.../prop/LoadBearing", - instructions="Walls need to be load bearing.") -my_spec.requirements.append(property) -my_ids.specifications.append(my_spec) - -# Save such IDS to file -result = my_ids.to_xml("SampleIDS.xml") - -# open IFC file: -my_ifc = ifcopenshell.open("MyIfcModel.ifc") - -# validate IFC model against IDS requirements: -my_ids.validate(my_ifc) - -# show results: -reporter.Console(my_ids).report() -``` \ No newline at end of file +Author, test, and see reports from IDS audits on the command line, as a webapp, or as a library. diff --git a/src/ifctester/ifctester/facet.py b/src/ifctester/ifctester/facet.py index cbf8e1440b..5ed619250e 100644 --- a/src/ifctester/ifctester/facet.py +++ b/src/ifctester/ifctester/facet.py @@ -882,14 +882,10 @@ class PropertyResult(Result): return "The property set does not contain the required property" elif self.reason["type"] == "MEASURE": return f"The data type \"{str(self.reason['actual'])}\" does not match the requirements" + elif self.reason["type"] == "VALUE" and len(self.reason["actual"]) == 1: + return f"The property value \"{str(self.reason['actual'][0])}\" does not match the requirements" elif self.reason["type"] == "VALUE": - if isinstance(self.reason["actual"], list): - if len(self.reason["actual"]) == 1: - return f"The property value \"{str(self.reason['actual'][0])}\" does not match the requirements" - else: - return f"The property values \"{str(self.reason['actual'])}\" do not match the requirements" - else: - return f"The property value \"{str(self.reason['actual'])}\" does not match the requirements" + return f"The property values \"{str(self.reason['actual'])}\" do not match the requirements" elif self.reason["type"] == "PROHIBITED": return f"The property should not have met the requirement" diff --git a/src/ifctester/ifctester/reporter.py b/src/ifctester/ifctester/reporter.py index 3300dfd327..8a341b6f28 100644 --- a/src/ifctester/ifctester/reporter.py +++ b/src/ifctester/ifctester/reporter.py @@ -204,58 +204,63 @@ class Html(Json): return outfile.write(pystache.render(file.read(), self.results)) -class Bcf(Reporter): - def __init__(self, ids, with_viewpoint=True, filepath=None, group=False): - super().__init__(ids) +class BcfHandler(logging.StreamHandler): + """Logging handler for creation of BCF report files. - from bcf.v2.bcfxml import BcfXml + :param project_name: defaults to "IDS Project" + :type project_name: str, optional + :param author: Email of the person creating the BCF report, defaults to "your@email.com" + :type author: str, optional + :param filepath: Path to save the BCF report, defaults to None + :type filepath: str, optional + :param report_valid: True if you want to list all the compliant cases as well, defaults to False + :type report_valid: bool, optional - self.with_viewpoint = with_viewpoint - self.group = group - self.bcf = BcfXml() - self.bcf.new_project() - if not filepath: - self.filepath=os.path.join(sys.path[0], self.ids.info['title'] + '.bcf') - # self.bcf.filepath = sys.path[0] - self.bcf.project.name = self.ids.info.get("title", "Untitled IDS") - self.bcf.author = self.ids.info.get("author", "your@email.com") - self.bcf.creation_date = datetime.datetime.today().replace(microsecond=0).isoformat() - self.bcf.modified_date = datetime.datetime.today().replace(microsecond=0).isoformat() + Example:: - def report(self): - for specification in self.ids.specifications: - self.report_specification(specification, save_project=False) - self.bcf.save_project(self.filepath) + bcf_handler = BcfHandler( + project_name="Default IDS Project", + author="your@email.com", + filepath="example.bcf", + ) + logger = logging.getLogger("IDS_Logger") + logging.basicConfig(level=logging.INFO, format="%(message)s") + logger.addHandler(bcf_handler) + """ - def report_specification(self, specification, save_project=True): - from bcf.v2 import data as bcf - for requirement in specification.requirements: - if self.group: - topic = bcf.Topic() - topic.title = requirement.to_string("requirement") - topic.description = ";\n".join([requirement.failed_reasons[i] + " for " + str(e.get_info()['type']) + ": " + str(e.GlobalId) for i, e in enumerate(requirement.failed_entities)]) - self.bcf.add_topic(topic) - if self.with_viewpoint: - self.add_viewpoint(topic, requirement) - else: - for i, e in enumerate(requirement.failed_entities): - topic = bcf.Topic() - topic.title = requirement.to_string("requirement") - topic.description = requirement.failed_reasons[i] + " for " + str(e.get_info()['type']) + ": " + str(e.GlobalId) - self.bcf.add_topic(topic) - if self.with_viewpoint: - self.add_viewpoint(topic, requirement) - if save_project: - self.bcf.save_project(self.filepath) - - def add_viewpoint(self, topic, requirement): + def __init__(self, project_name="IDS Project", author="your@email.com", filepath=None, report_valid=False): import numpy as np import ifcopenshell.util.placement + from bcf.v2.bcfxml import BcfXml from bcf.v2 import data as bcf + logging.StreamHandler.__init__(self) + if report_valid: + self.setLevel(logging.INFO) + else: + self.setLevel(logging.ERROR) + self.bcf = BcfXml() + self.bcf.author = author + self.bcf.new_project() + self.bcf.project.name = project_name + self.filepath = filepath + self.bcf.edit_project() + + def emit(self, log_content): + """Triggered on each use of logging with the BCF handler enabled. + + :param log_content: default logger message + :type log_content: string|dict + """ + topic = bcf.Topic() + topic.title = log_content.msg["sentence"].split(".\n")[1] + topic.description = log_content.msg["sentence"].split(".\n")[0] + self.bcf.add_topic(topic) + # try: # Add viewpoint and link to ifc object viewpoint = bcf.Viewpoint() viewpoint.perspective_camera = bcf.PerspectiveCamera() - ifc_elem = requirement.failed_entities[0] + ifc_elem = log_content.msg["ifc_element"] + # ifc_elem = ifc_file.by_guid(log_content.msg["guid"]) target_position = np.array(ifcopenshell.util.placement.get_local_placement(ifc_elem.ObjectPlacement)) target_position = target_position[:, 3][0:3] camera_position = target_position + np.array((5, 5, 5)) @@ -284,17 +289,18 @@ class Bcf(Reporter): viewpoint.perspective_camera.camera_up_vector.y = mat[1][1] viewpoint.perspective_camera.camera_up_vector.z = mat[2][1] viewpoint.components = bcf.Components() - for e in requirement.failed_entities: - c = bcf.Component() - c.ifc_guid = e.GlobalId - viewpoint.components.selection.append(c) + c = bcf.Component() + c.ifc_guid = log_content.msg["guid"] + viewpoint.components.selection.append(c) viewpoint.components.visibility = bcf.ComponentVisibility() viewpoint.components.visibility.default_visibility = True - # add single pixel png file as a snapshot, as viewpoints without snapshots won't open in viewers - png = b"\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x01\x00\x00\x00\x01\x01\x03\x00\x00\x00%\xdbV\xca\x00\x00\x00\x03PLTE\x00\x00\x00\xa7z=\xda\x00\x00\x00\x01tRNS\x00@\xe6\xd8f\x00\x00\x00\nIDAT\x08\xd7c`\x00\x00\x00\x02\x00\x01\xe2!\xbc3\x00\x00\x00\x00IEND\xaeB`\x82" - snapshot_path = os.path.join(self.bcf.filepath, topic.guid, topic.guid+".png") - snapshot = open(snapshot_path, "wb") - snapshot.write(png) - snapshot.close() - viewpoint.snapshot = topic.guid+".png" - self.bcf.add_viewpoint(topic, viewpoint) \ No newline at end of file + viewpoint.snapshot = None + self.bcf.add_viewpoint(topic, viewpoint) + + def flush(self): + """Saves the BCF report to file. Triggered at the end of the validation process.""" + if not self.filepath: + self.filepath = os.getcwd() + r"\IDS_report.bcf" + if not (self.filepath.endswith(".bcf") or self.filepath.endswith(".bcfzip")): + self.filepath = self.filepath + r"\IDS_report.bcf" + self.bcf.save_project(self.filepath)