summaryrefslogtreecommitdiff
path: root/extras/source/templates/presnt/Candy/content.xml
blob: a666e829aae2fe902d4b2c1cbfa3fddcf4780fc0 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<office:document-content xmlns:officeooo="http://openoffice.org/2009/office" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3">
  <office:scripts/>
  <office:font-face-decls>
    <style:font-face style:name="MS Gothic" svg:font-family="'MS Gothic'" style:font-pitch="variable"/>
    <style:font-face style:name="Mangal" svg:font-family="Mangal" style:font-pitch="variable"/>
    <style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-pitch="variable"/>
    <style:font-face style:name="Tahoma1" svg:font-family="Tahoma" style:font-pitch="variable"/>
    <style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
    <style:font-face style:name="Noto Sans" svg:font-family="'Noto Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
    <style:font-face style:name="Times New Roman" svg:font-family="'Times New Roman'" style:font-family-generic="roman" style:font-pitch="variable"/>
    <style:font-face style:name="Noto Sans1" svg:font-family="'Noto Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
    <style:font-face style:name="Noto Sans2" svg:font-family="'Noto Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
    <style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
    <style:font-face style:name="Mangal1" svg:font-family="Mangal" style:font-family-generic="system" style:font-pitch="variable"/>
    <style:font-face style:name="Noto Sans CJK SC1" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
    <style:font-face style:name="Segoe UI" svg:font-family="'Segoe UI'" style:font-family-generic="system" style:font-pitch="variable"/>
    <style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
  </office:font-face-decls>
  <office:automatic-styles>
    <style:style style:name="dp1" style:family="drawing-page">
      <style:drawing-page-properties presentation:background-visible="true" presentation:background-objects-visible="true" presentation:display-footer="true" presentation:display-page-number="false" presentation:display-date-time="true"/>
    </style:style>
    <style:style style:name="dp2" style:family="drawing-page">
      <style:drawing-page-properties presentation:display-header="true" presentation:display-footer="true" presentation:display-page-number="false" presentation:display-date-time="true"/>
    </style:style>
    <style:style style:name="gr1" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr2" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.035cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.142cm" fo:padding-bottom="0.142cm" fo:padding-left="0.267cm" fo:padding-right="0.267cm"/>
    </style:style>
    <style:style style:name="gr3" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr4" style:family="graphic">
      <style:graphic-properties style:protect="size"/>
    </style:style>
    <style:style style:name="gr5" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr6" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.029cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.139cm" fo:padding-bottom="0.139cm" fo:padding-left="0.264cm" fo:padding-right="0.264cm"/>
    </style:style>
    <style:style style:name="gr7" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr8" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr9" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.029cm" svg:stroke-color="#e54b87" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.139cm" fo:padding-bottom="0.139cm" fo:padding-left="0.264cm" fo:padding-right="0.264cm"/>
    </style:style>
    <style:style style:name="gr10" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#e54b87" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b87" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr11" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr12" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.029cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.139cm" fo:padding-bottom="0.139cm" fo:padding-left="0.264cm" fo:padding-right="0.264cm"/>
    </style:style>
    <style:style style:name="gr13" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#f8b621" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr14" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.029cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.139cm" fo:padding-bottom="0.139cm" fo:padding-left="0.264cm" fo:padding-right="0.264cm"/>
    </style:style>
    <style:style style:name="gr15" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr16" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr17" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr18" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#f8b620" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr19" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr20" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr21" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr22" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.129cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.189cm" fo:padding-bottom="0.189cm" fo:padding-left="0.314cm" fo:padding-right="0.314cm"/>
    </style:style>
    <style:style style:name="gr23" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#e5a822" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr24" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#e5a822" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr25" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr26" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr27" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr28" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr29" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr30" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr31" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr32" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr33" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr34" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr35" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr36" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr37" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr38" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr39" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr40" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr41" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr42" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr43" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr44" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr45" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr46" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#baacff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr47" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#baacff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr48" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#cacfff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr49" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8dd7e" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr50" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#f8dd7e" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr51" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8efac" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr52" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" svg:stroke-width="0.053cm" svg:stroke-color="#808080" draw:marker-start="" draw:marker-start-width="0.34cm" draw:marker-start-center="false" draw:marker-end="" draw:marker-end-width="0.34cm" draw:marker-end-center="false" draw:stroke-linejoin="miter" draw:fill="solid" draw:fill-color="#f8b622" draw:secondary-fill-color="#d4ea6b" draw:opacity="100%" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" draw:fit-to-size="false" style:shrink-to-fit="false" fo:min-height="0.726cm" fo:min-width="2.498cm" fo:padding-top="0.143cm" fo:padding-bottom="0.143cm" fo:padding-left="0.263cm" fo:padding-right="0.263cm" fo:wrap-option="wrap" draw:shadow="hidden" draw:shadow-offset-x="0.071cm" draw:shadow-offset-y="0.071cm" draw:shadow-color="#808080" draw:shadow-opacity="100%"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr53" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" svg:stroke-width="0.053cm" svg:stroke-color="#808080" draw:marker-start="" draw:marker-start-width="0.34cm" draw:marker-start-center="false" draw:marker-end="" draw:marker-end-width="0.34cm" draw:marker-end-center="false" draw:stroke-linejoin="miter" draw:fill="solid" draw:fill-color="#7f59ae" draw:secondary-fill-color="#d4ea6b" draw:opacity="100%" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" draw:fit-to-size="false" style:shrink-to-fit="false" fo:min-height="0.514cm" fo:min-width="2.498cm" fo:padding-top="0.143cm" fo:padding-bottom="0.143cm" fo:padding-left="0.263cm" fo:padding-right="0.263cm" fo:wrap-option="wrap" draw:shadow="hidden" draw:shadow-offset-x="0.071cm" draw:shadow-offset-y="0.071cm" draw:shadow-color="#808080" draw:shadow-opacity="100%"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr54" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr55" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr56" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr57" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr58" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.083cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.166cm" fo:padding-bottom="0.166cm" fo:padding-left="0.291cm" fo:padding-right="0.291cm"/>
    </style:style>
    <style:style style:name="gr59" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.029cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.139cm" fo:padding-bottom="0.139cm" fo:padding-left="0.264cm" fo:padding-right="0.264cm"/>
    </style:style>
    <style:style style:name="gr60" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr61" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#6f4f99" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr62" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#6f4f99" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr63" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.177cm" svg:stroke-color="#6f4f99" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.213cm" fo:padding-bottom="0.213cm" fo:padding-left="0.338cm" fo:padding-right="0.338cm"/>
    </style:style>
    <style:style style:name="gr64" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#6f4f99" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr65" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.177cm" svg:stroke-color="#56afcc" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.213cm" fo:padding-bottom="0.213cm" fo:padding-left="0.338cm" fo:padding-right="0.338cm"/>
    </style:style>
    <style:style style:name="gr66" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#56afcc" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr67" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#6f4f99" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr68" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#56afcc" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr69" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.177cm" svg:stroke-color="#cc417a" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.213cm" fo:padding-bottom="0.213cm" fo:padding-left="0.338cm" fo:padding-right="0.338cm"/>
    </style:style>
    <style:style style:name="gr70" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#cc417a" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr71" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#56afcc" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr72" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#cc417a" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr73" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#cc417a" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr74" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.177cm" svg:stroke-color="#e5a822" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.213cm" fo:padding-bottom="0.213cm" fo:padding-left="0.338cm" fo:padding-right="0.338cm"/>
    </style:style>
    <style:style style:name="gr75" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#e5a822" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr76" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#cc417a" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr77" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.127cm" svg:stroke-color="#e5a822" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:fill="none" draw:fill-color="#f8b622" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.188cm" fo:padding-bottom="0.188cm" fo:padding-left="0.313cm" fo:padding-right="0.313cm"/>
    </style:style>
    <style:style style:name="gr78" style:family="graphic" style:parent-style-name="standard" style:list-style-name="L1">
      <style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-vertical-align="middle" draw:auto-grow-height="true" fo:min-height="1.207cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr79" style:family="graphic" style:parent-style-name="standard" style:list-style-name="L1">
      <style:graphic-properties draw:stroke="none" svg:stroke-width="0cm" svg:stroke-color="#3465a4" draw:marker-start="" draw:marker-start-width="0.2cm" draw:marker-start-center="false" draw:marker-end="" draw:marker-end-width="0.2cm" draw:marker-end-center="false" draw:fill="none" draw:fill-color="#729fcf" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="true" fo:min-height="1.207cm" fo:padding-top="0.125cm" fo:padding-bottom="0.125cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr80" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:fill="bitmap" draw:fill-image-name="Bitmap_20_9" style:repeat="stretch" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr81" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" svg:stroke-color="#000000" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="left" draw:auto-grow-height="true" draw:auto-grow-width="true" fo:min-height="0.674cm" fo:min-width="4.527cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr82" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.146cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.198cm" fo:padding-bottom="0.198cm" fo:padding-left="0.323cm" fo:padding-right="0.323cm"/>
    </style:style>
    <style:style style:name="gr83" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b622" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:opacity="98%" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr84" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:fill="bitmap" draw:fill-image-name="Bitmap_20_10" style:repeat="stretch" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr85" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.064cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.157cm" fo:padding-bottom="0.157cm" fo:padding-left="0.282cm" fo:padding-right="0.282cm"/>
    </style:style>
    <style:style style:name="gr86" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" svg:stroke-color="#000000" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="left" draw:auto-grow-height="true" draw:auto-grow-width="true" fo:min-height="0.674cm" fo:min-width="6.051cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="gr87" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#f8b621" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr88" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#fcdd99" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr89" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ed85ad" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr90" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr91" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#a9dff1" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr92" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ab93ca" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr93" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b87" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr94" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#f4f4f4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr95" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.027cm" svg:stroke-color="#000000" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.138cm" fo:padding-bottom="0.138cm" fo:padding-left="0.263cm" fo:padding-right="0.263cm"/>
    </style:style>
    <style:style style:name="gr96" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr97" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.028cm" svg:stroke-color="#000000" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.139cm" fo:padding-bottom="0.139cm" fo:padding-left="0.264cm" fo:padding-right="0.264cm"/>
    </style:style>
    <style:style style:name="gr98" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#f8b621" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr99" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#fcdd99" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr100" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#e54b87" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr101" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ed85ad" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr102" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr103" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#c5e9f5" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr104" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#000000" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ab93ca" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr105" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.055cm" svg:stroke-color="#e54b87" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ab93ca" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.152cm" fo:padding-bottom="0.152cm" fo:padding-left="0.277cm" fo:padding-right="0.277cm"/>
    </style:style>
    <style:style style:name="gr106" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ed85ad" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr107" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b87" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr108" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.055cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ab93ca" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.152cm" fo:padding-bottom="0.152cm" fo:padding-left="0.277cm" fo:padding-right="0.277cm"/>
    </style:style>
    <style:style style:name="gr109" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#fbde9f" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr110" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.066cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#f8b621" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.158cm" fo:padding-bottom="0.158cm" fo:padding-left="0.283cm" fo:padding-right="0.283cm"/>
    </style:style>
    <style:style style:name="gr111" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.076cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="miter" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.163cm" fo:padding-bottom="0.163cm" fo:padding-left="0.288cm" fo:padding-right="0.288cm"/>
    </style:style>
    <style:style style:name="gr112" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.015cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.132cm" fo:padding-bottom="0.132cm" fo:padding-left="0.257cm" fo:padding-right="0.257cm"/>
    </style:style>
    <style:style style:name="gr113" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.083cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="miter" svg:stroke-linecap="butt" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.166cm" fo:padding-bottom="0.166cm" fo:padding-left="0.291cm" fo:padding-right="0.291cm"/>
    </style:style>
    <style:style style:name="gr114" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="none" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr115" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.11cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.18cm" fo:padding-bottom="0.18cm" fo:padding-left="0.305cm" fo:padding-right="0.305cm"/>
    </style:style>
    <style:style style:name="gr116" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr117" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.055cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.152cm" fo:padding-bottom="0.152cm" fo:padding-left="0.277cm" fo:padding-right="0.277cm"/>
    </style:style>
    <style:style style:name="gr118" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.055cm" svg:stroke-color="#ab93ca" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.152cm" fo:padding-bottom="0.152cm" fo:padding-left="0.277cm" fo:padding-right="0.277cm"/>
    </style:style>
    <style:style style:name="gr119" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.026cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.138cm" fo:padding-bottom="0.138cm" fo:padding-left="0.263cm" fo:padding-right="0.263cm"/>
    </style:style>
    <style:style style:name="gr120" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#8467b5" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr121" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.055cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.152cm" fo:padding-bottom="0.152cm" fo:padding-left="0.277cm" fo:padding-right="0.277cm"/>
    </style:style>
    <style:style style:name="gr122" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#a9dff1" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr123" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#8978be" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr124" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#8774bc" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr125" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#8774bc" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr126" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#8774bc" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#8978be" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr127" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.11cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="bevel" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.18cm" fo:padding-bottom="0.18cm" fo:padding-left="0.305cm" fo:padding-right="0.305cm"/>
    </style:style>
    <style:style style:name="gr128" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#60c4e4" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr129" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr130" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.11cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="bevel" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.18cm" fo:padding-bottom="0.18cm" fo:padding-left="0.305cm" fo:padding-right="0.305cm"/>
    </style:style>
    <style:style style:name="gr131" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr132" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#60c4e4" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr133" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.11cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="bevel" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.18cm" fo:padding-bottom="0.18cm" fo:padding-left="0.305cm" fo:padding-right="0.305cm"/>
    </style:style>
    <style:style style:name="gr134" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#7f59ae" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr135" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#e54b89" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#ffffff" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr136" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.11cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="bevel" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.18cm" fo:padding-bottom="0.18cm" fo:padding-left="0.305cm" fo:padding-right="0.305cm"/>
    </style:style>
    <style:style style:name="gr137" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b87" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr138" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#f8b621" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr139" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:stroke-linejoin="none" svg:stroke-linecap="round" draw:fill="solid" draw:fill-color="#e54b89" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
    </style:style>
    <style:style style:name="gr140" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.073cm" svg:stroke-color="#f8b621" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.161cm" fo:padding-bottom="0.161cm" fo:padding-left="0.286cm" fo:padding-right="0.286cm"/>
    </style:style>
    <style:style style:name="gr141" style:family="graphic" style:parent-style-name="standard">
      <style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_4" svg:stroke-width="0.073cm" svg:stroke-color="#7f59ae" draw:stroke-linejoin="round" svg:stroke-linecap="round" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" fo:padding-top="0.161cm" fo:padding-bottom="0.161cm" fo:padding-left="0.286cm" fo:padding-right="0.286cm"/>
    </style:style>
    <style:style style:name="gr142" style:family="graphic" style:parent-style-name="Object_20_with_20_no_20_fill_20_and_20_no_20_line">
      <style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle" draw:color-mode="standard" draw:luminance="0%" draw:contrast="0%" draw:gamma="100%" draw:red="0%" draw:green="0%" draw:blue="0%" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:image-opacity="100%" style:mirror="none"/>
    </style:style>
    <style:style style:name="pr1" style:family="presentation" style:parent-style-name="Title-title">
      <style:graphic-properties fo:min-height="2.976cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr2" style:family="presentation" style:parent-style-name="Title-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="3.218cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr3" style:family="presentation" style:parent-style-name="Title-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="2.118cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr4" style:family="presentation" style:parent-style-name="Title-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr5" style:family="presentation" style:parent-style-name="Title_20_of_20_Content-title">
      <style:graphic-properties fo:min-height="1.813cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr6" style:family="presentation" style:parent-style-name="Title_20_of_20_Content-title">
      <style:graphic-properties fo:min-height="1.889cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr7" style:family="presentation" style:parent-style-name="Title_20_of_20_Content-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr8" style:family="presentation" style:parent-style-name="Topic_20_Title_20_1-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="2.888cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr9" style:family="presentation" style:parent-style-name="Topic_20_Title_20_1-title">
      <style:graphic-properties draw:stroke="none" svg:stroke-width="0.035cm" draw:marker-start-width="0.252cm" draw:marker-end-width="0.252cm" draw:auto-grow-height="true" fo:min-height="2.217cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr10" style:family="presentation" style:parent-style-name="Topic_20_Title_20_1-title">
      <style:graphic-properties fo:min-height="2.976cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr11" style:family="presentation" style:parent-style-name="Topic_20_Title_20_1-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr12" style:family="presentation" style:parent-style-name="Topic_20_Title_20_2-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="4.903cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr13" style:family="presentation" style:parent-style-name="Topic_20_Title_20_2-title">
      <style:graphic-properties fo:min-height="2.976cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr14" style:family="presentation" style:parent-style-name="Topic_20_Title_20_2-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr15" style:family="presentation" style:parent-style-name="Sample_20_Article-title">
      <style:graphic-properties fo:min-height="4.137cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr16" style:family="presentation" style:parent-style-name="Sample_20_Article-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="1.8cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr17" style:family="presentation" style:parent-style-name="Sample_20_Article-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr18" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties fo:min-height="3.457cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr19" style:family="presentation" style:parent-style-name="Content_20_-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr20" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="1.813cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr21" style:family="presentation" style:parent-style-name="Content_20_-notes">
      <style:graphic-properties draw:fill-color="#ffffff" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr22" style:family="presentation" style:parent-style-name="Insert_20_Picture-title">
      <style:graphic-properties fo:min-height="3.102cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr23" style:family="presentation" style:parent-style-name="Insert_20_Picture-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr24" style:family="presentation" style:parent-style-name="Insert_20_Picture_20_1-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="2.978cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr25" style:family="presentation" style:parent-style-name="Insert_20_Picture_20_1-title">
      <style:graphic-properties fo:min-height="3.102cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr26" style:family="presentation" style:parent-style-name="Insert_20_Picture_20_1-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr27" style:family="presentation" style:parent-style-name="Topic_20_title_20_3-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="2.596cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr28" style:family="presentation" style:parent-style-name="Topic_20_title_20_3-title">
      <style:graphic-properties fo:min-height="2.976cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr29" style:family="presentation" style:parent-style-name="Topic_20_title_20_3-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr30" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="right" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.809cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr31" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="right" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.684cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr32" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="right" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.808cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr33" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="right" draw:textarea-vertical-align="top" fo:min-height="2.266cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr34" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="left" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.808cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr35" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="left" draw:textarea-vertical-align="top" fo:min-height="2.266cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr36" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="left" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.809cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr37" style:family="presentation" style:parent-style-name="Content_20_-title">
      <style:graphic-properties draw:textarea-horizontal-align="left" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.685cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr38" style:family="presentation" style:parent-style-name="List_20_Content-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="1.737cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr39" style:family="presentation" style:parent-style-name="List_20_Content-title">
      <style:graphic-properties draw:textarea-horizontal-align="left" draw:textarea-vertical-align="top" draw:auto-grow-height="false" fo:min-height="1.7cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr40" style:family="presentation" style:parent-style-name="List_20_Content-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr41" style:family="presentation" style:parent-style-name="Greetings-title">
      <style:graphic-properties draw:auto-grow-height="true" fo:min-height="2.629cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="pr42" style:family="presentation" style:parent-style-name="Greetings-notes">
      <style:graphic-properties draw:fill-color="#ffffff" draw:auto-grow-height="true" fo:min-height="13.364cm"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="P1" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties fo:language="zxx" fo:country="none"/>
    </style:style>
    <style:style style:name="P2" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:language="zxx" fo:country="none"/>
    </style:style>
    <style:style style:name="P3" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1" fo:language="zxx" fo:country="none"/>
    </style:style>
    <style:style style:name="P4" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1" fo:language="zxx" fo:country="none"/>
    </style:style>
    <style:style style:name="P5" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start"/>
      <style:text-properties fo:language="zxx" fo:country="none"/>
    </style:style>
    <style:style style:name="P6" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="P7" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="67pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" style:font-size-asian="67pt" style:font-weight-asian="bold" style:font-size-complex="67pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P8" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:language="zxx" fo:country="none" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P9" style:family="paragraph">
      <loext:graphic-properties draw:fill-color="#ffffff"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="P10" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="P11" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P12" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P13" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P14" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P15" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P16" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#e54b89"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P17" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#e54b87"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P18" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8b622"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P19" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8b621"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P20" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P21" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P22" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P23" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P24" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P25" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="24pt" fo:font-weight="bold" style:font-size-asian="24pt" style:font-size-complex="24pt"/>
    </style:style>
    <style:style style:name="P26" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#e54b89" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P27" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#f8b622" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P28" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-size-complex="22pt"/>
    </style:style>
    <style:style style:name="P29" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="P30" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffff6d" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P31" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end"/>
    </style:style>
    <style:style style:name="P32" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="60pt" fo:font-weight="bold" style:font-size-asian="60pt" style:font-weight-asian="bold" style:font-size-complex="60pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P33" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P34" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="P35" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start"/>
    </style:style>
    <style:style style:name="P36" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="54pt" fo:font-weight="bold" style:font-size-asian="54pt" style:font-weight-asian="bold" style:font-size-complex="54pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P37" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8b620"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P38" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="P39" style:family="paragraph">
      <loext:graphic-properties draw:fill-color="#ffffff"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
      <style:text-properties fo:font-size="20pt"/>
    </style:style>
    <style:style style:name="P40" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P41" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P42" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="P43" style:family="paragraph">
      <style:paragraph-properties fo:line-height="100%" fo:text-align="center"/>
    </style:style>
    <style:style style:name="P44" style:family="paragraph">
      <style:paragraph-properties fo:line-height="100%" fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="P45" style:family="paragraph">
      <style:paragraph-properties style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="20pt" fo:font-weight="bold" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P46" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8b622"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P47" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#f8b622"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P48" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#e54b89"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P49" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P50" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#e54b89"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P51" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P52" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P53" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#baacff"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P54" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#baacff"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P55" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#cacfff"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P56" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8dd7e"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P57" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#f8dd7e"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P58" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8efac"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P59" style:family="paragraph">
      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:punctuation-wrap="simple" style:line-break="normal" style:writing-mode="lr-tb">
        <style:tab-stops/>
      </style:paragraph-properties>
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#2a6099" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Noto Sans1" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" style:font-name-asian="MS Gothic" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Tahoma1" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="P60" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8b622" draw:secondary-fill-color="#d4ea6b" draw:opacity="100%"/>
      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:punctuation-wrap="simple" style:line-break="normal" style:writing-mode="lr-tb">
        <style:tab-stops/>
      </style:paragraph-properties>
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#2a6099" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Noto Sans1" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" style:font-name-asian="MS Gothic" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Tahoma1" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="P61" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae" draw:secondary-fill-color="#d4ea6b" draw:opacity="100%"/>
      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:punctuation-wrap="simple" style:line-break="normal" style:writing-mode="lr-tb">
        <style:tab-stops/>
      </style:paragraph-properties>
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#2a6099" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Noto Sans1" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" style:font-name-asian="MS Gothic" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Tahoma1" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="P62" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P63" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#f8b622" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P64" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="P65" style:family="paragraph">
      <loext:graphic-properties draw:fill="none"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#e54b89" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Noto Sans CJK SC1" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Devanagari" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="P66" style:family="paragraph">
      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="center" fo:text-indent="0cm" style:writing-mode="lr-tb"/>
    </style:style>
    <style:style style:name="P67" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#729fcf"/>
      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="center" fo:text-indent="0cm" style:writing-mode="lr-tb"/>
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#7f59ae" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Noto Sans CJK SC1" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Devanagari" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="P68" style:family="paragraph">
      <loext:graphic-properties draw:fill="bitmap" draw:fill-image-name="Bitmap_20_9" style:repeat="stretch"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P69" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
      <style:paragraph-properties style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
    </style:style>
    <style:style style:name="P70" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#ffffff" draw:opacity="98%"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P71" style:family="paragraph">
      <loext:graphic-properties draw:fill="bitmap" draw:fill-image-name="Bitmap_20_10" style:repeat="stretch"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P72" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="48pt" fo:font-weight="bold" style:font-size-asian="48pt" style:font-weight-asian="bold" style:font-size-complex="48pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P73" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#e54b89" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="60pt" fo:font-weight="bold" style:font-size-asian="60pt" style:font-weight-asian="bold" style:font-size-complex="60pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P74" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#fcdd99"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P75" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#ed85ad"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P76" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#a9dff1"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P77" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#ab93ca"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P78" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f4f4f4"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P79" style:family="paragraph">
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P80" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#c5e9f5"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P81" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#ab93ca"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P82" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#fbde9f"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P83" style:family="paragraph">
      <loext:graphic-properties draw:fill="none" draw:fill-color="#f8b621"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P84" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#8467b5"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P85" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#8978be"/>
      <style:paragraph-properties fo:text-align="center"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P86" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P87" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#6b5e9b" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P88" style:family="paragraph">
      <style:paragraph-properties style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P89" style:family="paragraph">
      <style:paragraph-properties fo:text-align="end" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
    </style:style>
    <style:style style:name="P90" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#6b5e9b" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P91" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
    </style:style>
    <style:style style:name="P92" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center" style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P93" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P94" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P95" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P96" style:family="paragraph">
      <style:paragraph-properties fo:text-align="start" style:writing-mode="lr-tb"/>
      <style:text-properties fo:color="#e54b89" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="P97" style:family="paragraph">
      <style:paragraph-properties style:writing-mode="lr-tb"/>
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <style:style style:name="P98" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#e54b87"/>
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="P99" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#f8b621"/>
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="P100" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#7f59ae"/>
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="P101" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#60c4e4"/>
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="P102" style:family="paragraph">
      <loext:graphic-properties draw:fill="solid" draw:fill-color="#e54b89"/>
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="P103" style:family="paragraph">
      <loext:graphic-properties draw:fill="none"/>
      <style:paragraph-properties fo:text-align="center"/>
    </style:style>
    <style:style style:name="T1" style:family="text">
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="15pt" style:font-size-asian="15pt" style:font-size-complex="15pt"/>
    </style:style>
    <style:style style:name="T2" style:family="text">
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="T3" style:family="text">
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="67pt" fo:font-weight="bold" style:font-size-asian="67pt" style:font-weight-asian="bold" style:font-size-complex="67pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T4" style:family="text">
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T5" style:family="text">
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T6" style:family="text">
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T7" style:family="text">
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T8" style:family="text">
      <style:text-properties fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T9" style:family="text">
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-size-complex="22pt"/>
    </style:style>
    <style:style style:name="T10" style:family="text">
      <style:text-properties fo:color="#e54b89" loext:opacity="100%" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T11" style:family="text">
      <style:text-properties fo:color="#f8b622" loext:opacity="100%" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T12" style:family="text">
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-size-complex="22pt"/>
    </style:style>
    <style:style style:name="T13" style:family="text">
      <style:text-properties fo:color="#ffff6d" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="44pt" fo:font-weight="bold" style:font-size-asian="44pt" style:font-weight-asian="bold" style:font-size-complex="44pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T14" style:family="text">
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="60pt" fo:font-weight="bold" style:font-size-asian="60pt" style:font-weight-asian="bold" style:font-size-complex="60pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T15" style:family="text">
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="48pt" fo:font-weight="bold" style:font-size-asian="48pt" style:font-weight-asian="bold" style:font-size-complex="48pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T16" style:family="text">
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="44pt" fo:font-weight="bold" style:font-size-asian="44pt" style:font-weight-asian="bold" style:font-size-complex="44pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T17" style:family="text">
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
    </style:style>
    <style:style style:name="T18" style:family="text">
      <style:text-properties fo:color="#ffffff" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="20pt" fo:font-weight="bold" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T19" style:family="text">
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#2a6099" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Noto Sans1" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" style:font-name-asian="MS Gothic" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Tahoma1" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="T20" style:family="text">
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T21" style:family="text">
      <style:text-properties fo:color="#f8b622" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T22" style:family="text">
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#e54b89" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Noto Sans CJK SC1" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Devanagari" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="T23" style:family="text">
      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#7f59ae" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:letter-kerning="true" fo:background-color="transparent" style:font-name-asian="Noto Sans CJK SC1" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Devanagari" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
    </style:style>
    <style:style style:name="T24" style:family="text">
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
    </style:style>
    <style:style style:name="T25" style:family="text">
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="48pt" fo:font-weight="bold" style:font-size-asian="48pt" style:font-weight-asian="bold" style:font-size-complex="48pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T26" style:family="text">
      <style:text-properties fo:color="#e54b89" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="54pt" fo:font-weight="bold" style:font-size-asian="54pt" style:font-weight-asian="bold" style:font-size-complex="54pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T27" style:family="text">
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T28" style:family="text">
      <style:text-properties fo:color="#6b5e9b" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T29" style:family="text">
      <style:text-properties style:font-name="Noto Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
    </style:style>
    <style:style style:name="T30" style:family="text">
      <style:text-properties fo:color="#7f59ae" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T31" style:family="text">
      <style:text-properties fo:color="#fe7130" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T32" style:family="text">
      <style:text-properties fo:color="#60c4e4" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T33" style:family="text">
      <style:text-properties fo:color="#e54b89" loext:opacity="100%" style:font-name="Noto Sans1" fo:font-size="22pt" fo:font-weight="bold" style:font-size-asian="22pt" style:font-weight-asian="bold" style:font-size-complex="22pt" style:font-weight-complex="bold"/>
    </style:style>
    <style:style style:name="T34" style:family="text">
      <style:text-properties style:font-name="Noto Sans1"/>
    </style:style>
    <text:list-style style:name="L1">
      <text:list-level-style-bullet text:level="1" text:bullet-char="●">
        <style:list-level-properties text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="2" text:bullet-char="●">
        <style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="3" text:bullet-char="●">
        <style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="4" text:bullet-char="●">
        <style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="5" text:bullet-char="●">
        <style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="6" text:bullet-char="●">
        <style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="7" text:bullet-char="●">
        <style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="8" text:bullet-char="●">
        <style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="9" text:bullet-char="●">
        <style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
      <text:list-level-style-bullet text:level="10" text:bullet-char="●">
        <style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
        <style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
      </text:list-level-style-bullet>
    </text:list-style>
  </office:automatic-styles>
  <office:body>
    <office:presentation>
      <draw:page draw:name="page1" draw:style-name="dp1" draw:master-page-name="Title" presentation:presentation-page-layout-name="AL1T0">
        <draw:polygon draw:style-name="gr1" draw:text-style-name="P2" draw:layer="layout" svg:width="3.901cm" svg:height="0.873cm" svg:x="2.987cm" svg:y="12.173cm" svg:viewBox="0 0 3902 874" draw:points="1951,874 3527,874 3565,872 3602,866 3638,857 3673,844 3706,829 3736,810 3765,788 3792,764 3816,737 3838,709 3857,678 3872,645 3885,610 3894,575 3900,537 3902,499 3902,375 3900,337 3894,299 3885,264 3872,229 3857,196 3838,165 3816,137 3792,110 3765,86 3736,64 3706,45 3673,29 3638,17 3602,8 3565,2 3527,0 375,0 337,2 299,8 264,17 229,29 196,45 165,64 137,86 110,110 86,137 64,165 45,196 29,229 17,264 8,299 2,337 0,375 0,499 2,537 8,575 17,610 29,645 45,678 64,709 86,737 110,764 137,788 165,810 196,829 229,844 264,857 299,866 337,872 375,874">
          <text:p text:style-name="P1">
            <text:span text:style-name="T1">Lorem Ipsum</text:span>
          </text:p>
        </draw:polygon>
        <draw:polygon draw:style-name="gr2" draw:text-style-name="P3" draw:layer="layout" svg:width="3.901cm" svg:height="0.873cm" svg:x="2.987cm" svg:y="12.173cm" svg:viewBox="0 0 3902 874" draw:points="1951,874 3527,874 3565,872 3602,866 3638,857 3673,844 3706,829 3736,810 3765,788 3792,764 3816,737 3838,709 3857,678 3872,645 3885,610 3894,575 3900,537 3902,499 3902,375 3900,337 3894,299 3885,264 3872,229 3857,196 3838,165 3816,137 3792,110 3765,86 3736,64 3706,45 3673,29 3638,17 3602,8 3565,2 3527,0 375,0 337,2 299,8 264,17 229,29 196,45 165,64 137,86 110,110 86,137 64,165 45,196 29,229 17,264 8,299 2,337 0,375 0,499 2,537 8,575 17,610 29,645 45,678 64,709 86,737 110,764 137,788 165,810 196,829 229,844 264,857 299,866 337,872 375,874">
          <text:p/>
        </draw:polygon>
        <draw:g>
          <draw:polygon draw:style-name="gr3" draw:text-style-name="P4" draw:layer="layout" svg:width="0.221cm" svg:height="0.221cm" svg:x="4.557cm" svg:y="13.243cm" svg:viewBox="0 0 222 222" draw:points="0,111 0,104 1,96 2,89 4,82 6,75 8,69 11,62 15,56 19,50 23,44 28,38 33,33 38,28 44,23 50,19 56,15 62,11 69,8 76,6 83,4 90,2 97,1 104,0 111,0 118,0 125,1 132,2 139,4 146,6 153,8 160,11 166,15 172,19 178,23 184,28 189,33 194,38 199,44 203,50 207,56 211,62 214,69 216,75 218,82 220,89 221,96 222,104 222,111 222,118 221,125 220,132 218,139 216,146 214,153 211,160 207,166 203,172 199,178 194,184 189,189 184,194 178,199 172,203 166,207 160,211 153,214 146,216 139,218 132,220 125,221 118,222 111,222 104,222 97,221 90,220 83,218 76,216 69,214 62,211 56,207 50,203 44,199 38,194 33,189 28,184 23,178 19,172 15,166 11,160 8,153 6,146 4,139 2,132 1,125 0,118">
            <text:p/>
          </draw:polygon>
          <draw:polygon draw:style-name="gr3" draw:text-style-name="P4" draw:layer="layout" svg:width="0.221cm" svg:height="0.221cm" svg:x="4.031cm" svg:y="13.243cm" svg:viewBox="0 0 222 222" draw:points="0,111 0,104 1,96 2,89 4,82 6,75 8,69 11,62 15,56 19,50 23,44 28,38 33,33 38,28 44,23 50,19 56,15 62,11 69,8 76,6 83,4 90,2 97,1 104,0 111,0 118,0 125,1 132,2 139,4 146,6 153,8 160,11 166,15 172,19 178,23 184,28 189,33 194,38 199,44 203,50 207,56 211,62 214,69 216,75 218,82 220,89 221,96 222,104 222,111 222,118 221,125 220,132 218,139 216,146 214,153 211,160 207,166 203,172 199,178 194,184 189,189 184,194 178,199 172,203 166,207 160,211 153,214 146,216 139,218 132,220 125,221 118,222 111,222 104,222 97,221 90,220 83,218 76,216 69,214 62,211 56,207 50,203 44,199 38,194 33,189 28,184 23,178 19,172 15,166 11,160 8,153 6,146 4,139 2,132 1,125 0,118">
            <text:p/>
          </draw:polygon>
          <draw:polygon draw:style-name="gr3" draw:text-style-name="P4" draw:layer="layout" svg:width="0.22cm" svg:height="0.221cm" svg:x="5.623cm" svg:y="13.243cm" svg:viewBox="0 0 221 222" draw:points="0,111 0,104 1,96 2,89 4,82 6,75 8,69 11,62 15,56 19,50 23,44 28,38 33,33 38,28 43,23 49,19 55,15 61,11 68,8 75,6 82,4 89,2 96,1 104,0 111,0 118,0 125,1 132,2 139,4 146,6 153,8 160,11 166,15 172,19 178,23 184,28 189,33 194,38 199,44 203,50 207,56 210,62 213,69 216,75 218,82 219,89 220,96 221,104 221,111 221,118 220,125 219,132 217,139 215,146 213,153 210,160 207,166 203,172 199,178 194,184 189,189 184,194 178,199 172,203 166,207 160,211 153,214 146,216 139,218 132,220 125,221 118,222 111,222 104,222 96,221 89,220 82,218 75,216 68,214 61,211 55,207 49,203 43,199 38,194 33,189 28,184 23,178 19,172 15,166 11,160 8,153 6,146 4,139 2,132 1,125 0,118">
            <text:p/>
          </draw:polygon>
          <draw:polygon draw:style-name="gr3" draw:text-style-name="P4" draw:layer="layout" svg:width="0.221cm" svg:height="0.221cm" svg:x="5.097cm" svg:y="13.243cm" svg:viewBox="0 0 222 222" draw:points="0,111 0,104 1,96 2,89 4,82 6,75 8,69 11,62 15,56 19,50 23,44 28,38 33,33 38,28 43,23 49,19 55,15 61,11 68,8 75,6 82,4 89,2 96,1 104,0 111,0 118,0 125,1 132,2 139,4 146,6 153,8 160,11 166,15 172,19 178,23 184,28 189,33 194,38 199,44 203,50 207,56 210,62 213,69 216,75 218,82 220,89 221,96 222,104 222,111 222,118 221,125 220,132 218,139 216,146 213,153 210,160 207,166 203,172 199,178 194,184 189,189 184,194 178,199 172,203 166,207 160,211 153,214 146,216 139,218 132,220 125,221 118,222 111,222 104,222 96,221 89,220 82,218 75,216 68,214 61,211 55,207 49,203 43,199 38,194 33,189 28,184 23,178 19,172 15,166 11,160 8,153 6,146 4,139 2,132 1,125 0,118">
            <text:p/>
          </draw:polygon>
        </draw:g>
        <draw:frame presentation:style-name="pr1" draw:text-style-name="P6" draw:layer="layout" svg:width="8.228cm" svg:height="2.976cm" svg:x="2.6cm" svg:y="7.641cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P5">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr2" draw:text-style-name="P7" draw:layer="layout" svg:width="9.4cm" svg:height="3.218cm" svg:x="2.2cm" svg:y="3.173cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P5">
              <text:span text:style-name="T3">CANDY</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr3" draw:text-style-name="P8" draw:layer="layout" svg:width="10.2cm" svg:height="2.118cm" svg:x="2.3cm" svg:y="5.503cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P5">
              <text:span text:style-name="T4">TEMPLATE</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="1" presentation:class="page"/>
          <draw:frame presentation:style-name="pr4" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page2" draw:style-name="dp1" draw:master-page-name="Title_20_of_20_Content" presentation:presentation-page-layout-name="AL2T1">
        <draw:g>
          <draw:polygon draw:style-name="gr5" draw:text-style-name="P11" draw:layer="layout" svg:width="1.365cm" svg:height="1.364cm" svg:x="18.001cm" svg:y="4.601cm" svg:viewBox="0 0 1366 1365" draw:points="1366,683 1365,728 1361,772 1354,816 1343,860 1331,901 1314,944 1296,985 1275,1024 1252,1062 1225,1098 1197,1133 1166,1165 1134,1195 1099,1224 1063,1250 1025,1274 986,1295 945,1313 904,1329 861,1342 817,1352 773,1359 729,1364 684,1365 639,1364 595,1359 550,1352 507,1342 464,1329 421,1313 381,1295 341,1274 303,1250 267,1224 233,1195 200,1165 169,1133 141,1098 115,1062 91,1024 71,985 52,944 36,901 23,860 13,816 6,772 1,728 0,683 1,637 6,594 14,550 23,507 37,464 52,422 71,381 91,341 116,303 141,267 170,233 200,200 233,169 267,141 303,116 341,91 381,71 421,52 464,36 507,23 550,13 594,6 639,1 684,0 729,1 773,6 817,13 861,23 902,36 945,52 986,71 1025,91 1063,116 1099,141 1134,169 1166,200 1196,233 1225,267 1251,303 1275,341 1296,381 1314,422 1329,464 1343,507 1352,550 1361,594 1365,637">
            <text:p text:style-name="P10">
              <text:span text:style-name="T5">2</text:span>
            </text:p>
          </draw:polygon>
          <draw:line draw:style-name="gr6" draw:text-style-name="P12" draw:layer="layout" svg:x1="10.144cm" svg:y1="5.916cm" svg:x2="18.536cm" svg:y2="5.916cm">
            <text:p/>
          </draw:line>
          <draw:polygon draw:style-name="gr7" draw:text-style-name="P13" draw:layer="layout" svg:width="0.17cm" svg:height="0.17cm" svg:x="10.03cm" svg:y="5.831cm" svg:viewBox="0 0 171 171" draw:points="85,171 90,171 96,170 102,169 107,168 112,166 118,164 123,162 127,159 132,156 137,153 141,150 145,146 149,141 153,138 156,133 159,128 162,123 164,118 166,113 168,107 169,102 170,96 171,90 171,85 171,79 170,74 169,68 168,63 166,58 164,53 162,47 159,42 156,38 153,33 149,29 145,25 141,21 137,18 132,14 127,11 123,8 118,7 112,5 107,3 102,2 96,1 90,0 85,0 79,0 74,1 68,2 63,3 58,5 53,7 47,8 42,11 38,14 33,18 29,21 25,25 21,29 18,33 14,38 11,42 8,47 7,53 5,58 3,63 2,68 1,74 0,79 0,85 0,90 1,96 2,102 3,107 5,113 7,118 8,123 11,128 14,133 18,138 21,141 25,146 29,150 33,153 38,156 42,159 47,162 53,164 58,166 63,168 68,169 74,170 79,171">
            <text:p/>
          </draw:polygon>
        </draw:g>
        <draw:frame presentation:style-name="pr5" draw:text-style-name="P15" draw:layer="layout" svg:width="6.669cm" svg:height="1.813cm" svg:x="14.032cm" svg:y="1.437cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P14">
              <text:span text:style-name="T6">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:g>
          <draw:polygon draw:style-name="gr8" draw:text-style-name="P16" draw:layer="layout" svg:width="1.365cm" svg:height="1.364cm" svg:x="12.335cm" svg:y="7.329cm" svg:viewBox="0 0 1366 1365" draw:points="1366,683 1365,728 1361,772 1354,816 1343,860 1331,901 1314,944 1296,985 1275,1024 1252,1062 1225,1098 1197,1133 1166,1165 1134,1195 1099,1224 1063,1250 1025,1274 986,1295 945,1313 904,1329 861,1342 817,1352 773,1359 729,1364 684,1365 639,1364 595,1359 550,1352 507,1342 464,1329 421,1313 381,1295 341,1274 303,1250 267,1224 233,1195 200,1165 169,1133 141,1098 115,1062 91,1024 71,985 52,944 36,901 23,860 13,816 6,772 1,728 0,683 1,637 6,594 14,550 23,507 37,464 52,422 71,381 91,341 116,303 141,267 170,233 200,200 233,169 267,141 303,116 341,91 381,71 421,52 464,36 507,23 550,13 594,6 639,1 684,0 729,1 773,6 817,13 861,23 902,36 945,52 986,71 1025,91 1063,116 1099,141 1134,169 1166,200 1196,233 1225,267 1251,303 1275,341 1296,381 1314,422 1329,464 1343,507 1352,550 1361,594 1365,637">
            <text:p text:style-name="P12">
              <text:span text:style-name="T7">3</text:span>
            </text:p>
          </draw:polygon>
          <draw:line draw:style-name="gr9" draw:text-style-name="P12" draw:layer="layout" svg:x1="21.383cm" svg:y1="8.66cm" svg:x2="12.992cm" svg:y2="8.66cm">
            <text:p/>
          </draw:line>
          <draw:polygon draw:style-name="gr10" draw:text-style-name="P17" draw:layer="layout" svg:width="0.17cm" svg:height="0.17cm" svg:x="21.295cm" svg:y="8.575cm" svg:viewBox="0 0 171 171" draw:points="85,171 90,171 96,170 102,169 107,168 112,166 118,164 123,162 127,159 132,156 137,153 141,150 145,146 149,141 153,138 156,133 159,128 162,123 164,118 166,113 168,107 169,102 170,96 171,90 171,85 171,79 170,74 169,68 168,63 166,58 164,53 162,47 159,42 156,38 153,33 149,29 145,25 141,21 137,18 132,14 127,11 123,8 118,7 112,5 107,3 102,2 96,1 90,0 85,0 79,0 74,1 68,2 63,3 58,5 53,7 47,8 42,11 38,14 33,18 29,21 25,25 21,29 18,33 14,38 11,42 8,47 7,53 5,58 3,63 2,68 1,74 0,79 0,85 0,90 1,96 2,102 3,107 5,113 7,118 8,123 11,128 14,133 18,138 21,141 25,146 29,150 33,153 38,156 42,159 47,162 53,164 58,166 63,168 68,169 74,170 79,171">
            <text:p/>
          </draw:polygon>
        </draw:g>
        <draw:g>
          <draw:polygon draw:style-name="gr11" draw:text-style-name="P18" draw:layer="layout" svg:width="1.365cm" svg:height="1.364cm" svg:x="18.001cm" svg:y="10.201cm" svg:viewBox="0 0 1366 1365" draw:points="1366,683 1365,728 1361,772 1354,816 1343,860 1331,901 1314,944 1296,985 1275,1024 1252,1062 1225,1098 1197,1133 1166,1165 1134,1195 1099,1224 1063,1250 1025,1274 986,1295 945,1313 904,1329 861,1342 817,1352 773,1359 729,1364 684,1365 639,1364 595,1359 550,1352 507,1342 464,1329 421,1313 381,1295 341,1274 303,1250 267,1224 233,1195 200,1165 169,1133 141,1098 115,1062 91,1024 71,985 52,944 36,901 23,860 13,816 6,772 1,728 0,683 1,637 6,594 14,550 23,507 37,464 52,422 71,381 91,341 116,303 141,267 170,233 200,200 233,169 267,141 303,116 341,91 381,71 421,52 464,36 507,23 550,13 594,6 639,1 684,0 729,1 773,6 817,13 861,23 902,36 945,52 986,71 1025,91 1063,116 1099,141 1134,169 1166,200 1196,233 1225,267 1251,303 1275,341 1296,381 1314,422 1329,464 1343,507 1352,550 1361,594 1365,637">
            <text:p text:style-name="P10">
              <text:span text:style-name="T8">4</text:span>
            </text:p>
          </draw:polygon>
          <draw:line draw:style-name="gr12" draw:text-style-name="P12" draw:layer="layout" svg:x1="9.973cm" svg:y1="11.39cm" svg:x2="18.365cm" svg:y2="11.39cm">
            <text:p/>
          </draw:line>
          <draw:polygon draw:style-name="gr13" draw:text-style-name="P19" draw:layer="layout" svg:width="0.17cm" svg:height="0.17cm" svg:x="9.89cm" svg:y="11.305cm" svg:viewBox="0 0 171 171" draw:points="85,171 79,171 74,170 68,169 63,168 58,166 53,164 47,162 42,159 38,156 33,153 29,150 25,146 21,141 18,138 14,133 11,128 8,123 7,118 5,113 3,107 2,102 1,96 0,90 0,85 0,79 1,74 2,68 3,63 5,58 7,53 8,47 11,42 14,38 18,33 21,29 25,25 29,21 33,18 38,14 42,11 47,8 53,7 58,5 63,3 68,2 74,1 79,0 85,0 90,0 96,1 102,2 107,3 112,5 118,7 123,8 127,11 132,14 137,18 141,21 145,25 149,29 153,33 156,38 159,42 162,47 164,53 166,58 168,63 169,68 170,74 171,79 171,85 171,90 170,96 169,102 168,107 166,113 164,118 162,123 159,128 156,133 153,138 149,141 145,146 141,150 137,153 132,156 127,159 123,162 118,164 112,166 107,168 102,169 96,170 90,171">
            <text:p/>
          </draw:polygon>
        </draw:g>
        <draw:g>
          <draw:line draw:style-name="gr14" draw:text-style-name="P20" draw:layer="layout" svg:x1="21.386cm" svg:y1="3.036cm" svg:x2="12.995cm" svg:y2="3.036cm">
            <text:p/>
          </draw:line>
          <draw:polygon draw:style-name="gr15" draw:text-style-name="P21" draw:layer="layout" svg:width="0.17cm" svg:height="0.17cm" svg:x="21.298cm" svg:y="2.951cm" svg:viewBox="0 0 171 171" draw:points="85,171 90,171 96,170 102,169 107,168 112,166 118,164 123,162 127,159 132,156 137,153 141,150 145,146 149,141 153,138 156,133 159,128 162,123 164,118 166,113 168,107 169,102 170,96 171,90 171,85 171,79 170,74 169,68 168,63 166,58 164,53 162,47 159,42 156,38 153,33 149,29 145,25 141,21 137,18 132,14 127,11 123,8 118,7 112,5 107,3 102,2 96,1 90,0 85,0 79,0 74,1 68,2 63,3 58,5 53,7 47,8 42,11 38,14 33,18 29,21 25,25 21,29 18,33 14,38 11,42 8,47 7,53 5,58 3,63 2,68 1,74 0,79 0,85 0,90 1,96 2,102 3,107 5,113 7,118 8,123 11,128 14,133 18,138 21,141 25,146 29,150 33,153 38,156 42,159 47,162 53,164 58,166 63,168 68,169 74,170 79,171">
            <text:p/>
          </draw:polygon>
          <draw:polygon draw:style-name="gr16" draw:text-style-name="P22" draw:layer="layout" svg:width="1.365cm" svg:height="1.364cm" svg:x="12.335cm" svg:y="1.721cm" svg:viewBox="0 0 1366 1365" draw:points="1366,683 1365,728 1361,772 1354,816 1343,860 1331,901 1314,944 1296,985 1275,1024 1252,1062 1225,1098 1197,1133 1166,1165 1134,1195 1099,1224 1063,1250 1025,1274 986,1295 945,1313 904,1329 861,1342 817,1352 773,1359 729,1364 684,1365 639,1364 595,1359 550,1352 507,1342 464,1329 421,1313 381,1295 341,1274 303,1250 267,1224 233,1195 200,1165 169,1133 141,1098 115,1062 91,1024 71,985 52,944 36,901 23,860 13,816 6,772 1,728 0,683 1,637 6,594 14,550 23,507 37,464 52,422 71,381 91,341 116,303 141,267 170,233 200,200 233,169 267,141 303,116 341,91 381,71 421,52 464,36 507,23 550,13 594,6 639,1 684,0 729,1 773,6 817,13 861,23 902,36 945,52 986,71 1025,91 1063,116 1099,141 1134,169 1166,200 1196,233 1225,267 1251,303 1275,341 1296,381 1314,422 1329,464 1343,507 1352,550 1361,594 1365,637">
            <text:p text:style-name="P20">
              <text:span text:style-name="T7">1</text:span>
            </text:p>
          </draw:polygon>
        </draw:g>
        <draw:g>
          <draw:polygon draw:style-name="gr16" draw:text-style-name="P22" draw:layer="layout" svg:width="1.365cm" svg:height="1.364cm" svg:x="12.335cm" svg:y="12.659cm" svg:viewBox="0 0 1366 1365" draw:points="1366,683 1365,728 1361,772 1354,816 1343,860 1331,901 1314,944 1296,985 1275,1024 1252,1062 1225,1098 1197,1133 1166,1165 1134,1195 1099,1224 1063,1250 1025,1274 986,1295 945,1313 904,1329 861,1342 817,1352 773,1359 729,1364 684,1365 639,1364 595,1359 550,1352 507,1342 464,1329 421,1313 381,1295 341,1274 303,1250 267,1224 233,1195 200,1165 169,1133 141,1098 115,1062 91,1024 71,985 52,944 36,901 23,860 13,816 6,772 1,728 0,683 1,637 6,594 14,550 23,507 37,464 52,422 71,381 91,341 116,303 141,267 170,233 200,200 233,169 267,141 303,116 341,91 381,71 421,52 464,36 507,23 550,13 594,6 639,1 684,0 729,1 773,6 817,13 861,23 902,36 945,52 986,71 1025,91 1063,116 1099,141 1134,169 1166,200 1196,233 1225,267 1251,303 1275,341 1296,381 1314,422 1329,464 1343,507 1352,550 1361,594 1365,637">
            <text:p text:style-name="P12">
              <text:span text:style-name="T7">5</text:span>
            </text:p>
          </draw:polygon>
          <draw:line draw:style-name="gr14" draw:text-style-name="P12" draw:layer="layout" svg:x1="21.383cm" svg:y1="14.003cm" svg:x2="12.992cm" svg:y2="14.003cm">
            <text:p/>
          </draw:line>
          <draw:polygon draw:style-name="gr15" draw:text-style-name="P23" draw:layer="layout" svg:width="0.17cm" svg:height="0.17cm" svg:x="21.295cm" svg:y="13.918cm" svg:viewBox="0 0 171 171" draw:points="85,171 90,171 96,170 102,169 107,168 112,166 118,164 123,162 127,159 132,156 137,153 141,150 145,146 149,141 153,138 156,133 159,128 162,123 164,118 166,113 168,107 169,103 170,97 171,91 171,86 171,80 170,74 169,69 168,63 166,58 164,53 162,47 159,42 156,38 153,33 149,29 145,25 141,21 137,18 132,14 127,11 123,8 118,7 112,5 107,3 102,2 96,1 90,0 85,0 79,0 74,1 68,2 63,3 58,5 53,7 47,8 42,11 38,14 33,18 29,21 25,25 21,29 18,33 14,38 11,42 8,47 7,53 5,58 3,63 2,69 1,74 0,80 0,86 0,91 1,97 2,103 3,107 5,113 7,118 8,123 11,128 14,133 18,138 21,141 25,146 29,150 33,153 38,156 42,159 47,162 53,164 58,166 63,168 68,169 74,170 79,171">
            <text:p/>
          </draw:polygon>
        </draw:g>
        <draw:frame presentation:style-name="pr5" draw:text-style-name="P25" draw:layer="layout" svg:width="7.756cm" svg:height="1.813cm" svg:x="9.962cm" svg:y="4.248cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P24">
              <text:span text:style-name="T9">Ipsum</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr5" draw:text-style-name="P26" draw:layer="layout" svg:width="7.757cm" svg:height="1.813cm" svg:x="14.032cm" svg:y="7.106cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P14">
              <text:span text:style-name="T10">Dolor</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr5" draw:text-style-name="P27" draw:layer="layout" svg:width="7.756cm" svg:height="1.813cm" svg:x="9.962cm" svg:y="9.703cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P24">
              <text:span text:style-name="T11">Sit</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr6" draw:text-style-name="P28" draw:layer="layout" svg:width="9.469cm" svg:height="1.889cm" svg:x="14.032cm" svg:y="12.265cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P14">
              <text:span text:style-name="T12">Amet</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="2" presentation:class="page"/>
          <draw:frame presentation:style-name="pr7" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page3" draw:style-name="dp1" draw:master-page-name="Topic_20_Title_20_1" presentation:presentation-page-layout-name="AL2T1">
        <draw:polygon draw:style-name="gr17" draw:text-style-name="P30" draw:layer="layout" svg:width="3.111cm" svg:height="3.111cm" svg:x="11.8cm" svg:y="4.629cm" svg:viewBox="0 0 3112 3112" draw:points="3112,1556 3109,1658 3098,1759 3082,1860 3059,1959 3029,2056 2993,2151 2951,2244 2903,2334 2849,2421 2790,2503 2725,2582 2656,2656 2582,2725 2503,2790 2421,2849 2334,2903 2244,2951 2151,2993 2056,3029 1959,3058 1860,3082 1759,3098 1658,3108 1556,3112 1454,3108 1352,3098 1252,3082 1153,3058 1056,3029 961,2993 868,2951 778,2903 691,2849 608,2790 530,2725 455,2656 386,2582 321,2503 262,2421 208,2334 160,2244 118,2151 82,2056 53,1959 30,1860 13,1759 3,1658 0,1556 3,1454 13,1352 30,1252 53,1153 82,1056 118,961 160,868 208,778 262,691 322,608 386,529 456,455 530,386 608,321 691,262 778,208 868,160 961,118 1056,82 1153,53 1252,30 1352,13 1454,3 1556,0 1658,3 1759,13 1860,30 1959,53 2056,82 2151,118 2244,160 2334,208 2421,262 2503,321 2582,386 2656,455 2725,529 2790,608 2849,691 2903,778 2951,868 2993,961 3029,1056 3059,1153 3082,1252 3098,1352 3109,1454">
          <text:p text:style-name="P29">
            <text:span text:style-name="T13">1</text:span>
          </text:p>
        </draw:polygon>
        <draw:frame presentation:style-name="pr8" draw:text-style-name="P32" draw:layer="layout" svg:width="10.8cm" svg:height="2.888cm" svg:x="14.235cm" svg:y="4.742cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T14">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr9" draw:text-style-name="P33" draw:layer="layout" svg:width="7.4cm" svg:height="2.217cm" svg:x="17.635cm" svg:y="7.077cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T4">Ipsum</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr10" draw:text-style-name="P34" draw:layer="layout" svg:width="8.228cm" svg:height="2.976cm" svg:x="16.635cm" svg:y="8.799cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="3" presentation:class="page"/>
          <draw:frame presentation:style-name="pr11" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page4" draw:style-name="dp1" draw:master-page-name="Topic_20_Title_20_2">
        <draw:frame presentation:style-name="pr12" draw:text-style-name="P36" draw:layer="layout" svg:width="10.8cm" svg:height="4.903cm" svg:x="7cm" svg:y="4.301cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T15">Lorem</text:span>
              <text:span text:style-name="T15">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T15">Ipsum</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:polygon draw:style-name="gr18" draw:text-style-name="P37" draw:layer="layout" svg:width="3.111cm" svg:height="3.111cm" svg:x="3.266cm" svg:y="4.082cm" svg:viewBox="0 0 3112 3112" draw:points="3112,1556 3109,1658 3098,1759 3082,1860 3059,1959 3029,2056 2993,2151 2951,2244 2903,2334 2849,2421 2790,2503 2725,2582 2656,2656 2582,2725 2503,2790 2421,2849 2334,2903 2244,2951 2151,2993 2056,3029 1959,3058 1860,3082 1759,3098 1658,3108 1556,3112 1454,3108 1352,3098 1252,3082 1153,3058 1056,3029 961,2993 868,2951 778,2903 691,2849 608,2790 530,2725 455,2656 386,2582 321,2503 262,2421 208,2334 160,2244 118,2151 82,2056 53,1959 30,1860 13,1759 3,1658 0,1556 3,1454 13,1352 30,1252 53,1153 82,1056 118,961 160,868 208,778 262,691 322,608 386,529 456,455 530,386 608,321 691,262 778,208 868,160 961,118 1056,82 1153,53 1252,30 1352,13 1454,3 1556,0 1658,3 1759,13 1860,30 1959,53 2056,82 2151,118 2244,160 2334,208 2421,262 2503,321 2582,386 2656,455 2725,529 2790,608 2849,691 2903,778 2951,868 2993,961 3029,1056 3059,1153 3082,1252 3098,1352 3109,1454">
          <text:p text:style-name="P29">
            <text:span text:style-name="T16">2</text:span>
          </text:p>
        </draw:polygon>
        <draw:frame presentation:style-name="pr13" draw:text-style-name="P38" draw:layer="layout" svg:width="8.228cm" svg:height="2.976cm" svg:x="7.172cm" svg:y="8.92cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="4" presentation:class="page"/>
          <draw:frame presentation:style-name="pr14" draw:text-style-name="P39" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page5" draw:style-name="dp1" draw:master-page-name="Sample_20_Article" presentation:presentation-page-layout-name="AL2T1">
        <draw:g>
          <draw:path draw:style-name="gr19" draw:text-style-name="P40" draw:layer="layout" svg:width="1.291cm" svg:height="1.228cm" svg:x="2.855cm" svg:y="4.675cm" svg:viewBox="0 0 1292 1229" svg:d="M1045 1229c-133-71-266-143-399-214-133 71-266 142-399 213 27-148 53-297 80-445-109-105-218-209-327-314 150-21 299-41 449-62 66-136 131-271 197-407 66 136 132 271 198 407 149 21 299 41 448 62-109 105-218 209-327 314 27 149 53 297 80 446z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr20" draw:text-style-name="P41" draw:layer="layout" svg:width="1.291cm" svg:height="1.228cm" svg:x="2.855cm" svg:y="4.675cm" svg:viewBox="0 0 1292 1229" svg:d="M1045 1229c-133-71-266-143-399-214-133 71-266 142-399 213 27-148 53-297 80-445-109-105-218-209-327-314 150-21 299-41 449-62 66-136 131-271 197-407 66 136 132 271 198 407 149 21 299 41 448 62-109 105-218 209-327 314 27 149 53 297 80 446z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.981cm" svg:height="1.279cm" svg:x="10.011cm" svg:y="4.649cm" svg:viewBox="0 0 982 1280" svg:d="M640 0c-112 0-223 30-320 86s-178 137-234 234-86 208-86 320 30 223 86 320 137 178 234 234 208 86 320 86 222-30 319-86c8-4 15-9 23-13-30 4-60 7-90 7-100 0-198-26-284-76s-158-122-208-208-76-184-76-284 26-198 76-284 122-158 208-208 184-76 284-76c-80-34-166-52-252-52z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr22" draw:text-style-name="P41" draw:layer="layout" svg:width="0.981cm" svg:height="1.279cm" svg:x="10.024cm" svg:y="4.649cm" svg:viewBox="0 0 982 1280" svg:d="M640 0c-112 0-223 30-320 86s-178 137-234 234-86 208-86 320 30 223 86 320 137 178 234 234 208 86 320 86 222-30 319-86c8-4 15-9 23-13-30 4-60 7-90 7-100 0-198-26-284-76s-158-122-208-208-76-184-76-284 26-198 76-284 122-158 208-208 184-76 284-76c-80-34-166-52-252-52z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="1.422cm" svg:height="1.423cm" svg:x="16.79cm" svg:y="4.577cm" svg:viewBox="0 0 1423 1424" svg:d="M802 1424c-61-123-123-247-184-370-115 75-231 150-346 225 44-130 88-261 132-391-135-29-269-57-404-86 123-61 246-123 369-184-75-115-150-231-225-346 131 44 261 88 392 132 28-135 57-269 85-404 61 123 123 247 184 370 115-75 231-151 346-226-44 131-88 261-132 392 135 28 269 57 404 85-123 61-247 123-370 184 75 115 151 231 226 346-131-44-261-88-392-132-28 135-57 270-85 405z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr20" draw:text-style-name="P41" draw:layer="layout" svg:width="1.422cm" svg:height="1.423cm" svg:x="16.79cm" svg:y="4.577cm" svg:viewBox="0 0 1423 1424" svg:d="M802 1424c-61-123-123-247-184-370-115 75-231 150-346 225 44-130 88-261 132-391-135-29-269-57-404-86 123-61 246-123 369-184-75-115-150-231-225-346 131 44 261 88 392 132 28-135 57-269 85-404 61 123 123 247 184 370 115-75 231-151 346-226-44 131-88 261-132 392 135 28 269 57 404 85-123 61-247 123-370 184 75 115 151 231 226 346-131-44-261-88-392-132-28 135-57 270-85 405z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="1.671cm" svg:height="1.103cm" svg:x="23.664cm" svg:y="4.737cm" svg:viewBox="0 0 1672 1104" svg:d="M690 258c59-366 743-349 683 89 692 186 12 979-345 531-411 433-868 178-1010-215-102-281 233-734 672-405z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr20" draw:text-style-name="P41" draw:layer="layout" svg:width="1.671cm" svg:height="1.103cm" svg:x="23.664cm" svg:y="4.737cm" svg:viewBox="0 0 1672 1104" svg:d="M18 663c-102-281 233-734 672-405 59-366 743-349 683 89 692 186 12 979-345 531-411 433-868 178-1010-215z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:frame presentation:style-name="pr15" draw:text-style-name="P42" draw:layer="layout" svg:width="5.428cm" svg:height="4.137cm" svg:x="0.787cm" svg:y="8.342cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T17">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T17">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr15" draw:text-style-name="P42" draw:layer="layout" svg:width="5.428cm" svg:height="4.137cm" svg:x="7.788cm" svg:y="8.342cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr15" draw:text-style-name="P44" draw:layer="layout" svg:width="5.428cm" svg:height="4.137cm" svg:x="14.787cm" svg:y="8.342cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P43">
              <text:span text:style-name="T17">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T17">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr15" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="4.137cm" svg:x="21.786cm" svg:y="8.342cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr16" draw:text-style-name="P45" draw:layer="layout" svg:width="4.399cm" svg:height="1.8cm" svg:x="1.302cm" svg:y="6.801cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T18">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr16" draw:text-style-name="P45" draw:layer="layout" svg:width="4.399cm" svg:height="1.8cm" svg:x="8.303cm" svg:y="6.801cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T18">Ipsum</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr16" draw:text-style-name="P45" draw:layer="layout" svg:width="4.399cm" svg:height="1.8cm" svg:x="15.302cm" svg:y="6.801cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T18">Dolor</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr16" draw:text-style-name="P45" draw:layer="layout" svg:width="4.399cm" svg:height="1.8cm" svg:x="22.301cm" svg:y="6.801cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T18">Sit</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="5" presentation:class="page"/>
          <draw:frame presentation:style-name="pr17" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page6" draw:style-name="dp1" draw:master-page-name="Content_20_">
        <draw:path draw:style-name="gr23" draw:text-style-name="P46" draw:layer="layout" svg:width="4.883cm" svg:height="2.44cm" svg:x="17.723cm" svg:y="5.434cm" svg:viewBox="0 0 4884 2441" svg:d="M0 0c0 814 0 1627 0 2441 243 0 487 0 730 0 0-571 0-1141 0-1712 1142 0 2283 0 3425 0 0 571 0 1141 0 1712 243 0 486 0 729 0 0-814 0-1627 0-2441-1628 0-3256 0-4884 0z">
          <text:p/>
        </draw:path>
        <draw:g>
          <draw:path draw:style-name="gr24" draw:text-style-name="P40" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="19.861cm" svg:y="5.434cm" svg:viewBox="0 0 729 729" svg:d="M729 364c0 64-17 127-49 183-32 55-78 101-133 133-56 32-119 49-183 49s-127-17-182-49-101-78-133-133c-32-56-49-119-49-183s17-126 49-182c32-55 78-101 133-133s118-49 182-49 127 17 183 49c55 32 101 78 133 133 32 56 49 118 49 182z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr25" draw:text-style-name="P41" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="19.861cm" svg:y="5.434cm" svg:viewBox="0 0 729 729" svg:d="M729 364c0 64-17 127-49 183-32 55-78 101-133 133-56 32-119 49-183 49s-127-17-182-49-101-78-133-133c-32-56-49-119-49-183s17-127 49-182c32-56 78-101 133-133s118-49 182-49 127 17 183 49c55 32 101 77 133 133 32 55 49 118 49 182z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr26" draw:text-style-name="P12" draw:layer="layout" svg:width="1.228cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (20.2252883571429cm 5.43365504761905cm)" svg:viewBox="0 0 1229 0" svg:d="M0 0c410 0 819 0 1229 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr27" draw:text-style-name="P46" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="20.054cm" svg:y="4.034cm" svg:viewBox="0 0 343 343" svg:d="M343 171c0-30-8-59-23-85s-37-48-63-63-56-23-86-23-59 8-85 23-48 37-63 63-23 55-23 85c0 31 8 60 23 86s37 48 63 63 55 23 85 23 60-8 86-23 48-37 63-63 23-55 23-86z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr28" draw:text-style-name="P47" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="20.054cm" svg:y="4.034cm" svg:viewBox="0 0 343 343" svg:d="M343 171c0-31-8-59-23-85s-37-48-63-63-56-23-86-23-59 8-85 23-48 37-63 63-23 54-23 85c0 30 8 60 23 86s37 48 63 63 55 23 85 23 60-8 86-23 48-37 63-63 23-56 23-86z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:path draw:style-name="gr29" draw:text-style-name="P48" draw:layer="layout" svg:width="4.883cm" svg:height="2.972cm" svg:x="13.57cm" svg:y="7.344cm" svg:viewBox="0 0 4884 2973" svg:d="M0 531c0 814 0 1628 0 2442 1628 0 3256 0 4884 0 0-814 0-1628 0-2442-121-177-242-354-363-531-122 177-245 354-367 531 0 571 0 1142 0 1713-1141 0-2283 0-3424 0 0-571 0-1142 0-1713-243 0-487 0-730 0z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr30" draw:text-style-name="P49" draw:layer="layout" svg:width="4.883cm" svg:height="2.92cm" svg:x="9.416cm" svg:y="5.434cm" svg:viewBox="0 0 4884 2921" svg:d="M0 0c0 814 0 1627 0 2441 243 0 486 0 729 0 0-571 0-1141 0-1712 1142 0 2283 0 3425 0 0 571 0 1141 0 1712 118 160 237 320 355 480 125-160 250-320 375-480 0-814 0-1627 0-2441-1628 0-3256 0-4884 0z">
          <text:p/>
        </draw:path>
        <draw:g>
          <draw:path draw:style-name="gr31" draw:text-style-name="P40" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="15.663cm" svg:y="9.587cm" svg:viewBox="0 0 729 729" svg:d="M729 365c0 64-17 126-49 182-32 55-78 101-133 133-56 32-118 49-182 49s-128-17-183-49c-56-32-101-78-133-133-32-56-49-118-49-182s17-127 49-183c32-55 77-101 133-133 55-32 119-49 183-49s126 17 182 49c55 32 101 78 133 133 32 56 49 119 49 183z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr32" draw:text-style-name="P41" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="15.663cm" svg:y="9.587cm" svg:viewBox="0 0 729 729" svg:d="M729 365c0 64-17 126-49 182-32 55-78 101-133 133-56 32-118 49-182 49s-128-17-183-49c-56-32-101-78-133-133-32-56-49-118-49-182s17-128 49-183c32-56 77-101 133-133 55-32 119-49 183-49s126 17 182 49c55 32 101 77 133 133 32 55 49 119 49 183z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr33" draw:text-style-name="P12" draw:layer="layout" svg:width="1.228cm" svg:height="0cm" draw:transform="rotate (-1.5707963267949) translate (16.02843825cm 10.316345015873cm)" svg:viewBox="0 0 1229 0" svg:d="M0 0c410 0 819 0 1229 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr34" draw:text-style-name="P48" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="15.856cm" svg:y="11.373cm" svg:viewBox="0 0 343 343" svg:d="M343 172c0 30-8 59-23 85s-37 48-63 63-55 23-85 23-60-8-86-23-48-37-63-63-23-55-23-85c0-31 8-60 23-86s37-48 63-63 56-23 86-23 59 8 85 23 48 37 63 63 23 55 23 86z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr35" draw:text-style-name="P50" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="15.856cm" svg:y="11.373cm" svg:viewBox="0 0 343 343" svg:d="M343 172c0 30-8 59-23 85s-37 48-63 63-55 23-85 23-60-8-86-23-48-37-63-63-23-55-23-85c0-31 8-60 23-86s37-48 63-63 56-23 86-23 59 8 85 23 48 37 63 63 23 55 23 86z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr36" draw:text-style-name="P40" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="11.529cm" svg:y="5.434cm" svg:viewBox="0 0 729 729" svg:d="M729 365c0 64-17 126-49 182-32 55-78 101-133 133-56 32-119 49-183 49s-127-17-182-49-101-78-133-133c-32-56-49-118-49-182s17-127 49-183c32-55 78-101 133-133s118-49 182-49 127 17 183 49c55 32 101 78 133 133 32 56 49 119 49 183z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr37" draw:text-style-name="P41" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="11.529cm" svg:y="5.434cm" svg:viewBox="0 0 729 729" svg:d="M729 365c0 64-17 126-49 182-32 55-78 101-133 133-56 32-119 49-183 49s-127-17-182-49-101-78-133-133c-32-56-49-118-49-182s17-128 49-183c32-56 78-101 133-133s118-49 182-49 127 17 183 49c55 32 101 77 133 133 32 55 49 119 49 183z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr38" draw:text-style-name="P12" draw:layer="layout" svg:width="1.227cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (11.8925859642857cm 5.43365504761905cm)" svg:viewBox="0 0 1228 0" svg:d="M0 0c409 0 819 0 1228 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr39" draw:text-style-name="P49" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="11.722cm" svg:y="4.034cm" svg:viewBox="0 0 343 343" svg:d="M343 172c0-31-8-60-23-86s-37-48-63-63-56-23-86-23-59 8-85 23-48 37-63 63-23 55-23 86c0 30 8 59 23 85s37 48 63 63 55 23 85 23 60-8 86-23 48-37 63-63 23-55 23-85z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr40" draw:text-style-name="P51" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="11.722cm" svg:y="4.034cm" svg:viewBox="0 0 343 343" svg:d="M343 172c0-31-8-60-23-86s-37-48-63-63-56-23-86-23-59 8-85 23-48 37-63 63-23 55-23 86c0 30 8 59 23 85s37 48 63 63 55 23 85 23 60-8 86-23 48-37 63-63 23-55 23-85z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:path draw:style-name="gr41" draw:text-style-name="P23" draw:layer="layout" svg:width="4.882cm" svg:height="2.888cm" svg:x="5.262cm" svg:y="7.428cm" svg:viewBox="0 0 4883 2889" svg:d="M0 447c0 814 0 1628 0 2442 1628 0 3255 0 4883 0 0-814 0-1628 0-2442-122-149-244-298-366-447-121 149-242 298-363 447 0 571 0 1142 0 1713-1142 0-2283 0-3425 0 0-571 0-1142 0-1713-243 0-486 0-729 0z">
          <text:p/>
        </draw:path>
        <draw:g>
          <draw:path draw:style-name="gr31" draw:text-style-name="P40" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="7.341cm" svg:y="9.587cm" svg:viewBox="0 0 729 729" svg:d="M729 365c0 64-17 126-49 182-32 55-78 101-133 133-56 32-118 49-182 49s-128-17-183-49c-56-32-101-78-133-133-32-56-49-118-49-182s17-127 49-183c32-55 77-101 133-133 55-32 119-49 183-49s126 17 182 49c55 32 101 78 133 133 32 56 49 119 49 183z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr42" draw:text-style-name="P41" draw:layer="layout" svg:width="0.728cm" svg:height="0.728cm" svg:x="7.341cm" svg:y="9.587cm" svg:viewBox="0 0 729 729" svg:d="M729 365c0 64-17 126-49 182-32 55-78 101-133 133-56 32-118 49-182 49s-128-17-183-49c-56-32-101-78-133-133-32-56-49-118-49-182s17-128 49-183c32-56 77-101 133-133 55-32 119-49 183-49s126 17 182 49c55 32 101 77 133 133 32 55 49 119 49 183z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr43" draw:text-style-name="P12" draw:layer="layout" svg:width="1.228cm" svg:height="0cm" draw:transform="rotate (-1.5707963267949) translate (7.7057355cm 10.316345015873cm)" svg:viewBox="0 0 1229 0" svg:d="M0 0c410 0 819 0 1229 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr44" draw:text-style-name="P23" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="7.534cm" svg:y="11.373cm" svg:viewBox="0 0 343 343" svg:d="M343 172c0 30-8 59-23 85s-37 48-63 63-55 23-85 23c-31 0-60-8-86-23s-48-37-63-63-23-55-23-85c0-31 8-60 23-86s37-48 63-63 55-23 86-23c30 0 59 8 85 23s48 37 63 63 23 55 23 86z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr45" draw:text-style-name="P52" draw:layer="layout" svg:width="0.342cm" svg:height="0.342cm" svg:x="7.534cm" svg:y="11.373cm" svg:viewBox="0 0 343 343" svg:d="M343 172c0 30-8 59-23 85s-37 48-63 63-55 23-85 23c-31 0-60-8-86-23s-48-37-63-63-23-55-23-85c0-31 8-60 23-86s37-48 63-63 55-23 86-23c30 0 59 8 85 23s48 37 63 63 23 55 23 86z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr46" draw:text-style-name="P53" draw:layer="layout" svg:width="1.02cm" svg:height="1.02cm" svg:x="5.116cm" svg:y="7.365cm" svg:viewBox="0 0 1021 1021" svg:d="M1021 510c0 90-24 178-68 256-45 77-110 142-187 187-78 44-166 68-255 68-90 0-179-24-256-68-78-45-142-110-186-187-45-78-69-166-69-256 0-89 24-177 69-255 44-77 108-143 186-187 77-45 166-68 256-68 89 0 177 23 255 68 77 44 142 110 187 187 44 78 68 166 68 255z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr47" draw:text-style-name="P54" draw:layer="layout" svg:width="1.02cm" svg:height="1.02cm" svg:x="5.116cm" svg:y="7.365cm" svg:viewBox="0 0 1021 1021" svg:d="M1021 510c0 89-24 178-68 256-45 77-110 142-187 187-78 44-166 68-255 68-90 0-179-24-256-68-78-45-142-110-186-187-45-78-69-167-69-256 0-90 24-178 69-255 44-78 108-143 186-187 77-45 166-68 256-68 89 0 177 23 255 68 77 44 142 109 187 187 44 77 68 165 68 255z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr48" draw:text-style-name="P55" draw:layer="layout" svg:width="0.582cm" svg:height="0.582cm" svg:x="5.335cm" svg:y="7.584cm" svg:viewBox="0 0 583 583" svg:d="M583 291c0 52-14 101-39 146-26 44-63 81-107 107-45 26-94 39-145 39-52 0-102-13-146-39-45-26-81-63-107-107-26-45-39-94-39-146 0-51 13-101 39-145 26-45 62-81 107-107 44-26 94-39 146-39 51 0 100 13 145 39 44 26 82 62 107 107 26 44 39 94 39 145z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr49" draw:text-style-name="P56" draw:layer="layout" svg:width="1.02cm" svg:height="1.02cm" svg:x="21.745cm" svg:y="7.365cm" svg:viewBox="0 0 1021 1021" svg:d="M1021 510c0 90-24 178-69 256-45 77-110 142-187 187-78 44-166 68-255 68-90 0-177-24-255-68-78-45-142-110-187-187-45-78-68-166-68-256 0-89 23-177 68-255 45-77 109-143 187-187 78-45 166-68 255-68 90 0 177 23 255 68 77 44 142 110 187 187 45 78 69 166 69 255z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr50" draw:text-style-name="P57" draw:layer="layout" svg:width="1.02cm" svg:height="1.02cm" svg:x="21.745cm" svg:y="7.365cm" svg:viewBox="0 0 1021 1021" svg:d="M1021 510c0 89-24 178-69 256-45 77-110 142-187 187-78 44-166 68-255 68-90 0-177-24-255-68-78-45-142-110-187-187-45-78-68-167-68-256 0-90 23-178 68-255 45-78 109-143 187-187 78-45 165-68 255-68 89 0 177 23 255 68 77 44 142 109 187 187 45 77 69 165 69 255z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr51" draw:text-style-name="P58" draw:layer="layout" svg:width="0.582cm" svg:height="0.582cm" svg:x="21.964cm" svg:y="7.584cm" svg:viewBox="0 0 583 583" svg:d="M583 291c0 52-14 101-39 146-26 44-63 81-107 107s-95 39-146 39-102-13-146-39c-45-26-81-63-106-107-26-45-39-94-39-146 0-51 13-101 39-145 25-45 61-81 106-107 44-26 95-39 146-39s102 13 146 39 81 62 107 107c25 44 39 94 39 145z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="4.9cm" svg:y="11.404cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="13.1cm" svg:y="11.408cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="8.9cm" svg:y="0.521cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="17.472cm" svg:y="0.321cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:custom-shape draw:name="Simple" draw:style-name="gr52" draw:text-style-name="P60" draw:layer="layout" svg:width="3.023cm" svg:height="1.011cm" svg:x="23.2cm" svg:y="7.499cm">
          <text:p text:style-name="P59">
            <text:span text:style-name="T19">Ipsum </text:span>
          </text:p>
          <draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:mirror-horizontal="false" draw:mirror-vertical="false" draw:extrusion="false" draw:extrusion-depth="1cm 0" draw:extrusion-viewpoint="(3.472cm -3.472cm 25cm)" draw:extrusion-origin="0.5 -0.5" draw:extrusion-skew="50 -135" dr3d:projection="perspective" draw:extrusion-first-light-direction="(50000 -50000 10000)" draw:extrusion-second-light-direction="(-50000 0 10000)" dr3d:shade-mode="flat" draw:extrusion-metal="false" draw:extrusion-specularity="0%" draw:extrusion-diffusion="0%" draw:extrusion-color="true" draw:text-areas="0 0 21600 21600" draw:text-path="true" draw:text-path-mode="shape" draw:text-path-scale="path" draw:text-path-same-letter-heights="false" draw:type="fontwork-plain-text" draw:modifiers="10800" draw:enhanced-path="M ?f3 0 L ?f5 0 N M ?f6 21600 L ?f7 21600 N">
            <draw:equation draw:name="f0" draw:formula="$0 -10800"/>
            <draw:equation draw:name="f1" draw:formula="?f0 *2"/>
            <draw:equation draw:name="f2" draw:formula="abs(?f1 )"/>
            <draw:equation draw:name="f3" draw:formula="if(?f1 ,0,?f2 )"/>
            <draw:equation draw:name="f4" draw:formula="21600-?f2 "/>
            <draw:equation draw:name="f5" draw:formula="if(?f1 ,?f4 ,21600)"/>
            <draw:equation draw:name="f6" draw:formula="if(?f1 ,?f2 ,0)"/>
            <draw:equation draw:name="f7" draw:formula="if(?f1 ,21600,?f4 )"/>
            <draw:handle draw:handle-position="$0 21600" draw:handle-range-x-minimum="6629" draw:handle-range-x-maximum="14971"/>
          </draw:enhanced-geometry>
        </draw:custom-shape>
        <draw:custom-shape draw:name="Simple_0" draw:style-name="gr53" draw:text-style-name="P61" draw:layer="layout" svg:width="3.023cm" svg:height="0.799cm" svg:x="1.8cm" svg:y="7.499cm">
          <text:p text:style-name="P59">
            <text:span text:style-name="T19">Lorem </text:span>
          </text:p>
          <draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:mirror-horizontal="false" draw:mirror-vertical="false" draw:extrusion="false" draw:extrusion-depth="1cm 0" draw:extrusion-viewpoint="(3.472cm -3.472cm 25cm)" draw:extrusion-origin="0.5 -0.5" draw:extrusion-skew="50 -135" dr3d:projection="perspective" draw:extrusion-first-light-direction="(50000 -50000 10000)" draw:extrusion-second-light-direction="(-50000 0 10000)" dr3d:shade-mode="flat" draw:extrusion-metal="false" draw:extrusion-specularity="0%" draw:extrusion-diffusion="0%" draw:extrusion-color="true" draw:text-areas="0 0 21600 21600" draw:text-path="true" draw:text-path-mode="shape" draw:text-path-scale="path" draw:text-path-same-letter-heights="false" draw:type="fontwork-plain-text" draw:modifiers="10800" draw:enhanced-path="M ?f3 0 L ?f5 0 N M ?f6 21600 L ?f7 21600 N">
            <draw:equation draw:name="f0" draw:formula="$0 -10800"/>
            <draw:equation draw:name="f1" draw:formula="?f0 *2"/>
            <draw:equation draw:name="f2" draw:formula="abs(?f1 )"/>
            <draw:equation draw:name="f3" draw:formula="if(?f1 ,0,?f2 )"/>
            <draw:equation draw:name="f4" draw:formula="21600-?f2 "/>
            <draw:equation draw:name="f5" draw:formula="if(?f1 ,?f4 ,21600)"/>
            <draw:equation draw:name="f6" draw:formula="if(?f1 ,?f2 ,0)"/>
            <draw:equation draw:name="f7" draw:formula="if(?f1 ,21600,?f4 )"/>
            <draw:handle draw:handle-position="$0 21600" draw:handle-range-x-minimum="6629" draw:handle-range-x-maximum="14971"/>
          </draw:enhanced-geometry>
        </draw:custom-shape>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="6" presentation:class="page"/>
          <draw:frame presentation:style-name="pr19" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page7" draw:style-name="dp1" draw:master-page-name="Content_20_">
        <draw:g>
          <draw:path draw:style-name="gr54" draw:text-style-name="P23" draw:layer="layout" svg:width="4.746cm" svg:height="0.689cm" svg:x="4.507cm" svg:y="7.505cm" svg:viewBox="0 0 4747 690" svg:d="M345 0c-191 0-345 153-345 345 0 191 154 345 345 345 115 0 230 0 345 0 69 0 138 0 207 0 1283 0 2567 0 3850 0 0-230 0-460 0-690-1283 0-2567 0-3850 0-69 0-138 0-207 0-115 0-230 0-345 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr55" draw:text-style-name="P49" draw:layer="layout" svg:width="4.746cm" svg:height="0.689cm" svg:x="9.254cm" svg:y="7.505cm" svg:viewBox="0 0 4747 690" svg:d="M0 0c1582 0 3165 0 4747 0 0 230 0 460 0 690-1582 0-3165 0-4747 0 0-230 0-460 0-690z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr56" draw:text-style-name="P48" draw:layer="layout" svg:width="4.746cm" svg:height="0.689cm" svg:x="14cm" svg:y="7.505cm" svg:viewBox="0 0 4747 690" svg:d="M0 0c1582 0 3165 0 4747 0 0 230 0 460 0 690-1582 0-3165 0-4747 0 0-230 0-460 0-690z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr57" draw:text-style-name="P46" draw:layer="layout" svg:width="4.746cm" svg:height="0.689cm" svg:x="18.746cm" svg:y="7.505cm" svg:viewBox="0 0 4747 690" svg:d="M0 0c1582 0 3165 0 4747 0 0 230 0 460 0 690-1582 0-3165 0-4747 0 0-230 0-460 0-690z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr58" draw:text-style-name="P12" draw:layer="layout" svg:width="1.016cm" svg:height="0.78cm" svg:x="9.006cm" svg:y="11.317cm" svg:viewBox="0 0 1017 781" svg:d="M0 0c0 260 0 521 0 781 339 0 678 0 1017 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr59" draw:text-style-name="P12" draw:layer="layout" svg:width="0.725cm" svg:height="0.501cm" svg:x="9.162cm" svg:y="11.441cm" svg:viewBox="0 0 726 502" svg:d="M0 502c95-95 191-191 286-286 16 59 31 117 47 176 131-131 262-261 393-392">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr60" draw:text-style-name="P40" draw:layer="layout" svg:width="0.13cm" svg:height="0.132cm" svg:x="9.833cm" svg:y="11.36cm" svg:viewBox="0 0 131 133" svg:d="M0 42c31 30 61 61 92 91 13-44 26-89 39-133-44 14-87 28-131 42z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr54" draw:text-style-name="P23" draw:layer="layout" svg:width="2.632cm" svg:height="2.633cm" svg:x="8.188cm" svg:y="10.927cm" svg:viewBox="0 0 2633 2634" svg:d="M2633 1317c0 231-62 458-177 658-116 200-281 366-481 482-201 115-428 177-659 177s-458-62-658-177c-200-116-367-282-482-482-116-200-176-427-176-658s61-458 176-658c116-200 282-367 482-482 200-116 427-177 658-177s458 61 659 177c200 115 366 282 481 482 116 200 177 427 177 658z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr61" draw:text-style-name="P12" draw:layer="layout" svg:width="2.847cm" svg:height="0cm" draw:transform="rotate (-1.5707963267949) translate (9.25366953571429cm 8.07948698412698cm)" svg:viewBox="0 0 2848 0" svg:d="M0 0c949 0 1899 0 2848 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr62" draw:text-style-name="P40" draw:layer="layout" svg:width="0.639cm" svg:height="0.64cm" svg:x="8.934cm" svg:y="7.554cm" svg:viewBox="0 0 640 641" svg:d="M640 320c0 57-15 112-43 161-28 48-68 89-117 117s-104 43-160 43-112-15-160-43c-49-28-89-69-117-117-28-49-43-104-43-161 0-56 15-111 43-160 28-48 68-89 117-117 48-28 104-43 160-43s111 15 160 43 89 69 117 117c28 49 43 104 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr63" draw:text-style-name="P41" draw:layer="layout" svg:width="0.639cm" svg:height="0.64cm" svg:x="8.934cm" svg:y="7.554cm" svg:viewBox="0 0 640 641" svg:d="M640 320c0 56-15 112-43 161-28 48-68 89-117 117s-104 43-160 43-112-15-160-43c-49-28-89-69-117-117-28-49-43-105-43-161 0-57 15-112 43-160 28-49 68-89 117-117 48-28 104-43 160-43s111 15 160 43 89 68 117 117c28 48 43 103 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr64" draw:text-style-name="P41" draw:layer="layout" svg:width="2.632cm" svg:height="2.633cm" svg:x="7.937cm" svg:y="10.927cm" svg:viewBox="0 0 2633 2634" svg:d="M2633 1317c0 231-61 458-176 658-116 200-282 366-482 482-200 115-427 177-658 177s-458-62-658-177c-201-116-367-282-482-482-116-200-177-427-177-658s61-458 177-658c115-200 281-367 482-482 200-116 427-177 658-177s458 61 658 177c200 115 366 282 482 482 115 200 176 427 176 658z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr24" draw:text-style-name="P40" draw:layer="layout" svg:width="0.64cm" svg:height="0.64cm" svg:x="13.68cm" svg:y="7.554cm" svg:viewBox="0 0 641 641" svg:d="M641 320c0 57-15 112-43 161-28 48-69 89-117 117-49 28-105 43-161 43-57 0-112-15-160-43-49-28-89-69-117-117-28-49-43-104-43-161 0-56 15-111 43-160 28-48 68-89 117-117 48-28 104-43 160-43 57 0 112 15 161 43 48 28 89 69 117 117 28 49 43 104 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr65" draw:text-style-name="P41" draw:layer="layout" svg:width="0.64cm" svg:height="0.64cm" svg:x="13.68cm" svg:y="7.554cm" svg:viewBox="0 0 641 641" svg:d="M641 320c0 56-15 112-43 161-28 48-69 89-117 117-49 28-105 43-161 43-57 0-112-15-160-43-49-28-89-69-117-117-28-49-43-105-43-161 0-57 15-112 43-160 28-49 68-89 117-117 48-28 103-43 160-43 56 0 112 15 161 43 48 28 89 68 117 117 28 48 43 103 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr66" draw:text-style-name="P12" draw:layer="layout" svg:width="2.848cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (14.0005cm 7.50452349206349cm)" svg:viewBox="0 0 2849 0" svg:d="M0 0c950 0 1899 0 2849 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr67" draw:text-style-name="P49" draw:layer="layout" svg:width="2.632cm" svg:height="2.632cm" svg:x="12.909cm" svg:y="2.077cm" svg:viewBox="0 0 2633 2633" svg:d="M2633 1316c0 231-61 457-176 658-116 200-282 366-482 482-200 115-427 177-658 177s-459-62-659-177c-201-116-367-282-482-482-116-201-176-427-176-658s61-458 176-658c116-200 281-366 482-482 200-116 428-176 659-176s458 60 658 176 366 282 482 482c115 200 176 427 176 658z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr68" draw:text-style-name="P51" draw:layer="layout" svg:width="2.632cm" svg:height="2.632cm" svg:x="12.684cm" svg:y="2.023cm" svg:viewBox="0 0 2633 2633" svg:d="M2633 1316c0-231-61-458-176-658-116-200-282-367-482-482-200-116-428-176-659-176-232 0-458 60-658 176-200 115-367 282-482 482-116 200-176 427-176 658s60 458 176 659c115 200 282 365 482 481 200 115 426 177 658 177 231 0 459-61 659-177 200-115 366-281 482-481 115-201 176-428 176-659z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr62" draw:text-style-name="P40" draw:layer="layout" svg:width="0.639cm" svg:height="0.639cm" svg:x="18.426cm" svg:y="7.505cm" svg:viewBox="0 0 640 640" svg:d="M640 320c0 56-15 111-43 160-28 48-69 89-117 117-49 28-104 43-160 43s-111-15-160-43-89-69-117-117c-28-49-43-104-43-160s15-112 43-160c28-49 68-90 117-118 49-29 104-42 160-42s111 13 160 42c48 28 89 69 117 118 28 48 43 104 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr69" draw:text-style-name="P41" draw:layer="layout" svg:width="0.639cm" svg:height="0.639cm" svg:x="18.426cm" svg:y="7.505cm" svg:viewBox="0 0 640 640" svg:d="M640 320c0 56-15 111-43 160-28 48-69 89-117 117-49 28-104 43-160 43s-111-15-160-43-89-69-117-117c-28-49-43-104-43-160s15-112 43-160c28-49 68-90 117-118 49-29 104-42 160-42s111 13 160 42c48 28 89 69 117 118 28 48 43 104 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr70" draw:text-style-name="P12" draw:layer="layout" svg:width="2.847cm" svg:height="0cm" draw:transform="rotate (-1.5707963267949) translate (18.7463305cm 8.07948698412698cm)" svg:viewBox="0 0 2848 0" svg:d="M0 0c949 0 1899 0 2848 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr71" draw:text-style-name="P48" draw:layer="layout" svg:width="2.632cm" svg:height="2.632cm" svg:x="17.621cm" svg:y="10.888cm" svg:viewBox="0 0 2633 2633" svg:d="M2633 1317c0 231-62 458-177 658-116 200-282 366-482 482-201 115-427 176-658 176s-458-61-658-176c-200-116-367-282-482-482-116-200-176-427-176-658s60-458 176-659c115-200 282-367 482-482 200-116 427-176 658-176s457 60 658 176c200 115 367 282 482 482 116 201 177 428 177 659z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr72" draw:text-style-name="P50" draw:layer="layout" svg:width="2.632cm" svg:height="2.633cm" svg:x="17.43cm" svg:y="10.927cm" svg:viewBox="0 0 2633 2634" svg:d="M2633 1317c0 231-62 458-177 658-116 200-282 366-482 482-201 115-427 177-658 177s-458-62-658-177c-200-116-366-282-482-482s-176-427-176-658 60-458 176-658 282-367 482-482c200-116 427-177 658-177s457 61 658 177c200 115 366 282 482 482 115 200 177 427 177 658z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr73" draw:text-style-name="P40" draw:layer="layout" svg:width="0.639cm" svg:height="0.639cm" svg:x="23.173cm" svg:y="7.505cm" svg:viewBox="0 0 640 640" svg:d="M640 320c0 56-15 111-43 160-28 48-68 89-117 117s-104 43-160 43-112-15-160-43c-49-28-89-69-117-117-29-49-43-104-43-160s14-112 43-160c28-49 68-90 117-118 48-29 104-42 160-42s111 13 160 42c49 28 89 69 117 118 28 48 43 104 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr74" draw:text-style-name="P41" draw:layer="layout" svg:width="0.639cm" svg:height="0.639cm" svg:x="23.173cm" svg:y="7.505cm" svg:viewBox="0 0 640 640" svg:d="M640 320c0 56-15 111-43 160-28 48-68 89-117 117s-104 43-160 43-112-15-160-43c-49-28-89-69-117-117-29-49-43-104-43-160s14-112 43-160c28-49 68-90 117-118 48-29 104-42 160-42s111 13 160 42c49 28 89 69 117 118 28 48 43 104 43 160z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr75" draw:text-style-name="P12" draw:layer="layout" svg:width="2.848cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (23.4931609642857cm 7.50452349206349cm)" svg:viewBox="0 0 2849 0" svg:d="M0 0c950 0 1899 0 2849 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr76" draw:text-style-name="P46" draw:layer="layout" svg:width="2.633cm" svg:height="2.632cm" svg:x="22.362cm" svg:y="2.023cm" svg:viewBox="0 0 2634 2633" svg:d="M2634 1316c0 231-62 458-177 659-116 200-282 365-482 481-200 115-427 177-658 177s-458-62-658-177c-200-116-367-281-482-481-116-201-177-428-177-659s61-458 177-658c115-200 282-367 482-482 200-116 427-176 658-176s458 60 658 176c200 115 367 282 482 482 116 200 177 427 177 658z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr77" draw:text-style-name="P47" draw:layer="layout" svg:width="2.632cm" svg:height="2.632cm" svg:x="22.176cm" svg:y="2.023cm" svg:viewBox="0 0 2633 2633" svg:d="M2633 1316c0-231-60-458-176-658s-282-367-482-482c-200-116-427-176-658-176s-459 60-659 176c-201 115-366 282-481 482-116 200-177 427-177 658s61 458 177 659c115 200 280 365 481 481 200 115 428 177 659 177s458-61 658-177c200-115 366-281 482-481 116-201 176-428 176-659z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="2.573cm" svg:y="8.272cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="7.173cm" svg:y="3.823cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="11.773cm" svg:y="8.272cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr18" draw:text-style-name="P10" draw:layer="layout" svg:width="5.428cm" svg:height="3.457cm" svg:x="16.934cm" svg:y="3.92cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P62" draw:layer="layout" svg:width="4.6cm" svg:height="1.813cm" svg:x="7.584cm" svg:y="2.965cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T20">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P63" draw:layer="layout" svg:width="4.6cm" svg:height="1.813cm" svg:x="17.201cm" svg:y="2.965cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P29">
              <text:span text:style-name="T21">Ipsum</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame draw:style-name="gr78" draw:text-style-name="P65" draw:layer="layout" svg:width="4.6cm" svg:height="1.457cm" svg:x="12.121cm" svg:y="11.608cm">
          <draw:text-box>
            <text:p text:style-name="P64">
              <text:span text:style-name="T22">Sit</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame draw:style-name="gr79" draw:text-style-name="P67" draw:layer="layout" svg:width="4.6cm" svg:height="1.457cm" svg:x="3.001cm" svg:y="11.608cm">
          <draw:text-box>
            <text:p text:style-name="P66">
              <text:span text:style-name="T23">Dolor</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="7" presentation:class="page"/>
          <draw:frame presentation:style-name="pr21" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page8" draw:style-name="dp1" draw:master-page-name="Insert_20_Picture">
        <draw:path draw:style-name="gr80" draw:text-style-name="P68" draw:layer="layout" svg:width="11.648cm" svg:height="11.647cm" svg:x="13.901cm" svg:y="1.882cm" svg:viewBox="0 0 11649 11648" svg:d="M0 0c3883 0 7766 0 11649 0 0 3883 0 7765 0 11648-3883 0-7766 0-11649 0 0-3883 0-7765 0-11648z">
          <text:p/>
        </draw:path>
        <draw:frame presentation:style-name="pr22" draw:text-style-name="P34" draw:layer="layout" svg:width="7.862cm" svg:height="3.102cm" svg:x="1.178cm" svg:y="6.459cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame draw:style-name="gr81" draw:text-style-name="P69" draw:layer="layout" svg:width="5.027cm" svg:height="0.924cm" svg:x="13cm" svg:y="14.385cm">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T24">Work by: Falia Vicky</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="8" presentation:class="page"/>
          <draw:frame presentation:style-name="pr23" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page9" draw:style-name="dp1" draw:master-page-name="Insert_20_Picture_20_1">
        <draw:path draw:style-name="gr82" draw:text-style-name="P51" draw:layer="layout" svg:width="10.386cm" svg:height="11.163cm" svg:x="2.618cm" svg:y="2.291cm" svg:viewBox="0 0 10387 11164" svg:d="M0 0c3462 0 6924 0 10387 0 0 3721 0 7443 0 11164-3463 0-6925 0-10387 0 0-3721 0-7443 0-11164z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr83" draw:text-style-name="P70" draw:layer="layout" svg:width="10.852cm" svg:height="11.664cm" svg:x="2.385cm" svg:y="2.041cm" svg:viewBox="0 0 10853 11665" svg:d="M0 0c3618 0 7235 0 10853 0 0 3888 0 7777 0 11665-3618 0-7235 0-10853 0 0-3888 0-7777 0-11665z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr84" draw:text-style-name="P71" draw:layer="layout" svg:width="10.915cm" svg:height="11.728cm" svg:x="2.353cm" svg:y="2.009cm" svg:viewBox="0 0 10916 11729" svg:d="M4 16c3-5 7-9 12-12 3-2 7-3 11-4 3621 0 7242 0 10862 0 4 1 8 2 11 4 5 3 9 7 12 12 3 4 4 10 4 16 0 3888 0 7776 0 11665 0 5-1 11-4 16s-7 9-12 12c-5 2-10 4-16 4-3617 0-7235 0-10852 0-6 0-11-2-16-4-5-3-9-7-12-12s-4-11-4-16c0-3889 0-7777 0-11665 0-6 1-12 4-16z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr85" draw:text-style-name="P41" draw:layer="layout" svg:width="10.852cm" svg:height="11.664cm" svg:x="2.385cm" svg:y="2.041cm" svg:viewBox="0 0 10853 11665" svg:d="M0 0c3618 0 7235 0 10853 0 0 3888 0 7777 0 11665-3618 0-7235 0-10853 0 0-3888 0-7777 0-11665z">
          <text:p/>
        </draw:path>
        <draw:frame presentation:style-name="pr24" draw:text-style-name="P72" draw:layer="layout" svg:width="13.185cm" svg:height="2.978cm" svg:x="11.372cm" svg:y="3.386cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T25">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr25" draw:text-style-name="P34" draw:layer="layout" svg:width="7.862cm" svg:height="3.102cm" svg:x="16.772cm" svg:y="6.364cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame draw:style-name="gr86" draw:text-style-name="P69" draw:layer="layout" svg:width="6.551cm" svg:height="0.924cm" svg:x="1.895cm" svg:y="14.3cm">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T24">Work by: Muhammad Aria</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="9" presentation:class="page"/>
          <draw:frame presentation:style-name="pr26" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page10" draw:style-name="dp1" draw:master-page-name="Topic_20_title_20_3">
        <draw:polygon draw:style-name="gr18" draw:text-style-name="P37" draw:layer="layout" svg:width="3.111cm" svg:height="3.111cm" svg:x="3.238cm" svg:y="5.908cm" svg:viewBox="0 0 3112 3112" draw:points="3112,1556 3109,1658 3098,1759 3082,1860 3059,1959 3029,2056 2993,2151 2951,2244 2903,2334 2849,2421 2790,2503 2725,2582 2656,2656 2582,2725 2503,2790 2421,2849 2334,2903 2244,2951 2151,2993 2056,3029 1959,3058 1860,3082 1759,3098 1658,3108 1556,3112 1454,3108 1352,3098 1252,3082 1153,3058 1056,3029 961,2993 868,2951 778,2903 691,2849 608,2790 530,2725 455,2656 386,2582 321,2503 262,2421 208,2334 160,2244 118,2151 82,2056 53,1959 30,1860 13,1759 3,1658 0,1556 3,1454 13,1352 30,1252 53,1153 82,1056 118,961 160,868 208,778 262,691 322,608 386,529 456,455 530,386 608,321 691,262 778,208 868,160 961,118 1056,82 1153,53 1252,30 1352,13 1454,3 1556,0 1658,3 1759,13 1860,30 1959,53 2056,82 2151,118 2244,160 2334,208 2421,262 2503,321 2582,386 2656,455 2725,529 2790,608 2849,691 2903,778 2951,868 2993,961 3029,1056 3059,1153 3082,1252 3098,1352 3109,1454">
          <text:p text:style-name="P29">
            <text:span text:style-name="T16">3</text:span>
          </text:p>
        </draw:polygon>
        <draw:frame presentation:style-name="pr27" draw:text-style-name="P73" draw:layer="layout" svg:width="11.279cm" svg:height="2.596cm" svg:x="5.394cm" svg:y="6.176cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T26">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr28" draw:text-style-name="P38" draw:layer="layout" svg:width="8.228cm" svg:height="2.976cm" svg:x="7.1cm" svg:y="8.219cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T2">
                <text:line-break/>
              </text:span>
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam imperdiet lobortis metus. Phasellus nisi metus, tempes ac, porta nec, felis. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="10" presentation:class="page"/>
          <draw:frame presentation:style-name="pr29" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page11" draw:style-name="dp1" draw:master-page-name="Content_20_">
        <draw:path draw:style-name="gr19" draw:text-style-name="P40" draw:layer="layout" svg:width="5.804cm" svg:height="5.804cm" svg:x="11.347cm" svg:y="5.066cm" svg:viewBox="0 0 5805 5805" svg:d="M5782 3272c-65 506-262 985-570 1390-310 405-720 722-1190 919-470 196-983 265-1489 201-505-65-985-262-1390-570-406-310-722-720-918-1190-197-470-266-983-201-1489 64-505 261-985 571-1390 308-406 717-722 1188-918 470-197 984-266 1489-201 506 64 985 262 1390 571 405 308 723 718 919 1189 196 469 265 983 201 1488z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr87" draw:text-style-name="P19" draw:layer="layout" svg:width="1.822cm" svg:height="2.895cm" svg:x="14.242cm" svg:y="5.105cm" svg:viewBox="0 0 1823 2896" svg:d="M189 0c314 20 622 92 913 211 260 106 503 250 721 426-608 753-1215 1506-1823 2259 63-965 126-1931 189-2896z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr88" draw:text-style-name="P74" draw:layer="layout" svg:width="2.885cm" svg:height="1.913cm" svg:x="14.222cm" svg:y="6.072cm" svg:viewBox="0 0 2886 1914" svg:d="M2182 0c207 236 374 505 496 795 107 259 178 532 208 811-962 103-1924 206-2886 308 728-638 1454-1276 2182-1914z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr89" draw:text-style-name="P75" draw:layer="layout" svg:width="1.913cm" svg:height="2.885cm" svg:x="14.232cm" svg:y="7.941cm" svg:viewBox="0 0 1914 2886" svg:d="M1914 2182c-236 207-504 375-794 496-260 108-532 178-812 208-103-962-206-1924-308-2886 638 728 1276 1454 1914 2182z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr90" draw:text-style-name="P49" draw:layer="layout" svg:width="1.823cm" svg:height="2.896cm" svg:x="12.434cm" svg:y="7.936cm" svg:viewBox="0 0 1824 2897" svg:d="M1634 2897c-314-21-621-92-913-212-259-106-502-250-721-426 608-753 1216-1506 1824-2259-63 965-127 1932-190 2897z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr91" draw:text-style-name="P76" draw:layer="layout" svg:width="2.886cm" svg:height="1.913cm" svg:x="11.392cm" svg:y="7.951cm" svg:viewBox="0 0 2887 1914" svg:d="M704 1914c-207-236-374-504-496-794-108-260-178-532-208-812 962-103 1925-206 2887-308-728 638-1456 1276-2183 1914z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr15" draw:text-style-name="P23" draw:layer="layout" svg:width="2.896cm" svg:height="1.822cm" svg:x="11.385cm" svg:y="6.154cm" svg:viewBox="0 0 2897 1823" svg:d="M0 1633c21-313 92-621 212-912 106-260 250-503 426-721 753 608 1506 1215 2259 1823-965-63-1932-127-2897-190z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr92" draw:text-style-name="P77" draw:layer="layout" svg:width="1.913cm" svg:height="2.886cm" svg:x="12.353cm" svg:y="5.111cm" svg:viewBox="0 0 1914 2887" svg:d="M0 704c236-207 505-374 795-496 259-108 532-178 811-208 103 962 206 1925 308 2887-638-728-1276-1456-1914-2183z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr93" draw:text-style-name="P17" draw:layer="layout" svg:width="2.896cm" svg:height="1.822cm" svg:x="14.217cm" svg:y="7.961cm" svg:viewBox="0 0 2897 1823" svg:d="M2897 189c-21 314-92 622-212 913-106 260-250 503-426 721-753-608-1506-1215-2259-1823 965 63 1932 126 2897 189z">
          <text:p/>
        </draw:path>
        <draw:path draw:style-name="gr94" draw:text-style-name="P78" draw:layer="layout" svg:width="5.182cm" svg:height="5.182cm" svg:x="11.659cm" svg:y="5.378cm" svg:viewBox="0 0 5183 5183" svg:d="M5162 2921c-58 452-234 879-509 1241-276 361-642 645-1062 821-419 175-878 236-1330 179-451-58-878-234-1240-509-362-276-645-642-821-1062-175-419-237-879-179-1330s234-879 509-1241c276-362 643-645 1062-820 420-175 878-237 1330-179 451 58 878 234 1240 510 362 275 646 642 821 1061 175 420 237 878 179 1329z">
          <text:p/>
        </draw:path>
        <draw:g>
          <draw:path draw:style-name="gr95" draw:text-style-name="P12" draw:layer="layout" svg:width="2.461cm" svg:height="0.242cm" draw:transform="rotate (0.0642281164733913) translate (8.73544184106082cm 9.11379592710036cm)" svg:viewBox="0 0 2462 243" svg:d="M2462 243c-121 0-1641-162-2462-243">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.243cm" svg:height="0.242cm" svg:x="11.104cm" svg:y="9.062cm" svg:viewBox="0 0 244 243" svg:d="M243 134c-3 22-10 42-23 59-12 17-29 31-49 40-19 8-41 11-62 9s-42-9-58-22c-18-13-32-29-41-49-8-20-12-41-9-62 2-22 9-43 23-59 12-18 28-31 48-40 19-8 41-12 63-9 21 2 41 9 58 22 18 12 31 29 40 49 8 20 12 41 10 62z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr95" draw:text-style-name="P12" draw:layer="layout" svg:width="2.736cm" svg:height="-0.001cm" draw:transform="rotate (-0.23422318561764) translate (8.45337893791528cm 6.30155661987995cm)" svg:viewBox="0 0 2737 0" svg:d="M2737 0c-912 0-1825 0-2737 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.242cm" svg:height="0.243cm" svg:x="10.921cm" svg:y="6.806cm" svg:viewBox="0 0 243 244" svg:d="M1 135c2 21 9 41 23 58 12 18 28 31 49 40 19 8 40 12 62 10 21-3 41-10 58-23 18-12 31-29 40-49 8-19 11-41 10-62-3-21-10-42-23-58-12-18-29-32-49-41-19-8-41-12-62-9-21 2-41 9-58 23-18 12-32 28-41 48-8 20-12 41-9 63z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr95" draw:text-style-name="P12" draw:layer="layout" svg:width="4.133cm" svg:height="0.727cm" draw:transform="rotate (-0.422369678982628) translate (9.30924780548699cm 2.79449885472697cm)" svg:viewBox="0 0 4134 728" svg:d="M4134 559c-164-186-329-373-494-559-1213 243-2426 485-3640 728">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.241cm" svg:height="0.242cm" svg:x="12.71cm" svg:y="4.834cm" svg:viewBox="0 0 242 243" svg:d="M242 134c-3 22-10 42-23 59-12 17-29 31-49 40-19 8-40 11-62 9-21-2-41-9-59-22-17-13-30-29-39-49s-11-41-9-62c1-22 9-43 21-59 13-18 30-31 49-40 20-8 41-12 62-9 21 2 42 9 59 22 18 12 31 29 40 49s12 41 10 62z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr95" draw:text-style-name="P79" draw:layer="layout" svg:width="3.784cm" svg:height="0.621cm" draw:transform="skewX (-0.00157079632679487) rotate (0.30473448739821) translate (9.05706310160867cm 12.254745666688cm)" svg:viewBox="0 0 3785 622" svg:d="M3785 63c-166 186-331 373-496 559-1096-207-2193-414-3289-622">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.241cm" svg:height="0.242cm" svg:x="12.614cm" svg:y="10.943cm" svg:viewBox="0 0 242 243" svg:d="M242 134c-3 21-10 41-23 58-12 17-29 32-49 41-19 8-40 11-62 9-21-2-41-10-59-23-17-13-30-28-39-48s-11-41-9-62c1-22 9-42 21-59 13-18 30-31 49-40 20-8 41-12 62-9 21 2 42 9 59 22 18 12 31 29 40 49 9 19 12 41 10 62z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr97" draw:text-style-name="P12" draw:layer="layout" svg:width="2.422cm" svg:height="-0.001cm" draw:transform="rotate (0.173834793498635) translate (17.2892035157545cm 6.93684551094895cm)" svg:viewBox="0 0 2423 0" svg:d="M0 0c808 0 1615 0 2423 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.242cm" svg:height="0.243cm" svg:x="17.136cm" svg:y="6.806cm" svg:viewBox="0 0 243 244" svg:d="M242 135c-2 21-9 41-22 58-13 18-29 31-49 40-19 8-41 12-62 10-22-3-43-10-59-23-18-12-31-29-40-49-8-19-12-41-9-62 2-21 9-42 22-58 12-18 29-32 49-41 19-8 41-12 62-9 22 2 42 9 59 23 17 12 31 28 40 48 8 20 12 41 9 63z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr95" draw:text-style-name="P12" draw:layer="layout" svg:width="2.323cm" svg:height="0.242cm" draw:transform="skewX (-0.00820304748437335) rotate (-0.0991347015132782) translate (17.2250912536002cm 9.05916662300526cm)" svg:viewBox="0 0 2324 243" svg:d="M0 243c115 0 1549-162 2324-243">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.242cm" svg:height="0.242cm" svg:x="17.073cm" svg:y="9.175cm" svg:viewBox="0 0 243 243" svg:d="M242 134c-2 22-9 42-22 59s-29 31-49 40c-20 8-41 11-62 9-22-2-43-9-59-22-18-13-31-29-40-49-8-19-12-41-9-62 2-22 9-43 22-59 12-18 29-31 49-40 19-8 41-12 62-9 22 2 42 9 59 22 17 12 31 29 40 49 8 20 12 41 9 62z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr97" draw:text-style-name="P12" draw:layer="layout" svg:width="4.149cm" svg:height="0.623cm" draw:transform="skewX (0.00157079632679489) rotate (-0.390081087820733) translate (15.7403180136073cm 11.0027601769671cm)" svg:viewBox="0 0 4150 624" svg:d="M0 65c181 186 362 373 543 559 1202-208 2405-416 3607-624">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.241cm" svg:height="0.242cm" svg:x="15.602cm" svg:y="10.943cm" svg:viewBox="0 0 242 243" svg:d="M242 134c-2 21-10 41-23 58-12 17-28 32-48 41-19 8-41 11-63 9-21-2-41-10-59-23-17-13-30-28-39-48s-11-41-9-62c1-22 9-42 21-59 13-18 30-31 49-40 20-8 41-12 62-9 21 2 42 9 59 22 18 12 31 29 40 49 9 19 12 41 10 62z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr95" draw:text-style-name="P12" draw:layer="layout" svg:width="3.871cm" svg:height="0.797cm" draw:transform="skewX (-0.00122173047639602) rotate (0.432841654494594) translate (15.5207469773859cm 4.46331598460372cm)" svg:viewBox="0 0 3872 798" svg:d="M0 559c152-186 304-373 455-559 1139 266 2278 533 3417 798">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.241cm" svg:height="0.242cm" svg:x="15.602cm" svg:y="4.834cm" svg:viewBox="0 0 242 243" svg:d="M242 134c-2 22-10 42-23 59-12 17-28 31-48 40-19 8-41 11-63 9-21-2-41-9-59-22-17-13-30-29-39-49s-11-41-9-62c1-22 9-43 21-59 13-18 30-31 49-40 20-8 41-12 62-9 21 2 42 9 59 22 18 12 31 29 40 49s12 41 10 62z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr98" draw:text-style-name="P19" draw:layer="layout" svg:width="0.297cm" svg:height="0.296cm" svg:x="13.059cm" svg:y="8.468cm" svg:viewBox="0 0 298 297" svg:d="M0 0c100 0 198 0 298 0 0 99 0 198 0 297-100 0-198 0-298 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr99" draw:text-style-name="P74" draw:layer="layout" svg:width="0.296cm" svg:height="0.296cm" svg:x="13.357cm" svg:y="8.468cm" svg:viewBox="0 0 297 297" svg:d="M0 0c99 0 198 0 297 0 0 99 0 198 0 297-99 0-198 0-297 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr100" draw:text-style-name="P17" draw:layer="layout" svg:width="0.297cm" svg:height="0.296cm" svg:x="13.654cm" svg:y="8.468cm" svg:viewBox="0 0 298 297" svg:d="M0 0c100 0 198 0 298 0 0 99 0 198 0 297-100 0-198 0-298 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr101" draw:text-style-name="P75" draw:layer="layout" svg:width="0.297cm" svg:height="0.296cm" svg:x="13.952cm" svg:y="8.468cm" svg:viewBox="0 0 298 297" svg:d="M0 0c100 0 198 0 298 0 0 99 0 198 0 297-100 0-198 0-298 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr102" draw:text-style-name="P49" draw:layer="layout" svg:width="0.296cm" svg:height="0.296cm" svg:x="14.25cm" svg:y="8.468cm" svg:viewBox="0 0 297 297" svg:d="M0 0c99 0 198 0 297 0 0 99 0 198 0 297-99 0-198 0-297 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr103" draw:text-style-name="P80" draw:layer="layout" svg:width="0.297cm" svg:height="0.296cm" svg:x="14.547cm" svg:y="8.468cm" svg:viewBox="0 0 298 297" svg:d="M0 0c100 0 198 0 298 0 0 99 0 198 0 297-100 0-198 0-298 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr96" draw:text-style-name="P23" draw:layer="layout" svg:width="0.296cm" svg:height="0.296cm" svg:x="14.845cm" svg:y="8.468cm" svg:viewBox="0 0 297 297" svg:d="M0 0c99 0 198 0 297 0 0 99 0 198 0 297-99 0-198 0-297 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr104" draw:text-style-name="P77" draw:layer="layout" svg:width="0.297cm" svg:height="0.296cm" svg:x="15.142cm" svg:y="8.468cm" svg:viewBox="0 0 298 297" svg:d="M0 0c100 0 198 0 298 0 0 99 0 198 0 297-100 0-198 0-298 0 0-99 0-198 0-297z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr105" draw:text-style-name="P81" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="18.49cm" svg:y="10.938cm" svg:viewBox="0 0 2652 3062" svg:d="M2652 2296c-441 256-884 511-1325 766-443-255-885-510-1327-766 0-510 0-1020 0-1531 442-255 884-510 1327-765 441 255 884 510 1325 765 0 511 0 1021 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr106" draw:text-style-name="P75" draw:layer="layout" svg:width="2.241cm" svg:height="2.587cm" svg:x="18.696cm" svg:y="11.175cm" svg:viewBox="0 0 2242 2588" svg:d="M2242 1941c-373 216-748 431-1121 647-373-216-748-431-1121-647 0-431 0-863 0-1294 373-216 748-431 1121-647 373 216 748 431 1121 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr105" draw:text-style-name="P81" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="17.672cm" svg:y="7.888cm" svg:viewBox="0 0 2652 3062" svg:d="M2652 2296c-442 256-884 511-1326 766-442-255-884-510-1326-766 0-510 0-1020 0-1531 442-255 884-510 1326-765 442 255 884 510 1326 765 0 511 0 1021 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr107" draw:text-style-name="P17" draw:layer="layout" svg:width="2.241cm" svg:height="2.587cm" svg:x="17.877cm" svg:y="8.125cm" svg:viewBox="0 0 2242 2588" svg:d="M2242 1941c-373 216-748 431-1121 647-373-216-748-431-1121-647 0-431 0-863 0-1294 373-216 748-431 1121-647 373 216 748 431 1121 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr108" draw:text-style-name="P81" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="18.644cm" svg:y="5.034cm" svg:viewBox="0 0 2652 3062" svg:d="M2652 2297c-441 255-884 510-1325 765-443-255-885-510-1327-765 0-511 0-1020 0-1531 442-255 884-511 1327-766 441 255 884 511 1325 766 0 511 0 1020 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr109" draw:text-style-name="P82" draw:layer="layout" svg:width="2.241cm" svg:height="2.587cm" svg:x="18.849cm" svg:y="5.267cm" svg:viewBox="0 0 2242 2588" svg:d="M2242 1941c-373 216-748 431-1121 647-373-216-748-431-1121-647 0-431 0-863 0-1294 373-216 748-431 1121-647 373 216 748 431 1121 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr108" draw:text-style-name="P81" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="17.768cm" svg:y="2.085cm" svg:viewBox="0 0 2652 3062" svg:d="M2652 2297c-442 255-884 510-1326 765-442-255-884-510-1326-765 0-511 0-1020 0-1531 442-255 884-511 1326-766 442 255 884 511 1326 766 0 511 0 1020 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr13" draw:text-style-name="P19" draw:layer="layout" svg:width="2.241cm" svg:height="2.587cm" svg:x="17.973cm" svg:y="2.322cm" svg:viewBox="0 0 2242 2588" svg:d="M2242 1941c-373 216-748 431-1121 647-373-216-748-431-1121-647 0-431 0-863 0-1294 373-216 748-431 1121-647 373 216 748 431 1121 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr110" draw:text-style-name="P83" draw:layer="layout" svg:width="0.638cm" svg:height="0.638cm" svg:x="18.649cm" svg:y="3.139cm" svg:viewBox="0 0 639 639" svg:d="M639 319c0 56-15 111-43 160-28 48-69 89-117 117-49 28-104 43-160 43-57 0-111-15-159-43-49-28-89-69-117-117-28-49-43-104-43-160 0-57 15-111 43-159 28-49 68-89 117-117 48-28 102-43 159-43 56 0 111 15 160 43 48 28 89 68 117 117 28 48 43 102 43 159z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr111" draw:text-style-name="P12" draw:layer="layout" svg:width="0.498cm" svg:height="0.001cm" draw:transform="skewX (0.00506145483078362) rotate (-0.913505330493832) translate (19.2373135414399cm 3.78296333562353cm)" svg:viewBox="0 0 499 2" svg:d="M0 0c166 1 332 1 499 2">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr112" draw:text-style-name="P12" draw:layer="layout" svg:width="0.202cm" svg:height="0.116cm" svg:x="18.958cm" svg:y="3.223cm" svg:viewBox="0 0 203 117" svg:d="M0 0c102 4 162 45 203 117">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr113" draw:text-style-name="P12" draw:layer="layout" svg:width="0.887cm" svg:height="0.681cm" svg:x="19.579cm" svg:y="6.22cm" svg:viewBox="0 0 888 682" svg:d="M0 0c0 227 0 455 0 682 296 0 592 0 888 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr114" draw:text-style-name="P40" draw:layer="layout" svg:width="0.154cm" svg:height="0.462cm" svg:x="19.681cm" svg:y="6.362cm" svg:viewBox="0 0 155 463" svg:d="M0 0c52 0 103 0 155 0 0 155 0 309 0 463-52 0-103 0-155 0 0-154 0-308 0-463z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr44" draw:text-style-name="P23" draw:layer="layout" svg:width="0cm" svg:height="0.321cm" svg:x="19.894cm" svg:y="6.504cm" svg:viewBox="0 0 0 322" svg:d="M0 0c0 108 0 214 0 322 0-108 0-214 0-322z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr114" draw:text-style-name="P40" draw:layer="layout" svg:width="0.154cm" svg:height="0.215cm" svg:x="20.111cm" svg:y="6.609cm" svg:viewBox="0 0 155 216" svg:d="M0 0c52 0 103 0 155 0 0 72 0 144 0 216-52 0-103 0-155 0 0-72 0-144 0-216z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr115" draw:text-style-name="P12" draw:layer="layout" svg:width="0.387cm" svg:height="0.773cm" svg:x="18.987cm" svg:y="8.98cm" svg:viewBox="0 0 388 774" svg:d="M0 0c56 20 108 48 156 84 78 60 140 139 181 229 1 4 3 8 5 11 40 95 54 199 41 301-6 51-19 101-38 149">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.207cm" svg:height="0.2cm" svg:x="18.622cm" svg:y="9.45cm" svg:viewBox="0 0 208 201" svg:d="M207 119c-4 17-12 33-23 47-11 13-26 23-44 30-16 5-36 7-54 4-17-4-35-11-49-22s-24-26-31-43c-6-17-7-35-5-52 4-18 12-34 23-48 12-13 26-23 44-29 17-6 35-7 53-5 18 4 35 12 49 23s25 26 31 43c7 17 8 34 6 52z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr115" draw:text-style-name="P12" draw:layer="layout" svg:width="0.282cm" svg:height="0.562cm" svg:x="18.887cm" svg:y="9.146cm" svg:viewBox="0 0 283 563" svg:d="M0 0c40 15 79 35 113 61 58 44 103 101 132 167 2 3 2 5 3 8 30 69 41 144 31 219-4 37-14 73-28 108">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr115" draw:text-style-name="P12" draw:layer="layout" svg:width="0.159cm" svg:height="0.319cm" svg:x="18.796cm" svg:y="9.325cm" svg:viewBox="0 0 160 320" svg:d="M0 0c23 8 45 20 64 35 32 24 58 57 75 94 1 2 2 4 2 5 16 39 23 83 17 125-2 21-8 42-15 61">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr116" draw:text-style-name="P23" draw:layer="layout" svg:width="0.767cm" svg:height="0.637cm" svg:x="19.432cm" svg:y="12.388cm" svg:viewBox="0 0 768 638" svg:d="M381 0c-211 0-381 179-381 402 0 62 0 125 0 187 0 17 1 33 3 49 254-1 508-1 762-1 2-16 3-32 3-48 0-62 0-125 0-187 0-223-170-402-381-402-2 0-4 0-6 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.482cm" svg:height="0.517cm" svg:x="19.575cm" svg:y="11.827cm" svg:viewBox="0 0 483 518" svg:d="M483 259c0 45-12 90-33 129-21 40-51 73-88 96-37 22-79 34-121 34s-84-12-120-34c-37-23-68-56-89-96-21-39-32-84-32-129 0-46 11-90 32-130 21-39 52-72 89-95 36-23 78-34 120-34s84 11 121 34 67 56 88 95c21 40 33 84 33 130z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.156cm" svg:height="0.091cm" svg:x="19.734cm" svg:y="12.383cm" svg:viewBox="0 0 157 92" svg:d="M0 13c27 27 55 53 82 79 26-26 50-52 75-79-49-20-102-15-157 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.132cm" svg:height="0.353cm" svg:x="19.753cm" svg:y="12.516cm" svg:viewBox="0 0 133 354" svg:d="M67 0c22 101 44 200 66 301-23 17-46 36-68 53-22-17-43-36-65-53 23-101 45-200 67-301z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr117" draw:text-style-name="P41" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="8.05cm" svg:y="1.989cm" svg:viewBox="0 0 2652 3062" svg:d="M0 2297c442 255 884 510 1326 765 442-255 884-510 1326-765 0-511 0-1020 0-1531-442-255-884-511-1326-766-442 255-884 511-1326 766 0 511 0 1020 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr92" draw:text-style-name="P77" draw:layer="layout" svg:width="2.24cm" svg:height="2.587cm" svg:x="8.256cm" svg:y="2.226cm" svg:viewBox="0 0 2241 2588" svg:d="M0 1941c373 216 747 431 1120 647 374-216 748-431 1121-647 0-431 0-863 0-1294-373-216-747-431-1121-647-373 216-747 431-1120 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr58" draw:text-style-name="P12" draw:layer="layout" svg:width="0.887cm" svg:height="0.682cm" svg:x="8.968cm" svg:y="3.137cm" svg:viewBox="0 0 888 683" svg:d="M0 0c0 227 0 456 0 683 296 0 592 0 888 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr59" draw:text-style-name="P12" draw:layer="layout" svg:width="0.635cm" svg:height="0.438cm" svg:x="9.103cm" svg:y="3.246cm" svg:viewBox="0 0 636 439" svg:d="M0 439c84-83 167-167 251-250 14 51 27 102 41 154 115-115 229-228 344-343">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr60" draw:text-style-name="P40" draw:layer="layout" svg:width="0.113cm" svg:height="0.115cm" svg:x="9.691cm" svg:y="3.175cm" svg:viewBox="0 0 114 116" svg:d="M0 37c26 26 53 53 80 79 11-38 22-78 34-116-38 12-76 24-114 37z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr118" draw:text-style-name="P41" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="6.789cm" svg:y="4.746cm" svg:viewBox="0 0 2652 3062" svg:d="M0 2297c442 255 884 510 1327 765 441-255 884-510 1325-765 0-511 0-1020 0-1531-441-255-884-511-1325-766-443 255-885 511-1327 766 0 511 0 1020 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr54" draw:text-style-name="P23" draw:layer="layout" svg:width="2.241cm" svg:height="2.587cm" svg:x="6.994cm" svg:y="4.979cm" svg:viewBox="0 0 2242 2588" svg:d="M0 1941c373 216 748 431 1121 647 373-216 748-431 1121-647 0-431 0-863 0-1294-373-216-748-431-1121-647-373 216-748 431-1121 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr60" draw:text-style-name="P40" draw:layer="layout" svg:width="0.126cm" svg:height="0.126cm" svg:x="8.152cm" svg:y="6.272cm" svg:viewBox="0 0 127 127" svg:d="M127 63c0 11-3 23-8 32-6 10-14 18-24 24-9 5-21 8-31 8-12 0-23-3-33-8-9-6-17-14-23-24-6-9-8-21-8-32s3-22 8-32c6-9 14-17 23-23 10-6 21-8 33-8 10 0 22 2 31 8 10 6 18 14 24 23 5 10 8 21 8 32z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr60" draw:text-style-name="P40" draw:layer="layout" svg:width="0.126cm" svg:height="0.126cm" svg:x="8.329cm" svg:y="6.272cm" svg:viewBox="0 0 127 127" svg:d="M127 63c0 11-3 23-8 32-6 10-14 18-24 24-9 5-21 8-31 8-12 0-23-3-33-8-9-6-17-14-23-24-6-9-8-21-8-32s3-22 8-32c6-9 14-17 23-23 10-6 21-8 33-8 10 0 22 2 31 8 10 6 18 14 24 23 5 10 8 21 8 32z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr60" draw:text-style-name="P40" draw:layer="layout" svg:width="0.127cm" svg:height="0.126cm" svg:x="8.496cm" svg:y="6.272cm" svg:viewBox="0 0 128 127" svg:d="M128 63c0 11-4 23-9 32-6 10-14 18-24 24-10 5-20 8-31 8-12 0-22-3-32-8-10-6-17-14-23-24-6-9-9-21-9-32s3-22 9-32c5-9 13-18 23-23 10-6 20-8 32-8 11 0 21 2 31 8 10 5 19 14 24 23 6 10 9 21 9 32z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr119" draw:text-style-name="P41" draw:layer="layout" svg:width="1.03cm" svg:height="0.713cm" svg:x="7.793cm" svg:y="6.035cm" svg:viewBox="0 0 1031 714" svg:d="M268 0c-148 0-268 120-268 268 0 14 0 29 0 43 0 149 120 268 268 268 62 0 122 0 183 0 55 45 111 90 166 135 0-45 0-90 0-135 48 0 97 0 146 0 148 0 268-119 268-268 0-14 0-29 0-43 0-148-120-268-268-268-165 0-330 0-495 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.782cm" svg:height="0.782cm" svg:x="7.493cm" svg:y="5.887cm" svg:viewBox="0 0 783 783" svg:d="M783 392c0 69-18 136-52 196-35 59-84 109-143 143-60 34-128 52-196 52-69 0-137-18-196-52-60-34-109-84-144-143-35-60-52-127-52-196s17-137 52-196c35-60 84-109 144-144 59-34 127-52 196-52 68 0 136 18 196 52 59 35 108 84 143 144 34 59 52 127 52 196z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.231cm" svg:height="0.231cm" svg:x="7.681cm" svg:y="6.584cm" svg:viewBox="0 0 232 232" svg:d="M0 232c77-77 155-155 232-232-77 0-155 0-232 0 0 77 0 155 0 232z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr120" draw:text-style-name="P84" draw:layer="layout" svg:width="0.127cm" svg:height="0.127cm" svg:x="7.63cm" svg:y="6.234cm" svg:viewBox="0 0 128 128" svg:d="M128 64c0 11-4 22-9 31-5 10-14 19-24 24-9 5-20 9-31 9-12 0-22-4-33-9-10-5-16-14-22-24-6-9-9-20-9-31 0-12 3-23 9-33 5-9 12-17 22-22 10-6 21-9 33-9 11 0 22 3 31 9 10 6 19 13 24 22 5 10 9 21 9 33z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr120" draw:text-style-name="P84" draw:layer="layout" svg:width="0.127cm" svg:height="0.127cm" svg:x="7.806cm" svg:y="6.234cm" svg:viewBox="0 0 128 128" svg:d="M128 64c0 11-4 22-9 31-5 10-14 19-24 24-9 5-20 9-31 9-12 0-22-4-33-9-10-5-16-14-22-24-6-9-9-20-9-31 0-12 3-23 9-33 5-9 12-17 22-22 10-6 21-9 33-9 11 0 22 3 31 9 10 6 19 13 24 22 5 10 9 21 9 33z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr120" draw:text-style-name="P84" draw:layer="layout" svg:width="0.126cm" svg:height="0.127cm" svg:x="7.974cm" svg:y="6.234cm" svg:viewBox="0 0 127 128" svg:d="M127 64c0 11-3 22-8 31-6 10-14 19-24 24-9 5-22 9-32 9-11 0-22-4-32-9-9-5-17-14-23-24-6-9-8-20-8-31 0-12 3-23 8-33 6-9 14-16 23-22 10-6 21-9 32-9s23 3 32 9c10 6 18 13 24 22 5 10 8 21 8 33z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr121" draw:text-style-name="P41" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="8.146cm" svg:y="7.6cm" svg:viewBox="0 0 2652 3062" svg:d="M0 2296c442 256 884 511 1326 766 442-255 884-510 1326-766 0-510 0-1020 0-1531-442-255-884-510-1326-765-442 255-884 510-1326 765 0 511 0 1021 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr122" draw:text-style-name="P76" draw:layer="layout" svg:width="2.24cm" svg:height="2.587cm" svg:x="8.351cm" svg:y="7.837cm" svg:viewBox="0 0 2241 2588" svg:d="M0 1941c373 216 748 431 1121 647 373-216 747-431 1120-647 0-431 0-863 0-1294-373-216-747-431-1120-647-373 216-748 431-1121 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr21" draw:text-style-name="P40" draw:layer="layout" svg:width="0.736cm" svg:height="0.893cm" svg:x="9.103cm" svg:y="8.505cm" svg:viewBox="0 0 737 894" svg:d="M369 0c-204 0-369 165-369 369 0 73 22 146 64 206h-1c20 55 135 213 139 318 106 0 212 1 317 1 4-100 84-217 131-285 57-68 87-153 87-240 0-204-164-369-368-369z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr123" draw:text-style-name="P85" draw:layer="layout" svg:width="0.511cm" svg:height="0.081cm" svg:x="9.207cm" svg:y="9.396cm" svg:viewBox="0 0 512 82" svg:d="M255 82c72 0 144 0 215 0 23 0 42-18 42-41s-19-41-42-41c-143 0-285 0-429 0-23 0-41 18-41 41s18 41 41 41c72 0 143 0 214 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr123" draw:text-style-name="P85" draw:layer="layout" svg:width="0.327cm" svg:height="0.123cm" svg:x="9.296cm" svg:y="9.594cm" svg:viewBox="0 0 328 124" svg:d="M164 124c34 0 68 0 102 0s62-28 62-62c0-35-28-62-62-62-68 0-136 0-204 0-34 0-62 27-62 62 0 34 28 62 62 62s68 0 102 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr123" draw:text-style-name="P85" draw:layer="layout" svg:width="0.418cm" svg:height="0.081cm" svg:x="9.252cm" svg:y="9.497cm" svg:viewBox="0 0 419 82" svg:d="M210 82c56 0 112 0 168 0 22 0 41-18 41-41s-19-41-41-41c-112 0-225 0-337 0-23 0-41 18-41 41s18 41 41 41c56 0 113 0 169 0z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr121" draw:text-style-name="P41" draw:layer="layout" svg:width="2.651cm" svg:height="3.061cm" svg:x="7.304cm" svg:y="10.855cm" svg:viewBox="0 0 2652 3062" svg:d="M0 2296c442 256 884 511 1327 766 441-255 884-510 1325-766 0-510 0-1020 0-1531-441-255-884-510-1325-765-443 255-885 510-1327 765 0 511 0 1021 0 1531z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr124" draw:text-style-name="P49" draw:layer="layout" svg:width="2.24cm" svg:height="2.587cm" svg:x="7.51cm" svg:y="11.049cm" svg:viewBox="0 0 2241 2588" svg:d="M0 1941c373 216 747 431 1120 647 374-216 748-431 1121-647 0-431 0-863 0-1294-373-216-747-431-1121-647-373 216-747 431-1120 647 0 431 0 863 0 1294z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr125" draw:text-style-name="P40" draw:layer="layout" svg:width="0.836cm" svg:height="0.836cm" svg:x="8.179cm" svg:y="12.017cm" svg:viewBox="0 0 837 837" svg:d="M837 419c0 73-19 145-56 209s-89 116-153 153c-16 9-33 18-51 25-50 20-104 31-158 31-74 0-146-19-210-56-32-18-62-42-88-68s-48-55-65-85c-37-64-56-136-56-209 0-57 11-113 33-165 7-15 14-30 23-45 36-63 89-116 153-153 63-37 136-56 210-56 2 0 3 0 6 0-2 140-4 279-6 419 139 0 279 0 418 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr126" draw:text-style-name="P85" draw:layer="layout" svg:width="0.421cm" svg:height="0.426cm" svg:x="8.661cm" svg:y="11.955cm" svg:viewBox="0 0 422 427" svg:d="M0 0c8 0 16 1 24 1 72 4 144 26 206 65 25 17 50 36 72 58 29 31 55 65 74 102 32 63 47 132 46 201-140-3-279-6-419-8 0-140-2-279-3-419z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P86" draw:layer="layout" svg:width="4.023cm" svg:height="1.813cm" svg:x="3.35cm" svg:y="2.052cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T27">Ipsum 01</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P87" draw:layer="layout" svg:width="4.023cm" svg:height="1.813cm" svg:x="2.322cm" svg:y="4.763cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T28">Ipsum 02</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P88" draw:layer="layout" svg:width="4.022cm" svg:height="1.813cm" svg:x="12.176cm" svg:y="6.854cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T27">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr30" draw:text-style-name="P89" draw:layer="layout" svg:width="6.277cm" svg:height="1.283cm" svg:x="1.096cm" svg:y="3.517cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr31" draw:text-style-name="P89" draw:layer="layout" svg:width="6.277cm" svg:height="1.684cm" svg:x="0.073cm" svg:y="6.26cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P87" draw:layer="layout" svg:width="4.023cm" svg:height="1.813cm" svg:x="3.062cm" svg:y="7.529cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T28">Ipsum 03</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P87" draw:layer="layout" svg:width="4.022cm" svg:height="1.813cm" svg:x="2.803cm" svg:y="10.913cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T28">Ipsum 04</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr32" draw:text-style-name="P89" draw:layer="layout" svg:width="6.277cm" svg:height="1.808cm" svg:x="0.808cm" svg:y="9cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr33" draw:text-style-name="P89" draw:layer="layout" svg:width="6.277cm" svg:height="2.266cm" svg:x="0.548cm" svg:y="12.486cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P31">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P90" draw:layer="layout" svg:width="4.023cm" svg:height="1.813cm" svg:x="21.106cm" svg:y="2.243cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T27">Ipsum</text:span>
              <text:span text:style-name="T28"> 01</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P90" draw:layer="layout" svg:width="4.023cm" svg:height="1.813cm" svg:x="21.823cm" svg:y="4.979cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T28">Ipsum 02</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr34" draw:text-style-name="P91" draw:layer="layout" svg:width="6.277cm" svg:height="1.483cm" svg:x="21.106cm" svg:y="3.709cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr35" draw:text-style-name="P91" draw:layer="layout" svg:width="6.277cm" svg:height="2.266cm" svg:x="21.823cm" svg:y="6.451cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P90" draw:layer="layout" svg:width="4.022cm" svg:height="1.813cm" svg:x="20.93cm" svg:y="7.937cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T28">Ipsum 03</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr20" draw:text-style-name="P90" draw:layer="layout" svg:width="4.023cm" svg:height="1.813cm" svg:x="21.631cm" svg:y="10.552cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T28">Ipsum 04</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr36" draw:text-style-name="P91" draw:layer="layout" svg:width="6.276cm" svg:height="1.572cm" svg:x="20.93cm" svg:y="9.393cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr37" draw:text-style-name="P91" draw:layer="layout" svg:width="6.277cm" svg:height="1.685cm" svg:x="21.631cm" svg:y="12cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T29">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="11" presentation:class="page"/>
          <draw:frame presentation:style-name="pr19" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page12" draw:style-name="dp1" draw:master-page-name="List_20_Content">
        <draw:g>
          <draw:path draw:style-name="gr87" draw:text-style-name="P19" draw:layer="layout" svg:width="7.014cm" svg:height="2.116cm" svg:x="2.612cm" svg:y="5.298cm" svg:viewBox="0 0 7015 2117" svg:d="M705 0c0 127 0 255 0 382-120 3-238 37-342 97-110 64-202 155-266 266-64 110-97 236-97 364s33 253 97 364 156 202 266 266c104 60 222 94 342 97 0 94 0 187 0 281 1851 0 3702 0 5553 0 0-250 0-500 0-750 252-97 504-195 757-292-253-104-505-209-757-313 0-254 0-508 0-762-1851 0-3702 0-5553 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr19" draw:text-style-name="P40" draw:layer="layout" svg:width="1.123cm" svg:height="1.123cm" svg:x="2.719cm" svg:y="5.838cm" svg:viewBox="0 0 1124 1124" svg:d="M1124 562c0 98-26 195-75 281-50 85-121 156-206 206-85 49-182 75-281 75s-196-26-281-75c-86-50-157-121-206-206-49-86-75-183-75-281 0-99 26-196 75-281 49-86 120-157 206-206 85-49 182-75 281-75s196 26 281 75 156 120 206 206c49 85 75 182 75 281z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.062cm" svg:height="0.22cm" svg:x="3.126cm" svg:y="5.11cm" svg:viewBox="0 0 63 221" svg:d="M63 0c-21 0-42 0-63 0 0 74 0 147 0 221">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.213cm" svg:height="0.041cm" svg:x="2.912cm" svg:y="5.551cm" svg:viewBox="0 0 214 42" svg:d="M214 0c0 1 0 3 0 4-73 2-145 15-214 38">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.162cm" svg:height="0.148cm" svg:x="2.553cm" svg:y="5.691cm" svg:viewBox="0 0 163 149" svg:d="M163 0c-61 42-115 92-163 149">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.067cm" svg:height="0.209cm" svg:x="2.368cm" svg:y="6.026cm" svg:viewBox="0 0 68 210" svg:d="M68 0c-31 67-54 137-68 210">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.039cm" svg:height="0.215cm" svg:x="2.354cm" svg:y="6.456cm" svg:viewBox="0 0 40 216" svg:d="M0 0c5 73 18 146 40 216">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.138cm" svg:height="0.169cm" svg:x="2.486cm" svg:y="6.872cm" svg:viewBox="0 0 139 170" svg:d="M0 0c39 64 86 121 139 170">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.207cm" svg:height="0.07cm" svg:x="2.806cm" svg:y="7.169cm" svg:viewBox="0 0 208 71" svg:d="M0 0c66 33 136 57 208 71">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0cm" svg:height="0.218cm" svg:x="3.126cm" svg:y="7.36cm" svg:viewBox="0 0 1 219" svg:d="M0 0c0 73 0 146 0 219h1">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="3.348cm" svg:y="7.579cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.789cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.23cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.672cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.113cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.555cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.996cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="6.438cm" svg:y="7.579cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.879cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="7.321cm" svg:y="7.579cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.762cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.204cm" svg:y="7.579cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.645cm" svg:y="7.579cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.123cm" svg:height="0.096cm" svg:x="9.086cm" svg:y="7.482cm" svg:viewBox="0 0 124 97" svg:d="M0 97c41 0 83 0 124 0 0-32 0-65 0-97">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.2097091747382cm 7.26052463492064cm)" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.096cm" svg:height="0.155cm" svg:x="9.21cm" svg:y="6.664cm" svg:viewBox="0 0 97 156" svg:d="M0 156c0-39 0-77 0-116 32-13 65-27 97-40">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.221cm" svg:height="0cm" draw:transform="rotate (0.388859357344337) translate (9.51069679427524cm 6.58056384978098cm)" svg:viewBox="0 0 222 0" svg:d="M0 0c74 0 148 0 222 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.119cm" svg:height="0.085cm" svg:x="9.92cm" svg:y="6.327cm" svg:viewBox="0 0 120 86" svg:d="M0 86c40-16 80-33 120-49-28-12-55-25-83-37">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="-0.001cm" draw:transform="rotate (2.72655335746554) translate (9.75468568478925cm 6.23759869018304cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.14cm" svg:height="0.127cm" svg:x="9.21cm" svg:y="5.932cm" svg:viewBox="0 0 141 128" svg:d="M141 128c-47-21-94-41-141-62 0-22 0-44 0-66">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.2097091747382cm 5.71062304761905cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.06cm" svg:height="0.159cm" svg:x="9.149cm" svg:y="5.11cm" svg:viewBox="0 0 61 160" svg:d="M61 160c0-53 0-107 0-160-20 0-41 0-61 0">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr128" draw:text-style-name="P49" draw:layer="layout" svg:width="7.015cm" svg:height="2.116cm" svg:x="2.601cm" svg:y="8.497cm" svg:viewBox="0 0 7016 2117" svg:d="M705 0c0 127 0 255 0 382-120 3-237 37-342 97-110 64-202 155-266 266s-97 236-97 364 33 253 97 364c64 110 156 202 266 266 105 60 222 94 342 97 0 94 0 187 0 281 1851 0 3702 0 5553 0 0-250 0-500 0-750 252-97 505-195 758-292-253-104-506-209-758-313 0-254 0-508 0-762-1851 0-3702 0-5553 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr129" draw:text-style-name="P40" draw:layer="layout" svg:width="1.123cm" svg:height="1.123cm" svg:x="2.708cm" svg:y="9.037cm" svg:viewBox="0 0 1124 1124" svg:d="M1124 562c0 98-26 195-75 281-49 85-121 155-206 205-86 49-182 76-281 76s-196-27-281-76c-85-50-157-120-206-205-50-86-75-183-75-281 0-99 26-196 75-281 50-86 121-157 206-206s182-75 281-75 195 26 281 75c85 49 157 120 206 206 49 85 75 182 75 281z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.063cm" svg:height="0.219cm" svg:x="3.115cm" svg:y="8.309cm" svg:viewBox="0 0 64 220" svg:d="M64 0c-21 0-43 0-64 0 0 73 0 147 0 220">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.212cm" svg:height="0.041cm" svg:x="2.902cm" svg:y="8.75cm" svg:viewBox="0 0 213 42" svg:d="M213 0c0 1 0 3 0 4-73 2-145 15-213 38">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.161cm" svg:height="0.148cm" svg:x="2.543cm" svg:y="8.89cm" svg:viewBox="0 0 162 149" svg:d="M162 0c-60 42-115 92-162 149">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.066cm" svg:height="0.209cm" svg:x="2.358cm" svg:y="9.225cm" svg:viewBox="0 0 67 210" svg:d="M67 0c-31 67-54 137-67 210">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.039cm" svg:height="0.216cm" svg:x="2.343cm" svg:y="9.654cm" svg:viewBox="0 0 40 217" svg:d="M0 0c5 74 18 147 40 217">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.139cm" svg:height="0.169cm" svg:x="2.475cm" svg:y="10.071cm" svg:viewBox="0 0 140 170" svg:d="M0 0c39 63 86 121 140 170">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.207cm" svg:height="0.069cm" svg:x="2.795cm" svg:y="10.368cm" svg:viewBox="0 0 208 70" svg:d="M0 0c66 33 136 57 208 70">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0cm" svg:height="0.218cm" svg:x="3.115cm" svg:y="10.559cm" svg:viewBox="0 0 1 219" svg:d="M0 0c0 73 0 146 0 219h1">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="3.337cm" svg:y="10.778cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.778cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.22cm" svg:y="10.778cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.661cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="5.103cm" svg:y="10.778cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.544cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.985cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.427cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.868cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.31cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.751cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.193cm" svg:y="10.778cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.634cm" svg:y="10.778cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.122cm" svg:height="0.096cm" svg:x="9.076cm" svg:y="10.681cm" svg:viewBox="0 0 123 97" svg:d="M0 97c41 0 82 0 123 0 0-32 0-65 0-97">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.1987095678902cm 10.4603341587302cm)" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.096cm" svg:height="0.155cm" svg:x="9.199cm" svg:y="9.863cm" svg:viewBox="0 0 97 156" svg:d="M0 156c0-39 0-77 0-116 32-13 65-27 97-40">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.221cm" svg:height="0cm" draw:transform="rotate (0.388859357344337) translate (9.49969718742724cm 9.78037337359051cm)" svg:viewBox="0 0 222 0" svg:d="M0 0c74 0 148 0 222 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.119cm" svg:height="0.085cm" svg:x="9.909cm" svg:y="9.526cm" svg:viewBox="0 0 120 86" svg:d="M0 86c40-16 80-33 120-49-28-12-55-25-83-37">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="-0.001cm" draw:transform="rotate (2.72655335746554) translate (9.74368607794126cm 9.43740821399256cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.14cm" svg:height="0.127cm" svg:x="9.199cm" svg:y="9.131cm" svg:viewBox="0 0 141 128" svg:d="M141 128c-47-21-94-41-141-62 0-22 0-44 0-66">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.1987095678902cm 8.91043257142857cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.06cm" svg:height="0.159cm" svg:x="9.138cm" svg:y="8.309cm" svg:viewBox="0 0 61 160" svg:d="M61 160c0-53 0-107 0-160-20 0-41 0-61 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.917cm" svg:y="8.309cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.476cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.035cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.593cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.152cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.71cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.269cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="5.827cm" svg:y="8.309cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.386cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.944cm" svg:y="8.309cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.503cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.061cm" svg:y="8.309cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr130" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.62cm" svg:y="8.309cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr131" draw:text-style-name="P48" draw:layer="layout" svg:width="7.015cm" svg:height="2.116cm" svg:x="2.622cm" svg:y="11.697cm" svg:viewBox="0 0 7016 2117" svg:d="M705 0c0 127 0 254 0 381-120 4-237 38-341 98-111 64-203 155-266 266-64 111-98 236-98 364s34 253 98 364c63 110 155 202 266 266 104 60 221 93 341 97 0 94 0 187 0 281 1851 0 3702 0 5553 0 0-250 0-500 0-750 252-97 505-195 758-292-253-104-506-209-758-313 0-254 0-508 0-762-1851 0-3702 0-5553 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr132" draw:text-style-name="P40" draw:layer="layout" svg:width="1.124cm" svg:height="1.124cm" svg:x="2.729cm" svg:y="12.236cm" svg:viewBox="0 0 1125 1125" svg:d="M1125 563c0 98-27 195-76 281-50 85-120 155-205 205-86 49-183 76-281 76-99 0-196-27-281-76-86-50-157-120-206-205-50-86-76-183-76-281 0-99 26-196 76-282 49-85 120-156 206-205 85-50 182-76 281-76 98 0 195 26 281 76 85 49 156 120 205 205 50 86 76 183 76 282z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.063cm" svg:height="0.219cm" svg:x="3.136cm" svg:y="11.509cm" svg:viewBox="0 0 64 220" svg:d="M64 0c-21 0-43 0-64 0 0 73 0 147 0 220">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.212cm" svg:height="0.041cm" svg:x="2.923cm" svg:y="11.95cm" svg:viewBox="0 0 213 42" svg:d="M213 0c0 1 0 2 0 3-72 3-144 16-213 39">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.161cm" svg:height="0.148cm" svg:x="2.564cm" svg:y="12.09cm" svg:viewBox="0 0 162 149" svg:d="M162 0c-60 42-114 92-162 149">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.066cm" svg:height="0.209cm" svg:x="2.379cm" svg:y="12.425cm" svg:viewBox="0 0 67 210" svg:d="M67 0c-31 67-53 137-67 210">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.039cm" svg:height="0.216cm" svg:x="2.365cm" svg:y="12.854cm" svg:viewBox="0 0 40 217" svg:d="M0 0c4 74 18 147 40 217">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.139cm" svg:height="0.169cm" svg:x="2.496cm" svg:y="13.271cm" svg:viewBox="0 0 140 170" svg:d="M0 0c40 63 87 120 140 170">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.207cm" svg:height="0.069cm" svg:x="2.816cm" svg:y="13.568cm" svg:viewBox="0 0 208 70" svg:d="M0 0c66 33 136 57 208 70">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0cm" svg:height="0.218cm" svg:x="3.136cm" svg:y="13.759cm" svg:viewBox="0 0 1 219" svg:d="M0 0c0 73 0 146 0 219h1">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.358cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="3.8cm" svg:y="13.978cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.241cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.683cm" svg:y="13.978cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.124cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.565cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.007cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.448cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.89cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.331cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="7.773cm" svg:y="13.978cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.214cm" svg:y="13.978cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.656cm" svg:y="13.978cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.123cm" svg:height="0.096cm" svg:x="9.097cm" svg:y="13.881cm" svg:viewBox="0 0 124 97" svg:d="M0 97c41 0 83 0 124 0 0-32 0-65 0-97">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.22070878158619cm 13.6601436825397cm)" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.096cm" svg:height="0.155cm" svg:x="9.221cm" svg:y="13.063cm" svg:viewBox="0 0 97 156" svg:d="M0 156c0-39 0-77 0-116 32-13 65-27 97-40">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" draw:transform="rotate (0.386415896391544) translate (9.52169802351764cm 12.9791869206349cm)" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.12cm" svg:height="0.085cm" svg:x="9.93cm" svg:y="12.726cm" svg:viewBox="0 0 121 86" svg:d="M0 86c40-16 81-33 121-49-28-12-55-25-83-37">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="-0.001cm" draw:transform="rotate (2.72655335746554) translate (9.76568529163725cm 12.6372177378021cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.14cm" svg:height="0.127cm" svg:x="9.221cm" svg:y="12.331cm" svg:viewBox="0 0 141 128" svg:d="M141 128c-47-21-94-41-141-62 0-22 0-44 0-66">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.22070878158619cm 12.1102420952381cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.06cm" svg:height="0.158cm" svg:x="9.16cm" svg:y="11.509cm" svg:viewBox="0 0 61 159" svg:d="M61 159c0-53 0-106 0-159-20 0-41 0-61 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.939cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.497cm" svg:y="11.509cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.056cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.615cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.173cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.732cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.29cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.849cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="5.407cm" svg:y="11.509cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.966cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.524cm" svg:y="11.509cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.083cm" svg:y="11.509cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr133" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="3.641cm" svg:y="11.509cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.928cm" svg:y="5.11cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.487cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.045cm" svg:y="5.11cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.604cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="7.162cm" svg:y="5.11cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.721cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.28cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.838cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.397cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.955cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.514cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.072cm" svg:y="5.11cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr127" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.631cm" svg:y="5.11cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr134" draw:text-style-name="P92" draw:layer="layout" svg:width="7.014cm" svg:height="2.116cm" svg:x="2.666cm" svg:y="2.098cm" svg:viewBox="0 0 7015 2117" svg:d="M705 0c0 127 0 255 0 382-120 4-238 37-342 97-110 64-202 155-266 266-64 110-97 236-97 364s33 253 97 364 156 202 266 266c104 60 222 94 342 97 0 94 0 187 0 281 1851 0 3702 0 5553 0 0-250 0-500 0-750 252-97 504-195 757-292-253-104-505-209-757-313 0-254 0-508 0-762-1851 0-3702 0-5553 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr135" draw:text-style-name="P40" draw:layer="layout" svg:width="1.123cm" svg:height="1.123cm" svg:x="2.773cm" svg:y="2.638cm" svg:viewBox="0 0 1124 1124" svg:d="M1124 562c0 99-26 195-75 281-50 85-121 156-206 206-85 49-182 75-281 75s-196-26-281-75c-86-50-157-121-206-206-49-86-75-182-75-281s26-196 75-281c49-86 120-157 206-206 85-49 182-75 281-75s196 26 281 75 156 120 206 206c49 85 75 182 75 281z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.062cm" svg:height="0.22cm" svg:x="3.18cm" svg:y="1.91cm" svg:viewBox="0 0 63 221" svg:d="M63 0c-21 0-42 0-63 0 0 74 0 147 0 221">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.213cm" svg:height="0.041cm" svg:x="2.966cm" svg:y="2.351cm" svg:viewBox="0 0 214 42" svg:d="M214 0c0 1 0 3 0 4-73 2-145 15-214 38">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.162cm" svg:height="0.147cm" svg:x="2.607cm" svg:y="2.492cm" svg:viewBox="0 0 163 148" svg:d="M163 0c-61 41-115 91-163 148">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.067cm" svg:height="0.209cm" svg:x="2.422cm" svg:y="2.826cm" svg:viewBox="0 0 68 210" svg:d="M68 0c-31 67-54 137-68 210">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.039cm" svg:height="0.215cm" svg:x="2.408cm" svg:y="3.256cm" svg:viewBox="0 0 40 216" svg:d="M0 0c5 74 18 146 40 216">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.138cm" svg:height="0.169cm" svg:x="2.54cm" svg:y="3.672cm" svg:viewBox="0 0 139 170" svg:d="M0 0c39 64 86 121 139 170">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.207cm" svg:height="0.07cm" svg:x="2.86cm" svg:y="3.969cm" svg:viewBox="0 0 208 71" svg:d="M0 0c66 34 136 57 208 71">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0cm" svg:height="0.219cm" svg:x="3.18cm" svg:y="4.16cm" svg:viewBox="0 0 1 220" svg:d="M0 0c0 73 0 147 0 220h1">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="3.402cm" svg:y="4.38cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.843cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.284cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.726cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.167cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.609cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.05cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="6.492cm" svg:y="4.38cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.933cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="7.375cm" svg:y="4.38cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.816cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.258cm" svg:y="4.38cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.699cm" svg:y="4.38cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.123cm" svg:height="0.097cm" svg:x="9.14cm" svg:y="4.282cm" svg:viewBox="0 0 124 98" svg:d="M0 98c41 0 83 0 124 0 0-33 0-65 0-98">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.26370724471925cm 4.06171504761905cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.096cm" svg:height="0.155cm" svg:x="9.264cm" svg:y="3.464cm" svg:viewBox="0 0 97 156" svg:d="M0 156c0-39 0-77 0-116 32-13 65-27 97-40">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.221cm" svg:height="0cm" draw:transform="rotate (0.388859357344337) translate (9.56469486425629cm 3.38075432597146cm)" svg:viewBox="0 0 222 0" svg:d="M0 0c74 0 148 0 222 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.119cm" svg:height="0.085cm" svg:x="9.974cm" svg:y="3.127cm" svg:viewBox="0 0 120 86" svg:d="M0 86c40-16 80-33 120-49-28-12-55-25-83-37">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" draw:transform="rotate (2.72655335746554) translate (9.80868375477031cm 3.03778916637351cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.14cm" svg:height="0.127cm" svg:x="9.264cm" svg:y="2.732cm" svg:viewBox="0 0 141 128" svg:d="M141 128c-47-21-94-41-141-62 0-22 0-44 0-66">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" draw:transform="rotate (1.5707963267949) translate (9.26370724471925cm 2.51081352380952cm)" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.06cm" svg:height="0.159cm" svg:x="9.203cm" svg:y="1.91cm" svg:viewBox="0 0 61 160" svg:d="M61 160c0-53 0-107 0-160-20 0-41 0-61 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.982cm" svg:y="1.91cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="8.541cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="8.099cm" svg:y="1.91cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="7.658cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="7.216cm" svg:y="1.91cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.775cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="6.334cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.892cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.451cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="5.009cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="4.568cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.219cm" svg:height="0cm" svg:x="4.126cm" svg:y="1.91cm" svg:viewBox="0 0 220 0" svg:d="M0 0c73 0 147 0 220 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr136" draw:text-style-name="P12" draw:layer="layout" svg:width="0.22cm" svg:height="0cm" svg:x="3.685cm" svg:y="1.91cm" svg:viewBox="0 0 221 0" svg:d="M0 0c74 0 147 0 221 0">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:frame presentation:style-name="pr38" draw:text-style-name="P93" draw:layer="layout" svg:width="8.4cm" svg:height="1.737cm" svg:x="11.173cm" svg:y="1.518cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T30">Lorem</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr39" draw:text-style-name="P38" draw:layer="layout" svg:width="8.827cm" svg:height="1.7cm" svg:x="11.173cm" svg:y="3.173cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr38" draw:text-style-name="P94" draw:layer="layout" svg:width="8.4cm" svg:height="1.737cm" svg:x="11.174cm" svg:y="4.697cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T31">Ipsum</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr39" draw:text-style-name="P38" draw:layer="layout" svg:width="8.827cm" svg:height="1.7cm" svg:x="11.174cm" svg:y="6.373cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr38" draw:text-style-name="P95" draw:layer="layout" svg:width="8.4cm" svg:height="1.737cm" svg:x="11.174cm" svg:y="7.897cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T32">Dolor</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr39" draw:text-style-name="P38" draw:layer="layout" svg:width="8.827cm" svg:height="1.7cm" svg:x="11.174cm" svg:y="9.573cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr38" draw:text-style-name="P96" draw:layer="layout" svg:width="8.4cm" svg:height="1.737cm" svg:x="11.174cm" svg:y="11.197cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T33">Sit</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:frame presentation:style-name="pr39" draw:text-style-name="P38" draw:layer="layout" svg:width="8.827cm" svg:height="1.7cm" svg:x="11.174cm" svg:y="12.873cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p text:style-name="P35">
              <text:span text:style-name="T2">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="12" presentation:class="page"/>
          <draw:frame presentation:style-name="pr40" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <draw:page draw:name="page13" draw:style-name="dp1" draw:master-page-name="Greetings">
        <draw:frame presentation:style-name="pr41" draw:text-style-name="P97" draw:layer="layout" svg:width="25.199cm" svg:height="2.629cm" svg:x="1.602cm" svg:y="6.371cm" presentation:class="title" presentation:user-transformed="true">
          <draw:text-box>
            <text:p>
              <text:span text:style-name="T34">THANK YOU</text:span>
            </text:p>
          </draw:text-box>
        </draw:frame>
        <draw:g>
          <draw:path draw:style-name="gr137" draw:text-style-name="P98" draw:layer="layout" svg:width="0.223cm" svg:height="0.222cm" svg:x="14.258cm" svg:y="0.796cm" svg:viewBox="0 0 224 223" svg:d="M224 111c0 20-6 39-15 56-10 17-24 31-41 41-17 9-37 15-56 15-20 0-39-6-56-15-17-10-31-24-41-41s-15-36-15-56c0-19 6-38 15-55 10-18 24-31 41-41s37-15 56-15c20 0 39 5 56 15s32 23 41 41c10 17 15 36 15 55z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr138" draw:text-style-name="P99" draw:layer="layout" svg:width="0.223cm" svg:height="0.222cm" svg:x="14.79cm" svg:y="0.796cm" svg:viewBox="0 0 224 223" svg:d="M224 111c0 20-5 39-15 56s-24 31-41 41c-17 9-36 15-56 15s-39-6-56-15c-17-10-31-24-41-41s-15-36-15-56c0-19 5-38 15-55 10-18 24-31 41-41s36-15 56-15 39 5 56 15 31 23 41 41c10 17 15 36 15 55z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr116" draw:text-style-name="P100" draw:layer="layout" svg:width="0.223cm" svg:height="0.222cm" svg:x="13.182cm" svg:y="0.796cm" svg:viewBox="0 0 224 223" svg:d="M224 111c0 20-5 39-15 56s-24 31-41 41c-17 9-36 15-56 15s-39-6-56-15c-17-10-31-24-41-41s-15-36-15-56c0-19 5-38 15-55 10-18 24-31 41-41s36-15 56-15 39 5 56 15 31 23 41 41c10 17 15 36 15 55z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr3" draw:text-style-name="P101" draw:layer="layout" svg:width="0.223cm" svg:height="0.222cm" svg:x="13.714cm" svg:y="0.796cm" svg:viewBox="0 0 224 223" svg:d="M224 111c0 20-6 39-15 56-10 17-24 31-41 41-17 9-37 15-56 15-20 0-39-6-56-15-17-10-31-24-41-41s-15-36-15-56c0-19 5-38 15-55 9-18 24-31 41-41s36-15 56-15c19 0 39 5 56 15s31 23 41 41c9 17 15 36 15 55z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.163cm" svg:height="0.231cm" svg:x="13.139cm" svg:y="4.975cm" svg:viewBox="0 0 164 232" svg:d="M115 0c0 47 0 95 0 142 0 23-17 41-40 41-25 0-50 0-75 0 0 16 0 33 0 49 25 0 50 0 75 0 49 0 89-41 89-90 0-47 0-95 0-142-16 0-33 0-49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.115cm" svg:height="0.264cm" svg:x="13.453cm" svg:y="4.843cm" svg:viewBox="0 0 116 265" svg:d="M49 265c0-58 0-117 0-175 0-23 18-41 41-41 9 0 17 0 26 0 0-16 0-33 0-49-9 0-17 0-26 0-49 0-90 40-90 90 0 58 0 117 0 175 16 0 33 0 49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.115cm" svg:height="0.231cm" svg:x="13.543cm" svg:y="4.843cm" svg:viewBox="0 0 116 232" svg:d="M67 232c0-47 0-95 0-142 0-23-17-41-41-41-9 0-17 0-26 0 0-16 0-33 0-49 9 0 17 0 26 0 50 0 90 40 90 90 0 47 0 95 0 142-16 0-33 0-49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.116cm" svg:height="0.264cm" svg:x="13.61cm" svg:y="4.843cm" svg:viewBox="0 0 117 265" svg:d="M49 265c0-58 0-117 0-175 0-23 18-41 41-41 9 0 18 0 27 0 0-16 0-33 0-49-9 0-18 0-27 0-49 0-90 40-90 90 0 58 0 117 0 175 16 0 33 0 49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.116cm" svg:height="0.264cm" svg:x="13.7cm" svg:y="4.843cm" svg:viewBox="0 0 117 265" svg:d="M68 265c0-58 0-117 0-175 0-23-18-41-41-41-9 0-18 0-27 0 0-16 0-33 0-49 9 0 18 0 27 0 49 0 90 40 90 90 0 58 0 117 0 175-16 0-33 0-49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.232cm" svg:height="0.264cm" svg:x="13.857cm" svg:y="4.843cm" svg:viewBox="0 0 233 265" svg:d="M90 0c-49 0-90 40-90 90 0 28 0 57 0 85 0 49 41 90 90 90 18 0 35 0 53 0 50 0 90-41 90-90 0-28 0-57 0-85 0-50-40-90-90-90-18 0-35 0-53 0zM90 49c18 0 35 0 53 0 23 0 41 18 41 41 0 28 0 57 0 85 0 23-18 41-41 41-18 0-35 0-53 0-23 0-41-18-41-41 0-28 0-57 0-85 0-23 18-41 41-41z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.264cm" svg:x="13.857cm" svg:y="4.942cm" svg:viewBox="0 0 49 265" svg:d="M0 0c16 0 33 0 49 0 0 88 0 177 0 265-16 0-33 0-49 0 0-88 0-177 0-265z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.187cm" svg:x="13.361cm" svg:y="4.92cm" svg:viewBox="0 0 49 188" svg:d="M0 0c16 0 33 0 49 0 0 63 0 125 0 188-16 0-33 0-49 0 0-63 0-125 0-188z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.048cm" svg:x="13.361cm" svg:y="4.843cm" svg:viewBox="0 0 49 49" svg:d="M0 0c16 0 33 0 49 0 0 16 0 33 0 49-16 0-33 0-49 0 0-16 0-33 0-49z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.25cm" svg:height="0.264cm" svg:x="14.384cm" svg:y="4.843cm" svg:viewBox="0 0 251 265" svg:d="M90 0c-49 0-90 40-90 90 0 28 0 57 0 85 0 49 41 90 90 90 24 0 48 0 72 0 45 0 82-34 89-77-17 0-33 0-50 0-6 16-21 28-39 28-24 0-48 0-72 0-23 0-41-18-41-41 0-28 0-57 0-85 0-23 18-41 41-41 24 0 48 0 72 0 18 0 33 11 39 28 17 0 33 0 50 0-7-43-44-77-89-77-24 0-48 0-72 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.064cm" svg:height="0.227cm" svg:x="13.254cm" svg:y="4.847cm" svg:viewBox="0 0 65 228" svg:d="M65 0c-37 11-65 45-65 86 0 47 0 95 0 142 16 0 33 0 49 0 0-47 0-95 0-142 0-14 6-25 16-33 0-18 0-35 0-53z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.227cm" svg:height="0.125cm" svg:x="14.122cm" svg:y="4.982cm" svg:viewBox="0 0 228 126" svg:d="M179 0c0 12 0 24 0 36 0 23-18 41-41 41-46 0-92 0-138 0 0 16 0 33 0 49 46 0 92 0 138 0 49 0 90-41 90-90 0-12 0-24 0-36-16 0-33 0-49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.117cm" svg:height="0.048cm" svg:x="14.121cm" svg:y="4.951cm" svg:viewBox="0 0 118 49" svg:d="M118 49c-30 0-61 0-91 0-12 0-27-10-27-27 0-7 0-15 0-22 39 0 79 0 118 0 0 16 0 33 0 49z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.139cm" svg:height="0.048cm" svg:x="14.21cm" svg:y="4.951cm" svg:viewBox="0 0 140 49" svg:d="M0 0c37 0 75 0 112 0 12 0 28 9 28 27 0 7 0 15 0 22-47 0-93 0-140 0 0-16 0-33 0-49z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.13cm" svg:height="0.125cm" svg:x="14.121cm" svg:y="4.843cm" svg:viewBox="0 0 131 126" svg:d="M49 126c0-12 0-24 0-36 0-23 17-41 41-41 14 0 27 0 41 0 0-16 0-33 0-49-14 0-27 0-41 0-50 0-90 40-90 90 0 12 0 24 0 36 16 0 33 0 49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.118cm" svg:height="0.048cm" svg:x="14.231cm" svg:y="4.951cm" svg:viewBox="0 0 119 49" svg:d="M0 0c30 0 61 0 91 0 12 0 28 9 28 27 0 7 0 15 0 22-40 0-79 0-119 0 0-16 0-33 0-49z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.231cm" svg:height="0.264cm" svg:x="13.071cm" svg:y="4.843cm" svg:viewBox="0 0 232 265" svg:d="M89 0c-49 0-89 40-89 90 0 28 0 57 0 85 0 49 40 90 89 90 18 0 36 0 54 0 49 0 89-41 89-90 0-28 0-57 0-85 0-50-40-90-89-90-18 0-36 0-54 0zM89 49c18 0 36 0 54 0 23 0 40 18 40 41 0 28 0 57 0 85 0 23-17 41-40 41-18 0-36 0-54 0-23 0-40-18-40-41 0-28 0-57 0-85 0-23 17-41 40-41z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.214cm" svg:height="0.174cm" svg:x="14.718cm" svg:y="4.843cm" svg:viewBox="0 0 215 175" svg:d="M167 175c0-28 0-57 0-85 0-23-18-41-41-41-42 0-84 0-126 0 0-16 0-33 0-49 42 0 84 0 126 0 49 0 89 40 89 90 0 28 0 57 0 85-16 0-32 0-48 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.263cm" svg:height="0.179cm" svg:x="14.669cm" svg:y="4.928cm" svg:viewBox="0 0 264 180" svg:d="M0 90c0 49 40 90 89 90 29 0 57 0 86 0 49 0 89-41 89-90s-40-90-89-90c-29 0-57 0-86 0-49 0-89 41-89 90zM49 90c0-23 17-41 40-41 29 0 57 0 86 0 23 0 40 18 40 41s-17 41-40 41c-29 0-57 0-86 0-23 0-40-18-40-41z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.214cm" svg:height="0.174cm" svg:x="15.247cm" svg:y="4.933cm" svg:viewBox="0 0 215 175" svg:d="M49 0c0 28 0 57 0 85 0 23 18 41 41 41 42 0 83 0 125 0 0 16 0 33 0 49-42 0-83 0-125 0-49 0-90-41-90-90 0-28 0-57 0-85 16 0 33 0 49 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.264cm" svg:height="0.179cm" svg:x="15.247cm" svg:y="4.843cm" svg:viewBox="0 0 265 180" svg:d="M265 90c0-50-41-90-90-90-28 0-57 0-85 0-49 0-90 40-90 90 0 49 41 90 90 90 28 0 57 0 85 0 49 0 90-41 90-90zM216 90c0 23-18 41-41 41-28 0-57 0-85 0-23 0-41-18-41-41s18-41 41-41c28 0 57 0 85 0 23 0 41 18 41 41z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.232cm" svg:height="0.264cm" svg:x="14.973cm" svg:y="4.843cm" svg:viewBox="0 0 233 265" svg:d="M90 0c-49 0-90 40-90 90 0 28 0 57 0 85 0 49 41 90 90 90 18 0 35 0 53 0 50 0 90-41 90-90 0-28 0-57 0-85 0-50-40-90-90-90-18 0-35 0-53 0zM90 49c18 0 35 0 53 0 23 0 41 18 41 41 0 28 0 57 0 85 0 23-18 41-41 41-18 0-35 0-53 0-23 0-41-18-41-41 0-28 0-57 0-85 0-23 18-41 41-41z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.264cm" svg:x="14.973cm" svg:y="4.942cm" svg:viewBox="0 0 49 265" svg:d="M0 0c16 0 33 0 49 0 0 88 0 177 0 265-16 0-33 0-49 0 0-88 0-177 0-265z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.122cm" svg:height="0.076cm" svg:x="14.227cm" svg:y="4.843cm" svg:viewBox="0 0 123 77" svg:d="M73 77c-6-17-21-28-39-28-11 0-23 0-34 0 0-2 0-3 0-5 0-11 0-22 0-33 0-4 0-7 1-11 11 0 22 0 33 0 45 0 83 34 89 77-17 0-33 0-50 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.066cm" svg:x="14.121cm" svg:y="5.041cm" svg:viewBox="0 0 49 67" svg:d="M0 0c16 0 33 0 49 0 0 22 0 45 0 67-16 0-33 0-49 0 0-22 0-45 0-67z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.24cm" svg:x="15.612cm" svg:y="4.867cm" svg:viewBox="0 0 49 241" svg:d="M0 0c16 0 33 0 49 0 0 80 0 161 0 241-16 0-33 0-49 0 0-80 0-161 0-241z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.048cm" svg:x="15.612cm" svg:y="4.843cm" svg:viewBox="0 0 49 49" svg:d="M0 0c16 0 33 0 49 0 0 16 0 33 0 49-16 0-33 0-49 0 0-16 0-33 0-49z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.183cm" svg:height="0.264cm" svg:x="15.75cm" svg:y="4.843cm" svg:viewBox="0 0 184 265" svg:d="M94 0c49 0 90 40 90 90 0 28 0 57 0 85 0 49-41 90-90 90-31 0-63 0-94 0 0-16 0-33 0-49 31 0 63 0 94 0 23 0 41-18 41-41 0-28 0-57 0-85 0-23-18-41-41-41-31 0-63 0-94 0 0-16 0-33 0-49 31 0 63 0 94 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.24cm" svg:x="15.725cm" svg:y="4.867cm" svg:viewBox="0 0 49 241" svg:d="M0 0c16 0 33 0 49 0 0 80 0 161 0 241-16 0-33 0-49 0 0-80 0-161 0-241z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.048cm" svg:height="0.048cm" svg:x="15.725cm" svg:y="4.843cm" svg:viewBox="0 0 49 49" svg:d="M0 0c16 0 33 0 49 0 0 16 0 33 0 49-16 0-33 0-49 0 0-16 0-33 0-49z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.589cm" svg:height="0.678cm" svg:x="12.262cm" svg:y="4.692cm" svg:viewBox="0 0 590 679" svg:d="M147 0c-81 0-147 66-147 147 0 112 0 223 0 335 36 0 72 0 108 0 0-103 0-206 0-309-10 0-20 0-30 0 0-32 0-64 0-96 32 0 64 0 96 0 0 10 0 21 0 31 118 0 237 0 355 0 20-36 41-72 61-108-148 0-295 0-443 0zM0 525c0 3 0 5 0 8 0 80 66 146 147 146 61 0 122 0 183 0 0-36 0-71 0-107-60 0-121 0-181 0-22 0-41-19-41-41 0-2 0-4 0-6-36 0-72 0-108 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.428cm" svg:height="0.481cm" svg:x="12.47cm" svg:y="4.889cm" svg:viewBox="0 0 429 482" svg:d="M0 0c0 28 0 55 0 83 0 15 11 25 27 25 84 0 169 0 253 0 22 0 41 18 41 41 0 55 0 110 0 165 13 0 25 0 38 0 0 14 0 28 0 42 21 8 41 17 62 25 5-14 8-30 8-45 0-63 0-126 0-189 0-81-66-147-147-147-94 0-188 0-282 0zM100 375c0 36 0 71 0 107 61 0 121 0 182 0 19 0 37-3 54-10-8-21-17-41-25-62-16 0-32 0-48 0 0-12 0-23 0-35-54 0-109 0-163 0z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.357cm" svg:height="0.153cm" svg:x="12.339cm" svg:y="5.02cm" svg:viewBox="0 0 358 154" svg:d="M31 1c0 4 0 9 0 14 0 28 23 51 60 51 84 0 168 0 252 0 9 0 15 7 15 15 0 24 0 48 0 73-5 0-10 0-15 0-110 0-219 0-329 0-8 0-14-6-14-14 0-20 0-40 0-59 0-9 31-88 31-80z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.061cm" svg:height="0.061cm" svg:x="12.75cm" svg:y="5.22cm" svg:viewBox="0 0 62 62" svg:d="M0 0c21 0 41 0 62 0 0 21 0 41 0 62-21 0-41 0-62 0 0-21 0-41 0-62z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.061cm" svg:height="0.062cm" svg:x="12.357cm" svg:y="4.785cm" svg:viewBox="0 0 62 63" svg:d="M0 0c21 0 41 0 62 0 0 21 0 42 0 63-21 0-41 0-62 0 0-21 0-42 0-63z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr139" draw:text-style-name="P102" draw:layer="layout" svg:width="0.251cm" svg:height="0.252cm" svg:x="12.78cm" svg:y="5.245cm" svg:viewBox="0 0 252 253" svg:d="M252 102c-33 17-66 34-99 51-17 33-34 67-51 100-34-84-68-169-102-253 84 34 168 68 252 102z">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:g>
          <draw:path draw:style-name="gr93" draw:text-style-name="P98" draw:layer="layout" svg:width="0.354cm" svg:height="0.354cm" svg:x="14.352cm" svg:y="9.235cm" svg:viewBox="0 0 355 355" svg:d="M355 177c0-31-9-61-24-88-16-27-38-50-65-65-27-16-57-24-88-24-32 0-62 8-89 24-27 15-49 38-65 65s-24 57-24 88c0 32 9 62 24 89 16 27 38 49 65 65 27 15 57 24 89 24 31 0 61-9 88-24 27-16 50-38 65-65 16-27 24-57 24-89z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr87" draw:text-style-name="P99" draw:layer="layout" svg:width="0.354cm" svg:height="0.354cm" svg:x="15.194cm" svg:y="9.235cm" svg:viewBox="0 0 355 355" svg:d="M355 177c0-31-9-61-24-88-16-27-38-50-65-65-27-16-57-24-88-24s-62 8-89 24c-27 15-49 38-65 65s-24 57-24 88c0 32 9 62 24 89 16 27 38 49 65 65 27 15 58 24 89 24s61-9 88-24c27-16 50-38 65-65 16-27 24-57 24-89z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr15" draw:text-style-name="P100" draw:layer="layout" svg:width="0.354cm" svg:height="0.354cm" svg:x="12.647cm" svg:y="9.235cm" svg:viewBox="0 0 355 355" svg:d="M355 177c0-31-9-61-24-88-16-27-38-50-65-65-27-16-58-24-89-24s-61 8-88 24c-27 15-49 38-65 65s-24 57-24 88c0 32 8 62 24 89 15 27 38 49 65 65 27 15 57 24 88 24s62-9 89-24c27-16 49-38 65-65 15-27 24-57 24-89z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr90" draw:text-style-name="P101" draw:layer="layout" svg:width="0.354cm" svg:height="0.354cm" svg:x="13.489cm" svg:y="9.235cm" svg:viewBox="0 0 355 355" svg:d="M355 177c0-31-9-61-24-88-16-27-38-50-65-65-27-16-58-24-89-24-32 0-61 8-88 24-27 15-49 38-65 65s-24 57-24 88c0 32 8 62 24 89 15 27 38 49 65 65 27 15 57 24 88 24 32 0 62-9 89-24 27-16 49-38 65-65 15-27 24-57 24-89z">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr140" draw:text-style-name="P29" draw:layer="layout" svg:width="6.485cm" svg:height="0cm" svg:x="16.463cm" svg:y="9.478cm" svg:viewBox="0 0 6486 0" svg:d="M0 0c2162 0 4324 0 6486 0">
            <text:p/>
          </draw:path>
          <draw:path draw:style-name="gr141" draw:text-style-name="P29" draw:layer="layout" svg:width="6.485cm" svg:height="0cm" svg:x="5.247cm" svg:y="9.478cm" svg:viewBox="0 0 6486 0" svg:d="M0 0c2162 0 4324 0 6486 0">
            <text:p/>
          </draw:path>
        </draw:g>
        <draw:frame draw:style-name="gr142" draw:text-style-name="P103" draw:layer="layout" svg:width="27.999cm" svg:height="1.89cm" svg:x="0.001cm" svg:y="12.7cm">
          <draw:image xlink:href="Pictures/100002010000070E0000007A072587FC46AD7996.png" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad" draw:mime-type="image/png">
            <text:p/>
          </draw:image>
        </draw:frame>
        <presentation:notes draw:style-name="dp2">
          <draw:page-thumbnail draw:style-name="gr4" draw:layer="layout" svg:width="17cm" svg:height="9.56cm" svg:x="2cm" svg:y="2.5cm" draw:page-number="13" presentation:class="page"/>
          <draw:frame presentation:style-name="pr42" draw:text-style-name="P9" draw:layer="layout" svg:width="17cm" svg:height="14cm" svg:x="2cm" svg:y="13cm" presentation:class="notes" presentation:placeholder="true">
            <draw:text-box/>
          </draw:frame>
        </presentation:notes>
      </draw:page>
      <presentation:settings presentation:mouse-visible="false"/>
    </office:presentation>
  </office:body>
</office:document-content>