-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.xaml
1135 lines (1135 loc) · 139 KB
/
Main.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Activity mc:Ignorable="sap sap2010" x:Class="Main" VisualBasic.Settings="{x:Null}" sap2010:Annotation.AnnotationText="UPTF00000088eyI8SGVscExpbms+a19fQmFja2luZ0ZpZWxkIjpudWxsLCI8SW5pdGlhbFRvb2x0aXA+a19fQmFja2luZ0ZpZWxkIjpudWxsLCI8VmVyc2lvbj5rX19CYWNraW5nRmllbGQiOjF9" sap:VirtualizedContainerService.HintSize="873.3333333333334,11704" sap2010:WorkflowViewState.IdRef="ActivityBuilder_1" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" xmlns:sap2010="http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=System.Private.CoreLib" xmlns:sco="clr-namespace:System.Collections.ObjectModel;assembly=System.Private.CoreLib" xmlns:sd="clr-namespace:System.Data;assembly=System.Data.Common" xmlns:ui="http://schemas.uipath.com/workflow/activities" xmlns:uix="http://schemas.uipath.com/workflow/activities/uix" xmlns:uuam="clr-namespace:UiPath.UIAutomationNext.Activities.Models;assembly=UiPath.UIAutomationNext.Activities" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<TextExpression.NamespacesForImplementation>
<sco:Collection x:TypeArguments="x:String">
<x:String>System.Activities</x:String>
<x:String>System.Activities.Statements</x:String>
<x:String>System.Activities.Expressions</x:String>
<x:String>System.Activities.Validation</x:String>
<x:String>System.Activities.XamlIntegration</x:String>
<x:String>Microsoft.VisualBasic</x:String>
<x:String>Microsoft.VisualBasic.Activities</x:String>
<x:String>System</x:String>
<x:String>System.Collections</x:String>
<x:String>System.Collections.Generic</x:String>
<x:String>System.Collections.ObjectModel</x:String>
<x:String>System.Data</x:String>
<x:String>System.Diagnostics</x:String>
<x:String>System.Drawing</x:String>
<x:String>System.IO</x:String>
<x:String>System.Linq</x:String>
<x:String>System.Net.Mail</x:String>
<x:String>System.Xml</x:String>
<x:String>System.Xml.Linq</x:String>
<x:String>UiPath.Core</x:String>
<x:String>UiPath.Core.Activities</x:String>
<x:String>System.Windows.Markup</x:String>
<x:String>GlobalVariablesNamespace</x:String>
<x:String>GlobalConstantsNamespace</x:String>
<x:String>System.ComponentModel</x:String>
<x:String>System.Runtime.Serialization</x:String>
<x:String>System.Xml.Serialization</x:String>
<x:String>UiPath.UIAutomationNext.Enums</x:String>
<x:String>UiPath.UIAutomationCore.Contracts</x:String>
<x:String>UiPath.UIAutomationNext.Activities</x:String>
<x:String>UiPath.Shared.Activities</x:String>
<x:String>UiPath.Platform.ObjectLibrary</x:String>
<x:String>UiPath.UIAutomationNext.Activities.Models</x:String>
<x:String>UiPath.UIAutomationNext.Models.ExtractData</x:String>
<x:String>UiPath.Shared.Activities.Business</x:String>
<x:String>System.Reflection</x:String>
<x:String>UiPath.Excel</x:String>
<x:String>UiPath.Excel.Activities</x:String>
<x:String>UiPath.DataTableUtilities</x:String>
<x:String>System.Text.RegularExpressions</x:String>
<x:String>System.Activities.Runtime.Collections</x:String>
<x:String>UiPath.UIAutomationNext.Contracts</x:String>
<x:String>UiPath.UIAutomationNext.Models.CV</x:String>
<x:String>System.Linq.Expressions</x:String>
<x:String>System.Numerics</x:String>
</sco:Collection>
</TextExpression.NamespacesForImplementation>
<TextExpression.ReferencesForImplementation>
<sco:Collection x:TypeArguments="AssemblyReference">
<AssemblyReference>Microsoft.VisualBasic</AssemblyReference>
<AssemblyReference>mscorlib</AssemblyReference>
<AssemblyReference>PresentationCore</AssemblyReference>
<AssemblyReference>PresentationFramework</AssemblyReference>
<AssemblyReference>System</AssemblyReference>
<AssemblyReference>System.Activities</AssemblyReference>
<AssemblyReference>System.ComponentModel.TypeConverter</AssemblyReference>
<AssemblyReference>System.Core</AssemblyReference>
<AssemblyReference>System.Data</AssemblyReference>
<AssemblyReference>System.Data.Common</AssemblyReference>
<AssemblyReference>System.Data.DataSetExtensions</AssemblyReference>
<AssemblyReference>System.Drawing</AssemblyReference>
<AssemblyReference>System.Drawing.Common</AssemblyReference>
<AssemblyReference>System.Drawing.Primitives</AssemblyReference>
<AssemblyReference>System.Linq</AssemblyReference>
<AssemblyReference>System.Net.Mail</AssemblyReference>
<AssemblyReference>System.ObjectModel</AssemblyReference>
<AssemblyReference>System.Private.CoreLib</AssemblyReference>
<AssemblyReference>System.Xaml</AssemblyReference>
<AssemblyReference>System.Xml</AssemblyReference>
<AssemblyReference>System.Xml.Linq</AssemblyReference>
<AssemblyReference>UiPath.System.Activities</AssemblyReference>
<AssemblyReference>UiPath.UiAutomation.Activities</AssemblyReference>
<AssemblyReference>WindowsBase</AssemblyReference>
<AssemblyReference>UiPath.Studio.Constants</AssemblyReference>
<AssemblyReference>System.ComponentModel.EventBasedAsync</AssemblyReference>
<AssemblyReference>Microsoft.Win32.Primitives</AssemblyReference>
<AssemblyReference>System.ComponentModel</AssemblyReference>
<AssemblyReference>System.ComponentModel.Primitives</AssemblyReference>
<AssemblyReference>System.Private.ServiceModel</AssemblyReference>
<AssemblyReference>System.Runtime.Serialization.Formatters</AssemblyReference>
<AssemblyReference>System.Private.DataContractSerialization</AssemblyReference>
<AssemblyReference>System.Runtime.Serialization.Primitives</AssemblyReference>
<AssemblyReference>System.Private.Xml</AssemblyReference>
<AssemblyReference>UiPath.UIAutomationNext</AssemblyReference>
<AssemblyReference>UiPath.UIAutomationCore</AssemblyReference>
<AssemblyReference>UiPath.UIAutomationNext.Activities</AssemblyReference>
<AssemblyReference>UiPath.Excel.Activities</AssemblyReference>
<AssemblyReference>UiPath.Mail.Activities</AssemblyReference>
<AssemblyReference>UiPath.Testing.Activities</AssemblyReference>
<AssemblyReference>UiPath.OCR.Activities</AssemblyReference>
<AssemblyReference>UiPath.Platform</AssemblyReference>
<AssemblyReference>System.Reflection.DispatchProxy</AssemblyReference>
<AssemblyReference>System.Reflection.TypeExtensions</AssemblyReference>
<AssemblyReference>System.Reflection.Metadata</AssemblyReference>
<AssemblyReference>UiPath.Workflow</AssemblyReference>
<AssemblyReference>NPOI</AssemblyReference>
<AssemblyReference>UiPath.Excel.Activities.Design</AssemblyReference>
<AssemblyReference>System.Memory.Data</AssemblyReference>
<AssemblyReference>System.Console</AssemblyReference>
<AssemblyReference>System.Configuration.ConfigurationManager</AssemblyReference>
<AssemblyReference>System.Security.Permissions</AssemblyReference>
<AssemblyReference>System.Memory</AssemblyReference>
<AssemblyReference>System.Private.Uri</AssemblyReference>
<AssemblyReference>UiPath.System.Activities.Design</AssemblyReference>
<AssemblyReference>UiPath.System.Activities.ViewModels</AssemblyReference>
<AssemblyReference>System.Data.SqlClient</AssemblyReference>
<AssemblyReference>UiPath.Excel</AssemblyReference>
<AssemblyReference>System.Text.RegularExpressions</AssemblyReference>
<AssemblyReference>System.Collections</AssemblyReference>
<AssemblyReference>System.Collections.NonGeneric</AssemblyReference>
<AssemblyReference>System.Linq.Expressions</AssemblyReference>
<AssemblyReference>System.Runtime.Numerics</AssemblyReference>
</sco:Collection>
</TextExpression.ReferencesForImplementation>
<Sequence DisplayName="Main Sequence" sap:VirtualizedContainerService.HintSize="814.6666666666666,11639.333333333334" sap2010:WorkflowViewState.IdRef="Sequence_1">
<Sequence.Variables>
<Variable x:TypeArguments="sd:DataTable" Name="Dt_aecc" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:BuildDataTable DataTable="[Dt_aecc]" DisplayName="Build Data Table" sap:VirtualizedContainerService.HintSize="752.6666666666666,100" sap2010:WorkflowViewState.IdRef="BuildDataTable_1" TableInfo="<NewDataSet>
 <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
 <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:MainDataTable="TableName" msdata:UseCurrentLocale="true">
 <xs:complexType>
 <xs:choice minOccurs="0" maxOccurs="unbounded">
 <xs:element name="TableName">
 <xs:complexType>
 <xs:sequence>
 <xs:element name="Name" msdata:Caption="" minOccurs="0">
 <xs:simpleType>
 <xs:restriction base="xs:string">
 <xs:maxLength value="1000" />
 </xs:restriction>
 </xs:simpleType>
 </xs:element>
 <xs:element name="Community" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Province" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Municipality" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Type_x0020_of_x0020_Centre" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="GLA" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Address" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Telephone" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Web" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Email" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Managing_x0020_Company" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Letting_x0020_Agency" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Ownership" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Operating_x0020_System" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Developer" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Year_x0020_of_x0020_Opening" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Gross_x0020_Floor_x0020_Space" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Total_x0020_number_x0020_of_x0020_shops" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Exterior_x0020_Shops" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Integrated_x0020_Shops" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Total_x0020_number_x0020_of_x0020_floors" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Retail" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Car_x0020_Parking" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Total_x0020_number_x0020_of_x0020_parking_x0020_spaces" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Indoor_x0020_spaces" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Conditions_x0020_of_x0020_use_x0020_of_x0020_parking" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Management_x0020_and_x0020_services" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="In_x0020_Shops" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Number_x0020_of_x0020_Visitors_x0020__x0028_Year_x0029_" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Walking" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Own_x0020_Transportation" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Tenant" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Tenant_x0020_Category" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Tenant_x0020_GLA" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Industry" msdata:Caption="" type="xs:string" minOccurs="0" />
 <xs:element name="Industry_x0020_GLA" msdata:Caption="" type="xs:string" minOccurs="0" />
 </xs:sequence>
 </xs:complexType>
 </xs:element>
 </xs:choice>
 </xs:complexType>
 </xs:element>
 </xs:schema>
</NewDataSet>" />
<uix:NApplicationCard AttachMode="ByInstance" DisplayName="Use Browser Chrome: AECC - Directorio de Centros comerciales" sap:VirtualizedContainerService.HintSize="752.6666666666666,11451.333333333334" sap2010:WorkflowViewState.IdRef="NApplicationCard_1" InteractionMode="DebuggerApi" ScopeGuid="5e0ba07d-ad75-433b-9b28-fbe11303d85e" Version="V2">
<uix:NApplicationCard.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="WSSessionData" />
</ActivityAction.Argument>
<Sequence DisplayName="Do" sap:VirtualizedContainerService.HintSize="718.6666666666666,11209.333333333334" sap2010:WorkflowViewState.IdRef="Sequence_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<uix:NGoToUrl DisplayName="Go To URL" sap:VirtualizedContainerService.HintSize="656.6666666666666,124.66666666666667" sap2010:WorkflowViewState.IdRef="NGoToUrl_1" Url="https://directoriocentroscomerciales.aedecc.com/busqueda" Version="V3" />
<ui:RepeatNumberOfTimesX DisplayName="Repeat Number of Times - After Nth Page" sap:VirtualizedContainerService.HintSize="656.6666666666666,482" sap2010:WorkflowViewState.IdRef="RepeatNumberOfTimesX_1" NumberOfTimes="40" StartAt="1">
<ui:RepeatNumberOfTimesX.Body>
<ActivityAction x:TypeArguments="x:Int32">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Int32" Name="CurrentItem" />
</ActivityAction.Argument>
<Sequence DisplayName="Do" sap:VirtualizedContainerService.HintSize="416,272" sap2010:WorkflowViewState.IdRef="Sequence_29">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<uix:NClick ActivateBefore="True" ClickType="Single" DisplayName="Click 'Next'" sap:VirtualizedContainerService.HintSize="354,184.66666666666666" sap2010:WorkflowViewState.IdRef="NClick_2" KeyModifiers="None" MouseButton="Left" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" Version="V3">
<uix:NClick.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/busqueda&c=&com=&prov=&loc=" CvTextArea="1833, 839, 33, 13" CvTextArgument="Next" CvType="Text" DesignTimeRectangle="1820, 528, 61, 36" DesignTimeScaleFactor="1.125" ElementType="Text" FriendlyName="'Next'" FullSelectorArgument="<webctrl parentid='inboxTable_next' tag='A' />" FuzzySelectorArgument="<webctrl parentid='inboxTable_next' tag='A' type='' class='' aaname='Next' check:innerText='Next' />" Guid="a2293b7d-11bf-4297-a574-23f4e3b39de6" InformativeScreenshot="146bd1ac18195bc2029afe3b53f9c521.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directory of Shopping Centers' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvElementArea="1458, 976, 128, 42" CvType="Button" DesignTimeRectangle="1458, 525, 128, 42" ElementType="Button" FriendlyName="'chrome.exe AECC'" SearchSteps="CV" TargetType="ComputerVisionBased" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NClick.Target>
</uix:NClick>
</Sequence>
</ActivityAction>
</ui:RepeatNumberOfTimesX.Body>
</ui:RepeatNumberOfTimesX>
<uix:NForEachUiElement DisplayName="For Each UI Element" ExtractDataSettings="<Table xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' Type='Structured' AddCvHeader='true' IsScrollEnabled='false'>
	<Column xsi:type='DataColumn' ReferenceName='Column0' Name='CurrentElement'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>true</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' ReferenceName='Column2' Name='Name'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>true</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' ReferenceName='Column1' Name='Community'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' ReferenceName='Column3' Name='Province'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' ReferenceName='Column4' Name='Municipality'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' ReferenceName='Column5' Name='Type'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' ReferenceName='Column7' Name='GLA'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataNextLink' />
</Table>" ExtractMetadata="<extract><row exact='1'><webctrl tag='tr' /></row><column exact='1' name='Column0' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='1' /><webctrl tag='a' idx='1' /></column><column exact='1' name='Column2' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='1' /><webctrl tag='a' idx='1' /></column><column exact='1' name='Column1' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='2' /></column><column exact='1' name='Column3' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='3' /></column><column exact='1' name='Column4' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='4' /></column><column exact='1' name='Column5' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='5' /></column><column exact='1' name='Column7' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='6' /></column></extract>" sap:VirtualizedContainerService.HintSize="656.6666666666666,10515.333333333334" sap2010:WorkflowViewState.IdRef="NForEachUiElement_1" InteractionMode="Simulate" LimitExtractionTo="Page" MaximumResults="18" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" Version="V3">
<uix:NForEachUiElement.Body>
<ActivityAction x:TypeArguments="x:Int32">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Int32" Name="CurrentIndex" />
</ActivityAction.Argument>
<Sequence DisplayName="Do" sap:VirtualizedContainerService.HintSize="592,10221.333333333334" sap2010:WorkflowViewState.IdRef="Sequence_3">
<Sequence.Variables>
<Variable x:TypeArguments="x:String" Name="Address" />
<Variable x:TypeArguments="x:String" Name="Telephone" />
<Variable x:TypeArguments="x:String" Name="Web" />
<Variable x:TypeArguments="x:String" Name="Email" />
<Variable x:TypeArguments="x:String" Name="ManagingCompany" />
<Variable x:TypeArguments="x:String" Name="LettingCompany" />
<Variable x:TypeArguments="x:String" Name="ownership" />
<Variable x:TypeArguments="x:String" Name="OperatingSystem" />
<Variable x:TypeArguments="x:String" Name="Developer" />
<Variable x:TypeArguments="x:String" Name="Yearofopening" />
<Variable x:TypeArguments="x:String" Name="Grossfloorspace" />
<Variable x:TypeArguments="x:String" Name="Totalshops" />
<Variable x:TypeArguments="x:String" Name="exteriorshops" />
<Variable x:TypeArguments="x:String" Name="integratedshops" />
<Variable x:TypeArguments="x:String" Name="totalfloors" />
<Variable x:TypeArguments="x:String" Name="retail" />
<Variable x:TypeArguments="x:String" Name="carparking" />
<Variable x:TypeArguments="x:String" Name="totalparkingspace" />
<Variable x:TypeArguments="x:String" Name="indoorspace" />
<Variable x:TypeArguments="x:String" Name="numberofvisitors" />
<Variable x:TypeArguments="x:String" Name="walking" />
<Variable x:TypeArguments="x:String" Name="owntransportation" />
<Variable x:TypeArguments="x:String" Name="conditionofuse" />
<Variable x:TypeArguments="x:String" Name="managementservice" />
<Variable x:TypeArguments="x:String" Name="inshops" />
<Variable x:TypeArguments="x:String" Name="tenant1" />
<Variable x:TypeArguments="x:String" Name="tenantcategory1" />
<Variable x:TypeArguments="x:String" Name="tenantgla1" />
<Variable x:TypeArguments="x:String" Name="Table1tenantcategory" />
<Variable x:TypeArguments="sd:DataTable" Name="tenantdt1" />
<Variable x:TypeArguments="x:String" Name="Table2tenantcategory" />
<Variable x:TypeArguments="sd:DataTable" Name="tenantdt2" />
<Variable x:TypeArguments="sd:DataTable" Name="industry" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<uix:NClick ActivateBefore="True" ClickType="Double" CursorMotionType="Instant" DisplayName="Click" sap:VirtualizedContainerService.HintSize="530,181.33333333333334" sap2010:WorkflowViewState.IdRef="NClick_1" InUiElement="[CurrentElement]" InteractionMode="HardwareEvents" KeyModifiers="None" MouseButton="Left" Version="V3" />
<If Condition="[string.IsNullOrEmpty(Province) = true]" sap:VirtualizedContainerService.HintSize="530,474" sap2010:WorkflowViewState.IdRef="If_7">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence DisplayName="Then" sap:VirtualizedContainerService.HintSize="416,101.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_19">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence DisplayName="Else" sap:VirtualizedContainerService.HintSize="496,192.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_20">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,108" sap2010:WorkflowViewState.IdRef="Assign_1">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[Province]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[Province.ToString.Replace("." , "")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<If Condition="[string.IsNullOrEmpty(GLA) = true]" sap:VirtualizedContainerService.HintSize="530,65.33333333333333" sap2010:WorkflowViewState.IdRef="If_9">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_24">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_22">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_12">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[GLA]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[GLA.Replace(".","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="530,187.33333333333334" sap2010:WorkflowViewState.IdRef="LogMessage_1" Level="[UiPath.Core.Activities.LogLevel.Warn]" Message="[CurrentIndex.ToString +" --" +Name +" --" + Community]" />
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Address'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_1" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Address]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="998, 639, 903, 43" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Address: Avda.'" FullSelectorArgument="<webctrl css-selector='body&gt;div&gt;div&gt;div&gt;div&gt;div&gt;p' parentid='printinfoficha' tag='P' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='P' class='' aaname='' />" Guid="f300193e-ac26-421a-aa7b-3f51dd3860ae" InformativeScreenshot="e2b64872251161a920cd0f548a4c5f56.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 639, 64, 20" FriendlyName="'Address'" FullSelectorArgument="<webctrl parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='B' type='' class='' aaname='Address: ' check:innerText='Address:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(Address) = true]" sap:VirtualizedContainerService.HintSize="530,65.33333333333333" sap2010:WorkflowViewState.IdRef="If_6">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_17">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_18">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_2">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[Address]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[Address.ToString.Replace("Address: " , "")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Telephone'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_2" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Telephone]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1079, 682, 85, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'928 424 168'" FullSelectorArgument="<webctrl aaname='928 424 168 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="efd60f8c-53a4-4f95-9f34-265fccc6c240" InformativeScreenshot="d3009f15389f67b5a0630c5d0d63fd76.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 682, 81, 20" FriendlyName="'Telephone'" FullSelectorArgument="<webctrl idx='2' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Telephone: ' check:innerText='Telephone:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(Telephone) = true]" sap:VirtualizedContainerService.HintSize="530,65.33333333333333" sap2010:WorkflowViewState.IdRef="If_11">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_25">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_23">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_13">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[Telephone]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[Telephone.Replace(" ","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Web'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_3" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Web]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1037, 603, 155, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'www.cco7palmas.com'" FullSelectorArgument="<webctrl aaname='www.cco7palmas.com' parentid='printinfoficha' tag='A' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='A' type='' class='' />" Guid="b4a7ef10-98aa-4933-a6d1-490ea87c45f7" InformativeScreenshot="79633a02b947dcbff107aca11edf95e4.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 603, 39, 20" FriendlyName="'Web'" FullSelectorArgument="<webctrl idx='3' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Web: ' check:innerText='Web:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'E-mail'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_4" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Email]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1049, 624, 190, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'email'" FullSelectorArgument="<webctrl aaname='[email protected] ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="f47a8d20-55b3-47e3-ace7-091e295eb7e8" InformativeScreenshot="f2c1b456a8b5f059e5ba23709e866d58.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 624, 51, 20" FriendlyName="'E-mail'" FullSelectorArgument="<webctrl idx='4' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='E-mail: ' check:innerText='E-mail:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Managing Company'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_5" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[ManagingCompany]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1145, 731, 273, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'IBSA Canarias'" FullSelectorArgument="<webctrl css-selector='body&gt;div&gt;div&gt;div&gt;div&gt;div&gt;p&gt;span' idx='7' isleaf='1' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl type='' class='' isleaf='1' parentid='printinfoficha' tag='SPAN' />" Guid="38eab5b5-e80d-43d2-ae06-871b52d63e0e" InformativeScreenshot="142d4b895666459ac5616cb1e80df432.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 731, 147, 20" FriendlyName="'Managing Company'" FullSelectorArgument="<webctrl idx='9' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Managing Company: ' check:innerText='Managing Company:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Letting Agency'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_6" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[LettingCompany]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1108, 753, 273, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'IBSA Canarias'" FullSelectorArgument="<webctrl css-selector='body&gt;div&gt;div&gt;div&gt;div&gt;div&gt;p&gt;span' idx='8' isleaf='1' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl type='' class='' isleaf='1' parentid='printinfoficha' tag='SPAN' />" Guid="403a440d-8db8-4803-8a86-af41fbbea706" InformativeScreenshot="fcd8b8b39144749349de23ccf829c0a5.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 753, 110, 20" FriendlyName="'Letting Agency'" FullSelectorArgument="<webctrl idx='10' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Letting Agency: ' check:innerText='Letting Agency:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Ownership'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_7" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[ownership]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1082, 837, 273, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'IBSA Canarias'" FullSelectorArgument="<webctrl css-selector='body&gt;div&gt;div&gt;div&gt;div&gt;div&gt;p&gt;span' idx='9' isleaf='1' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl type='' class='' isleaf='1' parentid='printinfoficha' tag='SPAN' />" Guid="5d99406c-74e2-4b2f-922e-14e2683b8ca3" InformativeScreenshot="93bb32189cc874ba02103920fb2b69b9.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 837, 84, 20" FriendlyName="'Ownership'" FullSelectorArgument="<webctrl idx='11' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Ownership: ' check:innerText='Ownership:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Operating system'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_8" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[OperatingSystem]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1129, 859, 48, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Letting'" FullSelectorArgument="<webctrl aaname='Letting ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="1ff876cb-8262-496c-9ad5-79b284814c3f" InformativeScreenshot="a84c255ae84b639e512a890a3a69a4a7.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 859, 131, 20" FriendlyName="'Operating system'" FullSelectorArgument="<webctrl idx='12' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Operating system: ' check:innerText='Operating system:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Developer'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_9" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Developer]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1077, 943, 80, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Grupo IBSA'" FullSelectorArgument="<webctrl aaname='Grupo IBSA ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="6978922e-14b7-4877-bdb8-1e1eeca4d8d4" InformativeScreenshot="b7095b181c6a7c6785fa70f3936f97fa.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 943, 79, 20" FriendlyName="'Developer'" FullSelectorArgument="<webctrl idx='13' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Developer: ' check:innerText='Developer:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Year of Opening'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_10" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Yearofopening]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1118, 486, 69, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'June 2002'" FullSelectorArgument="<webctrl aaname='June 2002 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="afcef521-7c4e-4a5d-9b01-d2fe6e7e430d" InformativeScreenshot="da9e8995f6be9607dd4e5def873b837e.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 486, 120, 20" FriendlyName="'Year of Opening'" FullSelectorArgument="<webctrl idx='15' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Year of Opening: ' check:innerText='Year of Opening:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Gross floor space'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_11" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Grossfloorspace]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1127, 613, 79, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'120.000 m²'" FullSelectorArgument="<webctrl aaname='120.000 m²' class='mdos' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl class='mdos' parentid='printinfoficha' tag='SPAN' type='' />" Guid="8aae7e1d-5d92-4bd2-b89a-b48afa50f706" InformativeScreenshot="0b0464dae3e9de5b0ed0a8078bf0e848.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 613, 129, 20" FriendlyName="'Gross floor space'" FullSelectorArgument="<webctrl idx='18' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Gross floor space: ' check:innerText='Gross floor space:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(Grossfloorspace) = true]" sap:VirtualizedContainerService.HintSize="530,65.33333333333333" sap2010:WorkflowViewState.IdRef="If_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_15">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_16">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_3">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[Grossfloorspace]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[Grossfloorspace.ToString.Replace(".","").Replace("m²" ,"")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Total number of shops'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_12" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Totalshops]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1163, 635, 17, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'87'" FullSelectorArgument="<webctrl aaname='87 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="d062c885-4f31-4a37-b37c-1b584c027a1f" InformativeScreenshot="8b36f9f418c7328a2d5641161524ea3b.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 635, 165, 20" FriendlyName="'Total number of shops'" FullSelectorArgument="<webctrl idx='19' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Total number of shops: ' check:innerText='Total number of shops:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Exterior shops'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_13" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[exteriorshops]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1107, 656, 9, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'5'" FullSelectorArgument="<webctrl aaname='5 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="d66d4493-9850-4a48-b2ba-7bc49c05104d" InformativeScreenshot="0d0777a5533cdfc19b118d482dd9a5ae.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 656, 109, 20" FriendlyName="'Exterior shops'" FullSelectorArgument="<webctrl idx='20' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Exterior shops: ' check:innerText='Exterior shops:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Integrated shops'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_14" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[integratedshops]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1124, 678, 17, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'82'" FullSelectorArgument="<webctrl aaname='82 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="8c48ffc9-c38f-440a-9ea4-c30f0c95f8fa" InformativeScreenshot="cf6e937b8438cb4a7d7a1678740d894b.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 678, 126, 20" FriendlyName="'Integrated shops'" FullSelectorArgument="<webctrl idx='21' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname=' Integrated shops: ' check:innerText='Integrated shops:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Total number of floors'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_15" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[totalfloors]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1162, 699, 9, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'7'" FullSelectorArgument="<webctrl aaname='7 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="7b70a471-4032-4499-962e-591dc2a903a9" InformativeScreenshot="de59cb25d65557deb821d7609840c0ee.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 699, 164, 20" FriendlyName="'Total number of floors'" FullSelectorArgument="<webctrl idx='22' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Total number of floors: ' check:innerText='Total number of floors:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Retail'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_16" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[retail]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1045, 720, 9, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'4'" FullSelectorArgument="<webctrl aaname='4 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="c37e7304-416c-43ec-8537-86e2434fcdbc" InformativeScreenshot="6a02a12d3a4dcf55fa3f96f0baacf8ce.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 720, 47, 20" FriendlyName="'Retail'" FullSelectorArgument="<webctrl idx='23' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Retail: ' check:innerText='Retail:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Car parking'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_17" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[carparking]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1086, 742, 9, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'3'" FullSelectorArgument="<webctrl aaname='3 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="93e34165-ee82-46f0-8b46-e3bc0b6f53f0" InformativeScreenshot="40a462ed0bb6208abbaac0aeebaa6726.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 742, 88, 20" FriendlyName="'Car parking'" FullSelectorArgument="<webctrl idx='24' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Car parking: ' check:innerText='Car parking:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DelayAfter="0" DelayBefore="0" DisplayName="Get Text 'Total number'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_18" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[totalparkingspace]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1226, 763, 38, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'1.500'" FullSelectorArgument="<webctrl aaname='1.500 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="ed6951ac-e976-46c1-8891-8d7408050411" InformativeScreenshot="57fd84a8528464c21665ae737ae9c5f1.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 763, 228, 20" FriendlyName="'Total number'" FullSelectorArgument="<webctrl idx='25' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname=' Total number of parking spaces: ' check:innerText='Total number of parking spaces:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(totalparkingspace) = true]" sap:VirtualizedContainerService.HintSize="530,65.33333333333333" sap2010:WorkflowViewState.IdRef="If_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence DisplayName="Then" sap:VirtualizedContainerService.HintSize="416,101.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_13">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence DisplayName="Else" sap:VirtualizedContainerService.HintSize="496,192.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_14">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,108" sap2010:WorkflowViewState.IdRef="Assign_4">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[totalparkingspace]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[totalparkingspace.ToString.Replace(".","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Indoor spaces'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_19" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[indoorspace]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1104, 785, 38, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'1.500'" FullSelectorArgument="<webctrl aaname='1.500 ' idx='2' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='SPAN' class='' />" Guid="9f31d013-0fb0-463b-bb0a-6555f31df9c7" InformativeScreenshot="70dd445568a232ed6f696187773a1dd5.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 785, 106, 20" FriendlyName="'Indoor spaces'" FullSelectorArgument="<webctrl idx='26' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Indoor spaces: ' check:innerText='Indoor spaces:' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(indoorspace) = true]" sap:VirtualizedContainerService.HintSize="530,65.33333333333333" sap2010:WorkflowViewState.IdRef="If_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_11">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_12">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_5">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[indoorspace]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[indoorspace.ToString.Replace(".","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Conditions of'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_23" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[conditionofuse]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" CvTextArea="1202, 720, 31, 13" CvType="AnyWordGroup" DesignTimeRectangle="1203, 716, 30, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Free'" FullSelectorArgument="<webctrl aaname='Free ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="f1198899-b85c-4779-b772-1cb1cbf8b5ae" InformativeScreenshot="0fc3bd49cda40a8230e9e6ea36e8585c.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="997, 718, 202, 19" CvTextArgument="Conditions of use of parking:" CvType="Text" DesignTimeRectangle="998, 716, 205, 20" FriendlyName="'Conditions of'" FullSelectorArgument="<webctrl idx='27' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Conditions of use of parking: ' check:innerText='Conditions of use of parking:' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Management and services'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_24" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[managementservice]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" CvTextArea="1188, 805, 19, 13" CvType="AnyWordGroup" DesignTimeRectangle="1189, 801, 17, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'36'" FullSelectorArgument="<webctrl aaname='36 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="385c0b87-514d-49a0-a4c3-eba904b13749" InformativeScreenshot="bf52169a1ff104d40add162b757d06bf.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="997, 804, 188, 17" CvTextArgument="Management and services:" CvType="Text" DesignTimeRectangle="998, 801, 191, 20" FriendlyName="'Management and services'" FullSelectorArgument="<webctrl idx='28' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Management and services: ' check:innerText='Management and services:' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'In shops'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_25" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[inshops]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" CvTextArea="1064, 826, 27, 13" CvType="AnyWordGroup" DesignTimeRectangle="1065, 822, 26, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'600'" FullSelectorArgument="<webctrl aaname='600 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="89bee1b5-48b3-41ea-a3ee-fa66887b5dd2" InformativeScreenshot="052f3df308963fe595a76a6cb7ce3116.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="997, 824, 65, 19" CvTextArgument="In shops:" CvType="Text" DesignTimeRectangle="998, 822, 67, 20" FriendlyName="'In shops'" FullSelectorArgument="<webctrl idx='29' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='In shops: ' check:innerText='In shops:' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(inshops) = true]" sap:VirtualizedContainerService.HintSize="530,474" sap2010:WorkflowViewState.IdRef="If_14">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence DisplayName="Then" sap:VirtualizedContainerService.HintSize="416,101.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_33">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence DisplayName="Else" sap:VirtualizedContainerService.HintSize="496,192.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_32">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,108" sap2010:WorkflowViewState.IdRef="Assign_17">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[inshops]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[inshops.Replace(".","").Trim.ToString]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Number of'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_20" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[numberofvisitors]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1179, 683, 68, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'7.550.000'" FullSelectorArgument="<webctrl aaname='7.550.000 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="14e5fdcd-1c59-4ceb-bd65-b523ed86432e" InformativeScreenshot="d670718f75f7781548432249534a8a9e.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 683, 181, 20" FriendlyName="'Number of'" FullSelectorArgument="<webctrl idx='31' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' aaname='Number of visitors (year): ' check:innerText='Number of visitors (year):' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(numberofvisitors) = true]" sap:VirtualizedContainerService.HintSize="530,94" sap2010:WorkflowViewState.IdRef="If_8">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_26">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_21">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_14">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[numberofvisitors]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[numberofvisitors.Replace(".","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Walking'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_21" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[walking]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1653, 543, 238, 28" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'48 %'" FullSelectorArgument="<webctrl idx='4' parentid='printinfoficha' tag='TABLE' /><webctrl tableCol='3' tableRow='1' tag='TD' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='TABLE' /><webctrl type='' class='propName-right ' tag='TD' />" Guid="5facd76a-9bee-4d28-9390-2c97f70802dd" InformativeScreenshot="8bf266850bdb8b17aa76588b46b1484d.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="1008, 543, 554, 28" ElementType="Text" FriendlyName="'Walking'" FullSelectorArgument="<webctrl idx='4' parentid='printinfoficha' tag='TABLE' /><webctrl tableRow='1' tag='TD' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='TABLE' /><webctrl type='' tag='TD' class='ficha-pad-text ' aaname='Walking' check:innerText='Walking' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Own transportation'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_22" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[owntransportation]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1653, 571, 238, 28" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'52 %'" FullSelectorArgument="<webctrl idx='4' parentid='printinfoficha' tag='TABLE' /><webctrl tableCol='3' tableRow='2' tag='TD' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='TABLE' /><webctrl type='' class='propName-right ' tag='TD' />" Guid="0ca481ba-aec9-4247-96a6-4c36e06a7a2f" InformativeScreenshot="9b0f18c3f9e845a58f0f4b2433a3e46e.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="1008, 571, 554, 28" ElementType="Text" FriendlyName="'Own transportation'" FullSelectorArgument="<webctrl idx='4' parentid='printinfoficha' tag='TABLE' /><webctrl tableRow='2' tag='TD' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='TABLE' /><webctrl type='' tag='TD' class='ficha-pad-text ' aaname='Own transportation' check:innerText='Own transportation' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<ui:AddDataRow DataRow="{x:Null}" ArrayRow="[{ Name , Community , Province , Municipality , Type , GLA , Address , Telephone , Web , Email , ManagingCompany , LettingCompany , ownership , OperatingSystem , Developer , Yearofopening , Grossfloorspace , Totalshops , exteriorshops , integratedshops , totalfloors , retail , carparking , totalparkingspace , indoorspace , conditionofuse , managementservice , inshops , numberofvisitors , walking , owntransportation , "" , "" , "" , "" ,"" }]" DataTable="[Dt_aecc]" DisplayName="Add Data Row" sap:VirtualizedContainerService.HintSize="530,231.33333333333334" sap2010:WorkflowViewState.IdRef="AddDataRow_1" />
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Tenant Mix'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_26" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[tenant1]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" CvTextArea="1269, 609, 118, 14" CvType="AnyWordGroup" DesignTimeRectangle="1270, 606, 117, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Mercadona 2739'" FullSelectorArgument="<webctrl aaname='Mercadona 2739 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="056d6802-a3eb-4cb0-90bd-4d690610ec3f" InformativeScreenshot="acde1bd3c0781a21e255b369e6a980ce.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="995, 565, 159, 28" CvTextArgument="Tenant Mix" CvType="Text" DesignTimeRectangle="998, 563, 903, 33" ElementType="Text" FriendlyName="'Tenant Mix'" FullSelectorArgument="<webctrl class='registro-btn-red' idx='6' tag='H2' />" FuzzySelectorArgument="<webctrl class='registro-btn-red' type='' tag='H2' aaname='Tenant Mix' check:innerText='Tenant Mix' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(tenant1) = true]" sap:VirtualizedContainerService.HintSize="530,94" sap2010:WorkflowViewState.IdRef="If_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_9">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_10">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_7">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[tenant1]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[System.Text.RegularExpressions.Regex.Match(tenant1,"[^\d.]+").Value]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Tenant Mix'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_27" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[tenantcategory1]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" CvTextArea="996, 608, 270, 19" CvType="AnyWordGroup" DesignTimeRectangle="998, 606, 272, 20" DesignTimeScaleFactor="1" FriendlyName="'Hypermarket (shop'" FullSelectorArgument="<webctrl idx='30' parentid='printinfoficha' tag='B' />" FuzzySelectorArgument="<webctrl type='' parentid='printinfoficha' tag='B' class='' />" Guid="f1bd57a0-c7cc-4232-a61f-c0684c12b38b" InformativeScreenshot="b4bc09d9fbc623d2725bdd46e9445aa6.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="995, 565, 159, 28" CvTextArgument="Tenant Mix" CvType="Text" DesignTimeRectangle="998, 563, 903, 33" ElementType="Text" FriendlyName="'Tenant Mix'" FullSelectorArgument="<webctrl class='registro-btn-red' idx='6' tag='H2' />" FuzzySelectorArgument="<webctrl class='registro-btn-red' type='' tag='H2' aaname='Tenant Mix' check:innerText='Tenant Mix' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(tenantcategory1) = true]" sap:VirtualizedContainerService.HintSize="530,474" sap2010:WorkflowViewState.IdRef="If_12">
<If.Then>
<Sequence DisplayName="Then" sap:VirtualizedContainerService.HintSize="416,101.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_28">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence DisplayName="Else" sap:VirtualizedContainerService.HintSize="496,192.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_27">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,108" sap2010:WorkflowViewState.IdRef="Assign_15">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[tenantcategory1]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[tenantcategory1.Replace("(shop sign and area, m²):","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Tenant Mix'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_28" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[tenantgla1]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" CvTextArea="1269, 609, 118, 14" CvType="AnyWordGroup" DesignTimeRectangle="1270, 606, 117, 20" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Mercadona 2739'" FullSelectorArgument="<webctrl aaname='Mercadona 2739 ' parentid='printinfoficha' tag='SPAN' />" FuzzySelectorArgument="<webctrl parentid='printinfoficha' tag='SPAN' type='' class='' />" Guid="8608b6bf-71af-4810-b9dc-0e991178f34a" InformativeScreenshot="df5409a0b33817104e64f270ba388092.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="995, 565, 159, 28" CvTextArgument="Tenant Mix" CvType="Text" DesignTimeRectangle="998, 563, 903, 33" ElementType="Text" FriendlyName="'Tenant Mix'" FullSelectorArgument="<webctrl class='registro-btn-red' idx='6' tag='H2' />" FuzzySelectorArgument="<webctrl class='registro-btn-red' type='' tag='H2' aaname='Tenant Mix' check:innerText='Tenant Mix' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<If Condition="[string.IsNullOrEmpty(tenantgla1) = true]" sap:VirtualizedContainerService.HintSize="530,94" sap2010:WorkflowViewState.IdRef="If_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap:VirtualizedContainerService.HintSize="300,81.33333333333333" sap2010:WorkflowViewState.IdRef="Sequence_7">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap:VirtualizedContainerService.HintSize="476,172.66666666666666" sap2010:WorkflowViewState.IdRef="Sequence_8">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_8">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[tenantgla1]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[System.Text.RegularExpressions.Regex.Match( tenantgla1, "\d+(\.\d+)?").Value.ToString.Replace(".","")]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</If.Else>
</If>
<ui:AddDataRow DataRow="{x:Null}" ArrayRow="[{ Name , "","","","","","","","","","","","","","","","","","","","","","","","","","","","","","", tenant1 , tenantcategory1 , tenantgla1, "","" }]" DataTable="[Dt_aecc]" DisplayName="Add Data Row" sap:VirtualizedContainerService.HintSize="530,231.33333333333334" sap2010:WorkflowViewState.IdRef="AddDataRow_2" />
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Tenant Mix'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_29" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Table1tenantcategory]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/1" DesignTimeRectangle="1008, 428, 883, 17" DesignTimeScaleFactor="1" ElementType="Text" FriendlyName="'Major retail tenants'" FullSelectorArgument="<webctrl tag='H4' />" FuzzySelectorArgument="<webctrl tag='H4' type='' class='registro-btn-red ficha-pad-text' />" Guid="42816567-87b6-40c6-8f41-1e5c21a9ada3" InformativeScreenshot="92fa06e52f683a377993904e3f11e0e6.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="FuzzySelector" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target DesignTimeRectangle="998, 353, 903, 33" ElementType="Text" FriendlyName="'Tenant Mix'" FullSelectorArgument="<webctrl class='registro-btn-red' idx='6' tag='H2' />" FuzzySelectorArgument="<webctrl class='registro-btn-red' type='' tag='H2' aaname='Tenant Mix' check:innerText='Tenant Mix' />" SearchSteps="FuzzySelector" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NExtractData AppendResults="False" ContinueOnError="True" DataTable="[tenantdt1]" DisplayName="Extract Table Data" ExtractDataSettings="<Table xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' Type='Structured' AddCvHeader='true' IsScrollEnabled='false'>
	<Column xsi:type='DataColumn' Name='Table1tenant' ReferenceName='Column0'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' Name='Table1tenantgla' ReferenceName='Column5'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
</Table>" ExtractMetadata="<extract><row exact='1'><webctrl tag='tr' /></row><column exact='1' name='Column0' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='1' /></column><column exact='1' name='Column5' attr='fulltext'><webctrl tag='tr' /><webctrl tag='td' idx='3' /></column></extract>" sap:VirtualizedContainerService.HintSize="530,200" sap2010:WorkflowViewState.IdRef="NExtractData_1" LimitExtractionTo="None" MaximumResults="0" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" Version="V3">
<uix:NExtractData.Target>
<uix:TargetAnchorable DesignTimeRectangle="1009, 455, 881, 324" DesignTimeScaleFactor="1" FriendlyName="'Worten 2.152 m²'" FullSelectorArgument="<webctrl parentid='printinfoficha' tag='TABLE' /><webctrl tag='TBODY' />" Guid="06085b36-0025-4ce8-a9eb-646db90fc9b0" InformativeScreenshot="1d56168b640c3fefbd6dcdc41576639e.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="Selector" Version="V2" Visibility="Interactive" />
</uix:NExtractData.Target>
</uix:NExtractData>
<ui:ForEachRow ColumnNames="{x:Null}" CurrentIndex="{x:Null}" DataTable="[tenantdt1]" DisplayName="For Each Row in Data Table" sap:VirtualizedContainerService.HintSize="530,94" sap2010:WorkflowViewState.IdRef="ForEachRow_1">
<ui:ForEachRow.Body>
<ActivityAction x:TypeArguments="sd:DataRow">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="sd:DataRow" Name="tenant1row" />
</ActivityAction.Argument>
<Sequence DisplayName="Body" sap:VirtualizedContainerService.HintSize="476,404" sap2010:WorkflowViewState.IdRef="Sequence_4">
<Sequence.Variables>
<Variable x:TypeArguments="x:String" Name="Table1tenantgla" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="434,85.33333333333333" sap2010:WorkflowViewState.IdRef="Assign_9">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[Table1tenantgla]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[tenant1row("Table1tenantgla").ToString.Replace(".","").Replace("m²","")]</InArgument>
</Assign.Value>
</Assign>
<ui:AddDataRow DataRow="{x:Null}" ArrayRow="[{ Name , "","","","","","","","","","","","","","","","","","","","","","","","","","","","","","", tenant1row("Table1tenant") , Table1tenantcategory , Table1tenantgla, "","" }]" DataTable="[Dt_aecc]" DisplayName="Add Data Row" sap:VirtualizedContainerService.HintSize="434,191.33333333333334" sap2010:WorkflowViewState.IdRef="AddDataRow_3" />
</Sequence>
</ActivityAction>
</ui:ForEachRow.Body>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ForEachRow>
<uix:NGetText ContinueOnError="True" DisplayName="Get Text 'Tenant Mix %'" sap:VirtualizedContainerService.HintSize="530,199.33333333333334" sap2010:WorkflowViewState.IdRef="NGetText_30" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" TextString="[Table2tenantcategory]" Version="V3">
<uix:NGetText.Target>
<uix:TargetAnchorable BrowserURL="https://directoriocentroscomerciales.aedecc.com/ficha/53" CvTextArea="1047, 621, 189, 17" CvType="AnyWordGroup" DesignTimeRectangle="1016, 858, 868, 19" DesignTimeScaleFactor="1.125" ElementType="Text" FriendlyName="'Leisure and restaurants'" FullSelectorArgument="<webctrl idx='2' tag='H4' />" FuzzySelectorArgument="<webctrl type='' tag='H4' class='registro-btn-red ficha-pad-text' check:text='' />" Guid="95d2ce37-059e-482a-bae5-c816de3900cb" ImageBase64="" InformativeScreenshot="195a7de37d2765b0b94ddb1779098383.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="Selector, FuzzySelector, CV" Version="V2" Visibility="Interactive">
<uix:TargetAnchorable.Anchors>
<scg:List x:TypeArguments="uix:ITarget" Capacity="1">
<uix:Target CvTextArea="1001, 891, 213, 31" CvTextArgument="Tenant Mix %" CvType="Text" DesignTimeRectangle="1005, 1125, 890, 37" ElementType="Text" FriendlyName="'Tenant Mix %'" FullSelectorArgument="<webctrl class='registro-btn-red' idx='7' tag='H2' />" FuzzySelectorArgument="<webctrl class='registro-btn-red' type='' tag='H2' aaname='Tenant Mix %' check:innerText='Tenant Mix %' />" SearchSteps="FuzzySelector, CV" />
</scg:List>
</uix:TargetAnchorable.Anchors>
</uix:TargetAnchorable>
</uix:NGetText.Target>
</uix:NGetText>
<uix:NExtractData AppendResults="False" ContinueOnError="True" DataTable="[tenantdt2]" DisplayName="Extract Table Data" ExtractDataSettings="<Table xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' Type='Table' AddCvHeader='true' IsScrollEnabled='false'>
	<Column xsi:type='DataColumn' Name='Table2tenant' ReferenceName='Column-0' ReferenceIdx='0'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' IsDeleted='true' Name='Column-1' ReferenceName='Column-1' ReferenceIdx='1'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
	<Column xsi:type='DataColumn' Name='Table2tenantgla' ReferenceName='Column-2' ReferenceIdx='2'>
		<IsValidName>true</IsValidName>
		<ValidationErrorMessage />
		<IsExtra>false</IsExtra>
		<CanExtractSimilar>false</CanExtractSimilar>
		<Format xsi:type='TextColumnFormat' />
	</Column>
</Table>" ExtractMetadata="<extract-table get_columns_name='1' get_empty_columns='1' columns_name_source='Longest'><column name='Column-0' attr='fulltext' /><column name='Column-1' attr='fulltext' /><column name='Column-2' attr='fulltext' /></extract-table>" sap:VirtualizedContainerService.HintSize="530,200" sap2010:WorkflowViewState.IdRef="NExtractData_2" LimitExtractionTo="None" MaximumResults="0" ScopeIdentifier="5e0ba07d-ad75-433b-9b28-fbe11303d85e" Version="V3">
<uix:NExtractData.Target>
<uix:TargetAnchorable DesignTimeRectangle="1008, 624, 883, 342" DesignTimeScaleFactor="1" FriendlyName="'Cinesa (9'" FullSelectorArgument="<webctrl idx='2' parentid='printinfoficha' tag='TABLE' />" Guid="bd9f8113-f06f-4326-a099-acab53c24f3a" InformativeScreenshot="f9d943aaaf7ae825289f09d4b33f51d5.png" ScopeSelectorArgument="<html app='chrome.exe' title='AECC - Directorio de Centros comerciales' />" SearchSteps="Selector" Version="V2" Visibility="Interactive" />
</uix:NExtractData.Target>
</uix:NExtractData>
<ui:ForEachRow ColumnNames="{x:Null}" CurrentIndex="{x:Null}" DataTable="[tenantdt2]" DisplayName="For Each Row in Data Table" sap:VirtualizedContainerService.HintSize="510,54" sap2010:WorkflowViewState.IdRef="ForEachRow_2">
<ui:ForEachRow.Body>
<ActivityAction x:TypeArguments="sd:DataRow">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="sd:DataRow" Name="tenant2row" />
</ActivityAction.Argument>