File: tutorial_02.vdx

package info (click to toggle)
angular.js 1.5.10-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 38,940 kB
  • sloc: sh: 515; pascal: 164; makefile: 130
file content (4613 lines) | stat: -rw-r--r-- 327,540 bytes parent folder | download | duplicates (4)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<VisioDocument xmlns="http://schemas.microsoft.com/visio/2003/core">
  <DocumentSettings>
    <GlueSettings>12</GlueSettings>
    <SnapSettings>52</SnapSettings>
  </DocumentSettings>
  <PrintSetup>
    <PaperWidth>7.68056</PaperWidth>
    <PaperHeight>10.5</PaperHeight>
    <PrintLandscape>1</PrintLandscape>
    <PageLeftMargin>0.25</PageLeftMargin>
    <PageRightMargin>0.25</PageRightMargin>
    <PageTopMargin>0.25</PageTopMargin>
    <PageBottomMargin>0.569444</PageBottomMargin>
    <PrintCenteredH>1</PrintCenteredH>
    <PrintCenteredV>1</PrintCenteredV>
  </PrintSetup>
  <Fonts>
    <FontEntry ID="0" Name="Helvetica"/>
    <FontEntry ID="1" Name="Courier New"/>
  </Fonts>
  <FaceNames>
    <FaceName ID="0" Name="Helvetica"/>
    <FaceName ID="1" Name="Courier New"/>
  </FaceNames>
  <Pages>
    <Page ID="0" NameU="Canvas 1">
      <PageSheet>
        <RulerGrid>
          <XGridSpacing>0.111111</XGridSpacing>
          <YGridSpacing>0.111111</YGridSpacing>
        </RulerGrid>
        <PageProps>
          <PageScale>1</PageScale>
          <DrawingScale>1</DrawingScale>
          <PageWidth>10.5</PageWidth>
          <PageHeight>7.68056</PageHeight>
          <DrawingSizeType>3</DrawingSizeType>
          <ShdwOffsetX>0</ShdwOffsetX>
          <ShdwOffsetY>-0.0277778</ShdwOffsetY>
        </PageProps>
        <Layer IX="0">
          <Name>Layer 1</Name>
          <Visible>1</Visible>
          <Print>1</Print>
          <Lock>0</Lock>
        </Layer>
      </PageSheet>
      <Shapes>
        <Shape ID="1" Type="Shape" Name="Rectangle No Fill No Fill.1">
          <XForm>
            <Angle>-0</Angle>
            <FlipX>1</FlipX>
            <FlipY>1</FlipY>
            <PinX>5.3125</PinX>
            <PinY>4.902777777777778</PinY>
            <Width>3.152777777777778</Width>
            <Height>5.388888888888889</Height>
            <LocPinX>1.576388888888889</LocPinX>
            <LocPinY>2.694444444444445</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">3.152777777777778</TxtWidth>
            <TxtHeight F="Height*0.974227">5.25</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#4fff75</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">3.152777777777778</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">3.152777777777778</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="2" Type="Shape" Name="Rectangle No Fill No Fill.2">
          <XForm>
            <Angle>-0</Angle>
            <PinX>1.8125</PinX>
            <PinY>4.902777777777778</PinY>
            <Width>3.486111111111111</Width>
            <Height>5.388888888888889</Height>
            <LocPinX>1.743055555555556</LocPinX>
            <LocPinY>2.694444444444445</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">3.486111111111111</TxtWidth>
            <TxtHeight F="Height*0.974227">5.25</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#f8ff29</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">3.486111111111111</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">3.486111111111111</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="3" Type="Shape" Name="Rectangle No Fill No Fill.3">
          <XForm>
            <Angle>-0</Angle>
            <PinX>1.638888888888889</PinX>
            <PinY>4.041638888888889</PinY>
            <Width>0.02777777777777778</Width>
            <Height>0.1666666666666667</Height>
            <LocPinX>0.01388888888888889</LocPinX>
            <LocPinY>0.08333333333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.02777777777777778</TxtWidth>
            <TxtHeight F="Height*1.000000">0.1666666666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.1666666666666667</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.02777777777777778</X>
              <Y F="Height*1.000000">0.1666666666666667</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.02777777777777778</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.1666666666666667</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="4" Type="Shape" Name="Rectangle No Fill No Fill.4">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.291666666666667</PinX>
            <PinY>2.450177777777778</PinY>
            <Width>0.9583333333333334</Width>
            <Height>0.3101166666666667</Height>
            <LocPinX>0.4791666666666667</LocPinX>
            <LocPinY>0.1550583333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.9583333333333334</TxtWidth>
            <TxtHeight F="Height*1.000000">0.3101166666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.9583333333333334</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.9583333333333334</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0</LeftMargin>
            <RightMargin>0</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>0</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.25</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>1</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>Model</Text>
        </Shape>
        <Shape ID="5" Type="Group" Name="Group.5">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.291666666666667</PinX>
            <PinY>7.236111111111111</PinY>
            <Width>1.402777777777778</Width>
            <Height>0.5416666666666666</Height>
            <LocPinX>0.7013888888888888</LocPinX>
            <LocPinY>0.2708333333333333</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.402777777777778</TxtWidth>
            <TxtHeight F="Height*1.000000">0.5416666666666666</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="6" Type="Shape" Name="Graphic.6">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.7013888888888888</PinX>
                <PinY>0.2708333333333333</PinY>
                <Width>1.402777777777778</Width>
                <Height>0.5416666666666666</Height>
                <LocPinX>0.7013888888888888</LocPinX>
                <LocPinY>0.2708333333333333</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*0.800000">1.122222222222222</TxtWidth>
                <TxtHeight F="Height*0.443590">0.2402777777777777</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>28</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <FillBkgnd>#aaaaaa</FillBkgnd>
                <FillBkgndTrans>0</FillBkgndTrans>
                <ShdwPattern>1</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.853553">1.197345180555555</X>
                  <Y F="Height*0.853553">0.4623412083333334</Y>
                </MoveTo>
                <NURBSTo IX="2">
                  <X F="Width*0.853553">1.197345180555555</X>
                  <Y F="Height*0.146447">0.07932545833333332</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)">NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)</E>
                </NURBSTo>
                <NURBSTo IX="3">
                  <X F="Width*0.146447">0.2054325972222225</X>
                  <Y F="Height*0.146447">0.07932545833333332</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)">NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)</E>
                </NURBSTo>
                <NURBSTo IX="4">
                  <X F="Width*0.146447">0.2054325972222225</X>
                  <Y F="Height*0.853553">0.4623412083333334</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)">NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)</E>
                </NURBSTo>
                <NURBSTo IX="5">
                  <X F="Width*0.853553">1.197345180555555</X>
                  <Y F="Height*0.853553">0.4623412083333334</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)">NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)</E>
                </NURBSTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
            </Shape>
            <Shape ID="7" Type="Shape" Name="Rectangle No Fill No Fill.7">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.7426499999999999</PinX>
                <PinY>0.2800576388888889</PinY>
                <Width>0.9571888888888888</Width>
                <Height>0.2396347222222222</Height>
                <LocPinX>0.4785944444444444</LocPinX>
                <LocPinY>0.1198173611111111</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">0.9571888888888888</TxtWidth>
                <TxtHeight F="Height*0.420414">0.1007458333333333</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>0</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.2396347222222222</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">0.9571888888888888</X>
                  <Y F="Height*1.000000">0.2396347222222222</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">0.9571888888888888</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.2396347222222222</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>0</Font>
                <Color>0</Color>
                <Style>0</Style>
                <Size>0.166667</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>1</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/>Root Scope</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="8" Type="Shape" Name="Graphic.8">
          <XForm>
            <Angle>-0</Angle>
            <PinX>0.5277777777777778</PinX>
            <PinY>7.236111111111111</PinY>
            <Width>0.6666666666666666</Width>
            <Height>0.3055555555555556</Height>
            <LocPinX>0.3333333333333333</LocPinX>
            <LocPinY>0.1527777777777778</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.6666666666666666</TxtWidth>
            <TxtHeight F="Height*0.545455">0.1666666666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#fff82f</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.6666666666666666</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.6666666666666666</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;html&gt;</Text>
        </Shape>
        <Shape ID="9" Type="Shape" Name="Graphic.9">
          <XForm>
            <Angle>-0</Angle>
            <PinX>0.7083333333333334</PinX>
            <PinY>3.288736111111111</PinY>
            <Width>0.75</Width>
            <Height>0.3055555555555556</Height>
            <LocPinX>0.375</LocPinX>
            <LocPinY>0.1527777777777778</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.75</TxtWidth>
            <TxtHeight F="Height*0.545455">0.1666666666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#f5ff36</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.75</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.75</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;/body&gt;</Text>
        </Shape>
        <Shape ID="10" Type="Shape" Name="Graphic.10">
          <XForm>
            <Angle>-0</Angle>
            <PinX>0.5694444444444444</PinX>
            <PinY>2.851236111111111</PinY>
            <Width>0.75</Width>
            <Height>0.3055555555555556</Height>
            <LocPinX>0.375</LocPinX>
            <LocPinY>0.1527777777777778</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.75</TxtWidth>
            <TxtHeight F="Height*0.545455">0.1666666666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#f5ff36</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.75</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.75</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;/html&gt;</Text>
        </Shape>
        <Shape ID="11" Type="Shape" Name="Rectangle No Fill No Fill.11">
          <XForm>
            <Angle>-0</Angle>
            <PinX>2.020833333333333</PinX>
            <PinY>2.452458333333333</PinY>
            <Width>1.208333333333333</Width>
            <Height>0.3055555555555556</Height>
            <LocPinX>0.6041666666666666</LocPinX>
            <LocPinY>0.1527777777777778</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.208333333333333</TxtWidth>
            <TxtHeight F="Height*1.000000">0.3055555555555556</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.208333333333333</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">1.208333333333333</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0</LeftMargin>
            <RightMargin>0</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>0</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.25</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>1</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>Template</Text>
        </Shape>
        <Shape ID="12" Type="Shape" Name="Graphic.12">
          <XForm>
            <Angle>-0</Angle>
            <PinX>2.725694269097223</PinX>
            <PinY>7.229166666666667</PinY>
            <Width>3.715277427083335</Width>
            <Height>0.01388888888888889</Height>
            <LocPinX>1.857638713541668</LocPinX>
            <LocPinY>0.006944444444444444</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>0.868055555555556</BeginX>
            <BeginY>7.23611111111111</BeginY>
            <EndX>4.58333298263889</EndX>
            <EndY>7.23611111111111</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">3.715277427083335</TxtWidth>
            <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>9</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.01388888888888889</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">3.715277427083335</X>
              <Y F="Height*1.000000">0.01388888888888889</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="13" Type="Shape" Name="Rectangle No Fill No Fill.13">
          <XForm>
            <Angle>-0</Angle>
            <PinX>9.680555555555555</PinX>
            <PinY>6.615812500000001</PinY>
            <Width>0.75</Width>
            <Height>0.3101166666666667</Height>
            <LocPinX>0.375</LocPinX>
            <LocPinY>0.1550583333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.75</TxtWidth>
            <TxtHeight F="Height*1.000000">0.3101166666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.75</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.75</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="14" Type="Shape" Name="Rectangle No Fill No Fill.14">
          <XForm>
            <Angle>-0</Angle>
            <PinX>2.854166666666667</PinX>
            <PinY>7.369817361111111</PinY>
            <Width>1.319444444444444</Width>
            <Height>0.2396347222222222</Height>
            <LocPinX>0.6597222222222222</LocPinX>
            <LocPinY>0.1198173611111111</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.319444444444444</TxtWidth>
            <TxtHeight F="Height*1.000000">0.2396347222222222</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.2396347222222223</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.319444444444444</X>
              <Y F="Height*1.000000">0.2396347222222223</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">1.319444444444444</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.2396347222222223</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>2</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.166667</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>1</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>ng-app</Text>
        </Shape>
        <Shape ID="15" Type="Shape" Name="Graphic.15">
          <XForm>
            <Angle>-0</Angle>
            <PinX>1.111111111111111</PinX>
            <PinY>6.023763888888889</PinY>
            <Width>1.583333333333333</Width>
            <Height>0.5416666666666666</Height>
            <LocPinX>0.7916666666666666</LocPinX>
            <LocPinY>0.2708333333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.583333333333333</TxtWidth>
            <TxtHeight F="Height*0.743590">0.4027777777777778</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#f5ff36</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.5416666666666665</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.583333333333333</X>
              <Y F="Height*1.000000">0.5416666666666665</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">1.583333333333333</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.5416666666666665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>0</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;body 
 ng-controller=
 &quot;PhoneListCtrl&quot;&gt;</Text>
        </Shape>
        <Shape ID="16" Type="Shape" Name="Graphic.16">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.215277777777778</PinX>
            <PinY>2.034722222222222</PinY>
            <Width>10.18055555555556</Width>
            <Height>0.01388888888888889</Height>
            <LocPinX>5.090277777777778</LocPinX>
            <LocPinY>0.006944444444444444</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>0.125</BeginX>
            <BeginY>2.04166666666667</BeginY>
            <EndX>10.3055555555556</EndX>
            <EndY>2.02777777777778</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">10.18055555555556</TxtWidth>
            <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.01388888888888889</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">10.18055555555556</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="17" Type="Group" Name="Group.17">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.298027777777778</PinX>
            <PinY>6.019080555555556</PinY>
            <Width>1.938666666666667</Width>
            <Height>1.211838888888889</Height>
            <LocPinX>0.9693333333333334</LocPinX>
            <LocPinY>0.6059194444444445</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.938666666666667</TxtWidth>
            <TxtHeight F="Height*1.000000">1.211838888888889</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="18" Type="Shape" Name="Graphic.18">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.9693333333333337</PinX>
                <PinY>0.6059194444444445</PinY>
                <Width>1.938666666666667</Width>
                <Height>1.211838888888889</Height>
                <LocPinX>0.9693333333333334</LocPinX>
                <LocPinY>0.6059194444444445</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*0.800000">1.550933333333333</TxtWidth>
                <TxtHeight F="Height*0.585390">0.7093983333333331</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>28</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <FillBkgnd>#aaaaaa</FillBkgnd>
                <FillBkgndTrans>0</FillBkgndTrans>
                <ShdwPattern>1</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.853553">1.654754749333334</X>
                  <Y F="Height*0.853553">1.034368719127778</Y>
                </MoveTo>
                <NURBSTo IX="2">
                  <X F="Width*0.853553">1.654754749333334</X>
                  <Y F="Height*0.146447">0.177470169761111</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)">NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)</E>
                </NURBSTo>
                <NURBSTo IX="3">
                  <X F="Width*0.146447">0.2839119173333337</X>
                  <Y F="Height*0.146447">0.177470169761111</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)">NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)</E>
                </NURBSTo>
                <NURBSTo IX="4">
                  <X F="Width*0.146447">0.2839119173333337</X>
                  <Y F="Height*0.853553">1.034368719127778</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)">NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)</E>
                </NURBSTo>
                <NURBSTo IX="5">
                  <X F="Width*0.853553">1.654754749333334</X>
                  <Y F="Height*0.853553">1.034368719127778</Y>
                  <A>0</A>
                  <B>1</B>
                  <C>0</C>
                  <D>1</D>
                  <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)">NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)</E>
                </NURBSTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
            </Shape>
            <Shape ID="19" Type="Shape" Name="Rectangle No Fill No Fill.19">
              <XForm>
                <Angle>-0</Angle>
                <PinX>1.016893750000001</PinX>
                <PinY>0.7017048611111112</PinY>
                <Width>1.194870833333333</Width>
                <Height>0.3443791666666667</Height>
                <LocPinX>0.5974354166666667</LocPinX>
                <LocPinY>0.1721895833333333</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.194870833333333</TxtWidth>
                <TxtHeight F="Height*0.596698">0.2054902777777778</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>0</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3443791666666666</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">1.194870833333334</X>
                  <Y F="Height*1.000000">0.3443791666666666</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">1.194870833333334</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3443791666666666</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>0</Font>
                <Color>0</Color>
                <Style>0</Style>
                <Size>0.166667</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>1</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/>PhoneListCtrl Scope</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="20" Type="Shape" Name="Rectangle No Fill No Fill.20">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.332153472222222</PinX>
            <PinY>5.722222222222222</PinY>
            <Width>1.340251388888889</Width>
            <Height>0.3055555555555556</Height>
            <LocPinX>0.6701256944444444</LocPinX>
            <LocPinY>0.1527777777777778</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.340251388888889</TxtWidth>
            <TxtHeight F="Height*0.545455">0.1666666666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.340251388888889</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">1.340251388888889</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3055555555555556</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>0</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.152778</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>phones: Array
</Text>
        </Shape>
        <Shape ID="21" Type="Shape" Name="Graphic.21">
          <XForm>
            <Angle>-0</Angle>
            <PinX>3.115736639380332</PinX>
            <PinY>6.015926041488637</PinY>
            <Width>2.412028843007047</Width>
            <Height>0.01388888888888889</Height>
            <LocPinX>1.206014421503524</LocPinX>
            <LocPinY>0.006944444444444444</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>1.90972221787681</BeginX>
            <BeginY>6.02287048593308</BeginY>
            <EndX>4.32175106088386</EndX>
            <EndY>6.02017215920111</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">2.412028843007047</TxtWidth>
            <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>9</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.01388888888888889</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">2.412028843007047</X>
              <Y F="Height*0.805720">0.01119056215691473</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="22" Type="Shape" Name="Graphic.22">
          <XForm>
            <Angle>-0</Angle>
            <PinX>0.6944444444444444</PinX>
            <PinY>5.027775</PinY>
            <Width>0.5</Width>
            <Height>0.3101166666666667</Height>
            <LocPinX>0.25</LocPinX>
            <LocPinY>0.1550583333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.5</TxtWidth>
            <TxtHeight F="Height*0.552140">0.1712277777777778</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#f5ff36</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.5</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.5</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;ul&gt;</Text>
        </Shape>
        <Shape ID="23" Type="Shape" Name="Graphic.23">
          <XForm>
            <Angle>-0</Angle>
            <PinX>2.020833333333333</PinX>
            <PinY>4.375</PinY>
            <Width>2.902777777777778</Width>
            <Height>0.75</Height>
            <LocPinX>1.451388888888889</LocPinX>
            <LocPinY>0.375</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">2.902777777777778</TxtWidth>
            <TxtHeight F="Height*0.814815">0.6111111111111112</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#f5ff36</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.75</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">2.902777777777778</X>
              <Y F="Height*1.000000">0.75</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">2.902777777777778</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.75</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;li ng-repeat=&quot;phone in phones&quot;&gt;
  {{phone.name}}
  &lt;p&gt;{{phone.snippet}}&lt;/p&gt;
&lt;/li&gt;</Text>
        </Shape>
        <Shape ID="24" Type="Group" Name="Group.24">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.225694444444445</PinX>
            <PinY>1.74479375</PinY>
            <Width>2.388888888888889</Width>
            <Height>0.239634722222222</Height>
            <LocPinX>1.194444444444444</LocPinX>
            <LocPinY>0.119817361111111</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">2.388888888888889</TxtWidth>
            <TxtHeight F="Height*1.000000">0.239634722222222</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="25" Type="Shape" Name="Graphic.25">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.3333333333333333</PinX>
                <PinY>0.1198291666666659</PinY>
                <Width>0.6666666666666666</Width>
                <Height>0.01388888888888889</Height>
                <LocPinX>0.3333333333333333</LocPinX>
                <LocPinY>0.006944444444444444</LocPinY>
              </XForm>
              <XForm1D>
                <BeginX>0</BeginX>
                <BeginY>0.12677361111111</BeginY>
                <EndX>0.666666666666667</EndX>
                <EndY>0.12677361111111</EndY>
              </XForm1D>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">0.6666666666666666</TxtWidth>
                <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>2</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0277778</LineWeight>
                <LineColor>#17ff1c</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
                <EndArrow>4</EndArrow>
                <EndArrowSize>2</EndArrowSize>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>0</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>1</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">0.6666666666666666</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
            </Shape>
            <Shape ID="26" Type="Shape" Name="Rectangle No Fill No Fill.26">
              <XForm>
                <Angle>-0</Angle>
                <PinX>1.576388888888889</PinX>
                <PinY>0.119817361111111</PinY>
                <Width>1.625</Width>
                <Height>0.2396347222222222</Height>
                <LocPinX>0.8125</LocPinX>
                <LocPinY>0.1198173611111111</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.625</TxtWidth>
                <TxtHeight F="Height*0.420414">0.1007458333333333</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>1</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">1.625</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">1.625</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>0</Font>
                <Color>0</Color>
                <Style>0</Style>
                <Size>0.166667</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>0</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/> Scope Inheritance</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="27" Type="Group" Name="Group.27">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.670138888888889</PinX>
            <PinY>4.527777777777778</PinY>
            <Width>1.729166666666667</Width>
            <Height>1.055555555555556</Height>
            <LocPinX>0.8645833333333334</LocPinX>
            <LocPinY>0.5277777777777778</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.729166666666667</TxtWidth>
            <TxtHeight F="Height*1.000000">1.055555555555556</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="28" Type="Group" Name="Group.28">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.8645833333333334</PinX>
                <PinY>0.5277777777777778</PinY>
                <Width>1.729166666666667</Width>
                <Height>1.055555555555556</Height>
                <LocPinX>0.8645833333333334</LocPinX>
                <LocPinY>0.5277777777777778</LocPinY>
              </XForm>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.729166666666667</TxtWidth>
                <TxtHeight F="Height*1.000000">1.055555555555556</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <Shapes>
                <Shape ID="29" Type="Shape" Name="Graphic.29">
                  <XForm>
                    <Angle>-0</Angle>
                    <PinX>0.8645833333333334</PinX>
                    <PinY>0.5277777777777778</PinY>
                    <Width>1.729166666666667</Width>
                    <Height>1.055555555555556</Height>
                    <LocPinX>0.8645833333333334</LocPinX>
                    <LocPinY>0.5277777777777778</LocPinY>
                  </XForm>
                  <TextXForm>
                    <TxtWidth F="Width*0.800000">1.383333333333334</TxtWidth>
                    <TxtHeight F="Height*0.568421">0.6</TxtHeight>
                    <TxtAngle>-0</TxtAngle>
                  </TextXForm>
                  <Misc>
                    <ObjType>1</ObjType>
                  </Misc>
                  <Line>
                    <LinePattern>1</LinePattern>
                    <LineWeight>0.0138889</LineWeight>
                    <LineColor>0</LineColor>
                    <LineColorTrans>0</LineColorTrans>
                    <Rounding>0</Rounding>
                    <LineCap>0</LineCap>
                  </Line>
                  <Fill>
                    <FillPattern>28</FillPattern>
                    <FillForegnd>#ffffff</FillForegnd>
                    <FillForegndTrans>0</FillForegndTrans>
                    <FillBkgnd>#aaaaaa</FillBkgnd>
                    <FillBkgndTrans>0</FillBkgndTrans>
                    <ShdwPattern>1</ShdwPattern>
                    <ShdwForegnd>0</ShdwForegnd>
                    <ShdwForegndTrans>0.5</ShdwForegndTrans>
                    <ShapeShdwType>1</ShapeShdwType>
                    <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                    <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
                  </Fill>
                  <Geom IX="0">
                    <NoFill>0</NoFill>
                    <NoLine>0</NoLine>
                    <MoveTo IX="1">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                    </MoveTo>
                    <NURBSTo IX="2">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.146447">0.1545829444444446</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)">NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="3">
                      <X F="Width*0.146447">0.253231270833333</X>
                      <Y F="Height*0.146447">0.1545829444444446</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)">NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="4">
                      <X F="Width*0.146447">0.253231270833333</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)">NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="5">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)">NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)</E>
                    </NURBSTo>
                  </Geom>
                  <LayerMem>
                    <LayerMember>0</LayerMember>
                  </LayerMem>
                </Shape>
                <Shape ID="30" Type="Shape" Name="Rectangle No Fill No Fill.30">
                  <XForm>
                    <Angle>-0</Angle>
                    <PinX>0.8602083333333334</PinX>
                    <PinY>0.7277458333333335</PinY>
                    <Width>1.208333333333333</Width>
                    <Height>0.4669805555555555</Height>
                    <LocPinX>0.6041666666666666</LocPinX>
                    <LocPinY>0.2334902777777778</LocPinY>
                  </XForm>
                  <TextXForm>
                    <TxtWidth F="Width*1.000000">1.208333333333333</TxtWidth>
                    <TxtHeight F="Height*0.702581">0.3280916666666667</TxtHeight>
                    <TxtAngle>-0</TxtAngle>
                  </TextXForm>
                  <Misc>
                    <ObjType>1</ObjType>
                  </Misc>
                  <Line>
                    <LinePattern>0</LinePattern>
                    <LineWeight>0.0138889</LineWeight>
                    <LineColor>0</LineColor>
                    <LineColorTrans>0</LineColorTrans>
                    <Rounding>0</Rounding>
                    <LineCap>0</LineCap>
                  </Line>
                  <Fill>
                    <FillPattern>0</FillPattern>
                    <FillForegnd>#ffffff</FillForegnd>
                    <FillForegndTrans>0</FillForegndTrans>
                    <ShdwPattern>0</ShdwPattern>
                    <ShdwForegnd>0</ShdwForegnd>
                    <ShdwForegndTrans>0.5</ShdwForegndTrans>
                    <ShapeShdwType>1</ShapeShdwType>
                    <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                    <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
                  </Fill>
                  <Geom IX="0">
                    <NoFill>0</NoFill>
                    <NoLine>0</NoLine>
                    <MoveTo IX="1">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </MoveTo>
                    <LineTo IX="2">
                      <X F="Width*1.000000">1.208333333333333</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </LineTo>
                    <LineTo IX="3">
                      <X F="Width*1.000000">1.208333333333333</X>
                      <Y F="Height*0.000000">0</Y>
                    </LineTo>
                    <LineTo IX="4">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*0.000000">0</Y>
                    </LineTo>
                    <LineTo IX="5">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </LineTo>
                  </Geom>
                  <LayerMem>
                    <LayerMember>0</LayerMember>
                  </LayerMem>
                  <TextBlock>
                    <LeftMargin>0.0694444</LeftMargin>
                    <RightMargin>0.0694444</RightMargin>
                    <VerticalAlign>1</VerticalAlign>
                    <DefaultTabStop>0</DefaultTabStop>
                  </TextBlock>
                  <Char IX="0">
                    <Font>0</Font>
                    <Color>0</Color>
                    <Style>0</Style>
                    <Size>0.166667</Size>
                    <ColorTrans>0</ColorTrans>
                  </Char>
                  <Para IX="0">
                    <IndFirst>0</IndFirst>
                    <IndLeft>0</IndLeft>
                    <IndRight>-0</IndRight>
                    <SpLine>-1.2</SpLine>
                    <SpBefore>0</SpBefore>
                    <HorzAlign>0</HorzAlign>
                  </Para>
                  <Text><cp IX="0"/><pp IX="0"/>phone scope</Text>
                </Shape>
              </Shapes>
            </Shape>
            <Shape ID="31" Type="Shape" Name="Rectangle No Fill No Fill.31">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.9930555555555556</PinX>
                <PinY>0.3998444444444446</PinY>
                <Width>1.472222222222222</Width>
                <Height>0.3101166666666667</Height>
                <LocPinX>0.7361111111111112</LocPinX>
                <LocPinY>0.1550583333333333</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.472222222222222</TxtWidth>
                <TxtHeight F="Height*0.552140">0.1712277777777778</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>0</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3101166666666665</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">1.472222222222222</X>
                  <Y F="Height*1.000000">0.3101166666666665</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">1.472222222222222</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3101166666666665</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>1</Font>
                <Color>0</Color>
                <Style>1</Style>
                <Size>0.152778</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>0</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/>phone: Object</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="32" Type="Group" Name="Group.32">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.795138888888889</PinX>
            <PinY>4.402777777777778</PinY>
            <Width>1.729166666666667</Width>
            <Height>1.055555555555556</Height>
            <LocPinX>0.8645833333333334</LocPinX>
            <LocPinY>0.5277777777777778</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.729166666666667</TxtWidth>
            <TxtHeight F="Height*1.000000">1.055555555555556</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="33" Type="Group" Name="Group.33">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.8645833333333334</PinX>
                <PinY>0.5277777777777778</PinY>
                <Width>1.729166666666667</Width>
                <Height>1.055555555555556</Height>
                <LocPinX>0.8645833333333334</LocPinX>
                <LocPinY>0.5277777777777778</LocPinY>
              </XForm>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.729166666666667</TxtWidth>
                <TxtHeight F="Height*1.000000">1.055555555555556</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <Shapes>
                <Shape ID="34" Type="Shape" Name="Graphic.34">
                  <XForm>
                    <Angle>-0</Angle>
                    <PinX>0.8645833333333334</PinX>
                    <PinY>0.5277777777777778</PinY>
                    <Width>1.729166666666667</Width>
                    <Height>1.055555555555556</Height>
                    <LocPinX>0.8645833333333334</LocPinX>
                    <LocPinY>0.5277777777777778</LocPinY>
                  </XForm>
                  <TextXForm>
                    <TxtWidth F="Width*0.800000">1.383333333333334</TxtWidth>
                    <TxtHeight F="Height*0.568421">0.6</TxtHeight>
                    <TxtAngle>-0</TxtAngle>
                  </TextXForm>
                  <Misc>
                    <ObjType>1</ObjType>
                  </Misc>
                  <Line>
                    <LinePattern>1</LinePattern>
                    <LineWeight>0.0138889</LineWeight>
                    <LineColor>0</LineColor>
                    <LineColorTrans>0</LineColorTrans>
                    <Rounding>0</Rounding>
                    <LineCap>0</LineCap>
                  </Line>
                  <Fill>
                    <FillPattern>28</FillPattern>
                    <FillForegnd>#ffffff</FillForegnd>
                    <FillForegndTrans>0</FillForegndTrans>
                    <FillBkgnd>#aaaaaa</FillBkgnd>
                    <FillBkgndTrans>0</FillBkgndTrans>
                    <ShdwPattern>1</ShdwPattern>
                    <ShdwForegnd>0</ShdwForegnd>
                    <ShdwForegndTrans>0.5</ShdwForegndTrans>
                    <ShapeShdwType>1</ShapeShdwType>
                    <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                    <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
                  </Fill>
                  <Geom IX="0">
                    <NoFill>0</NoFill>
                    <NoLine>0</NoLine>
                    <MoveTo IX="1">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                    </MoveTo>
                    <NURBSTo IX="2">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.146447">0.1545829444444446</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)">NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="3">
                      <X F="Width*0.146447">0.253231270833333</X>
                      <Y F="Height*0.146447">0.1545829444444446</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)">NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="4">
                      <X F="Width*0.146447">0.253231270833333</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)">NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="5">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)">NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)</E>
                    </NURBSTo>
                  </Geom>
                  <LayerMem>
                    <LayerMember>0</LayerMember>
                  </LayerMem>
                </Shape>
                <Shape ID="35" Type="Shape" Name="Rectangle No Fill No Fill.35">
                  <XForm>
                    <Angle>-0</Angle>
                    <PinX>0.8602083333333334</PinX>
                    <PinY>0.7277458333333335</PinY>
                    <Width>1.208333333333333</Width>
                    <Height>0.4669805555555555</Height>
                    <LocPinX>0.6041666666666666</LocPinX>
                    <LocPinY>0.2334902777777778</LocPinY>
                  </XForm>
                  <TextXForm>
                    <TxtWidth F="Width*1.000000">1.208333333333333</TxtWidth>
                    <TxtHeight F="Height*0.702581">0.3280916666666667</TxtHeight>
                    <TxtAngle>-0</TxtAngle>
                  </TextXForm>
                  <Misc>
                    <ObjType>1</ObjType>
                  </Misc>
                  <Line>
                    <LinePattern>0</LinePattern>
                    <LineWeight>0.0138889</LineWeight>
                    <LineColor>0</LineColor>
                    <LineColorTrans>0</LineColorTrans>
                    <Rounding>0</Rounding>
                    <LineCap>0</LineCap>
                  </Line>
                  <Fill>
                    <FillPattern>0</FillPattern>
                    <FillForegnd>#ffffff</FillForegnd>
                    <FillForegndTrans>0</FillForegndTrans>
                    <ShdwPattern>0</ShdwPattern>
                    <ShdwForegnd>0</ShdwForegnd>
                    <ShdwForegndTrans>0.5</ShdwForegndTrans>
                    <ShapeShdwType>1</ShapeShdwType>
                    <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                    <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
                  </Fill>
                  <Geom IX="0">
                    <NoFill>0</NoFill>
                    <NoLine>0</NoLine>
                    <MoveTo IX="1">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </MoveTo>
                    <LineTo IX="2">
                      <X F="Width*1.000000">1.208333333333333</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </LineTo>
                    <LineTo IX="3">
                      <X F="Width*1.000000">1.208333333333333</X>
                      <Y F="Height*0.000000">0</Y>
                    </LineTo>
                    <LineTo IX="4">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*0.000000">0</Y>
                    </LineTo>
                    <LineTo IX="5">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </LineTo>
                  </Geom>
                  <LayerMem>
                    <LayerMember>0</LayerMember>
                  </LayerMem>
                  <TextBlock>
                    <LeftMargin>0.0694444</LeftMargin>
                    <RightMargin>0.0694444</RightMargin>
                    <VerticalAlign>1</VerticalAlign>
                    <DefaultTabStop>0</DefaultTabStop>
                  </TextBlock>
                  <Char IX="0">
                    <Font>0</Font>
                    <Color>0</Color>
                    <Style>0</Style>
                    <Size>0.166667</Size>
                    <ColorTrans>0</ColorTrans>
                  </Char>
                  <Para IX="0">
                    <IndFirst>0</IndFirst>
                    <IndLeft>0</IndLeft>
                    <IndRight>-0</IndRight>
                    <SpLine>-1.2</SpLine>
                    <SpBefore>0</SpBefore>
                    <HorzAlign>0</HorzAlign>
                  </Para>
                  <Text><cp IX="0"/><pp IX="0"/>phone scope</Text>
                </Shape>
              </Shapes>
            </Shape>
            <Shape ID="36" Type="Shape" Name="Rectangle No Fill No Fill.36">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.9930555555555556</PinX>
                <PinY>0.3998444444444446</PinY>
                <Width>1.472222222222222</Width>
                <Height>0.3101166666666667</Height>
                <LocPinX>0.7361111111111112</LocPinX>
                <LocPinY>0.1550583333333333</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.472222222222222</TxtWidth>
                <TxtHeight F="Height*0.552140">0.1712277777777778</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>0</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3101166666666669</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">1.472222222222222</X>
                  <Y F="Height*1.000000">0.3101166666666669</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">1.472222222222222</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3101166666666669</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>1</Font>
                <Color>0</Color>
                <Style>1</Style>
                <Size>0.152778</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>0</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/>phone: Object</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="37" Type="Group" Name="Group.37">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.920138888888889</PinX>
            <PinY>4.277777777777778</PinY>
            <Width>1.729166666666667</Width>
            <Height>1.055555555555556</Height>
            <LocPinX>0.8645833333333334</LocPinX>
            <LocPinY>0.5277777777777778</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.729166666666667</TxtWidth>
            <TxtHeight F="Height*1.000000">1.055555555555556</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="38" Type="Group" Name="Group.38">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.8645833333333334</PinX>
                <PinY>0.5277777777777778</PinY>
                <Width>1.729166666666667</Width>
                <Height>1.055555555555556</Height>
                <LocPinX>0.8645833333333334</LocPinX>
                <LocPinY>0.5277777777777778</LocPinY>
              </XForm>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.729166666666667</TxtWidth>
                <TxtHeight F="Height*1.000000">1.055555555555556</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <Shapes>
                <Shape ID="39" Type="Shape" Name="Graphic.39">
                  <XForm>
                    <Angle>-0</Angle>
                    <PinX>0.8645833333333334</PinX>
                    <PinY>0.5277777777777778</PinY>
                    <Width>1.729166666666667</Width>
                    <Height>1.055555555555556</Height>
                    <LocPinX>0.8645833333333334</LocPinX>
                    <LocPinY>0.5277777777777778</LocPinY>
                  </XForm>
                  <TextXForm>
                    <TxtWidth F="Width*0.800000">1.383333333333334</TxtWidth>
                    <TxtHeight F="Height*0.568421">0.6</TxtHeight>
                    <TxtAngle>-0</TxtAngle>
                  </TextXForm>
                  <Misc>
                    <ObjType>1</ObjType>
                  </Misc>
                  <Line>
                    <LinePattern>1</LinePattern>
                    <LineWeight>0.0138889</LineWeight>
                    <LineColor>0</LineColor>
                    <LineColorTrans>0</LineColorTrans>
                    <Rounding>0</Rounding>
                    <LineCap>0</LineCap>
                  </Line>
                  <Fill>
                    <FillPattern>28</FillPattern>
                    <FillForegnd>#ffffff</FillForegnd>
                    <FillForegndTrans>0</FillForegndTrans>
                    <FillBkgnd>#aaaaaa</FillBkgnd>
                    <FillBkgndTrans>0</FillBkgndTrans>
                    <ShdwPattern>1</ShdwPattern>
                    <ShdwForegnd>0</ShdwForegnd>
                    <ShdwForegndTrans>0.5</ShdwForegndTrans>
                    <ShapeShdwType>1</ShapeShdwType>
                    <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                    <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
                  </Fill>
                  <Geom IX="0">
                    <NoFill>0</NoFill>
                    <NoLine>0</NoLine>
                    <MoveTo IX="1">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                    </MoveTo>
                    <NURBSTo IX="2">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.146447">0.1545829444444446</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)">NURBS(1, 3, 0, 0, 1.048816,0.658291,0,1, 1.048816,0.341709,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="3">
                      <X F="Width*0.146447">0.253231270833333</X>
                      <Y F="Height*0.146447">0.1545829444444446</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)">NURBS(1, 3, 0, 0, 0.658291,-0.048816,0,1, 0.341709,-0.048816,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="4">
                      <X F="Width*0.146447">0.253231270833333</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)">NURBS(1, 3, 0, 0, -0.048816,0.341709,0,1, -0.048816,0.658291,0,1)</E>
                    </NURBSTo>
                    <NURBSTo IX="5">
                      <X F="Width*0.853553">1.475935395833334</X>
                      <Y F="Height*0.853553">0.9009726111111109</Y>
                      <A>0</A>
                      <B>1</B>
                      <C>0</C>
                      <D>1</D>
                      <E Unit="NURBS" F="NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)">NURBS(1, 3, 0, 0, 0.341709,1.048816,0,1, 0.658291,1.048816,0,1)</E>
                    </NURBSTo>
                  </Geom>
                  <LayerMem>
                    <LayerMember>0</LayerMember>
                  </LayerMem>
                </Shape>
                <Shape ID="40" Type="Shape" Name="Rectangle No Fill No Fill.40">
                  <XForm>
                    <Angle>-0</Angle>
                    <PinX>0.8602083333333334</PinX>
                    <PinY>0.7277458333333335</PinY>
                    <Width>1.208333333333333</Width>
                    <Height>0.4669805555555555</Height>
                    <LocPinX>0.6041666666666666</LocPinX>
                    <LocPinY>0.2334902777777778</LocPinY>
                  </XForm>
                  <TextXForm>
                    <TxtWidth F="Width*1.000000">1.208333333333333</TxtWidth>
                    <TxtHeight F="Height*0.702581">0.3280916666666667</TxtHeight>
                    <TxtAngle>-0</TxtAngle>
                  </TextXForm>
                  <Misc>
                    <ObjType>1</ObjType>
                  </Misc>
                  <Line>
                    <LinePattern>0</LinePattern>
                    <LineWeight>0.0138889</LineWeight>
                    <LineColor>0</LineColor>
                    <LineColorTrans>0</LineColorTrans>
                    <Rounding>0</Rounding>
                    <LineCap>0</LineCap>
                  </Line>
                  <Fill>
                    <FillPattern>0</FillPattern>
                    <FillForegnd>#ffffff</FillForegnd>
                    <FillForegndTrans>0</FillForegndTrans>
                    <ShdwPattern>0</ShdwPattern>
                    <ShdwForegnd>0</ShdwForegnd>
                    <ShdwForegndTrans>0.5</ShdwForegndTrans>
                    <ShapeShdwType>1</ShapeShdwType>
                    <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                    <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
                  </Fill>
                  <Geom IX="0">
                    <NoFill>0</NoFill>
                    <NoLine>0</NoLine>
                    <MoveTo IX="1">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </MoveTo>
                    <LineTo IX="2">
                      <X F="Width*1.000000">1.208333333333333</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </LineTo>
                    <LineTo IX="3">
                      <X F="Width*1.000000">1.208333333333333</X>
                      <Y F="Height*0.000000">0</Y>
                    </LineTo>
                    <LineTo IX="4">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*0.000000">0</Y>
                    </LineTo>
                    <LineTo IX="5">
                      <X F="Width*0.000000">0</X>
                      <Y F="Height*1.000000">0.4669805555555552</Y>
                    </LineTo>
                  </Geom>
                  <LayerMem>
                    <LayerMember>0</LayerMember>
                  </LayerMem>
                  <TextBlock>
                    <LeftMargin>0.0694444</LeftMargin>
                    <RightMargin>0.0694444</RightMargin>
                    <VerticalAlign>1</VerticalAlign>
                    <DefaultTabStop>0</DefaultTabStop>
                  </TextBlock>
                  <Char IX="0">
                    <Font>0</Font>
                    <Color>0</Color>
                    <Style>0</Style>
                    <Size>0.166667</Size>
                    <ColorTrans>0</ColorTrans>
                  </Char>
                  <Para IX="0">
                    <IndFirst>0</IndFirst>
                    <IndLeft>0</IndLeft>
                    <IndRight>-0</IndRight>
                    <SpLine>-1.2</SpLine>
                    <SpBefore>0</SpBefore>
                    <HorzAlign>1</HorzAlign>
                  </Para>
                  <Text><cp IX="0"/><pp IX="0"/>Repeater 
Scope</Text>
                </Shape>
              </Shapes>
            </Shape>
            <Shape ID="41" Type="Shape" Name="Rectangle No Fill No Fill.41">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.9930555555555556</PinX>
                <PinY>0.3303999999999997</PinY>
                <Width>1.472222222222222</Width>
                <Height>0.3101166666666667</Height>
                <LocPinX>0.7361111111111112</LocPinX>
                <LocPinY>0.1550583333333333</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">1.472222222222222</TxtWidth>
                <TxtHeight F="Height*0.552140">0.1712277777777778</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>0</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3101166666666665</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">1.472222222222222</X>
                  <Y F="Height*1.000000">0.3101166666666665</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">1.472222222222222</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.3101166666666665</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>1</Font>
                <Color>0</Color>
                <Style>1</Style>
                <Size>0.152778</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>0</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/>phone: Object</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="42" Type="Shape" Name="Graphic.42">
          <XForm>
            <Angle>-0</Angle>
            <PinX>4.139895523651552</PinX>
            <PinY>4.463714199765159</PinY>
            <Width>1.321469869277556</Width>
            <Height>0.05532312477772194</Height>
            <LocPinX>0.660734934638778</LocPinX>
            <LocPinY>0.02766156238886097</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>3.47916058901277</BeginX>
            <BeginY>4.4360526373763</BeginY>
            <EndX>4.80063045829033</EndX>
            <EndY>4.49137576215402</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.321469869277556</TxtWidth>
            <TxtHeight F="Height*1.000000">0.05532312477772194</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>9</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">3.947459643111667e-16</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.321469869277556</X>
              <Y F="Height*1.000000">0.05532312477772194</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="43" Type="Shape" Name="Graphic.43">
          <XForm>
            <Angle>-0</Angle>
            <PinX>4.201419896589004</PinX>
            <PinY>4.389419057374635</PinY>
            <Width>1.444506835957859</Width>
            <Height>0.01388888888888889</Height>
            <LocPinX>0.7222534179789295</LocPinX>
            <LocPinY>0.006944444444444444</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>3.47916647861007</BeginX>
            <BeginY>4.38573262839266</BeginY>
            <EndX>4.92367331456793</EndX>
            <EndY>4.39636350181908</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.444506835957859</TxtWidth>
            <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>9</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.234577">0.003258015462468301</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.444506835957859</X>
              <Y F="Height*1.000000">0.01388888888888889</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="44" Type="Shape" Name="Graphic.44">
          <XForm>
            <Angle>-0</Angle>
            <PinX>4.264246562960143</PinX>
            <PinY>4.319064032219704</PinY>
            <Width>1.570164107766123</Width>
            <Height>0.03914956361222485</Height>
            <LocPinX>0.7850820538830613</LocPinX>
            <LocPinY>0.01957478180611242</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>3.47916450907708</BeginX>
            <BeginY>4.33863881402582</BeginY>
            <EndX>5.0493286168432</EndX>
            <EndY>4.29948925041359</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.570164107766123</TxtWidth>
            <TxtHeight F="Height*1.000000">0.03914956361222485</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>9</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.03914956361222485</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.570164107766123</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="45" Type="Shape" Name="Graphic.45">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.300064920396768</PinX>
            <PinY>6.795137642079719</PinY>
            <Width>0.01388888888888889</Width>
            <Height>0.3263924010531976</Height>
            <LocPinX>0.006944444444444444</LocPinX>
            <LocPinY>0.1631962005265988</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>5.29482577317895</BeginX>
            <BeginY>6.63194144155312</BeginY>
            <EndX>5.29312047595232</EndX>
            <EndY>6.95833384260632</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.01388888888888889</TxtWidth>
            <TxtHeight F="Height*1.000000">0.3263924010531976</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#2fff41</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.122781">0.001705297226621383</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3263924010531976</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="46" Type="Shape" Name="Graphic.46">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.622607840074725</PinX>
            <PinY>5.110575492477151</PinY>
            <Width>0.2218899004576984</Width>
            <Height>0.6210760280398873</Height>
            <LocPinX>0.1109449502288492</LocPinX>
            <LocPinY>0.3105380140199436</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>5.73355279030357</BeginX>
            <BeginY>4.80003747845721</BeginY>
            <EndX>5.51166288984588</EndX>
            <EndY>5.4211135064971</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.2218899004576984</TxtWidth>
            <TxtHeight F="Height*1.000000">0.6210760280398873</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#39ff42</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*1.000000">0.2218899004576984</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.6210760280398873</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="47" Type="Shape" Name="Graphic.47">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.558320375564575</PinX>
            <PinY>5.172770429604866</PinY>
            <Width>0.1504523229245728</Width>
            <Height>0.4891812784230665</Height>
            <LocPinX>0.07522616146228639</LocPinX>
            <LocPinY>0.2445906392115332</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>5.63354653702686</BeginX>
            <BeginY>4.92817979039333</BeginY>
            <EndX>5.48309421410229</EndX>
            <EndY>5.4173610688164</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.1504523229245728</TxtWidth>
            <TxtHeight F="Height*1.000000">0.4891812784230665</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#45ff51</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*1.000000">0.1504523229245728</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.4891812784230665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="48" Type="Shape" Name="Graphic.48">
          <XForm>
            <Angle>-0</Angle>
            <PinX>5.493683691519897</PinX>
            <PinY>5.234965464780772</PinY>
            <Width>0.08915494182797169</Width>
            <Height>0.3573103996725347</Height>
            <LocPinX>0.04457747091398585</LocPinX>
            <LocPinY>0.1786551998362673</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>5.53826116243388</BeginX>
            <BeginY>5.0563102649445</BeginY>
            <EndX>5.44910622060591</EndX>
            <EndY>5.41362066461704</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>0</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.08915494182797169</TxtWidth>
            <TxtHeight F="Height*1.000000">0.3573103996725347</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#37ff37</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*1.000000">0.08915494182797248</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*0.000000">7.894919286223335e-16</X>
              <Y F="Height*1.000000">0.3573103996725347</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="49" Type="Shape" Name="Graphic.49">
          <XForm>
            <Angle>-0</Angle>
            <PinX>0.6944444444444444</PinX>
            <PinY>3.722219444444444</PinY>
            <Width>0.5</Width>
            <Height>0.3101166666666667</Height>
            <LocPinX>0.25</LocPinX>
            <LocPinY>0.1550583333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.5</TxtWidth>
            <TxtHeight F="Height*0.552140">0.1712277777777778</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>28</FillPattern>
            <FillForegnd>#f5ff36</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <FillBkgnd>#aaaaaa</FillBkgnd>
            <FillBkgndTrans>0</FillBkgndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.5</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.5</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.138889</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>&lt;ul&gt;</Text>
        </Shape>
        <Shape ID="50" Type="Shape" Name="Rectangle No Fill No Fill.50">
          <XForm>
            <Angle>-0</Angle>
            <PinX>2.777777777777778</PinX>
            <PinY>6.145833333333333</PinY>
            <Width>1.444444444444444</Width>
            <Height>0.2083333333333333</Height>
            <LocPinX>0.7222222222222222</LocPinX>
            <LocPinY>0.1041666666666667</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.444444444444444</TxtWidth>
            <TxtHeight F="Height*1.000000">0.2083333333333333</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.2083333333333333</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.444444444444444</X>
              <Y F="Height*1.000000">0.2083333333333333</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">1.444444444444444</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.2083333333333333</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>2</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.166667</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>0</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>ng-controller</Text>
        </Shape>
        <Shape ID="51" Type="Shape" Name="Rectangle No Fill No Fill.51">
          <XForm>
            <Angle>-0</Angle>
            <FlipX>1</FlipX>
            <FlipY>1</FlipY>
            <PinX>8.692708333333334</PinX>
            <PinY>4.902777777777778</PinY>
            <Width>3.274305555555555</Width>
            <Height>5.388888888888889</Height>
            <LocPinX>1.637152777777778</LocPinX>
            <LocPinY>2.694444444444445</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">3.274305555555555</TxtWidth>
            <TxtHeight F="Height*0.974227">5.25</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>#1e23ff</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">3.274305555555555</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">3.274305555555555</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">5.388888888888889</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="52" Type="Shape" Name="Rectangle No Fill No Fill.52">
          <XForm>
            <Angle>-0</Angle>
            <PinX>8.784722222222221</PinX>
            <PinY>2.450177777777778</PinY>
            <Width>0.9583333333333334</Width>
            <Height>0.3101166666666667</Height>
            <LocPinX>0.4791666666666667</LocPinX>
            <LocPinY>0.1550583333333333</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">0.9583333333333334</TxtWidth>
            <TxtHeight F="Height*1.000000">0.3101166666666667</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">0.9583333333333334</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">0.9583333333333334</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.3101166666666665</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0</LeftMargin>
            <RightMargin>0</RightMargin>
            <VerticalAlign>1</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>0</Font>
            <Color>0</Color>
            <Style>0</Style>
            <Size>0.25</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>1</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>View</Text>
        </Shape>
        <Shape ID="53" Type="Foreign" Name="Rectangle No Fill No Fill.53">
          <XForm>
            <Angle>-0</Angle>
            <PinX>8.722222222222221</PinX>
            <PinY>6.104166666666667</PinY>
            <Width>3</Width>
            <Height>2.375</Height>
            <LocPinX>1.5</LocPinX>
            <LocPinY>1.1875</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">3</TxtWidth>
            <TxtHeight F="Height*0.941520">2.236111111111111</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">2.375</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">3</X>
              <Y F="Height*1.000000">2.375</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">3</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">2.375</Y>
            </LineTo>
          </Geom>
          <Foreign>
            <ImgOffsetX F="Width*0.000000">0</ImgOffsetX>
            <ImgOffsetY F="Height*0.000000">0</ImgOffsetY>
            <ImgWidth>3</ImgWidth>
            <ImgHeight>2.375</ImgHeight>
          </Foreign>
          <ForeignData ForeignType="Bitmap">Qk0AAAAAAAAAADYAAAAoAAAA2AAAAKsAAAABABgAAAAAANiwAQAAAAAAAAAAAAAAAAAAAAAA/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////f//9PT0/vj2////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////kazKcl50+/fh////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7/f9xsfI1NPRyM7Q3dPM//75////2ubt0tDPy87P6ufi2dzg1tTS2dTS//r0/P//xc3TtLW13tXM////////////////9Pv9zNHX0M7Ny8jJ+O7m////////////+fn66t3i////////+///xs/TtLW13NPK////5/T9zcnJ8OPf////5erv0tXWz8rI//nz8//+w8bL28nF////yeLnUj9HvIhy////////8/r9zNDW0M7NzMjI+e/n////////////9/j5697i////////+v//xc3TtLW139XM////5vL7zcnJ8eXg/v//5Onu0tXW0MvJ//r08f/+wsXJ28nG////////////////////////4ezzr7a7p6Wmsqyr1srC//rz////////////3ebttbrAvbm2//jv////1dvh09PP2djX6u3u09LRzdLT7+Lc////4Orytr3Auriz/vXq/f//z9Pa1NTQz9DP/PLr////1+Htv7/D7d/Y5fHyx8rO+ebi9f/+w8fN1cfE2N7j0c/OzM3O9Onk////zNnos6yxu7i28+Ha////4+/3z87MzM/Q6ebi2t3f1dXR2NXT//jz////////////////yt3iwru/9/Ds2eTwwL7C7+Ha5PDyx8rM+Ojk+v//wszStLKyxbez//rv////5/D3y8rJztLS49fU////3unytrvBvLi1//Xs////////0uXqvr3B9ufh+v//zs/T8ujg////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////0Or4N1BdAAAAGQcDl3tp//zv////jrTJAAUZIgcBwrepXoacAAAAbDUk//vja5arAAAAJCAXIBwiyKuh////////////3PT6QmmGAAEGTx0X6sq1////////+v//cW6MtG1h////+///bJKjAAAAIh0WHxwhxbWlwe39ABc6n2ZH////Vo+qAAAAbj4r/+7aaJ/DCgAGazcs6OndKWyBAAAAy5uD////////2vL4PWSBAAAGVCAZ6865////////9///bGaDuHJm////+f//ZYqaAAAAJCAXIRwiyLyru+j5ABU2qm9Q////TIWiAAAAdUUx//DdYJa7CwACZTct9NvI/////////////v//lKu2DCQ4MikhOjo6Ojo6Lywrf2JW9enX////w+nvByU2CwABICcldFpa9fbpVYGeAAACeVJAwsrMDS9EBgAAzqeL1vTzFDJEBwABJSwnZk9Q4enfT3KPAAAASxwX89bE1PL2BSBJGRQNemZcJENDFQQE4racc6XACgUKXjcsYG59AQgUNhQK6cKwpsLTFwwwa0tDUGVlYTEw8N7ZrdDqAhgwHQUGvrOpXYWaAAAAaz0m/+vd////////////tNnuABs3NR0ZkJKHEiREHxcRe2hhIUBDGgYF27mhdp6zHRcXRzk7KzU5kW1Z/+jit9XpFS5ACgABqYZ0zeTgDi9DCQABIyomaFFS+fLo0O75BzJQGhkQwo99wu7uAAAFrnFP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7P/+GyRMn1lJ////////////////KkRzqGpa////z/3+EB8/0YtvrejxAAAFcEI29u3fj6zGRy9A4cav////////////3v/9YXOA+rmd////////////aqrPBwAP0Zt6////mc/sAAAJaDs08+nclrHJRC1C7ci3o9fyWE5c1tvbM0p0Uw8P//jk/v//IDlnh1VI5fDi597djq++f2Bl/ejY////////////2v/9YXB6/L6h////////////YKLJCQAL16KB////kMjmAAACcEI39u3fj6zGSC0/78y8m9XvX1Fc1t7hK0RpWRUR//zq/P//HjJhkF5O4O3j69TP////////////d5u/AAAAZEo1///v////////hcPnAAAN2K+M8/v/FUhrEgkAyayh8Pv4SWSHvoBxwef4IiJF6aaJ////ZqPLfDQ29PvxH12BCAMAwqKW+P/7TW2TrXFn0vH2GiBF1YVw////g77iAAoJ5s+ssNjnCAwam1hJ+P//IzppiVZJ7PPp1ODgMUlowHRb9f/+ABE0jlc9////////K05mcjAZ///+SIK4iUpE////xPX/KSVA3ZV9////////////////aJW5MwEW8+jCbKvIAwIA79y5p9LjCAoXoWFO9P/+Gy5cpHNe////5P/+FzRJmk40////hL/lYSwu8/rsG1Z7DQUAxqec9f/6TmmOrX5vj7XKJgMe5sqm5OPh2N3keICD2b6s////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4//+IC9gk1pK////////////8//+Jjxoq3tp////2P3+MDlQxYVnYKjHOyIp//7k////////39vk3cHF////////////3v3+lqSi7rqg////////rtvxAA8qAAAAz4Nw////UJK6Nxsi//jd////////4eHn373A////W4euGygxAwAA66+Y/////P//KEVyn25g////////////////////////////////2/3+lqKe8L2k////////qNjsAAojBQAA1Yt5////R4qyPCAl//7k////////39vk4cLD////V4OpGyktBwAB7rme////9v//JkBtqXdm////////////////xefzAA0uRyEV///u////////////nszpBBch3rybxev7BRY5vIZq////////////07nBsNjqICZD2pp8////fbrYlFNNydjbAShMq3de////////////0brCu9rmITRTz5B1////zun1ACFGs2hY////P16FpVtH////JkZ5n25e////4P/9KjxYvXJblNvvCgsX58Sm////////X4ytPBUX//7YSIi2e0U9///vyPf/UFBd3ZOB////////////////a5e6QB4s//fR0/X/AB1DvnJf////OVR6qmJM////JkJ0onFh///5////YI6tORsY//rffLvdXS4tvcvFAiJEtH9j////////////0LvDjLLFMBky/966////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////8//+Jjxopnll////2v3+JTROuIJiZqbEak5EycC4xsTE0c7N8evo////////////////3//+j5+d57Ka////0fL/DS1AAAAAa1hSwH1/////T466Ykg8yr60xcXE0c7M8Onn////////vvL/AAAAgkc1/////////P//KEVzlmNV///1////////////////////////////3P/+kJyZ6bWe////zu78DCg6AAAAb1lSxISE////Soi0ak0+ycC4xsTE0c7N8evo////////tev4AAAAjFA/////////9///JkBtn2tb///4////////////jL3gAAcRt3NV////////////////otXwAhcg7Mmlv+X6Jj1Sw5R0w8rNzcjD39fY///9sd30IihC25qA////fLnUj01JwtPXK0ljvYprw8rPzcfC3NfV///5wuf4IjBO0oxz////////0eDycGV7Nz1YExcdsWpc////J0d5lWRV///73P7+Kj1ZvnVchc7iLQoZ7sqz////////T3+dRxkY//3dSIe2fEY+///zyPf/TUpa2ZF+////////////////bZm8OhUm/+PD////zd3vbWJ4ODtaExQbuHRi////JkJxoXFg///6////W4u0Qhcl//bSfrzeWy4ttsbDKkVcwI5ww8rNzcfE3tbX///+krzVLBQr/dGv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////8//+JjxomGlX////vO3/Exgy3IxxjM7pLBcirJaGnLO2DjpTWi0Z/+TO////////////3v7+j52b97mf8f/+Lk5aAAAAqJp/vcDCrXOA////fLbaKBUfqZB/obW4DUBYVCkX/+HJ////QWGUBQIBgDkx///z////////K0Z1mWxc///9////////////////////////////2/7+j5qX+byj7f/+KEdVAAAAr6OIurq+r3eF////da/ULBgfrJaGnLO2DjpTWiwY/+bN/P//OlmNBQEAh0A4///4/////P//KkFvonRj////////////////Y5S+AAAKxJx8////////////xt3lL0RnAAQGjlpD1OLjID9gckEyzs7FT4WWFRwi1Z96tdfxFxI31pp7////VpO5gEY/4enoKlBwaTks0c/FXI+dFBwnw4xqxOHwGCRHy4tv////5v/+aHCJ1dDGnrTBFiI4n1xM////K0h6mWxc////3P7+LT5ZuG1Vt/L7HRIk37qi////8//+EkhjVB4G///vP26pcz04///1teP7KSs/356E////////////////c5u9Ohsr//LN6//+aG+I29TJmbC/FB0yp2ZT////JkJylGhZ////8v/+E0pqThoK//zifLrcWiss1NrSJEdqbT0w0M/FVoqaFRwkyZp3nMDVLRkx/9y5////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////9f/+Jj9yGRMPp5h/THKPHQAC87mf7f/+LTxhtJuPn8PMAAEkaUwx//v2////////////3P7+nqah99SzWoe4AAAAk2FG////rbPBrmx5////5fz+LT5krJOIp8XMAAYrYkcu8/TzgK7KAAESmINtY3KBnlFE+vPw3Pn7FilLdEo+4dHL/vv5////////////////////////2f3+nqOd9ta2VIGzAAAAmGZL////qKm6sXF8////3/38LT1gtJuPn8PMAAEkak0z8vTzeafEAAISmop2Xmx7olVI+/Tx1vj5FCRFe1FE4tPN//z4////////fK3SAAQQuodm////////////3ufture/0s/Nz8nG/Pv5aY2uTDdG19bWMm6PAgQJ3cepepq3AAAAWTIWq6ybDyhRgTs0///9eqG9RDJD2NfTQHyfAQAFvrCUYombBQYKT0czLDZEaWZgJCUiwpeBzO3uLzJLyXlo6fX7FSpMeE1A3dTQgam6BAUTrGdX+v//N1OFgVVK2tjTZpCmEBARzJB42vz7DydQEAMCnYhqSW6LHgAC6bqe////////////+fz+SnaYKgcP27ah0vTuFyQtyZuBxOvvLSpDy35p////K0d7FhAPkYl4RmZtBAQFqntj///9eLHSUiQn/vfgcpi2SDNF2NbVOXaXAgAG3MWncp63HQYSyaSO8+3s////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9vD0/PT3////4P/+Hi1ck1pK////////9/b17/j0K0NwfGRXb4uTLS0up3Fl//79////0+v4Wm6JNTY3mHFj/fTp////////////////6//+nK+uWmllAAYibBsZ/+ra////r669sHKA////////1u/6XXKNNTc3lG5e+/3uwN/0Z3J6ZGRgtqWbi6SxaE9P6L+vptfrABY1LQsLgkxa/Orc////////////////////////6f7+m6yqVmhlAAMeciQc/+/d////q6e2s3aE////////0+v4Wm6JNTY3mXFj/Pzzu9vwZnB3Z2VjuKiehqKtaU5M7MSyn9DoABMwMAsNhVFd/+/g////////r9rxAAoiik43////////////////////1djm9vXv/////f7/lLHNNTZHWDw02b2s////p8PSeWxrpJiOUWptSCkv4Lyr/////v//nbvVNTlNUDY10rSi/f//ssnUjo+QsLevJEZWm3pnvMrNWFJySVBRilpT//z7m8zqABYyLwoMgk9cytLHh4SWvZqe////5vv/coibQjQ1Pzc21LSn////2Ov0fY2bjHRtf5ORLS0upWxg/v34////////////3vP9AlN6BwACXyMn17mytcrSVk5tSU9Qj11W//zw/P//K0V3b1ZRaH+EKSorpYh3///z////eK/NTiIm/+fS/f//mLbRNTZKUzk02rqp9f/+KG+WAAEGUx8gxJ2c////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////oKjFkoCO/////f//IS9jolpM////w/b/iHx/9OfPMFCEq3pn////////////////////////////////////////////////////////////VIqdAAAAMgoL7tTE////////nq3DllNh////////////////////////////////////////////////////////////e7nTrY1////4////////////////////////////////ToGXAAAAOA4P8djJ////////l6G7m1hm////////////////////////////////////////////////////////////eLXOs5GA///7/////////////v//TW6aAAAAvI96////////////rs7mMhc448y5////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////e7nTrY1////6/P//7PDt//jx////////////////////////////////////////////////////////////////////////uOL1bnd7/9nA////////////////////////////JkFhpnNh////////////////////gsDeUSUp9+LP////////////////////////z+76Z4CK/Miu////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////hL3fAAYma1I8V2ltAAAEJwAEbW1tAyVCQCoetbOsAAInnWJG///+////////////////////////////////////////////////5ff7dJWmAAwZEwIA0MKn////////ssjTDyMtFQACrZyT///4////////////////////////////////////////////////////////8urr/fr6////////////////////////4/b6b5KjAAkXFwYA1Met/////v//rsTPCx4nGAACsaCX///6////////////////////////////////////////////////////////8ens/fv7////////////////7f/+UmyJDgIPY1NGcHFxaXBvByA/IQAD7dK4////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8urr///+v+b4BREypG1S////////////////////////////////////////////////////////////////////////////+Pf19Ovt////////////////////////pMzXAAAAl1s2///7////////////x9zqEztSJAAD+ObP////////////////////////////+/z78efq////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3fL6gpKhZ2xxa2dmiIeAeIKFZmZmfXVvwLSjvMDKfoSK0bei//79////////////////////////////////////////////////5Pb8f5GihH57yris////////////r8XSfHh2fIOGqJeO///4////////////////////////////////////////////////////////////////////////////////////////4vX6fY6ehX98zbyv/////////v//q8HOfXp4e4KFrZyS///6////////////////////////////////////////////////////////////////////////////////////////rMbTXGNoWFZWZF9esLGgs5+b8+jf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////2O/5Z2uGwaSZ////////////////////////////////////////////////////////////////////////////////////////////////////////////uMfWfoKJzbGf//37////////////xNrpeHp/h3Z0+vLl///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7+/////////////////////////v//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////yeTubnaBd3l6moB3//Tj9Pb7zrrT////0OT1b3R8gn9+bXJ4waeY///+////ueT1WWFvamZfUk5NjH9z///6////////////////rsXTcWpngYODbGpv2MCv////////////////0ff/X25+aGNcWVdVdmpk//Dm////////sM7ebm1zg4GAbW1u2L6v////9P/+iZ6ra25xzrio////////1fn/X3CBZ2NbW1lXcWli/ezi////////tdLhbW1zg4F/aG1wXl5eXl5eY2Bfknp7/ubclMLUenVvlHp6+OTZ////////ssfbfX18gYGBgIB+//vs////////9v//fJ+yd3NufXt82cK2////1ev5foGBg4ODbnx+nYB7///x////////k8PWUl1ha2hiWVNQs5+W////////////////////1fn/X3CBZ2NbW1lXcWli/ezi////////tdLhcm51c3h5q42C///45eHv1MHV////u9Hlb3BygIGBcGxy1rur////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vb29ycnJ////////////////////////////////////////0ejxLGKDBgAAo2tX//XokrfNPBkk//Lh1+n3Sm+HAAAAQh0My7So////jbC9BhwwY0A6lJGKcnt6Bh8uaT82/OHM////////////us7aIkBRAAAAZj4x3sq7////////////qM3WEC9CUi0pko2Gg4SDEi8/TC4f7Mqz////vdbjL05pAAAAXkEv3si7////bJiyAAAAOCcZ1sO1////rNHaFDJDTysmko2FhYaDFDJDRiob5sWt////wdnmM1d0AAAASzQkd3d3dHR0XGxyAAAAqnlbps7gAAcmhk84+ejf////////wtPhABE7AAAAim9W//vv////////9///hq++ABIkNAAG5dnR////4e/7I1J2AAAAIgADrZWH///0+f//ZIOREgkNc2VYlpSPYHV6AA4XlGRO//rq////////rNHaFDJDTysmko2FhYaDFDJDRiob5sWt////wdnmF0lpGQEBuYt3///5YoajUiUm///xxtjoLlBnAAAAXjUl3MW5////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////39/fPz8/EBAQFhYWZGRk9/f3////////////////////////////////////vfn+kH50//DZ9f/+FVaGAAAAxYJt////4f/9EyYwvoFh////sdLpAAgQfkQw///5////////v+D1AAIneUsr///u////////////m87tFQAS+MGc////////////zuj0ABU2VyEW//bq////////4fj/AilJUy4U//Dc////qNn4AhQh7cSj////nsLZAAQKWDgh//bk////0uv2Ahc/UB0Q//Tn////////5vv/BzBQSyoS/+3Y////seP/ABQj4Lea////////////gLrTfmJM//XkgrDOrWpW////////////3//+FzBFaDIn////////////////////////tdvxQEZT4bKe////6P/+LlFoAAAA5bGZ////////d6LGAAAAvYFj////////////ga/PAAAAsodi////0u78Ahc/UB0Q//Tn////////5vv/BzBQSyoS/+3Y////peb/qoV0///94Pb/ADNgEgAB366X////tuT9GxoX5q6Q/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v7+e3t7AAAAAAAAAAAAAAAApqam////////////////////////////////////wvT/n5KB/97Nrd/xAAsXBQYFWjoo//vh0//9FCYusHdb+///NXOTIQAD+9C3////////////////ToehEwAC6sGp////////////kL3aFgAZ3q6K/////////v//X5m2DQAB4ayS////////////////erLKBQAA1J6F////mMbkBhUf6sakyej5Aw5GQBcE+Na/////////Zp+6CwAB26aM////////////////g7rRBAAAzpZ8////oM3pABMgy6qN/////////////v//497b/fjyz+f0MTBdtqmTuLi8v766RXqVAQAC1qiG////////////////////////////eqjKRiA38uvDX4m/AAAAn3NZ////////3f3+ADNTURkM//no/////////////f//HkZeSAAJ++zfbKzGCwAB26aM////////////////g7rRBAAAzpZ8////sun8spN+//buirzSAAAGCAgIglxD//30rN/1GhkXzpuD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+Pj4TU1NAAAAAAAAAAAAAAAAenp6////////////////////////////////////v/T/nIx9/eLRLm2UGQQAyMWzXWV0xnpv5f/+EiYvs3lc9P/+D1J0QxkG/+zU////////////////g7DMAAAAwY1x////////////jrvYFgAX3q2K////////+v//O3mZJxAC+NG2////////////////qdLkAAAKn2NN////mMfnBhchkop4FkxoDAAB6LOS/////////f//Qn+fIxAC9Myw////////////////sNjpAAAPl1pH////oM7tABMgyaiL////////////////////////+///T3+fLh0ZrqGaW3+UAAsdWwsT/u/f/////////////////////////////v//cI+tDhspAA0SaSki/+7b////////xu7/AB05f0gp///z////////////////RW+XFQAC5sy0To2pIxED9Myw////////////////sNjpAAAPl1pH////sOn/spF86ujjAEFnQRUJzNzOWkpb26KWuPH/GRkXzpuB////9Pv/3+Lh2tDV+fDv7PT5zsrR7eXh/v//4+Tr09rf8ezm////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////hISEAAAAAAAAAAAAAAAAsbGx////////////////////////////////////uvD/sZyJvc/JBhkgbyci////cqTRbFRf9PntGDI8sXdb9v//GlN4Qx4I/+3V////////////////fKjCAAAAvIxy////////////jrvYFgAX3q2K/////////P//RXmdKRUG+dO4////////////////o8vdAAAFmmJO////msjoAhMgKSQeNDg4HBAZk2ZR6ujd/////v//S4CjJBQH9c20////////////////qtHiAAAJkllI////oM7tABMgyaiL////////////////////////////or7WVklh///7pdb/AAgZtIVi////////////////////////////////////yPf/ACBJEgAB78mv////////////y+3/AB88fk8v///x////////////////QmeLDwAB5Mq0V42tJBQI9c20////////////////qtHiAAAJkllI////rOf/v6GLmcDFAAAAmlZH////SoC5kXFryOLbHB8czpuB////2/P/N2F4PQYZ68q5tdjqOTBKjIR9o62qfomWKiI0yqKL///+////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6urqWlpaGxsbIyMjfHx8/v7+////////////////////////////////////yPX/nZqTP05pCgMO3K6O////3Pz/YlRfpZSMKUNQsXli9v//D05wRBMG//DZ////////////////i7rcAAAAxoVp////////////jrvYFgAX3q2K////////////PHaaKA0A/NW8////////////////s9zvAAAJo1tF////l8bmAxQe4L2d////nrvQABEdWC8e/fHo////Q3ydJQ4A+NC0////////////////uuHzAAASm1FA////os/tABUhyKeK////////////////////////////3/f/Z3d34q99QXekLAIC9+DK////////////////////////////////////VY2xBwABHxQXwI96////////////yO//ABkzgkgn///4////////////////S3ipGAAC682yT4qqJQ4A+NC0////////////////uuHzAAASm1FA////t+n/mI6HJEBcJAsJ9tW2////yfP/Y0NMlpyYJywzzJqE////////V5DDfWZb///o+f//3e7wgbPHDQYTs7SanmRf8tLK////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////0tLS29vb////////////////////////////////////////////5v/+RF1pAAAAayon//rr////////g5/DGSs8FBkkuIRu/P//S4apEAAB876k////////////////K3GdHgAC9NS92cvb+/X0////j7zaFwAZ37CM////7//+5dXOdaW8AAAA05V9////////////////XZ3DCAAB56mP////mcfkAhYf1bCV////////NnuVIgAD+M63////fLHLAAAAzI92////////////////aKXLBgAA4qCI////lcblABEezq+Q////////////////////////////////qLnIICE1AB0XpG9V////////////////////////////////////nM3mAAAUgzwkp83KJzBM0J+C////////6vz/DUFqNw0G//Xb////////////9P/+BDNgWxEW/fHogb3XAAAAzI92////////////////aKXLBgAA4qCI////z/n/LTtIAAAAjktB////////////YXqkHig1GRId06KL////////V4/AeVpY//rl////uuHxUF5qSS4nY4F8hU869NzO////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//9CDJHAAAAzaiI////////////6f/+DSw2AAAAxo9x////3/P9CDVGPBAI/dbI////////d63EAAAAtoJe////VG2gs5+U////lsbpEgAM7a6M////XJfDqX5p7/b5KFJyIAAC7bqq////////n83eAAUVj18////5////l8zsABAd476d////tdXnARcnUhwT/u/c////8v7/LVV4GwAC6bOm////////ptLiAAkZh1g5///2////mNLvAA0c1quJ////////////////////////////////5//+AEBfGgAC9dG/////////////////////////////////w+DrCR8rPicU/+7a////qdrwPzFI48Gq////////sdnuAAYTfics//rt/////f//NHGREAAB4L2Z////8v//LVV4GwAC6bOm////////ptLiAAkZh1g5///2////vu//ABIgAAAA7Meq////////////yPz+AAUNAAAA8rqZ1Oj/0NXTcKHAj3lzv87L9ezcV6PAOBcJ/+zdMmqOXQAT//Lj////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1er4MlFuAAEGWzEj/fHi////////////////eqG3AAEOJBgRrpF/////2OrxL2B/KRgfUUs7NDc3LBgdupWC///2////QYevEQwUNzcxGiQrAAAALBwWNzc3AAISqX5k////5vn8SnyWIRIfUEc3QD86JBYen3pm//bq////nrzRFyQ7AAAALCMcNzc3GCIneFdK59TD////////////6Pr9Tn+ZHxIfT0Y2QUI8JBYfmHVf//Pn////pMjaGzBEAAAALRsUxqSW////////////////////////////////WHyrZ0JT///r////////////////////////////h6i9Dx0lAAAAIxAN0LKX////sdDgAAQ0HQ4GnWlg///0////tM7ZGjJRMi0pT1FBKjY3Qicj3L6n////////////6Pr9Tn+ZHxIfT0Y2QUI8JBYfmHVf//Pn////vtnsHThQAAAAd0g5///1////////////////VH2TAAAASCcclZeZO2JyFh0fGxoXNyQklJmNAiBAezor////gq7UDAQSx6GL////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8/n+0NLW29nX+ezo////////////////////9///3N/hzdHT5+Da////////7//+vsjPt7ezurWz5tbQ////////////6vP20NLWxsbH0M3J29zcys/RxsbG19PQ9fDr////////+f//w8/Ytre0uLWx3c3I////////////5Ozy0M3O3Nvays3RxsbG1dHO//v1////////////////////+v//xNHbtre0uLWx28zG////////////5O/10M7P3NvaztDS7uTh////////////////////////////////5+356+3y////////////////////////////////3ebs0M3M3Nzc19fY7+Tf////6Ozz2drfzNDS49TR///9////////4PX6uMDDt7eywLu29eXh////////////////////+v//xNHbtre0uLWx28zG////////////7fT6z9DR3Nva//Lu////////////////////8/r/3Nzdz8/Q7Onk2eHl09DO0dLT2tDP5unp2NXZ9+zq////+v//1d/h7ujj/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////f///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////f//k6vGloiY////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wdnoWD1O0qmQ/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v//+fb5//38/////////////////////////P7//////////////////////////////////////////////////P//////////////////////////////////////////////////////////////////////////////////////////////8fb4/Pj1/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////P7/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////z+n4QVBZMDAwMzExlXhm//zv////jrLIMTA8PDIwwbWocY2bLi8veFJE//LfpsvdJiwzLCwqWkxF+uTX////////////2/P5UGyELi8wVjUy6cmz////////////p6m3voaC////////pcXVJy41LCsqVkhC+e/duuH4KjZJsIFr////ep+0LC0tbUw//+7ZmsvkLSs2fkc+9Pjub6CrEQgJuYJv////////2fL4TGh/Li8vWjgz7M23/////////v//pKOwwIqE////////n7/PJiwyLCwqW0xF+vbhtdzzKjVHt4lx////dJitLC0tclBD//Dck8TeLSwxekhA/vHi////////////////0+fxVm+DLi4uLSwtMS8vVEI4vp+Q/vzy////5vz/TWl4JyUmLy8uuZ+S+P//ZIeeMDAxf2lbwMrLPU9YMC8vzKWP8//+WHSFJiUlLzAurJSF6vr4WnOOMC8wWEA689bB7v/9QliALi0tnYFwZYaJMy4v57Sgo9HiLDE7bkU+cYORMTI2STcx4b+u2/H4QEhvXj5AUVpalWNb///+q8/mMDpGOjAyvbGncY2bLi4veFhI/+rd////////////1e/9LlhvQC0vt6+jSmCBMy4uoIV1X4OHNy4x4rmmqs3aNDpAPjAyQDMxzqeP////ttTmNEFKMTAwp4N27PTuU3KEJyUlLy8urpaI///+5vv/P22FLi4t0aGQ1/38ND9Fw5Z5////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9fr9r9HcAwkkbjMo6eTe//78////3/DzECRPdD0w8vDupNTmAAAar2lP0fbyBSAwKQECrKOTTmV/YERO9ezT////////+Pz+qc/kLz5LwX9p+vTv////////pdLqGwgyxYVn////v+r7BiIyIwADqZ+PVGqBXENP5+TaTYyxd1hP9/fzPGqPGgAC4Laf//v4K098Uyoktq2d4dnVT4OYMxEY8NC5////////9/z+o83jLztHxYVt+/Xw////////nszmGgMry4xu////t+P3Ax0qKQECrKOTTmV/YEhP5uTdSIisgF9T9/n5M2GFHwAC5Lum/vz4Jkh1WDIor6qe6MrA////////////rc7jAxUdJBsWybSm2NjY19fXXoulCg4U372c/P7/ToGZAAAAe1tPpbKvN0Bc1q2YnMbdCgckxYds8vT0OXOZSAsU7OTQX5SrAAAAc1BFr7qyNEJgwJyNp8vaAgIgp1lK/PfymcvmAAQTl4VojaavAAcNZTIn7/HcMlJ9Uy4mt7ChqbG2FitHkE049vPxJEFjVSci49vHx+LgLjVInWdR7vX4JVeHYCkn8e/onM7lAgAYtXJZ//v4////////////eKbGFQAPr5+CbZikAAAEoI90hqGuAAYKazks5+7eLUZscks92tfXncrVLDI7x4Fs8ff8WoyuPA8U4NnIV4qfAAAAd1ZJq7axNkBfyaiWoMbZEAIdmYhr0b+2xdrhJjQ3wZN3////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6P/+IC1dl1pK////////////9///Jz5rrHpo////2P/+KjROyYdqcrbRFQ0Y7M+2////////rKKv1K+t////////////3v/+ipmb9L2h////////2fn/Aj5gAAAA0ZB2////YKDGFAgU58iv////////raay2K2q////RmKIVGJqCAAavXVi/////P//JUFvnGtd///9/v7+/Pz8/Pv7////////////////2/7+i5eX9cCm////////0/X/ADdYAwAA15h+////WJi+FgoV7M+2////////rKGu3LGv+v//RGCFVWVpBwAWwn9o////+P//IzxppnRj/////v39////////4ff7FzFZFQQA69O7////////////mc3rABEd3biX0vD+ABlAhF5G////////2O/4wJSYtdvsISZE3p1/////erbXkU5J1uLiAC1Uc1A8////////3/n/upCXwd3nIDFR0Y50////rdfuABAn05yA////M0tupFxH////JEJ1nGtd////3//9LD9cvnNas+n7AAsf0KiI////////T3uXRxcQ///jSIe5gEdA///1yfj/SkdY3ZWC////////////////aZa5PRgp//jSrd74AA8i3qaK/P//LkNlqmNN////Ij1to3Ni////////THaOTiYY///rfr3fXy4uzdfQACVNe1c/////////3PX9uZWai7DCLhUv/9y5/////v3+////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////8//+Jjxop3hk////2v7+JzZQuYJiY6XDb05E5dnQ5eHh+/Xy////////////////////3//+j5+d57Ka////+P//PGeAAAAAOyQixnp2////TI+5Z0c95dfK5OLh+/Tx////////////vPH9AAAAWjQl//7v/////P//KEVzlmNV///1////////////////////////////3P/+kJyZ6bWe////9///OGJ6AAAAQCYhy4J8////Roiyb0w/5dnQ5eHh+/Xy////////////s+v2AAAAYzwu///z////9v//JkBtn2tb///4////////////m8roAAwZoVtB////////////////q9/6BBgk8dCsvuf7JDlN1J6A3uPm8efl///+////sNzyIilD2pp/////fbvYj01JwdPWKEVdy5R23ePm8Obj//78////wOX3IjFO0Yxy////////la7Ka0JQeIGPIi48rGRV////J0d5lmNV///73P7+KjxYv3Vdf8zgKQsY7siw////////XYqtRRsi//zYSIm2fEY+///wyPj/TUxa2Y99////////////////bZm8OhUm/+TE////kanFbUFQeYOUICk3smxa////JkJxoHBf///5////ZpK8Qhkr//bRfbzeWy4utcbCJ0FX0Jl73uPm8ebk//79////kLvTLBQr/dGv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////8//+JjtmtoJs////0//9GyhFzIRocrjZPSYmnY+Ckp6eSmlzgVxN/+PP////////////3v7+jJ2c7bCZ////YYudAAAAZFxCuLWwsX2I////Xp3JNyIinIx9lJ+gSmt2fFpM/+DK////cpjHAAAAlDYw////////////K0h3mWpb///5////////////////////////////2/7+jZqY8LOe////W4OWAAAAbGZNt7Kts4CM////WJXDPCYinY+Ckp6eSmlzgVxN/+TP////aZC/AAAAnUI5/////////P//KkNxoXJi///7////////////bp7FAAMNwZV2////////////1+juPmGHAAAApG5PyN/nGTVThVg+sLWvboqOU1ZY4rCSvuP7IB5F766S////bavMiU9G09/fH0NjflE4srSvdI6SUldc1qKH1vP/IjFX5Zt+////////tbvPt8rTSldyCg0Zo2ZW////Kkp9mGpa////7//+NElnum9Woeb1JA0X7s+3////////KGR+PgoD///oTIW+i0tF////yPX/PD5T3JeC////////////////cpy/Oxss/+zJ9v//trvNt8rTR1JuCQsXrHBe////JUFwsX5s////////L2qPPw0F//vcfbzeXC4sxc/LHTxcgFQ9sbSvcYyQU1dc1KuRmr/VLhkz/9e1////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////9P/+JT9xLhsV3cWshLjZBwAG8aCE0vj/Dwwt3LWdzff/AAAtOQ4C//Ll////////////3P7+k56b/9ewmL/jAAAAUisW//3ssLnHqWV2////x+/3DQwv0qqT1fr/AAI2MAYC//XkvOL5AAYrbmFQZFxi15mB/////P//JT5omGpY////////////////////////////////2f3+lJuX/9q0kLrfAAAAVy4c///vq67ArWl4////wOz0Dwws3LWdzff/AAAtOgwC//jnst30AAYocGdXY1lf2p6H////+P//IzpioXNf////////////////bZvCAAENvZFy////////////xtribm+BhoB+oYmC8fLtOGOJUiEq////N5K+AAAAzqd/jarHAAALeUkp6uLUJliKbi0p+vz4THmcRRcj////T6bOAAAArYtkeZytAAAPZ041hIGKipyeAAAJ+cee////KEJorVJB////JEBrm21b////k8DRChAetWxW6f/+DSFRrnNd////qdruAAMUoFxB6v/7FTBlHw0Nz7SXgrLUCwAO46aI////////////////bpSzNxUf//rV2v/9AAAQ/9Cj////IzldsVlI////KUV7Lh4Zy7yqkri9AAQUgEgu//71eLTWViYo9vXhQm6TTBwm////RJ3FAAAAzKF6m73QKRMk/+C/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3//+HixbkldI////////////9P/+KEBwQzw1WGtnAgwWcC8o/O/m////m7zUVmJ1MD1AWzUy2c28////////////////4v/+qLKtmJ+SACVSNwAH+M2z////rK65s3d9////////n8DYVmF3Mj1AVjMw19O/wuP5QV5xJCYgt5+MbJGkThMX6cGxoNjrAAojLwoOg01b/Ozd////////////////////////3/3/qLColZ+SACBNPAAI+tK5////qKWyt3t/////////m7zUVmJ1MD1AWzUy2tXGvd/1PVltKSgjuqWSZIueUBIW7Ma1mdPoAAYfMQ0PhVJe//Df////////m8zqAA0ZpmtL//////////////39////////////////2ufzZ4CgPj9RMCcpmoBx+Pn0gaO5Oi0qaldGP1VSEAAFv4h3////4e73bIimPkJWLSUvk3Rn7PLsfZ6vTk5Kcn10AAAWakYxi5SPUj9XQlRWWiwu+dvVnc3qAAohMgwPgVFemrCvOTRGp3Nw////s9LoUVVkSDk5Fh0lkm5f/+/nze31PlFnRDArY2pdAQwWbCgh+eze////////////3/P9AEZsDwABXycuzbyzf5WYUjxRQVJVXi0v+NzL/f//LEZ3ODEuSFlXAAACZUMx8+TV////dq3MTiIm//DX3uv1aYSkPkBULyYrm3tu8fryI2eMBwABTyUmxaCf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vrzPu6ez////6f/+Hy1emFpK////4P/9sqio7OTULUt6r4Bs1+XoycXD++vn////////////ytXhv7u6+evf////////////////////////bJaiAAgNDwAB0ZyI////////pKm/nVxx////////////zdfjvru69+fd////6fP62tfW5+bk6+no5uvt1tja9+nj4/D4PnqaeVlN1b29/vjy////////////////////////////ZpCcAAcMEwAC1qKP////////nqG3oWB1////////////ytXhv7u6+evf////5/L529jW5+bl6+no5uzt1tfZ+erk4e/3PXaVfl1P1sHA//r0////////6fv9IT1pLgEK7tS/////////////5/7+YFR05tbG////////7vz/ubm/2cjA///+////8ff57unp9vb2y9TY2szJ///6////////8//+ubrB1cS////6////+v3/9fb2/P790Nvd8ebf////yczcxcPD7tzX////3e73P3mZeVlN1r+9/fz17u7y8Onq////////3ezzvrm5zsbC////////9/j87vLy9uzq3+rtycbC+urk////////////////9Pr/dK7MPUZKyJWD9ubk////yMvZxcPC8N7X////+///KEFspXdo2OLjy8jH/vTu////////e7TSTyMn+eHO////8f7/ubnA18a////+////j8DYM0xVwYh06t3c////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////hK/TIy9Gx6uSqcXKAggwYiIeysrKSXmYTz042M69CCdSpGtW////////////////////////////////////////////////////9vz+wtjfGEBUAAAAmoFr////////4+rvSmFxTB0Z4NvY///9////////////////////////////////////////////////////5f/+49LO////////////////////////////9fv9vtbcEzpOAAAAoIZx////////4OntRFlpUSIc4t3Y///+////////////////////////////////////////////////////5P7+5NPO////////////////////v97uFyFBOxkbvKydy8vLxMrKMU95GwAC69C5////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////5f/+4tLO////1/L/XWh5zKWN////////////////////////////////////////////////////////////////////////+v//09bV/+zm////////////////////////zu3wAxMenmRH////////////////6/L4R3uVOgcN9+TP////////////////////////////1d3f/OLd////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vODyM0xkNzY2Nzc3Ojk5ODk5Nzc3NjU2i3llpKmxND5MupBz///+////////////////////////////////////////////////2/P5U2+FODg4inNk///0////////lbPDNzg3ODk4jXhq///1////////////////////////////////////////////////////////////////////////////////////////2fL4T2uAODg4jnho///2/////v//ka6+Nzg3ODk4lH1x///4////////////////////////////////////////////////////////////////////////////////////4Pb/aYGTMDIyMC8vNTMzbHRpeFRP7dzM////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////yOj4KC5TqYBt////////////////////////////////////////////////////////////////////////////////////////////////////////////m7fINDc+tYlu//76////////////sc/jNUBKUjIw+e3b////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/3///7+/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v///v//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/r9//39////////////////////+P3//fz4////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////5/T3xcbIy8zN08vH/vrz////8uv1////6vP7w8TG0tHQw8fK59nT////6fb/sba8tbOx1MS9////////////yNvivrq7/e7o////xM7fsaqtu7az+ebf////0t3ozsrHyc3P69/a////////2ej2r6uytbSz5NHJ////8vr/ysrNz9HQ1tHQ9PLwydDew7e59+3l2ePnzcPH+vLu////////4/L2wcHGz9HQ2NTT//r1////2N/k087J0NPTv8HF8efg////////+///usfRr66sraqpwr23//34////////////////////1ez1q7G2sK6tsq2q6uDa////////9v3+zNPazMnIxsTI9ebf////8uv2////+///zNHZ0MzJy9DT0cnG/fjy////////////////////////////////////////////////////////////////////////////5O/4+vz4////9Pf96PH0///7/////v//2ODozMnMyMvP8eXd/P//wc3Uyru80tba0NLO0dHQ7u/t0dHS0NLR5drX//79/////////////////////f7/5vP0//nu////////9f/+8+jh/vv7////////8Pf8ycrTztDQ1M/O+/Xw////////////2ebtxsLC0tHRw8TF8ufg////////////3ujvycbNyc7P4dbU///7////////////////////////////////////////////////////////////////////////////////////////////////////////////7Ozs8/Pz////////////////////////////////////////vN3qEz1ZAQAAf0o3//HeutLhZkJZ///6xt/zKENZAAAAJBAJvJaE4u72J0pyOxcReXhyQjpDvZCC////stjvABkzKxsWzauUj6e7GQYmdFlURl1kcDg39eTfgKC+AAcRGwACxqeX////w97oEBxJVikkbHNwTS4z4cm12fb/MlNsAAAAelZIjKOrAAAeSCcfenJzCiktPAkS8c+9////////sdjoEjpZAAAAiWFP//Xp////hqa9AAgbAAAANxQR1rmn////6f38U3+SHRUaXFNLUVFNBhgie19M/Ojb////////////psHMFS09OzYwYmBZKzc7JCAb2Led////5fr+VXqXAAQNQA8S4buk+///U0tx4Me38//+YICUAAQNCQABgFxK++vb////////////////////////////////////////////////////////////////////////////SWyhyKCN////ocLkVlVv//jS/////f//iarAAw0pIQYC17OhibPOAggWSSIhO0hRAAAAZEIsztHNIUlhAAAArXth//33////////////////////5fb/T3WZ6LWQ////////n+L3ilVK++bc////////1Or0LFJ6AAAAdVRD9eLV////////////lbnOFCY6AAAAOiQZ2bin////////////pMDTCR9CDwABqo59///1////////////////////////////////////////////////////////////////////////////////////////////////////+fn5iYmJPDw8R0dHqqqq////////////////////////////////////////rev/eGVg/+fR////OnuoEAMA6q6W////1v7+DiEswIFg////PnWbFgIA/+fH////ms/sKw0J8+TEaprAMwEW7+W9psvcAAANqnha////+v//GDRIiUsu////N2eWk0Q/////9f3/BjhhSRYP///v////YJKsQwoF//jotfX/Mhks68ewT4+wLiIK///7bqbMCQEKv5iA//z0////////////4v/9KUZksIFm////////yvD7ACBENhQT/+DR////9///MlqHFQAC7L6s////////xePzABQpcEcq//ru////p9DpAAAJkUsz///6////////PG2REAAB4cKf////8f/+ZIOV7qqL////mc/1AAwSnFM9////////J116Wh8L///0////////////////////////////////////////////////////////////////////////////4v/+AB9AQQ0I////ZqDEAwAA4ayR/////////v//SXGQmU0/////KlSJaTAu7fnkpbrEJhM29b6c////iMvrLhAe8NK5////////////////////////xun1DRIupmFP////////XI+9IAYN7dO5////////////rOn/NRsp78qy////////////////////jsTlChcc7ceo////////////////////aZ67cDUw////////////////////////////////////////////////////////////////////////////////////////////////////////////m5ubAAAAAAAAAAAAAAAAxcXF////////////////////////////////////v/L/opWD/97O1Pn+ABc1AAAAbTsn////0//9Ficvtntg4vn9ADBUh1E4////////1fX6IiZC16yJcqHGQR4t///Yb7vkHhcX9ti9////////RXOYUyUh//ziPHGekltL////reP3AAYhvIpq////////ncXYIBEf/9utq+//LRom4Legm8/gBAMg76+S7//+LCdBz5yC////////////////////v+3/FxlA5bGV////HjhtFQAC07SY////////lcfbAAAEtHdh////////////////dKzNBAAA6qyN8v/+DT1oNwoC//bf////////////6//+ASQ8bCcX//nv7f/+l6+z7rGV////OGF9AAAAGQAC/e3M////NWR3UB0L//Ph////////////////////////////////////////////////////////////////////////////dqrYIRkeN0E6tK+VNmN6Gh4VlId4//3x////7//+QmaDikI4////M16NfE1H///+r+D2KB079cio////n9jwOx4n47+q////////////////////////hLvPAAAAQBoQ///q8v/+Ij1cAAAAxZdt////////////nNbxMRkm3rqnutHcjYSEfICIrZmU//vrir3dDRcd4MOl////////////////////Xo+sZC8r///t////////////////////////////////////////////////////////////////////////////////////////////////////+Pj4Tk5OAAAAAAAAAAAAAAAAe3t7////////////////////////////////////wvX/mYx+/93MT5fADQQAhoRzVlNS6aiM2f/9EiYttXxf1fT/Dy5NpltK////////wOjyIyM22bKSc6TIOhYm//fPXavRQhQb993I/////f//N2WFXisj//vmO3CblFZI////n9v0CAcez5J6////////iLbMJxIZ/9y3qu3/LBkm3LOb////uMTXaFFmOEREJgcR16mV////////////////////////lb7jNCw5PFJaAAAAml1G////////////UI+uGA4A6byf////////////////v+jyAAAbqV5K1v/9ABsziEop///2////////////////P2iLIQAD99e89P/+ka2v/7mZtOX/BAkZa0kxXnt/vWpX////LmB2UR0L//Lg////////////////////////////////////////////////////////////////////////9v//F0Ffj1dD1ezmCQ01NiEXzdLAgnFt5K+Y////7//+QmaDikI4////NV+QdEM+///xq9XrJhw58Mal////odXwLhok4L+o////////////////////9f/+LEeDHw8WUD0u8Z+DqO7/AAgaPkM2gUND//jv////////nNbzMRom3b2oj7PJRDk7Kzc/d1pO//XejMHkDRcb68mq////////tpir1qu0////Xo+tZC8r///t/////////////////////////////////////////////////////////////////////////////////////////////////////Pz8Z2dnAAAAAAAAAAAAAAAAlJSU////////////////////////////////////vfL/qJKC1tjNByY3TxMT////aYy4fkxY8//8FSw3snhb7//+J01sf0Q2////////hrjTEwwG5cCdeKXJOhsr//3UkNLyLBQd79G3////5v/+ADFJbTQX/f7yMmCPiU9D//79w/D/DRsysHtk////////TIGdKQkB/+jGqer/LBkm37efxd7rc3SE2u3ieZ24FQUWy5+H////////////////////////////LnumAAAAXicZ//Xi////////////Wo+vGxMK6sKl////////////////t9/rAAATmlRE2//9ABw8iFg4///1////////////////PV+IEwAC8c+08//+nLCw882zSoukAAAA7MCi2f3+SjRY//znM2mDUBsK//Lg////mr3PTEFLpm52////XH2ma0hMs7mzub6+Slx6g29g/+rc////////////////////////pdruCQgW16eH////Gj9ubC4i////XnenlX+A///77/79RWaDh0E1////OGCRd0lE///7rdntIBUy4raU////crjZOAsZ78y3////////////////////v+n2DQodn2hRoaa5eVVsWoaeIwAD18OxR2GM6Mqr/////v7/ndbxMRgk3rmi9Pf77Ovs6uzs8e/t//38iLjXBhEZf2hXpqWhW3+QNxAe5Kma/f7+YY+uZC0q///t////////////////////////////////////////////////////////////////////////////////////////////////////////zMzMHh4eAwMDBQUFPj4+6+vr////////////////////////////////////wPL/qqCTaYKQBQkNvYJo////tuT/YldfxrmsIz1IqnNb////hK7PLxkw2rCQvdjVHipHbSoq9/fwSnibKQcO17Og3+/uN0hxlmdW2NbWUXuUGRAT1amQnMnVBg8fJx4SP0dNUEhHYWl8UzZC28ivk7fHFA8cmVdK//35o977LBkm4bmkrNThGxQW6dm3k9PvNxUj4rCb////////////////////////7//+IFqBAAAAgD80///7////////////WY6vGg8G6sCj////////////////wObyAAAgn1NB3P/9ABo5h1Ix///2////////////////QWmWGAAC89G19f/+p77AoJqVACpGaTMZ//nq9v//ZoeiwJeDRXqOThsP//Lf////vdvrHzNS1Zt8////mrPTr66lQGWEhWtcbHiBn0dA//r3////////////////////9Pj9M2ORMgAG9d3EuNzuEBE3oF9N///7k9L3alFN8dTDpMfcCRkzkEc98/r7HT5lWi0n5NHHtdnjBgIxUjkiubmlFj1nXhYe/+nZ////////////////////bJzDCwgI88Ke3v7+G1VzAQYGiFY9///4eq3Io2VW////6PP6PnSUGQAC476o////////////////////ibbUCBQYjnViuri2cZimRy0s77+nyOb1GDlWXCAh///r////////////////////////////////////////////////////////////////////////////////////////////////////////////4+PjlJSUoKCg8vLy////////////////////////////////////////3v/+ZHF5BgAbRQ8X++fR////////b3qbRktVHyw6rHtq///+////p8vgVEhRMzU1jXdu//fp4vj/AlN7BwACXiMm27iw6v3+b4CTPTQ2SUE+5Me4////1OPsh5WhsKqgSm59Z00+/v/0jLXOSzg+NzM0sZaJ//z0////o933LRom3bOc/f7+kZ22UUxlSUhEtIN2//7+////////////////////////Y5OvBAAAeXFWOFxool9W///2////////cqjDBgAA1Z2F////////////////ndDrAQALznZf5P/+ACVJYSkY///0////////////////G0p4RgAK/eXS////kbO/IRksBwAB06CC////////t83bQz1XMU5WWC0s//Hd////1e78M05y77yY////5O34qtLYJiE8TjM2gYBtu3Bh////////////////////////yt/wUGl4alJMzMW5fJOpUE9TjG1s//rkqs7hVjFQ3rqu4vTzlZunx5ufwubvACdNIQYGfEhSnrCzLSZCraGKSGp5Oy0w2bGh////////////////////9P/+HzpmWQ4a//bj////VomlAAAA0KaJ////ttfoMj9g///j9///utPWh3CD59PL////////////////////grPSDBcb5cOm/////f//uqux28HH6Pv8oK22nn6L//7u////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8//+GkJUAAAAsYBk////////////zO//AB0qAAAAz5d5////////////////////////////////u+T2cHt9/9vD////////////////////////////////////////////////////////////////////////////su//Lxkn27CY////////////////////////////////////////////lr7VAA0UiEY+///9y+r8O0xpvYh1////////2vP7DyVUQAYG/93S////////5v/+DTpXQSIL/eLQ////cZ3DAAAAvXdk////////////aKLDAAAAuo9s////////ZZ+4AAAAVi8b/+3j////////9v//PHGGAAAAeEgt////0uP81uvvTmeM48Kn6fb39v34JWyIi1I8lrvAJgoQ25V9/////////////////////////////////////////////////////////////////////v//7vLy/fTt////jMrjloN3///ztuT7Jxw7+Mmm////////////////////////////////lsfwARAUxpp4/////v//IUNnXCAe//bo////8v7/ZJKo5qKC////8Pf98+7p//35////////////////////gsHjBxYa/NS2////////////qJOf48vF8/z8+vPs////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4O/7TXOTAAAAIQEC7t7J////////////////TnSHAAAAPyESw66g///9////////////////////////////+ff29Ovu////////////////////////////////////////////////////////////////////////3u/8MmiEAAAA17Kb////////////////////////////////////4PL7aIqVAAAAAAAAkmtP/+/l+///OWeWAAAAgFdH6c/B////v+LpHUFSNg8XgHlteHp1IzNESS0c5MGr////////+v//ZoaSDAAQaFhOgIN3UGdvEQ0SonZY///0+f7/kK6+ABQnAAAAspJ7////////////////psvWAAAKEwACo4lwY42qOUhGChgmLy8nfG5if6iuAAAA06B/4vT3AAIsczso//br////////////////////////////////////////////////////////////////3fX+DDVbgEo2////////9O/u7/f8T3eaAwAA67eW////////////////////////////q8fbAAQwAAAAroBo2+foNmuSAAAANhcG4M/D////yuXxJC1PMAAG7c24ebnbEgYN48Oo////////////////r8vaGTxVAAAAUj4wamtra2tqOl5qQAAK58OwNnKZWCwk///v////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4O/7foiUjoqH2bqu///+////////////////2vD+j5aedn2Bwq2f///9////////////////////////////////////////////////////////////////////////////////////////////////////////////3u/8gYuTdHl65tvP////////////////////////////////////4PL7eIeViYaEkJCQpJKL/+/g7/r/nKe6iIyJfWtz6c/B////////5v/+b42fZmRaZGJcjnFt/+7i////////////////////m8vdXGptaGleaWFd1bGl////////+f7/m6y/hn96rpmR//Pp////////////////+P//nLPCgYeMoo6FwczMe4CFhIB9eHl7wqqhorjCoYeL//Dn////ocPSlZGL//br////////////////////////////////////////////////////////////////6vn/b4agrJGL////////////7/7/laOyk4qA8NfH////////////////////////////qsbahICAkJCQwKOh2ufodomdkJCKioSN38q/////zOPxfXySg4SI7cy3tt7tbGp17NrN////////////////rsrZfnh8j46NcHV4ampqampqdG1qtZ6S/PrzhaO+lX+A///1/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7vf6mKKxhYCA1Mi6///7////////////////////////////////////////////////////////////////////////////////ytzhj5aek4mIrKah39bN////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v93pMyA6UVNVN01C06WF////////////////////////////////////////////////////////////////////////////oNHvFRcgOi4nVThAOTlDS0ZA3c2+///7////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9/n98+/u////NF59aU1A///7////////////////////////////////////////////////////////////////////////iMTeSQgm/+vS////////uO7/ZW1w/d67/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////f//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////yOPuZ3J9gX56a3F2waea//76////////////orPPaGtxs5KCvdLPd3Z6y6+ql7e7e2xofoqLwaGQ///79P/+d5+vamFl6c/D////////////////RGmVc1th///71e31aXZ4fnJlsaWujZKl38u52OnwfIiKgn11goKA58Kt////zOr2a3R/mG5q//nt////////////XGOXT0VJXWFhX1tZOU5XYVJA/t/T/f//fY6wcFhecG9vzaKX////////v+Dsam5zpXx0///6////////xNbkc3aJfn19m3Vz//bqvdLsbnJ3nXlo0NjOf3+AupeTqMbIdWlxg4+Nq5OF//Tm////kLjJYWNo5Lep+///fI6XWl1fhnZt///7wt/0cm96eoGBrJmQ//fu////////////////////+/z+ssjc//bo////xtrvzNTX///5////9Pz/kKK4e3l1fHh269PDy+jxanF5jG9wh5qfe4B9pJmQydPUfoCBeXx91bap////////////m7jJdGtubHJ1waCQ////////////+f//x6qw+fHu////////k6a1XWNoY19b+uPS9P/+coydn4J0//nu0+n3gIeOa2914b6u////nbbEW2NprJaEmZi1t7Cq7ejiosLOdWpyg4+Nq5OF//Dm////////////////o6vEbouZU15kTEpXhW5k//bj////////0enzhISD5cu4////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////0unxTnSRAAAAORoLzber//76////////z+/8ABY9KRUDe3ZsBxIrIAACnaCbRUZCgEs3qa+vPTRQ5Mahk8PjAAAMT0U0wqKT/PHv////////////P2aKdllY////NFSHGwACbHdqACY/AAAAwpBwqdjmPhwWpJ2LYnuVWzU6//PWQHeqFAACc1ZI48Wy////////////LlmdJxkhXVlTVFRVa2Fay8Gw+v//VneYHQANoIp3f5ybNx4nzaKX////KVWCHgUAfGBU6869////////z97oI0tyAAAAr3xl5/btBkJuEgABiXliJDFJCgABjHlwVWRiZSQfq7CtN0BkvZN5xN/lABI0STUiqaGUUmtuAAAASDkrJzNAdFxe0vDmD0ZxAAAAsoNw//nx////////////////////1/L6Gyxb26KB////T4C1WztD//nc////9v3/ha/GAAANVyAU79vOM1uGIAYEdWteKztLAAAArH9g09zcADJRCAAB3bqe////////////rsbUCTBJNxEKzbKg////////////Y4u7ayIq+/Hg////fbC+AAAAMBMJQ1JTRjZF8+PPP3+jHhcP/+vBr+v/AAAAQBgK58u8rdPpAAENVykZVX5/AAAEVyUU197VTmt5ZSAdq7CtNj9ksohw//33////////9///AChJFxEHfoR2fn6HHC82aTQt/+fX////lc3iAAAAxopn////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////2P/+ABYyt41r////////////////t+X/AAsdwJt6+P//LEZvjkY42P/9tqef///n0/D/DxlEvY1ma57BPAof//TP8vPz/vj3////////////QGaLeVla+f/7FSBUvHpl////ZqXGIw8Z8Lqgu+3/6L6m////bJrGHgAN9uOzLFWKk1xR/P/78+rp////////////n8rjZ0BBtaSb4tLN////////td3wAAIZtoVj////////N2V+VxUH///wITlsqndk+f//9Onn////////////gLfVSSco///z3f/9AB88hmBD////SnimYCUn3PLnqa2u/+3K9v//EjRph1I7nr/KKA4s/+e6kdb3AAAAj29X//735/b9cW6D6bSfgM/1Rhcl/+TN////////////////////////lMTbAAAAWzok////Ill9BQAA4sOt////////6P/+LD9cv3Vf////GS9hrXZj////fJy6OhQs/+7J////c6zNXCkq//rl////////////////kcnizZd+////////////kMDaAAAafDkn///20e79ABM6Ujoj+uvl////hZ63uHdx/f//UXebf3Z4YH6aPAAS/9i8////ZZO8KQoS/+W/5v/+Jk9sjEg74fb5qbKy/+zI9v//EDRpfkQx//vu////////yPr/XktD3KmS////////hb3bAAAA0pd1////7fb5yMjH9uvk////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wub9ABMsrIpp/////////v399enu9/z/UYClZSs33MzDUnmShEI3/v//9Pn+Wo+mCA4TIg8H79a7cKDDPRkq/+zJ////////////////////QGaMeFpc9//7JzVfxZV6////mM3uLB0v8byh+P7/yePvJ1VuBgcIZ0Qy/Pr1LlSHk2BU///5////////////////ncjfFhQYoIx6Zn6JZ1pO//78a7faGgkS7sit////////YI6yRRch/vzaK0t8q3lm////////////////////cKXDWSUp/+7a+///bqPDQCYn3bGid63EYS4s//jm9fv/f7HEDhksCgYFyqqPqs7eLBw3/+i6cr7rOiYr+9nB////////////9OfpaarRSSgt+djC/////////////////////f//Ol2JYkU5eImDaGpnOUVHUGFbsJeD//br////1fr/JzlSrWdU////JT5trnhm////eKjLNxkp/+bF////eqzJUyUo++rX////////////////pNPgxpqB///+////v+L3ACpDAAAAhiso///2qdr0GSE33KSH////////////7OLn////2/b6IkteBgACuZB+////////a5a5QRor/+/N////P3OfkFNI/P779fn9f7LFDhksCgYFw52G//79////////xuf3yrqy//zw////+///Xo+hAAAAy413////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////web9ABYvmHRZ6ejo4eXnlI+et2l3////2eLvoq+/NkJiDxYdikc8////WnynCAgIVzYj4c27////cJzAOxgp/+jG////////////////////R3GdeFpf+f/6JTVlvYt0////jMPkKhss8rug5/7+FzFeEA0Nj2tX9/jp////LUx9jl1S///0////////////////LEl8cTg1/PvwlbvcLhY5//zKfcvxKQgS78+3////////O3KMRRAE//7oLUx/pnZi///+////////////////cafFVCUn/u3Z////4Or1ssLPSFFzGSEnYiIf///4hKfKBgcPOyAWz7aj///+p87hKhk2/+S0dr3rMyktrJWCq7CxkqChrJqW///ocbblTSQt/+XP////////////////////vu37FRsj3LCNwuDuAAYVcT0j7P71c0xX5Mu9////4f/9LT9aq2VS////J0BwqXVk////daLCOBgr//PQ////c6vITiEl/OzX////////////////n9HdwZJ8////4v37J05iAwAAiZKBpXF4///wsN30Gy5FpHxesrq5nKWlnJmZ582/////7//+BjdPKwAF/+jZ////////bpq+Ohcr/+bD////OmuVkFBG////g6bHBgcPOyAWzrej/v78/////////////Pz/////////1OrxWXiHAAAARxoJ9M67////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////web9ACE4RSsckYmDWXaCEhMf14lr////ByRLvJZ7////PmyTgi8q////ACw+iWA/////rbbe///0eJ7BOxom///c////////////////3eryIT5efFdP////Ii5OuYVv////ltHyIRIn97yetfT/DA0J+dq15fj/s6vD////LU99lmdY////////////////////GUWAlE9D////f7naEQAP27WSwPP/ChAvy5h9////1/z+AB03djIa///9KkZ1sIFs////////////////////ebPTXSgq///r////IEhveFZI////ZqbQVRUc/f/3JlpxUSoP////ssXx7uXcstHdKRo0/+2+zP/8AgcmqX1q4fXyAD5oGQAC7+G8Rn+rHQUOxKqUyMTN8+jf////////////VYq1Rxke//Xe1fv/Ehs6uHld////VYi8wKmU////sdnkFyMzrWlS////JkBss4Jt////g7DSGQUSy6B9////Mm+aZhog//jo////////////////ns/d1aGF////RWR6AAAAqnpg8v/8lmJ6//Hl4vv/EzRZbDYv///4LoOoAAAA26B6////T3qqHgoNRz5DyJSD////////c5+6MwkX/+PJ////OWybkE1C////JVhvUSoP////scXy49jR///9////////////////oLrFAB4+AAAARiQh5b+p////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////w+f+ABkyiWdN4NvZx9bZb3V7w3xz////UHJ9WDU4hYuOMi050Yl1////THSJYk9FlI2RZChO5+zeGFN6FwAChl1Y48zI////////////rdLjBxEoh3BSr8PHCBMSw49w3u72OWuQKgIL88Gn3/7+N0hVmpB6VU5qnllpyubyAhEyQxsZo3uB++7l////////////i7nWTUJLgXptLDZCKSkjjGFa//vzdZrCUz5DgHdzHjlNRy4j8cO0qdPpAgYeTiYiqoaK//fr////////vdThIT5UIwsNjXZr07aweZ6jPSAmh4uTM0VVqGFW////cZuuSDo2lo2RSR1J2cO6UYumCQABeE5H3bi2e5SvZWR0cX16Exspk4Jt1u7sFjlPIRwWMERAAAAAz5+A////////w9vpABg9XiUd2t3ZTnmeAAAAsXhk///4ea3LYycr8t3PeqnBBgENvXZnuN/pAgoiUSckt5ufkK28EA0ZWU00VGdlBAAEq21d///6////////////////qNLf0rSZYJy9AAAAf0Aj//fp3f3+mmJx+erk////mbTMTlNse3qEIDNDVkhA+fLijLHCAAMXd0gprc7TQSApvI184uvoJ1VqOQ4C//DXtMjbECtLj0w9////cZuuSDo2lo2RRhtI272y////////////////lbjfAAAFFwACc2RW//Dg/////P//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////uOL6AA8qtY5t////////9PT0zbzL6+vv9f/+jIuscXZ5so2D////////7//+mpmmg3h8zbSj5e7uK3edDxYZg0hA3sK+/////////////v//2OHp4Ojjr7e+naSn8uTV2Ov0hI2bwKmd+e7o////0ODuiH6IkYWD99rDv+LxBj1jPyEam252+urf////////////////qsracW5ooH126OXg7O/s//fx////psLTaF1fg3Ns//Pn////pMriBDNRSyceo3mC//bp////////sMzcQ1ZkJxUTgnFl3Let////nqDEcHaAoH90/vPo/////f//pq68gnh6tqCT8u3lX5y9AhsmcT0xzqiq////mrPOYF5ex6KN////////zNzn4dfPwNPYjZCN8uHX////////v9PmmaCcraah09PRmaKvmpmXvKep///2tcDRm3+V9eTY+f//1M7a79rds9nlAzRTTSUfqYiPepusQSQ33tnAboCNoHl4//fs////////////////////st7rOkdEAAgbSw8S/+HX////3fz/kVp38+bi////////wNrwXl1noX9t///t8f/+oay3q6WewL27y8nJpLS3uKOe3efki5mpxLqu///2pb7UmZST28a9/////f//pq68gnh6s5+S+/Dk////////////////Lk6NJAADzaWJ////+f//r7y578a2////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ve3/AAwpsoVn////////////lY+YwYJ6////////////////////////////////////////////6//+qbCy//bg////////////////////v8PU2L6/////////////////////////////////////////////////////wPD9z7it////////////////////////////////////////////////////////////////////////////uef128Cx////////////////////vO//XSoo////zuP20a2s////////////////////////////////////////////qMHK/97L////////////////////////////////////////////////////////////////////////////////////////////////////7Pj/vcTF8d/R////uej238Cx////dKPMNRIl/+3I////////////////////////////////l8vhAAAAEAAB7Mqw////////2P/9VzBD/ubS////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////NHCiTQAO///v////d6fJPS0u+tOy////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////u93qJURbAAAGIBcQNzc2Nzc3KTY3KAEG2pyE////////////////////////////////////////////////////+fj7////////////////8//+GUZjYykW//jo//////////////////////////////////////////////////////7//vz9/////////////////////////////////////////////////////////////////////////////fz//v7+////////////////7vf6Z4ORYFFODxUhb1Q/////////////////////////////////////////////////+ff7////////////////////////////////////////////////////////////////////////////////////////////////////uOD2AAIpo29W/////////v3+2O/3GTtgOxMF/97F////////////////////////////hai+FB4mDQIAw6SM////////z+n4MUtYBgMASTou8tjI////////////////////////////////////////////////////////////////////////////////////////////////////////////////////zuv0L0dqNSwmQzY4DQYSSzlE///o////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7fX6z9HT3tzb0NPVyMjIyMjIy8jI3dfW/vv4/////////////////////////////////////////////////////////////////////////P//ws/W2MnC//37////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6/n/ra61ubGr5uLb////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7Pf+vL7J6NnT////////////9fr909rd2NPO+/Lr////////////////////////////3uft08/O4uDe////////////8vn+0dHS2Nra0NDQ+/Xv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4PL5tbvAwLi52NTR4+fn/v33/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v///////////////f/////9////////////////////////////////////////////////////////////////////////+/3//////////////////////v/////+////////9vf7//z7////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////utzrMEdbLSwtfVRG+ufW////////7//+knyI162l////+///eZipIyEiLi4sfWhe+/r2h7HMMTM157me8f/+TGx/Kikom3Ng//vzjrHGKigoYVlGYGF3T0tb1LeertDdQjw5b2xiWFthxZaD//79////////////n7fNJTlXOVZGLC07LSwypodw//7v////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////zMzMe3t7h4eH4eHh////////////////////////////////////8vj7dLDQRDMx37Cc/vv4////////a5vGJgAP672f////iLvRAAEGVSsiu7+wNU1ui2dl5ObiMWiGvIlz5f79AClDSBID7NzJ3Pz6FRtPejIqsc3LAjxZGQAC2bOcnsralFpH+PTvbZHBQCIt/9y8/////////f//V4CVIwIC1cSs2tnclbjFGxMUuYNm///+////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v7+/BwcHAAAAAAAAJiYm4eHh////////////////////////////////////u/D/mot9/93M////////ptjsAAkrKgAF9smz////IGCIPisi//3n////9f/+qo2Z893VzOv2Q1h1UmlxEwgG5bKb////xej0IiFG3amK////c6/WOh0n9863zer1//DbzOHpFj9lLgAE/N7F////////5/39gIyV1ZF6////////5//+DQwxcyIk///7////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/v7Xl5eAAAAAAAAAAAAAAAAiYmJ////////////////////////////////////wPT/m41++dTE////2Pr/ETlPAAAAXyUr6bWu////MmKFoXBY3ePl6OHe/Pn2////////////gbvJAAAAnXhm////////x+zzJCZJ1qOH////crDXOh4p+M62////c5zFAAAPJAUBsaCJ////////////8Pj+09vh//fq////+f//bpChAAAAjDsv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+fn5UFBQAAAAAAAAAAAAAAAAfn5+////////////////////////////////////v/P/mIt8/9nI9P/+L0xaAAAAoKqOr5uhzaer////N2mRXjkqqaWggpaYSVZloXJd//3t/f//KVqMAAAA1ol4////////yOnzJCdS1qOJ////c7DXOh8q/NK6s+bzAAAYZ0o52MW5//////73////////////////////utbtSGRzAAAAMQ0C4sWq////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qqqqAAAAAAAAAAAACgoK09PT////////////////////////////////////vPL/oo1+/+rXTnywAAAAlFxD////kHuVyZab////h7XOJQsh///ZkNXxAAAAgEol////b6zOCQIUfIh+bExS7ryt////y/H6Hxsm1J+I////d7fhMhIj/NK4lNDkIhgI////vNT/m4Sg//73////////////////l7C2AB00AAAAUjst6Mu5/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v7+qampVlZWYmJixMTE////////////////////////////////////////xvP/ppyMaoyRAAAWZigi//Xn+v//lHmHz6Oi////9f3/haXBSlhlJzA7fVdE7Ojgo8DVKz5MT0EwysS4SWZ8aicj39fLeZ6wKi0i6L6iwd7uIkdmYDIs+t7M5/f6X3GAbmVkQSxCrHl3////////////////vNTtAAQrFAACpYtz++/n////8+/x////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9/f3+/v7////////////////////////////////////////////7P/+PFpiAAAFQAsK9dG+////////gWmKw5OY////////////wMfSysK///jw////4Orw4t3a6enp7erp5e7v2dbW9PLt3+Po4uTk/vv26/T40tLW7+fh/vz7////8ff9zcnM2NPO+/Ts////////////////fbHVAAAAzYhv////////irHCypt/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7fX6m77QAA8eCQAB0LOf/////P//zN/iIyc2d09A7ebh////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qtbtDQosqGRWzM7PjJyuCg0q1KeJ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////u93qOExfOzo6u6GM////////9v//bYmYOTo5ODk5vaSV////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////mL3YMDNHLy4vVjE4UEph8t3F/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v7+////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////</ForeignData>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="54" Type="Shape" Name="Graphic.54">
          <XForm>
            <Angle>-0</Angle>
            <PinX>6.690972222222222</PinX>
            <PinY>5.145833333333333</PinY>
            <Width>1.243055555555556</Width>
            <Height>0.6805555555555556</Height>
            <LocPinX>0.6215277777777778</LocPinX>
            <LocPinY>0.3402777777777778</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>6.06944444444444</BeginX>
            <BeginY>4.80555555555556</BeginY>
            <EndX>7.3125</EndX>
            <EndY>5.48611111111111</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.243055555555556</TxtWidth>
            <TxtHeight F="Height*1.000000">0.6805555555555556</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.243055555555556</X>
              <Y F="Height*1.000000">0.6805555555555556</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="55" Type="Group" Name="Group.55">
          <XForm>
            <Angle>-0</Angle>
            <PinX>1.597223611111111</PinX>
            <PinY>1.74479375</PinY>
            <Width>2.972225</Width>
            <Height>0.239634722222222</Height>
            <LocPinX>1.4861125</LocPinX>
            <LocPinY>0.119817361111111</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">2.972225</TxtWidth>
            <TxtHeight F="Height*1.000000">0.239634722222222</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="56" Type="Shape" Name="Graphic.56">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.3333333333333333</PinX>
                <PinY>0.1215791666666664</PinY>
                <Width>0.6666666666666666</Width>
                <Height>0.01388888888888889</Height>
                <LocPinX>0.3333333333333333</LocPinX>
                <LocPinY>0.006944444444444444</LocPinY>
              </XForm>
              <XForm1D>
                <BeginX>0</BeginX>
                <BeginY>0.128523611111111</BeginY>
                <EndX>0.666666666666667</EndX>
                <EndY>0.128523611111111</EndY>
              </XForm1D>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">0.6666666666666666</TxtWidth>
                <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>2</ObjType>
              </Misc>
              <Line>
                <LinePattern>9</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
                <EndArrow>4</EndArrow>
                <EndArrowSize>2</EndArrowSize>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>0</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>1</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">0.6666666666666666</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
            </Shape>
            <Shape ID="57" Type="Shape" Name="Rectangle No Fill No Fill.57">
              <XForm>
                <Angle>-0</Angle>
                <PinX>1.879336111111111</PinX>
                <PinY>0.119817361111111</PinY>
                <Width>2.185777777777778</Width>
                <Height>0.2396347222222222</Height>
                <LocPinX>1.092888888888889</LocPinX>
                <LocPinY>0.1198173611111111</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">2.185777777777778</TxtWidth>
                <TxtHeight F="Height*0.420414">0.1007458333333333</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>1</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">2.185777777777778</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">2.185777777777778</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>0</Font>
                <Color>0</Color>
                <Style>0</Style>
                <Size>0.166667</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>0</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/> Implicit Scope Declaration</Text>
            </Shape>
          </Shapes>
        </Shape>
        <Shape ID="58" Type="Shape" Name="Graphic.58">
          <XForm>
            <Angle>-0</Angle>
            <PinX>6.652777777777778</PinX>
            <PinY>5.590277777777778</PinY>
            <Width>1.319444444444444</Width>
            <Height>1.347222222222222</Height>
            <LocPinX>0.6597222222222222</LocPinX>
            <LocPinY>0.6736111111111112</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>5.99305555555556</BeginX>
            <BeginY>4.91666666666667</BeginY>
            <EndX>7.3125</EndX>
            <EndY>6.26388888888889</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.319444444444444</TxtWidth>
            <TxtHeight F="Height*1.000000">1.347222222222222</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.319444444444444</X>
              <Y F="Height*1.000000">1.347222222222222</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="59" Type="Shape" Name="Graphic.59">
          <XForm>
            <Angle>-0</Angle>
            <PinX>6.597222222222222</PinX>
            <PinY>6.069444444444445</PinY>
            <Width>1.444444444444444</Width>
            <Height>2.055555555555555</Height>
            <LocPinX>0.7222222222222222</LocPinX>
            <LocPinY>1.027777777777778</LocPinY>
          </XForm>
          <XForm1D>
            <BeginX>5.875</BeginX>
            <BeginY>5.04166666666667</BeginY>
            <EndX>7.31944444444444</EndX>
            <EndY>7.09722222222222</EndY>
          </XForm1D>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.444444444444444</TxtWidth>
            <TxtHeight F="Height*1.000000">2.055555555555555</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>2</ObjType>
          </Misc>
          <Line>
            <LinePattern>1</LinePattern>
            <LineWeight>0.0277778</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
            <EndArrow>4</EndArrow>
            <EndArrowSize>2</EndArrowSize>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>0</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>0</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>1</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.444444444444444</X>
              <Y F="Height*1.000000">2.055555555555555</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
        </Shape>
        <Shape ID="60" Type="Shape" Name="Rectangle No Fill No Fill.60">
          <XForm>
            <Angle>-0</Angle>
            <PinX>4.1875</PinX>
            <PinY>4.671849305555556</PinY>
            <Width>1.111111111111111</Width>
            <Height>0.2396347222222222</Height>
            <LocPinX>0.5555555555555556</LocPinX>
            <LocPinY>0.1198173611111111</LocPinY>
          </XForm>
          <TextXForm>
            <TxtWidth F="Width*1.000000">1.111111111111111</TxtWidth>
            <TxtHeight F="Height*1.000000">0.2396347222222222</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <Line>
            <LinePattern>0</LinePattern>
            <LineWeight>0.0138889</LineWeight>
            <LineColor>0</LineColor>
            <LineColorTrans>0</LineColorTrans>
            <Rounding>0</Rounding>
            <LineCap>0</LineCap>
          </Line>
          <Fill>
            <FillPattern>0</FillPattern>
            <FillForegnd>#ffffff</FillForegnd>
            <FillForegndTrans>0</FillForegndTrans>
            <ShdwPattern>1</ShdwPattern>
            <ShdwForegnd>0</ShdwForegnd>
            <ShdwForegndTrans>0.5</ShdwForegndTrans>
            <ShapeShdwType>1</ShapeShdwType>
            <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
            <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
          </Fill>
          <Geom IX="0">
            <NoFill>0</NoFill>
            <NoLine>0</NoLine>
            <MoveTo IX="1">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.239634722222222</Y>
            </MoveTo>
            <LineTo IX="2">
              <X F="Width*1.000000">1.111111111111111</X>
              <Y F="Height*1.000000">0.239634722222222</Y>
            </LineTo>
            <LineTo IX="3">
              <X F="Width*1.000000">1.111111111111111</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="4">
              <X F="Width*0.000000">0</X>
              <Y F="Height*0.000000">0</Y>
            </LineTo>
            <LineTo IX="5">
              <X F="Width*0.000000">0</X>
              <Y F="Height*1.000000">0.239634722222222</Y>
            </LineTo>
          </Geom>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <TextBlock>
            <LeftMargin>0.0694444</LeftMargin>
            <RightMargin>0.0694444</RightMargin>
            <VerticalAlign>2</VerticalAlign>
            <DefaultTabStop>0</DefaultTabStop>
          </TextBlock>
          <Char IX="0">
            <Font>1</Font>
            <Color>0</Color>
            <Style>1</Style>
            <Size>0.166667</Size>
            <ColorTrans>0</ColorTrans>
          </Char>
          <Para IX="0">
            <IndFirst>0</IndFirst>
            <IndLeft>0</IndLeft>
            <IndRight>-0</IndRight>
            <SpLine>-1.2</SpLine>
            <SpBefore>0</SpBefore>
            <HorzAlign>1</HorzAlign>
          </Para>
          <Text><cp IX="0"/><pp IX="0"/>ng-repeat</Text>
        </Shape>
        <Shape ID="61" Type="Group" Name="Group.61">
          <XForm>
            <Angle>-0</Angle>
            <PinX>8.880208333333334</PinX>
            <PinY>1.699627083333334</PinY>
            <Width>2.899305555555555</Width>
            <Height>0.239634722222222</Height>
            <LocPinX>1.449652777777778</LocPinX>
            <LocPinY>0.119817361111111</LocPinY>
          </XForm>
          <Layout>
            <ConLineJumpCode>4</ConLineJumpCode>
            <ConLineJumpStyle>0</ConLineJumpStyle>
            <ShapeRouteStyle>2</ShapeRouteStyle>
            <ConFixedCode>2</ConFixedCode>
            <ConLineRouteExt>1</ConLineRouteExt>
          </Layout>
          <TextXForm>
            <TxtWidth F="Width*1.000000">2.899305555555555</TxtWidth>
            <TxtHeight F="Height*1.000000">0.239634722222222</TxtHeight>
            <TxtAngle>-0</TxtAngle>
          </TextXForm>
          <Misc>
            <ObjType>1</ObjType>
          </Misc>
          <LayerMem>
            <LayerMember>0</LayerMember>
          </LayerMem>
          <Shapes>
            <Shape ID="62" Type="Shape" Name="Graphic.62">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.3333333333333333</PinX>
                <PinY>0.05213472222222196</PinY>
                <Width>0.6666666666666666</Width>
                <Height>0.01388888888888889</Height>
                <LocPinX>0.3333333333333333</LocPinX>
                <LocPinY>0.006944444444444444</LocPinY>
              </XForm>
              <XForm1D>
                <BeginX>0</BeginX>
                <BeginY>0.0590791666666664</BeginY>
                <EndX>0.666666666666667</EndX>
                <EndY>0.0590791666666664</EndY>
              </XForm1D>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">0.6666666666666666</TxtWidth>
                <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>2</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
                <BeginArrow>4</BeginArrow>
                <BeginArrowSize>2</BeginArrowSize>
                <EndArrow>4</EndArrow>
                <EndArrowSize>2</EndArrowSize>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>0</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>1</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">0.6666666666666666</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
            </Shape>
            <Shape ID="63" Type="Shape" Name="Rectangle No Fill No Fill.63">
              <XForm>
                <Angle>-0</Angle>
                <PinX>1.803819444444444</PinX>
                <PinY>0.119817361111111</PinY>
                <Width>2.190972222222222</Width>
                <Height>0.2396347222222222</Height>
                <LocPinX>1.095486111111111</LocPinX>
                <LocPinY>0.1198173611111111</LocPinY>
              </XForm>
              <TextXForm>
                <TxtWidth F="Width*1.000000">2.190972222222222</TxtWidth>
                <TxtHeight F="Height*0.420414">0.1007458333333333</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>1</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>#ffffff</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>1</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>0</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">2.190972222222222</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </LineTo>
                <LineTo IX="3">
                  <X F="Width*1.000000">2.190972222222222</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="4">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*0.000000">0</Y>
                </LineTo>
                <LineTo IX="5">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.239634722222222</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
              <TextBlock>
                <LeftMargin>0.0694444</LeftMargin>
                <RightMargin>0.0694444</RightMargin>
                <VerticalAlign>1</VerticalAlign>
                <DefaultTabStop>0</DefaultTabStop>
              </TextBlock>
              <Char IX="0">
                <Font>0</Font>
                <Color>0</Color>
                <Style>0</Style>
                <Size>0.166667</Size>
                <ColorTrans>0</ColorTrans>
              </Char>
              <Para IX="0">
                <IndFirst>0</IndFirst>
                <IndLeft>0</IndLeft>
                <IndRight>-0</IndRight>
                <SpLine>-1.2</SpLine>
                <SpBefore>0</SpBefore>
                <HorzAlign>1</HorzAlign>
              </Para>
              <Text><cp IX="0"/><pp IX="0"/>Model / View Data-binding</Text>
            </Shape>
            <Shape ID="64" Type="Shape" Name="Graphic.64">
              <XForm>
                <Angle>-0</Angle>
                <PinX>0.3333333333333333</PinX>
                <PinY>0.177134722222222</PinY>
                <Width>0.6666666666666666</Width>
                <Height>0.01388888888888889</Height>
                <LocPinX>0.3333333333333333</LocPinX>
                <LocPinY>0.006944444444444444</LocPinY>
              </XForm>
              <XForm1D>
                <BeginX>0</BeginX>
                <BeginY>0.184079166666666</BeginY>
                <EndX>0.666666666666667</EndX>
                <EndY>0.184079166666666</EndY>
              </XForm1D>
              <Layout>
                <ConLineJumpCode>4</ConLineJumpCode>
                <ConLineJumpStyle>0</ConLineJumpStyle>
                <ShapeRouteStyle>2</ShapeRouteStyle>
                <ConFixedCode>2</ConFixedCode>
                <ConLineRouteExt>1</ConLineRouteExt>
              </Layout>
              <TextXForm>
                <TxtWidth F="Width*1.000000">0.6666666666666666</TxtWidth>
                <TxtHeight F="Height*1.000000">0.01388888888888889</TxtHeight>
                <TxtAngle>-0</TxtAngle>
              </TextXForm>
              <Misc>
                <ObjType>2</ObjType>
              </Misc>
              <Line>
                <LinePattern>1</LinePattern>
                <LineWeight>0.0138889</LineWeight>
                <LineColor>0</LineColor>
                <LineColorTrans>0</LineColorTrans>
                <Rounding>0</Rounding>
                <LineCap>0</LineCap>
                <EndArrow>4</EndArrow>
                <EndArrowSize>2</EndArrowSize>
              </Line>
              <Fill>
                <FillPattern>0</FillPattern>
                <FillForegnd>0</FillForegnd>
                <FillForegndTrans>0</FillForegndTrans>
                <ShdwPattern>0</ShdwPattern>
                <ShdwForegnd>0</ShdwForegnd>
                <ShdwForegndTrans>0.5</ShdwForegndTrans>
                <ShapeShdwType>1</ShapeShdwType>
                <ShapeShdwOffsetX>0</ShapeShdwOffsetX>
                <ShapeShdwOffsetY>-0.0277778</ShapeShdwOffsetY>
              </Fill>
              <Geom IX="0">
                <NoFill>1</NoFill>
                <NoLine>0</NoLine>
                <MoveTo IX="1">
                  <X F="Width*0.000000">0</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </MoveTo>
                <LineTo IX="2">
                  <X F="Width*1.000000">0.6666666666666666</X>
                  <Y F="Height*1.000000">0.01388888888888889</Y>
                </LineTo>
              </Geom>
              <LayerMem>
                <LayerMember>0</LayerMember>
              </LayerMem>
            </Shape>
          </Shapes>
        </Shape>
      </Shapes>
      <Connects>
        <Connect ToCell="PinX" FromSheet="12" FromPart="9" ToSheet="8" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="12" FromPart="12" ToSheet="6" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="21" FromPart="9" ToSheet="15" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="21" FromPart="12" ToSheet="18" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="42" FromPart="9" ToSheet="23" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="42" FromPart="12" ToSheet="29" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="43" FromPart="9" ToSheet="23" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="43" FromPart="12" ToSheet="34" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="44" FromPart="9" ToSheet="23" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="44" FromPart="12" ToSheet="39" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="45" FromPart="9" ToSheet="18" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="45" FromPart="12" ToSheet="6" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="46" FromPart="9" ToSheet="39" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="46" FromPart="12" ToSheet="18" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="47" FromPart="9" ToSheet="34" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="47" FromPart="12" ToSheet="18" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="48" FromPart="9" ToSheet="29" ToPart="3"/>
        <Connect ToCell="PinX" FromSheet="48" FromPart="12" ToSheet="18" ToPart="3"/>
      </Connects>
    </Page>
  </Pages>
  <Windows>
    <Window ID="0" WindowType="Drawing" ViewScale="1" WindowState="134217744" ContainerType="Page" Page="0" ViewCenterX="5.25" ViewCenterY="4.944444444444445">
      <ShowRulers>0</ShowRulers>
      <ShowGrid>0</ShowGrid>
      <ShowPageBreaks>1</ShowPageBreaks>
      <ShowConnectionPoints>0</ShowConnectionPoints>
      <GlueSettings>12</GlueSettings>
      <SnapSettings>52</SnapSettings>
      <TabSplitterPos>0.5</TabSplitterPos>
    </Window>
  </Windows>
</VisioDocument>