-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshap_text_plot_sample.html
2869 lines (2862 loc) · 610 KB
/
shap_text_plot_sample.html
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
<br>
<hr style="height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;"">
<div align="center" style="margin-top: -35px;"><div style="display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace">[0]</div>
</div>
<div align='center'>
<script>
document._hover_jyirnklqmmvtrtlwwfrd = '_tp_jyirnklqmmvtrtlwwfrd_output_0';
document._zoom_jyirnklqmmvtrtlwwfrd = undefined;
function _output_onclick_jyirnklqmmvtrtlwwfrd(i) {
var next_id = undefined;
if (document._zoom_jyirnklqmmvtrtlwwfrd !== undefined) {
document.getElementById(document._zoom_jyirnklqmmvtrtlwwfrd+ '_zoom').style.display = 'none';
if (document._zoom_jyirnklqmmvtrtlwwfrd === '_tp_jyirnklqmmvtrtlwwfrd_output_' + i) {
document.getElementById(document._zoom_jyirnklqmmvtrtlwwfrd).style.display = 'block';
document.getElementById(document._zoom_jyirnklqmmvtrtlwwfrd+'_name').style.borderBottom = '3px solid #000000';
} else {
document.getElementById(document._zoom_jyirnklqmmvtrtlwwfrd).style.display = 'none';
document.getElementById(document._zoom_jyirnklqmmvtrtlwwfrd+'_name').style.borderBottom = 'none';
}
}
if (document._zoom_jyirnklqmmvtrtlwwfrd !== '_tp_jyirnklqmmvtrtlwwfrd_output_' + i) {
next_id = '_tp_jyirnklqmmvtrtlwwfrd_output_' + i;
document.getElementById(next_id).style.display = 'none';
document.getElementById(next_id + '_zoom').style.display = 'block';
document.getElementById(next_id+'_name').style.borderBottom = '3px solid #000000';
}
document._zoom_jyirnklqmmvtrtlwwfrd = next_id;
}
function _output_onmouseover_jyirnklqmmvtrtlwwfrd(i, el) {
if (document._zoom_jyirnklqmmvtrtlwwfrd !== undefined) { return; }
if (document._hover_jyirnklqmmvtrtlwwfrd !== undefined) {
document.getElementById(document._hover_jyirnklqmmvtrtlwwfrd + '_name').style.borderBottom = 'none';
document.getElementById(document._hover_jyirnklqmmvtrtlwwfrd).style.display = 'none';
}
document.getElementById('_tp_jyirnklqmmvtrtlwwfrd_output_' + i).style.display = 'block';
el.style.borderBottom = '3px solid #000000';
document._hover_jyirnklqmmvtrtlwwfrd = '_tp_jyirnklqmmvtrtlwwfrd_output_' + i;
}
</script>
<div style="color: rgb(120,120,120); font-size: 12px;">outputs</div>
<div style="display: inline; border-bottom: 3px solid #000000; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px" id="_tp_jyirnklqmmvtrtlwwfrd_output_0_name"
onclick="_output_onclick_jyirnklqmmvtrtlwwfrd(0)"
onmouseover="_output_onmouseover_jyirnklqmmvtrtlwwfrd(0, this);">ENTY</div>
<div style="display: inline; border-bottom: none; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px" id="_tp_jyirnklqmmvtrtlwwfrd_output_1_name"
onclick="_output_onclick_jyirnklqmmvtrtlwwfrd(1)"
onmouseover="_output_onmouseover_jyirnklqmmvtrtlwwfrd(1, this);">HUM</div>
<div style="display: inline; border-bottom: none; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px" id="_tp_jyirnklqmmvtrtlwwfrd_output_2_name"
onclick="_output_onclick_jyirnklqmmvtrtlwwfrd(2)"
onmouseover="_output_onmouseover_jyirnklqmmvtrtlwwfrd(2, this);">DESC</div>
<div style="display: inline; border-bottom: none; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px" id="_tp_jyirnklqmmvtrtlwwfrd_output_3_name"
onclick="_output_onclick_jyirnklqmmvtrtlwwfrd(3)"
onmouseover="_output_onmouseover_jyirnklqmmvtrtlwwfrd(3, this);">NUM</div>
<div style="display: inline; border-bottom: none; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px" id="_tp_jyirnklqmmvtrtlwwfrd_output_4_name"
onclick="_output_onclick_jyirnklqmmvtrtlwwfrd(4)"
onmouseover="_output_onmouseover_jyirnklqmmvtrtlwwfrd(4, this);">LOC</div>
<div style="display: inline; border-bottom: none; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px" id="_tp_jyirnklqmmvtrtlwwfrd_output_5_name"
onclick="_output_onclick_jyirnklqmmvtrtlwwfrd(5)"
onmouseover="_output_onmouseover_jyirnklqmmvtrtlwwfrd(5, this);">ABBR</div><br><br><div id='_tp_jyirnklqmmvtrtlwwfrd_output_0' style='display: block';><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.24586820139849%" y1="33" x2="49.24586820139849%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.24586820139849%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="35.7403115623143%" y1="33" x2="35.7403115623143%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="35.7403115623143%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="22.23475492323011%" y1="33" x2="22.23475492323011%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="22.23475492323011%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.4</text><line x1="8.729198284145916%" y1="33" x2="8.729198284145916%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.729198284145916%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.7</text><line x1="62.751424840482684%" y1="33" x2="62.751424840482684%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="62.751424840482684%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="76.25698147956687%" y1="33" x2="76.25698147956687%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="76.25698147956687%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="89.76253811865105%" y1="33" x2="89.76253811865105%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="89.76253811865105%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">1.1</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">ENTY</tspan>(inputs)</text><rect x="29.822965980808096%" width="10.419197794534268%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="34.955201274156444%" x2="40.24216377534236%" y1="60" y2="60" id="_fb_vswfbahmplcvqylsjomy_ind_3" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="37.59868252474941%" y="71" font-size="12px" id="_fs_vswfbahmplcvqylsjomy_ind_3" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.117</text><svg x="34.955201274156444%" y="40" height="20" width="5.2869625011859185%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">White</text> </svg></svg><line x1="29.822965980808096%" x2="34.955201274156444%" y1="60" y2="60" id="_fb_vswfbahmplcvqylsjomy_ind_2" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="32.38908362748227%" y="71" font-size="12px" id="_fs_vswfbahmplcvqylsjomy_ind_2" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.114</text><svg x="29.822965980808096%" y="40" height="20" width="5.132235293348348%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">the</text> </svg></svg><g transform="translate(0,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(4,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(6,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-6,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="34.955201274156444%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><rect transform="translate(-8,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="29.822965980808096%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-1.5,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255, 195, 213);stroke-width:2" /> </svg></g><rect x="34.955201274156444%" y="40" height="20" width="5.2869625011859185%" onmouseover="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_3').style.opacity = 1;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_3').style.opacity = 1;" onmouseout="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_3').style.textDecoration = 'none';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_3').style.opacity = 0;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_3').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="29.822965980808096%" y="40" height="20" width="5.132235293348348%" onmouseover="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_2').style.opacity = 1;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_2').style.opacity = 1;" onmouseout="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_2').style.textDecoration = 'none';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_2').style.opacity = 0;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_2').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="40.24216377534236%" width="10.419197794534268%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="40.24216377534236%" x2="50.44150700090509%" y1="60" y2="60" id="_fb_vswfbahmplcvqylsjomy_ind_0" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="45.34183538812373%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_vswfbahmplcvqylsjomy_ind_0" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.227</text><svg x="40.24216377534236%" y="40" height="20" width="10.199343225562728%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">Where</text> </svg></svg><line x1="50.44150700090509%" x2="50.66136156987663%" y1="60" y2="60" id="_fb_vswfbahmplcvqylsjomy_ind_1" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="50.55143428539086%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_vswfbahmplcvqylsjomy_ind_1" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.005</text><svg x="50.44150700090509%" y="40" height="20" width="0.21985456897154165%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">is</text> </svg></svg><g transform="translate(-8,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><rect transform="translate(0,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="50.66136156987663%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-6.0,0)"> <svg x="50.44150700090509%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="40.24216377534236%" y="40" height="20" width="10.199343225562728%" onmouseover="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_0').style.opacity = 1;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_0').style.opacity = 1;" onmouseout="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_0').style.textDecoration = 'none';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_0').style.opacity = 0;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_0').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="50.44150700090509%" y="40" height="20" width="0.21985456897154165%" onmouseover="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_1').style.opacity = 1;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_1').style.opacity = 1;" onmouseout="document.getElementById('_tp_vswfbahmplcvqylsjomy_ind_1').style.textDecoration = 'none';document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_1').style.opacity = 0;document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_1').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.227</div
><div id='_tp_vswfbahmplcvqylsjomy_ind_0'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21960784313725487); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_0').style.opacity = 1; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_0').style.opacity = 0; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div
><div id='_tp_vswfbahmplcvqylsjomy_ind_1'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_1').style.opacity = 1; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_1').style.opacity = 0; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.114</div
><div id='_tp_vswfbahmplcvqylsjomy_ind_2'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.10924935630817992); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_2').style.opacity = 1; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_2').style.opacity = 0; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.117</div
><div id='_tp_vswfbahmplcvqylsjomy_ind_3'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1171321053673995); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_3').style.opacity = 1; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_3').style.opacity = 0; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_vswfbahmplcvqylsjomy_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_4').style.opacity = 1; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_4').style.opacity = 0; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_vswfbahmplcvqylsjomy_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_5').style.opacity = 1; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_vswfbahmplcvqylsjomy_ind_5').style.opacity = 0; document.getElementById('_fs_vswfbahmplcvqylsjomy_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_0_zoom' style='display: none;'><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.999999099848296%" y1="33" x2="49.999999099848296%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.999999099848296%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="31.996965098106102%" y1="33" x2="31.996965098106102%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="31.996965098106102%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="13.993931096363905%" y1="33" x2="13.993931096363905%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="13.993931096363905%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.2</text><line x1="68.00303310159049%" y1="33" x2="68.00303310159049%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="68.00303310159049%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.1</text><line x1="86.00606710333268%" y1="33" x2="86.00606710333268%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="86.00606710333268%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="49.999999099848296%" y1="33" x2="49.999999099848296%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.999999099848296%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="49.999999099848296%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="49.999999099848296%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="49.999999099848296%" y1="33" x2="49.999999099848296%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.999999099848296%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="49.999999099848296%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="49.999999099848296%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">ENTY</tspan>(inputs)</text><rect x="8.333333183308048%" width="41.666665916540246%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="28.85728690700077%" x2="49.999999099848296%" y1="60" y2="60" id="_fb_incnpfsiysxgsavnmssp_ind_3" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="39.42864300342453%" y="71" font-size="12px" id="_fs_incnpfsiysxgsavnmssp_ind_3" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.117</text><svg x="28.85728690700077%" y="40" height="20" width="21.142712192847526%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">White</text> </svg></svg><line x1="8.333333183308048%" x2="28.85728690700077%" y1="60" y2="60" id="_fb_incnpfsiysxgsavnmssp_ind_2" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="18.59531004515441%" y="71" font-size="12px" id="_fs_incnpfsiysxgsavnmssp_ind_2" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.114</text><svg x="8.333333183308048%" y="40" height="20" width="20.52395372369272%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">the</text> </svg></svg><g transform="translate(0,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(4,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(6,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-6,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="28.85728690700077%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><rect transform="translate(-8,0)" x="49.999999099848296%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="8.333333183308048%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-1.5,0)"> <svg x="49.999999099848296%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255, 195, 213);stroke-width:2" /> </svg></g><rect x="28.85728690700077%" y="40" height="20" width="21.142712192847526%" onmouseover="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_3').style.opacity = 1;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_3').style.opacity = 1;" onmouseout="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_3').style.textDecoration = 'none';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_3').style.opacity = 0;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_3').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="8.333333183308048%" y="40" height="20" width="20.52395372369272%" onmouseover="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_2').style.opacity = 1;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_2').style.opacity = 1;" onmouseout="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_2').style.textDecoration = 'none';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_2').style.opacity = 0;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_2').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="49.999999099848296%" width="41.666665916540246%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="49.999999099848296%" x2="90.78746039274972%" y1="60" y2="60" id="_fb_incnpfsiysxgsavnmssp_ind_0" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="70.39372974629902%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_incnpfsiysxgsavnmssp_ind_0" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.227</text><svg x="49.999999099848296%" y="40" height="20" width="40.787461292901426%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">Where</text> </svg></svg><line x1="90.78746039274972%" x2="91.66666501638856%" y1="60" y2="60" id="_fb_incnpfsiysxgsavnmssp_ind_1" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="91.22706270456914%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_incnpfsiysxgsavnmssp_ind_1" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.005</text><svg x="90.78746039274972%" y="40" height="20" width="0.8792046236388416%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">is</text> </svg></svg><g transform="translate(-8,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><rect transform="translate(0,0)" x="49.999999099848296%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="91.66666501638856%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-6.0,0)"> <svg x="90.78746039274972%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="49.999999099848296%" y="40" height="20" width="40.787461292901426%" onmouseover="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_0').style.opacity = 1;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_0').style.opacity = 1;" onmouseout="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_0').style.textDecoration = 'none';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_0').style.opacity = 0;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_0').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="90.78746039274972%" y="40" height="20" width="0.8792046236388416%" onmouseover="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_1').style.opacity = 1;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_1').style.opacity = 1;" onmouseout="document.getElementById('_tp_incnpfsiysxgsavnmssp_ind_1').style.textDecoration = 'none';document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_1').style.opacity = 0;document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_1').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.227</div
><div id='_tp_incnpfsiysxgsavnmssp_ind_0'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_0').style.opacity = 1; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_0').style.opacity = 0; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div
><div id='_tp_incnpfsiysxgsavnmssp_ind_1'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_1').style.opacity = 1; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_1').style.opacity = 0; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.114</div
><div id='_tp_incnpfsiysxgsavnmssp_ind_2'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5033868092691621); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_2').style.opacity = 1; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_2').style.opacity = 0; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.117</div
><div id='_tp_incnpfsiysxgsavnmssp_ind_3'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5191523073876015); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_3').style.opacity = 1; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_3').style.opacity = 0; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_incnpfsiysxgsavnmssp_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_4').style.opacity = 1; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_4').style.opacity = 0; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_incnpfsiysxgsavnmssp_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_5').style.opacity = 1; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_incnpfsiysxgsavnmssp_ind_5').style.opacity = 0; document.getElementById('_fs_incnpfsiysxgsavnmssp_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_1' style='display: none';><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.24586820139849%" y1="33" x2="49.24586820139849%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.24586820139849%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="35.7403115623143%" y1="33" x2="35.7403115623143%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="35.7403115623143%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="22.23475492323011%" y1="33" x2="22.23475492323011%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="22.23475492323011%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.4</text><line x1="8.729198284145916%" y1="33" x2="8.729198284145916%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.729198284145916%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.7</text><line x1="62.751424840482684%" y1="33" x2="62.751424840482684%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="62.751424840482684%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="76.25698147956687%" y1="33" x2="76.25698147956687%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="76.25698147956687%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="89.76253811865105%" y1="33" x2="89.76253811865105%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="89.76253811865105%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">1.1</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">HUM</tspan>(inputs)</text><rect x="40.24216377534236%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="40.24216377534236%" width="-0.0%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(0,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_bthampwcgzukzzofjvmb_ind_0'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_0').style.opacity = 1; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_0').style.opacity = 0; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_bthampwcgzukzzofjvmb_ind_1'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_1').style.opacity = 1; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_1').style.opacity = 0; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_bthampwcgzukzzofjvmb_ind_2'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_2').style.opacity = 1; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_2').style.opacity = 0; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_bthampwcgzukzzofjvmb_ind_3'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_3').style.opacity = 1; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_3').style.opacity = 0; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_bthampwcgzukzzofjvmb_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_4').style.opacity = 1; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_4').style.opacity = 0; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_bthampwcgzukzzofjvmb_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_5').style.opacity = 1; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_bthampwcgzukzzofjvmb_ind_5').style.opacity = 0; document.getElementById('_fs_bthampwcgzukzzofjvmb_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_1_zoom' style='display: none;'><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">HUM</tspan>(inputs)</text><rect x="0.0%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="0.0%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="0.0%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="0.0%" width="-0.0%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(0,0)" x="0.0%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="0.0%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_kaqjjcmngtwfldbiclpu_ind_0'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_0').style.opacity = 1; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_0').style.opacity = 0; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_kaqjjcmngtwfldbiclpu_ind_1'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_1').style.opacity = 1; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_1').style.opacity = 0; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_kaqjjcmngtwfldbiclpu_ind_2'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_2').style.opacity = 1; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_2').style.opacity = 0; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_kaqjjcmngtwfldbiclpu_ind_3'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_3').style.opacity = 1; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_3').style.opacity = 0; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_kaqjjcmngtwfldbiclpu_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_4').style.opacity = 1; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_4').style.opacity = 0; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_kaqjjcmngtwfldbiclpu_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_5').style.opacity = 1; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_kaqjjcmngtwfldbiclpu_ind_5').style.opacity = 0; document.getElementById('_fs_kaqjjcmngtwfldbiclpu_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_2' style='display: none';><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.24586820139849%" y1="33" x2="49.24586820139849%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.24586820139849%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="35.7403115623143%" y1="33" x2="35.7403115623143%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="35.7403115623143%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="22.23475492323011%" y1="33" x2="22.23475492323011%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="22.23475492323011%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.4</text><line x1="8.729198284145916%" y1="33" x2="8.729198284145916%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.729198284145916%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.7</text><line x1="62.751424840482684%" y1="33" x2="62.751424840482684%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="62.751424840482684%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="76.25698147956687%" y1="33" x2="76.25698147956687%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="76.25698147956687%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="89.76253811865105%" y1="33" x2="89.76253811865105%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="89.76253811865105%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">1.1</text><line x1="79.19933402511889%" y1="33" x2="79.19933402511889%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="79.19933402511889%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0.865359</text><text x="79.19933402511889%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.865359</text><text x="79.19933402511889%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">DESC</tspan>(inputs)</text><rect x="40.24216377534236%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="40.24216377534236%" width="38.957170249776524%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="40.24216377534236%" x2="49.9814563377865%" y1="60" y2="60" id="_fb_cdwnncyqhvedxsblllzl_ind_4" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="45.11181005656443%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_cdwnncyqhvedxsblllzl_ind_4" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.216</text><svg x="40.24216377534236%" y="40" height="20" width="9.739292562444135%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">House</text> </svg></svg><line x1="49.9814563377865%" x2="59.720748900230625%" y1="60" y2="60" id="_fb_cdwnncyqhvedxsblllzl_ind_5" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="54.85110261900856%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_cdwnncyqhvedxsblllzl_ind_5" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.216</text><svg x="49.9814563377865%" y="40" height="20" width="9.739292562444128%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">located</text> </svg></svg><line x1="59.720748900230625%" x2="69.31752903111784%" y1="60" y2="60" id="_fb_cdwnncyqhvedxsblllzl_ind_0" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="64.51913896567423%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_cdwnncyqhvedxsblllzl_ind_0" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.213</text><svg x="59.720748900230625%" y="40" height="20" width="9.596780130887218%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">Where</text> </svg></svg><line x1="69.31752903111784%" x2="74.1871753123399%" y1="60" y2="60" id="_fb_cdwnncyqhvedxsblllzl_ind_2" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="71.75235217172887%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_cdwnncyqhvedxsblllzl_ind_2" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.108</text><svg x="69.31752903111784%" y="40" height="20" width="4.86964628122206%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">the</text> </svg></svg><line x1="74.1871753123399%" x2="79.05682159356198%" y1="60" y2="60" id="_fb_cdwnncyqhvedxsblllzl_ind_3" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="76.62199845295095%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_cdwnncyqhvedxsblllzl_ind_3" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.108</text><svg x="74.1871753123399%" y="40" height="20" width="4.869646281222074%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">White</text> </svg></svg><line x1="79.05682159356198%" x2="79.19933402511889%" y1="60" y2="60" id="_fb_cdwnncyqhvedxsblllzl_ind_1" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="79.12807780934043%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_cdwnncyqhvedxsblllzl_ind_1" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.003</text><svg x="79.05682159356198%" y="40" height="20" width="0.1425124315569093%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">is</text> </svg></svg><g transform="translate(-8,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><rect transform="translate(0,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="79.19933402511889%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-6.0,0)"> <svg x="49.9814563377865%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="40.24216377534236%" y="40" height="20" width="9.739292562444135%" onmouseover="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 1;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 1;" onmouseout="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_4').style.textDecoration = 'none';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 0;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="59.720748900230625%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="49.9814563377865%" y="40" height="20" width="9.739292562444128%" onmouseover="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 1;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 1;" onmouseout="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_5').style.textDecoration = 'none';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 0;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="69.31752903111784%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="59.720748900230625%" y="40" height="20" width="9.596780130887218%" onmouseover="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 1;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 1;" onmouseout="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_0').style.textDecoration = 'none';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 0;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="74.1871753123399%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="69.31752903111784%" y="40" height="20" width="4.86964628122206%" onmouseover="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 1;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 1;" onmouseout="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_2').style.textDecoration = 'none';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 0;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="79.05682159356198%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="74.1871753123399%" y="40" height="20" width="4.869646281222074%" onmouseover="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 1;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 1;" onmouseout="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_3').style.textDecoration = 'none';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 0;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="79.05682159356198%" y="40" height="20" width="0.1425124315569093%" onmouseover="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 1;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 1;" onmouseout="document.getElementById('_tp_cdwnncyqhvedxsblllzl_ind_1').style.textDecoration = 'none';document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 0;document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.213</div
><div id='_tp_cdwnncyqhvedxsblllzl_ind_0'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 1; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 0; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div
><div id='_tp_cdwnncyqhvedxsblllzl_ind_1'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 1; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 0; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.108</div
><div id='_tp_cdwnncyqhvedxsblllzl_ind_2'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 1; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 0; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.108</div
><div id='_tp_cdwnncyqhvedxsblllzl_ind_3'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 1; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 0; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216</div
><div id='_tp_cdwnncyqhvedxsblllzl_ind_4'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 1; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 0; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216</div
><div id='_tp_cdwnncyqhvedxsblllzl_ind_5'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 1; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 0; document.getElementById('_fs_cdwnncyqhvedxsblllzl_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_2_zoom' style='display: none;'><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="46.85300447844654%" y1="33" x2="46.85300447844654%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="46.85300447844654%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.4</text><line x1="37.22308667210592%" y1="33" x2="37.22308667210592%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="37.22308667210592%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.3</text><line x1="27.593168865765282%" y1="33" x2="27.593168865765282%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="27.593168865765282%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="17.963251059424646%" y1="33" x2="17.963251059424646%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="17.963251059424646%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.1</text><line x1="8.33333325308402%" y1="33" x2="8.33333325308402%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.33333325308402%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="56.48292228478717%" y1="33" x2="56.48292228478717%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="56.48292228478717%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="66.11284009112782%" y1="33" x2="66.11284009112782%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="66.11284009112782%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.6</text><line x1="75.74275789746844%" y1="33" x2="75.74275789746844%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="75.74275789746844%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.7</text><line x1="85.37267570380907%" y1="33" x2="85.37267570380907%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="85.37267570380907%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="91.6666657839242%" y1="33" x2="91.6666657839242%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="91.6666657839242%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0.865359</text><text x="91.6666657839242%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.865359</text><text x="91.6666657839242%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="8.33333325308402%" y1="33" x2="8.33333325308402%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.33333325308402%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="8.33333325308402%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="8.33333325308402%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">DESC</tspan>(inputs)</text><rect x="8.33333325308402%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="8.33333325308402%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="8.33333325308402%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="8.33333325308402%" width="83.33333253084018%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="8.33333325308402%" x2="29.166666385794066%" y1="60" y2="60" id="_fb_fzbdjjkcoqwmeqsghuxo_ind_4" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="18.749999819439044%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_fzbdjjkcoqwmeqsghuxo_ind_4" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.216</text><svg x="8.33333325308402%" y="40" height="20" width="20.833333132710045%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">House</text> </svg></svg><line x1="29.166666385794066%" x2="49.99999951850411%" y1="60" y2="60" id="_fb_fzbdjjkcoqwmeqsghuxo_ind_5" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="39.58333295214909%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_fzbdjjkcoqwmeqsghuxo_ind_5" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.216</text><svg x="29.166666385794066%" y="40" height="20" width="20.833333132710045%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">located</text> </svg></svg><line x1="49.99999951850411%" x2="70.52848412724369%" y1="60" y2="60" id="_fb_fzbdjjkcoqwmeqsghuxo_ind_0" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="60.2642418228739%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_fzbdjjkcoqwmeqsghuxo_ind_0" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.213</text><svg x="49.99999951850411%" y="40" height="20" width="20.528484608739575%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">Where</text> </svg></svg><line x1="70.52848412724369%" x2="80.9451506935987%" y1="60" y2="60" id="_fb_fzbdjjkcoqwmeqsghuxo_ind_2" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="75.7368174104212%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_fzbdjjkcoqwmeqsghuxo_ind_2" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.108</text><svg x="70.52848412724369%" y="40" height="20" width="10.416666566355019%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">the</text> </svg></svg><line x1="80.9451506935987%" x2="91.36181725995374%" y1="60" y2="60" id="_fb_fzbdjjkcoqwmeqsghuxo_ind_3" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="86.15348397677622%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_fzbdjjkcoqwmeqsghuxo_ind_3" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.108</text><svg x="80.9451506935987%" y="40" height="20" width="10.416666566355033%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">White</text> </svg></svg><line x1="91.36181725995374%" x2="91.6666657839242%" y1="60" y2="60" id="_fb_fzbdjjkcoqwmeqsghuxo_ind_1" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="91.51424152193897%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_fzbdjjkcoqwmeqsghuxo_ind_1" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.003</text><svg x="91.36181725995374%" y="40" height="20" width="0.30484852397046325%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">is</text> </svg></svg><g transform="translate(-8,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><rect transform="translate(0,0)" x="8.33333325308402%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="91.6666657839242%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-6.0,0)"> <svg x="29.166666385794066%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="8.33333325308402%" y="40" height="20" width="20.833333132710045%" onmouseover="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 1;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 1;" onmouseout="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_4').style.textDecoration = 'none';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 0;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="49.99999951850411%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="29.166666385794066%" y="40" height="20" width="20.833333132710045%" onmouseover="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 1;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 1;" onmouseout="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_5').style.textDecoration = 'none';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 0;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="70.52848412724369%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="49.99999951850411%" y="40" height="20" width="20.528484608739575%" onmouseover="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 1;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 1;" onmouseout="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 0;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="80.9451506935987%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="70.52848412724369%" y="40" height="20" width="10.416666566355019%" onmouseover="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 1;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 1;" onmouseout="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 0;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="91.36181725995374%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="80.9451506935987%" y="40" height="20" width="10.416666566355033%" onmouseover="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 1;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 1;" onmouseout="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 0;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="91.36181725995374%" y="40" height="20" width="0.30484852397046325%" onmouseover="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 1;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 1;" onmouseout="document.getElementById('_tp_fzbdjjkcoqwmeqsghuxo_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 0;document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.213</div
><div id='_tp_fzbdjjkcoqwmeqsghuxo_ind_0'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9921172509407804); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 1; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 0; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div
><div id='_tp_fzbdjjkcoqwmeqsghuxo_ind_1'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 1; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 0; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.108</div
><div id='_tp_fzbdjjkcoqwmeqsghuxo_ind_2'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4955040602099425); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 1; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 0; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.108</div
><div id='_tp_fzbdjjkcoqwmeqsghuxo_ind_3'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4955040602099425); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 1; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 0; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216</div
><div id='_tp_fzbdjjkcoqwmeqsghuxo_ind_4'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 1; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 0; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.216</div
><div id='_tp_fzbdjjkcoqwmeqsghuxo_ind_5'
style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 1; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 0; document.getElementById('_fs_fzbdjjkcoqwmeqsghuxo_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_3' style='display: none';><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.24586820139849%" y1="33" x2="49.24586820139849%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.24586820139849%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="35.7403115623143%" y1="33" x2="35.7403115623143%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="35.7403115623143%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="22.23475492323011%" y1="33" x2="22.23475492323011%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="22.23475492323011%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.4</text><line x1="8.729198284145916%" y1="33" x2="8.729198284145916%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.729198284145916%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.7</text><line x1="62.751424840482684%" y1="33" x2="62.751424840482684%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="62.751424840482684%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="76.25698147956687%" y1="33" x2="76.25698147956687%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="76.25698147956687%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="89.76253811865105%" y1="33" x2="89.76253811865105%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="89.76253811865105%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">1.1</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">NUM</tspan>(inputs)</text><rect x="40.24216377534236%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="40.24216377534236%" width="-0.0%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(0,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_spguaorvapgkjjutdzmp_ind_0'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_0').style.opacity = 1; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_0').style.opacity = 0; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_spguaorvapgkjjutdzmp_ind_1'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_1').style.opacity = 1; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_1').style.opacity = 0; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_spguaorvapgkjjutdzmp_ind_2'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_2').style.opacity = 1; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_2').style.opacity = 0; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_spguaorvapgkjjutdzmp_ind_3'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_3').style.opacity = 1; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_3').style.opacity = 0; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_spguaorvapgkjjutdzmp_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_4').style.opacity = 1; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_4').style.opacity = 0; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_spguaorvapgkjjutdzmp_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_5').style.opacity = 1; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_spguaorvapgkjjutdzmp_ind_5').style.opacity = 0; document.getElementById('_fs_spguaorvapgkjjutdzmp_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_3_zoom' style='display: none;'><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">NUM</tspan>(inputs)</text><rect x="0.0%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="0.0%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="0.0%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="0.0%" width="-0.0%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(0,0)" x="0.0%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="0.0%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_xhwjbkyfxpoxfadsiedy_ind_0'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_0').style.opacity = 1; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_0').style.opacity = 0; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_xhwjbkyfxpoxfadsiedy_ind_1'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_1').style.opacity = 1; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_1').style.opacity = 0; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_xhwjbkyfxpoxfadsiedy_ind_2'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_2').style.opacity = 1; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_2').style.opacity = 0; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_xhwjbkyfxpoxfadsiedy_ind_3'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_3').style.opacity = 1; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_3').style.opacity = 0; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_xhwjbkyfxpoxfadsiedy_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_4').style.opacity = 1; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_4').style.opacity = 0; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_xhwjbkyfxpoxfadsiedy_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_5').style.opacity = 1; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_xhwjbkyfxpoxfadsiedy_ind_5').style.opacity = 0; document.getElementById('_fs_xhwjbkyfxpoxfadsiedy_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_4' style='display: none';><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.24586820139849%" y1="33" x2="49.24586820139849%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.24586820139849%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="35.7403115623143%" y1="33" x2="35.7403115623143%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="35.7403115623143%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="22.23475492323011%" y1="33" x2="22.23475492323011%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="22.23475492323011%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.4</text><line x1="8.729198284145916%" y1="33" x2="8.729198284145916%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.729198284145916%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.7</text><line x1="62.751424840482684%" y1="33" x2="62.751424840482684%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="62.751424840482684%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="76.25698147956687%" y1="33" x2="76.25698147956687%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="76.25698147956687%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="89.76253811865105%" y1="33" x2="89.76253811865105%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="89.76253811865105%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">1.1</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="85.26065370586676%" y1="33" x2="85.26065370586676%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="85.26065370586676%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0.999999</text><text x="85.26065370586676%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0.999999</text><text x="85.26065370586676%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">LOC</tspan>(inputs)</text><rect x="40.13190979749642%" width="45.12874390837034%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="62.64106084680293%" x2="85.26065370586676%" y1="60" y2="60" id="_fb_nrsxdbvoayqrrqfyxrhc_ind_0" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="73.95085727633484%" y="71" font-size="12px" id="_fs_nrsxdbvoayqrrqfyxrhc_ind_0" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.502</text><svg x="62.64106084680293%" y="40" height="20" width="22.61959285906383%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">Where</text> </svg></svg><line x1="50.92357693066489%" x2="62.64106084680293%" y1="60" y2="60" id="_fb_nrsxdbvoayqrrqfyxrhc_ind_5" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="56.78231888873391%" y="71" font-size="12px" id="_fs_nrsxdbvoayqrrqfyxrhc_ind_5" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.26</text><svg x="50.92357693066489%" y="40" height="20" width="11.717483916138036%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">located</text> </svg></svg><line x1="40.13190979749642%" x2="50.92357693066489%" y1="60" y2="60" id="_fb_nrsxdbvoayqrrqfyxrhc_ind_4" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="45.527743364080656%" y="71" font-size="12px" id="_fs_nrsxdbvoayqrrqfyxrhc_ind_4" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.24</text><svg x="40.13190979749642%" y="40" height="20" width="10.791667133168474%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">House</text> </svg></svg><g transform="translate(0,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(4,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(6,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-6,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(4,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(6,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-6,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="50.92357693066489%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><rect transform="translate(-8,0)" x="85.26065370586676%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="40.13190979749642%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-1.5,0)"> <svg x="85.26065370586676%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255, 195, 213);stroke-width:2" /> </svg></g><rect x="62.64106084680293%" y="40" height="20" width="22.61959285906383%" onmouseover="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 1;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 1;" onmouseout="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_0').style.textDecoration = 'none';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 0;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-1.5,0)"> <svg x="62.64106084680293%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255, 195, 213);stroke-width:2" /> </svg></g><rect x="50.92357693066489%" y="40" height="20" width="11.717483916138036%" onmouseover="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 1;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 1;" onmouseout="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_5').style.textDecoration = 'none';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 0;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="40.13190979749642%" y="40" height="20" width="10.791667133168474%" onmouseover="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 1;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 1;" onmouseout="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_4').style.textDecoration = 'none';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 0;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="85.26065370586676%" width="0.1102539778459411%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="85.26065370586676%" x2="85.31963829266995%" y1="60" y2="60" id="_fb_nrsxdbvoayqrrqfyxrhc_ind_1" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="85.29014599926836%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_nrsxdbvoayqrrqfyxrhc_ind_1" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.001</text><svg x="85.26065370586676%" y="40" height="20" width="0.05898458680319152%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">is</text> </svg></svg><line x1="85.31963829266995%" x2="85.34530250463455%" y1="60" y2="60" id="_fb_nrsxdbvoayqrrqfyxrhc_ind_2" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="85.33247039865225%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_nrsxdbvoayqrrqfyxrhc_ind_2" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.001</text><svg x="85.31963829266995%" y="40" height="20" width="0.025664211964596007%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">the</text> </svg></svg><line x1="85.34530250463455%" x2="85.3709076837127%" y1="60" y2="60" id="_fb_nrsxdbvoayqrrqfyxrhc_ind_3" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="85.35810509417362%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_nrsxdbvoayqrrqfyxrhc_ind_3" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.001</text><svg x="85.34530250463455%" y="40" height="20" width="0.025605179078155516%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">White</text> </svg></svg><g transform="translate(-8,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><rect transform="translate(0,0)" x="85.26065370586676%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="85.3709076837127%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-6.0,0)"> <svg x="85.31963829266995%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="85.26065370586676%" y="40" height="20" width="0.05898458680319152%" onmouseover="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 1;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 1;" onmouseout="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_1').style.textDecoration = 'none';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 0;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="85.34530250463455%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="85.31963829266995%" y="40" height="20" width="0.025664211964596007%" onmouseover="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 1;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 1;" onmouseout="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_2').style.textDecoration = 'none';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 0;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="85.34530250463455%" y="40" height="20" width="0.025605179078155516%" onmouseover="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 1;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 1;" onmouseout="document.getElementById('_tp_nrsxdbvoayqrrqfyxrhc_ind_3').style.textDecoration = 'none';document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 0;document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.502</div
><div id='_tp_nrsxdbvoayqrrqfyxrhc_ind_0'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5033868092691621); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 1; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 0; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div
><div id='_tp_nrsxdbvoayqrrqfyxrhc_ind_1'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 1; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 0; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div
><div id='_tp_nrsxdbvoayqrrqfyxrhc_ind_2'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 1; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 0; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div
><div id='_tp_nrsxdbvoayqrrqfyxrhc_ind_3'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 1; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 0; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.24</div
><div id='_tp_nrsxdbvoayqrrqfyxrhc_ind_4'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.23537334125569415); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 1; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 0; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.26</div
><div id='_tp_nrsxdbvoayqrrqfyxrhc_ind_5'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.2590215884333532); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 1; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 0; document.getElementById('_fs_nrsxdbvoayqrrqfyxrhc_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_4_zoom' style='display: none;'><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="50.000029242442224%" y1="33" x2="50.000029242442224%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="50.000029242442224%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="33.41458900266509%" y1="33" x2="33.41458900266509%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="33.41458900266509%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.3</text><line x1="16.82914876288796%" y1="33" x2="16.82914876288796%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="16.82914876288796%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.1</text><line x1="66.58546948221935%" y1="33" x2="66.58546948221935%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="66.58546948221935%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.7</text><line x1="83.17090972199648%" y1="33" x2="83.17090972199648%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="83.17090972199648%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.9</text><line x1="8.536428642999397%" y1="33" x2="8.536428642999397%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.536428642999397%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="8.536428642999397%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="8.536428642999397%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="91.46357052772859%" y1="33" x2="91.46357052772859%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="91.46357052772859%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0.999999</text><text x="91.46357052772859%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0.999999</text><text x="91.46357052772859%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">LOC</tspan>(inputs)</text><rect x="8.333333264227335%" width="83.13023726350127%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="49.796731206969%" x2="91.46357052772859%" y1="60" y2="60" id="_fb_yfmhsjntgpcjtohelwoa_ind_0" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="70.63015086734879%" y="71" font-size="12px" id="_fs_yfmhsjntgpcjtohelwoa_ind_0" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.502</text><svg x="49.796731206969%" y="40" height="20" width="41.66683932075959%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">Where</text> </svg></svg><line x1="28.212323272691314%" x2="49.796731206969%" y1="60" y2="60" id="_fb_yfmhsjntgpcjtohelwoa_ind_5" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="39.00452723983015%" y="71" font-size="12px" id="_fs_yfmhsjntgpcjtohelwoa_ind_5" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.26</text><svg x="28.212323272691314%" y="40" height="20" width="21.584407934277685%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">located</text> </svg></svg><line x1="8.333333264227335%" x2="28.212323272691314%" y1="60" y2="60" id="_fb_yfmhsjntgpcjtohelwoa_ind_4" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0"/><text x="18.272828268459325%" y="71" font-size="12px" id="_fs_yfmhsjntgpcjtohelwoa_ind_4" fill="rgb(255.0, 0.0, 81.08083606031792)" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">0.24</text><svg x="8.333333264227335%" y="40" height="20" width="19.87899000846398%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">House</text> </svg></svg><g transform="translate(0,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(4,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(6,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-6,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(4,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(6,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-6,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="28.212323272691314%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2" /> </svg></g><rect transform="translate(-8,0)" x="91.46357052772859%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="8.333333264227335%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-1.5,0)"> <svg x="91.46357052772859%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255, 195, 213);stroke-width:2" /> </svg></g><rect x="49.796731206969%" y="40" height="20" width="41.66683932075959%" onmouseover="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 1;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 1;" onmouseout="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_0').style.textDecoration = 'none';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 0;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-1.5,0)"> <svg x="49.796731206969%" y="40" height="18" overflow="visible" width="30"> <path d="M 0 -9 l 6 18 L 0 25" fill="none" style="stroke:rgb(255, 195, 213);stroke-width:2" /> </svg></g><rect x="28.212323272691314%" y="40" height="20" width="21.584407934277685%" onmouseover="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 1;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 1;" onmouseout="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_5').style.textDecoration = 'none';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 0;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="8.333333264227335%" y="40" height="20" width="19.87899000846398%" onmouseover="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 1;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 1;" onmouseout="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_4').style.textDecoration = 'none';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 0;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="91.46357052772859%" width="0.20309537877206282%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><line x1="91.46357052772859%" x2="91.57222417662683%" y1="60" y2="60" id="_fb_yfmhsjntgpcjtohelwoa_ind_1" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="91.51789735217771%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_yfmhsjntgpcjtohelwoa_ind_1" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.001</text><svg x="91.46357052772859%" y="40" height="20" width="0.10865364889824036%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">is</text> </svg></svg><line x1="91.57222417662683%" x2="91.61949941287382%" y1="60" y2="60" id="_fb_yfmhsjntgpcjtohelwoa_ind_2" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="91.59586179475033%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_yfmhsjntgpcjtohelwoa_ind_2" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.001</text><svg x="91.57222417662683%" y="40" height="20" width="0.04727523624698904%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">the</text> </svg></svg><line x1="91.61949941287382%" x2="91.66666590650067%" y1="60" y2="60" id="_fb_yfmhsjntgpcjtohelwoa_ind_3" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0"/><text x="91.64308265968725%" y="71" font-size="12px" fill="rgb(0.0, 138.56128015770724, 250.76166088685727)" id="_fs_yfmhsjntgpcjtohelwoa_ind_3" style="opacity: 0" dominant-baseline="middle" text-anchor="middle">-0.001</text><svg x="91.61949941287382%" y="40" height="20" width="0.04716649362684677%"> <svg x="0" y="0" width="100%" height="100%"> <text x="50%" y="9" font-size="12px" fill="rgb(255,255,255)" dominant-baseline="middle" text-anchor="middle">White</text> </svg></svg><g transform="translate(-8,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-8,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-10,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-12,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-14,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(2,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(0,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-2,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><g transform="translate(-4,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2" /> </svg></g><rect transform="translate(0,0)" x="91.46357052772859%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="91.66666590650067%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><g transform="translate(-6.0,0)"> <svg x="91.57222417662683%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="91.46357052772859%" y="40" height="20" width="0.10865364889824036%" onmouseover="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 1;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 1;" onmouseout="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_1').style.textDecoration = 'none';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 0;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><g transform="translate(-6.0,0)"> <svg x="91.61949941287382%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25" fill="none" style="stroke:rgb(208, 230, 250);stroke-width:2" /> </svg></g><rect x="91.57222417662683%" y="40" height="20" width="0.04727523624698904%" onmouseover="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 1;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 1;" onmouseout="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_2').style.textDecoration = 'none';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 0;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /><rect x="91.61949941287382%" y="40" height="20" width="0.04716649362684677%" onmouseover="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 1;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 1;" onmouseout="document.getElementById('_tp_yfmhsjntgpcjtohelwoa_ind_3').style.textDecoration = 'none';document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 0;document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 0;" style="fill:rgb(0,0,0,0)" /></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.502</div
><div id='_tp_yfmhsjntgpcjtohelwoa_ind_0'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 1; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 0; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div
><div id='_tp_yfmhsjntgpcjtohelwoa_ind_1'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 1; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 0; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div
><div id='_tp_yfmhsjntgpcjtohelwoa_ind_2'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 1; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 0; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div
><div id='_tp_yfmhsjntgpcjtohelwoa_ind_3'
style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 1; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 0; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.24</div
><div id='_tp_yfmhsjntgpcjtohelwoa_ind_4'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.4797385620915033); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 1; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 0; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.26</div
><div id='_tp_yfmhsjntgpcjtohelwoa_ind_5'
style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5191523073876015); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 1; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 0; document.getElementById('_fs_yfmhsjntgpcjtohelwoa_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_5' style='display: none';><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="49.24586820139849%" y1="33" x2="49.24586820139849%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="49.24586820139849%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.2</text><line x1="35.7403115623143%" y1="33" x2="35.7403115623143%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="35.7403115623143%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.1</text><line x1="22.23475492323011%" y1="33" x2="22.23475492323011%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="22.23475492323011%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.4</text><line x1="8.729198284145916%" y1="33" x2="8.729198284145916%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="8.729198284145916%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">-0.7</text><line x1="62.751424840482684%" y1="33" x2="62.751424840482684%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="62.751424840482684%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.5</text><line x1="76.25698147956687%" y1="33" x2="76.25698147956687%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="76.25698147956687%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0.8</text><line x1="89.76253811865105%" y1="33" x2="89.76253811865105%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="89.76253811865105%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">1.1</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="40.24216377534236%" y1="33" x2="40.24216377534236%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="40.24216377534236%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="40.24216377534236%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">ABBR</tspan>(inputs)</text><rect x="40.24216377534236%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="40.24216377534236%" width="-0.0%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(0,0)" x="40.24216377534236%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="40.24216377534236%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_fkotzvkwythaqornmkfo_ind_0'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_0').style.opacity = 1; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_0').style.opacity = 0; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_fkotzvkwythaqornmkfo_ind_1'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_1').style.opacity = 1; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_1').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_1').style.opacity = 0; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_1').style.opacity = 0;"
>is </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_fkotzvkwythaqornmkfo_ind_2'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_2').style.opacity = 1; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_2').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_2').style.opacity = 0; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_2').style.opacity = 0;"
>the </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_fkotzvkwythaqornmkfo_ind_3'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_3').style.opacity = 1; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_3').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_3').style.opacity = 0; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_3').style.opacity = 0;"
>White </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_fkotzvkwythaqornmkfo_ind_4'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_4').style.opacity = 1; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_4').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_4').style.opacity = 0; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_4').style.opacity = 0;"
>House </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_fkotzvkwythaqornmkfo_ind_5'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_5').style.opacity = 1; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_5').style.opacity = 1;"
onmouseout="document.getElementById('_fb_fkotzvkwythaqornmkfo_ind_5').style.opacity = 0; document.getElementById('_fs_fkotzvkwythaqornmkfo_ind_5').style.opacity = 0;"
>located</div></div></div></div><div id='_tp_jyirnklqmmvtrtlwwfrd_output_5_zoom' style='display: none;'><svg width="100%" height="80px"><line x1="0" y1="33" x2="100%" y2="33" style="stroke:rgb(150,150,150);stroke-width:1" /><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="27" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">base value</text><line x1="0.0%" y1="33" x2="0.0%" y2="37" style="stroke:rgb(150,150,150);stroke-width:1" /><text x="0.0%" y="27" font-size="13px" style="stroke:#ffffff;stroke-width:8px;" font-weight="bold" fill="rgb(255,255,255)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="27" font-size="13px" font-weight="bold" fill="rgb(0,0,0)" dominant-baseline="bottom" text-anchor="middle">0</text><text x="0.0%" y="10" font-size="12px" fill="rgb(120,120,120)" dominant-baseline="bottom" text-anchor="middle">f<tspan baseline-shift="sub" font-size="8px">ABBR</tspan>(inputs)</text><rect x="0.0%" width="0.0%" y="40" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(-8,0)" x="0.0%" y="40" width="8" height="18" style="fill:rgb(255.0, 0.0, 81.08083606031792)"/><g transform="translate(-11.5,0)"> <svg x="0.0%" y="40" height="18" overflow="visible" width="30"> <path d="M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g><rect x="0.0%" width="-0.0%" y="40" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)" /><rect transform="translate(0,0)" x="0.0%" y="40" width="8" height="18" style="fill:rgb(0.0, 138.56128015770724, 250.76166088685727)"/><g transform="translate(-6.0,0)"> <svg x="0.0%" y="40" height="18" overflow="visible" width="30"> <path d="M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9" fill="#ffffff" style="stroke:rgb(255,255,255);stroke-width:2" /> </svg></g></svg><div align='center'><div style="color: rgb(120,120,120); font-size: 12px; margin-top: -15px;">inputs</div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div
><div id='_tp_wdlppdawwzmaewhrlzwf_ind_0'
style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'
onclick="
if (this.previousSibling.style.display == 'none') {
this.previousSibling.style.display = 'block';
this.parentNode.style.display = 'inline-block';
} else {
this.previousSibling.style.display = 'none';
this.parentNode.style.display = 'inline';
}"
onmouseover="document.getElementById('_fb_wdlppdawwzmaewhrlzwf_ind_0').style.opacity = 1; document.getElementById('_fs_wdlppdawwzmaewhrlzwf_ind_0').style.opacity = 1;"
onmouseout="document.getElementById('_fb_wdlppdawwzmaewhrlzwf_ind_0').style.opacity = 0; document.getElementById('_fs_wdlppdawwzmaewhrlzwf_ind_0').style.opacity = 0;"
>Where </div></div><div style='display: inline; text-align: center;'
><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div