ps-python-pptx 1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pptx/__init__.py +84 -0
- pptx/action.py +270 -0
- pptx/api.py +49 -0
- pptx/chart/__init__.py +0 -0
- pptx/chart/axis.py +523 -0
- pptx/chart/category.py +200 -0
- pptx/chart/chart.py +280 -0
- pptx/chart/data.py +864 -0
- pptx/chart/datalabel.py +288 -0
- pptx/chart/legend.py +79 -0
- pptx/chart/marker.py +70 -0
- pptx/chart/plot.py +412 -0
- pptx/chart/point.py +101 -0
- pptx/chart/series.py +258 -0
- pptx/chart/xlsx.py +272 -0
- pptx/chart/xmlwriter.py +1840 -0
- pptx/dml/__init__.py +0 -0
- pptx/dml/chtfmt.py +40 -0
- pptx/dml/color.py +301 -0
- pptx/dml/effect.py +41 -0
- pptx/dml/fill.py +468 -0
- pptx/dml/line.py +100 -0
- pptx/enum/__init__.py +0 -0
- pptx/enum/action.py +71 -0
- pptx/enum/base.py +175 -0
- pptx/enum/chart.py +492 -0
- pptx/enum/dml.py +405 -0
- pptx/enum/lang.py +685 -0
- pptx/enum/shapes.py +1029 -0
- pptx/enum/text.py +371 -0
- pptx/exc.py +23 -0
- pptx/media.py +197 -0
- pptx/opc/__init__.py +0 -0
- pptx/opc/constants.py +331 -0
- pptx/opc/oxml.py +188 -0
- pptx/opc/package.py +762 -0
- pptx/opc/packuri.py +109 -0
- pptx/opc/serialized.py +296 -0
- pptx/opc/shared.py +20 -0
- pptx/opc/spec.py +44 -0
- pptx/oxml/__init__.py +492 -0
- pptx/oxml/action.py +53 -0
- pptx/oxml/chart/__init__.py +0 -0
- pptx/oxml/chart/axis.py +297 -0
- pptx/oxml/chart/chart.py +282 -0
- pptx/oxml/chart/datalabel.py +252 -0
- pptx/oxml/chart/legend.py +72 -0
- pptx/oxml/chart/marker.py +61 -0
- pptx/oxml/chart/plot.py +345 -0
- pptx/oxml/chart/series.py +254 -0
- pptx/oxml/chart/shared.py +219 -0
- pptx/oxml/coreprops.py +288 -0
- pptx/oxml/dml/__init__.py +0 -0
- pptx/oxml/dml/color.py +111 -0
- pptx/oxml/dml/fill.py +197 -0
- pptx/oxml/dml/line.py +12 -0
- pptx/oxml/ns.py +129 -0
- pptx/oxml/presentation.py +130 -0
- pptx/oxml/shapes/__init__.py +19 -0
- pptx/oxml/shapes/autoshape.py +455 -0
- pptx/oxml/shapes/connector.py +107 -0
- pptx/oxml/shapes/graphfrm.py +342 -0
- pptx/oxml/shapes/groupshape.py +280 -0
- pptx/oxml/shapes/picture.py +270 -0
- pptx/oxml/shapes/shared.py +523 -0
- pptx/oxml/simpletypes.py +740 -0
- pptx/oxml/slide.py +347 -0
- pptx/oxml/table.py +588 -0
- pptx/oxml/text.py +748 -0
- pptx/oxml/theme.py +29 -0
- pptx/oxml/xmlchemy.py +717 -0
- pptx/package.py +222 -0
- pptx/parts/__init__.py +0 -0
- pptx/parts/chart.py +95 -0
- pptx/parts/coreprops.py +167 -0
- pptx/parts/embeddedpackage.py +93 -0
- pptx/parts/image.py +275 -0
- pptx/parts/media.py +37 -0
- pptx/parts/presentation.py +126 -0
- pptx/parts/slide.py +297 -0
- pptx/parts/theme.py +13 -0
- pptx/presentation.py +113 -0
- pptx/py.typed +0 -0
- pptx/shapes/__init__.py +26 -0
- pptx/shapes/autoshape.py +355 -0
- pptx/shapes/base.py +293 -0
- pptx/shapes/connector.py +297 -0
- pptx/shapes/freeform.py +337 -0
- pptx/shapes/graphfrm.py +166 -0
- pptx/shapes/group.py +69 -0
- pptx/shapes/picture.py +203 -0
- pptx/shapes/placeholder.py +407 -0
- pptx/shapes/shapetree.py +1190 -0
- pptx/shared.py +82 -0
- pptx/slide.py +577 -0
- pptx/spec.py +632 -0
- pptx/table.py +520 -0
- pptx/templates/default.pptx +0 -0
- pptx/templates/docx-icon.emf +0 -0
- pptx/templates/generic-icon.emf +0 -0
- pptx/templates/notes.xml +23 -0
- pptx/templates/notesMaster.xml +352 -0
- pptx/templates/pptx-icon.emf +0 -0
- pptx/templates/theme.xml +321 -0
- pptx/templates/xlsx-icon.emf +0 -0
- pptx/text/__init__.py +0 -0
- pptx/text/fonts.py +399 -0
- pptx/text/layout.py +325 -0
- pptx/text/text.py +770 -0
- pptx/theme.py +135 -0
- pptx/types.py +36 -0
- pptx/util.py +284 -0
- ps_python_pptx-1.1.0.dist-info/METADATA +75 -0
- ps_python_pptx-1.1.0.dist-info/RECORD +117 -0
- ps_python_pptx-1.1.0.dist-info/WHEEL +5 -0
- ps_python_pptx-1.1.0.dist-info/licenses/LICENSE +20 -0
- ps_python_pptx-1.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
2
|
+
<p:notesMaster
|
|
3
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
4
|
+
xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main"
|
|
5
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
6
|
+
>
|
|
7
|
+
<p:cSld>
|
|
8
|
+
<p:bg>
|
|
9
|
+
<p:bgRef idx="1001">
|
|
10
|
+
<a:schemeClr val="bg1"/>
|
|
11
|
+
</p:bgRef>
|
|
12
|
+
</p:bg>
|
|
13
|
+
<p:spTree>
|
|
14
|
+
<p:nvGrpSpPr>
|
|
15
|
+
<p:cNvPr id="1" name=""/>
|
|
16
|
+
<p:cNvGrpSpPr/>
|
|
17
|
+
<p:nvPr/>
|
|
18
|
+
</p:nvGrpSpPr>
|
|
19
|
+
<p:grpSpPr>
|
|
20
|
+
<a:xfrm>
|
|
21
|
+
<a:off x="0" y="0"/>
|
|
22
|
+
<a:ext cx="0" cy="0"/>
|
|
23
|
+
<a:chOff x="0" y="0"/>
|
|
24
|
+
<a:chExt cx="0" cy="0"/>
|
|
25
|
+
</a:xfrm>
|
|
26
|
+
</p:grpSpPr>
|
|
27
|
+
<p:sp>
|
|
28
|
+
<p:nvSpPr>
|
|
29
|
+
<p:cNvPr id="2" name="Header Placeholder 1"/>
|
|
30
|
+
<p:cNvSpPr>
|
|
31
|
+
<a:spLocks noGrp="1"/>
|
|
32
|
+
</p:cNvSpPr>
|
|
33
|
+
<p:nvPr>
|
|
34
|
+
<p:ph type="hdr" sz="quarter"/>
|
|
35
|
+
</p:nvPr>
|
|
36
|
+
</p:nvSpPr>
|
|
37
|
+
<p:spPr>
|
|
38
|
+
<a:xfrm>
|
|
39
|
+
<a:off x="0" y="0"/>
|
|
40
|
+
<a:ext cx="2971800" cy="457200"/>
|
|
41
|
+
</a:xfrm>
|
|
42
|
+
<a:prstGeom prst="rect">
|
|
43
|
+
<a:avLst/>
|
|
44
|
+
</a:prstGeom>
|
|
45
|
+
</p:spPr>
|
|
46
|
+
<p:txBody>
|
|
47
|
+
<a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0"/>
|
|
48
|
+
<a:lstStyle>
|
|
49
|
+
<a:lvl1pPr algn="l">
|
|
50
|
+
<a:defRPr sz="1200"/>
|
|
51
|
+
</a:lvl1pPr>
|
|
52
|
+
</a:lstStyle>
|
|
53
|
+
<a:p>
|
|
54
|
+
<a:endParaRPr lang="en-US"/>
|
|
55
|
+
</a:p>
|
|
56
|
+
</p:txBody>
|
|
57
|
+
</p:sp>
|
|
58
|
+
<p:sp>
|
|
59
|
+
<p:nvSpPr>
|
|
60
|
+
<p:cNvPr id="3" name="Date Placeholder 2"/>
|
|
61
|
+
<p:cNvSpPr>
|
|
62
|
+
<a:spLocks noGrp="1"/>
|
|
63
|
+
</p:cNvSpPr>
|
|
64
|
+
<p:nvPr>
|
|
65
|
+
<p:ph type="dt" idx="1"/>
|
|
66
|
+
</p:nvPr>
|
|
67
|
+
</p:nvSpPr>
|
|
68
|
+
<p:spPr>
|
|
69
|
+
<a:xfrm>
|
|
70
|
+
<a:off x="3884613" y="0"/>
|
|
71
|
+
<a:ext cx="2971800" cy="457200"/>
|
|
72
|
+
</a:xfrm>
|
|
73
|
+
<a:prstGeom prst="rect">
|
|
74
|
+
<a:avLst/>
|
|
75
|
+
</a:prstGeom>
|
|
76
|
+
</p:spPr>
|
|
77
|
+
<p:txBody>
|
|
78
|
+
<a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0"/>
|
|
79
|
+
<a:lstStyle>
|
|
80
|
+
<a:lvl1pPr algn="r">
|
|
81
|
+
<a:defRPr sz="1200"/>
|
|
82
|
+
</a:lvl1pPr>
|
|
83
|
+
</a:lstStyle>
|
|
84
|
+
<a:p>
|
|
85
|
+
<a:fld id="{0F89C1C7-3DCD-1040-A9CF-14679D8B5DDD}" type="datetimeFigureOut">
|
|
86
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
87
|
+
<a:t>10/17/16</a:t>
|
|
88
|
+
</a:fld>
|
|
89
|
+
<a:endParaRPr lang="en-US"/>
|
|
90
|
+
</a:p>
|
|
91
|
+
</p:txBody>
|
|
92
|
+
</p:sp>
|
|
93
|
+
<p:sp>
|
|
94
|
+
<p:nvSpPr>
|
|
95
|
+
<p:cNvPr id="4" name="Slide Image Placeholder 3"/>
|
|
96
|
+
<p:cNvSpPr>
|
|
97
|
+
<a:spLocks noGrp="1" noRot="1" noChangeAspect="1"/>
|
|
98
|
+
</p:cNvSpPr>
|
|
99
|
+
<p:nvPr>
|
|
100
|
+
<p:ph type="sldImg" idx="2"/>
|
|
101
|
+
</p:nvPr>
|
|
102
|
+
</p:nvSpPr>
|
|
103
|
+
<p:spPr>
|
|
104
|
+
<a:xfrm>
|
|
105
|
+
<a:off x="1143000" y="685800"/>
|
|
106
|
+
<a:ext cx="4572000" cy="3429000"/>
|
|
107
|
+
</a:xfrm>
|
|
108
|
+
<a:prstGeom prst="rect">
|
|
109
|
+
<a:avLst/>
|
|
110
|
+
</a:prstGeom>
|
|
111
|
+
<a:noFill/>
|
|
112
|
+
<a:ln w="12700">
|
|
113
|
+
<a:solidFill>
|
|
114
|
+
<a:prstClr val="black"/>
|
|
115
|
+
</a:solidFill>
|
|
116
|
+
</a:ln>
|
|
117
|
+
</p:spPr>
|
|
118
|
+
<p:txBody>
|
|
119
|
+
<a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0" anchor="ctr"/>
|
|
120
|
+
<a:lstStyle/>
|
|
121
|
+
<a:p>
|
|
122
|
+
<a:endParaRPr lang="en-US"/>
|
|
123
|
+
</a:p>
|
|
124
|
+
</p:txBody>
|
|
125
|
+
</p:sp>
|
|
126
|
+
<p:sp>
|
|
127
|
+
<p:nvSpPr>
|
|
128
|
+
<p:cNvPr id="5" name="Notes Placeholder 4"/>
|
|
129
|
+
<p:cNvSpPr>
|
|
130
|
+
<a:spLocks noGrp="1"/>
|
|
131
|
+
</p:cNvSpPr>
|
|
132
|
+
<p:nvPr>
|
|
133
|
+
<p:ph type="body" sz="quarter" idx="3"/>
|
|
134
|
+
</p:nvPr>
|
|
135
|
+
</p:nvSpPr>
|
|
136
|
+
<p:spPr>
|
|
137
|
+
<a:xfrm>
|
|
138
|
+
<a:off x="685800" y="4343400"/>
|
|
139
|
+
<a:ext cx="5486400" cy="4114800"/>
|
|
140
|
+
</a:xfrm>
|
|
141
|
+
<a:prstGeom prst="rect">
|
|
142
|
+
<a:avLst/>
|
|
143
|
+
</a:prstGeom>
|
|
144
|
+
</p:spPr>
|
|
145
|
+
<p:txBody>
|
|
146
|
+
<a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0"/>
|
|
147
|
+
<a:lstStyle/>
|
|
148
|
+
<a:p>
|
|
149
|
+
<a:pPr lvl="0"/>
|
|
150
|
+
<a:r>
|
|
151
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
152
|
+
<a:t>Click to edit Master text styles</a:t>
|
|
153
|
+
</a:r>
|
|
154
|
+
</a:p>
|
|
155
|
+
<a:p>
|
|
156
|
+
<a:pPr lvl="1"/>
|
|
157
|
+
<a:r>
|
|
158
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
159
|
+
<a:t>Second level</a:t>
|
|
160
|
+
</a:r>
|
|
161
|
+
</a:p>
|
|
162
|
+
<a:p>
|
|
163
|
+
<a:pPr lvl="2"/>
|
|
164
|
+
<a:r>
|
|
165
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
166
|
+
<a:t>Third level</a:t>
|
|
167
|
+
</a:r>
|
|
168
|
+
</a:p>
|
|
169
|
+
<a:p>
|
|
170
|
+
<a:pPr lvl="3"/>
|
|
171
|
+
<a:r>
|
|
172
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
173
|
+
<a:t>Fourth level</a:t>
|
|
174
|
+
</a:r>
|
|
175
|
+
</a:p>
|
|
176
|
+
<a:p>
|
|
177
|
+
<a:pPr lvl="4"/>
|
|
178
|
+
<a:r>
|
|
179
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
180
|
+
<a:t>Fifth level</a:t>
|
|
181
|
+
</a:r>
|
|
182
|
+
<a:endParaRPr lang="en-US"/>
|
|
183
|
+
</a:p>
|
|
184
|
+
</p:txBody>
|
|
185
|
+
</p:sp>
|
|
186
|
+
<p:sp>
|
|
187
|
+
<p:nvSpPr>
|
|
188
|
+
<p:cNvPr id="6" name="Footer Placeholder 5"/>
|
|
189
|
+
<p:cNvSpPr>
|
|
190
|
+
<a:spLocks noGrp="1"/>
|
|
191
|
+
</p:cNvSpPr>
|
|
192
|
+
<p:nvPr>
|
|
193
|
+
<p:ph type="ftr" sz="quarter" idx="4"/>
|
|
194
|
+
</p:nvPr>
|
|
195
|
+
</p:nvSpPr>
|
|
196
|
+
<p:spPr>
|
|
197
|
+
<a:xfrm>
|
|
198
|
+
<a:off x="0" y="8685213"/>
|
|
199
|
+
<a:ext cx="2971800" cy="457200"/>
|
|
200
|
+
</a:xfrm>
|
|
201
|
+
<a:prstGeom prst="rect">
|
|
202
|
+
<a:avLst/>
|
|
203
|
+
</a:prstGeom>
|
|
204
|
+
</p:spPr>
|
|
205
|
+
<p:txBody>
|
|
206
|
+
<a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0" anchor="b"/>
|
|
207
|
+
<a:lstStyle>
|
|
208
|
+
<a:lvl1pPr algn="l">
|
|
209
|
+
<a:defRPr sz="1200"/>
|
|
210
|
+
</a:lvl1pPr>
|
|
211
|
+
</a:lstStyle>
|
|
212
|
+
<a:p>
|
|
213
|
+
<a:endParaRPr lang="en-US"/>
|
|
214
|
+
</a:p>
|
|
215
|
+
</p:txBody>
|
|
216
|
+
</p:sp>
|
|
217
|
+
<p:sp>
|
|
218
|
+
<p:nvSpPr>
|
|
219
|
+
<p:cNvPr id="7" name="Slide Number Placeholder 6"/>
|
|
220
|
+
<p:cNvSpPr>
|
|
221
|
+
<a:spLocks noGrp="1"/>
|
|
222
|
+
</p:cNvSpPr>
|
|
223
|
+
<p:nvPr>
|
|
224
|
+
<p:ph type="sldNum" sz="quarter" idx="5"/>
|
|
225
|
+
</p:nvPr>
|
|
226
|
+
</p:nvSpPr>
|
|
227
|
+
<p:spPr>
|
|
228
|
+
<a:xfrm>
|
|
229
|
+
<a:off x="3884613" y="8685213"/>
|
|
230
|
+
<a:ext cx="2971800" cy="457200"/>
|
|
231
|
+
</a:xfrm>
|
|
232
|
+
<a:prstGeom prst="rect">
|
|
233
|
+
<a:avLst/>
|
|
234
|
+
</a:prstGeom>
|
|
235
|
+
</p:spPr>
|
|
236
|
+
<p:txBody>
|
|
237
|
+
<a:bodyPr vert="horz" lIns="91440" tIns="45720" rIns="91440" bIns="45720" rtlCol="0" anchor="b"/>
|
|
238
|
+
<a:lstStyle>
|
|
239
|
+
<a:lvl1pPr algn="r">
|
|
240
|
+
<a:defRPr sz="1200"/>
|
|
241
|
+
</a:lvl1pPr>
|
|
242
|
+
</a:lstStyle>
|
|
243
|
+
<a:p>
|
|
244
|
+
<a:fld id="{BB5E49A5-4136-284D-997B-48E1D791AD67}" type="slidenum">
|
|
245
|
+
<a:rPr lang="en-US" smtClean="0"/>
|
|
246
|
+
<a:t>‹#›</a:t>
|
|
247
|
+
</a:fld>
|
|
248
|
+
<a:endParaRPr lang="en-US"/>
|
|
249
|
+
</a:p>
|
|
250
|
+
</p:txBody>
|
|
251
|
+
</p:sp>
|
|
252
|
+
</p:spTree>
|
|
253
|
+
<p:extLst>
|
|
254
|
+
<p:ext uri="{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}">
|
|
255
|
+
<p14:creationId xmlns:p14="http://schemas.microsoft.com/office/powerpoint/2010/main" val="2623252185"/>
|
|
256
|
+
</p:ext>
|
|
257
|
+
</p:extLst>
|
|
258
|
+
</p:cSld>
|
|
259
|
+
<p:clrMap bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink" folHlink="folHlink"/>
|
|
260
|
+
<p:notesStyle>
|
|
261
|
+
<a:lvl1pPr marL="0" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
262
|
+
<a:defRPr sz="1200" kern="1200">
|
|
263
|
+
<a:solidFill>
|
|
264
|
+
<a:schemeClr val="tx1"/>
|
|
265
|
+
</a:solidFill>
|
|
266
|
+
<a:latin typeface="+mn-lt"/>
|
|
267
|
+
<a:ea typeface="+mn-ea"/>
|
|
268
|
+
<a:cs typeface="+mn-cs"/>
|
|
269
|
+
</a:defRPr>
|
|
270
|
+
</a:lvl1pPr>
|
|
271
|
+
<a:lvl2pPr marL="457200" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
272
|
+
<a:defRPr sz="1200" kern="1200">
|
|
273
|
+
<a:solidFill>
|
|
274
|
+
<a:schemeClr val="tx1"/>
|
|
275
|
+
</a:solidFill>
|
|
276
|
+
<a:latin typeface="+mn-lt"/>
|
|
277
|
+
<a:ea typeface="+mn-ea"/>
|
|
278
|
+
<a:cs typeface="+mn-cs"/>
|
|
279
|
+
</a:defRPr>
|
|
280
|
+
</a:lvl2pPr>
|
|
281
|
+
<a:lvl3pPr marL="914400" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
282
|
+
<a:defRPr sz="1200" kern="1200">
|
|
283
|
+
<a:solidFill>
|
|
284
|
+
<a:schemeClr val="tx1"/>
|
|
285
|
+
</a:solidFill>
|
|
286
|
+
<a:latin typeface="+mn-lt"/>
|
|
287
|
+
<a:ea typeface="+mn-ea"/>
|
|
288
|
+
<a:cs typeface="+mn-cs"/>
|
|
289
|
+
</a:defRPr>
|
|
290
|
+
</a:lvl3pPr>
|
|
291
|
+
<a:lvl4pPr marL="1371600" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
292
|
+
<a:defRPr sz="1200" kern="1200">
|
|
293
|
+
<a:solidFill>
|
|
294
|
+
<a:schemeClr val="tx1"/>
|
|
295
|
+
</a:solidFill>
|
|
296
|
+
<a:latin typeface="+mn-lt"/>
|
|
297
|
+
<a:ea typeface="+mn-ea"/>
|
|
298
|
+
<a:cs typeface="+mn-cs"/>
|
|
299
|
+
</a:defRPr>
|
|
300
|
+
</a:lvl4pPr>
|
|
301
|
+
<a:lvl5pPr marL="1828800" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
302
|
+
<a:defRPr sz="1200" kern="1200">
|
|
303
|
+
<a:solidFill>
|
|
304
|
+
<a:schemeClr val="tx1"/>
|
|
305
|
+
</a:solidFill>
|
|
306
|
+
<a:latin typeface="+mn-lt"/>
|
|
307
|
+
<a:ea typeface="+mn-ea"/>
|
|
308
|
+
<a:cs typeface="+mn-cs"/>
|
|
309
|
+
</a:defRPr>
|
|
310
|
+
</a:lvl5pPr>
|
|
311
|
+
<a:lvl6pPr marL="2286000" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
312
|
+
<a:defRPr sz="1200" kern="1200">
|
|
313
|
+
<a:solidFill>
|
|
314
|
+
<a:schemeClr val="tx1"/>
|
|
315
|
+
</a:solidFill>
|
|
316
|
+
<a:latin typeface="+mn-lt"/>
|
|
317
|
+
<a:ea typeface="+mn-ea"/>
|
|
318
|
+
<a:cs typeface="+mn-cs"/>
|
|
319
|
+
</a:defRPr>
|
|
320
|
+
</a:lvl6pPr>
|
|
321
|
+
<a:lvl7pPr marL="2743200" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
322
|
+
<a:defRPr sz="1200" kern="1200">
|
|
323
|
+
<a:solidFill>
|
|
324
|
+
<a:schemeClr val="tx1"/>
|
|
325
|
+
</a:solidFill>
|
|
326
|
+
<a:latin typeface="+mn-lt"/>
|
|
327
|
+
<a:ea typeface="+mn-ea"/>
|
|
328
|
+
<a:cs typeface="+mn-cs"/>
|
|
329
|
+
</a:defRPr>
|
|
330
|
+
</a:lvl7pPr>
|
|
331
|
+
<a:lvl8pPr marL="3200400" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
332
|
+
<a:defRPr sz="1200" kern="1200">
|
|
333
|
+
<a:solidFill>
|
|
334
|
+
<a:schemeClr val="tx1"/>
|
|
335
|
+
</a:solidFill>
|
|
336
|
+
<a:latin typeface="+mn-lt"/>
|
|
337
|
+
<a:ea typeface="+mn-ea"/>
|
|
338
|
+
<a:cs typeface="+mn-cs"/>
|
|
339
|
+
</a:defRPr>
|
|
340
|
+
</a:lvl8pPr>
|
|
341
|
+
<a:lvl9pPr marL="3657600" algn="l" defTabSz="457200" rtl="0" eaLnBrk="1" latinLnBrk="0" hangingPunct="1">
|
|
342
|
+
<a:defRPr sz="1200" kern="1200">
|
|
343
|
+
<a:solidFill>
|
|
344
|
+
<a:schemeClr val="tx1"/>
|
|
345
|
+
</a:solidFill>
|
|
346
|
+
<a:latin typeface="+mn-lt"/>
|
|
347
|
+
<a:ea typeface="+mn-ea"/>
|
|
348
|
+
<a:cs typeface="+mn-cs"/>
|
|
349
|
+
</a:defRPr>
|
|
350
|
+
</a:lvl9pPr>
|
|
351
|
+
</p:notesStyle>
|
|
352
|
+
</p:notesMaster>
|
|
Binary file
|
pptx/templates/theme.xml
ADDED
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
2
|
+
<a:theme
|
|
3
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
4
|
+
name="Office Theme"
|
|
5
|
+
>
|
|
6
|
+
<a:themeElements>
|
|
7
|
+
<a:clrScheme name="Office">
|
|
8
|
+
<a:dk1>
|
|
9
|
+
<a:sysClr val="windowText" lastClr="000000"/>
|
|
10
|
+
</a:dk1>
|
|
11
|
+
<a:lt1>
|
|
12
|
+
<a:sysClr val="window" lastClr="FFFFFF"/>
|
|
13
|
+
</a:lt1>
|
|
14
|
+
<a:dk2>
|
|
15
|
+
<a:srgbClr val="1F497D"/>
|
|
16
|
+
</a:dk2>
|
|
17
|
+
<a:lt2>
|
|
18
|
+
<a:srgbClr val="EEECE1"/>
|
|
19
|
+
</a:lt2>
|
|
20
|
+
<a:accent1>
|
|
21
|
+
<a:srgbClr val="4F81BD"/>
|
|
22
|
+
</a:accent1>
|
|
23
|
+
<a:accent2>
|
|
24
|
+
<a:srgbClr val="C0504D"/>
|
|
25
|
+
</a:accent2>
|
|
26
|
+
<a:accent3>
|
|
27
|
+
<a:srgbClr val="9BBB59"/>
|
|
28
|
+
</a:accent3>
|
|
29
|
+
<a:accent4>
|
|
30
|
+
<a:srgbClr val="8064A2"/>
|
|
31
|
+
</a:accent4>
|
|
32
|
+
<a:accent5>
|
|
33
|
+
<a:srgbClr val="4BACC6"/>
|
|
34
|
+
</a:accent5>
|
|
35
|
+
<a:accent6>
|
|
36
|
+
<a:srgbClr val="F79646"/>
|
|
37
|
+
</a:accent6>
|
|
38
|
+
<a:hlink>
|
|
39
|
+
<a:srgbClr val="0000FF"/>
|
|
40
|
+
</a:hlink>
|
|
41
|
+
<a:folHlink>
|
|
42
|
+
<a:srgbClr val="800080"/>
|
|
43
|
+
</a:folHlink>
|
|
44
|
+
</a:clrScheme>
|
|
45
|
+
<a:fontScheme name="Office">
|
|
46
|
+
<a:majorFont>
|
|
47
|
+
<a:latin typeface="Calibri"/>
|
|
48
|
+
<a:ea typeface=""/>
|
|
49
|
+
<a:cs typeface=""/>
|
|
50
|
+
<a:font script="Jpan" typeface="MS Pゴシック"/>
|
|
51
|
+
<a:font script="Hang" typeface="맑은 고딕"/>
|
|
52
|
+
<a:font script="Hans" typeface="宋体"/>
|
|
53
|
+
<a:font script="Hant" typeface="新細明體"/>
|
|
54
|
+
<a:font script="Arab" typeface="Times New Roman"/>
|
|
55
|
+
<a:font script="Hebr" typeface="Times New Roman"/>
|
|
56
|
+
<a:font script="Thai" typeface="Angsana New"/>
|
|
57
|
+
<a:font script="Ethi" typeface="Nyala"/>
|
|
58
|
+
<a:font script="Beng" typeface="Vrinda"/>
|
|
59
|
+
<a:font script="Gujr" typeface="Shruti"/>
|
|
60
|
+
<a:font script="Khmr" typeface="MoolBoran"/>
|
|
61
|
+
<a:font script="Knda" typeface="Tunga"/>
|
|
62
|
+
<a:font script="Guru" typeface="Raavi"/>
|
|
63
|
+
<a:font script="Cans" typeface="Euphemia"/>
|
|
64
|
+
<a:font script="Cher" typeface="Plantagenet Cherokee"/>
|
|
65
|
+
<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
|
|
66
|
+
<a:font script="Tibt" typeface="Microsoft Himalaya"/>
|
|
67
|
+
<a:font script="Thaa" typeface="MV Boli"/>
|
|
68
|
+
<a:font script="Deva" typeface="Mangal"/>
|
|
69
|
+
<a:font script="Telu" typeface="Gautami"/>
|
|
70
|
+
<a:font script="Taml" typeface="Latha"/>
|
|
71
|
+
<a:font script="Syrc" typeface="Estrangelo Edessa"/>
|
|
72
|
+
<a:font script="Orya" typeface="Kalinga"/>
|
|
73
|
+
<a:font script="Mlym" typeface="Kartika"/>
|
|
74
|
+
<a:font script="Laoo" typeface="DokChampa"/>
|
|
75
|
+
<a:font script="Sinh" typeface="Iskoola Pota"/>
|
|
76
|
+
<a:font script="Mong" typeface="Mongolian Baiti"/>
|
|
77
|
+
<a:font script="Viet" typeface="Times New Roman"/>
|
|
78
|
+
<a:font script="Uigh" typeface="Microsoft Uighur"/>
|
|
79
|
+
<a:font script="Geor" typeface="Sylfaen"/>
|
|
80
|
+
</a:majorFont>
|
|
81
|
+
<a:minorFont>
|
|
82
|
+
<a:latin typeface="Calibri"/>
|
|
83
|
+
<a:ea typeface=""/>
|
|
84
|
+
<a:cs typeface=""/>
|
|
85
|
+
<a:font script="Jpan" typeface="MS Pゴシック"/>
|
|
86
|
+
<a:font script="Hang" typeface="맑은 고딕"/>
|
|
87
|
+
<a:font script="Hans" typeface="宋体"/>
|
|
88
|
+
<a:font script="Hant" typeface="新細明體"/>
|
|
89
|
+
<a:font script="Arab" typeface="Arial"/>
|
|
90
|
+
<a:font script="Hebr" typeface="Arial"/>
|
|
91
|
+
<a:font script="Thai" typeface="Cordia New"/>
|
|
92
|
+
<a:font script="Ethi" typeface="Nyala"/>
|
|
93
|
+
<a:font script="Beng" typeface="Vrinda"/>
|
|
94
|
+
<a:font script="Gujr" typeface="Shruti"/>
|
|
95
|
+
<a:font script="Khmr" typeface="DaunPenh"/>
|
|
96
|
+
<a:font script="Knda" typeface="Tunga"/>
|
|
97
|
+
<a:font script="Guru" typeface="Raavi"/>
|
|
98
|
+
<a:font script="Cans" typeface="Euphemia"/>
|
|
99
|
+
<a:font script="Cher" typeface="Plantagenet Cherokee"/>
|
|
100
|
+
<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
|
|
101
|
+
<a:font script="Tibt" typeface="Microsoft Himalaya"/>
|
|
102
|
+
<a:font script="Thaa" typeface="MV Boli"/>
|
|
103
|
+
<a:font script="Deva" typeface="Mangal"/>
|
|
104
|
+
<a:font script="Telu" typeface="Gautami"/>
|
|
105
|
+
<a:font script="Taml" typeface="Latha"/>
|
|
106
|
+
<a:font script="Syrc" typeface="Estrangelo Edessa"/>
|
|
107
|
+
<a:font script="Orya" typeface="Kalinga"/>
|
|
108
|
+
<a:font script="Mlym" typeface="Kartika"/>
|
|
109
|
+
<a:font script="Laoo" typeface="DokChampa"/>
|
|
110
|
+
<a:font script="Sinh" typeface="Iskoola Pota"/>
|
|
111
|
+
<a:font script="Mong" typeface="Mongolian Baiti"/>
|
|
112
|
+
<a:font script="Viet" typeface="Arial"/>
|
|
113
|
+
<a:font script="Uigh" typeface="Microsoft Uighur"/>
|
|
114
|
+
<a:font script="Geor" typeface="Sylfaen"/>
|
|
115
|
+
</a:minorFont>
|
|
116
|
+
</a:fontScheme>
|
|
117
|
+
<a:fmtScheme name="Office">
|
|
118
|
+
<a:fillStyleLst>
|
|
119
|
+
<a:solidFill>
|
|
120
|
+
<a:schemeClr val="phClr"/>
|
|
121
|
+
</a:solidFill>
|
|
122
|
+
<a:gradFill rotWithShape="1">
|
|
123
|
+
<a:gsLst>
|
|
124
|
+
<a:gs pos="0">
|
|
125
|
+
<a:schemeClr val="phClr">
|
|
126
|
+
<a:tint val="50000"/>
|
|
127
|
+
<a:satMod val="300000"/>
|
|
128
|
+
</a:schemeClr>
|
|
129
|
+
</a:gs>
|
|
130
|
+
<a:gs pos="35000">
|
|
131
|
+
<a:schemeClr val="phClr">
|
|
132
|
+
<a:tint val="37000"/>
|
|
133
|
+
<a:satMod val="300000"/>
|
|
134
|
+
</a:schemeClr>
|
|
135
|
+
</a:gs>
|
|
136
|
+
<a:gs pos="100000">
|
|
137
|
+
<a:schemeClr val="phClr">
|
|
138
|
+
<a:tint val="15000"/>
|
|
139
|
+
<a:satMod val="350000"/>
|
|
140
|
+
</a:schemeClr>
|
|
141
|
+
</a:gs>
|
|
142
|
+
</a:gsLst>
|
|
143
|
+
<a:lin ang="16200000" scaled="1"/>
|
|
144
|
+
</a:gradFill>
|
|
145
|
+
<a:gradFill rotWithShape="1">
|
|
146
|
+
<a:gsLst>
|
|
147
|
+
<a:gs pos="0">
|
|
148
|
+
<a:schemeClr val="phClr">
|
|
149
|
+
<a:tint val="100000"/>
|
|
150
|
+
<a:shade val="100000"/>
|
|
151
|
+
<a:satMod val="130000"/>
|
|
152
|
+
</a:schemeClr>
|
|
153
|
+
</a:gs>
|
|
154
|
+
<a:gs pos="100000">
|
|
155
|
+
<a:schemeClr val="phClr">
|
|
156
|
+
<a:tint val="50000"/>
|
|
157
|
+
<a:shade val="100000"/>
|
|
158
|
+
<a:satMod val="350000"/>
|
|
159
|
+
</a:schemeClr>
|
|
160
|
+
</a:gs>
|
|
161
|
+
</a:gsLst>
|
|
162
|
+
<a:lin ang="16200000" scaled="0"/>
|
|
163
|
+
</a:gradFill>
|
|
164
|
+
</a:fillStyleLst>
|
|
165
|
+
<a:lnStyleLst>
|
|
166
|
+
<a:ln w="9525" cap="flat" cmpd="sng" algn="ctr">
|
|
167
|
+
<a:solidFill>
|
|
168
|
+
<a:schemeClr val="phClr">
|
|
169
|
+
<a:shade val="95000"/>
|
|
170
|
+
<a:satMod val="105000"/>
|
|
171
|
+
</a:schemeClr>
|
|
172
|
+
</a:solidFill>
|
|
173
|
+
<a:prstDash val="solid"/>
|
|
174
|
+
</a:ln>
|
|
175
|
+
<a:ln w="25400" cap="flat" cmpd="sng" algn="ctr">
|
|
176
|
+
<a:solidFill>
|
|
177
|
+
<a:schemeClr val="phClr"/>
|
|
178
|
+
</a:solidFill>
|
|
179
|
+
<a:prstDash val="solid"/>
|
|
180
|
+
</a:ln>
|
|
181
|
+
<a:ln w="38100" cap="flat" cmpd="sng" algn="ctr">
|
|
182
|
+
<a:solidFill>
|
|
183
|
+
<a:schemeClr val="phClr"/>
|
|
184
|
+
</a:solidFill>
|
|
185
|
+
<a:prstDash val="solid"/>
|
|
186
|
+
</a:ln>
|
|
187
|
+
</a:lnStyleLst>
|
|
188
|
+
<a:effectStyleLst>
|
|
189
|
+
<a:effectStyle>
|
|
190
|
+
<a:effectLst>
|
|
191
|
+
<a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0">
|
|
192
|
+
<a:srgbClr val="000000">
|
|
193
|
+
<a:alpha val="38000"/>
|
|
194
|
+
</a:srgbClr>
|
|
195
|
+
</a:outerShdw>
|
|
196
|
+
</a:effectLst>
|
|
197
|
+
</a:effectStyle>
|
|
198
|
+
<a:effectStyle>
|
|
199
|
+
<a:effectLst>
|
|
200
|
+
<a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
|
|
201
|
+
<a:srgbClr val="000000">
|
|
202
|
+
<a:alpha val="35000"/>
|
|
203
|
+
</a:srgbClr>
|
|
204
|
+
</a:outerShdw>
|
|
205
|
+
</a:effectLst>
|
|
206
|
+
</a:effectStyle>
|
|
207
|
+
<a:effectStyle>
|
|
208
|
+
<a:effectLst>
|
|
209
|
+
<a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
|
|
210
|
+
<a:srgbClr val="000000">
|
|
211
|
+
<a:alpha val="35000"/>
|
|
212
|
+
</a:srgbClr>
|
|
213
|
+
</a:outerShdw>
|
|
214
|
+
</a:effectLst>
|
|
215
|
+
<a:scene3d>
|
|
216
|
+
<a:camera prst="orthographicFront">
|
|
217
|
+
<a:rot lat="0" lon="0" rev="0"/>
|
|
218
|
+
</a:camera>
|
|
219
|
+
<a:lightRig rig="threePt" dir="t">
|
|
220
|
+
<a:rot lat="0" lon="0" rev="1200000"/>
|
|
221
|
+
</a:lightRig>
|
|
222
|
+
</a:scene3d>
|
|
223
|
+
<a:sp3d>
|
|
224
|
+
<a:bevelT w="63500" h="25400"/>
|
|
225
|
+
</a:sp3d>
|
|
226
|
+
</a:effectStyle>
|
|
227
|
+
</a:effectStyleLst>
|
|
228
|
+
<a:bgFillStyleLst>
|
|
229
|
+
<a:solidFill>
|
|
230
|
+
<a:schemeClr val="phClr"/>
|
|
231
|
+
</a:solidFill>
|
|
232
|
+
<a:gradFill rotWithShape="1">
|
|
233
|
+
<a:gsLst>
|
|
234
|
+
<a:gs pos="0">
|
|
235
|
+
<a:schemeClr val="phClr">
|
|
236
|
+
<a:tint val="40000"/>
|
|
237
|
+
<a:satMod val="350000"/>
|
|
238
|
+
</a:schemeClr>
|
|
239
|
+
</a:gs>
|
|
240
|
+
<a:gs pos="40000">
|
|
241
|
+
<a:schemeClr val="phClr">
|
|
242
|
+
<a:tint val="45000"/>
|
|
243
|
+
<a:shade val="99000"/>
|
|
244
|
+
<a:satMod val="350000"/>
|
|
245
|
+
</a:schemeClr>
|
|
246
|
+
</a:gs>
|
|
247
|
+
<a:gs pos="100000">
|
|
248
|
+
<a:schemeClr val="phClr">
|
|
249
|
+
<a:shade val="20000"/>
|
|
250
|
+
<a:satMod val="255000"/>
|
|
251
|
+
</a:schemeClr>
|
|
252
|
+
</a:gs>
|
|
253
|
+
</a:gsLst>
|
|
254
|
+
<a:path path="circle">
|
|
255
|
+
<a:fillToRect l="50000" t="-80000" r="50000" b="180000"/>
|
|
256
|
+
</a:path>
|
|
257
|
+
</a:gradFill>
|
|
258
|
+
<a:gradFill rotWithShape="1">
|
|
259
|
+
<a:gsLst>
|
|
260
|
+
<a:gs pos="0">
|
|
261
|
+
<a:schemeClr val="phClr">
|
|
262
|
+
<a:tint val="80000"/>
|
|
263
|
+
<a:satMod val="300000"/>
|
|
264
|
+
</a:schemeClr>
|
|
265
|
+
</a:gs>
|
|
266
|
+
<a:gs pos="100000">
|
|
267
|
+
<a:schemeClr val="phClr">
|
|
268
|
+
<a:shade val="30000"/>
|
|
269
|
+
<a:satMod val="200000"/>
|
|
270
|
+
</a:schemeClr>
|
|
271
|
+
</a:gs>
|
|
272
|
+
</a:gsLst>
|
|
273
|
+
<a:path path="circle">
|
|
274
|
+
<a:fillToRect l="50000" t="50000" r="50000" b="50000"/>
|
|
275
|
+
</a:path>
|
|
276
|
+
</a:gradFill>
|
|
277
|
+
</a:bgFillStyleLst>
|
|
278
|
+
</a:fmtScheme>
|
|
279
|
+
</a:themeElements>
|
|
280
|
+
<a:objectDefaults>
|
|
281
|
+
<a:spDef>
|
|
282
|
+
<a:spPr/>
|
|
283
|
+
<a:bodyPr/>
|
|
284
|
+
<a:lstStyle/>
|
|
285
|
+
<a:style>
|
|
286
|
+
<a:lnRef idx="1">
|
|
287
|
+
<a:schemeClr val="accent1"/>
|
|
288
|
+
</a:lnRef>
|
|
289
|
+
<a:fillRef idx="3">
|
|
290
|
+
<a:schemeClr val="accent1"/>
|
|
291
|
+
</a:fillRef>
|
|
292
|
+
<a:effectRef idx="2">
|
|
293
|
+
<a:schemeClr val="accent1"/>
|
|
294
|
+
</a:effectRef>
|
|
295
|
+
<a:fontRef idx="minor">
|
|
296
|
+
<a:schemeClr val="lt1"/>
|
|
297
|
+
</a:fontRef>
|
|
298
|
+
</a:style>
|
|
299
|
+
</a:spDef>
|
|
300
|
+
<a:lnDef>
|
|
301
|
+
<a:spPr/>
|
|
302
|
+
<a:bodyPr/>
|
|
303
|
+
<a:lstStyle/>
|
|
304
|
+
<a:style>
|
|
305
|
+
<a:lnRef idx="2">
|
|
306
|
+
<a:schemeClr val="accent1"/>
|
|
307
|
+
</a:lnRef>
|
|
308
|
+
<a:fillRef idx="0">
|
|
309
|
+
<a:schemeClr val="accent1"/>
|
|
310
|
+
</a:fillRef>
|
|
311
|
+
<a:effectRef idx="1">
|
|
312
|
+
<a:schemeClr val="accent1"/>
|
|
313
|
+
</a:effectRef>
|
|
314
|
+
<a:fontRef idx="minor">
|
|
315
|
+
<a:schemeClr val="tx1"/>
|
|
316
|
+
</a:fontRef>
|
|
317
|
+
</a:style>
|
|
318
|
+
</a:lnDef>
|
|
319
|
+
</a:objectDefaults>
|
|
320
|
+
<a:extraClrSchemeLst/>
|
|
321
|
+
</a:theme>
|
|
Binary file
|
pptx/text/__init__.py
ADDED
|
File without changes
|