?PNG  IHDR ? f ??C1 sRGB ?? gAMA ? a pHYs ? ??od GIDATx^LeY?a?("Bh?_????q5k?*:t0A-o??]VkJM??f?8\k2ll1]q????T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/user1137782/www/china1.by/classwithtostring.php on line 86

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
Jc@s dZddkZddkZddkiZddkiZddk i Z ddk i Z ddk iZddkiZddkiZddkiZddkiZdZdZdeefZdeifdYZdefd YZd Zd ee_dS( s Colorbar toolkit with two classes and a function: :class:`ColorbarBase` the base class with full colorbar drawing functionality. It can be used as-is to make a colorbar for a given colormap; a mappable object (e.g., image) is not needed. :class:`Colorbar` the derived class for use with images or contour plots. :func:`make_axes` a function for resizing an axes and adding a second axes suitable for a colorbar The :meth:`~matplotlib.figure.Figure.colorbar` method uses :func:`make_axes` and :class:`Colorbar`; the :func:`~matplotlib.pyplot.colorbar` function is a thin wrapper over :meth:`~matplotlib.figure.Figure.colorbar`. iNse ============= ==================================================== Property Description ============= ==================================================== *orientation* vertical or horizontal *fraction* 0.15; fraction of original axes to use for colorbar *pad* 0.05 if vertical, 0.15 if horizontal; fraction of original axes between colorbar and new image axes *shrink* 1.0; fraction by which to shrink the colorbar *aspect* 20; ratio of long to short dimensions ============= ==================================================== sH =========== ==================================================== Property Description =========== ==================================================== *extend* [ 'neither' | 'both' | 'min' | 'max' ] If not 'neither', make pointed end(s) for out-of- range values. These are set for a given colormap using the colormap set_under and set_over methods. *spacing* [ 'uniform' | 'proportional' ] Uniform spacing gives each discrete color the same space; proportional makes the space proportional to the data interval. *ticks* [ None | list of ticks | Locator object ] If None, ticks are determined automatically from the input. *format* [ None | format string | Formatter object ] If None, the :class:`~matplotlib.ticker.ScalarFormatter` is used. If a format string is given, e.g. '%.3f', that is used. An alternative :class:`~matplotlib.ticker.Formatter` object may be given instead. *drawedges* [ False | True ] If true, draw lines at color boundaries. =========== ==================================================== The following will probably be useful only in the context of indexed colors (that is, when the mappable has norm=NoNorm()), or other unusual circumstances. ============ =================================================== Property Description ============ =================================================== *boundaries* None or a sequence *values* None or a sequence which must be of length 1 less than the sequence of *boundaries*. For each region delimited by adjacent entries in *boundaries*, the color mapped to the corresponding value in values will be used. ============ =================================================== s> Add a colorbar to a plot. Function signatures for the :mod:`~matplotlib.pyplot` interface; all but the first are also method signatures for the :meth:`~matplotlib.figure.Figure.colorbar` method:: colorbar(**kwargs) colorbar(mappable, **kwargs) colorbar(mappable, cax=cax, **kwargs) colorbar(mappable, ax=ax, **kwargs) arguments: *mappable* the :class:`~matplotlib.image.Image`, :class:`~matplotlib.contour.ContourSet`, etc. to which the colorbar applies; this argument is mandatory for the :meth:`~matplotlib.figure.Figure.colorbar` method but optional for the :func:`~matplotlib.pyplot.colorbar` function, which sets the default to the current image. keyword arguments: *cax* None | axes object into which the colorbar will be drawn *ax* None | parent axes object from which space for a new colorbar axes will be stolen Additional keyword arguments are of two kinds: axes properties: %s colorbar properties: %s If *mappable* is a :class:`~matplotlib.contours.ContourSet`, its *extend* kwarg is included automatically. Note that the *shrink* kwarg provides a simple way to keep a vertical colorbar, for example, from being taller than the axes of the mappable to which the colorbar is attached; but it is a manual method requiring some trial and error. If the colorbar is too tall (or a horizontal colorbar is too wide) use a smaller value of *shrink*. For more precise control, you can manually specify the positions of the axes objects in which the mappable and the colorbar are drawn. In this case, do not use any of the axes properties kwargs. returns: :class:`~matplotlib.colorbar.Colorbar` instance; see also its base class, :class:`~matplotlib.colorbar.ColorbarBase`. Call the :meth:`~matplotlib.colorbar.ColorbarBase.set_label` method to label the colorbar. t ColorbarBasec Bs&eZdZheddd6eddd6eddd6eddd6Zddd ddd dd ddeed Zd Z dZ dZ dZ dZ dZdZdZdZddZdZdZdZdZdZdZdZdZRS( s Draw a colorbar in an existing axes. This is a base class for the :class:`Colorbar` class, which is the basis for the :func:`~matplotlib.pyplot.colorbar` method and pylab function. It is also useful by itself for showing a colormap. If the *cmap* kwarg is given but *boundaries* and *values* are left as None, then the colormap will be displayed on a 0-1 scale. To show the under- and over-value colors, specify the *norm* as:: colors.Normalize(clip=False) To show the colors versus index instead of on the 0-1 scale, use:: norm=colors.NoNorm. Useful attributes: :attr:`ax` the Axes instance in which the colorbar is drawn :attr:`lines` a LineCollection if lines were drawn, otherwise None :attr:`dividers` a LineCollection if *drawedges* is True, otherwise None Useful public methods are :meth:`set_label` and :meth:`add_lines`. ii@Btneitheriitbothtmintmaxg?tverticaltuniformcCs||_|djoti}n|djoti}n||_tii|d|d|||_ ||_ ||_ |i ||_ | |_||_| |_| |_d|_d|_d|_|idti| o"ti| dt| |_n | |_| djo<t|itioti|_ qti!|_ n0ti"| oti#| |_ n | |_ |i$dS(Ntcmaptnormttnbins(%taxtNonetcmtget_cmaptcolorst NormalizetalphatScalarMappablet__init__tvaluest boundariestextendt _slice_dictt_insidetspacingt orientationt drawedgestfilledtsolidstlinestdividerst set_labeltcbooktiterablettickert FixedLocatortlentlocatort isinstanceRtLogNormt LogFormattert formattertScalarFormattertis_string_liketFormatStrFormattertdraw_all(tselfR RRRRRRRRttickstformatRR((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyRs<               "   cCs|i|i|i\}}|iddtif}|i|||io|i|||n|i dS(ss Calculate any free parameters based on the current cmap and norm, and do all the drawing. N( t_process_valuest _find_ranget_mesht_valuestnptnewaxist _config_axesRt _add_solidst _set_label(R/tXtYtC((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR.s   c Cs|i}|it|it|i||}|i||i|ii|i |ii t i |dddf|dddfdt iddt id|_|i|i|iid|iidt id}ti|d |d |dd d d |_|i|i|i\}}}|idjoa|ig|iid|iid|i||i||iii |nN|ig|i!id|i||i"||i!ii |dS(s1 Make an axes patch and outline. Niitcolorsaxes.edgecolort linewidthsaxes.linewidthsaxes.facecolort edgecolort facecolorg{Gz?tzorderiRtrighttbottom(#R t set_frame_ontFalset set_navigatet_outlinetupdate_datalimtset_xlimtdataLimt intervalxtset_ylimt intervalyRtLine2DtmpltrcParamstoutlinet add_artistt set_clip_boxR t set_clip_pathtpatchestPolygontpatcht_tickerRt set_xtickstyaxistset_label_positiontset_ticks_positiont set_ytickstset_yticklabelstget_major_formattertset_offset_stringtxaxistset_xticklabels( R/R;R<R txytcR0t ticklabelst offset_string((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR8s>    <        cCsJ|idjo|ii|i|in|ii|i|idS(NR(RR t set_ylabelt_labelt_labelkwt set_xlabel(R/((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR:$scKs ||_||_|idS(s5 Label the long axis of the colorbar N(RiRjR:(R/tlabeltkw((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR *s  c Cs|id}dd|d|dd|dd|d|d|dg }tititi||}tititi||}|it|df}|it|df}|idjoti||fSti||fS(so Return *x*, *y* arrays of colorbar bounding polygon, taking orientation into account. iiit horizontal( tshapeR6ttaketravelt transposetreshapeR%Rthstack(R/R;R<tNtiitxty((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyRH3s =$$cCs|id}|idjo>g}td|dD]}|t||||q5~Sg}td|dD]}|t||||qs~SdS(sM Return the separator line segments; helper for _add_solids. iRiN(RoRtrangetzip(R/R;R<Rut_[1]tit_[2]((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyt_edgesBs >cCs,|idjo|||f}n+ti|ti|ti|f}h|id6|id6dd6|id6}|ii}|iit |ii ||}|ii|||_ |i oYt i|i||dtidfd d tid f|_|ii|ind S( sp Draw the colors using :meth:`~matplotlib.axes.Axes.pcolor`; optionally add separators. RRRtflattshadingRRsaxes.edgecolort linewidthsg?saxes.linewidthN(RR6RrRRRR tisholdtholdtTruetpcolorRRt collectionstLineCollectionR~RPRQRtadd_collection(R/R;R<R=targsRmt_holdtcol((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR9Ns*  cCs4t|}|i|\}}t||jotdntiddg}ti||\}} |idjo<g} t|D]} | t|| | | q~ } n9g} t|D]} | t| | || q~ } t i | d|}||_ |i ||i i|dS(s- Draw lines on the colorbar. s!levels are outside colorbar rangegg?RRN(R%t_locatet ValueErrorR6tarraytmeshgridRRyRzRRRt set_colorR R(R/tlevelsRRRutdummyRxRwR;R<R{R|RdR}R((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyt add_linesjs <8  c Cs/|i}|i}|djo|idjot|itio?t|i }dt |d}t i d|dd}qt|iti o%|ii}t i|dd}qt|itiot i}qt i}q|i|i}t i|dd}nt|itio|i d|i df}n|i|if}|i|i|i||i||i||i|ti|}|i|\}}|i|g}t|D]\} } ||| | q~} |i} || | fS( si Return two sequences: ticks (colorbar data locations) and ticklabels (strings). ii tbasetoffsetiR iN(R&R*R RR'RRtNoNormR%R5tintR#t IndexLocatort BoundaryNormR$R(t LogLocatort MaxNLocatort _boundariesRtvmintvmaxtcreate_dummy_axistset_view_intervaltset_data_intervalR6RRtset_locst enumeratet get_offset( R/R&R*tnvRtbtintvR0R{R|ttRfRg((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyRY~s>           6 c Cs[|djo |i}n|dj oti|dt|_|idjoZd|id |id|_t|i t i o |idi ti |_ndSti|i|_dS|idj oti|i|_|idjotit|idd}d|id |id|dd+d|d|d |d Ntdg@iiiiRRR(Rsmin(Rsmax(Rsmin(Rsmax(Rsmin(Rsmax(Rsmin(Rsmax(R RR6tasarraytfloatRRR5R'RRRtastypetint16RtzerosR%t _uniform_yRRutarangeRRRtlisttscaledRRtinverseR2(R/Rtvtbi((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR2sx     # '%%  "    %cCs.|i|i}|d|_|d|_dS(s Set :attr:`vmin` and :attr:`vmax` attributes to the first and last boundary excluding extended end boundaries. iiN(RRRR(R/R((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyR3s cCsOt|i}|idjo|d8}n|idjo|d8}n|S(s1number of boundaries **before** extension of endsRiRRi(sminsmax(R%RR(R/tnb((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyt _central_Ns cCsP|iid}|idjo|d7}n|idjo|d7}n|S(se Based on the colormap and extend variable, return the number of boundaries. iRiRR(sminsmax(RRuR(R/Ru((s9/usr/lib64/python2.6/site-packages/matplotlib/colorbar.pyt _extended_Ns cCs|idjotidd|}n|idjo.ti|dd}d|ds&  ,<L +