| 
									
										
										
										
											2014-05-16 00:33:34 +00:00
										 |  |  |  | RELS.THEME = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-02 05:19:07 +00:00
										 |  |  |  | /* 20.1.6.2 clrScheme CT_ColorScheme */ | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | function parse_clrScheme(t, themes, opts) { | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 	themes.themeElements.clrScheme = []; | 
					
						
							|  |  |  |  | 	var color = {}; | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  |  | 	(t[0].match(tagregex)||[]).forEach(function(x) { | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 		var y = parsexmltag(x); | 
					
						
							|  |  |  |  | 		switch(y[0]) { | 
					
						
							| 
									
										
										
										
											2017-05-09 18:07:57 +00:00
										 |  |  |  | 			/* 20.1.6.2 clrScheme (Color Scheme) CT_ColorScheme */ | 
					
						
							| 
									
										
										
										
											2014-05-29 22:30:03 +00:00
										 |  |  |  | 			case '<a:clrScheme': case '</a:clrScheme>': break; | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 			/* 20.1.2.3.32 srgbClr CT_SRgbColor */ | 
					
						
							| 
									
										
										
										
											2017-05-09 18:07:57 +00:00
										 |  |  |  | 			case '<a:srgbClr': | 
					
						
							|  |  |  |  | 				color.rgb = y.val; break; | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 			/* 20.1.2.3.33 sysClr CT_SystemColor */ | 
					
						
							| 
									
										
										
										
											2017-05-09 18:07:57 +00:00
										 |  |  |  | 			case '<a:sysClr': | 
					
						
							|  |  |  |  | 				color.rgb = y.lastClr; break; | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.1 accent1 (Accent 1) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.2 accent2 (Accent 2) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.3 accent3 (Accent 3) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.4 accent4 (Accent 4) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.5 accent5 (Accent 5) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.6 accent6 (Accent 6) */ | 
					
						
							| 
									
										
										
										
											2017-05-09 18:07:57 +00:00
										 |  |  |  | 			/* 20.1.4.1.9 dk1 (Dark 1) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.10 dk2 (Dark 2) */ | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 			/* 20.1.4.1.15 folHlink (Followed Hyperlink) */ | 
					
						
							| 
									
										
										
										
											2017-05-09 18:07:57 +00:00
										 |  |  |  | 			/* 20.1.4.1.19 hlink (Hyperlink) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.22 lt1 (Light 1) */ | 
					
						
							|  |  |  |  | 			/* 20.1.4.1.23 lt2 (Light 2) */ | 
					
						
							|  |  |  |  | 			case '<a:dk1>': case '</a:dk1>': | 
					
						
							|  |  |  |  | 			case '<a:lt1>': case '</a:lt1>': | 
					
						
							|  |  |  |  | 			case '<a:dk2>': case '</a:dk2>': | 
					
						
							|  |  |  |  | 			case '<a:lt2>': case '</a:lt2>': | 
					
						
							|  |  |  |  | 			case '<a:accent1>': case '</a:accent1>': | 
					
						
							|  |  |  |  | 			case '<a:accent2>': case '</a:accent2>': | 
					
						
							|  |  |  |  | 			case '<a:accent3>': case '</a:accent3>': | 
					
						
							|  |  |  |  | 			case '<a:accent4>': case '</a:accent4>': | 
					
						
							|  |  |  |  | 			case '<a:accent5>': case '</a:accent5>': | 
					
						
							|  |  |  |  | 			case '<a:accent6>': case '</a:accent6>': | 
					
						
							|  |  |  |  | 			case '<a:hlink>': case '</a:hlink>': | 
					
						
							|  |  |  |  | 			case '<a:folHlink>': case '</a:folHlink>': | 
					
						
							| 
									
										
										
										
											2017-07-10 22:18:18 +00:00
										 |  |  |  | 				if (y[0].charAt(1) === '/') { | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 					themes.themeElements.clrScheme.push(color); | 
					
						
							|  |  |  |  | 					color = {}; | 
					
						
							|  |  |  |  | 				} else { | 
					
						
							|  |  |  |  | 					color.name = y[0].substring(3, y[0].length - 1); | 
					
						
							|  |  |  |  | 				} | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 			default: if(opts && opts.WTF) throw new Error('Unrecognized ' + y[0] + ' in clrScheme'); | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 		} | 
					
						
							|  |  |  |  | 	}); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | /* 20.1.4.1.18 fontScheme CT_FontScheme */ | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | function parse_fontScheme(t, themes, opts) { } | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | /* 20.1.4.1.15 fmtScheme CT_StyleMatrix */ | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | function parse_fmtScheme(t, themes, opts) { } | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-24 06:51:37 +00:00
										 |  |  |  | var clrsregex = /<a:clrScheme([^>]*)>[\s\S]*<\/a:clrScheme>/; | 
					
						
							|  |  |  |  | var fntsregex = /<a:fontScheme([^>]*)>[\s\S]*<\/a:fontScheme>/; | 
					
						
							|  |  |  |  | var fmtsregex = /<a:fmtScheme([^>]*)>[\s\S]*<\/a:fmtScheme>/; | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | /* 20.1.6.10 themeElements CT_BaseStyles */ | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | function parse_themeElements(data, themes, opts) { | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 	themes.themeElements = {}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	var t; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	[ | 
					
						
							|  |  |  |  | 		/* clrScheme CT_ColorScheme */ | 
					
						
							|  |  |  |  | 		['clrScheme', clrsregex, parse_clrScheme], | 
					
						
							|  |  |  |  | 		/* fontScheme CT_FontScheme */ | 
					
						
							|  |  |  |  | 		['fontScheme', fntsregex, parse_fontScheme], | 
					
						
							|  |  |  |  | 		/* fmtScheme CT_StyleMatrix */ | 
					
						
							|  |  |  |  | 		['fmtScheme', fmtsregex, parse_fmtScheme] | 
					
						
							|  |  |  |  | 	].forEach(function(m) { | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  |  | 		if(!(t=data.match(m[1]))) throw new Error(m[0] + ' not found in themeElements'); | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 		m[2](t, themes, opts); | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 	}); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-24 06:51:37 +00:00
										 |  |  |  | var themeltregex = /<a:themeElements([^>]*)>[\s\S]*<\/a:themeElements>/; | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | /* 14.2.7 Theme Part */ | 
					
						
							| 
									
										
										
										
											2017-03-12 18:02:43 +00:00
										 |  |  |  | function parse_theme_xml(data/*:string*/, opts) { | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 	/* 20.1.6.9 theme CT_OfficeStyleSheet */ | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 	if(!data || data.length === 0) return parse_theme_xml(write_theme()); | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	var t; | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 	var themes = {}; | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-26 05:26:18 +00:00
										 |  |  |  | 	/* themeElements CT_BaseStyles */ | 
					
						
							| 
									
										
										
										
											2017-03-27 21:35:15 +00:00
										 |  |  |  | 	if(!(t=data.match(themeltregex))) throw new Error('themeElements not found in theme'); | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 	parse_themeElements(t[0], themes, opts); | 
					
						
							| 
									
										
										
										
											2014-05-29 06:18:23 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	return themes; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | function write_theme(Themes, opts)/*:string*/ { | 
					
						
							| 
									
										
										
										
											2017-04-17 02:08:23 +00:00
										 |  |  |  | 	if(opts && opts.themeXLSX) return opts.themeXLSX; | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  |  | 	var o = [XML_HEADER]; | 
					
						
							|  |  |  |  | 	o[o.length] = '<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office Theme">'; | 
					
						
							|  |  |  |  | 	o[o.length] =  '<a:themeElements>'; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	o[o.length] =   '<a:clrScheme name="Office">'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:dk1><a:sysClr val="windowText" lastClr="000000"/></a:dk1>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:lt1><a:sysClr val="window" lastClr="FFFFFF"/></a:lt1>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:dk2><a:srgbClr val="1F497D"/></a:dk2>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:lt2><a:srgbClr val="EEECE1"/></a:lt2>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:accent1><a:srgbClr val="4F81BD"/></a:accent1>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:accent2><a:srgbClr val="C0504D"/></a:accent2>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:accent3><a:srgbClr val="9BBB59"/></a:accent3>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:accent4><a:srgbClr val="8064A2"/></a:accent4>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:accent5><a:srgbClr val="4BACC6"/></a:accent5>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:accent6><a:srgbClr val="F79646"/></a:accent6>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:hlink><a:srgbClr val="0000FF"/></a:hlink>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:folHlink><a:srgbClr val="800080"/></a:folHlink>'; | 
					
						
							|  |  |  |  | 	o[o.length] =   '</a:clrScheme>'; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	o[o.length] =   '<a:fontScheme name="Office">'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:majorFont>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:latin typeface="Cambria"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:ea typeface=""/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:cs typeface=""/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Jpan" typeface="MS Pゴシック"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hang" typeface="맑은 고딕"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hans" typeface="宋体"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hant" typeface="新細明體"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Arab" typeface="Times New Roman"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hebr" typeface="Times New Roman"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Thai" typeface="Tahoma"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Ethi" typeface="Nyala"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Beng" typeface="Vrinda"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Gujr" typeface="Shruti"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Khmr" typeface="MoolBoran"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Knda" typeface="Tunga"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Guru" typeface="Raavi"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Cans" typeface="Euphemia"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Cher" typeface="Plantagenet Cherokee"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Tibt" typeface="Microsoft Himalaya"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Thaa" typeface="MV Boli"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Deva" typeface="Mangal"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Telu" typeface="Gautami"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Taml" typeface="Latha"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Syrc" typeface="Estrangelo Edessa"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Orya" typeface="Kalinga"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Mlym" typeface="Kartika"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Laoo" typeface="DokChampa"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Sinh" typeface="Iskoola Pota"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Mong" typeface="Mongolian Baiti"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Viet" typeface="Times New Roman"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Uigh" typeface="Microsoft Uighur"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Geor" typeface="Sylfaen"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '</a:majorFont>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:minorFont>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:latin typeface="Calibri"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:ea typeface=""/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:cs typeface=""/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Jpan" typeface="MS Pゴシック"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hang" typeface="맑은 고딕"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hans" typeface="宋体"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hant" typeface="新細明體"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Arab" typeface="Arial"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Hebr" typeface="Arial"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Thai" typeface="Tahoma"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Ethi" typeface="Nyala"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Beng" typeface="Vrinda"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Gujr" typeface="Shruti"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Khmr" typeface="DaunPenh"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Knda" typeface="Tunga"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Guru" typeface="Raavi"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Cans" typeface="Euphemia"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Cher" typeface="Plantagenet Cherokee"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Tibt" typeface="Microsoft Himalaya"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Thaa" typeface="MV Boli"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Deva" typeface="Mangal"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Telu" typeface="Gautami"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Taml" typeface="Latha"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Syrc" typeface="Estrangelo Edessa"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Orya" typeface="Kalinga"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Mlym" typeface="Kartika"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Laoo" typeface="DokChampa"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Sinh" typeface="Iskoola Pota"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Mong" typeface="Mongolian Baiti"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Viet" typeface="Arial"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Uigh" typeface="Microsoft Uighur"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:font script="Geor" typeface="Sylfaen"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '</a:minorFont>'; | 
					
						
							|  |  |  |  | 	o[o.length] =   '</a:fontScheme>'; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	o[o.length] =   '<a:fmtScheme name="Office">'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:fillStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:solidFill><a:schemeClr val="phClr"/></a:solidFill>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:gradFill rotWithShape="1">'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="50000"/><a:satMod val="300000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="35000"><a:schemeClr val="phClr"><a:tint val="37000"/><a:satMod val="300000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="100000"><a:schemeClr val="phClr"><a:tint val="15000"/><a:satMod val="350000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:lin ang="16200000" scaled="1"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:gradFill>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:gradFill rotWithShape="1">'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="100000"/><a:shade val="100000"/><a:satMod val="130000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="100000"><a:schemeClr val="phClr"><a:tint val="50000"/><a:shade val="100000"/><a:satMod val="350000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:lin ang="16200000" scaled="0"/>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:gradFill>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '</a:fillStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:lnStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:ln w="9525" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"><a:shade val="95000"/><a:satMod val="105000"/></a:schemeClr></a:solidFill><a:prstDash val="solid"/></a:ln>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:ln w="25400" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:ln w="38100" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '</a:lnStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:effectStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:effectStyle>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:effectLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="38000"/></a:srgbClr></a:outerShdw>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:effectLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:effectStyle>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:effectStyle>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:effectLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:effectLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:effectStyle>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:effectStyle>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:effectLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:effectLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:scene3d><a:camera prst="orthographicFront"><a:rot lat="0" lon="0" rev="0"/></a:camera><a:lightRig rig="threePt" dir="t"><a:rot lat="0" lon="0" rev="1200000"/></a:lightRig></a:scene3d>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:sp3d><a:bevelT w="63500" h="25400"/></a:sp3d>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:effectStyle>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '</a:effectStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:bgFillStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:solidFill><a:schemeClr val="phClr"/></a:solidFill>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:gradFill rotWithShape="1">'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="40000"/><a:satMod val="350000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="40000"><a:schemeClr val="phClr"><a:tint val="45000"/><a:shade val="99000"/><a:satMod val="350000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="20000"/><a:satMod val="255000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:path path="circle"><a:fillToRect l="50000" t="-80000" r="50000" b="180000"/></a:path>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:gradFill>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '<a:gradFill rotWithShape="1">'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="80000"/><a:satMod val="300000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =       '<a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="30000"/><a:satMod val="200000"/></a:schemeClr></a:gs>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '</a:gsLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =      '<a:path path="circle"><a:fillToRect l="50000" t="50000" r="50000" b="50000"/></a:path>'; | 
					
						
							|  |  |  |  | 	o[o.length] =     '</a:gradFill>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '</a:bgFillStyleLst>'; | 
					
						
							|  |  |  |  | 	o[o.length] =   '</a:fmtScheme>'; | 
					
						
							|  |  |  |  | 	o[o.length] =  '</a:themeElements>'; | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  |  | 	o[o.length] =  '<a:objectDefaults>'; | 
					
						
							|  |  |  |  | 	o[o.length] =   '<a:spDef>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:spPr/><a:bodyPr/><a:lstStyle/><a:style><a:lnRef idx="1"><a:schemeClr val="accent1"/></a:lnRef><a:fillRef idx="3"><a:schemeClr val="accent1"/></a:fillRef><a:effectRef idx="2"><a:schemeClr val="accent1"/></a:effectRef><a:fontRef idx="minor"><a:schemeClr val="lt1"/></a:fontRef></a:style>'; | 
					
						
							|  |  |  |  | 	o[o.length] =   '</a:spDef>'; | 
					
						
							|  |  |  |  | 	o[o.length] =   '<a:lnDef>'; | 
					
						
							|  |  |  |  | 	o[o.length] =    '<a:spPr/><a:bodyPr/><a:lstStyle/><a:style><a:lnRef idx="2"><a:schemeClr val="accent1"/></a:lnRef><a:fillRef idx="0"><a:schemeClr val="accent1"/></a:fillRef><a:effectRef idx="1"><a:schemeClr val="accent1"/></a:effectRef><a:fontRef idx="minor"><a:schemeClr val="tx1"/></a:fontRef></a:style>'; | 
					
						
							| 
									
										
										
										
											2017-03-18 23:25:50 +00:00
										 |  |  |  | 	o[o.length] =   '</a:lnDef>'; | 
					
						
							| 
									
										
										
										
											2017-02-10 19:23:01 +00:00
										 |  |  |  | 	o[o.length] =  '</a:objectDefaults>'; | 
					
						
							|  |  |  |  | 	o[o.length] =  '<a:extraClrSchemeLst/>'; | 
					
						
							|  |  |  |  | 	o[o.length] = '</a:theme>'; | 
					
						
							|  |  |  |  | 	return o.join(""); | 
					
						
							|  |  |  |  | } |