trading_zone_1_0.pgf 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  1. %% Creator: Matplotlib, PGF backend
  2. %%
  3. %% To include the figure in your LaTeX document, write
  4. %% \input{<filename>.pgf}
  5. %%
  6. %% Make sure the required packages are loaded in your preamble
  7. %% \usepackage{pgf}
  8. %%
  9. %% Also ensure that all the required font packages are loaded; for instance,
  10. %% the lmodern package is sometimes necessary when using math font.
  11. %% \usepackage{lmodern}
  12. %%
  13. %% Figures using additional raster images can only be included by \input if
  14. %% they are in the same directory as the main LaTeX file. For loading figures
  15. %% from other directories you can use the `import` package
  16. %% \usepackage{import}
  17. %%
  18. %% and then include the figures with
  19. %% \import{<path to file>}{<filename>.pgf}
  20. %%
  21. %% Matplotlib used the following preamble
  22. %% \usepackage{fontspec}
  23. %%
  24. \begingroup%
  25. \makeatletter%
  26. \begin{pgfpicture}%
  27. \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{5.739669in}{4.116555in}}%
  28. \pgfusepath{use as bounding box, clip}%
  29. \begin{pgfscope}%
  30. \pgfsetbuttcap%
  31. \pgfsetmiterjoin%
  32. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  33. \pgfsetfillcolor{currentfill}%
  34. \pgfsetlinewidth{0.000000pt}%
  35. \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
  36. \pgfsetstrokecolor{currentstroke}%
  37. \pgfsetdash{}{0pt}%
  38. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  39. \pgfpathlineto{\pgfqpoint{5.739669in}{0.000000in}}%
  40. \pgfpathlineto{\pgfqpoint{5.739669in}{4.116555in}}%
  41. \pgfpathlineto{\pgfqpoint{0.000000in}{4.116555in}}%
  42. \pgfpathlineto{\pgfqpoint{0.000000in}{0.000000in}}%
  43. \pgfpathclose%
  44. \pgfusepath{fill}%
  45. \end{pgfscope}%
  46. \begin{pgfscope}%
  47. \pgfsetbuttcap%
  48. \pgfsetmiterjoin%
  49. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  50. \pgfsetfillcolor{currentfill}%
  51. \pgfsetlinewidth{0.000000pt}%
  52. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  53. \pgfsetstrokecolor{currentstroke}%
  54. \pgfsetstrokeopacity{0.000000}%
  55. \pgfsetdash{}{0pt}%
  56. \pgfpathmoveto{\pgfqpoint{0.679669in}{0.320555in}}%
  57. \pgfpathlineto{\pgfqpoint{2.934215in}{0.320555in}}%
  58. \pgfpathlineto{\pgfqpoint{2.934215in}{4.016555in}}%
  59. \pgfpathlineto{\pgfqpoint{0.679669in}{4.016555in}}%
  60. \pgfpathlineto{\pgfqpoint{0.679669in}{0.320555in}}%
  61. \pgfpathclose%
  62. \pgfusepath{fill}%
  63. \end{pgfscope}%
  64. \begin{pgfscope}%
  65. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  66. \pgfusepath{clip}%
  67. \pgfsetbuttcap%
  68. \pgfsetroundjoin%
  69. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  70. \pgfsetfillcolor{currentfill}%
  71. \pgfsetlinewidth{1.003750pt}%
  72. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  73. \pgfsetstrokecolor{currentstroke}%
  74. \pgfsetdash{}{0pt}%
  75. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  76. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  77. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  78. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  79. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  80. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  81. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  82. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  83. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  84. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  85. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  86. \pgfpathclose%
  87. \pgfusepath{stroke,fill}%
  88. }%
  89. \begin{pgfscope}%
  90. \pgfsys@transformshift{0.679669in}{2.169822in}%
  91. \pgfsys@useobject{currentmarker}{}%
  92. \end{pgfscope}%
  93. \begin{pgfscope}%
  94. \pgfsys@transformshift{0.804922in}{2.085817in}%
  95. \pgfsys@useobject{currentmarker}{}%
  96. \end{pgfscope}%
  97. \begin{pgfscope}%
  98. \pgfsys@transformshift{0.930174in}{2.154202in}%
  99. \pgfsys@useobject{currentmarker}{}%
  100. \end{pgfscope}%
  101. \begin{pgfscope}%
  102. \pgfsys@transformshift{1.055427in}{2.516711in}%
  103. \pgfsys@useobject{currentmarker}{}%
  104. \end{pgfscope}%
  105. \begin{pgfscope}%
  106. \pgfsys@transformshift{1.180679in}{2.575006in}%
  107. \pgfsys@useobject{currentmarker}{}%
  108. \end{pgfscope}%
  109. \begin{pgfscope}%
  110. \pgfsys@transformshift{1.305932in}{2.538161in}%
  111. \pgfsys@useobject{currentmarker}{}%
  112. \end{pgfscope}%
  113. \begin{pgfscope}%
  114. \pgfsys@transformshift{1.431184in}{2.483029in}%
  115. \pgfsys@useobject{currentmarker}{}%
  116. \end{pgfscope}%
  117. \begin{pgfscope}%
  118. \pgfsys@transformshift{1.556437in}{2.605825in}%
  119. \pgfsys@useobject{currentmarker}{}%
  120. \end{pgfscope}%
  121. \begin{pgfscope}%
  122. \pgfsys@transformshift{1.681689in}{2.766360in}%
  123. \pgfsys@useobject{currentmarker}{}%
  124. \end{pgfscope}%
  125. \begin{pgfscope}%
  126. \pgfsys@transformshift{1.806942in}{2.559656in}%
  127. \pgfsys@useobject{currentmarker}{}%
  128. \end{pgfscope}%
  129. \begin{pgfscope}%
  130. \pgfsys@transformshift{1.932194in}{2.575540in}%
  131. \pgfsys@useobject{currentmarker}{}%
  132. \end{pgfscope}%
  133. \begin{pgfscope}%
  134. \pgfsys@transformshift{2.057447in}{2.608322in}%
  135. \pgfsys@useobject{currentmarker}{}%
  136. \end{pgfscope}%
  137. \begin{pgfscope}%
  138. \pgfsys@transformshift{2.182699in}{2.688857in}%
  139. \pgfsys@useobject{currentmarker}{}%
  140. \end{pgfscope}%
  141. \begin{pgfscope}%
  142. \pgfsys@transformshift{2.307952in}{2.717259in}%
  143. \pgfsys@useobject{currentmarker}{}%
  144. \end{pgfscope}%
  145. \begin{pgfscope}%
  146. \pgfsys@transformshift{2.433205in}{2.982672in}%
  147. \pgfsys@useobject{currentmarker}{}%
  148. \end{pgfscope}%
  149. \begin{pgfscope}%
  150. \pgfsys@transformshift{2.558457in}{2.956590in}%
  151. \pgfsys@useobject{currentmarker}{}%
  152. \end{pgfscope}%
  153. \begin{pgfscope}%
  154. \pgfsys@transformshift{2.683710in}{3.089949in}%
  155. \pgfsys@useobject{currentmarker}{}%
  156. \end{pgfscope}%
  157. \begin{pgfscope}%
  158. \pgfsys@transformshift{2.808962in}{3.039242in}%
  159. \pgfsys@useobject{currentmarker}{}%
  160. \end{pgfscope}%
  161. \begin{pgfscope}%
  162. \pgfsys@transformshift{2.934215in}{3.216225in}%
  163. \pgfsys@useobject{currentmarker}{}%
  164. \end{pgfscope}%
  165. \end{pgfscope}%
  166. \begin{pgfscope}%
  167. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  168. \pgfusepath{clip}%
  169. \pgfsetbuttcap%
  170. \pgfsetroundjoin%
  171. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  172. \pgfsetfillcolor{currentfill}%
  173. \pgfsetlinewidth{1.003750pt}%
  174. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  175. \pgfsetstrokecolor{currentstroke}%
  176. \pgfsetdash{}{0pt}%
  177. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  178. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  179. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  180. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  181. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  182. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  183. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  184. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  185. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  186. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  187. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  188. \pgfpathclose%
  189. \pgfusepath{stroke,fill}%
  190. }%
  191. \begin{pgfscope}%
  192. \pgfsys@transformshift{0.679669in}{3.320278in}%
  193. \pgfsys@useobject{currentmarker}{}%
  194. \end{pgfscope}%
  195. \begin{pgfscope}%
  196. \pgfsys@transformshift{0.804922in}{3.192435in}%
  197. \pgfsys@useobject{currentmarker}{}%
  198. \end{pgfscope}%
  199. \begin{pgfscope}%
  200. \pgfsys@transformshift{0.930174in}{3.028623in}%
  201. \pgfsys@useobject{currentmarker}{}%
  202. \end{pgfscope}%
  203. \begin{pgfscope}%
  204. \pgfsys@transformshift{1.055427in}{3.079526in}%
  205. \pgfsys@useobject{currentmarker}{}%
  206. \end{pgfscope}%
  207. \begin{pgfscope}%
  208. \pgfsys@transformshift{1.180679in}{2.990379in}%
  209. \pgfsys@useobject{currentmarker}{}%
  210. \end{pgfscope}%
  211. \begin{pgfscope}%
  212. \pgfsys@transformshift{1.305932in}{2.910302in}%
  213. \pgfsys@useobject{currentmarker}{}%
  214. \end{pgfscope}%
  215. \begin{pgfscope}%
  216. \pgfsys@transformshift{1.431184in}{2.832750in}%
  217. \pgfsys@useobject{currentmarker}{}%
  218. \end{pgfscope}%
  219. \begin{pgfscope}%
  220. \pgfsys@transformshift{1.556437in}{2.699537in}%
  221. \pgfsys@useobject{currentmarker}{}%
  222. \end{pgfscope}%
  223. \begin{pgfscope}%
  224. \pgfsys@transformshift{1.681689in}{2.663689in}%
  225. \pgfsys@useobject{currentmarker}{}%
  226. \end{pgfscope}%
  227. \begin{pgfscope}%
  228. \pgfsys@transformshift{1.806942in}{2.628530in}%
  229. \pgfsys@useobject{currentmarker}{}%
  230. \end{pgfscope}%
  231. \begin{pgfscope}%
  232. \pgfsys@transformshift{1.932194in}{2.633721in}%
  233. \pgfsys@useobject{currentmarker}{}%
  234. \end{pgfscope}%
  235. \begin{pgfscope}%
  236. \pgfsys@transformshift{2.057447in}{2.500182in}%
  237. \pgfsys@useobject{currentmarker}{}%
  238. \end{pgfscope}%
  239. \begin{pgfscope}%
  240. \pgfsys@transformshift{2.182699in}{2.446898in}%
  241. \pgfsys@useobject{currentmarker}{}%
  242. \end{pgfscope}%
  243. \begin{pgfscope}%
  244. \pgfsys@transformshift{2.307952in}{2.432387in}%
  245. \pgfsys@useobject{currentmarker}{}%
  246. \end{pgfscope}%
  247. \begin{pgfscope}%
  248. \pgfsys@transformshift{2.433205in}{2.397860in}%
  249. \pgfsys@useobject{currentmarker}{}%
  250. \end{pgfscope}%
  251. \begin{pgfscope}%
  252. \pgfsys@transformshift{2.558457in}{2.249239in}%
  253. \pgfsys@useobject{currentmarker}{}%
  254. \end{pgfscope}%
  255. \begin{pgfscope}%
  256. \pgfsys@transformshift{2.683710in}{2.351920in}%
  257. \pgfsys@useobject{currentmarker}{}%
  258. \end{pgfscope}%
  259. \begin{pgfscope}%
  260. \pgfsys@transformshift{2.808962in}{2.124132in}%
  261. \pgfsys@useobject{currentmarker}{}%
  262. \end{pgfscope}%
  263. \begin{pgfscope}%
  264. \pgfsys@transformshift{2.934215in}{2.197381in}%
  265. \pgfsys@useobject{currentmarker}{}%
  266. \end{pgfscope}%
  267. \end{pgfscope}%
  268. \begin{pgfscope}%
  269. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  270. \pgfusepath{clip}%
  271. \pgfsetbuttcap%
  272. \pgfsetroundjoin%
  273. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  274. \pgfsetfillcolor{currentfill}%
  275. \pgfsetlinewidth{1.003750pt}%
  276. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  277. \pgfsetstrokecolor{currentstroke}%
  278. \pgfsetdash{}{0pt}%
  279. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  280. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  281. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  282. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  283. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  284. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  285. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  286. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  287. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  288. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  289. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  290. \pgfpathclose%
  291. \pgfusepath{stroke,fill}%
  292. }%
  293. \begin{pgfscope}%
  294. \pgfsys@transformshift{0.679669in}{3.356072in}%
  295. \pgfsys@useobject{currentmarker}{}%
  296. \end{pgfscope}%
  297. \begin{pgfscope}%
  298. \pgfsys@transformshift{0.804922in}{3.162413in}%
  299. \pgfsys@useobject{currentmarker}{}%
  300. \end{pgfscope}%
  301. \begin{pgfscope}%
  302. \pgfsys@transformshift{0.930174in}{3.051749in}%
  303. \pgfsys@useobject{currentmarker}{}%
  304. \end{pgfscope}%
  305. \begin{pgfscope}%
  306. \pgfsys@transformshift{1.055427in}{3.057111in}%
  307. \pgfsys@useobject{currentmarker}{}%
  308. \end{pgfscope}%
  309. \begin{pgfscope}%
  310. \pgfsys@transformshift{1.180679in}{3.019245in}%
  311. \pgfsys@useobject{currentmarker}{}%
  312. \end{pgfscope}%
  313. \begin{pgfscope}%
  314. \pgfsys@transformshift{1.305932in}{2.945824in}%
  315. \pgfsys@useobject{currentmarker}{}%
  316. \end{pgfscope}%
  317. \begin{pgfscope}%
  318. \pgfsys@transformshift{1.431184in}{2.853153in}%
  319. \pgfsys@useobject{currentmarker}{}%
  320. \end{pgfscope}%
  321. \begin{pgfscope}%
  322. \pgfsys@transformshift{1.556437in}{2.739467in}%
  323. \pgfsys@useobject{currentmarker}{}%
  324. \end{pgfscope}%
  325. \begin{pgfscope}%
  326. \pgfsys@transformshift{1.681689in}{2.688324in}%
  327. \pgfsys@useobject{currentmarker}{}%
  328. \end{pgfscope}%
  329. \begin{pgfscope}%
  330. \pgfsys@transformshift{1.806942in}{2.645262in}%
  331. \pgfsys@useobject{currentmarker}{}%
  332. \end{pgfscope}%
  333. \begin{pgfscope}%
  334. \pgfsys@transformshift{1.932194in}{2.613828in}%
  335. \pgfsys@useobject{currentmarker}{}%
  336. \end{pgfscope}%
  337. \begin{pgfscope}%
  338. \pgfsys@transformshift{2.057447in}{2.542143in}%
  339. \pgfsys@useobject{currentmarker}{}%
  340. \end{pgfscope}%
  341. \begin{pgfscope}%
  342. \pgfsys@transformshift{2.182699in}{2.498476in}%
  343. \pgfsys@useobject{currentmarker}{}%
  344. \end{pgfscope}%
  345. \begin{pgfscope}%
  346. \pgfsys@transformshift{2.307952in}{2.495653in}%
  347. \pgfsys@useobject{currentmarker}{}%
  348. \end{pgfscope}%
  349. \begin{pgfscope}%
  350. \pgfsys@transformshift{2.433205in}{2.468146in}%
  351. \pgfsys@useobject{currentmarker}{}%
  352. \end{pgfscope}%
  353. \begin{pgfscope}%
  354. \pgfsys@transformshift{2.558457in}{2.293876in}%
  355. \pgfsys@useobject{currentmarker}{}%
  356. \end{pgfscope}%
  357. \begin{pgfscope}%
  358. \pgfsys@transformshift{2.683710in}{2.410515in}%
  359. \pgfsys@useobject{currentmarker}{}%
  360. \end{pgfscope}%
  361. \begin{pgfscope}%
  362. \pgfsys@transformshift{2.808962in}{2.207813in}%
  363. \pgfsys@useobject{currentmarker}{}%
  364. \end{pgfscope}%
  365. \begin{pgfscope}%
  366. \pgfsys@transformshift{2.934215in}{2.246456in}%
  367. \pgfsys@useobject{currentmarker}{}%
  368. \end{pgfscope}%
  369. \end{pgfscope}%
  370. \begin{pgfscope}%
  371. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  372. \pgfusepath{clip}%
  373. \pgfsetbuttcap%
  374. \pgfsetroundjoin%
  375. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  376. \pgfsetfillcolor{currentfill}%
  377. \pgfsetlinewidth{1.003750pt}%
  378. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  379. \pgfsetstrokecolor{currentstroke}%
  380. \pgfsetdash{}{0pt}%
  381. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  382. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  383. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  384. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  385. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  386. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  387. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  388. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  389. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  390. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  391. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  392. \pgfpathclose%
  393. \pgfusepath{stroke,fill}%
  394. }%
  395. \begin{pgfscope}%
  396. \pgfsys@transformshift{0.679669in}{3.771742in}%
  397. \pgfsys@useobject{currentmarker}{}%
  398. \end{pgfscope}%
  399. \begin{pgfscope}%
  400. \pgfsys@transformshift{0.804922in}{3.681289in}%
  401. \pgfsys@useobject{currentmarker}{}%
  402. \end{pgfscope}%
  403. \begin{pgfscope}%
  404. \pgfsys@transformshift{0.930174in}{3.590104in}%
  405. \pgfsys@useobject{currentmarker}{}%
  406. \end{pgfscope}%
  407. \begin{pgfscope}%
  408. \pgfsys@transformshift{1.055427in}{3.602757in}%
  409. \pgfsys@useobject{currentmarker}{}%
  410. \end{pgfscope}%
  411. \begin{pgfscope}%
  412. \pgfsys@transformshift{1.180679in}{3.585602in}%
  413. \pgfsys@useobject{currentmarker}{}%
  414. \end{pgfscope}%
  415. \begin{pgfscope}%
  416. \pgfsys@transformshift{1.305932in}{3.605398in}%
  417. \pgfsys@useobject{currentmarker}{}%
  418. \end{pgfscope}%
  419. \begin{pgfscope}%
  420. \pgfsys@transformshift{1.431184in}{3.572617in}%
  421. \pgfsys@useobject{currentmarker}{}%
  422. \end{pgfscope}%
  423. \begin{pgfscope}%
  424. \pgfsys@transformshift{1.556437in}{3.482892in}%
  425. \pgfsys@useobject{currentmarker}{}%
  426. \end{pgfscope}%
  427. \begin{pgfscope}%
  428. \pgfsys@transformshift{1.681689in}{3.480572in}%
  429. \pgfsys@useobject{currentmarker}{}%
  430. \end{pgfscope}%
  431. \begin{pgfscope}%
  432. \pgfsys@transformshift{1.806942in}{3.431254in}%
  433. \pgfsys@useobject{currentmarker}{}%
  434. \end{pgfscope}%
  435. \begin{pgfscope}%
  436. \pgfsys@transformshift{1.932194in}{3.418762in}%
  437. \pgfsys@useobject{currentmarker}{}%
  438. \end{pgfscope}%
  439. \begin{pgfscope}%
  440. \pgfsys@transformshift{2.057447in}{3.396410in}%
  441. \pgfsys@useobject{currentmarker}{}%
  442. \end{pgfscope}%
  443. \begin{pgfscope}%
  444. \pgfsys@transformshift{2.182699in}{3.478341in}%
  445. \pgfsys@useobject{currentmarker}{}%
  446. \end{pgfscope}%
  447. \begin{pgfscope}%
  448. \pgfsys@transformshift{2.307952in}{3.457484in}%
  449. \pgfsys@useobject{currentmarker}{}%
  450. \end{pgfscope}%
  451. \begin{pgfscope}%
  452. \pgfsys@transformshift{2.433205in}{3.476814in}%
  453. \pgfsys@useobject{currentmarker}{}%
  454. \end{pgfscope}%
  455. \begin{pgfscope}%
  456. \pgfsys@transformshift{2.558457in}{3.439522in}%
  457. \pgfsys@useobject{currentmarker}{}%
  458. \end{pgfscope}%
  459. \begin{pgfscope}%
  460. \pgfsys@transformshift{2.683710in}{3.473260in}%
  461. \pgfsys@useobject{currentmarker}{}%
  462. \end{pgfscope}%
  463. \begin{pgfscope}%
  464. \pgfsys@transformshift{2.808962in}{3.469260in}%
  465. \pgfsys@useobject{currentmarker}{}%
  466. \end{pgfscope}%
  467. \begin{pgfscope}%
  468. \pgfsys@transformshift{2.934215in}{3.428243in}%
  469. \pgfsys@useobject{currentmarker}{}%
  470. \end{pgfscope}%
  471. \end{pgfscope}%
  472. \begin{pgfscope}%
  473. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  474. \pgfusepath{clip}%
  475. \pgfsetbuttcap%
  476. \pgfsetroundjoin%
  477. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  478. \pgfsetfillcolor{currentfill}%
  479. \pgfsetlinewidth{1.003750pt}%
  480. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  481. \pgfsetstrokecolor{currentstroke}%
  482. \pgfsetdash{}{0pt}%
  483. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  484. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  485. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  486. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  487. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  488. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  489. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  490. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  491. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  492. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  493. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  494. \pgfpathclose%
  495. \pgfusepath{stroke,fill}%
  496. }%
  497. \begin{pgfscope}%
  498. \pgfsys@transformshift{0.679669in}{3.848555in}%
  499. \pgfsys@useobject{currentmarker}{}%
  500. \end{pgfscope}%
  501. \begin{pgfscope}%
  502. \pgfsys@transformshift{0.804922in}{3.717068in}%
  503. \pgfsys@useobject{currentmarker}{}%
  504. \end{pgfscope}%
  505. \begin{pgfscope}%
  506. \pgfsys@transformshift{0.930174in}{3.597840in}%
  507. \pgfsys@useobject{currentmarker}{}%
  508. \end{pgfscope}%
  509. \begin{pgfscope}%
  510. \pgfsys@transformshift{1.055427in}{3.572239in}%
  511. \pgfsys@useobject{currentmarker}{}%
  512. \end{pgfscope}%
  513. \begin{pgfscope}%
  514. \pgfsys@transformshift{1.180679in}{3.578502in}%
  515. \pgfsys@useobject{currentmarker}{}%
  516. \end{pgfscope}%
  517. \begin{pgfscope}%
  518. \pgfsys@transformshift{1.305932in}{3.446496in}%
  519. \pgfsys@useobject{currentmarker}{}%
  520. \end{pgfscope}%
  521. \begin{pgfscope}%
  522. \pgfsys@transformshift{1.431184in}{3.421932in}%
  523. \pgfsys@useobject{currentmarker}{}%
  524. \end{pgfscope}%
  525. \begin{pgfscope}%
  526. \pgfsys@transformshift{1.556437in}{3.240933in}%
  527. \pgfsys@useobject{currentmarker}{}%
  528. \end{pgfscope}%
  529. \begin{pgfscope}%
  530. \pgfsys@transformshift{1.681689in}{3.226273in}%
  531. \pgfsys@useobject{currentmarker}{}%
  532. \end{pgfscope}%
  533. \begin{pgfscope}%
  534. \pgfsys@transformshift{1.806942in}{3.170207in}%
  535. \pgfsys@useobject{currentmarker}{}%
  536. \end{pgfscope}%
  537. \begin{pgfscope}%
  538. \pgfsys@transformshift{1.932194in}{3.128054in}%
  539. \pgfsys@useobject{currentmarker}{}%
  540. \end{pgfscope}%
  541. \begin{pgfscope}%
  542. \pgfsys@transformshift{2.057447in}{3.080026in}%
  543. \pgfsys@useobject{currentmarker}{}%
  544. \end{pgfscope}%
  545. \begin{pgfscope}%
  546. \pgfsys@transformshift{2.182699in}{2.943570in}%
  547. \pgfsys@useobject{currentmarker}{}%
  548. \end{pgfscope}%
  549. \begin{pgfscope}%
  550. \pgfsys@transformshift{2.307952in}{2.941919in}%
  551. \pgfsys@useobject{currentmarker}{}%
  552. \end{pgfscope}%
  553. \begin{pgfscope}%
  554. \pgfsys@transformshift{2.433205in}{2.819291in}%
  555. \pgfsys@useobject{currentmarker}{}%
  556. \end{pgfscope}%
  557. \begin{pgfscope}%
  558. \pgfsys@transformshift{2.558457in}{2.736366in}%
  559. \pgfsys@useobject{currentmarker}{}%
  560. \end{pgfscope}%
  561. \begin{pgfscope}%
  562. \pgfsys@transformshift{2.683710in}{2.847303in}%
  563. \pgfsys@useobject{currentmarker}{}%
  564. \end{pgfscope}%
  565. \begin{pgfscope}%
  566. \pgfsys@transformshift{2.808962in}{2.672204in}%
  567. \pgfsys@useobject{currentmarker}{}%
  568. \end{pgfscope}%
  569. \begin{pgfscope}%
  570. \pgfsys@transformshift{2.934215in}{2.717438in}%
  571. \pgfsys@useobject{currentmarker}{}%
  572. \end{pgfscope}%
  573. \end{pgfscope}%
  574. \begin{pgfscope}%
  575. \pgfsetbuttcap%
  576. \pgfsetroundjoin%
  577. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  578. \pgfsetfillcolor{currentfill}%
  579. \pgfsetlinewidth{0.803000pt}%
  580. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  581. \pgfsetstrokecolor{currentstroke}%
  582. \pgfsetdash{}{0pt}%
  583. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  584. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  585. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  586. \pgfusepath{stroke,fill}%
  587. }%
  588. \begin{pgfscope}%
  589. \pgfsys@transformshift{1.180679in}{0.320555in}%
  590. \pgfsys@useobject{currentmarker}{}%
  591. \end{pgfscope}%
  592. \end{pgfscope}%
  593. \begin{pgfscope}%
  594. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  595. \pgfsetstrokecolor{textcolor}%
  596. \pgfsetfillcolor{textcolor}%
  597. \pgftext[x=1.180679in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2005}\)}%
  598. \end{pgfscope}%
  599. \begin{pgfscope}%
  600. \pgfsetbuttcap%
  601. \pgfsetroundjoin%
  602. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  603. \pgfsetfillcolor{currentfill}%
  604. \pgfsetlinewidth{0.803000pt}%
  605. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  606. \pgfsetstrokecolor{currentstroke}%
  607. \pgfsetdash{}{0pt}%
  608. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  609. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  610. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  611. \pgfusepath{stroke,fill}%
  612. }%
  613. \begin{pgfscope}%
  614. \pgfsys@transformshift{1.806942in}{0.320555in}%
  615. \pgfsys@useobject{currentmarker}{}%
  616. \end{pgfscope}%
  617. \end{pgfscope}%
  618. \begin{pgfscope}%
  619. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  620. \pgfsetstrokecolor{textcolor}%
  621. \pgfsetfillcolor{textcolor}%
  622. \pgftext[x=1.806942in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2010}\)}%
  623. \end{pgfscope}%
  624. \begin{pgfscope}%
  625. \pgfsetbuttcap%
  626. \pgfsetroundjoin%
  627. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  628. \pgfsetfillcolor{currentfill}%
  629. \pgfsetlinewidth{0.803000pt}%
  630. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  631. \pgfsetstrokecolor{currentstroke}%
  632. \pgfsetdash{}{0pt}%
  633. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  634. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  635. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  636. \pgfusepath{stroke,fill}%
  637. }%
  638. \begin{pgfscope}%
  639. \pgfsys@transformshift{2.433205in}{0.320555in}%
  640. \pgfsys@useobject{currentmarker}{}%
  641. \end{pgfscope}%
  642. \end{pgfscope}%
  643. \begin{pgfscope}%
  644. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  645. \pgfsetstrokecolor{textcolor}%
  646. \pgfsetfillcolor{textcolor}%
  647. \pgftext[x=2.433205in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2015}\)}%
  648. \end{pgfscope}%
  649. \begin{pgfscope}%
  650. \pgfsetbuttcap%
  651. \pgfsetroundjoin%
  652. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  653. \pgfsetfillcolor{currentfill}%
  654. \pgfsetlinewidth{0.803000pt}%
  655. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  656. \pgfsetstrokecolor{currentstroke}%
  657. \pgfsetdash{}{0pt}%
  658. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  659. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  660. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  661. \pgfusepath{stroke,fill}%
  662. }%
  663. \begin{pgfscope}%
  664. \pgfsys@transformshift{0.679669in}{0.465023in}%
  665. \pgfsys@useobject{currentmarker}{}%
  666. \end{pgfscope}%
  667. \end{pgfscope}%
  668. \begin{pgfscope}%
  669. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  670. \pgfsetstrokecolor{textcolor}%
  671. \pgfsetfillcolor{textcolor}%
  672. \pgftext[x=0.294444in, y=0.416829in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{-3}}\)}%
  673. \end{pgfscope}%
  674. \begin{pgfscope}%
  675. \pgfsetbuttcap%
  676. \pgfsetroundjoin%
  677. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  678. \pgfsetfillcolor{currentfill}%
  679. \pgfsetlinewidth{0.803000pt}%
  680. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  681. \pgfsetstrokecolor{currentstroke}%
  682. \pgfsetdash{}{0pt}%
  683. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  684. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  685. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  686. \pgfusepath{stroke,fill}%
  687. }%
  688. \begin{pgfscope}%
  689. \pgfsys@transformshift{0.679669in}{1.839074in}%
  690. \pgfsys@useobject{currentmarker}{}%
  691. \end{pgfscope}%
  692. \end{pgfscope}%
  693. \begin{pgfscope}%
  694. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  695. \pgfsetstrokecolor{textcolor}%
  696. \pgfsetfillcolor{textcolor}%
  697. \pgftext[x=0.294444in, y=1.790880in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{-2}}\)}%
  698. \end{pgfscope}%
  699. \begin{pgfscope}%
  700. \pgfsetbuttcap%
  701. \pgfsetroundjoin%
  702. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  703. \pgfsetfillcolor{currentfill}%
  704. \pgfsetlinewidth{0.803000pt}%
  705. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  706. \pgfsetstrokecolor{currentstroke}%
  707. \pgfsetdash{}{0pt}%
  708. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  709. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  710. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  711. \pgfusepath{stroke,fill}%
  712. }%
  713. \begin{pgfscope}%
  714. \pgfsys@transformshift{0.679669in}{3.213125in}%
  715. \pgfsys@useobject{currentmarker}{}%
  716. \end{pgfscope}%
  717. \end{pgfscope}%
  718. \begin{pgfscope}%
  719. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  720. \pgfsetstrokecolor{textcolor}%
  721. \pgfsetfillcolor{textcolor}%
  722. \pgftext[x=0.294444in, y=3.164931in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{-1}}\)}%
  723. \end{pgfscope}%
  724. \begin{pgfscope}%
  725. \pgfsetbuttcap%
  726. \pgfsetroundjoin%
  727. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  728. \pgfsetfillcolor{currentfill}%
  729. \pgfsetlinewidth{0.602250pt}%
  730. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  731. \pgfsetstrokecolor{currentstroke}%
  732. \pgfsetdash{}{0pt}%
  733. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  734. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  735. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  736. \pgfusepath{stroke,fill}%
  737. }%
  738. \begin{pgfscope}%
  739. \pgfsys@transformshift{0.679669in}{0.331864in}%
  740. \pgfsys@useobject{currentmarker}{}%
  741. \end{pgfscope}%
  742. \end{pgfscope}%
  743. \begin{pgfscope}%
  744. \pgfsetbuttcap%
  745. \pgfsetroundjoin%
  746. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  747. \pgfsetfillcolor{currentfill}%
  748. \pgfsetlinewidth{0.602250pt}%
  749. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  750. \pgfsetstrokecolor{currentstroke}%
  751. \pgfsetdash{}{0pt}%
  752. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  753. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  754. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  755. \pgfusepath{stroke,fill}%
  756. }%
  757. \begin{pgfscope}%
  758. \pgfsys@transformshift{0.679669in}{0.402150in}%
  759. \pgfsys@useobject{currentmarker}{}%
  760. \end{pgfscope}%
  761. \end{pgfscope}%
  762. \begin{pgfscope}%
  763. \pgfsetbuttcap%
  764. \pgfsetroundjoin%
  765. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  766. \pgfsetfillcolor{currentfill}%
  767. \pgfsetlinewidth{0.602250pt}%
  768. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  769. \pgfsetstrokecolor{currentstroke}%
  770. \pgfsetdash{}{0pt}%
  771. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  772. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  773. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  774. \pgfusepath{stroke,fill}%
  775. }%
  776. \begin{pgfscope}%
  777. \pgfsys@transformshift{0.679669in}{0.878654in}%
  778. \pgfsys@useobject{currentmarker}{}%
  779. \end{pgfscope}%
  780. \end{pgfscope}%
  781. \begin{pgfscope}%
  782. \pgfsetbuttcap%
  783. \pgfsetroundjoin%
  784. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  785. \pgfsetfillcolor{currentfill}%
  786. \pgfsetlinewidth{0.602250pt}%
  787. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  788. \pgfsetstrokecolor{currentstroke}%
  789. \pgfsetdash{}{0pt}%
  790. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  791. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  792. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  793. \pgfusepath{stroke,fill}%
  794. }%
  795. \begin{pgfscope}%
  796. \pgfsys@transformshift{0.679669in}{1.120612in}%
  797. \pgfsys@useobject{currentmarker}{}%
  798. \end{pgfscope}%
  799. \end{pgfscope}%
  800. \begin{pgfscope}%
  801. \pgfsetbuttcap%
  802. \pgfsetroundjoin%
  803. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  804. \pgfsetfillcolor{currentfill}%
  805. \pgfsetlinewidth{0.602250pt}%
  806. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  807. \pgfsetstrokecolor{currentstroke}%
  808. \pgfsetdash{}{0pt}%
  809. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  810. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  811. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  812. \pgfusepath{stroke,fill}%
  813. }%
  814. \begin{pgfscope}%
  815. \pgfsys@transformshift{0.679669in}{1.292285in}%
  816. \pgfsys@useobject{currentmarker}{}%
  817. \end{pgfscope}%
  818. \end{pgfscope}%
  819. \begin{pgfscope}%
  820. \pgfsetbuttcap%
  821. \pgfsetroundjoin%
  822. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  823. \pgfsetfillcolor{currentfill}%
  824. \pgfsetlinewidth{0.602250pt}%
  825. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  826. \pgfsetstrokecolor{currentstroke}%
  827. \pgfsetdash{}{0pt}%
  828. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  829. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  830. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  831. \pgfusepath{stroke,fill}%
  832. }%
  833. \begin{pgfscope}%
  834. \pgfsys@transformshift{0.679669in}{1.425444in}%
  835. \pgfsys@useobject{currentmarker}{}%
  836. \end{pgfscope}%
  837. \end{pgfscope}%
  838. \begin{pgfscope}%
  839. \pgfsetbuttcap%
  840. \pgfsetroundjoin%
  841. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  842. \pgfsetfillcolor{currentfill}%
  843. \pgfsetlinewidth{0.602250pt}%
  844. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  845. \pgfsetstrokecolor{currentstroke}%
  846. \pgfsetdash{}{0pt}%
  847. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  848. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  849. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  850. \pgfusepath{stroke,fill}%
  851. }%
  852. \begin{pgfscope}%
  853. \pgfsys@transformshift{0.679669in}{1.534243in}%
  854. \pgfsys@useobject{currentmarker}{}%
  855. \end{pgfscope}%
  856. \end{pgfscope}%
  857. \begin{pgfscope}%
  858. \pgfsetbuttcap%
  859. \pgfsetroundjoin%
  860. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  861. \pgfsetfillcolor{currentfill}%
  862. \pgfsetlinewidth{0.602250pt}%
  863. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  864. \pgfsetstrokecolor{currentstroke}%
  865. \pgfsetdash{}{0pt}%
  866. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  867. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  868. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  869. \pgfusepath{stroke,fill}%
  870. }%
  871. \begin{pgfscope}%
  872. \pgfsys@transformshift{0.679669in}{1.626231in}%
  873. \pgfsys@useobject{currentmarker}{}%
  874. \end{pgfscope}%
  875. \end{pgfscope}%
  876. \begin{pgfscope}%
  877. \pgfsetbuttcap%
  878. \pgfsetroundjoin%
  879. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  880. \pgfsetfillcolor{currentfill}%
  881. \pgfsetlinewidth{0.602250pt}%
  882. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  883. \pgfsetstrokecolor{currentstroke}%
  884. \pgfsetdash{}{0pt}%
  885. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  886. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  887. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  888. \pgfusepath{stroke,fill}%
  889. }%
  890. \begin{pgfscope}%
  891. \pgfsys@transformshift{0.679669in}{1.705915in}%
  892. \pgfsys@useobject{currentmarker}{}%
  893. \end{pgfscope}%
  894. \end{pgfscope}%
  895. \begin{pgfscope}%
  896. \pgfsetbuttcap%
  897. \pgfsetroundjoin%
  898. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  899. \pgfsetfillcolor{currentfill}%
  900. \pgfsetlinewidth{0.602250pt}%
  901. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  902. \pgfsetstrokecolor{currentstroke}%
  903. \pgfsetdash{}{0pt}%
  904. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  905. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  906. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  907. \pgfusepath{stroke,fill}%
  908. }%
  909. \begin{pgfscope}%
  910. \pgfsys@transformshift{0.679669in}{1.776201in}%
  911. \pgfsys@useobject{currentmarker}{}%
  912. \end{pgfscope}%
  913. \end{pgfscope}%
  914. \begin{pgfscope}%
  915. \pgfsetbuttcap%
  916. \pgfsetroundjoin%
  917. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  918. \pgfsetfillcolor{currentfill}%
  919. \pgfsetlinewidth{0.602250pt}%
  920. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  921. \pgfsetstrokecolor{currentstroke}%
  922. \pgfsetdash{}{0pt}%
  923. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  924. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  925. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  926. \pgfusepath{stroke,fill}%
  927. }%
  928. \begin{pgfscope}%
  929. \pgfsys@transformshift{0.679669in}{2.252705in}%
  930. \pgfsys@useobject{currentmarker}{}%
  931. \end{pgfscope}%
  932. \end{pgfscope}%
  933. \begin{pgfscope}%
  934. \pgfsetbuttcap%
  935. \pgfsetroundjoin%
  936. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  937. \pgfsetfillcolor{currentfill}%
  938. \pgfsetlinewidth{0.602250pt}%
  939. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  940. \pgfsetstrokecolor{currentstroke}%
  941. \pgfsetdash{}{0pt}%
  942. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  943. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  944. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  945. \pgfusepath{stroke,fill}%
  946. }%
  947. \begin{pgfscope}%
  948. \pgfsys@transformshift{0.679669in}{2.494663in}%
  949. \pgfsys@useobject{currentmarker}{}%
  950. \end{pgfscope}%
  951. \end{pgfscope}%
  952. \begin{pgfscope}%
  953. \pgfsetbuttcap%
  954. \pgfsetroundjoin%
  955. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  956. \pgfsetfillcolor{currentfill}%
  957. \pgfsetlinewidth{0.602250pt}%
  958. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  959. \pgfsetstrokecolor{currentstroke}%
  960. \pgfsetdash{}{0pt}%
  961. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  962. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  963. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  964. \pgfusepath{stroke,fill}%
  965. }%
  966. \begin{pgfscope}%
  967. \pgfsys@transformshift{0.679669in}{2.666336in}%
  968. \pgfsys@useobject{currentmarker}{}%
  969. \end{pgfscope}%
  970. \end{pgfscope}%
  971. \begin{pgfscope}%
  972. \pgfsetbuttcap%
  973. \pgfsetroundjoin%
  974. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  975. \pgfsetfillcolor{currentfill}%
  976. \pgfsetlinewidth{0.602250pt}%
  977. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  978. \pgfsetstrokecolor{currentstroke}%
  979. \pgfsetdash{}{0pt}%
  980. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  981. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  982. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  983. \pgfusepath{stroke,fill}%
  984. }%
  985. \begin{pgfscope}%
  986. \pgfsys@transformshift{0.679669in}{2.799495in}%
  987. \pgfsys@useobject{currentmarker}{}%
  988. \end{pgfscope}%
  989. \end{pgfscope}%
  990. \begin{pgfscope}%
  991. \pgfsetbuttcap%
  992. \pgfsetroundjoin%
  993. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  994. \pgfsetfillcolor{currentfill}%
  995. \pgfsetlinewidth{0.602250pt}%
  996. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  997. \pgfsetstrokecolor{currentstroke}%
  998. \pgfsetdash{}{0pt}%
  999. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1000. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1001. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1002. \pgfusepath{stroke,fill}%
  1003. }%
  1004. \begin{pgfscope}%
  1005. \pgfsys@transformshift{0.679669in}{2.908294in}%
  1006. \pgfsys@useobject{currentmarker}{}%
  1007. \end{pgfscope}%
  1008. \end{pgfscope}%
  1009. \begin{pgfscope}%
  1010. \pgfsetbuttcap%
  1011. \pgfsetroundjoin%
  1012. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1013. \pgfsetfillcolor{currentfill}%
  1014. \pgfsetlinewidth{0.602250pt}%
  1015. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1016. \pgfsetstrokecolor{currentstroke}%
  1017. \pgfsetdash{}{0pt}%
  1018. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1019. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1020. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1021. \pgfusepath{stroke,fill}%
  1022. }%
  1023. \begin{pgfscope}%
  1024. \pgfsys@transformshift{0.679669in}{3.000282in}%
  1025. \pgfsys@useobject{currentmarker}{}%
  1026. \end{pgfscope}%
  1027. \end{pgfscope}%
  1028. \begin{pgfscope}%
  1029. \pgfsetbuttcap%
  1030. \pgfsetroundjoin%
  1031. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1032. \pgfsetfillcolor{currentfill}%
  1033. \pgfsetlinewidth{0.602250pt}%
  1034. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1035. \pgfsetstrokecolor{currentstroke}%
  1036. \pgfsetdash{}{0pt}%
  1037. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1038. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1039. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1040. \pgfusepath{stroke,fill}%
  1041. }%
  1042. \begin{pgfscope}%
  1043. \pgfsys@transformshift{0.679669in}{3.079966in}%
  1044. \pgfsys@useobject{currentmarker}{}%
  1045. \end{pgfscope}%
  1046. \end{pgfscope}%
  1047. \begin{pgfscope}%
  1048. \pgfsetbuttcap%
  1049. \pgfsetroundjoin%
  1050. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1051. \pgfsetfillcolor{currentfill}%
  1052. \pgfsetlinewidth{0.602250pt}%
  1053. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1054. \pgfsetstrokecolor{currentstroke}%
  1055. \pgfsetdash{}{0pt}%
  1056. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1057. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1058. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1059. \pgfusepath{stroke,fill}%
  1060. }%
  1061. \begin{pgfscope}%
  1062. \pgfsys@transformshift{0.679669in}{3.150252in}%
  1063. \pgfsys@useobject{currentmarker}{}%
  1064. \end{pgfscope}%
  1065. \end{pgfscope}%
  1066. \begin{pgfscope}%
  1067. \pgfsetbuttcap%
  1068. \pgfsetroundjoin%
  1069. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1070. \pgfsetfillcolor{currentfill}%
  1071. \pgfsetlinewidth{0.602250pt}%
  1072. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1073. \pgfsetstrokecolor{currentstroke}%
  1074. \pgfsetdash{}{0pt}%
  1075. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1076. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1077. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1078. \pgfusepath{stroke,fill}%
  1079. }%
  1080. \begin{pgfscope}%
  1081. \pgfsys@transformshift{0.679669in}{3.626756in}%
  1082. \pgfsys@useobject{currentmarker}{}%
  1083. \end{pgfscope}%
  1084. \end{pgfscope}%
  1085. \begin{pgfscope}%
  1086. \pgfsetbuttcap%
  1087. \pgfsetroundjoin%
  1088. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1089. \pgfsetfillcolor{currentfill}%
  1090. \pgfsetlinewidth{0.602250pt}%
  1091. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1092. \pgfsetstrokecolor{currentstroke}%
  1093. \pgfsetdash{}{0pt}%
  1094. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1095. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1096. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1097. \pgfusepath{stroke,fill}%
  1098. }%
  1099. \begin{pgfscope}%
  1100. \pgfsys@transformshift{0.679669in}{3.868714in}%
  1101. \pgfsys@useobject{currentmarker}{}%
  1102. \end{pgfscope}%
  1103. \end{pgfscope}%
  1104. \begin{pgfscope}%
  1105. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1106. \pgfsetstrokecolor{textcolor}%
  1107. \pgfsetfillcolor{textcolor}%
  1108. \pgftext[x=0.238889in,y=2.168555in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle P(b_k=1|\)trade\(\displaystyle )\)}%
  1109. \end{pgfscope}%
  1110. \begin{pgfscope}%
  1111. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1112. \pgfusepath{clip}%
  1113. \pgfsetrectcap%
  1114. \pgfsetroundjoin%
  1115. \pgfsetlinewidth{0.501875pt}%
  1116. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  1117. \pgfsetstrokecolor{currentstroke}%
  1118. \pgfsetdash{}{0pt}%
  1119. \pgfpathmoveto{\pgfqpoint{0.679669in}{2.169822in}}%
  1120. \pgfpathlineto{\pgfqpoint{0.804922in}{2.085817in}}%
  1121. \pgfpathlineto{\pgfqpoint{0.930174in}{2.154202in}}%
  1122. \pgfpathlineto{\pgfqpoint{1.055427in}{2.516711in}}%
  1123. \pgfpathlineto{\pgfqpoint{1.180679in}{2.575006in}}%
  1124. \pgfpathlineto{\pgfqpoint{1.305932in}{2.538161in}}%
  1125. \pgfpathlineto{\pgfqpoint{1.431184in}{2.483029in}}%
  1126. \pgfpathlineto{\pgfqpoint{1.556437in}{2.605825in}}%
  1127. \pgfpathlineto{\pgfqpoint{1.681689in}{2.766360in}}%
  1128. \pgfpathlineto{\pgfqpoint{1.806942in}{2.559656in}}%
  1129. \pgfpathlineto{\pgfqpoint{1.932194in}{2.575540in}}%
  1130. \pgfpathlineto{\pgfqpoint{2.057447in}{2.608322in}}%
  1131. \pgfpathlineto{\pgfqpoint{2.182699in}{2.688857in}}%
  1132. \pgfpathlineto{\pgfqpoint{2.307952in}{2.717259in}}%
  1133. \pgfpathlineto{\pgfqpoint{2.433205in}{2.982672in}}%
  1134. \pgfpathlineto{\pgfqpoint{2.558457in}{2.956590in}}%
  1135. \pgfpathlineto{\pgfqpoint{2.683710in}{3.089949in}}%
  1136. \pgfpathlineto{\pgfqpoint{2.808962in}{3.039242in}}%
  1137. \pgfpathlineto{\pgfqpoint{2.934215in}{3.216225in}}%
  1138. \pgfusepath{stroke}%
  1139. \end{pgfscope}%
  1140. \begin{pgfscope}%
  1141. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1142. \pgfusepath{clip}%
  1143. \pgfsetrectcap%
  1144. \pgfsetroundjoin%
  1145. \pgfsetlinewidth{0.501875pt}%
  1146. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  1147. \pgfsetstrokecolor{currentstroke}%
  1148. \pgfsetdash{}{0pt}%
  1149. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.320278in}}%
  1150. \pgfpathlineto{\pgfqpoint{0.804922in}{3.192435in}}%
  1151. \pgfpathlineto{\pgfqpoint{0.930174in}{3.028623in}}%
  1152. \pgfpathlineto{\pgfqpoint{1.055427in}{3.079526in}}%
  1153. \pgfpathlineto{\pgfqpoint{1.180679in}{2.990379in}}%
  1154. \pgfpathlineto{\pgfqpoint{1.305932in}{2.910302in}}%
  1155. \pgfpathlineto{\pgfqpoint{1.431184in}{2.832750in}}%
  1156. \pgfpathlineto{\pgfqpoint{1.556437in}{2.699537in}}%
  1157. \pgfpathlineto{\pgfqpoint{1.681689in}{2.663689in}}%
  1158. \pgfpathlineto{\pgfqpoint{1.806942in}{2.628530in}}%
  1159. \pgfpathlineto{\pgfqpoint{1.932194in}{2.633721in}}%
  1160. \pgfpathlineto{\pgfqpoint{2.057447in}{2.500182in}}%
  1161. \pgfpathlineto{\pgfqpoint{2.182699in}{2.446898in}}%
  1162. \pgfpathlineto{\pgfqpoint{2.307952in}{2.432387in}}%
  1163. \pgfpathlineto{\pgfqpoint{2.433205in}{2.397860in}}%
  1164. \pgfpathlineto{\pgfqpoint{2.558457in}{2.249239in}}%
  1165. \pgfpathlineto{\pgfqpoint{2.683710in}{2.351920in}}%
  1166. \pgfpathlineto{\pgfqpoint{2.808962in}{2.124132in}}%
  1167. \pgfpathlineto{\pgfqpoint{2.934215in}{2.197381in}}%
  1168. \pgfusepath{stroke}%
  1169. \end{pgfscope}%
  1170. \begin{pgfscope}%
  1171. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1172. \pgfusepath{clip}%
  1173. \pgfsetrectcap%
  1174. \pgfsetroundjoin%
  1175. \pgfsetlinewidth{0.501875pt}%
  1176. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  1177. \pgfsetstrokecolor{currentstroke}%
  1178. \pgfsetdash{}{0pt}%
  1179. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.356072in}}%
  1180. \pgfpathlineto{\pgfqpoint{0.804922in}{3.162413in}}%
  1181. \pgfpathlineto{\pgfqpoint{0.930174in}{3.051749in}}%
  1182. \pgfpathlineto{\pgfqpoint{1.055427in}{3.057111in}}%
  1183. \pgfpathlineto{\pgfqpoint{1.180679in}{3.019245in}}%
  1184. \pgfpathlineto{\pgfqpoint{1.305932in}{2.945824in}}%
  1185. \pgfpathlineto{\pgfqpoint{1.431184in}{2.853153in}}%
  1186. \pgfpathlineto{\pgfqpoint{1.556437in}{2.739467in}}%
  1187. \pgfpathlineto{\pgfqpoint{1.681689in}{2.688324in}}%
  1188. \pgfpathlineto{\pgfqpoint{1.806942in}{2.645262in}}%
  1189. \pgfpathlineto{\pgfqpoint{1.932194in}{2.613828in}}%
  1190. \pgfpathlineto{\pgfqpoint{2.057447in}{2.542143in}}%
  1191. \pgfpathlineto{\pgfqpoint{2.182699in}{2.498476in}}%
  1192. \pgfpathlineto{\pgfqpoint{2.307952in}{2.495653in}}%
  1193. \pgfpathlineto{\pgfqpoint{2.433205in}{2.468146in}}%
  1194. \pgfpathlineto{\pgfqpoint{2.558457in}{2.293876in}}%
  1195. \pgfpathlineto{\pgfqpoint{2.683710in}{2.410515in}}%
  1196. \pgfpathlineto{\pgfqpoint{2.808962in}{2.207813in}}%
  1197. \pgfpathlineto{\pgfqpoint{2.934215in}{2.246456in}}%
  1198. \pgfusepath{stroke}%
  1199. \end{pgfscope}%
  1200. \begin{pgfscope}%
  1201. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1202. \pgfusepath{clip}%
  1203. \pgfsetrectcap%
  1204. \pgfsetroundjoin%
  1205. \pgfsetlinewidth{0.501875pt}%
  1206. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  1207. \pgfsetstrokecolor{currentstroke}%
  1208. \pgfsetdash{}{0pt}%
  1209. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.771742in}}%
  1210. \pgfpathlineto{\pgfqpoint{0.804922in}{3.681289in}}%
  1211. \pgfpathlineto{\pgfqpoint{0.930174in}{3.590104in}}%
  1212. \pgfpathlineto{\pgfqpoint{1.055427in}{3.602757in}}%
  1213. \pgfpathlineto{\pgfqpoint{1.180679in}{3.585602in}}%
  1214. \pgfpathlineto{\pgfqpoint{1.305932in}{3.605398in}}%
  1215. \pgfpathlineto{\pgfqpoint{1.431184in}{3.572617in}}%
  1216. \pgfpathlineto{\pgfqpoint{1.556437in}{3.482892in}}%
  1217. \pgfpathlineto{\pgfqpoint{1.681689in}{3.480572in}}%
  1218. \pgfpathlineto{\pgfqpoint{1.806942in}{3.431254in}}%
  1219. \pgfpathlineto{\pgfqpoint{1.932194in}{3.418762in}}%
  1220. \pgfpathlineto{\pgfqpoint{2.057447in}{3.396410in}}%
  1221. \pgfpathlineto{\pgfqpoint{2.182699in}{3.478341in}}%
  1222. \pgfpathlineto{\pgfqpoint{2.307952in}{3.457484in}}%
  1223. \pgfpathlineto{\pgfqpoint{2.433205in}{3.476814in}}%
  1224. \pgfpathlineto{\pgfqpoint{2.558457in}{3.439522in}}%
  1225. \pgfpathlineto{\pgfqpoint{2.683710in}{3.473260in}}%
  1226. \pgfpathlineto{\pgfqpoint{2.808962in}{3.469260in}}%
  1227. \pgfpathlineto{\pgfqpoint{2.934215in}{3.428243in}}%
  1228. \pgfusepath{stroke}%
  1229. \end{pgfscope}%
  1230. \begin{pgfscope}%
  1231. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1232. \pgfusepath{clip}%
  1233. \pgfsetrectcap%
  1234. \pgfsetroundjoin%
  1235. \pgfsetlinewidth{0.501875pt}%
  1236. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  1237. \pgfsetstrokecolor{currentstroke}%
  1238. \pgfsetdash{}{0pt}%
  1239. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.848555in}}%
  1240. \pgfpathlineto{\pgfqpoint{0.804922in}{3.717068in}}%
  1241. \pgfpathlineto{\pgfqpoint{0.930174in}{3.597840in}}%
  1242. \pgfpathlineto{\pgfqpoint{1.055427in}{3.572239in}}%
  1243. \pgfpathlineto{\pgfqpoint{1.180679in}{3.578502in}}%
  1244. \pgfpathlineto{\pgfqpoint{1.305932in}{3.446496in}}%
  1245. \pgfpathlineto{\pgfqpoint{1.431184in}{3.421932in}}%
  1246. \pgfpathlineto{\pgfqpoint{1.556437in}{3.240933in}}%
  1247. \pgfpathlineto{\pgfqpoint{1.681689in}{3.226273in}}%
  1248. \pgfpathlineto{\pgfqpoint{1.806942in}{3.170207in}}%
  1249. \pgfpathlineto{\pgfqpoint{1.932194in}{3.128054in}}%
  1250. \pgfpathlineto{\pgfqpoint{2.057447in}{3.080026in}}%
  1251. \pgfpathlineto{\pgfqpoint{2.182699in}{2.943570in}}%
  1252. \pgfpathlineto{\pgfqpoint{2.307952in}{2.941919in}}%
  1253. \pgfpathlineto{\pgfqpoint{2.433205in}{2.819291in}}%
  1254. \pgfpathlineto{\pgfqpoint{2.558457in}{2.736366in}}%
  1255. \pgfpathlineto{\pgfqpoint{2.683710in}{2.847303in}}%
  1256. \pgfpathlineto{\pgfqpoint{2.808962in}{2.672204in}}%
  1257. \pgfpathlineto{\pgfqpoint{2.934215in}{2.717438in}}%
  1258. \pgfusepath{stroke}%
  1259. \end{pgfscope}%
  1260. \begin{pgfscope}%
  1261. \pgfsetrectcap%
  1262. \pgfsetmiterjoin%
  1263. \pgfsetlinewidth{0.803000pt}%
  1264. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1265. \pgfsetstrokecolor{currentstroke}%
  1266. \pgfsetdash{}{0pt}%
  1267. \pgfpathmoveto{\pgfqpoint{0.679669in}{0.320555in}}%
  1268. \pgfpathlineto{\pgfqpoint{0.679669in}{4.016555in}}%
  1269. \pgfusepath{stroke}%
  1270. \end{pgfscope}%
  1271. \begin{pgfscope}%
  1272. \pgfsetrectcap%
  1273. \pgfsetmiterjoin%
  1274. \pgfsetlinewidth{0.803000pt}%
  1275. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1276. \pgfsetstrokecolor{currentstroke}%
  1277. \pgfsetdash{}{0pt}%
  1278. \pgfpathmoveto{\pgfqpoint{2.934215in}{0.320555in}}%
  1279. \pgfpathlineto{\pgfqpoint{2.934215in}{4.016555in}}%
  1280. \pgfusepath{stroke}%
  1281. \end{pgfscope}%
  1282. \begin{pgfscope}%
  1283. \pgfsetrectcap%
  1284. \pgfsetmiterjoin%
  1285. \pgfsetlinewidth{0.803000pt}%
  1286. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1287. \pgfsetstrokecolor{currentstroke}%
  1288. \pgfsetdash{}{0pt}%
  1289. \pgfpathmoveto{\pgfqpoint{0.679669in}{0.320555in}}%
  1290. \pgfpathlineto{\pgfqpoint{2.934215in}{0.320555in}}%
  1291. \pgfusepath{stroke}%
  1292. \end{pgfscope}%
  1293. \begin{pgfscope}%
  1294. \pgfsetrectcap%
  1295. \pgfsetmiterjoin%
  1296. \pgfsetlinewidth{0.803000pt}%
  1297. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1298. \pgfsetstrokecolor{currentstroke}%
  1299. \pgfsetdash{}{0pt}%
  1300. \pgfpathmoveto{\pgfqpoint{0.679669in}{4.016555in}}%
  1301. \pgfpathlineto{\pgfqpoint{2.934215in}{4.016555in}}%
  1302. \pgfusepath{stroke}%
  1303. \end{pgfscope}%
  1304. \begin{pgfscope}%
  1305. \pgfsetbuttcap%
  1306. \pgfsetmiterjoin%
  1307. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  1308. \pgfsetfillcolor{currentfill}%
  1309. \pgfsetfillopacity{0.800000}%
  1310. \pgfsetlinewidth{1.003750pt}%
  1311. \definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%
  1312. \pgfsetstrokecolor{currentstroke}%
  1313. \pgfsetstrokeopacity{0.800000}%
  1314. \pgfsetdash{}{0pt}%
  1315. \pgfpathmoveto{\pgfqpoint{0.738003in}{0.362222in}}%
  1316. \pgfpathlineto{\pgfqpoint{1.775753in}{0.362222in}}%
  1317. \pgfpathquadraticcurveto{\pgfqpoint{1.792419in}{0.362222in}}{\pgfqpoint{1.792419in}{0.378889in}}%
  1318. \pgfpathlineto{\pgfqpoint{1.792419in}{0.952305in}}%
  1319. \pgfpathquadraticcurveto{\pgfqpoint{1.792419in}{0.968971in}}{\pgfqpoint{1.775753in}{0.968971in}}%
  1320. \pgfpathlineto{\pgfqpoint{0.738003in}{0.968971in}}%
  1321. \pgfpathquadraticcurveto{\pgfqpoint{0.721336in}{0.968971in}}{\pgfqpoint{0.721336in}{0.952305in}}%
  1322. \pgfpathlineto{\pgfqpoint{0.721336in}{0.378889in}}%
  1323. \pgfpathquadraticcurveto{\pgfqpoint{0.721336in}{0.362222in}}{\pgfqpoint{0.738003in}{0.362222in}}%
  1324. \pgfpathlineto{\pgfqpoint{0.738003in}{0.362222in}}%
  1325. \pgfpathclose%
  1326. \pgfusepath{stroke,fill}%
  1327. \end{pgfscope}%
  1328. \begin{pgfscope}%
  1329. \pgfsetbuttcap%
  1330. \pgfsetroundjoin%
  1331. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  1332. \pgfsetfillcolor{currentfill}%
  1333. \pgfsetlinewidth{1.003750pt}%
  1334. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  1335. \pgfsetstrokecolor{currentstroke}%
  1336. \pgfsetdash{}{0pt}%
  1337. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1338. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1339. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1340. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1341. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1342. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1343. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1344. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1345. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1346. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1347. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1348. \pgfpathclose%
  1349. \pgfusepath{stroke,fill}%
  1350. }%
  1351. \begin{pgfscope}%
  1352. \pgfsys@transformshift{0.838003in}{0.899180in}%
  1353. \pgfsys@useobject{currentmarker}{}%
  1354. \end{pgfscope}%
  1355. \end{pgfscope}%
  1356. \begin{pgfscope}%
  1357. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1358. \pgfsetstrokecolor{textcolor}%
  1359. \pgfsetfillcolor{textcolor}%
  1360. \pgftext[x=0.988003in,y=0.877305in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont dark matter}%
  1361. \end{pgfscope}%
  1362. \begin{pgfscope}%
  1363. \pgfsetbuttcap%
  1364. \pgfsetroundjoin%
  1365. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  1366. \pgfsetfillcolor{currentfill}%
  1367. \pgfsetlinewidth{1.003750pt}%
  1368. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  1369. \pgfsetstrokecolor{currentstroke}%
  1370. \pgfsetdash{}{0pt}%
  1371. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1372. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1373. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1374. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1375. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1376. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1377. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1378. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1379. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1380. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1381. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1382. \pgfpathclose%
  1383. \pgfusepath{stroke,fill}%
  1384. }%
  1385. \begin{pgfscope}%
  1386. \pgfsys@transformshift{0.838003in}{0.783013in}%
  1387. \pgfsys@useobject{currentmarker}{}%
  1388. \end{pgfscope}%
  1389. \end{pgfscope}%
  1390. \begin{pgfscope}%
  1391. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1392. \pgfsetstrokecolor{textcolor}%
  1393. \pgfsetfillcolor{textcolor}%
  1394. \pgftext[x=0.988003in,y=0.761138in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont gauge interaction}%
  1395. \end{pgfscope}%
  1396. \begin{pgfscope}%
  1397. \pgfsetbuttcap%
  1398. \pgfsetroundjoin%
  1399. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  1400. \pgfsetfillcolor{currentfill}%
  1401. \pgfsetlinewidth{1.003750pt}%
  1402. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  1403. \pgfsetstrokecolor{currentstroke}%
  1404. \pgfsetdash{}{0pt}%
  1405. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1406. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1407. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1408. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1409. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1410. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1411. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1412. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1413. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1414. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1415. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1416. \pgfpathclose%
  1417. \pgfusepath{stroke,fill}%
  1418. }%
  1419. \begin{pgfscope}%
  1420. \pgfsys@transformshift{0.838003in}{0.665930in}%
  1421. \pgfsys@useobject{currentmarker}{}%
  1422. \end{pgfscope}%
  1423. \end{pgfscope}%
  1424. \begin{pgfscope}%
  1425. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1426. \pgfsetstrokecolor{textcolor}%
  1427. \pgfsetfillcolor{textcolor}%
  1428. \pgftext[x=0.988003in,y=0.644055in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont weak scale}%
  1429. \end{pgfscope}%
  1430. \begin{pgfscope}%
  1431. \pgfsetbuttcap%
  1432. \pgfsetroundjoin%
  1433. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  1434. \pgfsetfillcolor{currentfill}%
  1435. \pgfsetlinewidth{1.003750pt}%
  1436. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  1437. \pgfsetstrokecolor{currentstroke}%
  1438. \pgfsetdash{}{0pt}%
  1439. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1440. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1441. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1442. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1443. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1444. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1445. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1446. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1447. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1448. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1449. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1450. \pgfpathclose%
  1451. \pgfusepath{stroke,fill}%
  1452. }%
  1453. \begin{pgfscope}%
  1454. \pgfsys@transformshift{0.838003in}{0.549763in}%
  1455. \pgfsys@useobject{currentmarker}{}%
  1456. \end{pgfscope}%
  1457. \end{pgfscope}%
  1458. \begin{pgfscope}%
  1459. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1460. \pgfsetstrokecolor{textcolor}%
  1461. \pgfsetfillcolor{textcolor}%
  1462. \pgftext[x=0.988003in,y=0.527888in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont standard model}%
  1463. \end{pgfscope}%
  1464. \begin{pgfscope}%
  1465. \pgfsetbuttcap%
  1466. \pgfsetroundjoin%
  1467. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  1468. \pgfsetfillcolor{currentfill}%
  1469. \pgfsetlinewidth{1.003750pt}%
  1470. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  1471. \pgfsetstrokecolor{currentstroke}%
  1472. \pgfsetdash{}{0pt}%
  1473. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1474. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1475. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1476. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1477. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1478. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1479. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1480. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1481. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1482. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1483. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1484. \pgfpathclose%
  1485. \pgfusepath{stroke,fill}%
  1486. }%
  1487. \begin{pgfscope}%
  1488. \pgfsys@transformshift{0.838003in}{0.433597in}%
  1489. \pgfsys@useobject{currentmarker}{}%
  1490. \end{pgfscope}%
  1491. \end{pgfscope}%
  1492. \begin{pgfscope}%
  1493. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1494. \pgfsetstrokecolor{textcolor}%
  1495. \pgfsetfillcolor{textcolor}%
  1496. \pgftext[x=0.988003in,y=0.411722in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont extra dimension}%
  1497. \end{pgfscope}%
  1498. \begin{pgfscope}%
  1499. \pgfsetbuttcap%
  1500. \pgfsetmiterjoin%
  1501. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  1502. \pgfsetfillcolor{currentfill}%
  1503. \pgfsetlinewidth{0.000000pt}%
  1504. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1505. \pgfsetstrokecolor{currentstroke}%
  1506. \pgfsetstrokeopacity{0.000000}%
  1507. \pgfsetdash{}{0pt}%
  1508. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.320555in}}%
  1509. \pgfpathlineto{\pgfqpoint{5.639669in}{0.320555in}}%
  1510. \pgfpathlineto{\pgfqpoint{5.639669in}{4.016555in}}%
  1511. \pgfpathlineto{\pgfqpoint{3.385124in}{4.016555in}}%
  1512. \pgfpathlineto{\pgfqpoint{3.385124in}{0.320555in}}%
  1513. \pgfpathclose%
  1514. \pgfusepath{fill}%
  1515. \end{pgfscope}%
  1516. \begin{pgfscope}%
  1517. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1518. \pgfusepath{clip}%
  1519. \pgfsetbuttcap%
  1520. \pgfsetroundjoin%
  1521. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  1522. \pgfsetfillcolor{currentfill}%
  1523. \pgfsetlinewidth{1.003750pt}%
  1524. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  1525. \pgfsetstrokecolor{currentstroke}%
  1526. \pgfsetdash{}{0pt}%
  1527. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1528. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1529. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1530. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1531. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1532. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1533. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1534. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1535. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1536. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1537. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1538. \pgfpathclose%
  1539. \pgfusepath{stroke,fill}%
  1540. }%
  1541. \begin{pgfscope}%
  1542. \pgfsys@transformshift{3.385124in}{1.889351in}%
  1543. \pgfsys@useobject{currentmarker}{}%
  1544. \end{pgfscope}%
  1545. \begin{pgfscope}%
  1546. \pgfsys@transformshift{3.510376in}{1.663213in}%
  1547. \pgfsys@useobject{currentmarker}{}%
  1548. \end{pgfscope}%
  1549. \begin{pgfscope}%
  1550. \pgfsys@transformshift{3.635629in}{1.514113in}%
  1551. \pgfsys@useobject{currentmarker}{}%
  1552. \end{pgfscope}%
  1553. \begin{pgfscope}%
  1554. \pgfsys@transformshift{3.760881in}{1.504688in}%
  1555. \pgfsys@useobject{currentmarker}{}%
  1556. \end{pgfscope}%
  1557. \begin{pgfscope}%
  1558. \pgfsys@transformshift{3.886134in}{1.473522in}%
  1559. \pgfsys@useobject{currentmarker}{}%
  1560. \end{pgfscope}%
  1561. \begin{pgfscope}%
  1562. \pgfsys@transformshift{4.011386in}{1.589499in}%
  1563. \pgfsys@useobject{currentmarker}{}%
  1564. \end{pgfscope}%
  1565. \begin{pgfscope}%
  1566. \pgfsys@transformshift{4.136639in}{1.590126in}%
  1567. \pgfsys@useobject{currentmarker}{}%
  1568. \end{pgfscope}%
  1569. \begin{pgfscope}%
  1570. \pgfsys@transformshift{4.261891in}{1.709485in}%
  1571. \pgfsys@useobject{currentmarker}{}%
  1572. \end{pgfscope}%
  1573. \begin{pgfscope}%
  1574. \pgfsys@transformshift{4.387144in}{1.627816in}%
  1575. \pgfsys@useobject{currentmarker}{}%
  1576. \end{pgfscope}%
  1577. \begin{pgfscope}%
  1578. \pgfsys@transformshift{4.512396in}{1.464487in}%
  1579. \pgfsys@useobject{currentmarker}{}%
  1580. \end{pgfscope}%
  1581. \begin{pgfscope}%
  1582. \pgfsys@transformshift{4.637649in}{1.396082in}%
  1583. \pgfsys@useobject{currentmarker}{}%
  1584. \end{pgfscope}%
  1585. \begin{pgfscope}%
  1586. \pgfsys@transformshift{4.762901in}{1.036772in}%
  1587. \pgfsys@useobject{currentmarker}{}%
  1588. \end{pgfscope}%
  1589. \begin{pgfscope}%
  1590. \pgfsys@transformshift{4.888154in}{1.206007in}%
  1591. \pgfsys@useobject{currentmarker}{}%
  1592. \end{pgfscope}%
  1593. \begin{pgfscope}%
  1594. \pgfsys@transformshift{5.013407in}{0.808474in}%
  1595. \pgfsys@useobject{currentmarker}{}%
  1596. \end{pgfscope}%
  1597. \begin{pgfscope}%
  1598. \pgfsys@transformshift{5.138659in}{1.320737in}%
  1599. \pgfsys@useobject{currentmarker}{}%
  1600. \end{pgfscope}%
  1601. \begin{pgfscope}%
  1602. \pgfsys@transformshift{5.263912in}{1.099507in}%
  1603. \pgfsys@useobject{currentmarker}{}%
  1604. \end{pgfscope}%
  1605. \begin{pgfscope}%
  1606. \pgfsys@transformshift{5.389164in}{1.570234in}%
  1607. \pgfsys@useobject{currentmarker}{}%
  1608. \end{pgfscope}%
  1609. \begin{pgfscope}%
  1610. \pgfsys@transformshift{5.514417in}{1.386103in}%
  1611. \pgfsys@useobject{currentmarker}{}%
  1612. \end{pgfscope}%
  1613. \begin{pgfscope}%
  1614. \pgfsys@transformshift{5.639669in}{1.469371in}%
  1615. \pgfsys@useobject{currentmarker}{}%
  1616. \end{pgfscope}%
  1617. \end{pgfscope}%
  1618. \begin{pgfscope}%
  1619. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1620. \pgfusepath{clip}%
  1621. \pgfsetbuttcap%
  1622. \pgfsetroundjoin%
  1623. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  1624. \pgfsetfillcolor{currentfill}%
  1625. \pgfsetlinewidth{1.003750pt}%
  1626. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  1627. \pgfsetstrokecolor{currentstroke}%
  1628. \pgfsetdash{}{0pt}%
  1629. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1630. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1631. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1632. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1633. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1634. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1635. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1636. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1637. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1638. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1639. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1640. \pgfpathclose%
  1641. \pgfusepath{stroke,fill}%
  1642. }%
  1643. \begin{pgfscope}%
  1644. \pgfsys@transformshift{3.385124in}{1.584519in}%
  1645. \pgfsys@useobject{currentmarker}{}%
  1646. \end{pgfscope}%
  1647. \begin{pgfscope}%
  1648. \pgfsys@transformshift{3.510376in}{1.497538in}%
  1649. \pgfsys@useobject{currentmarker}{}%
  1650. \end{pgfscope}%
  1651. \begin{pgfscope}%
  1652. \pgfsys@transformshift{3.635629in}{1.785915in}%
  1653. \pgfsys@useobject{currentmarker}{}%
  1654. \end{pgfscope}%
  1655. \begin{pgfscope}%
  1656. \pgfsys@transformshift{3.760881in}{1.443950in}%
  1657. \pgfsys@useobject{currentmarker}{}%
  1658. \end{pgfscope}%
  1659. \begin{pgfscope}%
  1660. \pgfsys@transformshift{3.886134in}{1.875998in}%
  1661. \pgfsys@useobject{currentmarker}{}%
  1662. \end{pgfscope}%
  1663. \begin{pgfscope}%
  1664. \pgfsys@transformshift{4.011386in}{2.003130in}%
  1665. \pgfsys@useobject{currentmarker}{}%
  1666. \end{pgfscope}%
  1667. \begin{pgfscope}%
  1668. \pgfsys@transformshift{4.136639in}{1.768697in}%
  1669. \pgfsys@useobject{currentmarker}{}%
  1670. \end{pgfscope}%
  1671. \begin{pgfscope}%
  1672. \pgfsys@transformshift{4.261891in}{1.799921in}%
  1673. \pgfsys@useobject{currentmarker}{}%
  1674. \end{pgfscope}%
  1675. \begin{pgfscope}%
  1676. \pgfsys@transformshift{4.387144in}{1.614700in}%
  1677. \pgfsys@useobject{currentmarker}{}%
  1678. \end{pgfscope}%
  1679. \begin{pgfscope}%
  1680. \pgfsys@transformshift{4.512396in}{1.589637in}%
  1681. \pgfsys@useobject{currentmarker}{}%
  1682. \end{pgfscope}%
  1683. \begin{pgfscope}%
  1684. \pgfsys@transformshift{4.637649in}{1.396082in}%
  1685. \pgfsys@useobject{currentmarker}{}%
  1686. \end{pgfscope}%
  1687. \begin{pgfscope}%
  1688. \pgfsys@transformshift{4.762901in}{1.196856in}%
  1689. \pgfsys@useobject{currentmarker}{}%
  1690. \end{pgfscope}%
  1691. \begin{pgfscope}%
  1692. \pgfsys@transformshift{4.888154in}{0.912125in}%
  1693. \pgfsys@useobject{currentmarker}{}%
  1694. \end{pgfscope}%
  1695. \begin{pgfscope}%
  1696. \pgfsys@transformshift{5.013407in}{0.595631in}%
  1697. \pgfsys@useobject{currentmarker}{}%
  1698. \end{pgfscope}%
  1699. \begin{pgfscope}%
  1700. \pgfsys@transformshift{5.138659in}{1.187577in}%
  1701. \pgfsys@useobject{currentmarker}{}%
  1702. \end{pgfscope}%
  1703. \begin{pgfscope}%
  1704. \pgfsys@transformshift{5.263912in}{1.138020in}%
  1705. \pgfsys@useobject{currentmarker}{}%
  1706. \end{pgfscope}%
  1707. \begin{pgfscope}%
  1708. \pgfsys@transformshift{5.389164in}{1.362384in}%
  1709. \pgfsys@useobject{currentmarker}{}%
  1710. \end{pgfscope}%
  1711. \begin{pgfscope}%
  1712. \pgfsys@transformshift{5.514417in}{0.488555in}%
  1713. \pgfsys@useobject{currentmarker}{}%
  1714. \end{pgfscope}%
  1715. \begin{pgfscope}%
  1716. \pgfsys@transformshift{5.639669in}{0.950779in}%
  1717. \pgfsys@useobject{currentmarker}{}%
  1718. \end{pgfscope}%
  1719. \end{pgfscope}%
  1720. \begin{pgfscope}%
  1721. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1722. \pgfusepath{clip}%
  1723. \pgfsetbuttcap%
  1724. \pgfsetroundjoin%
  1725. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  1726. \pgfsetfillcolor{currentfill}%
  1727. \pgfsetlinewidth{1.003750pt}%
  1728. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  1729. \pgfsetstrokecolor{currentstroke}%
  1730. \pgfsetdash{}{0pt}%
  1731. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1732. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1733. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1734. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1735. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1736. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1737. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1738. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1739. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1740. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1741. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1742. \pgfpathclose%
  1743. \pgfusepath{stroke,fill}%
  1744. }%
  1745. \begin{pgfscope}%
  1746. \pgfsys@transformshift{3.385124in}{1.901168in}%
  1747. \pgfsys@useobject{currentmarker}{}%
  1748. \end{pgfscope}%
  1749. \begin{pgfscope}%
  1750. \pgfsys@transformshift{3.510376in}{1.999737in}%
  1751. \pgfsys@useobject{currentmarker}{}%
  1752. \end{pgfscope}%
  1753. \begin{pgfscope}%
  1754. \pgfsys@transformshift{3.635629in}{2.023002in}%
  1755. \pgfsys@useobject{currentmarker}{}%
  1756. \end{pgfscope}%
  1757. \begin{pgfscope}%
  1758. \pgfsys@transformshift{3.760881in}{1.990740in}%
  1759. \pgfsys@useobject{currentmarker}{}%
  1760. \end{pgfscope}%
  1761. \begin{pgfscope}%
  1762. \pgfsys@transformshift{3.886134in}{2.075175in}%
  1763. \pgfsys@useobject{currentmarker}{}%
  1764. \end{pgfscope}%
  1765. \begin{pgfscope}%
  1766. \pgfsys@transformshift{4.011386in}{2.071797in}%
  1767. \pgfsys@useobject{currentmarker}{}%
  1768. \end{pgfscope}%
  1769. \begin{pgfscope}%
  1770. \pgfsys@transformshift{4.136639in}{1.655768in}%
  1771. \pgfsys@useobject{currentmarker}{}%
  1772. \end{pgfscope}%
  1773. \begin{pgfscope}%
  1774. \pgfsys@transformshift{4.261891in}{1.844810in}%
  1775. \pgfsys@useobject{currentmarker}{}%
  1776. \end{pgfscope}%
  1777. \begin{pgfscope}%
  1778. \pgfsys@transformshift{4.387144in}{1.824885in}%
  1779. \pgfsys@useobject{currentmarker}{}%
  1780. \end{pgfscope}%
  1781. \begin{pgfscope}%
  1782. \pgfsys@transformshift{4.512396in}{1.539178in}%
  1783. \pgfsys@useobject{currentmarker}{}%
  1784. \end{pgfscope}%
  1785. \begin{pgfscope}%
  1786. \pgfsys@transformshift{4.637649in}{1.341795in}%
  1787. \pgfsys@useobject{currentmarker}{}%
  1788. \end{pgfscope}%
  1789. \begin{pgfscope}%
  1790. \pgfsys@transformshift{4.762901in}{1.494625in}%
  1791. \pgfsys@useobject{currentmarker}{}%
  1792. \end{pgfscope}%
  1793. \begin{pgfscope}%
  1794. \pgfsys@transformshift{4.888154in}{1.297995in}%
  1795. \pgfsys@useobject{currentmarker}{}%
  1796. \end{pgfscope}%
  1797. \begin{pgfscope}%
  1798. \pgfsys@transformshift{5.013407in}{1.278980in}%
  1799. \pgfsys@useobject{currentmarker}{}%
  1800. \end{pgfscope}%
  1801. \begin{pgfscope}%
  1802. \pgfsys@transformshift{5.138659in}{1.244453in}%
  1803. \pgfsys@useobject{currentmarker}{}%
  1804. \end{pgfscope}%
  1805. \begin{pgfscope}%
  1806. \pgfsys@transformshift{5.263912in}{1.404339in}%
  1807. \pgfsys@useobject{currentmarker}{}%
  1808. \end{pgfscope}%
  1809. \begin{pgfscope}%
  1810. \pgfsys@transformshift{5.389164in}{1.696331in}%
  1811. \pgfsys@useobject{currentmarker}{}%
  1812. \end{pgfscope}%
  1813. \begin{pgfscope}%
  1814. \pgfsys@transformshift{5.514417in}{1.263893in}%
  1815. \pgfsys@useobject{currentmarker}{}%
  1816. \end{pgfscope}%
  1817. \begin{pgfscope}%
  1818. \pgfsys@transformshift{5.639669in}{1.207846in}%
  1819. \pgfsys@useobject{currentmarker}{}%
  1820. \end{pgfscope}%
  1821. \end{pgfscope}%
  1822. \begin{pgfscope}%
  1823. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1824. \pgfusepath{clip}%
  1825. \pgfsetbuttcap%
  1826. \pgfsetroundjoin%
  1827. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  1828. \pgfsetfillcolor{currentfill}%
  1829. \pgfsetlinewidth{1.003750pt}%
  1830. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  1831. \pgfsetstrokecolor{currentstroke}%
  1832. \pgfsetdash{}{0pt}%
  1833. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1834. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1835. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1836. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1837. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1838. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1839. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1840. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1841. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1842. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1843. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1844. \pgfpathclose%
  1845. \pgfusepath{stroke,fill}%
  1846. }%
  1847. \begin{pgfscope}%
  1848. \pgfsys@transformshift{3.385124in}{2.147014in}%
  1849. \pgfsys@useobject{currentmarker}{}%
  1850. \end{pgfscope}%
  1851. \begin{pgfscope}%
  1852. \pgfsys@transformshift{3.510376in}{2.153127in}%
  1853. \pgfsys@useobject{currentmarker}{}%
  1854. \end{pgfscope}%
  1855. \begin{pgfscope}%
  1856. \pgfsys@transformshift{3.635629in}{1.916156in}%
  1857. \pgfsys@useobject{currentmarker}{}%
  1858. \end{pgfscope}%
  1859. \begin{pgfscope}%
  1860. \pgfsys@transformshift{3.760881in}{2.134042in}%
  1861. \pgfsys@useobject{currentmarker}{}%
  1862. \end{pgfscope}%
  1863. \begin{pgfscope}%
  1864. \pgfsys@transformshift{3.886134in}{2.171753in}%
  1865. \pgfsys@useobject{currentmarker}{}%
  1866. \end{pgfscope}%
  1867. \begin{pgfscope}%
  1868. \pgfsys@transformshift{4.011386in}{2.220324in}%
  1869. \pgfsys@useobject{currentmarker}{}%
  1870. \end{pgfscope}%
  1871. \begin{pgfscope}%
  1872. \pgfsys@transformshift{4.136639in}{2.093759in}%
  1873. \pgfsys@useobject{currentmarker}{}%
  1874. \end{pgfscope}%
  1875. \begin{pgfscope}%
  1876. \pgfsys@transformshift{4.261891in}{2.179991in}%
  1877. \pgfsys@useobject{currentmarker}{}%
  1878. \end{pgfscope}%
  1879. \begin{pgfscope}%
  1880. \pgfsys@transformshift{4.387144in}{2.184895in}%
  1881. \pgfsys@useobject{currentmarker}{}%
  1882. \end{pgfscope}%
  1883. \begin{pgfscope}%
  1884. \pgfsys@transformshift{4.512396in}{2.057203in}%
  1885. \pgfsys@useobject{currentmarker}{}%
  1886. \end{pgfscope}%
  1887. \begin{pgfscope}%
  1888. \pgfsys@transformshift{4.637649in}{2.154676in}%
  1889. \pgfsys@useobject{currentmarker}{}%
  1890. \end{pgfscope}%
  1891. \begin{pgfscope}%
  1892. \pgfsys@transformshift{4.762901in}{2.041415in}%
  1893. \pgfsys@useobject{currentmarker}{}%
  1894. \end{pgfscope}%
  1895. \begin{pgfscope}%
  1896. \pgfsys@transformshift{4.888154in}{1.944036in}%
  1897. \pgfsys@useobject{currentmarker}{}%
  1898. \end{pgfscope}%
  1899. \begin{pgfscope}%
  1900. \pgfsys@transformshift{5.013407in}{1.719137in}%
  1901. \pgfsys@useobject{currentmarker}{}%
  1902. \end{pgfscope}%
  1903. \begin{pgfscope}%
  1904. \pgfsys@transformshift{5.138659in}{1.780293in}%
  1905. \pgfsys@useobject{currentmarker}{}%
  1906. \end{pgfscope}%
  1907. \begin{pgfscope}%
  1908. \pgfsys@transformshift{5.263912in}{1.841374in}%
  1909. \pgfsys@useobject{currentmarker}{}%
  1910. \end{pgfscope}%
  1911. \begin{pgfscope}%
  1912. \pgfsys@transformshift{5.389164in}{1.776015in}%
  1913. \pgfsys@useobject{currentmarker}{}%
  1914. \end{pgfscope}%
  1915. \begin{pgfscope}%
  1916. \pgfsys@transformshift{5.514417in}{1.487489in}%
  1917. \pgfsys@useobject{currentmarker}{}%
  1918. \end{pgfscope}%
  1919. \begin{pgfscope}%
  1920. \pgfsys@transformshift{5.639669in}{1.590867in}%
  1921. \pgfsys@useobject{currentmarker}{}%
  1922. \end{pgfscope}%
  1923. \end{pgfscope}%
  1924. \begin{pgfscope}%
  1925. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1926. \pgfusepath{clip}%
  1927. \pgfsetbuttcap%
  1928. \pgfsetroundjoin%
  1929. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  1930. \pgfsetfillcolor{currentfill}%
  1931. \pgfsetlinewidth{1.003750pt}%
  1932. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  1933. \pgfsetstrokecolor{currentstroke}%
  1934. \pgfsetdash{}{0pt}%
  1935. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1936. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1937. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1938. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1939. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1940. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1941. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1942. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1943. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1944. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1945. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1946. \pgfpathclose%
  1947. \pgfusepath{stroke,fill}%
  1948. }%
  1949. \begin{pgfscope}%
  1950. \pgfsys@transformshift{3.385124in}{2.544940in}%
  1951. \pgfsys@useobject{currentmarker}{}%
  1952. \end{pgfscope}%
  1953. \begin{pgfscope}%
  1954. \pgfsys@transformshift{3.510376in}{2.359571in}%
  1955. \pgfsys@useobject{currentmarker}{}%
  1956. \end{pgfscope}%
  1957. \begin{pgfscope}%
  1958. \pgfsys@transformshift{3.635629in}{2.311972in}%
  1959. \pgfsys@useobject{currentmarker}{}%
  1960. \end{pgfscope}%
  1961. \begin{pgfscope}%
  1962. \pgfsys@transformshift{3.760881in}{2.369258in}%
  1963. \pgfsys@useobject{currentmarker}{}%
  1964. \end{pgfscope}%
  1965. \begin{pgfscope}%
  1966. \pgfsys@transformshift{3.886134in}{2.480686in}%
  1967. \pgfsys@useobject{currentmarker}{}%
  1968. \end{pgfscope}%
  1969. \begin{pgfscope}%
  1970. \pgfsys@transformshift{4.011386in}{2.532193in}%
  1971. \pgfsys@useobject{currentmarker}{}%
  1972. \end{pgfscope}%
  1973. \begin{pgfscope}%
  1974. \pgfsys@transformshift{4.136639in}{2.403345in}%
  1975. \pgfsys@useobject{currentmarker}{}%
  1976. \end{pgfscope}%
  1977. \begin{pgfscope}%
  1978. \pgfsys@transformshift{4.261891in}{2.406967in}%
  1979. \pgfsys@useobject{currentmarker}{}%
  1980. \end{pgfscope}%
  1981. \begin{pgfscope}%
  1982. \pgfsys@transformshift{4.387144in}{2.428551in}%
  1983. \pgfsys@useobject{currentmarker}{}%
  1984. \end{pgfscope}%
  1985. \begin{pgfscope}%
  1986. \pgfsys@transformshift{4.512396in}{2.306484in}%
  1987. \pgfsys@useobject{currentmarker}{}%
  1988. \end{pgfscope}%
  1989. \begin{pgfscope}%
  1990. \pgfsys@transformshift{4.637649in}{2.161909in}%
  1991. \pgfsys@useobject{currentmarker}{}%
  1992. \end{pgfscope}%
  1993. \begin{pgfscope}%
  1994. \pgfsys@transformshift{4.762901in}{2.128512in}%
  1995. \pgfsys@useobject{currentmarker}{}%
  1996. \end{pgfscope}%
  1997. \begin{pgfscope}%
  1998. \pgfsys@transformshift{4.888154in}{2.110876in}%
  1999. \pgfsys@useobject{currentmarker}{}%
  2000. \end{pgfscope}%
  2001. \begin{pgfscope}%
  2002. \pgfsys@transformshift{5.013407in}{1.836522in}%
  2003. \pgfsys@useobject{currentmarker}{}%
  2004. \end{pgfscope}%
  2005. \begin{pgfscope}%
  2006. \pgfsys@transformshift{5.138659in}{1.951965in}%
  2007. \pgfsys@useobject{currentmarker}{}%
  2008. \end{pgfscope}%
  2009. \begin{pgfscope}%
  2010. \pgfsys@transformshift{5.263912in}{1.896159in}%
  2011. \pgfsys@useobject{currentmarker}{}%
  2012. \end{pgfscope}%
  2013. \begin{pgfscope}%
  2014. \pgfsys@transformshift{5.389164in}{2.042333in}%
  2015. \pgfsys@useobject{currentmarker}{}%
  2016. \end{pgfscope}%
  2017. \begin{pgfscope}%
  2018. \pgfsys@transformshift{5.514417in}{1.557775in}%
  2019. \pgfsys@useobject{currentmarker}{}%
  2020. \end{pgfscope}%
  2021. \begin{pgfscope}%
  2022. \pgfsys@transformshift{5.639669in}{1.901948in}%
  2023. \pgfsys@useobject{currentmarker}{}%
  2024. \end{pgfscope}%
  2025. \end{pgfscope}%
  2026. \begin{pgfscope}%
  2027. \pgfsetbuttcap%
  2028. \pgfsetroundjoin%
  2029. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2030. \pgfsetfillcolor{currentfill}%
  2031. \pgfsetlinewidth{0.803000pt}%
  2032. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2033. \pgfsetstrokecolor{currentstroke}%
  2034. \pgfsetdash{}{0pt}%
  2035. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  2036. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  2037. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  2038. \pgfusepath{stroke,fill}%
  2039. }%
  2040. \begin{pgfscope}%
  2041. \pgfsys@transformshift{3.886134in}{0.320555in}%
  2042. \pgfsys@useobject{currentmarker}{}%
  2043. \end{pgfscope}%
  2044. \end{pgfscope}%
  2045. \begin{pgfscope}%
  2046. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2047. \pgfsetstrokecolor{textcolor}%
  2048. \pgfsetfillcolor{textcolor}%
  2049. \pgftext[x=3.886134in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2005}\)}%
  2050. \end{pgfscope}%
  2051. \begin{pgfscope}%
  2052. \pgfsetbuttcap%
  2053. \pgfsetroundjoin%
  2054. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2055. \pgfsetfillcolor{currentfill}%
  2056. \pgfsetlinewidth{0.803000pt}%
  2057. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2058. \pgfsetstrokecolor{currentstroke}%
  2059. \pgfsetdash{}{0pt}%
  2060. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  2061. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  2062. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  2063. \pgfusepath{stroke,fill}%
  2064. }%
  2065. \begin{pgfscope}%
  2066. \pgfsys@transformshift{4.512396in}{0.320555in}%
  2067. \pgfsys@useobject{currentmarker}{}%
  2068. \end{pgfscope}%
  2069. \end{pgfscope}%
  2070. \begin{pgfscope}%
  2071. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2072. \pgfsetstrokecolor{textcolor}%
  2073. \pgfsetfillcolor{textcolor}%
  2074. \pgftext[x=4.512396in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2010}\)}%
  2075. \end{pgfscope}%
  2076. \begin{pgfscope}%
  2077. \pgfsetbuttcap%
  2078. \pgfsetroundjoin%
  2079. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2080. \pgfsetfillcolor{currentfill}%
  2081. \pgfsetlinewidth{0.803000pt}%
  2082. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2083. \pgfsetstrokecolor{currentstroke}%
  2084. \pgfsetdash{}{0pt}%
  2085. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  2086. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  2087. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  2088. \pgfusepath{stroke,fill}%
  2089. }%
  2090. \begin{pgfscope}%
  2091. \pgfsys@transformshift{5.138659in}{0.320555in}%
  2092. \pgfsys@useobject{currentmarker}{}%
  2093. \end{pgfscope}%
  2094. \end{pgfscope}%
  2095. \begin{pgfscope}%
  2096. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2097. \pgfsetstrokecolor{textcolor}%
  2098. \pgfsetfillcolor{textcolor}%
  2099. \pgftext[x=5.138659in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2015}\)}%
  2100. \end{pgfscope}%
  2101. \begin{pgfscope}%
  2102. \pgfsetbuttcap%
  2103. \pgfsetroundjoin%
  2104. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2105. \pgfsetfillcolor{currentfill}%
  2106. \pgfsetlinewidth{0.803000pt}%
  2107. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2108. \pgfsetstrokecolor{currentstroke}%
  2109. \pgfsetdash{}{0pt}%
  2110. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2111. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2112. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  2113. \pgfusepath{stroke,fill}%
  2114. }%
  2115. \begin{pgfscope}%
  2116. \pgfsys@transformshift{3.385124in}{0.465023in}%
  2117. \pgfsys@useobject{currentmarker}{}%
  2118. \end{pgfscope}%
  2119. \end{pgfscope}%
  2120. \begin{pgfscope}%
  2121. \pgfsetbuttcap%
  2122. \pgfsetroundjoin%
  2123. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2124. \pgfsetfillcolor{currentfill}%
  2125. \pgfsetlinewidth{0.803000pt}%
  2126. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2127. \pgfsetstrokecolor{currentstroke}%
  2128. \pgfsetdash{}{0pt}%
  2129. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2130. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2131. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  2132. \pgfusepath{stroke,fill}%
  2133. }%
  2134. \begin{pgfscope}%
  2135. \pgfsys@transformshift{3.385124in}{1.839074in}%
  2136. \pgfsys@useobject{currentmarker}{}%
  2137. \end{pgfscope}%
  2138. \end{pgfscope}%
  2139. \begin{pgfscope}%
  2140. \pgfsetbuttcap%
  2141. \pgfsetroundjoin%
  2142. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2143. \pgfsetfillcolor{currentfill}%
  2144. \pgfsetlinewidth{0.803000pt}%
  2145. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2146. \pgfsetstrokecolor{currentstroke}%
  2147. \pgfsetdash{}{0pt}%
  2148. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2149. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2150. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  2151. \pgfusepath{stroke,fill}%
  2152. }%
  2153. \begin{pgfscope}%
  2154. \pgfsys@transformshift{3.385124in}{3.213125in}%
  2155. \pgfsys@useobject{currentmarker}{}%
  2156. \end{pgfscope}%
  2157. \end{pgfscope}%
  2158. \begin{pgfscope}%
  2159. \pgfsetbuttcap%
  2160. \pgfsetroundjoin%
  2161. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2162. \pgfsetfillcolor{currentfill}%
  2163. \pgfsetlinewidth{0.602250pt}%
  2164. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2165. \pgfsetstrokecolor{currentstroke}%
  2166. \pgfsetdash{}{0pt}%
  2167. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2168. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2169. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2170. \pgfusepath{stroke,fill}%
  2171. }%
  2172. \begin{pgfscope}%
  2173. \pgfsys@transformshift{3.385124in}{0.331864in}%
  2174. \pgfsys@useobject{currentmarker}{}%
  2175. \end{pgfscope}%
  2176. \end{pgfscope}%
  2177. \begin{pgfscope}%
  2178. \pgfsetbuttcap%
  2179. \pgfsetroundjoin%
  2180. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2181. \pgfsetfillcolor{currentfill}%
  2182. \pgfsetlinewidth{0.602250pt}%
  2183. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2184. \pgfsetstrokecolor{currentstroke}%
  2185. \pgfsetdash{}{0pt}%
  2186. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2187. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2188. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2189. \pgfusepath{stroke,fill}%
  2190. }%
  2191. \begin{pgfscope}%
  2192. \pgfsys@transformshift{3.385124in}{0.402150in}%
  2193. \pgfsys@useobject{currentmarker}{}%
  2194. \end{pgfscope}%
  2195. \end{pgfscope}%
  2196. \begin{pgfscope}%
  2197. \pgfsetbuttcap%
  2198. \pgfsetroundjoin%
  2199. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2200. \pgfsetfillcolor{currentfill}%
  2201. \pgfsetlinewidth{0.602250pt}%
  2202. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2203. \pgfsetstrokecolor{currentstroke}%
  2204. \pgfsetdash{}{0pt}%
  2205. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2206. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2207. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2208. \pgfusepath{stroke,fill}%
  2209. }%
  2210. \begin{pgfscope}%
  2211. \pgfsys@transformshift{3.385124in}{0.878654in}%
  2212. \pgfsys@useobject{currentmarker}{}%
  2213. \end{pgfscope}%
  2214. \end{pgfscope}%
  2215. \begin{pgfscope}%
  2216. \pgfsetbuttcap%
  2217. \pgfsetroundjoin%
  2218. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2219. \pgfsetfillcolor{currentfill}%
  2220. \pgfsetlinewidth{0.602250pt}%
  2221. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2222. \pgfsetstrokecolor{currentstroke}%
  2223. \pgfsetdash{}{0pt}%
  2224. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2225. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2226. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2227. \pgfusepath{stroke,fill}%
  2228. }%
  2229. \begin{pgfscope}%
  2230. \pgfsys@transformshift{3.385124in}{1.120612in}%
  2231. \pgfsys@useobject{currentmarker}{}%
  2232. \end{pgfscope}%
  2233. \end{pgfscope}%
  2234. \begin{pgfscope}%
  2235. \pgfsetbuttcap%
  2236. \pgfsetroundjoin%
  2237. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2238. \pgfsetfillcolor{currentfill}%
  2239. \pgfsetlinewidth{0.602250pt}%
  2240. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2241. \pgfsetstrokecolor{currentstroke}%
  2242. \pgfsetdash{}{0pt}%
  2243. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2244. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2245. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2246. \pgfusepath{stroke,fill}%
  2247. }%
  2248. \begin{pgfscope}%
  2249. \pgfsys@transformshift{3.385124in}{1.292285in}%
  2250. \pgfsys@useobject{currentmarker}{}%
  2251. \end{pgfscope}%
  2252. \end{pgfscope}%
  2253. \begin{pgfscope}%
  2254. \pgfsetbuttcap%
  2255. \pgfsetroundjoin%
  2256. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2257. \pgfsetfillcolor{currentfill}%
  2258. \pgfsetlinewidth{0.602250pt}%
  2259. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2260. \pgfsetstrokecolor{currentstroke}%
  2261. \pgfsetdash{}{0pt}%
  2262. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2263. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2264. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2265. \pgfusepath{stroke,fill}%
  2266. }%
  2267. \begin{pgfscope}%
  2268. \pgfsys@transformshift{3.385124in}{1.425444in}%
  2269. \pgfsys@useobject{currentmarker}{}%
  2270. \end{pgfscope}%
  2271. \end{pgfscope}%
  2272. \begin{pgfscope}%
  2273. \pgfsetbuttcap%
  2274. \pgfsetroundjoin%
  2275. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2276. \pgfsetfillcolor{currentfill}%
  2277. \pgfsetlinewidth{0.602250pt}%
  2278. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2279. \pgfsetstrokecolor{currentstroke}%
  2280. \pgfsetdash{}{0pt}%
  2281. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2282. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2283. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2284. \pgfusepath{stroke,fill}%
  2285. }%
  2286. \begin{pgfscope}%
  2287. \pgfsys@transformshift{3.385124in}{1.534243in}%
  2288. \pgfsys@useobject{currentmarker}{}%
  2289. \end{pgfscope}%
  2290. \end{pgfscope}%
  2291. \begin{pgfscope}%
  2292. \pgfsetbuttcap%
  2293. \pgfsetroundjoin%
  2294. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2295. \pgfsetfillcolor{currentfill}%
  2296. \pgfsetlinewidth{0.602250pt}%
  2297. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2298. \pgfsetstrokecolor{currentstroke}%
  2299. \pgfsetdash{}{0pt}%
  2300. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2301. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2302. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2303. \pgfusepath{stroke,fill}%
  2304. }%
  2305. \begin{pgfscope}%
  2306. \pgfsys@transformshift{3.385124in}{1.626231in}%
  2307. \pgfsys@useobject{currentmarker}{}%
  2308. \end{pgfscope}%
  2309. \end{pgfscope}%
  2310. \begin{pgfscope}%
  2311. \pgfsetbuttcap%
  2312. \pgfsetroundjoin%
  2313. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2314. \pgfsetfillcolor{currentfill}%
  2315. \pgfsetlinewidth{0.602250pt}%
  2316. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2317. \pgfsetstrokecolor{currentstroke}%
  2318. \pgfsetdash{}{0pt}%
  2319. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2320. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2321. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2322. \pgfusepath{stroke,fill}%
  2323. }%
  2324. \begin{pgfscope}%
  2325. \pgfsys@transformshift{3.385124in}{1.705915in}%
  2326. \pgfsys@useobject{currentmarker}{}%
  2327. \end{pgfscope}%
  2328. \end{pgfscope}%
  2329. \begin{pgfscope}%
  2330. \pgfsetbuttcap%
  2331. \pgfsetroundjoin%
  2332. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2333. \pgfsetfillcolor{currentfill}%
  2334. \pgfsetlinewidth{0.602250pt}%
  2335. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2336. \pgfsetstrokecolor{currentstroke}%
  2337. \pgfsetdash{}{0pt}%
  2338. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2339. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2340. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2341. \pgfusepath{stroke,fill}%
  2342. }%
  2343. \begin{pgfscope}%
  2344. \pgfsys@transformshift{3.385124in}{1.776201in}%
  2345. \pgfsys@useobject{currentmarker}{}%
  2346. \end{pgfscope}%
  2347. \end{pgfscope}%
  2348. \begin{pgfscope}%
  2349. \pgfsetbuttcap%
  2350. \pgfsetroundjoin%
  2351. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2352. \pgfsetfillcolor{currentfill}%
  2353. \pgfsetlinewidth{0.602250pt}%
  2354. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2355. \pgfsetstrokecolor{currentstroke}%
  2356. \pgfsetdash{}{0pt}%
  2357. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2358. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2359. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2360. \pgfusepath{stroke,fill}%
  2361. }%
  2362. \begin{pgfscope}%
  2363. \pgfsys@transformshift{3.385124in}{2.252705in}%
  2364. \pgfsys@useobject{currentmarker}{}%
  2365. \end{pgfscope}%
  2366. \end{pgfscope}%
  2367. \begin{pgfscope}%
  2368. \pgfsetbuttcap%
  2369. \pgfsetroundjoin%
  2370. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2371. \pgfsetfillcolor{currentfill}%
  2372. \pgfsetlinewidth{0.602250pt}%
  2373. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2374. \pgfsetstrokecolor{currentstroke}%
  2375. \pgfsetdash{}{0pt}%
  2376. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2377. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2378. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2379. \pgfusepath{stroke,fill}%
  2380. }%
  2381. \begin{pgfscope}%
  2382. \pgfsys@transformshift{3.385124in}{2.494663in}%
  2383. \pgfsys@useobject{currentmarker}{}%
  2384. \end{pgfscope}%
  2385. \end{pgfscope}%
  2386. \begin{pgfscope}%
  2387. \pgfsetbuttcap%
  2388. \pgfsetroundjoin%
  2389. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2390. \pgfsetfillcolor{currentfill}%
  2391. \pgfsetlinewidth{0.602250pt}%
  2392. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2393. \pgfsetstrokecolor{currentstroke}%
  2394. \pgfsetdash{}{0pt}%
  2395. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2396. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2397. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2398. \pgfusepath{stroke,fill}%
  2399. }%
  2400. \begin{pgfscope}%
  2401. \pgfsys@transformshift{3.385124in}{2.666336in}%
  2402. \pgfsys@useobject{currentmarker}{}%
  2403. \end{pgfscope}%
  2404. \end{pgfscope}%
  2405. \begin{pgfscope}%
  2406. \pgfsetbuttcap%
  2407. \pgfsetroundjoin%
  2408. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2409. \pgfsetfillcolor{currentfill}%
  2410. \pgfsetlinewidth{0.602250pt}%
  2411. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2412. \pgfsetstrokecolor{currentstroke}%
  2413. \pgfsetdash{}{0pt}%
  2414. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2415. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2416. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2417. \pgfusepath{stroke,fill}%
  2418. }%
  2419. \begin{pgfscope}%
  2420. \pgfsys@transformshift{3.385124in}{2.799495in}%
  2421. \pgfsys@useobject{currentmarker}{}%
  2422. \end{pgfscope}%
  2423. \end{pgfscope}%
  2424. \begin{pgfscope}%
  2425. \pgfsetbuttcap%
  2426. \pgfsetroundjoin%
  2427. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2428. \pgfsetfillcolor{currentfill}%
  2429. \pgfsetlinewidth{0.602250pt}%
  2430. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2431. \pgfsetstrokecolor{currentstroke}%
  2432. \pgfsetdash{}{0pt}%
  2433. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2434. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2435. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2436. \pgfusepath{stroke,fill}%
  2437. }%
  2438. \begin{pgfscope}%
  2439. \pgfsys@transformshift{3.385124in}{2.908294in}%
  2440. \pgfsys@useobject{currentmarker}{}%
  2441. \end{pgfscope}%
  2442. \end{pgfscope}%
  2443. \begin{pgfscope}%
  2444. \pgfsetbuttcap%
  2445. \pgfsetroundjoin%
  2446. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2447. \pgfsetfillcolor{currentfill}%
  2448. \pgfsetlinewidth{0.602250pt}%
  2449. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2450. \pgfsetstrokecolor{currentstroke}%
  2451. \pgfsetdash{}{0pt}%
  2452. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2453. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2454. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2455. \pgfusepath{stroke,fill}%
  2456. }%
  2457. \begin{pgfscope}%
  2458. \pgfsys@transformshift{3.385124in}{3.000282in}%
  2459. \pgfsys@useobject{currentmarker}{}%
  2460. \end{pgfscope}%
  2461. \end{pgfscope}%
  2462. \begin{pgfscope}%
  2463. \pgfsetbuttcap%
  2464. \pgfsetroundjoin%
  2465. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2466. \pgfsetfillcolor{currentfill}%
  2467. \pgfsetlinewidth{0.602250pt}%
  2468. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2469. \pgfsetstrokecolor{currentstroke}%
  2470. \pgfsetdash{}{0pt}%
  2471. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2472. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2473. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2474. \pgfusepath{stroke,fill}%
  2475. }%
  2476. \begin{pgfscope}%
  2477. \pgfsys@transformshift{3.385124in}{3.079966in}%
  2478. \pgfsys@useobject{currentmarker}{}%
  2479. \end{pgfscope}%
  2480. \end{pgfscope}%
  2481. \begin{pgfscope}%
  2482. \pgfsetbuttcap%
  2483. \pgfsetroundjoin%
  2484. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2485. \pgfsetfillcolor{currentfill}%
  2486. \pgfsetlinewidth{0.602250pt}%
  2487. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2488. \pgfsetstrokecolor{currentstroke}%
  2489. \pgfsetdash{}{0pt}%
  2490. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2491. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2492. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2493. \pgfusepath{stroke,fill}%
  2494. }%
  2495. \begin{pgfscope}%
  2496. \pgfsys@transformshift{3.385124in}{3.150252in}%
  2497. \pgfsys@useobject{currentmarker}{}%
  2498. \end{pgfscope}%
  2499. \end{pgfscope}%
  2500. \begin{pgfscope}%
  2501. \pgfsetbuttcap%
  2502. \pgfsetroundjoin%
  2503. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2504. \pgfsetfillcolor{currentfill}%
  2505. \pgfsetlinewidth{0.602250pt}%
  2506. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2507. \pgfsetstrokecolor{currentstroke}%
  2508. \pgfsetdash{}{0pt}%
  2509. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2510. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2511. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2512. \pgfusepath{stroke,fill}%
  2513. }%
  2514. \begin{pgfscope}%
  2515. \pgfsys@transformshift{3.385124in}{3.626756in}%
  2516. \pgfsys@useobject{currentmarker}{}%
  2517. \end{pgfscope}%
  2518. \end{pgfscope}%
  2519. \begin{pgfscope}%
  2520. \pgfsetbuttcap%
  2521. \pgfsetroundjoin%
  2522. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2523. \pgfsetfillcolor{currentfill}%
  2524. \pgfsetlinewidth{0.602250pt}%
  2525. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2526. \pgfsetstrokecolor{currentstroke}%
  2527. \pgfsetdash{}{0pt}%
  2528. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2529. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2530. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2531. \pgfusepath{stroke,fill}%
  2532. }%
  2533. \begin{pgfscope}%
  2534. \pgfsys@transformshift{3.385124in}{3.868714in}%
  2535. \pgfsys@useobject{currentmarker}{}%
  2536. \end{pgfscope}%
  2537. \end{pgfscope}%
  2538. \begin{pgfscope}%
  2539. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2540. \pgfsetstrokecolor{textcolor}%
  2541. \pgfsetfillcolor{textcolor}%
  2542. \pgftext[x=3.280957in,y=2.168555in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle P(b_k=1|\)trade\(\displaystyle )\)}%
  2543. \end{pgfscope}%
  2544. \begin{pgfscope}%
  2545. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2546. \pgfusepath{clip}%
  2547. \pgfsetrectcap%
  2548. \pgfsetroundjoin%
  2549. \pgfsetlinewidth{0.501875pt}%
  2550. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  2551. \pgfsetstrokecolor{currentstroke}%
  2552. \pgfsetdash{}{0pt}%
  2553. \pgfpathmoveto{\pgfqpoint{3.385124in}{1.889351in}}%
  2554. \pgfpathlineto{\pgfqpoint{3.510376in}{1.663213in}}%
  2555. \pgfpathlineto{\pgfqpoint{3.635629in}{1.514113in}}%
  2556. \pgfpathlineto{\pgfqpoint{3.760881in}{1.504688in}}%
  2557. \pgfpathlineto{\pgfqpoint{3.886134in}{1.473522in}}%
  2558. \pgfpathlineto{\pgfqpoint{4.011386in}{1.589499in}}%
  2559. \pgfpathlineto{\pgfqpoint{4.136639in}{1.590126in}}%
  2560. \pgfpathlineto{\pgfqpoint{4.261891in}{1.709485in}}%
  2561. \pgfpathlineto{\pgfqpoint{4.387144in}{1.627816in}}%
  2562. \pgfpathlineto{\pgfqpoint{4.512396in}{1.464487in}}%
  2563. \pgfpathlineto{\pgfqpoint{4.637649in}{1.396082in}}%
  2564. \pgfpathlineto{\pgfqpoint{4.762901in}{1.036772in}}%
  2565. \pgfpathlineto{\pgfqpoint{4.888154in}{1.206007in}}%
  2566. \pgfpathlineto{\pgfqpoint{5.013407in}{0.808474in}}%
  2567. \pgfpathlineto{\pgfqpoint{5.138659in}{1.320737in}}%
  2568. \pgfpathlineto{\pgfqpoint{5.263912in}{1.099507in}}%
  2569. \pgfpathlineto{\pgfqpoint{5.389164in}{1.570234in}}%
  2570. \pgfpathlineto{\pgfqpoint{5.514417in}{1.386103in}}%
  2571. \pgfpathlineto{\pgfqpoint{5.639669in}{1.469371in}}%
  2572. \pgfusepath{stroke}%
  2573. \end{pgfscope}%
  2574. \begin{pgfscope}%
  2575. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2576. \pgfusepath{clip}%
  2577. \pgfsetrectcap%
  2578. \pgfsetroundjoin%
  2579. \pgfsetlinewidth{0.501875pt}%
  2580. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  2581. \pgfsetstrokecolor{currentstroke}%
  2582. \pgfsetdash{}{0pt}%
  2583. \pgfpathmoveto{\pgfqpoint{3.385124in}{1.584519in}}%
  2584. \pgfpathlineto{\pgfqpoint{3.510376in}{1.497538in}}%
  2585. \pgfpathlineto{\pgfqpoint{3.635629in}{1.785915in}}%
  2586. \pgfpathlineto{\pgfqpoint{3.760881in}{1.443950in}}%
  2587. \pgfpathlineto{\pgfqpoint{3.886134in}{1.875998in}}%
  2588. \pgfpathlineto{\pgfqpoint{4.011386in}{2.003130in}}%
  2589. \pgfpathlineto{\pgfqpoint{4.136639in}{1.768697in}}%
  2590. \pgfpathlineto{\pgfqpoint{4.261891in}{1.799921in}}%
  2591. \pgfpathlineto{\pgfqpoint{4.387144in}{1.614700in}}%
  2592. \pgfpathlineto{\pgfqpoint{4.512396in}{1.589637in}}%
  2593. \pgfpathlineto{\pgfqpoint{4.637649in}{1.396082in}}%
  2594. \pgfpathlineto{\pgfqpoint{4.762901in}{1.196856in}}%
  2595. \pgfpathlineto{\pgfqpoint{4.888154in}{0.912125in}}%
  2596. \pgfpathlineto{\pgfqpoint{5.013407in}{0.595631in}}%
  2597. \pgfpathlineto{\pgfqpoint{5.138659in}{1.187577in}}%
  2598. \pgfpathlineto{\pgfqpoint{5.263912in}{1.138020in}}%
  2599. \pgfpathlineto{\pgfqpoint{5.389164in}{1.362384in}}%
  2600. \pgfpathlineto{\pgfqpoint{5.514417in}{0.488555in}}%
  2601. \pgfpathlineto{\pgfqpoint{5.639669in}{0.950779in}}%
  2602. \pgfusepath{stroke}%
  2603. \end{pgfscope}%
  2604. \begin{pgfscope}%
  2605. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2606. \pgfusepath{clip}%
  2607. \pgfsetrectcap%
  2608. \pgfsetroundjoin%
  2609. \pgfsetlinewidth{0.501875pt}%
  2610. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  2611. \pgfsetstrokecolor{currentstroke}%
  2612. \pgfsetdash{}{0pt}%
  2613. \pgfpathmoveto{\pgfqpoint{3.385124in}{1.901168in}}%
  2614. \pgfpathlineto{\pgfqpoint{3.510376in}{1.999737in}}%
  2615. \pgfpathlineto{\pgfqpoint{3.635629in}{2.023002in}}%
  2616. \pgfpathlineto{\pgfqpoint{3.760881in}{1.990740in}}%
  2617. \pgfpathlineto{\pgfqpoint{3.886134in}{2.075175in}}%
  2618. \pgfpathlineto{\pgfqpoint{4.011386in}{2.071797in}}%
  2619. \pgfpathlineto{\pgfqpoint{4.136639in}{1.655768in}}%
  2620. \pgfpathlineto{\pgfqpoint{4.261891in}{1.844810in}}%
  2621. \pgfpathlineto{\pgfqpoint{4.387144in}{1.824885in}}%
  2622. \pgfpathlineto{\pgfqpoint{4.512396in}{1.539178in}}%
  2623. \pgfpathlineto{\pgfqpoint{4.637649in}{1.341795in}}%
  2624. \pgfpathlineto{\pgfqpoint{4.762901in}{1.494625in}}%
  2625. \pgfpathlineto{\pgfqpoint{4.888154in}{1.297995in}}%
  2626. \pgfpathlineto{\pgfqpoint{5.013407in}{1.278980in}}%
  2627. \pgfpathlineto{\pgfqpoint{5.138659in}{1.244453in}}%
  2628. \pgfpathlineto{\pgfqpoint{5.263912in}{1.404339in}}%
  2629. \pgfpathlineto{\pgfqpoint{5.389164in}{1.696331in}}%
  2630. \pgfpathlineto{\pgfqpoint{5.514417in}{1.263893in}}%
  2631. \pgfpathlineto{\pgfqpoint{5.639669in}{1.207846in}}%
  2632. \pgfusepath{stroke}%
  2633. \end{pgfscope}%
  2634. \begin{pgfscope}%
  2635. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2636. \pgfusepath{clip}%
  2637. \pgfsetrectcap%
  2638. \pgfsetroundjoin%
  2639. \pgfsetlinewidth{0.501875pt}%
  2640. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  2641. \pgfsetstrokecolor{currentstroke}%
  2642. \pgfsetdash{}{0pt}%
  2643. \pgfpathmoveto{\pgfqpoint{3.385124in}{2.147014in}}%
  2644. \pgfpathlineto{\pgfqpoint{3.510376in}{2.153127in}}%
  2645. \pgfpathlineto{\pgfqpoint{3.635629in}{1.916156in}}%
  2646. \pgfpathlineto{\pgfqpoint{3.760881in}{2.134042in}}%
  2647. \pgfpathlineto{\pgfqpoint{3.886134in}{2.171753in}}%
  2648. \pgfpathlineto{\pgfqpoint{4.011386in}{2.220324in}}%
  2649. \pgfpathlineto{\pgfqpoint{4.136639in}{2.093759in}}%
  2650. \pgfpathlineto{\pgfqpoint{4.261891in}{2.179991in}}%
  2651. \pgfpathlineto{\pgfqpoint{4.387144in}{2.184895in}}%
  2652. \pgfpathlineto{\pgfqpoint{4.512396in}{2.057203in}}%
  2653. \pgfpathlineto{\pgfqpoint{4.637649in}{2.154676in}}%
  2654. \pgfpathlineto{\pgfqpoint{4.762901in}{2.041415in}}%
  2655. \pgfpathlineto{\pgfqpoint{4.888154in}{1.944036in}}%
  2656. \pgfpathlineto{\pgfqpoint{5.013407in}{1.719137in}}%
  2657. \pgfpathlineto{\pgfqpoint{5.138659in}{1.780293in}}%
  2658. \pgfpathlineto{\pgfqpoint{5.263912in}{1.841374in}}%
  2659. \pgfpathlineto{\pgfqpoint{5.389164in}{1.776015in}}%
  2660. \pgfpathlineto{\pgfqpoint{5.514417in}{1.487489in}}%
  2661. \pgfpathlineto{\pgfqpoint{5.639669in}{1.590867in}}%
  2662. \pgfusepath{stroke}%
  2663. \end{pgfscope}%
  2664. \begin{pgfscope}%
  2665. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2666. \pgfusepath{clip}%
  2667. \pgfsetrectcap%
  2668. \pgfsetroundjoin%
  2669. \pgfsetlinewidth{0.501875pt}%
  2670. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  2671. \pgfsetstrokecolor{currentstroke}%
  2672. \pgfsetdash{}{0pt}%
  2673. \pgfpathmoveto{\pgfqpoint{3.385124in}{2.544940in}}%
  2674. \pgfpathlineto{\pgfqpoint{3.510376in}{2.359571in}}%
  2675. \pgfpathlineto{\pgfqpoint{3.635629in}{2.311972in}}%
  2676. \pgfpathlineto{\pgfqpoint{3.760881in}{2.369258in}}%
  2677. \pgfpathlineto{\pgfqpoint{3.886134in}{2.480686in}}%
  2678. \pgfpathlineto{\pgfqpoint{4.011386in}{2.532193in}}%
  2679. \pgfpathlineto{\pgfqpoint{4.136639in}{2.403345in}}%
  2680. \pgfpathlineto{\pgfqpoint{4.261891in}{2.406967in}}%
  2681. \pgfpathlineto{\pgfqpoint{4.387144in}{2.428551in}}%
  2682. \pgfpathlineto{\pgfqpoint{4.512396in}{2.306484in}}%
  2683. \pgfpathlineto{\pgfqpoint{4.637649in}{2.161909in}}%
  2684. \pgfpathlineto{\pgfqpoint{4.762901in}{2.128512in}}%
  2685. \pgfpathlineto{\pgfqpoint{4.888154in}{2.110876in}}%
  2686. \pgfpathlineto{\pgfqpoint{5.013407in}{1.836522in}}%
  2687. \pgfpathlineto{\pgfqpoint{5.138659in}{1.951965in}}%
  2688. \pgfpathlineto{\pgfqpoint{5.263912in}{1.896159in}}%
  2689. \pgfpathlineto{\pgfqpoint{5.389164in}{2.042333in}}%
  2690. \pgfpathlineto{\pgfqpoint{5.514417in}{1.557775in}}%
  2691. \pgfpathlineto{\pgfqpoint{5.639669in}{1.901948in}}%
  2692. \pgfusepath{stroke}%
  2693. \end{pgfscope}%
  2694. \begin{pgfscope}%
  2695. \pgfsetrectcap%
  2696. \pgfsetmiterjoin%
  2697. \pgfsetlinewidth{0.803000pt}%
  2698. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2699. \pgfsetstrokecolor{currentstroke}%
  2700. \pgfsetdash{}{0pt}%
  2701. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.320555in}}%
  2702. \pgfpathlineto{\pgfqpoint{3.385124in}{4.016555in}}%
  2703. \pgfusepath{stroke}%
  2704. \end{pgfscope}%
  2705. \begin{pgfscope}%
  2706. \pgfsetrectcap%
  2707. \pgfsetmiterjoin%
  2708. \pgfsetlinewidth{0.803000pt}%
  2709. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2710. \pgfsetstrokecolor{currentstroke}%
  2711. \pgfsetdash{}{0pt}%
  2712. \pgfpathmoveto{\pgfqpoint{5.639669in}{0.320555in}}%
  2713. \pgfpathlineto{\pgfqpoint{5.639669in}{4.016555in}}%
  2714. \pgfusepath{stroke}%
  2715. \end{pgfscope}%
  2716. \begin{pgfscope}%
  2717. \pgfsetrectcap%
  2718. \pgfsetmiterjoin%
  2719. \pgfsetlinewidth{0.803000pt}%
  2720. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2721. \pgfsetstrokecolor{currentstroke}%
  2722. \pgfsetdash{}{0pt}%
  2723. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.320555in}}%
  2724. \pgfpathlineto{\pgfqpoint{5.639669in}{0.320555in}}%
  2725. \pgfusepath{stroke}%
  2726. \end{pgfscope}%
  2727. \begin{pgfscope}%
  2728. \pgfsetrectcap%
  2729. \pgfsetmiterjoin%
  2730. \pgfsetlinewidth{0.803000pt}%
  2731. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2732. \pgfsetstrokecolor{currentstroke}%
  2733. \pgfsetdash{}{0pt}%
  2734. \pgfpathmoveto{\pgfqpoint{3.385124in}{4.016555in}}%
  2735. \pgfpathlineto{\pgfqpoint{5.639669in}{4.016555in}}%
  2736. \pgfusepath{stroke}%
  2737. \end{pgfscope}%
  2738. \begin{pgfscope}%
  2739. \pgfsetbuttcap%
  2740. \pgfsetmiterjoin%
  2741. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  2742. \pgfsetfillcolor{currentfill}%
  2743. \pgfsetfillopacity{0.800000}%
  2744. \pgfsetlinewidth{1.003750pt}%
  2745. \definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%
  2746. \pgfsetstrokecolor{currentstroke}%
  2747. \pgfsetstrokeopacity{0.800000}%
  2748. \pgfsetdash{}{0pt}%
  2749. \pgfpathmoveto{\pgfqpoint{4.185169in}{3.364557in}}%
  2750. \pgfpathlineto{\pgfqpoint{5.581336in}{3.364557in}}%
  2751. \pgfpathquadraticcurveto{\pgfqpoint{5.598002in}{3.364557in}}{\pgfqpoint{5.598002in}{3.381223in}}%
  2752. \pgfpathlineto{\pgfqpoint{5.598002in}{3.958222in}}%
  2753. \pgfpathquadraticcurveto{\pgfqpoint{5.598002in}{3.974889in}}{\pgfqpoint{5.581336in}{3.974889in}}%
  2754. \pgfpathlineto{\pgfqpoint{4.185169in}{3.974889in}}%
  2755. \pgfpathquadraticcurveto{\pgfqpoint{4.168503in}{3.974889in}}{\pgfqpoint{4.168503in}{3.958222in}}%
  2756. \pgfpathlineto{\pgfqpoint{4.168503in}{3.381223in}}%
  2757. \pgfpathquadraticcurveto{\pgfqpoint{4.168503in}{3.364557in}}{\pgfqpoint{4.185169in}{3.364557in}}%
  2758. \pgfpathlineto{\pgfqpoint{4.185169in}{3.364557in}}%
  2759. \pgfpathclose%
  2760. \pgfusepath{stroke,fill}%
  2761. \end{pgfscope}%
  2762. \begin{pgfscope}%
  2763. \pgfsetbuttcap%
  2764. \pgfsetroundjoin%
  2765. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  2766. \pgfsetfillcolor{currentfill}%
  2767. \pgfsetlinewidth{1.003750pt}%
  2768. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  2769. \pgfsetstrokecolor{currentstroke}%
  2770. \pgfsetdash{}{0pt}%
  2771. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2772. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2773. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2774. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2775. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2776. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2777. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2778. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2779. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2780. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2781. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2782. \pgfpathclose%
  2783. \pgfusepath{stroke,fill}%
  2784. }%
  2785. \begin{pgfscope}%
  2786. \pgfsys@transformshift{4.285169in}{3.905097in}%
  2787. \pgfsys@useobject{currentmarker}{}%
  2788. \end{pgfscope}%
  2789. \end{pgfscope}%
  2790. \begin{pgfscope}%
  2791. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2792. \pgfsetstrokecolor{textcolor}%
  2793. \pgfsetfillcolor{textcolor}%
  2794. \pgftext[x=4.435169in,y=3.883222in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric particle}%
  2795. \end{pgfscope}%
  2796. \begin{pgfscope}%
  2797. \pgfsetbuttcap%
  2798. \pgfsetroundjoin%
  2799. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  2800. \pgfsetfillcolor{currentfill}%
  2801. \pgfsetlinewidth{1.003750pt}%
  2802. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  2803. \pgfsetstrokecolor{currentstroke}%
  2804. \pgfsetdash{}{0pt}%
  2805. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2806. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2807. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2808. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2809. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2810. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2811. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2812. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2813. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2814. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2815. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2816. \pgfpathclose%
  2817. \pgfusepath{stroke,fill}%
  2818. }%
  2819. \begin{pgfscope}%
  2820. \pgfsys@transformshift{4.285169in}{3.787764in}%
  2821. \pgfsys@useobject{currentmarker}{}%
  2822. \end{pgfscope}%
  2823. \end{pgfscope}%
  2824. \begin{pgfscope}%
  2825. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2826. \pgfsetstrokecolor{textcolor}%
  2827. \pgfsetfillcolor{textcolor}%
  2828. \pgftext[x=4.435169in,y=3.765889in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont soft supersymmetry}%
  2829. \end{pgfscope}%
  2830. \begin{pgfscope}%
  2831. \pgfsetbuttcap%
  2832. \pgfsetroundjoin%
  2833. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  2834. \pgfsetfillcolor{currentfill}%
  2835. \pgfsetlinewidth{1.003750pt}%
  2836. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  2837. \pgfsetstrokecolor{currentstroke}%
  2838. \pgfsetdash{}{0pt}%
  2839. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2840. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2841. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2842. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2843. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2844. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2845. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2846. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2847. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2848. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2849. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2850. \pgfpathclose%
  2851. \pgfusepath{stroke,fill}%
  2852. }%
  2853. \begin{pgfscope}%
  2854. \pgfsys@transformshift{4.285169in}{3.670764in}%
  2855. \pgfsys@useobject{currentmarker}{}%
  2856. \end{pgfscope}%
  2857. \end{pgfscope}%
  2858. \begin{pgfscope}%
  2859. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2860. \pgfsetstrokecolor{textcolor}%
  2861. \pgfsetfillcolor{textcolor}%
  2862. \pgftext[x=4.435169in,y=3.648889in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric model}%
  2863. \end{pgfscope}%
  2864. \begin{pgfscope}%
  2865. \pgfsetbuttcap%
  2866. \pgfsetroundjoin%
  2867. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  2868. \pgfsetfillcolor{currentfill}%
  2869. \pgfsetlinewidth{1.003750pt}%
  2870. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  2871. \pgfsetstrokecolor{currentstroke}%
  2872. \pgfsetdash{}{0pt}%
  2873. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2874. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2875. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2876. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2877. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2878. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2879. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2880. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2881. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2882. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2883. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2884. \pgfpathclose%
  2885. \pgfusepath{stroke,fill}%
  2886. }%
  2887. \begin{pgfscope}%
  2888. \pgfsys@transformshift{4.285169in}{3.553765in}%
  2889. \pgfsys@useobject{currentmarker}{}%
  2890. \end{pgfscope}%
  2891. \end{pgfscope}%
  2892. \begin{pgfscope}%
  2893. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2894. \pgfsetstrokecolor{textcolor}%
  2895. \pgfsetfillcolor{textcolor}%
  2896. \pgftext[x=4.435169in,y=3.531890in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric theory}%
  2897. \end{pgfscope}%
  2898. \begin{pgfscope}%
  2899. \pgfsetbuttcap%
  2900. \pgfsetroundjoin%
  2901. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  2902. \pgfsetfillcolor{currentfill}%
  2903. \pgfsetlinewidth{1.003750pt}%
  2904. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  2905. \pgfsetstrokecolor{currentstroke}%
  2906. \pgfsetdash{}{0pt}%
  2907. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2908. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2909. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2910. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2911. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2912. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2913. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2914. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2915. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2916. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2917. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2918. \pgfpathclose%
  2919. \pgfusepath{stroke,fill}%
  2920. }%
  2921. \begin{pgfscope}%
  2922. \pgfsys@transformshift{4.285169in}{3.436765in}%
  2923. \pgfsys@useobject{currentmarker}{}%
  2924. \end{pgfscope}%
  2925. \end{pgfscope}%
  2926. \begin{pgfscope}%
  2927. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2928. \pgfsetstrokecolor{textcolor}%
  2929. \pgfsetfillcolor{textcolor}%
  2930. \pgftext[x=4.435169in,y=3.414890in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric standard}%
  2931. \end{pgfscope}%
  2932. \end{pgfpicture}%
  2933. \makeatother%
  2934. \endgroup%