From 11b575376aa70b33ffa85c0b10025c36656e1700 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Tue, 4 Jun 2024 16:09:55 +0300 Subject: [PATCH 01/10] Add example of idling resources with saxpy --- .../demos/idle_resources/common.h | 46 +++++++++ .../demos/idle_resources/hip_saxpy.cpp | 39 +++++++ .../demos/idle_resources/omp_saxpy.cpp | 16 +++ .../demos/idle_resources/run.sh | 97 ++++++++++++++++++ .../demos/idle_resources/runtimes.png | Bin 0 -> 17982 bytes .../idle_resources/runtimes_annotated.png | Bin 0 -> 34569 bytes .../demos/idle_resources/serial_saxpy.cpp | 15 +++ 7 files changed, 213 insertions(+) create mode 100644 application-performance/demos/idle_resources/common.h create mode 100644 application-performance/demos/idle_resources/hip_saxpy.cpp create mode 100644 application-performance/demos/idle_resources/omp_saxpy.cpp create mode 100755 application-performance/demos/idle_resources/run.sh create mode 100644 application-performance/demos/idle_resources/runtimes.png create mode 100644 application-performance/demos/idle_resources/runtimes_annotated.png create mode 100644 application-performance/demos/idle_resources/serial_saxpy.cpp diff --git a/application-performance/demos/idle_resources/common.h b/application-performance/demos/idle_resources/common.h new file mode 100644 index 000000000..e3c5fe1c0 --- /dev/null +++ b/application-performance/demos/idle_resources/common.h @@ -0,0 +1,46 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include + +template constexpr void saxpy(size_t i, T a, T *x, T *y) { + y[i] += a * x[i]; +} + +template void run(Func f) { + constexpr std::array ns{1 << 6, 1 << 9, 1 << 12, 1 << 15, + 1 << 18, 1 << 21, 1 << 24, 1 << 27}; + constexpr auto max_n = *std::max_element(ns.begin(), ns.end()); + std::vector x(max_n); + std::vector y(max_n); + constexpr float a = 2.3f; + constexpr float b = 1.1f; + constexpr float c = 3.4f; + + for (size_t i = 0; i < max_n; i++) { + x[i] = a * sin(i); + } + + for (size_t n : ns) { + for (size_t i = 0; i < n; i++) { + y[i] = b * cos(i); + } + + constexpr auto n_iter = 20; + size_t avg = 0; + for (uint32_t iteration = 0; iteration < n_iter; iteration++) { + const auto default_duration = f(n, c, x, y); + const std::chrono::duration dur = + default_duration; + avg += iteration == 0 ? 0 : dur.count(); + } + + printf("%ld, %ld\n", n, avg / (n_iter - 1)); + } +} diff --git a/application-performance/demos/idle_resources/hip_saxpy.cpp b/application-performance/demos/idle_resources/hip_saxpy.cpp new file mode 100644 index 000000000..49a66b4b2 --- /dev/null +++ b/application-performance/demos/idle_resources/hip_saxpy.cpp @@ -0,0 +1,39 @@ +#include "common.h" +#include +#include + +__global__ void saxpy_(int n, float a, float *x, float *y) +{ + int tid = threadIdx.x + blockIdx.x * blockDim.x; + int stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + saxpy(tid, a, x, y); + } +} + +int main() { + run([](auto n, auto a, auto &x, auto &y) -> auto { + // Setup code + const size_t num_bytes = n * sizeof(decltype(x.back())); + float *d_x = nullptr; + float *d_y = nullptr; + hipMalloc(reinterpret_cast(&d_x), num_bytes); + hipMalloc(reinterpret_cast(&d_y), num_bytes); + hipMemcpy(d_x, x.data(), num_bytes, hipMemcpyHostToDevice); + hipMemcpy(d_y, y.data(), num_bytes, hipMemcpyHostToDevice); + + const dim3 blocks(32); + const dim3 threads(256); + + const auto c_start = std::chrono::high_resolution_clock::now(); + saxpy_<<>>(n, a, d_x, d_y); + hipDeviceSynchronize(); + const auto c_end = std::chrono::high_resolution_clock::now(); + + hipFree(d_x); + hipFree(d_y); + + return c_end - c_start; + }); +} diff --git a/application-performance/demos/idle_resources/omp_saxpy.cpp b/application-performance/demos/idle_resources/omp_saxpy.cpp new file mode 100644 index 000000000..7876df0c2 --- /dev/null +++ b/application-performance/demos/idle_resources/omp_saxpy.cpp @@ -0,0 +1,16 @@ +#include "common.h" +#include + +int main() { + run([](auto n, auto a, auto &x, auto &y) -> auto { + const auto c_start = std::chrono::high_resolution_clock::now(); + +#pragma omp parallel for + for (size_t i = 0; i < n; i++) { + saxpy(i, a, x.data(), y.data()); + } + + const auto c_end = std::chrono::high_resolution_clock::now(); + return c_end - c_start; + }); +} diff --git a/application-performance/demos/idle_resources/run.sh b/application-performance/demos/idle_resources/run.sh new file mode 100755 index 000000000..3f8b9bc63 --- /dev/null +++ b/application-performance/demos/idle_resources/run.sh @@ -0,0 +1,97 @@ +#!/bin/bash + +submit_job() { + sub="$(sbatch "$@")" + + if [[ "$sub" =~ Submitted\ batch\ job\ ([0-9]+) ]]; then + echo "${BASH_REMATCH[1]}" + else + exit 1 + fi +} + +echo "Submitting cpu job" +cpujobid=$(submit_job << "EOF" +#!/bin/bash + +#SBATCH --account=project_462000007 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=64 +#SBATCH --time=00:05:00 +#SBATCH --partition=small +#SBATCH --exclusive + +ml PrgEnv-cray + +(srun CC -O3 -fopenmp -o omp omp_saxpy.cpp) || { echo "Failed to build openMP code"; exit 1; } +(srun CC -O3 -o serial serial_saxpy.cpp) || { echo "Failed to build serial code"; exit 1; } + +export OMP_PROC_BIND=close +export OMP_PLACES=cores + +for nthreads in 2 64 +do + OMP_NUM_THREADS=$nthreads srun ./omp > "omp$nthreads.dat" +done + +srun ./serial > "serial.dat" +EOF +) + +echo "Submitting gpu job" +gpujobid=$(submit_job << EOF +#!/bin/bash + +#SBATCH --account=project_462000007 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --gpus-per-task=1 +#SBATCH --time=00:05:00 +#SBATCH --partition=dev-g + +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm + +(srun CC -std=c++17 -xhip -O3 -o hip hip_saxpy.cpp) || { echo "Failed to build hip code"; exit 1; } +srun ./hip > "hip.dat" +EOF +) + +echo "Submitting gnuplot job with dependency on jobs $cpujobid and $gpujobid" +sbatch --dependency afterok:$cpujobid:$gpujobid << EOF +#!/bin/bash + +#SBATCH --account=project_462000007 +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --time=00:05:00 +#SBATCH --partition=small + +echo "Loading modules" +ml LUMI/23.09 +ml partition/L +ml gnuplot/5.4.8-cpeGNU-23.09 + +echo "Plotting problem size vs runtimes " +gnuplot -e "\ + set terminal png size 1000,1000; \ + set output \"runtimes.png\"; \ + set style data linespoints; \ + set key left top; \ + set logscale x; \ + set logscale y; \ + set title \"Runtime of Ax + y with different implementation strategies\"; \ + set xlabel \"problem size\"; \ + set ylabel \"time [ns]\"; \ + set grid; \ + set xrange [10:1000000000]; \ + plot \"serial.dat\" title \"serial\" lw 2.5, \ + \"omp2.dat\" title \"OpenMP 2 threads\" lw 2.5, \ + \"omp64.dat\" title \"OpenMP 64 threads\" lw 2.5, \ + \"hip.dat\" title \"gpu\" lw 2.5; \ + " +EOF diff --git a/application-performance/demos/idle_resources/runtimes.png b/application-performance/demos/idle_resources/runtimes.png new file mode 100644 index 0000000000000000000000000000000000000000..b5470cbfee727a99bbe485e79707d586d24e8b9d GIT binary patch literal 17982 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 zπ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 Lc?Yj(9`OGG(YRy3 literal 0 HcmV?d00001 diff --git a/application-performance/demos/idle_resources/serial_saxpy.cpp b/application-performance/demos/idle_resources/serial_saxpy.cpp new file mode 100644 index 000000000..c193852de --- /dev/null +++ b/application-performance/demos/idle_resources/serial_saxpy.cpp @@ -0,0 +1,15 @@ +#include "common.h" +#include + +int main() { + run([](auto n, auto a, auto &x, auto &y) -> auto { + const auto c_start = std::chrono::high_resolution_clock::now(); + + for (size_t i = 0; i < n; i++) { + saxpy(i, a, x.data(), y.data()); + } + + const auto c_end = std::chrono::high_resolution_clock::now(); + return c_end - c_start; + }); +} From 73676982ee54f72717f24fbf8c40b158d74f7914 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Wed, 5 Jun 2024 09:01:19 +0300 Subject: [PATCH 02/10] Modify plot --- .../idle_resources/runtimes_annotated.png | Bin 34569 -> 33568 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/application-performance/demos/idle_resources/runtimes_annotated.png b/application-performance/demos/idle_resources/runtimes_annotated.png index 2c9c6bc6057bc2c3ff819a9988ca426230dc07af..fc5995f7632db2180d73f76cb7df92ffb9a94bbc 100644 GIT binary patch delta 27406 zcmXtAbzD>L+onT6MUifh5b2VU0umzKF*>9{7)TC5X;8XLIyOebNRiGjxzUJ{BScCm z-vj<${@4fD&hy;Q9oKc;_c;(1kCPvc^N9_I`dz|fW~dLnMCymXHjnD?-qz8hz3d6w zFaPkd3csi^+JQT2+a@})hB(0e$nF1PpdbG*UE6Jbjw+vCeA9Rt!z;G(r+9wTqEj{} z?rig_ssBn1`uDW09CH%7S>9#y*1YVGpZCG01=Cwu-bs&@ zI^*~+*RGDg$rvjfj%wC!$WNz9c6=Iq^h7mRd{6NAxXGflYu(gho&H!Gz57Xgn1sx) zkDVj3(5o(qp(d~B$K}47!R>|!<8YzUytcU5=A%1KNbF!}(BINF0-@_+>EQQ+g}ImJ_Q!Jn|x5-pxi z_TLw3DK{_OVC!9KI{)D}|5M6RiQ@r-;Q(2?QZ3Z_)wE_*3hfSeQM%4hc~Pdxj>M02 z-LV$ich>v`in=<3#mOcn+oID(x}y!#CZ>C%O<1o>QcWEj8fGOocj;S>w#VrFnS$Sw zD+{rG6xw-Rs5#`&mtmi4H#=u<5&Qu^xT#fB$~^+9z?|XOm&Ec_=p1}WS)$3XP(EQ5lP)H zRGK}vu^s)x*j8sORkv@za&fHm`*Mr$^BS5bbIhJ zoLarrjYjrye;?&=0kZjfCxoL~9_waq0xcbR6 z{zG9*MwhQ)EbxN@%a6xJwSgLmL@7(mN76X3MUXm# z2H*MKX5r>4%#wCGo+y7BOA^oSwT;$`nq&E{&5e)hQAP9(0}SAd-hu*&q1eZtmZ?Ju zZQiDg$;JL;3lSLoxN(}kaMYboyz>Lrp;b!3>8eny1+zjSwwqLi74L9qf3m%Qr>N`$ zeM+bAbEBgFK0FkJ?kUYWZRwR*P~2Y~Tya)K=?G}|b{vqMJ5O2}!so8d|)bMO!D%_#TH+dPdnLKot4fhD#SXi;7yR- zA=SE9xF1VVF~)Q9WeI#iuj!i;R!uzjbcK>ZmW?S6YvJfg1ash>$jlTrCR42IAdC9P z_|ZJ%bn$P9#H&D$PGMSi+DrX%Kjv*7g-5^rCi6G@huZ-5tGKoOZNI?@*7tc-xuVoX zuMg|72nX4YGcKUZ0iUCWct1IRoTh2#qz(5!@z6b$gb^seS(e}Ac7CaYW%{JoM0#|G zWvYC@JOAQm>Z5V2){Fh(eYqzj@^5uipQc4mHGyY-Ac!n-^k|PAri^UAhL$C?Bh*)k zxlvpJtY%NRa>fTT_Vi5?Bsi5@ZQKbebTmAQtl$M#zI%%#*F7JYG)CCPS*47UXb7R2 zD~(f*5gek{`omtWdLEzfGi4f7Vvkjqrg(`96px+Fu_(H&R7Grihc0LdX@hf~oU^>4 zOCk93-7zRfC6mEZM^&Zu^f*VQ@cU~De?in)(k3Azl*j4QHH9S`ug`n6hR>SRlgm~i zn};LY9;AEJzi|{B^%i~-3*;E2^p=J^4RGGP_YsmtoQ9GP|C6kd@9!0&lf4twEdN`E zSZGB{F!)_KgFJshb+MP*Ie#sqYA@A@&PLmL+aLKOy7JDz^TuH1CoolC)}{ry^LM46 zXj{Pk_|Wcq4f0cwyUw3=LqBB46LjT5hEl1UMVL6SaGd45$x2}O^PX`L_?rdT-$Y`l zKZi11zs{MtuXm1qcika5B0yxxsg`S~JgxA&dozSDKOYBQX$w&%h>ed;r$sg7onP*+ zyvgSAcyi~E^3NtqO|)M90#V5VYbaCbx9sOnKB+?q2@?Z~6wAa%lP~d7x_L-6dvcYJ z)`=Nc?-f!0VrCfk?@`vR4NtT3CYd;4aa$q@nfe)1GDB4Ap2RDZbA*hEZe>d(Uzj#V z)|P!4DQdq%9nw|ZW_6;S5ojk%JNCk!JVowa*S=ijii(2f&jN;X*4atMrMIMI`o41BVQV3urc~&v3erAq>zlR85c0uk5AgfMu*S=m(I%jr!#8WM zx@U=aC*L~;it+~vbA|RZpyPqOPGjPO<5CXWw*WUkacbNZ>HIkZEGhNjt=;+bbq<+pWN{{!a%b~R@ zZe*+vPUN(M1T%qwSo=SHaW?PCd~f>dzZsI=2TNpvPh&oHDQOe+k`6`QA)2=6 z+9smrw(?Q<(tY-f!65PBPJKb}+mO(o!Ibh)W~l_9y>+Db4oKFqkx1*KlANA0NMxOas3K@LEJ`Ad`+XCqe{vi2SROr)-~E2?ATl&n zkxH9C)AcRrei}1b;$hDyIhm@H9_+P`O$*c!v~5t{aY8tZF1o|(#zN5|B<^m(j|=nr zeUhBaQGy&ah^YF4J^Ra*=bZzmF^+;t(y_5rN>qdFizU7`@%$Mq&~JIM6r7N3QY;WX z*oj-ah#qXGAHArquj7S1E+rMAgLT?iANKAF$2)RcLn~eLwV6eX^0ep^a-q-pl)F&B zUuaiwuyokDNd&=1ZvhT%&*uuPiaZZqwM*%7yF|WZVI+ATty1u^Z0R}8#1$+cc_v%> zdpF54#des%04;M5WgAX{h>Fs4@=DL{f=uu0SXXwdub6kmOswyCl#khdmzhk{&orSY?6p&H-#uy>hKz4GU}pD=eUTn?ERo5J zPuAHbkH03PP=l(t+dJ;$ioQEpT@Zidh#OL7BKN4EztNt^W+!n#=iag+c5N=4u8{B( z$d#6T3b%{q6LzEBTg}IltG+gKY8}~Fn)j*Y?mkZz`UO)dT5|fyNL*8v5IV-92fhC& zI-NlFvAtMhrf|J;ZtZW?i^rKM?SKOKYlbJKw#3Yn6nGfE9uf|p_(X_w2Td;0Pu%x5 z*|EjfZpThHHg@FsB4cOSNyPX3%EoOmV$R%uAP{e2EGCJKU0__dn_`Yrl8h#ZrIF+N zCM&aGsaCA{k;=M1>@}g?Q3&im8|aL_`D@GO?z;W#yKJQK1QS#Sq>7k+so1cyh3mV>q{2H!KSEPFq+xvYFViI4v?%#7s0wSnV{S;FrW_h~iX zFpk!0QDiKx-V>R(nB8VovOh%Q5#LqcyL|r9^0xvJO5?4No!%d0x`fKJH+YUvwX5zI zK8aM>>d6KLFxEy~M-rwV#FDOv^x7{5VaX!4VjVmm)~2KWqgEvUZKKPT#PY@0NUv7M zW7R=U@I&C+1;xnHJHf9Nu_o^oy5`f7yk7R13h{6mz-IOERfLSn=)8-^Q5Psjl=R_% zMbkvv<;}DGMx+=Y`&)ykNOAwvL2)K(^5>T4M0FgR;~IIpb>dQ@H{vE|@@=-#z1iD{ z$tk+{>LsoAx~Ao>7Wep+i4hEV7VA&3=n%5*E1c5(9R*0-p{Za!v5jLc2Z7S0@qD_p z2Xfm|kpmMso!L{V;R4;sJ3+Z_)^D=BC4$MEKC{hKA3%EU+n?NRYgo{yfj%QQ8P_8J zoXY6a)zM4MLYlqE`wEjeQ6-48vfK2HM4Bi}w#U8uyQOnoq9sE5msX>$mn@cwz8&{H zoo9mMkyf}B;A<(mh=M4wo-FRo#D~_|Ns|HvW_GLMr!ME17qymD;Yrsq^~~w67x8Hd zTd(g&GbFb9;3JOlgE^;DgPDrvS&Q#UgXzamVJX3-e-!QRa8yZP@q}HvRLW*|r?&??YLBiZ}!wZ=K$#H9 zZUF(V{%C5~q!MSLU`W7%XPp%m;mr0V30mXpj{L`s8YObieA)*#EL)EKDwWtF%$UOT zBfO@c)-9o*ze=hXY?Va*u=`M9{n|P6P4yv3!(%zoV+_Np7j-}z36z%jsa$}`A4c#X z+ud)p^ZsNoW}N*>0bV3U>|13bu2NBb#IFhc!f@s$!}Wx1dBufU$$^2Ofa15AcVFkS z{qp|gf4QKrrt{T?Wq35El$%F82LrLh4S2_NU-tw>o?I!V9I-`=E#@TcbktPywMiN5 zA|ezi*X(`bq5!&se;2w8SLpdnveg%_koEcCz07mWinD^e(VYE9hEE(~yf5yD`?BUj zzLD+;(8hHfdZ50&e7F5lWBOHgZ1Q)3QKE0*%KxR49+&tZveJD@CEsGiJKCgFifEw3 z`yg94fL~@#n8Y-hkj8h10!>R3uM(S}m0m{fo@Q1;t|I#xYp{$P`U1Id>?^Ys^!~e` z3@r)67m)#MX1SqOXAq6Zq{?{uqbZOE%f%y>>Lmq3L9G#+H|e*S)h~-4yyx zuEF!Fjqp3&zu$i!TPkYqpcjiQ4-}|Ytzxr3Xkw!s$HaCDJRnY~|5SWOHE(A4#fouJ zORTs^jCcC05QY!9@1TlJqN2Yw?Gxl|mSxeC9B0Av~sZ(m7M9ks3>Bt*Q&>xU_uikgVaT4~{TZG!{Y5n_XR;*zCDfrt3?Y#u6i|LLk*0HNY&#FJj% zPL7gJf)aC7ebMoevp{NY4CjNsikLK8u`@UVMc8I@;&>;5xz~DjZw68b6;$<;m9*V9KS&fSIhW1Oi(w z!Z*4*`f-IMc;8>YQTAmlxE^SHS~t^2+qp{D@>I~$YPeNU!&#`rd( z42~8sr^=fj!wwEfX13xpqQZ#k@ksccYbfUp&y*0Mp{A2CVWMwSAL00R)9=H%K{zEe z#&slDa5b59s5}lcS=@5s1;#qqnjK8|xN541OrUl6BUdn^Ixai}>sQetPZ-CwwhpZfN(w$91yzydBC48@P0SD2I0x>dx#=7=&d#m zN}F=anha&YI+kl6A>)aaUKIk0FZKs(;`NNqoSt1n!wMypSE~yjbbs9508#1LZQ%^u z+ghmkhW7p&wJ(F!Me8qL3)jPScq{n@|CCnr822bs*>06Ew69kn=8@DRI;NM=HnL|= z%{(gx2#}QTdw%l7tee~az&-8^zymP%mydyZU4m$=0GxJ7x@#;Sqc#n z0!dbfB~M-;w&BdXU9;^fA99C8jih*IL>#?#{Ue;0CPh=gj33r#41PxyRW>6dy0nXa zSdz$mNJS0_!`u4L47aTF)^o`<-kSe87r8UH-3|355?do-oi#sm-uZPbT+nkS8YcM; z|4`$%AlfMTyXr66%$BEQRL`#;SAWK^`1Ul5UU!*W*ZjvC>H2y&)1T2uD?HrIazbQN z1bKpC`kAGtt}IlUCylM549+)DmT(ZU)iLxBbfxjG=nB|>)x;*nbLZX;Yw8uvYY&-8 zWi&lhED6arqj1`~>GIYWqCmwb5+Q|T>t~_<;%I5>b4pxkPWUR%7%bWJeOXqKn^$lO zDU7yH=-JP=6boXBs7r-I_gmSaeBe40+Iv@K6Def5)W`xio_fkO50T>k z^xcD_P^EuQ*_{J&_w9*B_KLV7y1zXZ@g8Oxd9>71soghJXYaIcE^(HrH%2>wqw+a( zJpORUrS(%2!mk^)xk*s^7TkG9fofZc_R+6Vqn_uJWl(iZ+@IwJP_D8Xekvk($h=s( zzkuvEZ^~r}CS)kB#CV)ues|SX71tsa&{ZIcBy(#RNO^pL^8FO~gky}{JFa?7Fd^XX zySQKz3?ml!!!yHypAP~SN!TI;UZZuZd!TpDUQ&SiE}I{?)NY{H2yMlr*&heAj?TvU zY-K~<@;4WsGhbpcPFxeQ%Ew`Mu5NlC9UX3Q-C_R2B(4VD={Wg|+b)tsYl`@L4+{%B z+)+V6OI1OE+2f77y`zgA7S`MBpaf}^uX5DkD~+?!dU$)xYo7{0#`hnQo7LZWQFb5d z^ud7P72j1D2bpSgOyR1D$4`fvoz=Cf%CJgiqU(@nlFzu2Dp4zsKTrxTdoF$rSh;v} z#;{tQmf_?Ri(O$)Q?6(>U~Bl{KOPWykwlnGRK|HW7soe=j{R@nFTk-5eyA%6|K#jJ ztUNiXVehZ3%gnj+_1&+-6l-2k z=;}TfJkWfg{7Anr5ZY(=;fT_q!OU(n;1^Z6*ZhzW%8`ua-HWHs-(%6}Cu@a&px&e9 z=FstGJo|YM6r5lt)bi5uhmjoq6ZZal*Myw`&KsP4OGO^^L>=hUeu4Y*__U%6*D@B3 zdwsnkj?z&E+-y9>2-U9@UA>=J@P z;?|<}cDw@5o>}pV*gq5Dm9Vz4<&}6QENmkpY;XTeTp)>`fr;JD)=ofJSWJS~{+X2^ zuZXanJ+Fk7=rdknds|U^AzMKkI~$3lHw>KY0`?MC&qM@lc&+ROZFxm(1fTH&8;J1Q z3R~HUi3jgQ7>sVGf?WO3 z)-Tbk_-h((Q7d6CjWWfS%fbZmvmS?)KuMRjKJK0=#s8dicu9`O2F)x>ub5i{ofMV{ zy(o|OeG}6(ou7WWM^Kfv<2=t;dtPmgmA;0wMG{wkV*)q*rE3Y6fdpxajG9+NQOQ0F z;Iykwu9I)B#|^qOO_(Ng+FViF4>(<<@FeXg6i)lC+G-mS@%%V6o2HsHEdFx6W`@6? zNGko^qN33W+GIC=22oz^qm4S*PMIvp!-#BOEHVqnQ8k@Wd9J?dhbd)hU@>` z?Jus)>%NDpeO@q`C+(NDd&MIQ?TlPjYZiilw;^OPM#c|Qy^|u2P7-+ouiJXICprnu z&oh7bSGEa2kKVS>cbTD z6x*xyO-YEFXgS&5L4ELCNo$LELVX_m3uISk6fmdxsn2EmclpEG4!*zK(915e;gyo= z5t7cU%Rd2?(DJtZAaWjORuks(UtTrlzdlr7wk4<(mJWKWPJcA?v%21JYFTt?`K4TE zhzoe=XgZn4jH<}u2b^Sbd3ZQw%fUJ(;DPp=oFsp>ljs8eEHf%+J~Cv1KP+?6YQE)h z_`pR+^SYi`ITG0Xvf1t7q3iij1!hPVdP#cn@Za`HkDfxH?Y!1@>OY93P5H^j>k><* zhjShOoKS7>zckC^Gu(zv8sdg*bc`KIiMw^4Bl(`EPL^esXJBffA6sG8oT14;Puy9{ z`63B)VtI@}(2HMp3_`5th(BOz^H}u_*B4~qM-O`S%+DGl^-+HB^0q)={@!jwGtMb> z_uj;0i*#tGpAiIXpkp8&ffLe4%JY4{(AR>~PSxb3V~lLNv+shPzO%NnF4?Nk_gJy9 zcbqJYOHqv_;smm-nNVJN>Dq)@d}(1AytKe-F#G-(cdoQrmuEWen%g3Ah~!AT`V7)* z5@$h%CG1iibC$soKq1>QRzcr?(b%q0@|PaZ=^E<4u4?L&^YBN6#ruwPow89#9Nc-% zoGO*gYj42~rQe9szcD^VlzdnqutT#AUGI+&xpj+mk33HEvD3J$QpOkG?{r$cVf;`)aSI69gp1%oSq0@J}VS zEk}ZgCr4tFqG_qV@Q)QJF1d}4J3LHyy;jkRvxzn_ryQK*+I9238a)TGn6{cTcojk`5l z5JNAQQjO~)Tp2JFSQq{k0=)KmFx;#MeBL8x*?RqAMzh&h`Y7DG`R+>_L`RNd!Sosk ztAyHRuHrDjCYCccpUhsrgqEaPdj<`k4Y%lnJ1u$OxLuIg=aL-< zTnm2Ny(hMT-^v%=v2XU<5$EbvDvg@ z{lYO==?+ymeOMuW1RQ<&0TIpfpEo3HFQh|{uNQRMwF5VWWCsq$%EWs0#gHeU-kFm@ z1jT}~V7$a!&jFobb1v0+$K@*W2jc?NY8SK;LsV-zfn+_-p8jC4wFZi2sHKLRwqUw{ zbct{KW^od|fAzQ8EX~{fd3lW2l>6cm@-7z2)sIxjs{EnBhwtazDF(sV9K-hts}mp6 z<8a0!G`=C3x!OM_$xt@@GXH@*wi|quUF$o{|D8RI>-Y(3-7pZR3nH*dJ+K=HC4jIz zSn(|?)fgM+>(Y~Y&|EXp%^Y}uc`(>g{CAT-rg}BG(=?c-lnYNy8Im~nC=c}eiuao1 zt4=H_$@jjlVKHR+Fi-CVFpy1kGBcZqk8>@Tc_m(sK7 z>h?kXPxv;IE&8|*bKm5Qh^?nI%rf;+dN3T*hyCh^`VGodwMa7yDPKcE%kW9%E9=|g z(=(4ojgv5wH*V59h8O@lsW-!f+7zYGQ>A=#88?CRpCDaOYBTy?mU&3|4pNIjb8!{4q8~w7+M#=4 z;tU^NhBe0~&ELa7mEgnGzo%hH$Zi%^e)YmB_4{{uxojJT@zq|=G-8fj0G7IZjOjcI zs@_0eF8vyQ*4vLNhu)KAvS`Y*(E$8l-WSrUlXQGjx3>ihyy9BsetFVwd0w2|mfxJL zdoqcgeQ|F@*l3XYRcCV2F_@;rz)O*X55BD^2o-u-H2|UITc@z-<(8OMj5ag7XfJuF zlur#`$j6A74VAOkcd7Dk_lV{Ix$aDhOP2N~db#`2p|RbL3UUN;UcG&MmUc}Tg2@jc zUDmXm@Zjd8X?UH`o&CdvTNLHkRx)LAhbGm!lDAL7+Ib(tVKJndgU;mA*@kU^a!}q- zlc*g5oZc;r*fw%7?aj-~I+cWi`Lu-%q!r5hoQ}wb#MWqw@n+Wtj*?p?d|oDC)J3L7 z^IZ>yErwfT&ia)!qhDs2XL%` zHpqHU!B4k$JeDTR`g?!AgJKO+6jtNPK}Lkllo>yxH=@@o*uMVzoN3k8%>i+lyM)F) z7_e>)=%(tOHLI#Zenua-ABqFaH9{Bd+JW}X!URus-h3GC8G03Gb+b9Rk}rV)2wy@3 zS7U@VWM&R9QqY~NvD4ZeoTDDz3&B#pgMjX4bwRKqv>E!dS3$q-_cmHosX~18A;%QW z@qP+5Fe>NW9hb0*uMk_K5PiJcv;VX8_hK^~ZS-A%USyHj4q3kY-cXGflHTD{yCx&ha2CBsXH^nM9@V_ra;IWJ6 zY;bcyBu>?)S|1kh)`AG!Ba?|Jh}^yO=siE$T)769;vyfkpV90nC0mB%gECVTcuzNi zWdDR=xEhbF^N=93CdcmoDuB1T456*>9ue&P<+H)UGcs#(wQl&}q*<9}JM;UUEy|he zGgk}-%WCEuvb}li&gWBJj~GHJmhYX?06kJHKx-I*IP8Cg=)AW=Hi^0(SJk(EH?of2 z>om%P-$m_xg=ia$#u|7r+^j9M8*k=7+<7UNYefTuve``&?iIMgE&b^r>uo@i)iVn0 z)Fhv0ad_=8XPqQMi4yFFI=BQWHuh{%D~JX=Gie6o46Uj|k5tr=HA0Rd&GFV0&OBni zh7MVd7>^|uFd?EA%ef48n}7zW46U4k#{cD2X3S`ST~ZsG3CM(3I?=pFF2OT)a5h;W z{P?)LyA^e>8gDX-5RtzV+W>qApaa*b`A94fQ&)yt-Geq2Q~>9=LJ_dr8292-eE}8+ z2!0vtpaLOS07@T#FN(@Xl}(VS@Ag_bS2qBWlx(f`C_oKSv%aytbL|5f4-pI@!$Tj0 zAA=%xUUA&!$?qbhqK_94@oyj?Yg4&r{f9BICdj{13DRrY{;uu;ph14xj#!Wnl={d; z6#m`%H-Z+`P|hd$%QnfCK{u9EO)z?99@MH1nUB(QIPl5Eh8LovW6JTIvvhCl#~Q{% zyAK-~I`})^q&oJ~!kcU)vY;@{H>v!U7Y3`_Gyu22Zt5M%!QC565uk}Uy}UKC%RA&sjNXz;4RI5`va$S~s$RW* zDYmaVyJfwp+Dj`smE@=l&RBP+AAn%uHE|)H0sLgD&Fr*M4jo&mYI8KS#12h_? z4`3*7GhjiZktrt?Ep8%X@BBQ{2vWyq+zxE+MsN6R6ngJ{$Iq`#jR1}TP7s?J-9zFV zvcad~HVO4n>-XNXCdWrMP2scHV8sxi-H)(+CT{$9^}awK0=^EZzV^{q=ES$biqKv9 zeB+&?Dm~8qwa<6Q9$H<8#F`?trrDkXX%rp)3-qUT{KX}-TbmzLkN<1Y}JFU-sJ^k^p3r0Z3&PBtq)NW9S6ybTzgq% z((PTfg%c~|ObfQs0TviHxNHJ+$LS;Y3=MT%XXlH)DyddW4%7<JK)C>CK{Tt!!|`%xP^bd_ftU|ER1#z3yOC+RNyj`I5F55FHTRe4niX5%$j~X^*{){7@+qpM+wo7T!12n zbwhU9afIQfFClqNvsY?X(G#eIW3G}L^jLbTHaj~z7jC9(0f4Sgw)K^s_;6wa2f7v$ z-3d@AZn`OCm>rFNGYGvcd*hiC&m~ziUo2F{qQ}cgN!yz1iY%+ad40nrb8(AsyOkdD z3s9^_k2Mq*3A$1{MWFy41`t9P8RBZ}?!`^1hY+B6E0E^5Ie()Emt4VVJN5j=Y5#Zu z04qs;F%`&s+U`LeW&|kr1S>0`z9M(*BN3HEh>N|KX(=wKQOOJ$jMup@)f3Sw7zCt{(P`of?=gdDo zMZ3k!EFfhnrjWMII=3*k;9Mhk^CQzdsP2}m(5@j21)x!KpBDga!oEQ0FL945$4ulP zP#*1DT&Y>2q-!NH_?{T#glTqQg~GoQQDm9898YkZr&cMO-ky9P%Ng{=q*C>^1|@x# z?&zI0J(&?4zaa>V8sb(<2(K~!Oah=?0M+~6S~p&7ViU;-z6B;-oZU&nSx6H^?H_CE ziGRe*mH@d+Yu0~d#a&X3R-D;3u8nVmSAhaP>Ox5keq9i-?Y5z(;TmZee+a~-8h|&t zy9fr?B^~Tk06i?-;im6)szfVpu^$}|03(vTVyea#<_ZP_{A?CM&LviY_MUNk10DxB z3g7^3Y@gblV|H}s4E`-7>y@rRob?!v09>ufp_nQ}ZmZ2s&We`DlR{%KfD8?%oSL55 z_5dIJyF88no!aQO4MYI&$Fq0%CDCIhF}D_Q1F8ls6CDIKTtE_6WFc+iT)|m80QlWy z({d@ph(I7yVDbFQTdbq_d0A*v<9^cr)~j+C9L4tOP9!t9bu2FH?n|61QKMV<{?7t}d4||;hnZ#o z3)>n+yCT!wX5uVr$pQ9e9EB{BWLew9JaWw`fx8_i0uD0=Gn{poRO4>ZSxtpSP~An4 zxdOyNjr(6I@}TDpkJi%9TlRyh_yY>`sRp7`kc5AZYo@0CF3Jio`h+{x4K`JVtWh&? z#hm-x!u#=!V$GzVQS=)(&&~0q+Ws*cjJupI$ou^&-YZ9qW?eA zM@((wSZ3fH(oxO84HNGDZzUCk9g3IU3dLv%&2Wgtc0of7c984(XHCKXOFH|SjCrJ> znwZJ|!hJdisjG*urB=Phg#WW9@D&2HVA8Y(#LR}&vJReA45KSXcJltOa42I&XJ^SQ zYKd<}W~^L|COoSgM%QL*Y${%I8?IG_Q1HSm6q#}(bZxNcAWN@YmxyMrTmdO}BOe+K zU4S^QCaUW)(44-8e-D00L8rGH0Q?StDe;CZx`%e$%{L4M3w6I-Xt_M={IdN-{J!Pw zakL>kXp^(r7hnF`v->x?$AXYVn4&%(V%gj zuoJwNgE(}Hs=QxHbwmnO>y)v}MkBmGageJk*EY}vTuW%66t@&cN&=u4ZOrJ>?1_<3 zgXx+ZH_DDMEBif>CzL^eAYZh5Y<~7+b)D#&ft~~SeX|gtaNL64S`!g(5jhRK#r@OzDZ(uSX}qGJHf&7A2Jx()cjdMGOAHVsT+*F3(8SCy^VIg zB02*AF}xwjx|ikGLkD0P4+goUomr11q!%>VYPcfc#jjR@@en`*fqOg1>LJppBahZD z4=jQ;jkbxtt)Mz-0mLsv` zWj7nqH9+Fjz?#PtP0#!WlXtG4s+ser9sLPRF*S~Bj$ft~OSDAQH1HWLF&&Zme>?B^ zO5G)g%6N@AFB_XL0*W%Gj1N(C0Mvn4etLQ1*nT09jc_HirXGIkmPP9Pyiw%XD^mwL zJwWVB=8jW$t>U$Y!=RAE46B7#0DBm-I$dSno5L;Oztp-Kw+dh&h2&&3!ao9?Q4!cw z3s4_&T=LsQnpZ1{!7Aa!MhDg#^Pr2co%%+IEn59yxWNqM53VQwCP8Yc0TKgfB{Gj3 zzznxkv(VxeK=Yb%8kkZ;JQ8NRFR{xRBN^j6jQ)clprd%LTeHZ-9kEt`@5S;kRm_ps z&AqthZ5J~!u~dF;H8vWSS#aT**@kAm!<>e1fEuc!0du~fKCfNeGIsRk#MPb$I>BOe zgf+(ka)Z?Q5xGwtkierGAf994!WpxsAHdo79$kpd%{I7I*V&_qV=z8zAhqA?gwdqK zQ0lG$yw(wHPF2mOb(-@DFnqfu-@i2av#^|+XGRQ~*l&rzR>>Mxo=?XpPRg#r>TrBD4Tl3FiD1PZr3~I4} z=9+~;)YS|Yg?8_uo<}inrxh2TLca`^6%I2FjFST>qF{=7>8rf>3s7DFA~+i^P4>^G z=tW>G=c&^HRZ+EQB-minZENb#RN)rhIJW$qA}r;ywWNwf*v+^G0*WnGFa%QRHVA`=0!o_stB%W9;~3zOIWlNP%+s?o@rWBe4NwYz zZ!Sr$IZOY|Totc^(w`CRvWLbuj@44mnHVnc)@&0EQ`ku2RGC4BU10%+3=0^bXljfB zb>V{9^#uqT8&I{1w<`X$b!TH3SQCY<_n_(<(Lxy@^MOKfFm(uaUTWP*{Hl@eAmB*~ zeZ~aLY#cGWN`Rpw=z9S@E8<%Yl5o=^SRGkK{2oxjmNhU4fqp+APO#KmVGFQ-`~#~& z>$v6^{}TmWkQb&79)qO5HwFLY+rwQ}*QH>fGX{>Gf&`icEkLu1+jJcQ(+(%hD_-L& z&_dA;yNPos7W98N3!inwcid&8UxKVRj{TST80aZ#D{TT8;9+5$X#B?6JxO3RK#glu zxAPQe4s1wO{9Abq43?@39uEVD*SnduSiQ%k3UJ1dJ~f`0nd4}^={{EfBX69aCBFsb zT^&eY(=3DhKX9Mb-))Cw1q?ocR@A9i#FGYypgf-n_9Ewz8EIAXx7Wu%E~yT~RYv=p zD*xjhQYEc@S{+g;8pccq%X+Z=C}WBM!XK7~KYUcEyNLVfF!_0TRSHR21Ta z7W@~yhGuvJ?1m3-I4sRN$2Dinn(2SmN`O%lvyM+sTL3ogqV9?%o*kJ*ekZskQ;Y{# zIY~k7DRl2Oh6wRW@En8&x@8xbSQ*z5ewO-54?*AmD(Ow&$8Hg=HDJ7~MK7#F%xrzcK!w zzb-1W0-PD3{}U#GHRi5M$$%EWb+q7K?|B2{VKmvnzauNW-<$Yfmbic+M{c(#zJU|1 z-Bt%v@kTV)zsh>mim3wD8L<8i3||Oiu}4xZH_;~l%Z>-A6X%;ej}>G#aBDXD+vxVH zW&--p$?5i}6IYB91>Fiz{pp^h&D7T{4|iit|K}T{ILvwD%@O;k@AHV8x~Q0n*Q440 zw`V2hya|FEqmBVug#zMA0Rqcf7#mOwBe0?;vDoP@x3yJ}Qtyf)=Rs+?7@3L}p>2U{ z@5QYgGC%>=Ty$Luv7Q3z!S}80aX-mp8!XU+-B&kzkJJsml{YE4-)%!G7lsM1hkVy} zC;)`JB@XAEYWO;yDHE>s`mf$_K)J+-mhFE8a#{hE6l*HU-6%t_<#1@dqOgF>?XAC^ zd^k#UG~lAXWIm`GgF*cDl*1o?1?57SdeH)wq?Q#sBJQw@w08h>(Efb?Q$LohNd_pP z;utb_%x*Azst^FDvajkzO@9RCWJ###CT4@Y!E2Jz|I*=D5nbTAv`OmRegXk{jJYlN z7}+ItA67}Z#zhSzYU>I7X8JaP*MaHz1h8*0IvtQer=Ut;=+6xVfbrTlv?&Q#IEIpL zW_B)b0r@gKXBrrX6@CY1Z{CXNZ-5xUGxcNunh&uL#@#$N9#S)-9xmWL7NBOb6t@U( zI@@XM@AEgPHGqg1N6-LrsxT%F0NuMY#z?@oKsLPkh_IPQVyoXSBiQ8=*iYRB9dTs< zQjoVkk=8JSCz00=Aa}$8l`UG~(FG$wR?5iV`ZaLl;x)#9 z!w}~wz||MVJ36`Mi;E}Fa~u@ID1>bR8T{uFkb6n+BWv!r-I$|ZkgyA`tr0^nM?J)+ zX@|AH_wN;hmFOBWrI~Mg_VXBQoT_=>5>B@?JGb=bgn#`$!06wQG%R18R1uktv!Z!V zo`>|_X!E8As5mza@>k_`$6eIB$Lq?dxJ7Yo%Q4=~=YHwD(BY{!tf=yX zLg@Km?q>El=ik7984D)qGdBx&D%r_G25Bv5u9uHy@aiJm%7EX0KP>>#eR(1jfl??1o=)X{bf%yS&bv zo}FX(qaP4%7qB$p`JPTGiPIy?w1X=Hl-u;dCJNR8hqi8vAu#ZO5P5iCLum6d1b=W9I4{FsyaPQ{-Ut$aFDQ%-^A#{^&4&YMt2`?j4V*Jz~W81ke_GWa(~K0k5G^IGpzFb`X3$0ewu+ku!#09m0yB1 zt>x^D#~ec%4{G%=CjJFWJ4n;7B|R51kUI@!bU(4}~^dK@mE7 z&C_6C{@%Isqg=xVg_B{w>E3k5Dm&TTR@H!1qa2KqD**S+V_dnLdzPgB_UH_=(&crl z)(PM07BfTMn!w-Z*ST#E8)v*{Ndwr?=7f?oVYzV37@}!5Ev@IcDgbd@rMt-D>wwPl zMTy#?O@|YUA5-QP&0tAZz%Woi?0LSjd_B8u<2-uHA zu@$qNdv<>_3-r@aDH>$=BGD$Qu#_XhFmGkZVENaT(OTR46(j43pZbP5qDl~0?}j$e z`2Osq{-M#AfA$9w6$x_nWOoJk1=W;hRa$vUJrJXU*oJNdZBUk?ON!6BV)t``I&(bE55k`c-yL zd?nUMTbOe4$vM$+_w1mk{%vF}IAc6p)CiyQcB%RbfeL>cX>qr1D*x8iORFbd1>+Hg zG^*YpZoKSwePNHK>uAwRw-C(GpBb?^fDyi)b$ab*Sw{RG`|YNaBdP_V#7^aI#M_T0 z{3c95s10^UT>&>`PSpg)H`tDGIl}?*eXo~RUAzcZS$U)9Zx+sbhvAw9SLs87z-Q1| zz#9*r-e?+s0wZS~(=+bQ+8UtGVv4WNChfyQs-sGf!SIU+fZP+Y#n`{y%fmFaFFfwKTP7Jgh zRW0ZRAlA;?Xt6B;15SZ$BS6dzegEu$r&B{4{I?`t_bYJ4 zml6aU3aqun1&|@o;~{b)A1K1TeClkMN-%}Unx7#6S{Lvrq3WSP8~M-lVZ*L!CK?Psf>BOTf@Heu@3R> z?3h7WLK&VKe+C7F?hsI@0iviExM#-3WC!UQ9RGOke595t2048;b46Ei)2?_dr8ZZ5 zS2y25BxNn`>!@7#U# z0A?x+-O7I;gZE%b8lxm%j8{}^O;UFsA81tezQmq&9jTsJDOJQw=^KJXNpC{YgwOaA zl9Xz~X0k$`Ca~+k`UU98!s5u4#<(J8n7$R|d}7NSc_Y)>q@3XrU`!Gf^#q;6|F(2v z#p@TY!QR4AJ;K!Xz#auiOu+M)NY-(AG%V`yTO{Q0QA^#nGJpcX!b#+&G|&s(AG~eP z9-iWDv8b4;ml^~A2jnH1w?a4KftUlD_;&2v?6y8o3DWvL>F$f+`S@A<%;x2uM)Q9A zcYLxy5UG8aqgAyj#9i$PC|=Ae_sjp)@#W!Ax6$9ENKr{;Ymy`+q{T8qi9FVlwanN? zsW22XvWy{Rry`W~p^$AXWsJcHA$yjYA%+mcjD4FB-h1?1@B3cA>-zoUGBfx0-1qmK zb1&zd&*xT9tef|RElGBpJYgDMT;FG+YpBwTYTK7BT;pz;F8Tq3ilDvAX+|*?_8L?&(0P3RdC!=bhvobgpefzAZhYsRO3$LpSx||gbdirh6iu~&`f+XGLH3vJAuo$(lnV0bC?>wy7+S~V^?^bpBuXjz%&T{+2E zvj7E^+5g^%7{g@}l8;-c3aeO@a|R}91Z5}-cqzRGc{-Ang1YhP;oL~GHG zN+z!jr4w+K+DGiP%-@-!rV{~<`O2)(^5DSc9zvwFa-s{jWZy81xe)l*oez0=lZ*4vP~&` zEk(YTV;ujj7WH}+8qYfBh#fYDUYAk8@d7*`ICV!`_^7mSA@ndnLI?*NTPt|N6Q}-) zl8kJZtr!6|reJQX+m-lI3sHEfuVs%2QAtQ=y-R^a1OF5gQD~owid0 zx31XQNf~Nl3@+DGoXL$llm!3w9o=kcvuswJ>bkB;?!pGiT&Paa;0;8|_OrvMn}x z$6?B`wp1xMo8CHS#Yu-W)x9)`27p5O5 zXv1uE-bggGVp-4G%&o#P`Xu$A45*-DLyu7O{7F8!e>PxHx zDGp5h&_v5d6!>eY)ib~z6&BSTN z7sd})z>{&dX>X+DY`y~M_Pi-`~dYD!cX~;beF|m z*5zego{sD8&RC;13#0PMZ^eejO4iMD$xC5yL7p@fcV2XwDD%rtVZxmEmoo?7-A;Au_5w!pen72$W~!HRoQk?z z2_0}UWN+sgaMqzyPfHdXPg~D$Cd?azys$-_e-w%(T)eM19R#;}$UFoV9sJ_P1WMF9 zIu0=*G2`}E-a1jT(q!L))S3)SE?cYi#~B;8CS#_d$@xVu4U5;6DFU_!&v)9dDgC@U zDv`HA!9l^W@IfiA5uqfPs3?)(F8Zdp(!nXK)I02;k`@G~^HuY#2GQF$+Ob6{ly3HZ zE=1)Yme52ip5sO5F$tOLXU3R8FV*^e?Nrc;(@OB1o2W2kYaJ*Zc+oJ+KHH(K*R$}* zOh!wlq$R+yrM^}Y#(w(BMKpQI$diYx*MczWo3KYt_!jRfKyH4+IrTL>9a5-muGWm5 z8@!$AcTB#Mrk1{oj$J*wW?Ze%t@CGviB?NZ)l(C-w6(83kukRJOkX{xHtVYipQhL0 z_IuE7k&XNIL{53oo($?lEE&|qXJHLU0lTL>ON7rapFZ*(p!C0$`4QjPjiTWdqVe(MQ25|TxmUuUoi{- z=RRNzVC4yX8%Z7+9b>;T1oD`QP)8{d%HAxDpacH()_A@p{S8Y!$5Bs5ky>5zuM^&R zlvp;M{4`2)Y5VHZ85gE+J{EaP4=lZ@0z)s=N=DtRJM~KZ7VpmXjK)=I5@u)iNKw^t znfIX+PLum_uqxcm=QA0^Z*I+4*DT3;Tj0Ij(V=7uTif0$9;nw;gFWd;TfkL($%qbQ58Aaf*#W)g@RCt^F_9Fc-JfP?CfXm7Hx?^xwxT)Kl zAd^CR=22ctx5AAEl*b{e{ze|e2Is)ncpuwW)4XiZEGlW>CZx@}=>!6*l32dV^NMS? z28-xR`farh)tYIG5_bDzYO|UwOd6+?e-G>xpNM{qJFxkaD5b$7q`gq;h9zRl6QTh{U|OxRrd(W zJIfpic01PGoE3Tx24KWIQXh_9=YYUe%%~|Vk4qQPLho*<46N^oWWQ&lgn4+SIGKl!xKi>h$x< z5BN^Ns%J44{#He9qk9EPeF3^hzA_S4S~T#UNy?`_zTLlC%ix5S%P4}o?SdQaA88Jl z>NLX>KXxc+obd360M-ThL!K@e{t;%DPYmqAXp(p zi;PlN7hiQ8&-)aKS9m36cOl{-w){0?I+{_($;r>-A$75u2& zpQ{n#)Yp}_v6UX1ybnw)*$N@N>ZbtkcDK;U{qH#o#|WxD3sU@IWh8j-r>bQ26_;XqlUE&0=;Tw__siT3kkd9uiv*;yL6LX>M z##aYlEYa^JCO)t7@3uY+To>?RAZqe7;{~&X)OrnsBlXTP^)npQ83(?W@<5AH zLl6Z|s?K1U0$BhwIR(fYZhhCGySOjV5rqzB?$ z4|yskNH_+O`2$woAGSDyuN_pjO=sinmHrA~mbquL5t-Nx&%<>OegDW{Pmvq8Uz$6M`)JHNe@zFd1~s_z z8gkj{&?QXmD$xNB38ipiXzQ;`Em2q8f0cZl!}XxKre}2D#4<=bqnDG^IA$HArZ*j( z-?;y<`_%iCe-zAUIe6@jbbUHAK;isJY=0SaWRw~3_41M!pw>`locJ_n zPWz_n`gXl}ulq(DmF{iyYFS3vH=_1#z_6;G7j15?7!L$Rk&sKc$`dol@S1y|bPA@# z2Ev}nWGervSS0b{DV#XcoeaSO!3r)uUXzX>|UaAiP{(A?rPC z1s1Of-@y>da?7n@KCwQ1C0@~cwr3qwCpkJnjg$jKbvAA~QzI2aZaZ#qfLgflez4PX zQxFht*aSAQw!+h(WK5V{F$c&w$P1aC@lilBNd2}ud=SgcsiX-tw%38ECCw(k zbZm(eG@I%7ykply=klN-8|}54sN^duxz^{1oH#H$Tk)-^(b-baW^aO#!Zkxg5>^@!;I{C^1-my^Lt zmZ3d!Smo)WrbeT~>gRoH8jFfI!8x8tfr8 z?zTaPR5syMQHh#e7+O%%)qMhdLzfpSnA#}7owJCpy&kqCajFHBqj#7`G-b_}9wKyS zg+@{PwFw(`{Ks8(5oRY5C!Z7ELpfmOETz36X%bj`ZP*2x*UqX~SZPAHFtJ=WrF`!N z;6irj5ya6-XB&H<5)`n160b+q<_KD^ra7#91kl@(uASI$qHGQ$NJM|x*?HW+d4D7) z%uTN5ustWpUQr17R5yK;|1J*j;o);~xr^gH0p0h1y>0-ViXGZpiF;Yvf%`iT22koT z#k+yyL|y9$cnJ!|flT4xl*B{YW43)qb&s_FRhHWi6jaf+Jo{zoD#CbY(r3fVd)iUQ zEqR=*8~;7*5DZ7+>b=;{?z_FDFUSm&@njDeEK~QWv=t=Irb*8yVW&$h6=)tV65Mq=bXfN?P8tT2dV*yTe?D@d_Ez>zb{;O5Jz&#Tp`5^an z0g{L10{OGg%fEqz!eo~6{|*vP<&~JN{4FE);O{rq8(;2alh!k=TdtAW#%3-8lczR?K3dVOJ z!6S7f%<(%gJ9fv+y?XslW&o}m!UXk5eB_9`W__%k1I>&NJqQ*{`!r4wbn9Q$j}WCa z;jbBhz)+7WUgB#lIde7S1sCA}aP43&r@mgV=ZX;kaNUV(O@aanfd^z-6^IJr+t1?x z$>W0Y@O&$lA`6gYZiKu@CE`lCunB;j0OQ$cD+ccAWUU&=JP%$=^=e3Ae$2eC(uH%= z-%;*xHopU)bQ2wTi~nDDo6dcWkmA4n+2LF?DbIIARkjrWvI6k|CyYIZYdJ5t<}&~R zL$bau07e}mE9uJu=(37P0taBS_0?dRs{P^~kkf>^@NMz+x`T3dt{U|>5}1~3DwR`T z{m->)qr_X!y9I2gA|Zs?>t;=-vxIT#d=3w!a7*N2M^Kjn$ok_EnjCe+SY57LPrUPmSo|3tb~;;gWL1=geXSD3t? zI=AcGD+h-{5zF+cb6_7nFa)Fi-HLFU+hcnlpT*Y1YPEQ6rnw~lsc`js!F=S0T~)q6 z-oNJt?C*B;hSWE)N|e~J?f5p?m?j(W5o^8HXw!L_0!ec6_?G>yUt>P<7lioRUof`zi%Yr<5{T#iy^YlaDw z=m8fe1O67!=CDY@GSI;HOWbEz^+^#$9Aa-BuZEBjY@W@x;$lv!@$A%&$9zZdeK;gt z@xcF{hyC^vUxIirHc|5V(%lZPkAOfZEW+h;c(g?4(RZi6PXZe8YO0Ra>!E)JCUXpJ zZUWu+osB3FM{ib_87c7G(K;!0 zoA9N`m@7J9f&nrmyWKRv4YI+wfJj~ZQt9MDQ@|%?6TjG~F%F>FmV?3`0^ERbUgI7n z1L*0PxSpqHc|dLONQ5b0T*gy5Q2^@MVVeKmp}T|99>k}PL=Lu(O3mE7<^(TVgVdZ*t-wj~& z{2E%|e=Q8Ap(5p88N%neM|-Z1ZpxW%*-g2FUL5Ve?xc86?9lRW&|=_;US5aUyhw0Z zSTN0IGwekY{!;QS=ZGN~L5}lU!rzLS=Z2%V_U*Fd;g}Yf@~K;>3PFT(a;#o|wcNG1 z8AtYki`>O6UGht<*oPPDwkgqrXzU3+()~H?PBT8v(Dwuuotjg@Y%?!@|B4cUVLXsk z{rD_Rl++|tpErE%AyDZKaO!D%) zJ!5vb|LQOREJWOi$zSW~vNhV*`7>7ch3drD&&;7B%!U8IzrWozpN8)H zuX1mG`l{nyZ;ODl*(=tgHygC=b|2ouK2UsSW>&my-%!(%I>L1Uq?fz+#5RXj=4CU4 zg}opfXO^k`e@MKoXJayxm&~-4&QC(Qs6Kh*cSZI#611aQlrD>6tb|+S+c!}*y6&qt zc^kfPWaE~WZJo29L0){eoHo-lyj*+j#qv2v+uQB>)N~eGNN_Im%H`g7Irdf(sYm_D zU8Ww^67rF6fUREH5?oVeiC2pr|tT}3FF}? zMm}fL`V+*t8PJ#*MaRmusrnLT%JM#ufXR)1X5^LRyArgnEl3a=17Oa)Op1 zQ){?!9^^;d(~0I=@Bt-1>pN`%8RjaPG2&i2hYYMfyt~}(upAZ@EhG8o%h|L89N6L$ z)Lc0-^wi?pc-Z{8Erm7ZtvY?2OFnMnW11XUe(aOn&>5lC1fT9`$XhK4hrI^Q(7o!g zUFLwHyTQrAWgBuy{0Z|;3y4jCdfvyLrA2T3*=pDo(9jLH#RHjrgW5TZNWX&dt~&8jC|x)( zny4^fn>c8#IBY9q-LOh59^^`ZOOI{qzWj*g{WM@XgD(F%_QYpCoU`vEvvjj~;aK^^ zW^sT_^%pmfROvc@tpf86CkypNEsXb|Nsbth=r)lzeHE%z8T{mle=7E)xE)>jeqXUF zNx?|D$ETskyU8Lf0ou zpA*hM0AJSjX@{lH{2?SxHjN95fSVPr9Dz3L<}261AzZ%(zm>@SIjI)44`<_tpt~}g zjt;Dczg$u)y|W)nh>0(Zrnc*$U4GSlXh0RXw&TrmZBkOz5#^@>c4Hto#69MXJdGox zkuJvy3{gUOP;R%xBS$H-Ulk(Ae^&b`L;l&~a(?Q?k&YJ0M-`&>fG0YCd+v7_u48MN&B+?>OCX{VOs6!Bm2JkS zy5l9AMWc(P%No~Ko-y&SuPM;;KW)atUGbl$W}>#9Nz|D9`DNQl=-?~wN!+_yT#C(t z&evv?1I~E*ALu%li=E`?67g}W2vv&q%CG$nN!~zn&viAqW>C?QtUAG<8hD^_11J5f z5@2^mHg0+eNO`2bo2Q3~20;|oO1wH8&(Zr(u2(OVOkH=4_Et<@D^w`DM(;$Os!tl4 zE#*lOSHL^8pzJDte`)(MSN%()>J+rFA=sQSoqYb=Wt+LV_7!dM+Q*O#j2^1d@g0Hft`jSZEtkI-lQBFf?yCnYe+!Z{n*`jUQf7^8JNlWLe9kJ(e@G?_M3Qft0j%Z~ ztrvaMFa$Nbh$@&0W%6ys-bX-65$m;_mdawxSCF2A2Z~Gkt;>52=!+MOv@G!>cbXcB zx|ZrQmwH~t8z(_SrXS3BK;*>85N-4zZ7;Q?6l;9Q?mI8pK|Nc1+V5VICqG$UUfng6 zY2D9#|Hli{uV^E!zLl1kqS3EeVI`o0)#_3;8%H-h!kBHy;~x00KU|yKPr#a5(sB#O zT*Cp9ub=G$=iK05j%CLG{e(x(enx#mGGQS2+Gu-+N5+?qeJI%~7U8B|U->eDD81cZ zQvcvv=-Xi`VOEe~^3>nRQdS*SzHQ#{LwQ~9b*pNj8G7)&5VZu)8Q9 zpQpf$ZqmBIhN7v39W<|f9tZIs& zTTnlQ`QIxmLcY_Scmoq^Z?__5N@3u0sGD{?S)Dh?sF&Rb^7Wu=+IF8S6gHxM5|5Kr z&11IbZ6;X%JdaiduJSu_~7z_S;guX*HFAz|lmj61b8XxZ*n$XEUIM zSvcBawH&x9^~~zRTBh21f#}SWxXwxa3vCDf)S<>vzPKwV&G;K!7DWr2o!`DIyobu? zXLPzu$w2kmyM9}Te@e=1-*C{NYz`2MDsa|prKLwR5(bO=9{&Dk%h;GCo-dEh9qOTv z5leq4ti(^>#~IS8@?^UuM!>Ir)*XULTq1L@8y{>nz(DWY(AYU_^?_t!|Y`^%HD;g@PsQj48e|kHN$tXlJN#T_iQ~g9M)+YwEjAvDWWNSG_;(c(J z)mew4m)k9(7ig%(g`r}8nue=N(u1NcTxDYVbLJxgxLLx;BNbZOfz>YvXa4vI@$8<3 z%C^|JABTDW%MZyZ@FrBd@AC1asjX+p*iD7*rIIIA6Mk#dqYGwC2a^U-Jyb#$&bo5^_PgwDZ<@YHrIm>?dlqZqRRfctd#DZID_J^8fhj%aA3_5*QKPySD43@D>^#T z9ma^+r!6WhbKs}5Iy}F6q$b#1BD%O;$T^&MQlHu955KEF+nVopJ4? z@Cjb37ys(-L2QlhT`ZN+h#HfD2Wx!Od}Azkwr2X--di*Yg1WPoj9quLFHEtvxgDq8 z`_%s*`10A6Bh3MQ6w2)85VYZPYRcl^BRGwKoOVyrd#biUkAxRYG#*_c+R@BDGb;YQ z7-)GqQJ;qc9LNHh93U;l!GYuA_=5WHBEkd0#izH$t&AEBZgZX&WM2`cuWO=%)3$&1 Fe*jav-?0Dy delta 28446 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%0Dr~S3uXY?I+ml2XBX-gg@*M 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 Gg8v^wy5Uy< From 36af9a0c99e035b51ba97e84e3ce0345aa53d516 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Wed, 5 Jun 2024 13:52:29 +0300 Subject: [PATCH 03/10] Change structure to allocate fewer times with GPU. Add printing to stderr so clang doensn't optimize out the calculations of the serialized version --- .../demos/idle_resources/common.h | 62 ++++++++++------ .../demos/idle_resources/hip_saxpy.cpp | 66 ++++++++++-------- .../demos/idle_resources/omp_saxpy.cpp | 18 ++--- .../demos/idle_resources/run.sh | 26 +++---- .../demos/idle_resources/runtimes.png | Bin 17982 -> 18949 bytes .../idle_resources/runtimes_annotated.png | Bin 33568 -> 36788 bytes .../demos/idle_resources/serial_saxpy.cpp | 18 ++--- 7 files changed, 104 insertions(+), 86 deletions(-) diff --git a/application-performance/demos/idle_resources/common.h b/application-performance/demos/idle_resources/common.h index e3c5fe1c0..00f5232fa 100644 --- a/application-performance/demos/idle_resources/common.h +++ b/application-performance/demos/idle_resources/common.h @@ -9,38 +9,54 @@ #include #include -template constexpr void saxpy(size_t i, T a, T *x, T *y) { - y[i] += a * x[i]; +template constexpr void saxpy(size_t i, T a, T *x, T *y, T *r) { + r[i] = a * x[i] + y[i]; } -template void run(Func f) { - constexpr std::array ns{1 << 6, 1 << 9, 1 << 12, 1 << 15, - 1 << 18, 1 << 21, 1 << 24, 1 << 27}; - constexpr auto max_n = *std::max_element(ns.begin(), ns.end()); - std::vector x(max_n); - std::vector y(max_n); - constexpr float a = 2.3f; - constexpr float b = 1.1f; - constexpr float c = 3.4f; - - for (size_t i = 0; i < max_n; i++) { - x[i] = a * sin(i); +template constexpr void init_x(size_t i, T *x) { + x[i] = (T)2.3 * sin(i); +} + +template constexpr void init_y(size_t i, T *y) { + y[i] = (T)1.1 * cos(i); +} + +template void init(size_t n, T *x, T *y) { + for (size_t i = 0; i < n; i++) { + init_x(i, x); + init_y(i, y); } +} - for (size_t n : ns) { - for (size_t i = 0; i < n; i++) { - y[i] = b * cos(i); - } +template +void run(Allocate allocate, Deallocate deallocate, Init init, Func func) { + constexpr std::array ns{1 << 6, 1 << 9, 1 << 12, 1 << 15, 1 << 18, + 1 << 21, 1 << 24, 1 << 27, 1 << 30}; + constexpr size_t max_n = *std::max_element(ns.begin(), ns.end()); + constexpr size_t num_bytes = sizeof(float) * max_n; + + float *const x = static_cast(allocate(num_bytes)); + float *const y = static_cast(allocate(num_bytes)); + float *const r = static_cast(allocate(num_bytes)); + init(max_n, x, y); + for (size_t n : ns) { constexpr auto n_iter = 20; size_t avg = 0; - for (uint32_t iteration = 0; iteration < n_iter; iteration++) { - const auto default_duration = f(n, c, x, y); - const std::chrono::duration dur = - default_duration; + for (auto iteration = 0; iteration < n_iter; iteration++) { + constexpr float a = 3.4f; + const auto start = std::chrono::high_resolution_clock::now(); + func(n, a, x, y, r); + const auto end = std::chrono::high_resolution_clock::now(); + const std::chrono::duration dur = end - start; avg += iteration == 0 ? 0 : dur.count(); } - printf("%ld, %ld\n", n, avg / (n_iter - 1)); + std::fprintf(stderr, "%f\n", r[n - 1]); + std::printf("%ld, %ld\n", n, avg / (n_iter - 1)); } + + deallocate(x); + deallocate(y); + deallocate(r); } diff --git a/application-performance/demos/idle_resources/hip_saxpy.cpp b/application-performance/demos/idle_resources/hip_saxpy.cpp index 49a66b4b2..d370e2881 100644 --- a/application-performance/demos/idle_resources/hip_saxpy.cpp +++ b/application-performance/demos/idle_resources/hip_saxpy.cpp @@ -1,39 +1,47 @@ #include "common.h" -#include +#include #include -__global__ void saxpy_(int n, float a, float *x, float *y) -{ - int tid = threadIdx.x + blockIdx.x * blockDim.x; - int stride = gridDim.x * blockDim.x; +__global__ void saxpy_(size_t n, float a, float *x, float *y, float *r) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; for (; tid < n; tid += stride) { - saxpy(tid, a, x, y); + saxpy(tid, a, x, y, r); } } +__global__ void init_data(size_t n, float *x, float *y) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + init_x(tid, x); + init_y(tid, y); + } +} + +void *gpu_allocate(size_t bytes) { + void *p = nullptr; + [[maybe_unused]] const auto result = hipMalloc(&p, bytes); + return p; +} + +void gpu_free(void *p) { [[maybe_unused]] const auto result = hipFree(p); } + +void gpu_init(size_t n, float *x, float *y) { + constexpr dim3 blocks(32); + constexpr dim3 threads(256); + init_data<<>>(n, x, y); +} + int main() { - run([](auto n, auto a, auto &x, auto &y) -> auto { - // Setup code - const size_t num_bytes = n * sizeof(decltype(x.back())); - float *d_x = nullptr; - float *d_y = nullptr; - hipMalloc(reinterpret_cast(&d_x), num_bytes); - hipMalloc(reinterpret_cast(&d_y), num_bytes); - hipMemcpy(d_x, x.data(), num_bytes, hipMemcpyHostToDevice); - hipMemcpy(d_y, y.data(), num_bytes, hipMemcpyHostToDevice); - - const dim3 blocks(32); - const dim3 threads(256); - - const auto c_start = std::chrono::high_resolution_clock::now(); - saxpy_<<>>(n, a, d_x, d_y); - hipDeviceSynchronize(); - const auto c_end = std::chrono::high_resolution_clock::now(); - - hipFree(d_x); - hipFree(d_y); - - return c_end - c_start; - }); + run(gpu_allocate, gpu_free, gpu_init, + [](auto n, auto a, auto *x, auto *y, auto *r) -> auto { + constexpr dim3 blocks(32); + constexpr dim3 threads(256); + + saxpy_<<>>(n, a, x, y, r); + [[maybe_unused]] const auto result = hipDeviceSynchronize(); + }); } diff --git a/application-performance/demos/idle_resources/omp_saxpy.cpp b/application-performance/demos/idle_resources/omp_saxpy.cpp index 7876df0c2..5927416d7 100644 --- a/application-performance/demos/idle_resources/omp_saxpy.cpp +++ b/application-performance/demos/idle_resources/omp_saxpy.cpp @@ -1,16 +1,12 @@ #include "common.h" -#include +#include int main() { - run([](auto n, auto a, auto &x, auto &y) -> auto { - const auto c_start = std::chrono::high_resolution_clock::now(); - + run(malloc, free, init, + [](auto n, auto a, auto *x, auto *y, auto *r) -> auto { #pragma omp parallel for - for (size_t i = 0; i < n; i++) { - saxpy(i, a, x.data(), y.data()); - } - - const auto c_end = std::chrono::high_resolution_clock::now(); - return c_end - c_start; - }); + for (size_t i = 0; i < n; i++) { + saxpy(i, a, x, y, r); + } + }); } diff --git a/application-performance/demos/idle_resources/run.sh b/application-performance/demos/idle_resources/run.sh index 3f8b9bc63..6257bef99 100755 --- a/application-performance/demos/idle_resources/run.sh +++ b/application-performance/demos/idle_resources/run.sh @@ -18,14 +18,17 @@ cpujobid=$(submit_job << "EOF" #SBATCH --nodes=1 #SBATCH --ntasks=1 #SBATCH --cpus-per-task=64 -#SBATCH --time=00:05:00 -#SBATCH --partition=small +#SBATCH --mem=13G +#SBATCH --time=00:30:00 +#SBATCH --partition=debug #SBATCH --exclusive ml PrgEnv-cray -(srun CC -O3 -fopenmp -o omp omp_saxpy.cpp) || { echo "Failed to build openMP code"; exit 1; } -(srun CC -O3 -o serial serial_saxpy.cpp) || { echo "Failed to build serial code"; exit 1; } +(srun CC -std=c++17 -O3 -fopenmp -Wall -Wextra -Wpedantic -pedantic-errors -o omp omp_saxpy.cpp) || { echo "Failed to build openMP code"; exit 1; } +(srun CC -std=c++17 -O3 -Wall -Wextra -Wpedantic -pedantic-errors -o serial serial_saxpy.cpp) || { echo "Failed to build serial code"; exit 1; } + +srun ./serial > "serial.dat" export OMP_PROC_BIND=close export OMP_PLACES=cores @@ -34,8 +37,6 @@ for nthreads in 2 64 do OMP_NUM_THREADS=$nthreads srun ./omp > "omp$nthreads.dat" done - -srun ./serial > "serial.dat" EOF ) @@ -48,14 +49,15 @@ gpujobid=$(submit_job << EOF #SBATCH --ntasks=1 #SBATCH --cpus-per-task=1 #SBATCH --gpus-per-task=1 -#SBATCH --time=00:05:00 +#SBATCH --mem=1G +#SBATCH --time=00:01:00 #SBATCH --partition=dev-g ml PrgEnv-cray ml craype-accel-amd-gfx90a ml rocm -(srun CC -std=c++17 -xhip -O3 -o hip hip_saxpy.cpp) || { echo "Failed to build hip code"; exit 1; } +(srun CC -std=c++17 -xhip -O3 -Wall -Wextra -Wpedantic -pedantic-errors -o hip hip_saxpy.cpp) || { echo "Failed to build hip code"; exit 1; } srun ./hip > "hip.dat" EOF ) @@ -68,12 +70,12 @@ sbatch --dependency afterok:$cpujobid:$gpujobid << EOF #SBATCH --nodes=1 #SBATCH --ntasks=1 #SBATCH --cpus-per-task=1 -#SBATCH --time=00:05:00 -#SBATCH --partition=small +#SBATCH --time=00:01:00 +#SBATCH --partition=debug echo "Loading modules" ml LUMI/23.09 -ml partition/L +ml partition/C ml gnuplot/5.4.8-cpeGNU-23.09 echo "Plotting problem size vs runtimes " @@ -88,7 +90,7 @@ gnuplot -e "\ set xlabel \"problem size\"; \ set ylabel \"time [ns]\"; \ set grid; \ - set xrange [10:1000000000]; \ + set xrange [10:10000000000]; \ plot \"serial.dat\" title \"serial\" lw 2.5, \ \"omp2.dat\" title \"OpenMP 2 threads\" lw 2.5, \ \"omp64.dat\" title \"OpenMP 64 threads\" lw 2.5, \ diff --git a/application-performance/demos/idle_resources/runtimes.png b/application-performance/demos/idle_resources/runtimes.png index b5470cbfee727a99bbe485e79707d586d24e8b9d..c490e13754272cf1e687127c7038790370ffad6e 100644 GIT binary patch literal 18949 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 RUMB$f$IijFaF0jq{{;=6T}uD} literal 17982 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 +#include int main() { - run([](auto n, auto a, auto &x, auto &y) -> auto { - const auto c_start = std::chrono::high_resolution_clock::now(); - - for (size_t i = 0; i < n; i++) { - saxpy(i, a, x.data(), y.data()); - } - - const auto c_end = std::chrono::high_resolution_clock::now(); - return c_end - c_start; - }); + run(malloc, free, init, + [](auto n, auto a, auto *x, auto *y, auto *r) -> auto { + for (size_t i = 0; i < n; i++) { + saxpy(i, a, x, y, r); + } + }); } From 8473c475e77e29409bb4dbe7baaaec290f7b37bb Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Wed, 26 Jun 2024 17:38:51 +0300 Subject: [PATCH 04/10] Add images, change order of slides --- .../docs/02-gpu-performance.md | 243 +++++++++++++++--- .../docs/img/access_pattern.drawio.png | Bin 0 -> 22548 bytes .../docs/img/cpu_gpu_synch.png | Bin 0 -> 121705 bytes application-performance/docs/img/memcpy.png | Bin 0 -> 85088 bytes .../docs/img/runtimes_annotated.png | Bin 0 -> 36788 bytes .../docs/img/tiled_matrix_mul.drawio.png | Bin 0 -> 38599 bytes 6 files changed, 201 insertions(+), 42 deletions(-) create mode 100644 application-performance/docs/img/access_pattern.drawio.png create mode 100644 application-performance/docs/img/cpu_gpu_synch.png create mode 100644 application-performance/docs/img/memcpy.png create mode 100644 application-performance/docs/img/runtimes_annotated.png create mode 100644 application-performance/docs/img/tiled_matrix_mul.drawio.png diff --git a/application-performance/docs/02-gpu-performance.md b/application-performance/docs/02-gpu-performance.md index 56d8547f7..5b52d9dfc 100644 --- a/application-performance/docs/02-gpu-performance.md +++ b/application-performance/docs/02-gpu-performance.md @@ -4,25 +4,147 @@ event: CSC Summer School in High-Performance Computing 2024 lang: en --- -# GPU performance optimization {.section} +# Contents +- General Principles for High GPU Performance +- GPU performance analysis +- Sampling vs tracing +- Tau +- Omniperf +- Hardware counters & papi -# Introduction +# Foreword -- GPUs (Graphics Processing Units) are widely used in High-Performance Computing (HPC) applications -- GPUs are powerful and complex processors designed for parallel computing -- GPUs require explicit expression of parallelism by the programmer +- GPUs are drastically different from CPUs +- Different principles apply for optimizing GPU code +- The following concentrates on single GPU codes + +# General Principles for High GPU Performance {.section} # General Principles for High GPU Performance +Keep all the compute resources busy (idle resources are a waste) + :::::: {.columns} ::: {.column width="50%"} -- Keep all the compute resources busy (idle resources are a waste) -- Minimize the synchronization at all levels -- Minimize the data transfers between host and device -- Keep the data in faster memory and use an appropriate access pattern + + \ + \ +```cpp +template +constexpr void axpy( + size_t i, T a, T *x, T *y, T *r) { + r[i] = a * x[i] + y[i]; +} +``` + ::: ::: {.column width="50%"} -![](img/lumi_node.png){.center width=50%} + +![](img/runtimes_annotated.png){.center width=80%} + +::: +:::::: + +# General Principles for High GPU Performance + +Minimize synchronization (at all levels) + +:::::: {.columns} +::: {.column width="30%"} + + +```cpp +// Version 1 +computeA<<<...>>>(...); +deviceSynchronize(); + +computeB<<<...>>>(...); +deviceSynchronize(); + +computeC<<<...>>>(...); +deviceSynchronize(); + +computeD<<<...>>>(...); + +// Version 2 +computeA<<<...>>>(...); +computeB<<<...>>>(...); +computeC<<<...>>>(...); +deviceSynchronize(); + +computeD<<<...>>>(...); +``` + + +::: +::: {.column width="70%"} + +![](img/cpu_gpu_synch.png){.center width=100%} + +::: +:::::: + +# General Principles for High GPU Performance + +Minimize data transfers between host and device + +:::::: {.columns} +::: {.column width="30%"} + + +```cpp +// Version 1 +while (1) { + computeA<<<...>>>(...); + memcpyD2H(); + + computeB(...); + memcpyH2D(); +} + +// Version 2 +while (1) { + computeA<<<...>>>(...); + computeB<<<...>>>(...); +} +``` + + +::: +::: {.column width="70%"} + +![](img/memcpy.png){.center width=100%} + +::: +:::::: + +# General Principles for High GPU Performance + +:::::: {.columns} +::: {.column width="70%"} + +Keep the data in faster memory + +::: +::: {.column width="70%"} + +![](img/tiled_matrix_mul.drawio.png){.center width=50%} + +::: +:::::: + +# General Principles for High GPU Performance + +:::::: {.columns} +::: {.column width="30%"} + +Use an appropriate access pattern + +::: +::: {.column width="70%"} + +![](img/access_pattern.drawio.png){.center width=100%} + ::: :::::: @@ -34,6 +156,8 @@ lang: en # Measuring performance +::: incremental + - Don’t speculate about performance – measure it! - Performance analysis tools help to - Find hot-spots @@ -41,42 +165,30 @@ lang: en - Tools covered here - TAU, Omniperf - Other tools - - Perf, CrayPAT, Tau, Scalasca, gprof, PAPI, ... + - Perf, CrayPAT, Scalasca, gprof, PAPI, ... - CUPTI, AMD ROCm Profiler, ... - -# Hardware performance counters - -- Special registers on CPU \& GPU that count hardware events -- Enable more accurate statistics and low overhead - - In some cases they can be used for tracing without any extra - instrumentation -- Number of counters is much smaller than the number of events that can be - recorded -- Different devices have different counters - -# PAPI - -- Performance Application Programming Interface (PAPI) -- Consistent interface and methodology for collecting performance counter information -- Support for most major CPUs and GPUs -- Several performance analysis tools use PAPI underneath - - API for collecting metrics within application -- Command line tools for investigating available counters *etc.* - - `papi_avail` +::: # Profiling application -- Collecting all possible performance metrics with single run is not practical - - Simply too much information +::: incremental + +- Collecting every possible metric on a single run is not practical + - Too much data - Profiling overhead can alter application behavior -- Start with an overview! +- Start with an overview - Call tree information, what routines are most expensive? +::: + # [Sampling]{.underline} vs. Tracing -:::::: {.columns} -::: {.column width="50%"} +::::::::: {.columns} +:::::: {.column width="50%"} + +::: incremental - Application is stopped at predetermined intervals - Information is collected about the state of application @@ -84,17 +196,21 @@ lang: en - Statistical information ::: -::: {.column width="50%"} + +:::::: +:::::: {.column width="50%"} ![](img/sampling.png){.left width=100%} -::: :::::: +::::::::: # Sampling vs. [Tracing]{.underline} -:::::: {.columns} -::: {.column width="50%"} +::::::::: {.columns} +:::::: {.column width="50%"} + +::: incremental - Records events, e.g., every function call - Requires usually modification to the executable: code instrumentation @@ -102,23 +218,31 @@ lang: en - Generates often lots of data ::: -::: {.column width="50%"} + +:::::: +:::::: {.column width="50%"} ![](img/tracing.png){.left width=100%} -::: :::::: +::::::::: # Tau Analysis Utilities +::: incremental + - - A performance evaluation toolkit -- Runs on all HPC platforms, relatively easy to install +- Runs on all HPC platforms, (sometimes) easy to install - Targets all parallel programming/execution paradigms (GPU, MPI, OpenMP, pthreads, ...) - Programming languages: Fortran, C, C++, UPC, Java, Python, ... +::: + # Tau Analysis Utilities cont. +::: incremental + - TAU has instrumentation, measurement and analysis tools - User-friendly graphical interface - Profiling: Measures total time spent in each routine @@ -126,8 +250,12 @@ lang: en - I/O performance evaluation - Memory debugging +::: + # Omniperf Tools +::: incremental + - - system performance profiling tool for machine learning/HPC workloads running on AMD MI GPUs @@ -135,3 +263,34 @@ learning/HPC workloads running on AMD MI GPUs - profiling, roofline model, tracing - built on top of `roctracer` and `rocprof` - supports both a web-based GUI and a command-line analyzer for user convenience + +::: + +# Hardware performance counters + +::: incremental + +- Special registers on CPU \& GPU that count hardware events +- Enable more accurate statistics and low overhead + - In some cases they can be used for tracing without any extra + instrumentation +- Number of counters is much smaller than the number of events that can be + recorded +- Different devices have different counters + +::: + +# PAPI + +::: incremental + +- Performance Application Programming Interface (PAPI) +- Consistent interface and methodology for collecting performance counter information +- Support for most major CPUs and GPUs +- Several performance analysis tools use PAPI underneath + - API for collecting metrics within application +- Command line tools for investigating available counters *etc.* + - `papi_avail` + +::: + diff --git a/application-performance/docs/img/access_pattern.drawio.png b/application-performance/docs/img/access_pattern.drawio.png new file mode 100644 index 0000000000000000000000000000000000000000..9915410065273eab52998e33b70226e71fa12cca GIT binary patch literal 22548 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 F{{YzB8#@31 literal 0 HcmV?d00001 diff --git a/application-performance/docs/img/cpu_gpu_synch.png b/application-performance/docs/img/cpu_gpu_synch.png new file mode 100644 index 0000000000000000000000000000000000000000..69d71b9396a9ce083e84406aad37730ba3c27386 GIT binary patch literal 121705 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

W{@nfIrb|lN z$ux>cejz*1W8SLTSEarBLr2SUG&$@~Rt?{OrRhgPk@`>;-^_N~nOejhI$*Yw$Wm=J z0;`dJH4=`+>$uYqF2s>UrEfpHTEYZ!_MEPOT3a#uBbaM5_t^w0mZ@GKDQpydYUbwH z3uT((Pm%iX=(%Q3ovS6$AR^&KTUZoFch-<{bG+WPc_%6)i`F&*V(P?W@$dr1<-?A% z`7W7plZ>TzL4pXAwVss?ln4J!a>+C~8a7?7&veRW;eb=9odZ_OR_pM&XG` z1t?DuOyjKhqE0Nz)x;HKK!?VQA#YQ^PLsZ_qXt3y1CQe?`k-=Uw8pYVzU%Z6&!2V; zTrWfF5f5YVyFgwT(ZUlebL8FlAU*!B2Bn%rgHdbqz|vx;v(OaYRLc(?y&e=?N9329 zz_zy^3K=auhtX|Yh!hxiyRY?VvFXzH{A}6y&TbM{Xis3GYLeFndGMt-qNSB@p%!4b zs)nxN8L|D9hiJXqPAGTbtVuV{%+?&0oU(aZH1#RDX{My`984rC2ziP$`FI^n|9Z|^ zSw;JTws+Im66Pu1orOu!8SI^JOaknEpK>&s!+7gqjQmr_f0|{G_?96eY*&@?gFDZ9 z`aDFGC^CJOKlUw-(=gA)jnKTTEpn$sN1Ntma6^7>CObsf41XsR+eRp$a0v?#+8scE zI!ACwHW!FNV|)!RXn0UZG7Bl^;d#Qd$rSn>+s+*hqIf>}JMq#8q%O-0_9K#n_P8fg zskS65nQW|{ncrieXyBzib-gwquPpDE)ijh8gM>6v!FG-P+esa|E?kWtG+f4ok@7MG zz1B}X{`fpSd-oHyd=bTXnHy44I}{ zQsB!@|6wk;^N8@fpQJ-)ar&%B2jQWvFbKq<`*U1{%-^p$WQE1LI$G>MytIyJu5 zn1Bdj8v58$FTyZvXvCxX)Xjc_*yv8j;d{ns$q=1v5?>T)H&*mHp)zjzDYJ!J@#=KU z^QnQ1R;7hANWuA{FDcbPEG3)KPsQk&2ap$gtsP9O9&X5kW+i#T<|G`&_~t<}DG(IRb1$eDhCePzA55TC&ddx$p9^ElK~J{~}xTG(qp|+;sP9{+`eaD)}mO2uD!{ zI8hUZ><^b1epPRq14V8$qEq%1!4e0sM|Fr{wdN4~Kzo>KvjT)k5mww7bWSES$Op(s zx%_QfPWED;u4G`Vks=O~@A|_0cHDhp6C&8ucYq6#s08^nFQo}L41j#TD)W`JJUM#3 zNr<|ZT_Y7b9Ym3md^U`71c^-%=~l~vy=k%3NkWa5@oa4tnIBS&!9#XI`qy1N&xJQ7 z+g5?E#8z>ukJgsdgx~F`45GY;B6&27&ua)cvv8K@grsjlFf{tJ3Y4Hfo_L zH}%FDh0v;hjZENYkN6_?o@JY*zvFZd(d+2t=a=G)h7dXTe$qkGh#KgRq2Ct619ZSl zeuk;mBWBaL{_4@*6VGcK2qL0h{DwQvOH~^O10?F*3s&tVnRrF|a`k0rppC$bH%t5{ zk{MGqOEw}Ma!BXx>c&*`<`s@4lHf%5BpFz+G9LYC^oCjU0g{n}h1nRQnmQ`);^`8vgzu*!@jw3-?!FYhh^1Lf^4x*ZSuBZlFp`!uz#|QlmcX zL4L#!oW1~-(&PnymlM${mQ@8WR6Ub^|y5m1hU0~pB=(eZVtkjT6S8Pg! ziQB{kczL)?4IRT-N%3E99{eLc1Jb!AHxPcH76$yEp86Qf@n2u=4I;GFmjAj%#3;@T zRIdG|IA`gl1(`AF|9J_eVld6lV(olsILd+7^Jmhz7#Lg~_4N7M0+GzF*lq34&c{}N zqV7NNpJzgD^Ez1u5Ph~VeJZYOsu?tHzI?14K#3YP2`|^ zs}^Fzxd{RcZ{QJuFgfRnNQuqdit7t1HX!9uLT335Laz)pkof1_xxWrG8NfaLf9$+%O*P^Ws?;`Hf4oSw(P7(_N?rT?2x^~_k6w@ukQEv z^FDsR<9mGn`2CLKzW?ZW9j_bD>v>)0b7mg?YJXtqm$&5-wkoM7?USpRu}xe_n+g>GORE^Lh;ro`AXX zA(7{y-G5Uo$ln)bj$j6aa-hfQG-Hs@jn`aJ8YZza4O7bfp*nehO!fn+U{0hXeJtng zcdq%2n_mu-nx4k|(SEMc5<1yFmg+Amp|7W>6CNNGNjjr{X8`Wu653lrgAat0I*&0L z(wxQ0Hw&RMCF_xwskgEP6Q0UmSUbXo<;9~p#x&zoQYiS7yhZsjG_83pry z48+YJ$g`_<%++n)VY6C)?Uv;T61+&RVHCQAWO}MjJpq$;ZXOh6K359N1sDT2HfxJ& zWCWVgY7tK}7^2sUD0}!?0&!4E9+ktLuch@ns|2mckw_lo2UI#7{V3OFAtDQEgiRTA zdiR-Op61h-9)WBkEmADEok404B{SxJu&etJ=)vm(SaVKQC)N^>W2fJUC60oMtW541 zURxs`=oB_wKcaHx2{aQ5Sznd7d^ER-s)5Sc@)W0m_%KAN+%uJ;)CA80dhbBcujo_I z%#!JixOLXXMUWl*&~n=0ljKM*%f($}bi(4P;gz@Tf3LL+={RV)u^ac(97Mc0gztJw zFE8c*`Z>ihYQ4dPqncG;*iE-DTL3tKW*cDlcS2=?>Sn)$7T5A2!4ncxAhCQ#b0Zbf z<&Lz@4C^;Ar^gW=IYD(6aNBQ|U}LA_vX5Wsqj7;N%3IyA%2qZJw(R`bhmuF}GeVH& z3#e&cfD0yG27aYdo@P)*b=2h4WvN(OUwVO}DPY8ze%(gsch@Ik@Kj*+TRp#QrDqrk z;!7KTTmlRy^MxPNr`a|hpb~dJlqxDJsf)Rw7w%cG9XVdv5JF9jc(#2N0?w&aXCa=s z69cgKpbro|+#6!BKuCvxHoMXBhmtHine(FwRB!+2?vqwXlH=zV515aEm}Nd>Z#d)d zDRpX-400wcpOqT5emt0?{9A#!gZ11w<8kg=8|M&}IZ9wq7!xQ161BSQs+pcAo_QngCI0ci4Sfs&aBMir7RhV)Kyo7V1w zr|b*BhT116emNoyN(1hGRoN`=o@8XgR8o%n=bd99L_~;Av^DOAJSlm zm=~l;Z_;iM0mTHdLC0`oO~UV9amXLcAo&ApnF`up%g@NH0azOu;*p;s|II#f)dY56e3 zeOqC`Ho#37bL;Aime}RS<5!0WVIW8KfOa#m93+Jz{TjGEf4N(v*^sR1k`KC?hH|ig zdWB31CfW%1cjbpY>^QBgwdWg}P${+8@C^QSJX{5!z(Dtb}G>pOzg zItHv_0-#bkw=(36kM=@P_y*-^<;q?ZQNEkA3Qa%0H&d?rKs%>^YP6!`&FA-k!N$9e zfS;|C--{E8uXWC2Q6gzxU~IYmV+Zjfj}V;YX}O|&R&4|#KZR$Pn9B(*FU~yZ23M$$ zWD+Fe_0|B8kr-Ya2jBlI0_saBTarhI1b7Ii%c(oL$-iCRk+C~z{I;| zxs6dE)(`1+dHRyRk+cjE)aj8vRcu`Mt#7#1W|7m(hX0H<8|V6df8hLh!i6{+EG- zM@7Vd;Q7mCgrLZuP!X153VanLj%4!w3ZpKu!&A~O>keoC`Br2PHs{;j84C1q!>9l3 zQbiVuM*~uD$cW>g&n8uZB|aU{k^Qq}Nv9B{tWREX^e>kQbTtNY3WOh(e}xjTuuHhG z90pFg;lC46NRkTHzOPF4GZTfpfZ}Q79&v^U`TSWo>T6ITW6#ltl{AF7##SF(b^d-b zlOsGOEYX1aXSD!XCk-_B*OmP9NE8i_le+Rk=y!h$_(?(V)n#JGf9xSsXCXZ0S&xfj z33_MOLH}k{zqo@wP~=m94D3xtTHSNB`_AM6?}qWT@;{!96m`VRo!S4a+tUCEbbK|I zsQ!5_M*vi2Dstm5v|Zkqx7cV1)Ref6O1L<@I^*@SwlGj5zyJ6By`k z;FHKlkYiKL)yXetXXKMEY}dYT0{TFa+sDKLdz1W(;O<`+`VhPuw#deRJewAli1%ut z2)$zg$TdA>^3M66=W<#RzQ*7bL_=#u!eP5ji9b%rp_hZ`h;6v06L%*=(QAK+n61;R zGs^!|CSZR>y=cA~rXz3w1~J%+|2!8{5%~JZ`?Xu>y^%xIpY)CJtLU4HtZ9NHuby1X z8>Shu9Gv`T(pejR!CxV%OeW6mf_8AJkr2?kdG@4ZH;p?~i+qFDdE*Z-fm z*FcV09Vv-cnGwEV-OO536#nTW+(Lq26SNNg*V#e4W&b)m;Bx%y?EEsz|2jL!&G`Sf zv-AH>DH^jOiC$DO07kO;83yw*01Fbd2Ixbc0#&2|cn7N?E%j}b>xgoL{^v@dqbK0Y zd66I-AreH==M%xZl+sL_>P_d1yPxe>MG zpLeH8N1~KJrL>=Jp*R*-CV$p9rcmj1PPEgHlvf)Ao4nB9z$ec%+NVwr`Z59H5d90{ zfV@iQMey5?kI!iQ^M{iOlgh`Fya@0B`x9Tu7hrI`0vGK#iy@A)Sii*|H~jBi_^H`N zQXmexbUOPtP3WKZKrQ^|Kc4^oo&S^l!6ro*3wfZFiT_Z7nt4d*#8mFAeQQPKJ20cAH-q#hQwWxJi5PAxgat| z5N1A`|KvFSk7F0HMxtQ~^mmg;5NFN(eHHBU92 zao6vmzcz=!EF-k>F!~$#RE-B;uv#ar+giOZD3 z=<0+B283039`pb4Y%z$}NtFgI(29W+A>8C_eYA;oTaZtelHlvZ22L!0w$YOTA@w|; z*7O{mutIim1>)Yuk>%qDH_kJKS=CxoNck>bR9MgOK{D0x#ynApl1b zBN*A!x*z+FBDENO=-e5DO4>1C>M@&d`MmQ3D1C090@OQFR;feExLd-4fY3b#+=<5- z*??aj!K^j!(wP6%`9nw95Dr*D1 zk;>UkV0-mLSk@5=mmk3Y6y%9L$hA;DmxItD<3r&f$G*LAfi&_w0`+uZAHzLJsr6on zM{tPhxSW96T7uHJHv+!bp@ou$E)Q%UtBTF7q9C%*RKQm#TcK7wMAsJ!yKk5nhA`p| z>rRahBcv<{o}*#-G_XJzmcmCv;cyu4@;-q9#L=E-Cdq5X$?j$mCrl4NMKJbMFijy* zhsfhbJm2L)n7Ev~>h!BC=;vmTB6oMWBlH0}uiTl3`9^Ra$)sNcCd4`bgpieF(5W|4 zUFx@np&)uK87Flf(jvnEmI-TdUXxS-OAe|LY2le0G@LI1w%|irLEq!OI?h)0>`(y2 z;lsI(;sxO>fa=r-_Ea2oDrnF_G5!K;lrKP4vc3vvd*%7~j#+j|9C}}b0>?q?XZ;~x z8s8=Fn)Ir1gmnf3@B1wWo5a6yWu#2U;cj%tNG75)KQ!*1{ZtM%nHE|3*AWK3Q&%k2 zd4O~HPMI^yS%kwf517_I__!YtWPV6_FbvhPQ)gQNNwMsF>*hQ>XACOJCxCWdA*)-; z>yWp(KTOQ~FiZ_&Wiz*^_Sj*1FX>@|cG<0`M?_m0o?8+N!Qb8z{O$uCd^E>+fkxG! zQEW-faOqOUN}v5lIm3FK&FGv1ki8G%jz_*PAWSm&$TXNa(^h#e2bOE5-*iUq0b{No zd`qJmqd4~U9~Z70sjbA9tx2P$e1(K5An%+HMP_!fre#LFp!z7|`BTt4mGwa{m5S71KTnXC#OPh0UH66Rwmlo)pxsYVwtwZ~RIuR)6yrHt1S)9)FcD$qNAg{pLgj(IR zpV?;Tpl&$6X7HB7iL<)7j#S*Yl3P=s5XEw(hKk)1r+t+nuJ-t8#xV+~5vkNmG0IIh zSR|NlNij=5K1RXiGk2iTu{*LUxLLkAFg?sYzZW;M@3Jv{?7@kSot(-JLFe2zn|5>W z@pBUPRvwAp@DP#0?&G-D+*C`5ruXDb<>`X=;1az@~iG z(O829uuK;q42g8vUWsk5UzZ_ZC!Zmsc1qU0Tbb&5o2L$%QJG*4wL@eXSlJf90<;y% z=U=<)^|D3Ex|7a-10(sP>DW68`#sHvuasWO)H+KCQd;z6aZ+ZaJG^DCeDt0<&eXD< zj7nbeo0E@hH$mM;<@wIc8#`;W=b%XY6ojTZj@K>~W`pI-8@SR5ikRJROUZ8+`GF%Y zuGcJG@EQ4!EUzKi;sKC!^-a z;asobt|zc6)Om?aPelfv$Q>OAtjT3c(>eC|wH|p-ui*e`g@HM;GftDfgYV?>>olUs zwF)2R+s`U}Y$|h*&#A{;csmYYpv&R(><&Dx7BeG-caO6>ou|aio#$~}Ni~AGM_rMW zFW4MRUtGJ}0Q_0E%7DU5{O${tDkw8)a|%-)W#X*HJwzyqQF4@HKAPwTUS@zJ#zsrb z2-cycB#%MlT-L%H9z@Mddyx0hk8Z4X!!_5q~I(B&|VivnKh7Y=3zabZ`NJN|A2rk=Mkt%VQf z1D=_pM%O(eTDp}#4j$N4v5M2>T9`@KmYsl12Iqh9ophR9LEdJdtC*Y`CZk#HOm@n@ z3ny@zl&lXRdkI4paouII`|_RE%{7Y5BO$024IpK<9bQ4^%0X-$4#VIY0o@wL?l1%Q zvL^!OWIiMKRMhv>zSE5xpy7Hutq;L1ZB4AZIUmDi8~`(g`$@GC^XlFH#j9V$z*Un# z(ZCg-W?u@gRPdpG^%Emib+s(~JlzjFN?Z`Sp(9|Jys38TdI6 zxB=9Y@qHd}<&yG$?AaH5cFD|u?^18_HBg$ZE_1!PS6$s_RH$JO!hu4Mo{gi(paHyz z8=}{y*%gyK5X$%;d14sE4 zwEzScSm3g4%j>+6#r)bdeXJdMIhaT&&TrC77qa0KHjq>@(LHF+8OKqBfv1Iy8A@W~ zyj1H(Q5KiSfYry*e}r%;;n%IQ`){|Z18&u_)8NZQx1A>K*d%Psz2t=MBo^J40-B;w9g zk(AH=9WxpKnyNO$0#{4k4&>>3nd(wuj@&NRD>363+!+2Hl|E!n3?1TC?CLoqukpe}Z3j%}xY=p4eu0`;OWt zanv|X!Y3Y#ft2sCY6@|@l|2qe*nBIn#3IH=NwZOlD4h6wbm$usIh;~5)Ir;@p01jO zqZZPNI{O^Crv}P?8K`;Tw>%7v4q{-w!m;tFo$?f!!1{UBFED1|f|iBl{Xc417&3fO z^TruF%(F@FwVQEy0)9$cO3ZmxN;_BwXS6NmhUafp*YsahT>#}fQ%)OyT-_0cBT1cdW=^7XVde4eN(n04qVsnQt-RPvFVoHAea|s!scLM z3c72~Cb%nnf!B8G>6<(4&7bR8WTV(LZj5soHPX<_L_Qrp>?9rUdw(L=%U$|Qz`D@_ zhi>d_y#DYL$Ca`9Z7#4!&4VI*0cfV^p-mTYWc9QODJlcM`e&HSduJOdxC>845 zFtzInPuWNAhCYeql8MDLo_N7nF8yV0?%9W|efuJT&f-j?_PG9v_OQ!=w{qNy1O$JW zF}q3J)8KOVuekF4a%`EAN%DtH=fdi3=aPgI3{Ju}j!p#^?tG8yPLe+CxU-#3uT`8C zdi3$w&a0)`2vW zLza5Ac7V3_`wE?6o7iJByo%&GIy4kqCOGANFXpUts(ps;^)4hcKBaoN=Gl0pec;JY z32n5#$Qqp$kzT$TDRk{?>e%t)^vY?i1qNNVjyWS29j&I$mz58Eo)WJeEu}3mZ4>)g z8qO%++&A6ORL;@c^hDz0$6NC_+QU_qyQ$6%RNZS)4Bam!qZ={bZw>TuRF+{pIm@M_ z%C@7P;CL@dTVr0r(<;ke&t|}3R}`>OQ={OU z(s(se>eg8wtPtf!ryxYi=<2%``r+zjt^@axm?htetA+_KYuheO;a5Yh=CfHwqI{yQ z@Q!@(tsrHsx`Z#zsVd_=-LG%6nhoX$F@JO0YF zgYvOFQ!3lGpQE{)``MbJg>~(3vgy7B712V0a{}d3k-^DWQgO0B6?As!;&^rM-aV5W znrow}=0;aTjPcj7zS$MbwD^Qwo;z@>bX}QX-rjAzX?JK`yMK(7KaRZEa!AJM{rzZ` z-dnikealS+3dYMv11IvULS%d2mN)Mvwgy^`W(67e`IUI`pDv2%S$aNpVM_&k?2%&z#`|jcQo`3ioE7d876uzVL30# zRnE>?$@3sOv}Nzz-qDvgi#~7}j@dImFfJ2k?FqNu$uyx1Bj;bMoIWbRanSr!bmv$w zK8VP{o#!Q0a^Ib2s>J8wR@=4B`U*Ws*=}95#o?@CDA}d24_>;O4yzD zIA&y6@vRI+QON9te`k2;>NrdA6dQ4n^kFJC5raDU+zC$zgrpAk_u6u|@6Q9Ld2;em z#=CUS8%`dnqG<@BjDDALB)#-&L;z*U)rxCQ$6dr&R9=zV=cn9>W=xgyFK|eP{9x~ms#I0Y(xsKSa3St%KsbMBk`L~5lx<@67TfK50>RL( zg#_yr^^u0w&-BMaN%X3p#1#!*&Q>oJTk8pQx@>5E&9x`MNXN(7MT$|p#Y=niG!m!|M(DB z=2Ef9yGPiQ;3TJo?#yM?Bsat;ILT&OP^~*0A}`80FjRO>@;XFlUDs}bQDkv;@tCrS zLKLgaZT+2jo1A$byPYR&`!@MyFN1Z6l1ozY(mI0A`Gqvb%MCWxUdF$1K)opEu5iVD z(`${or-M$z-TNz8Lj%c)l``jPYctL9Biq)~C26??lzb!o62;d2<_WzPw-gf2@UK`T@CWLAEA;T`?)6Dy;)Pc+Z;>V#RC_u{Q_n=_WV}#x@GK|-%I)JIiofOi}Mc> zv~jZ&_j)WfR=SiN*T4At(>Xo(X76}!G%#%afM2kOL~NjGrTMOK)QwnfiHlCElRuBM zIFh76q4Dxd^X9OkKoYmMY&A>M(3>Z|32Wucd{Cf#pfjCVF07KPB6p~wR=aX*GEM9JJ@f(E!uaM96(6+azS?_y7kw6E7B+YgP0D|vLV70OgGzXQpon#B zYYdu0A|M@ep3j%ZX)WU{zrzjrI3C(``FO6B_RNM8XJxhfc(s)aE0-^nrGNa=oh*m{ zCcx00nq;q{d)%LZov-m(qN?8>e*npID&;KoQf-E|7}6XY4QoQz9}>hCFs_2jv@>Z{ z_0^)_>W!rm-SwRnI^Na*)O_W3s@wg}fgUj}dGd zO2}kyn1U3Gv?wU0N)a(@m*$Z&DT=I2cW^*5IuxR7X%Lz7TE&*h*g-H+O8SMEPb)?c zfp$O9=TFVk)b7^uZWs2=Lua)w+mue0YZ-rfABtNaoa*Yp^YI%-dP1D*>fY7K=1f)w zHnBxzx3BM|DFnEdPji zeIZr!UTfqE$vCb-=1)roM~P9QocCx&bhqlbx?vyehTs2WD z*EUD-d$v=pX2E1}<2ZZwp6u(%q))2T@$nDJb_9jWjaY~EnlN0rI6wGS!8)^7 z;6)!1=;qUv!+d#7azPz)y-a*u8#$lBdY#9vaHGGTF?dp1tH%dsk*7+4pRV~ShA|lv zIxc;ncZ0FO{4HVQ zk!uTG9cOWF-(L9Utx;_C#bjq@>tS7h_+ZFzv-xCLB$q>T-_nuRZW3IG=HONOk56ZI zREJ6O*e2FD58WxEVyXtuT$#@_HM*nnPqp}Eh;hIE;lyYsR+q>CTL+;y=HQO zvEtHAlPX^2BQP`Ayyul!j{0q$yDy$l3dvtrIL&_l^e6dZuaz3pHS(t&CmxDkujZ3s zQOP#4=0CZqNNx5dN2P#qu4>DuXl8MW$UUvhBq0nNQR$EEOLZx3MI6#PtldW zg6PYz2z0;R%(55N)vViZRbgV)ohmJz`=3>&`d&c#5&pgPO34<6uB5Wsos~@uO6!1vd^xUKevhQ5| zm?$Yj8F4g6^e%f6qsvrBEQjO?>PV$YnOKqnY5przf@}1=P7@gdt6yuxkN=n()$LBz zRMx0+i=Ajm>~I~A<$@#{lB)SwAD0%}o3pRE&%GjCu>H1eDvEM4hmCQ8@5{NXBlq5D z=-8?moWC9Fz$KJ*a8YA#_O#s~<(|Zj^0l29-4~3M_KuocpLE;4J*BrGfA#Rb#4Im#_p8+^-4Nnmjkcaw<*>stDtg2art~w>wx9x@$As_MTW{NLw0!~9szBtbJwF)c;u7@gjgC&}i#Z8SKTi6g`e4Y9%qL-yv#HZS=VH!` z@H(_TBdNPdB<~a*>1T23SE#nuy*6<~{jO`=z~C-M=$n2~wtfrBzDVkNN>a%wb3p3YSy^$h*!wg~!iX~xLkn&(&ifo# zM_*edBVBKMt*+xFnIp7Vo!6~$>4r?9*Ow4@LNh}|Hcl-FCE=~{uBx-?J@r2@x@QjRw71MchkEChZ=Q!JrulCTyjM5#+SQKk%CLuE10u z7`=OY0?HAQ%i|5Qo|xD!#_uo!a=RrAT`&B6t!e+X?J8mr7nO2T%O^;pYfp8)Q@#O0 z5oYjkBgX3dWT8RWHSuQEn=K(9tWi!xOsFibw4o{{kCQ+|aSR#;UL#i*G+=mXDbMVe zwk6bL(DF;AzMfI_z^sWDXF2BsQ-MpW1Hff8`_0sU2pQ_e1O8wcK1>`z)(?dRJ zv4G^QIprHdp}9Lv?o1i9$iH+y*jF_PTx3&Ci%d#}l;SE!fSl21l%U@v2SK02>MP#a zUY(YOK*D(WYrPVvyAi(zjDSUDsY61RHnh8?J{S-ZvY>_J zM$QgYCuScW(Xeb|yC)%w1lolI4NfSzPUZkv+u_Yi!-n4LY$T=5WjA%B3_v5evWFR zCr?*1Tm~~ACD8Q-KtuCG-`eiX$&-vQ;Lt-tLt2OwjwR6m^GO~YOEu2bz|SZx_)y9N z(j#GG(`f>0o!8Q~b1PN?66<(!7tSW34zcv7$_-%*o6?}KaWhll!~H;v$k)k0N+$`w z;cpJW0}y3&Zv7%;vq{Vt8gY>O5~vrhPKMkUj|R9e57}tlEZY&~j8uz&ZcK;ExOt+1 zP|1?}D3j{Ta6N%v*Ja#4)ln6a%bFlQ`QnI#6&d*Hv@L_Ew7@`m3u%T6XOE0%T(Epk ziUVaIIQST2E_T#&ZbJY$-+bp*@+-v`k1C+FWD7)z62^OD+RR6p#y%PMxa;8$#HhtoF!)+I@Rv((cUb#q@FhKtx)oNFd8Uop18-EGnao zg9nKMn&O~LAZ0BrOCE>mQTdz#U581Jz&(nq@z7$_u`!;HK6%~%6HAN*Oq7y5xvz*6 z*3f*k4vT{}cvKMW&>&OdrM_;qh=GcUzR@Kwj9Utw_R0c22A-sy%9EGwhzr%bC zDXZ!Yq{8$HJg^(}@_8sJ|Bf9D1B9S~vl?N84dZ`cy~)i*kBQ?g=ds6SS(u=arxrj7 zbM3i>g9Ba;syUjROQJ>nBK#xr1Q*^R-`kH%yYjW+Tu(NfMTFvoC}Wg3s55j{ySr0x z8h8r;!3tt1G{`B(Xhs#_KDtk_$EZ5L=)1QxD$1-=QHr>VYds~$e*a~VTc~{)Nb=lg z*WG|Q*%#j2>4<_7lR6di80wFws))D?>SQR=^4|Xz0i{|MC_*-TrZlTJ62cNY54%Mt z6~gfWzdjhMXU&L47CzVxX(%$KLQWXD6&@bPVQ(xO4M+`QxbFo2*c~~DB4bq**I&pY zMz*eo19N9?8L_6&?|x3Bz$kRM(%J65pKh2We>Rz3b>WpFf6PFK{BuG=I(R29SXw)_ zs8HtTw-LeK{d@wU72Lb7b`OQ#5zsbfJz23xu`->g(-L+5HuzZkPD2_e)gE|j#ZR7l zS`PV^c}v=^3l29D1T=(pX3oXJVaz9yF#rC89wN7}!D2*?B(e(M`|4eW?XMG-z@aPT zend3$rvIYT0=5&4M0WQjVaB{Tf0i+X!HxJ>-=oWHC&Qp|`}rQ% zirM4F(ED z*r^+Gl1*K4&Bz@1f8=y22Ocy)wOafDt}({W_s2nUo=k%02}^ZNnj@qOS53bt^m7PC zq!M1Ce^w8O9|tM$GFq>E_<0(rBN0hOETYUn^7;%%p-dzTy@J59x5P~%JY)w%n6TFZ zf-w#sX3e%`2pgWOjLbQPeuMA90Xx7;6E@6sIr}GPTm~NhJNm6Q+F7!y6J3S zVAH+p@xn`Gt9&mfzrCyCp0S%QS`}DYG&4K13Jd#&dFG1cQ+TCj7zd6Iy6T~b$bp{@ z4B|;U)t@YZf1>a)gZDKWcx#A;S|Ad>fbauJnzE4~f`-^lShNuwZJs_Bz0KB=ei`VT zNvIQxwl%yDB}2dnrXwtTd>!jI8(?f7y}-BCnwyK6i9-)}*36`>KMm@nUIHp2Rr^oX z{2k-t<0OI)bmmfmomS{)S8M1byQg2jUc?q+V5C$Z>a0FW&KoAw@s!qU`>hazYXX92 z*<3GM9dOJk!NPUP$qhfV9wpQiG!QLno8mANXWtsd{@hW4`hF`sp*Cezpg@b#;u?*y zCsNwh4XFkw&qZ1fkE2+HCwvU*1Db$tLZI{XGr|j=rsVuk+NXo&_n`jvQ@`I6UiNVW zI0;hHS_KI}DJfoP*aGpyP}t)Nk`I6t6c3bc&!F7qOBpugxB1jAeqR6-7sYxRdD2>$ z(6^bmLmi>#8XOtl#gk05B~{SAxm4gIS5!hb7%6vM}SN;{!bHXAdX=gKtJvG=k-tlOoj12`s$+*B3+v zD8SOQw#UF_T%2brd>@T@LTD>#n`}EJMCe<~#z#{uOCq3t6K>^LfD)eBj;>*z7L8_o zFjT3ftzo=vf3el`FE!$Rf8=qL7j#F0tbfUwH6XER+*zNS1fOW#;abWNpP+sfWHGnF zXC%445cdF*@Ft&v9pi5<>K{N4ek>~slCN?y=%0CkI|2rd+RDgrd0o zsrBBtP$tEC2j4xi%Kd@|VA&97-~Do251n49$MB;C9sjij?C6bZB>|$|f zjpJ2@^eioG87=Q`wF|E(4s~fs@v^;Yu7w+_cMU(keQ@{SXm~Kr+Q~KGw}=MS5VH&h z>FPL=v;{O}f%B&IYKwaji)LX4#X6SFD6YPs=zJVoPk2MzS$RpZn9Et1niU_v#wllg zti7#AtAOtePBCZ7zPWm!6-=r1*LIqHIkiECcQwFqlXhybQq}v1cS8&t&|-N@JO04&!<5)RCQTk@$IY zk?TvN0mo%|N)*@hju$v_(KCi@$DCx70FB#pLih&_Bn(5riMqMg{R2R+&%`7EMAe#2 z1LJJ)>@Z8j{fSLJk-XKuO@yz7!^yyy^oDX z2Ke#Wp)zit>(rARpX7p6^T&~d4H)nMA+BFW8>OqIVY5R&73qzB# zJB(SQ!6#>XDiKKD1mrEOL8mVh?_K69amu4_c|Ug26Ie$+4Sko|ebAYl;$Y(hT`-7$ z-nKA$>c_bxwRO`MTM&XG`JwIfu|iUeMBJH$!|N=;kT7fl4aEjcG?&%J%)4S}i?Nec z<}=julV@|UjL2m>=h_sZ&Bd0`@MWqkMs=h&ub?pFjSYz&iJZ2=bTuVXs` zQGKMWJP3Y5Ylu9;u;jrUAn&(ZhDma;|K;RTZ13br`L4y+AK1PxJx~e#a0I3r?RFw^H zDeHorr@8Oh*~atGy?IgICTXNur%5QKlLXoz?c*Ga%4?AcB2S3vTM)lyM-<3~!X-5& zxB&uH13G~PJdTSg8*lTizwp`BTNasrZe7^6&w>mbIQgy4LFp1zBsgh(`gO~X7Kz2Z zP~IWR1dCk&p_oV=)})bm)HqRR6jtYRTD7Fo!P~F2)kTHRy(fx2{@JRFfh${|9VeBo^R)`=$K_ezJ$D)LdrH0f16YQe zfh1=FK&ag%cXiFalowIgCAHzCYK=l5N=jK2a{LbRL#@-wK6qrU>iGr|+$dM8@14gl z|MA&6T3bAXDuACF7g3sn;&~hr%dq-#cH+LUkj9JxaxA5j4}l}n2(BR4!zDfIcv8=x zN!VMi`j>zUlPb3Cp9qzt3WZqnDyD@A8IHKZD6}hu0*jA?8}wRuHz2ya7wB%Dm$9UP zTAmI=};a!2d|9@^&RGawuAWYG54d9x3Qr(Mp%_Qc0$yIp<@#zL|pYLoe4 zp+#@7R;_kS+d3&yn4G1a1iXB>n5K>%U3a-|vkwYlx%FhgqD6A}sF`iD;h5gZ zE~QzM(1s%qAeph3Euwg76VFK!Akhjh?MR;fH9LNaBb%5Oy*ZH(9W}zmHv$AAP+FEq zL8}V_l@7alS7#I7Kn6>IChtxM)ix;6wo-7)y(L|9#-WSyB}lYV#lw5687Uj0BwI6{ z7fmrS%>YOc%5cR*?2ipy%7+_D&DbIL(TcZB{;YLD{Jz-`xm9;HLzIWe7M3bpeEIIV z6mroEWfR0msu_aVdV4(WS4#9_Tl)|$p3a5XKo)HGOK{_XR9{(H zz(AzN0#h>hY$$*gp5Ftn0yktwz~<9lHAv8O5aJr}q$CiUh}2w%4Z30y8H4s%l}M8M z^tU%eLut5h9kkBp(Nl-sGzQ_-9fjQGlu_02lsQa3DgYqz$Jo660WF1Za|>p1y7%V% zJAldR6RBk3spLJSzKdshY-)y*CGWPR>>WcG13&0N0dh(vs5z2V7Q%Qr(F}M?rBWOH zGqnsysPW?X?l;dr2dJprTE^lY5R6U)yL1c_;C6L#kmYYmpIo+R>wB&P0B%gItuidZ?ydugGLqWI{<3WCCZK7JIKdGdozsxRu z`*LZ5)aPX|auMSVA+k`^Ox1h$NGVAKqbX6inxaVLDWd`v_f&Ia%M)I^sY_}iGZ_-Z zcUr^f19?)02ZaGc83wFYs}Eo3hBq`c1d?0GCkn9-NEamF2tnv#)(hy@3CK_-S6d6a zY~`6wk2&!t03X@&;<+Y+plgQR8@weGU2aDT8GgATpV>V5m-r)o9d(8Ywi$u+7I5Q-Tg+4QF$gbGnPWCo25sNd} zSqEYjPn_d=4L5EE&y+|skWN#))8LWAt*k{ePf^K*3N1-?0aFaI2FQZPJn|0KjOz@q zBc5)~|Mne$2jAmnGQ1Mvx^D*3@tKE;<1_5w-)B!Y6_p5N)qLMcQl;r~ z504YrIzyTDX8a8VX|t+rr&De0OU`Na7$|N&e^_NBk7u8|0&sb6=1gRcNGe$z_0=Yl=Z_J zTC2L9OzIokJf@ShM~X`qu2&*~skK5xq0;jR_QqRRWLKeUkpJZsKG!!`5bAy>y|Q*Q zklcyh_hYV1x8#DPgygiVYYycw|KicAp3VE8+_aD=^$*e%{g^9o3VF1FuilSNP3$nX zoNR7MNr+^BUKMWHZzt8pw@z*&?Q~A731ELZlNJ zHwT!_XGYdG6p@slM-b)<7Kg1#=i(sV^9+B)-*XfJ{Z3E5eZ_HW-gLOMd}z2l-ri}( zUp&9f=}v(5$QpT5Vzpkffgg8h`=3jnccK_t~Sz} z*&5SrH@(;-XueFlv{%!Mh*-MKi&dTuWoL*~-^@m624d`-+8T1?K-TOU-<=^5P*csD zdzhLVQq1{TT}a-xM)&tps|&7K{Jum`HKGN->g;POO%wC_;1o#$+4TZ!90QzBqO;YhqQ&?G5NKaWrNVKIh zib#TC_jFTbTA$unyMz?vwUjYmFga|^Iy>B;kJdvkHw?M-+rFWi`G%W0l-+qw(%btb z)$|rU6L-f$3;XU(t(j?TjagE3FLG*ZOokAOY-z(v+6}xmrofgY6R4LOuZ2tY$HGHMQo>=p65M|y<5o; zDEy2yeB}01^M@~HlHz#8o`*yymI~F!&5GLDUhCdGtjqZGMJM*t7O|@myDg^oBKC9Q zk1)nF%+95L#Hw;gNZ&}o)t(q-bbsPQRxyajb-@T%9*Yo3fJ=bazTp-5(6g zE_5-=^L$KQ(;QJS7etVN* z{6;hFZZK8lQHB7Ep~vrRl~?&+8oerL+UOs>J z-Y0-E(Y@dX)whR!Yi>?4L$=OZDa$+FoGV?s+{XJ2b5QA@e+9VLop-LzjS9k+5z`Iw zQMD2rp&hDhQH;(*jLLT|L^Xdlznkb6Z!!LnL0hoBdpvD1cqizY^pMB2+!)rE!nUnd~K<$uXLm&iJRa!hO2C;Du&L4!{(c@?t(d+?HUfe~7d zDdK=eCJNX{y-#6XeJB0?b}Ks5rxyZ#ud{8e<$1^)fDJpU|I1VP6~#kxDI3nYo29`8 z{ctz9zGJSc!WsIkWz@O{jF^!Z5FVMfRB9wU4>6BJ@=^y^U z&yet`DmW=-k%mHl4hN$e7O-S7rCmITM5kk1W3zFs5TC|p>O1`TASh6}kZt?dagVCO0^Hi-S{zWZpf-a*e0UlA zK&sv4*5E(qL}&s(q<_R@8GV=u5QB`BMR*sBlH!WZ#ddcOk>gr6NgCbK!2h!YBAUp3 zPzm1ty}1}zKVSiMxv_TrC=bl9#XH@O3w$v99N&KQIn}bkDqCyVsQw&gjU61OKy+B= zmB)0Vrh>|v&j#r{*|#4*VX;7g2~aO6l?mQmVKXQ7p9Og6!UDD~+g%v6YH7Ov)h2ey zUVf_BG`#)uMgBiOBoYHZFWdBde}v-qGX9))7PzDOt^v4& z|J(oh^T*!8yZ6QGCZk{C&u{ z_n$v)AYKDbGEzyzKY1a-_xPD-oU=<%a%v7BV{IJ-lu#%HP-d-|hTk42-z| zN?;U9CuLT8pBl`{|G(OM%cv^Xu5DP^Af*Vh1SAAR1w=}uqzynMq*GD}Dd}dh02N6Q zK^l})Nu^s-ML;?QrIGH2cV6DN;@-HQ@s4kN->>iS*K!Qjwa)8|Ip;a&F^@xEm+ zf4<4jSHy&qXC-%Kn{{7+zI_v4{OPXj1gLSgZE3O77-+DyKN;17`9(b8P06m%RXs71&3D&eF6(vj+veAL1Dcy+$>M>7PHF?zYEn=Rs z-MZ9ln;;%=0f&?ZD7f&OJ26+FHEjgw%JQ9VbPBkx%`NiCvPS2a_jdFRO5v7%90oE9 zLx#P)>b~{F>_X@nJj|nlsR^9SD3*mfLg-ZOi)|C*0m@5DvjaL0h-jSqZJl!^y5HPs z*yR0U8**MPi%u`H>fzD)GtaaT#)D_TnO3QF;zdp9@B`3%j5Jxgd$iR0s%1>guVeHp z7T>#<>>^RQ6wr{!C%M_5=7n;9tF1*wRV24*A`D_oW(BGWlCVJ=Hi5|_jJ<5_lpba2 zm#~%g=Uy3Ag?1`ZRLNx8w(hJx)cn?00k8IsXD`#R|94RW)u{7#+fswGII*?6pXXOw z6CAsqPd1INDy-B8AdEtm?z`K(snD7gQFir}YG!OIsdZ^h2NW_t3Bo{13YC@bdT9#{ z+CD9VI=^?XarW`OTgX4(j(8GFs~g_UV4@`nz;7Y9^Mk=+eS`z5zmpvE*tDGH!x3PG zI0^D_0QFLB$=Nn}I1al)uC?UTUgi0pFX3ShSF0CFQ;4GBF!1h3wys<>@409KmHx=l zJA28`eH+jWZh$07`hf8l8isw$)7$EQf-4cK^m*o*)jxF^5^Vfn}}Kzj*z_-vK#+Q-;kg4#@y@l$=^=H zPeb_M@p>N5D(d3A_f_OZ={t&_#wc08EvI_zA)B}Uv`HgU>86q}qxc(V? z&6bJLC{i|=;1ELZY`q(enD}?=oTXAxq+bV4A`xI2XZ4`H>!QgMV9V%91)el%AWbvs zaR7SI55R!O3O!PMnWc+kP0v8&Rnpb91P+u6Fuhq!AG)r)w}b!r37bXtRyG1=Rmd|_ zABtC%HbzqL~G zdcwghe?WkPKpkuMib@@T=p#Vx^%Q~N^aKP~{9_S*`>&**M`#VAV0Pssddo_^&^n1) z*tKiPPQKjT4H}sp1XZU#ADU36M)0)=(gjSGNyg>oUUieWlK{rx$uGDI6?mjcgO%U# ze^~c4vaB~h_{C5XqLPo)5=np1uz}7C_0AxOyofG9l^d%_2g&+C1ksZJ+ z5g5m{;u2AF_%*W#F*zs7Jk^)z>2u}k1kZN|Tu7M-`;p(^UVHu%KIzNQL8)idUZwHz znHyv#-EWdg02G-m9z5#EY@Zkrh;)Vj%P&KHOw~TIsVO2#U&5GL{Rhl-fAE6r6fykI zMiMu*Udl>mGuVcm$N!fH!Y_4V^+-JIFFVJ^78v;9*6TAO^fiIDSQqy4FZ+JLgyd&~ z6vAZ@)*Znp3cN8VBIf8GPyu zAUaBjMMbZI2|W$qfM-aU38Vt20Rb8UB%n8-jbs=hGsQbN34TWHS<6?f@68DhK})p3 z_3IfLBt}P?Mi7Fsn>H^|Yrh4<6N`3^5(0Fj12pi+U z0NKsj{QD4Ws{p3QT07eSdU-}a1|aYmz>y(Pa&85UHQ;wF5CrY8Q7?s*)=JzzY=7dr zn5T`J-M6LX{=-22VM|Hr)0^$^V=O{lBl2UY@cn-_Ap@SqjDW=Fo*8 zOF0=7E_!!U0`6EN(EmnKT6D#a>N@UNi8h2ycL487V#>vGnXV5>;T@zsx4s8JPXn$75=lP$i)QJHEcn?V#%`k^=gLc>a3 zR>k9M(y;bfN&Rbdxr<}~S`rGv01U$HMD%DyyxlQ zDTG}L`~VjY39CQHFT=36zR!>0joxO1{r>VTbvYjPTePt>qipnJmzhF|(S|5SgtRY| zMO6ws_x3Ti>8ll?kfc|YwwFb{ViB;P>0<_!&6hEfSCJO|zdv1`;Pz_7hK3)9L&+|7QyhTs^>4O%)Ro*kFAC7^By(_al2&U~l9GkOXpTeNK z;W`|~%bmnw-X0H;!V=SoU<)ZJT3>|g4nVk3qlsJron=q;# zZu)>UeQRtqA`^L$-%<|@U6^*M^9N|Bqz9tQ(z%b}`}a37-sOsh4_Zc6P#E^OqrigA zmV-8?ErtM<+rb>kKLBG@yKezL7N!l}sd{eZn=8}khmblY$G;vH6!0OvS`!81up?!c z@&S+VQmgRI_|^t*%!7mbjuJ8659|CS<00_0jHrjvA{IG^YXQLCAApJyxuS%DPGd-%a(GY9iZwZ7j$xQrSlA+l~jIyE9I zeO4y2A%jo|q{|7Ef3fUU{(gpY0yqi+mVmUBb^>2ZiX{S#D(lCKcjy#n#lIa!{3F{HjJW(m$|$vJyyq|0K76O%~ToddpP zHtE;6i<-$I1!hN=HD9`3bNs_MoH?%+fy=2e5OAw*8ka z8(Lx05N4<}*-Z_U?|Qa!9>j7-Nm}e8gqFjNF}=!s$XT4~D{O7gk@ohWg)Om0eztjH5v@=2&o%Jst@iJG=Hu7d2-`{vQp_d;akXk z6K;&p;HG*Vi1k>5BIf|ud#{eh;XU+5=&l4oALI?lGkj_K^b~JR8bbJ{W8yY{3gNGU z?K=floM+o^Jf6{JXmId0L}_z?)bbfurh$~%Gl&JLf*@qEvBTAT&<_42O_u%LUJd`3 zWw$55)^7iH^?f^y{b*!r%h|75?a+m6NfxgvWMwDOb3US;7QVa{%&76BSNR{iVs00! zQJDtPbewL);|4J0!^r*mdmzAy4epCd6T-8DA+5&mwvki#g-X?-ddX1FZ4L$_$9eG7 zKb{5uwa0HumA?W6*8+vmet=+uljS@iiu?e^xZ(O2FWjS%Aw`Grs$YqQoRt{{R{T&% zv3x}0RzP5fLKNLo(&70PvPt@(4+>aeqw85&kk1-XF%jxu*H2#X5#hE##~Oy>?GN<8uk((b2uwyl-RIinPEWP6HT9MZG-!hb3Ae z{LxGd{KiPb&i1=w^jKm9!yiH<@+=3~a0pO%& zfM_yX>;UG#!Rgcz2+iI=^rS_cr47ShX8u$4pu*zdv`-;`oReFv0Ry`hR{`-dvg;Rs z3*nuo$1<|D{=Awigl!qOG$A!0o$?7#gmXF=XcRFwAEvnxM8 zd2C}rQ^yk$2J!c*I&OE+Syz2L2r+PUphv|3$-b~98y>^ng690HUH;Qpe>lGfNoTpgkl8hyJf)Se(eE#ZW;e{^yYQW*r7k>$Vi!XV-ZPJjtnb zA8ri7QIH}VGmIDy;6^{+QOVd(fgpgYJ}}zue}f8fOn$%fjUtCx3-|VZ=mw*@0?5lJ z$JI)mbNhg69ZBXF0#W+S%XG;|sGwAYPxiYb_>b3tS7o(DDh-f%V}vLuARzwHg=8F+ zG&TBkjoc>)mBr@Dv_X&OR|BM*+iW!EKg6_u_gRxTOFY6z^AoaupsA54ioxorllI7F z<}hhFZNuG)Wb+^@3zWfr5$J?iW?arBP0GXjFkm2@y{S}UVF6<`%%Sxc&3)5Px+s+V`_}?s?JD;vEO-; z)dbSv6JuZD68=okX+e#g<>0!GF7zW9YPtc#a}u=jC8GmjeKtinPKnZa!+E;w^Wnwc zSKvPb-#T+|VfZ@I1o8>8*dQT)1@7h;WH*dnwT2d>t>cH&bEUoldqN24!@oC+f*X7= z{7-YHbXB`>;Ui1BZ-_229t8Y>H?P0>!E*4=Eu%vi&1ZF)j9vRYg!0e8!yuV}PnqM( zJYt<%HUUcM8p^(8tluXoOiCPZ5D&QyU24P70>#y<11mBDjoVLqEs7x|HW~c#p!EW_ zAaZMBcoctP|3LvJ>|fqWdL!S--7}COrG=(<&Xk4EGw_K19 zy)XNx6GK6c^b=k~V|I~nlC%Rtx)6xul zX8{_Ckt!FE%|%p7BKc3~9vvm$x|A6R*I;Slz@VUKz+qioP{3Px^ivJ|>F{n(@loT# zSI$90Xu7M_bqRPRIv$_#ADs61wtlrHUia`hnwMgc9)Ka8xHj<|r}}^tc^if3!E3%) zo(JWb3Gl){(+b{vLPz0z%F-?0)QD!Zv2Vh`VrF|LSFQO|grcxf(+7>+fo_+k7y(|; zyohmxzIsm*vCPsH4M+@vkSMe(vTr77M_A+aa+fZIGB z$gGEZl3YGkdF(PNnUc=kmq`lYmq}tg?#GW*(eB(M&{om1s>vyx9>9YBP+J0Oyps#1 zA6JrQ;vN+j%-eYdTM@Y3_6Nt@Y~1T57c zlk_z2Epxo+BnVMySbjgbCnmfnD}pix%o&~--hGG4U~2|^L%4~cPrn=3S;<#=kA{n2 ziw~*qv~+%MEv0Ej_qPv?|c@hPpH?&*z^? z$MiA55|06o9gh<)9FH5+-#%}`7@T*777qV;5NaNuhrnM4O|+(@yg+L+dXf-8W>AVS z>n-snqsaOPoV+Z#f?)EnI39Bi;?B+fudruLp% z^PV7y2i6w?j!;s+%-tD>a=+r4A{HmJ9noRDfFzn zX^8IF#BFL_LX)i;4*Md{e+JLrEgI0?(?tLM`FC*CUJrJb@7VQ$#*!5<;3RT0=5-rJ ztt~t&k4~=m&T0<*l2%aetpjO$8eng^WtQ8n!W^9q3$#ndF*QE0I`H~;sk>i$Eb$PuOy`1Sbjr@!Nh=}f>>^2Az(ueBFOjn_!E)Htk4Rn%9 zXJZ}3_Y_!u`?Pcp1FBgU5H%G?V7$_YPT*{){;hPa-*WtRA5o^MJ49th3~Eriu7jj; z_3c?S?L%63 zM`ZU0@{fk+kUfMMMWvqB?a~|gUHRtMON(NPu%XBohKTqWJUSERqbMiDEgnd%-nshP z{F5-Sa8x7GZU)e`{W7mGjs?VL^t$vI|K(W^u+=1n9$z7P)G8~$N(7Qu4_4&2S`bKq zxL*lW%&ee!vhLOEjGiUoFBmL>rK1O{0(Y$9N~Qi_0S@ByoSGX?2&#pmr2!CpT6N!f zmSmDbX#)Az%NhsVAf6ZV(MKd>zJrQSszkl{AGiEXSXS`kw2+Dx1;5FSL%W;<=mJh? zyrhE5oSjBo6{02A#sV5-nc=<23;wo#{}tO2RmX(LUSdWR#md)e*!AB(rsrmE0HY`# zbdmt$(lum{GTqvyl6xIGQAmjS1fME#aI|Z5NZ);!#`={L@PMIp0DViJvBWO7>|0M!u zRRoz;ho(~f-+p{=7(Hwi8&r^n@*|bydp?y7Rne1hwgcdr$kCy06q6ShgbPw+WuVE{ zoIjhXn)1i_kib^6b%oAoD-h196Q?q78=hYKJa-oYg0aMmjkV!hvxB8K5PnGYt z9juEX)jhbND9e8a3~{XO49uySMuGu^<5116z?pFt)PsW_gBoG~Gf#Y`^8kXE$ zzbnT10)@yW;B{+F$?W!16vf1Xp5nN=Wze4X;cuH&w44-fFyfT$^B`MM2gS=FfalCQ z9MaChBFI4`K1<7H{w~D$YX(l~cV+2i17%y?5#Byx5Lfd%3-2g;194{`CmMea@%O!q zZ1oD&@{M*!NProv&3!{mnO`F8l^iAbt)%D~>A(N^&zJs)9}SzH)1)PlZ>C^KADVAT zuESp%zXYRygCE(xzw2B5+et*Mqp-$; zB)T8a6Jev-K)UDu;wwMq1`~_8BNMBjKOV9FzWV?C)BpRN|IgrC5Bl^UXF;+Tj z5XV_m7Ys@^NW>*El+M>uWq0ZOEmz2EI{5t9qiO~Ljsu(hGLos^4o1X`UDnblMWPu5DDzEgcv+THRHk~}nBt+Kk8CMx2!gKw$TF}X zLWUQM5>luVcus=Y9h)BRSaqS5Y;;t53Ajq3EBma3bJ77tdK&oCTa|&@PH(uQpXx~* zku>j1%v?_4Q7D|G#74sZ+G97)%U6YMn}(=7pn>e1bL1h@Z}-V($bG!mmY6dNZEs7I zA25D*jnY2nK=ZBNjlz#}B|3?{5IvFPvei{5Oa`b*Ii<+jyP?V|k07yrDcx`WtJl%m z>x?m|qe4qJkyr|m(BlK?(H5<-5^k3^d5Ib%QiL+*-L$-(yH@Y%A6CQLHIJM^EAzD4LJwi)}04T*Y4oAP(r-r273!S#j|r{7Eb1 zhCabM0~Hrx9-!MoqPURj6OlAVac=e-o2+?Vr!qjYj;(kH!f`6;FA6h@z*8o`25xD% zihIs}5xw1st{D?vE##ZZs`7NvPFJ3kTi^V2zv-z7kQu3#fE~;RMzT7{%o%`upC51& zWsc_J?kuHQ*2)R|lZd`jakDHS~vQg>9Lz zvdnOUu&Erv7XD@S3@?a*Ta1J~o4!Z{g)j;{H0KQ7x@&a9IV*=Sy! z3K_tu`&I;)#x2{OK8K9^B**#|5gRoBNDknMs~^+5#YA3?s4qgXtvm${@!?xUPjzjC z9Ualp`*n+d0HB9_+f>y(bcNHf9P@A&&Z>7y6mi{IjFT(>CS_{hwm3D|v!3rW=>%TA z^{Kj`ms6Q_x#Or6nuEnWcd6lS(~v#dqN~|LZ#DC$i~e=S?C@`XP2>~T+sZ_5o4T&N zjSGNedy?lEgz+p7Xi&{~7no)gh&yvuR28#t zzkRRy%cIJs0S{;jcUv5S;EL7-$y~*6!TPfxlDm!4bsb^Rx&BSuV(CaFU0yjHFokdl zk)%|qxEE+r*ZDEXjz@j(MOkw5^% zPND&^^v<*;`o?z5z=hRVmD!akzkx2W%Q3z!)Lur|+v`WsYgc;4j=IlzEk%7gf_4vC z0vXCauKPku{FR5Wlp2EvIIk@ztKQ1Ju}XKCF8p@fRB^FN)AF1vL(cQKn{DjoOFCF5 zW{!-BtF;=V3*lPZ^7iq7$Tu>#&`N>wYm{#6%C>jbX-JQKe&#f4Okm@HrQ z+qihI0Umnn-Kc@{<=h&DSze~6h}k>wPOm#W9HSk3&)>S1?>BaFJ4_dYuEML&9;S#E z_$JguNjbLhT4(#*wo5hth}|o^Z`m(V_HCO}gRbNCTMyRLtpsOiRv*%Z33CH5aY>Wy zkizm(gN1-ol*q*?W3H^?eTf20EjE+XEt>{zZuXmHjh7}9^(n7?LX15#^>g`(WV|LL zR4^WqZvvlVRT!^(e$U<4YZG$lOS=NzI4CsJxdj@6tcwJOs5bX`Kb`7Efmv!qXIh3_ zjcqDkQu1KvAPqgi{pvo75wYOMFF5NqD#^&_ubJ%bRD}dLNxoDx5`~HRgQ)A}V8VP#12{`vsBqd2W%A4i%BDNRB zg|1!o_03KDqVQ5gJ~a`2uRr{_L<_O)&8$S)n^UK~Uw2R*5wPA(GM2K6^EkuX-#0q# zL{Q}ap6>IDX`l_AXt2tN^Ss1BYMl@_c;#SN#q1584FyHFsDZ;cH&?Fcg~`)gB*;hY zGUF|->g+5$YaQrx*)7OK>2@DoE#|BA{2a6?LH9v(e5$yAnxB!N3N>IwkF5pQ-%*zl z67lH2^bBJ!;ad{Cqg|`OZQ;6)#a}+s2j27T*8m4BMseOy9<0YHvCii#N|!s3jFMvZ zW}AzUHy5^SsJK7z*_+inZ7IT`8;S|r_XluroILSjc?BJ;4ZI1<$zucjDRkSEi3G+& z1UtuFYDmZt4Pt`XHGvs13u>>dusI*$m^g=Zn^<=L%etsT{WZ+hOrIB{M^ADN`fOes za;koRzVZI{{OolrsWjltOuQK(Pj3Xmyjwfc1r6oLk*FllC2`^%mu zG)mpxYUc2ujk}r+bshHG)&TsAl=e6AlJ2RS6*858Bx!P`0TEl*19^NDy^~8=C4T^H zM`>R}R1?#S<5aB$S?rXSe2R4G9Ut%0NdI-kDmuSrF{-3y`)0}6^YInZ&5y-{AInoG z;phn`aC|T(B}iLmU3AW$ow>BY&2cw=?GX3CbD!GYnRGk>ifa{Rjw~_y)EEg9gL6#2 zUf3ci)azWSZDuOfNJBppk8mO%4@@O5=88jlcb3`Z4L zxo>mQSeRF~esEE6nap_AHl3~R_ox@6GN1RXm2k6F5N`pYomjbsPk(L zRsqG{_sucxK(m%d)`!B^!l1MTthUXNeH>vHKCDHW8BkNT{ zj9uq$iFggvE={y55?3l2Tw~wBX$7GO99#D$Y~rPqKI^W!x8b^}U0sY~1gk#8;U3R( zMvR!B<9x$meMnPa69^7`!=Rf-E_4b2cF7NW1%~r{Qv=u>%&anqH(@*Tm_g#iR zKNU^TlbBdyipD04;i8PEpd1cKP?KzajK!qb@!8QY?!}23&Hf73&hQI9m&q-873W@e zNL3LfM?Cjv)O?E?^j*v!bDJmQw>-@iKzQw(#{3Z@f{3I^o2Ri7rM;>}LYTd!jZ0@hGiyqh-p|m3)b^;j z>6+OK3!Vc+38@Pg4RasR_{TGR`qt0&gd-^LoP&jT9=3;5B3_-Y5RJGMa-CZ&SFr4A ze*gBhBib?c>CUDY`rYfLowi=y*UKUHZV)T6sjt4?7c0pi=Xs8YYq5}=icmn&EHPY0 zzPQU8^GKc=ODQ-K!UD@MYX6fZ{BmJ z`lvDNBhr>N*(T8pmiSy}2raKEin8Q6=V#i|pq3V>+EKnY2IfXxyst>(w3~GW`xST# z*4Qcej@9AWi=7g_Bo$UYTm~*YmIdc)NeSM3hZsaC_%DlA`<&XiV!{%0 z?sb1wLa>o)!fHx?nfmmJ=8UEz0zGFY-S;Ju~K zM4@@q5rJ?+-yPMSB0_=ib9irCRM@7B6D`L!#W2sfiC*Oz&d}Bviht)2QnK=;CF?R2 zI@qDhl;@n+M1MexW*dW(iT}p>^ZRievNsthd*aHc4<1DmGQ166@#T18W5`N%nV!sc zOeFc^>)du5p{Wp$5h&|fX}o^e%yBWpk0WeX&E{-=A1&nsyR=-b22s04cDQ!qYmF}X zjNQ(b-EeVpC<#h2WKv+R)$1J+JJHnJ(jnRPZk_AcV`9GpF~q4_^``d3qn|S=?!UWe zz9b}`a*sXohybONJ-0Kupw@ZQFt@BF5Sjhw--Y+jz6nP50nK_>%>+8KG`=N^p(&uz zJ)*d*?^JJ1FipvQS*x@hdA=c;A%INtY}Zj$*YK`KeGx{-y^Lk*YCab*r90!?_&hdi zDB7m+`eZ1o^V54v6Y`X2CLQGp=u@JDN7k+B)rAdDcE9Uw@Quz&k-Oi0ZJZ z*Ap+U3KZY4*Y1t)(0!@A8f5aA!s<%uGr#tlVAiD7=f%_O0i5UlvJoec4(E7YZ~n>h zV<(k;7K3;x$9IpKH_SzE)wti?Ei_raJ6)fvh1TB1hz2%m`wQ!V2ns&^dDg%OCa0&~ zPnNY&e&^AUp8YYM)^P?`iB^L;0<*kc5}$CZ*{&_4I5)N#Ngg!DCI0lOtXr7GGWQSH zaTiR?qUP&dbiRQ=RiJ%pk=(wNzp+Mqh@OP@QP2GMfD!3g%FXg>$?{^>qIe|6C$B|Z z=$Iv_>XyVmc0Oo>HL;;?>AmcZ#{bTD{tN}a_mb4&!xw)} zrfsLuS3cYV<&tPv;EFM}u#Ns~J@<<&6f`$7gOk1OEDe8A)& z`QnSwnk+Aqd^|@cGF6QmUisrrHj%T>T#Ad9E}vUYDe1plSTos;OW0;0Gf&ytV#gpA zvSb zk<=N5eYwX-^7xyQ&!Z;{DQF&R%6ZeE5}ArFw4<)Mje4bUglfjp#x@@*nbxs5xvPM& z*2DEX@fI!40sStl9a=UG>pBVHO_cbkaCJG)L6&PGzS^i3d}p<+{4R?7m4jsi2JzFxi4oviV?Eskkeo~b5ckcsd%IP)E8)hey!G^z>> z+;&R0hm{;-DjKLHNx7R9Mll2el+(SCRh2*p(ckGeLh@~KYZ)YZ7e3s+N*^{b8tXC> z;q$!|Jr%Ni74IlBF)7=KIA_#0ssI(%|o;G?OR z5(^ReW)9J zy$P=b@{jC7e-)cL-Q{fbTGm?N3M#8xbs~byU%Cmozt+&Y9D~}}0DkN&dnquk4^YH~ z68`Wq*67HIsP@=r={tQ{3GFXt>`A^ANYByNO?dM9hu8sywH1PDEKfcV|C4bn!IlkqT0Gl@v z%0nW6GBi2s8(PtSINhiOPaaRmc-dm$OD@Nmqt`?{QORE`y$wiRb*r%kq;c)G=IiP> z>!`WVs#`*0c$OoxkfM4?@u_4bO-?NMiOEeQxr>x}N6~AXFFW@@|!B&PtGy z$F)36<)z5{E#Ebibs^ad<26m+0F*MmHO2Bf&+hhQocghMmmAL~H&FGI+>vDx$AruU z-j8MWeO6ZbMbXs$VoyGP&l=4I8S=44p%LB>Zb?4Hfc`s_5VPR($a$7_#Xp|jm`?5V zX}Y=i&#sU&V-%_6zFYxh2FWhUO)FXs?xe93UU)K0;atZ&-CD^be0|3VSN%*v3La`{ zvWcr|#0w6r4i@p8Pi>qn=;(OAj9P7&Wt1bWv-79o&8UA)g)h*B-*ns^?QQFQ&Iw~N zLzvEYAw5|C(q?MME_YVKDsbCwG<`wji>eD zyz8*`g(m?v23HB(9+6P{UmX;ju<_C0J_`@j&=b_4Dx4PM2I=p2#1aS;&=K?-MO%qGlSX?o z-Pa<>LiL1Sco6@*Lxp)N{&6+dCuz5;!46dCi4&rn5e7GP+00RfPF0boPFo(b(MGjX zOjv!z;2yFmB!@h;gM&JYWzW3C=}~Ra$Dt7{#o9B z$Dth7j5M2@msn4Xi9TP447+=zS6ofx1gW=}e;^%)E^TfeT*uLI6A^r9--&4UYaamR zni$N8eX(7<6xHPQVg!1(6bs(vs7N!`wh2(&6JgGK*4U|&-W4Un&i46>@qAHpnT*G~ z9BTvuLl9$JvMi@7A(m%*Hx;%)g6w#wG)?Vxazy}Xt7o%_n#c>j!G!*4r@*YRnow2k z2=Nzl0tQM1_YK8yo5}HShQINt@Y3gIpt^fRU{06wu6tcgvrO(vGh!5UVneWHvAt0B z6E;cda7~+yZDubSkvkyGS3mpMrE-=xU)*=XHD6=bh{}^)e4WIHQ{U6&3i|6Ba(!$q zC#mUpmBo;GU4B}4XUa(A#;QlHP{mo?mG4}i|$Sr(vPZ^)u~&Nh(5`RdVTwGVS1 z1NF$Nvc+u)hNcYhSvfAZw~?AGBD_<^Ny(f0YF=zI@9)D2!CAoSxI%xPb4eq+v2vWEh~MksGO9}t!>khez!bCyIXLlb2t#C z_8CD4hy$duC`<>lfNSyM*>50*f6Rv{8mW*sISiQY%ftS% z-|{~F+u5rV97 zT`jfWXD5CE0yaEgZ_pMz()Rqr-Vog-b=;UpF+fU<*T~dQk2b~>R~$qpR#s$tsQ^^C zhCVRH`QIngV0v))#IY#zJauaOEJUa!~DPl>VjMX)+~AR8Bc;f_=$Kd;=? zgE%{Y*U^*vH42#EUo)h85S5Cu{}jp1f*e_OlpG@tc{(A&_D4L)=>|u-;Jc z-P1*CZJf~V7%uGQOkfcPg!kcq1VoCQ<|4ZwNsuz6Ojt6ikj{#W1r-A*Cn2gWr7%9Cv8Qw1_=n$B8?2?}lgu)iO2HYJLQf&1< zDRe0V3hNYtj`u2E!7Ca-k?pX!0!QW011bw+mIb)tk=Vl9|!zYEayvWDxiFxkAK$ zdRtxVt(QEBX80QW)&esexp=htK&&jAvXTX?g(sTRQd z`bnWGQVFEzauJYjfLUs;IUp|)XQ$Fv(!BUyV7L#urXoFQ#O;X%a}r{#KQbf5RK^=x zHmO!n>`j(GlhlxvK;!Vv?cC=}aMC)|ix~g7e1N0_{5i#i+mZ+h839*z*)$1_&2AzU zEwiGDWah(aw}Y>>yy!19hcMa-iso&C0qyX|1^{(@yJRR);e^*6T_uJjYZqYw(3c28>#g2QsP5xc_owjV!` zuc!vY-?<_SkF(c58ZR1z5B8BF7x#~TF5doNN3HI50OB^wwx=x})&~JjdJN!!lcajM zt+sB{raFFzIbti{TIjN>qcMGWSN}#;;MuvYS6HReFelHx5X(vYvNgX=%0X-dF5_>{ zH<1`J2uht(o(t8aa@9cjRVMn72C9V?h-ov?TLviPg>>%9%J0iLfK_0D*79UF9i&Uk zAU(I^yS?fInq|r2bgWVU0wy>N&^F2b;n(8h2+Xo;$gH64L6y3DeoSPSzvGs}m*grU zGX4R$9GI#gG*w>Ad9QNsLMF!qXY!{{n#8(+a_O<1n0p!Hms=`TGIo1!%oCWdvgC?-rY_j|EN{^S=~O ziZ=iYLX)ssv42m%Sd_>RfMLreGHGRQfT6Nc!4)9`fIX^8hXtTGnZ~#F)k{D;8d8^I zVvcXY=_i{cBUuv!b9%`-mVc@XK-BetM9i^mAX`g`6c^1v)x_kWT@>I*+29QJ+ldHL z{qYb!sQ}I^Vn8=rBeyauNL7{@eP>F}r-ULr2afW@dm?d94(>K+${G|HSeLE4$P!bR zrv6sHU0F2%y0fdHLxL9S?o(a-Zzwh_il@ndkSYi~TUPHPIQ=g3g$jZ;z%9#@hEV<4 zl`LWba>|t&praENwAT5(i4g;CTKpNT z$%u^{Vw4#|ZI%sW2FZh4&mW$o1g97PqF2e6w*fOv`q!buk}0cTyla4`A}0CH;4Hr6 zs{jq-Iy>b{L5Qbl1eM`PA}0jr0vJc-*1Q0V>cVKN+7p~$9@X^jA0JE+**2jxf0FX; zRo;MkUiVowks26K3<4xgE0_59s7e%b7DA>-?4`*+?z{ikr_bsLqIJW?_K*AHKOu;* z0-W0GqU9NXI5|J#s{b9%|IW^D@#-%h^1plM|Cc9ghn9Lq@5p<3Z|(!|@A@^_s~MMd GJ^v3KRw8Qv literal 0 HcmV?d00001 diff --git a/application-performance/docs/img/memcpy.png b/application-performance/docs/img/memcpy.png new file mode 100644 index 0000000000000000000000000000000000000000..6660b1fc9195c6ddebeb553c6b0198dec888b208 GIT binary patch literal 85088 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 literal 0 HcmV?d00001 diff --git a/application-performance/docs/img/runtimes_annotated.png b/application-performance/docs/img/runtimes_annotated.png new file mode 100644 index 0000000000000000000000000000000000000000..5b5bf26c46af65a3f3aa087807b2a7c12f53ff18 GIT binary patch literal 36788 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 B^~C@H literal 0 HcmV?d00001 From 3adc2b707fe95744d19e6e7577901c3fa4f64861 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Wed, 26 Jun 2024 17:39:13 +0300 Subject: [PATCH 05/10] Change project number --- application-performance/demos/idle_resources/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application-performance/demos/idle_resources/run.sh b/application-performance/demos/idle_resources/run.sh index 6257bef99..bde389d60 100755 --- a/application-performance/demos/idle_resources/run.sh +++ b/application-performance/demos/idle_resources/run.sh @@ -14,7 +14,7 @@ echo "Submitting cpu job" cpujobid=$(submit_job << "EOF" #!/bin/bash -#SBATCH --account=project_462000007 +#SBATCH --account=project_465001194 #SBATCH --nodes=1 #SBATCH --ntasks=1 #SBATCH --cpus-per-task=64 @@ -44,7 +44,7 @@ echo "Submitting gpu job" gpujobid=$(submit_job << EOF #!/bin/bash -#SBATCH --account=project_462000007 +#SBATCH --account=project_465001194 #SBATCH --nodes=1 #SBATCH --ntasks=1 #SBATCH --cpus-per-task=1 @@ -66,7 +66,7 @@ echo "Submitting gnuplot job with dependency on jobs $cpujobid and $gpujobid" sbatch --dependency afterok:$cpujobid:$gpujobid << EOF #!/bin/bash -#SBATCH --account=project_462000007 +#SBATCH --account=project_465001194 #SBATCH --nodes=1 #SBATCH --ntasks=1 #SBATCH --cpus-per-task=1 From 951f40fc07aa499dbf089295e784eab1a5f78e70 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Fri, 28 Jun 2024 15:14:01 +0300 Subject: [PATCH 06/10] Add tau demos --- .../demos/tau/.nvim_sync_config.json | 35 + .../demos/tau/01_no_instrumentation/build.sh | 9 + .../tau/01_no_instrumentation/profile.sbatch | 45 + .../src/common/bottle.dat | 201 + .../src/common/pngwriter.c | 163 + .../src/common/pngwriter.h | 21 + .../src/common/stb_image.h | 7985 +++++++++++++++++ .../src/common/stb_image_write.h | 1724 ++++ .../01_no_instrumentation/src/hip/Makefile | 45 + .../01_no_instrumentation/src/hip/core.cpp | 38 + .../src/hip/core_hip.cpp | 91 + .../tau/01_no_instrumentation/src/hip/heat.h | 76 + .../tau/01_no_instrumentation/src/hip/io.cpp | 139 + .../01_no_instrumentation/src/hip/main.cpp | 107 + .../01_no_instrumentation/src/hip/setup.cpp | 201 + .../src/hip/utilities.cpp | 64 + .../tau/01_no_instrumentation/trace.sbatch | 44 + .../tau/02_compiler_instrumentation/build.sh | 14 + .../profile.sbatch | 42 + .../src/common/bottle.dat | 201 + .../src/common/pngwriter.c | 163 + .../src/common/pngwriter.h | 21 + .../src/common/stb_image.h | 7985 +++++++++++++++++ .../src/common/stb_image_write.h | 1724 ++++ .../src/hip/Makefile | 45 + .../src/hip/core.cpp | 38 + .../src/hip/core_hip.cpp | 91 + .../src/hip/heat.h | 76 + .../src/hip/io.cpp | 139 + .../src/hip/main.cpp | 107 + .../src/hip/setup.cpp | 201 + .../src/hip/utilities.cpp | 64 + .../02_compiler_instrumentation/trace.sbatch | 42 + application-performance/demos/tau/README.md | 14 + application-performance/demos/tau/sourceme.sh | 5 + 35 files changed, 21960 insertions(+) create mode 100644 application-performance/demos/tau/.nvim_sync_config.json create mode 100755 application-performance/demos/tau/01_no_instrumentation/build.sh create mode 100644 application-performance/demos/tau/01_no_instrumentation/profile.sbatch create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/common/bottle.dat create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.c create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.h create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/common/stb_image.h create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/common/stb_image_write.h create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/Makefile create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/core.cpp create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/core_hip.cpp create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/heat.h create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/io.cpp create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/main.cpp create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/setup.cpp create mode 100644 application-performance/demos/tau/01_no_instrumentation/src/hip/utilities.cpp create mode 100644 application-performance/demos/tau/01_no_instrumentation/trace.sbatch create mode 100755 application-performance/demos/tau/02_compiler_instrumentation/build.sh create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/common/bottle.dat create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.c create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.h create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image.h create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image_write.h create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/Makefile create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/core.cpp create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/core_hip.cpp create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/heat.h create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/io.cpp create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/main.cpp create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/setup.cpp create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/src/hip/utilities.cpp create mode 100644 application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch create mode 100644 application-performance/demos/tau/README.md create mode 100644 application-performance/demos/tau/sourceme.sh diff --git a/application-performance/demos/tau/.nvim_sync_config.json b/application-performance/demos/tau/.nvim_sync_config.json new file mode 100644 index 000000000..f38f7594f --- /dev/null +++ b/application-performance/demos/tau/.nvim_sync_config.json @@ -0,0 +1,35 @@ +{ + "mahti": { + "dst": "/users/juhanala/Code/", + "excluded": [ + ".git/", + ".gitignore", + "compile_commands.json", + "paraview", + ".cache", + "build" + ] + }, + "puhti": { + "dst": "/users/juhanala/Code/", + "excluded": [ + ".git/", + ".gitignore", + "compile_commands.json", + "paraview", + ".cache", + "build" + ] + }, + "lumi": { + "dst": "/users/juhanala/Code/", + "excluded": [ + ".git/", + ".gitignore", + "compile_commands.json", + "paraview", + ".cache", + "build" + ] + } +} diff --git a/application-performance/demos/tau/01_no_instrumentation/build.sh b/application-performance/demos/tau/01_no_instrumentation/build.sh new file mode 100755 index 000000000..6b91e1402 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash -l + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +(make -C src/hip/) || { echo "Failed to build hip code"; exit 1; } diff --git a/application-performance/demos/tau/01_no_instrumentation/profile.sbatch b/application-performance/demos/tau/01_no_instrumentation/profile.sbatch new file mode 100644 index 000000000..ac50af711 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/profile.sbatch @@ -0,0 +1,45 @@ +#!/bin/bash -l + +#SBATCH --account=project_465001194 +#SBATCH --job-name=hip_heat +#SBATCH --output=hip_heat.out%j +#SBATCH --error=hip_heat.err%j +#SBATCH --partition=small-g +#SBATCH --reservation=CSC_summer_school_gpu +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --gpus-per-node=8 +#SBATCH --mem=10G +#SBATCH --time=00:05:00 + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +cat << "EOF" > select_gpu +#!/bin/bash + +export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID +exec $* +EOF + +chmod +x ./select_gpu +CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" +export MPICH_GPU_SUPPORT_ENABLED=1 + +. ../sourceme.sh + +export TAU_PROFILE=1 +export PROFILEDIR=tauprofile +[ -d $PROFILEDIR ] || mkdir $PROFILEDIR + +srun --cpu-bind=${CPU_BIND} \ + ./select_gpu \ + tau_exec \ + -T mpi,rocprofiler \ + -ebs \ + src/hip/heat_hip 10000 10000 5000 + +rm -rf ./select_gpu diff --git a/application-performance/demos/tau/01_no_instrumentation/src/common/bottle.dat b/application-performance/demos/tau/01_no_instrumentation/src/common/bottle.dat new file mode 100644 index 000000000..08409bc34 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/common/bottle.dat @@ -0,0 +1,201 @@ +# 200 200 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 diff --git a/application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.c b/application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.c new file mode 100644 index 000000000..89edec337 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.c @@ -0,0 +1,163 @@ +#define STB_IMAGE_WRITE_IMPLEMENTATION +#define STB_IMAGE_IMPLEMENTATION +#include "stb_image.h" +#include "stb_image_write.h" + +#include "pngwriter.h" +#include + +/* Datatype for RGB pixel */ +typedef struct { + uint8_t red; + uint8_t green; + uint8_t blue; +} pixel_t; + +static int heat_colormap[256][3] = { + {59, 76, 192}, {59, 76, 192}, {60, 78, 194}, {61, 80, 195}, + {62, 81, 197}, {64, 83, 198}, {65, 85, 200}, {66, 87, 201}, + {67, 88, 203}, {68, 90, 204}, {69, 92, 206}, {71, 93, 207}, + {72, 95, 209}, {73, 97, 210}, {74, 99, 211}, {75, 100, 213}, + {77, 102, 214}, {78, 104, 215}, {79, 105, 217}, {80, 107, 218}, + {82, 109, 219}, {83, 110, 221}, {84, 112, 222}, {85, 114, 223}, + {87, 115, 224}, {88, 117, 225}, {89, 119, 227}, {90, 120, 228}, + {92, 122, 229}, {93, 124, 230}, {94, 125, 231}, {96, 127, 232}, + {97, 129, 233}, {98, 130, 234}, {100, 132, 235}, {101, 133, 236}, + {102, 135, 237}, {103, 137, 238}, {105, 138, 239}, {106, 140, 240}, + {107, 141, 240}, {109, 143, 241}, {110, 144, 242}, {111, 146, 243}, + {113, 147, 244}, {114, 149, 244}, {116, 150, 245}, {117, 152, 246}, + {118, 153, 246}, {120, 155, 247}, {121, 156, 248}, {122, 157, 248}, + {124, 159, 249}, {125, 160, 249}, {127, 162, 250}, {128, 163, 250}, + {129, 164, 251}, {131, 166, 251}, {132, 167, 252}, {133, 168, 252}, + {135, 170, 252}, {136, 171, 253}, {138, 172, 253}, {139, 174, 253}, + {140, 175, 254}, {142, 176, 254}, {143, 177, 254}, {145, 179, 254}, + {146, 180, 254}, {147, 181, 255}, {149, 182, 255}, {150, 183, 255}, + {152, 185, 255}, {153, 186, 255}, {154, 187, 255}, {156, 188, 255}, + {157, 189, 255}, {158, 190, 255}, {160, 191, 255}, {161, 192, 255}, + {163, 193, 255}, {164, 194, 254}, {165, 195, 254}, {167, 196, 254}, + {168, 197, 254}, {169, 198, 254}, {171, 199, 253}, {172, 200, 253}, + {173, 201, 253}, {175, 202, 252}, {176, 203, 252}, {177, 203, 252}, + {179, 204, 251}, {180, 205, 251}, {181, 206, 250}, {183, 207, 250}, + {184, 207, 249}, {185, 208, 249}, {186, 209, 248}, {188, 209, 247}, + {189, 210, 247}, {190, 211, 246}, {191, 211, 246}, {193, 212, 245}, + {194, 213, 244}, {195, 213, 243}, {196, 214, 243}, {198, 214, 242}, + {199, 215, 241}, {200, 215, 240}, {201, 216, 239}, {202, 216, 239}, + {204, 217, 238}, {205, 217, 237}, {206, 217, 236}, {207, 218, 235}, + {208, 218, 234}, {209, 218, 233}, {210, 219, 232}, {211, 219, 231}, + {212, 219, 230}, {214, 220, 229}, {215, 220, 228}, {216, 220, 227}, + {217, 220, 225}, {218, 220, 224}, {219, 220, 223}, {220, 221, 222}, + {221, 221, 221}, {222, 220, 219}, {223, 220, 218}, {224, 219, 216}, + {225, 219, 215}, {226, 218, 214}, {227, 218, 212}, {228, 217, 211}, + {229, 216, 209}, {230, 216, 208}, {231, 215, 206}, {232, 215, 205}, + {233, 214, 203}, {233, 213, 202}, {234, 212, 200}, {235, 212, 199}, + {236, 211, 197}, {237, 210, 196}, {237, 209, 194}, {238, 208, 193}, + {239, 208, 191}, {239, 207, 190}, {240, 206, 188}, {240, 205, 187}, + {241, 204, 185}, {242, 203, 183}, {242, 202, 182}, {243, 201, 180}, + {243, 200, 179}, {243, 199, 177}, {244, 198, 176}, {244, 197, 174}, + {245, 196, 173}, {245, 195, 171}, {245, 194, 169}, {246, 193, 168}, + {246, 192, 166}, {246, 190, 165}, {246, 189, 163}, {247, 188, 161}, + {247, 187, 160}, {247, 186, 158}, {247, 184, 157}, {247, 183, 155}, + {247, 182, 153}, {247, 181, 152}, {247, 179, 150}, {247, 178, 149}, + {247, 177, 147}, {247, 175, 146}, {247, 174, 144}, {247, 172, 142}, + {247, 171, 141}, {247, 170, 139}, {247, 168, 138}, {247, 167, 136}, + {247, 165, 135}, {246, 164, 133}, {246, 162, 131}, {246, 161, 130}, + {246, 159, 128}, {245, 158, 127}, {245, 156, 125}, {245, 155, 124}, + {244, 153, 122}, {244, 151, 121}, {243, 150, 119}, {243, 148, 117}, + {242, 147, 116}, {242, 145, 114}, {241, 143, 113}, {241, 142, 111}, + {240, 140, 110}, {240, 138, 108}, {239, 136, 107}, {239, 135, 105}, + {238, 133, 104}, {237, 131, 102}, {237, 129, 101}, {236, 128, 99}, + {235, 126, 98}, {235, 124, 96}, {234, 122, 95}, {233, 120, 94}, + {232, 118, 92}, {231, 117, 91}, {230, 115, 89}, {230, 113, 88}, + {229, 111, 86}, {228, 109, 85}, {227, 107, 84}, {226, 105, 82}, + {225, 103, 81}, {224, 101, 79}, {223, 99, 78}, {222, 97, 77}, + {221, 95, 75}, {220, 93, 74}, {219, 91, 73}, {218, 89, 71}, + {217, 87, 70}, {215, 85, 69}, {214, 82, 67}, {213, 80, 66}, + {212, 78, 65}, {211, 76, 64}, {210, 74, 62}, {208, 71, 61}, + {207, 69, 60}, {206, 67, 59}, {204, 64, 57}, {203, 62, 56}, + {202, 59, 55}, {200, 57, 54}, {199, 54, 53}, {198, 52, 51}, + {196, 49, 50}, {195, 46, 49}, {193, 43, 48}, {192, 40, 47}, + {191, 37, 46}, {189, 34, 44}, {188, 30, 43}, {186, 26, 42}, + {185, 22, 41}, {183, 17, 40}, {182, 11, 39}, {180, 4, 38} +}; + +/* + * This routine sets the RGB values for the pixel_t structure using + * the colormap data heat_colormap. If the value is outside the + * acceptable png values 0, 255 blue or red color is used instead. + */ +pixel_t cmap(double value, const double scaling, const double offset) { + int ival; + + pixel_t pix = {}; + ival = (int)(value * scaling + offset); + if (ival < 0) { /* Colder than colorscale, substitute blue */ + pix.red = 0; + pix.green = 0; + pix.blue = 255; + } else if (ival > 255) { + pix.red = 255; /* Hotter than colormap, substitute red */ + pix.green = 0; + pix.blue = 0; + } else { + pix.red = heat_colormap[ival][0]; + pix.green = heat_colormap[ival][1]; + pix.blue = heat_colormap[ival][2]; + } + + return pix; +} + +/* + * Save the two dimensional array as a png image + * Arguments: + * double *data - pointer to an array of nx * ny values + * int nx - number of COLUMNS to be written + * int ny - number of ROWS to be written + * char *fname - name of the picture + * char lang - either 'c' or 'f' denoting the memory + * layout. That is, if 'f' is given, then rows + * and columns are swapped. + */ + +uint8_t *bytes_from_data(const double *data, const int height, const int width, + const int num_channels, const char *fname, + const char lang) { + const int c_layout = lang == 'c' || lang == 'C'; + const size_t num_bytes = height * width * num_channels; + uint8_t *bytes = (uint8_t *)malloc(num_bytes); + + size_t k = 0; + for (size_t i = 0; i < height; i++) { + for (size_t j = 0; j < width; j++) { + const size_t index = c_layout ? i * width + j : i + j * height; + + /* Scale the values so that values between 0 and + * 100 degrees are mapped to values between 0 and 255 */ + const pixel_t pixel = cmap(data[index], 2.55, 0.0); + bytes[0 + k * num_channels] = pixel.red; + bytes[1 + k * num_channels] = pixel.green; + bytes[2 + k * num_channels] = pixel.blue; + k++; + } + } + + return bytes; +} + +int save_png(const double *data, const int height, const int width, + const char *fname, const char lang) { + const size_t num_channels = 3; + uint8_t *bytes = + bytes_from_data(data, height, width, num_channels, fname, lang); + int status = !stbi_write_png(fname, width, height, num_channels, bytes, + num_channels * width); + free(bytes); + + return status; +} + +uint8_t *load_png(const char *fname, int *height, int *width, int *channels) { + return stbi_load(fname, height, width, channels, 0); +} + +void release_png(void *data) { stbi_image_free(data); } diff --git a/application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.h b/application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.h new file mode 100644 index 000000000..829c15abd --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/common/pngwriter.h @@ -0,0 +1,21 @@ +#ifndef PNGWRITER_H_ +#define PNGWRITER_H_ + +#include + +#if __cplusplus + extern "C" { +#endif + + uint8_t *bytes_from_data(const double *data, const int height, + const int width, const int num_channels, + const char *fname, const char lang); + int save_png(const double *data, const int height, const int width, + const char *fname, const char lang); + uint8_t *load_png(const char *fname, int *height, int *width, int *channels); + void release_png(void *data); + +#if __cplusplus + } +#endif +#endif diff --git a/application-performance/demos/tau/01_no_instrumentation/src/common/stb_image.h b/application-performance/demos/tau/01_no_instrumentation/src/common/stb_image.h new file mode 100644 index 000000000..a632d5435 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/common/stb_image.h @@ -0,0 +1,7985 @@ +/* stb_image - v2.29 - public domain image loader - http://nothings.org/stb + no warranty implied; use at your own risk + + Do this: + #define STB_IMAGE_IMPLEMENTATION + before you include this file in *one* C or C++ file to create the implementation. + + // i.e. it should look like this: + #include ... + #include ... + #include ... + #define STB_IMAGE_IMPLEMENTATION + #include "stb_image.h" + + You can #define STBI_ASSERT(x) before the #include to avoid using assert.h. + And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free + + + QUICK NOTES: + Primarily of interest to game developers and other people who can + avoid problematic images and only need the trivial interface + + JPEG baseline & progressive (12 bpc/arithmetic not supported, same as stock IJG lib) + PNG 1/2/4/8/16-bit-per-channel + + TGA (not sure what subset, if a subset) + BMP non-1bpp, non-RLE + PSD (composited view only, no extra channels, 8/16 bit-per-channel) + + GIF (*comp always reports as 4-channel) + HDR (radiance rgbE format) + PIC (Softimage PIC) + PNM (PPM and PGM binary only) + + Animated GIF still needs a proper API, but here's one way to do it: + http://gist.github.com/urraka/685d9a6340b26b830d49 + + - decode from memory or through FILE (define STBI_NO_STDIO to remove code) + - decode from arbitrary I/O callbacks + - SIMD acceleration on x86/x64 (SSE2) and ARM (NEON) + + Full documentation under "DOCUMENTATION" below. + + +LICENSE + + See end of file for license information. + +RECENT REVISION HISTORY: + + 2.29 (2023-05-xx) optimizations + 2.28 (2023-01-29) many error fixes, security errors, just tons of stuff + 2.27 (2021-07-11) document stbi_info better, 16-bit PNM support, bug fixes + 2.26 (2020-07-13) many minor fixes + 2.25 (2020-02-02) fix warnings + 2.24 (2020-02-02) fix warnings; thread-local failure_reason and flip_vertically + 2.23 (2019-08-11) fix clang static analysis warning + 2.22 (2019-03-04) gif fixes, fix warnings + 2.21 (2019-02-25) fix typo in comment + 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs + 2.19 (2018-02-11) fix warning + 2.18 (2018-01-30) fix warnings + 2.17 (2018-01-29) bugfix, 1-bit BMP, 16-bitness query, fix warnings + 2.16 (2017-07-23) all functions have 16-bit variants; optimizations; bugfixes + 2.15 (2017-03-18) fix png-1,2,4; all Imagenet JPGs; no runtime SSE detection on GCC + 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs + 2.13 (2016-12-04) experimental 16-bit API, only for PNG so far; fixes + 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes + 2.11 (2016-04-02) 16-bit PNGS; enable SSE2 in non-gcc x64 + RGB-format JPEG; remove white matting in PSD; + allocate large structures on the stack; + correct channel count for PNG & BMP + 2.10 (2016-01-22) avoid warning introduced in 2.09 + 2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED + + See end of file for full revision history. + + + ============================ Contributors ========================= + + Image formats Extensions, features + Sean Barrett (jpeg, png, bmp) Jetro Lauha (stbi_info) + Nicolas Schulz (hdr, psd) Martin "SpartanJ" Golini (stbi_info) + Jonathan Dummer (tga) James "moose2000" Brown (iPhone PNG) + Jean-Marc Lienher (gif) Ben "Disch" Wenger (io callbacks) + Tom Seddon (pic) Omar Cornut (1/2/4-bit PNG) + Thatcher Ulrich (psd) Nicolas Guillemot (vertical flip) + Ken Miller (pgm, ppm) Richard Mitton (16-bit PSD) + github:urraka (animated gif) Junggon Kim (PNM comments) + Christopher Forseth (animated gif) Daniel Gibson (16-bit TGA) + socks-the-fox (16-bit PNG) + Jeremy Sawicki (handle all ImageNet JPGs) + Optimizations & bugfixes Mikhail Morozov (1-bit BMP) + Fabian "ryg" Giesen Anael Seghezzi (is-16-bit query) + Arseny Kapoulkine Simon Breuss (16-bit PNM) + John-Mark Allen + Carmelo J Fdez-Aguera + + Bug & warning fixes + Marc LeBlanc David Woo Guillaume George Martins Mozeiko + Christpher Lloyd Jerry Jansson Joseph Thomson Blazej Dariusz Roszkowski + Phil Jordan Dave Moore Roy Eltham + Hayaki Saito Nathan Reed Won Chun + Luke Graham Johan Duparc Nick Verigakis the Horde3D community + Thomas Ruf Ronny Chevalier github:rlyeh + Janez Zemva John Bartholomew Michal Cichon github:romigrou + Jonathan Blow Ken Hamada Tero Hanninen github:svdijk + Eugene Golushkov Laurent Gomila Cort Stratton github:snagar + Aruelien Pocheville Sergio Gonzalez Thibault Reuille github:Zelex + Cass Everitt Ryamond Barbiero github:grim210 + Paul Du Bois Engin Manap Aldo Culquicondor github:sammyhw + Philipp Wiesemann Dale Weiler Oriol Ferrer Mesia github:phprus + Josh Tobin Neil Bickford Matthew Gregan github:poppolopoppo + Julian Raschke Gregory Mullen Christian Floisand github:darealshinji + Baldur Karlsson Kevin Schmidt JR Smith github:Michaelangel007 + Brad Weinberger Matvey Cherevko github:mosra + Luca Sas Alexander Veselov Zack Middleton [reserved] + Ryan C. Gordon [reserved] [reserved] + DO NOT ADD YOUR NAME HERE + + Jacko Dirks + + To add your name to the credits, pick a random blank space in the middle and fill it. + 80% of merge conflicts on stb PRs are due to people adding their name at the end + of the credits. +*/ + +#ifndef STBI_INCLUDE_STB_IMAGE_H +#define STBI_INCLUDE_STB_IMAGE_H + +// DOCUMENTATION +// +// Limitations: +// - no 12-bit-per-channel JPEG +// - no JPEGs with arithmetic coding +// - GIF always returns *comp=4 +// +// Basic usage (see HDR discussion below for HDR usage): +// int x,y,n; +// unsigned char *data = stbi_load(filename, &x, &y, &n, 0); +// // ... process data if not NULL ... +// // ... x = width, y = height, n = # 8-bit components per pixel ... +// // ... replace '0' with '1'..'4' to force that many components per pixel +// // ... but 'n' will always be the number that it would have been if you said 0 +// stbi_image_free(data); +// +// Standard parameters: +// int *x -- outputs image width in pixels +// int *y -- outputs image height in pixels +// int *channels_in_file -- outputs # of image components in image file +// int desired_channels -- if non-zero, # of image components requested in result +// +// The return value from an image loader is an 'unsigned char *' which points +// to the pixel data, or NULL on an allocation failure or if the image is +// corrupt or invalid. The pixel data consists of *y scanlines of *x pixels, +// with each pixel consisting of N interleaved 8-bit components; the first +// pixel pointed to is top-left-most in the image. There is no padding between +// image scanlines or between pixels, regardless of format. The number of +// components N is 'desired_channels' if desired_channels is non-zero, or +// *channels_in_file otherwise. If desired_channels is non-zero, +// *channels_in_file has the number of components that _would_ have been +// output otherwise. E.g. if you set desired_channels to 4, you will always +// get RGBA output, but you can check *channels_in_file to see if it's trivially +// opaque because e.g. there were only 3 channels in the source image. +// +// An output image with N components has the following components interleaved +// in this order in each pixel: +// +// N=#comp components +// 1 grey +// 2 grey, alpha +// 3 red, green, blue +// 4 red, green, blue, alpha +// +// If image loading fails for any reason, the return value will be NULL, +// and *x, *y, *channels_in_file will be unchanged. The function +// stbi_failure_reason() can be queried for an extremely brief, end-user +// unfriendly explanation of why the load failed. Define STBI_NO_FAILURE_STRINGS +// to avoid compiling these strings at all, and STBI_FAILURE_USERMSG to get slightly +// more user-friendly ones. +// +// Paletted PNG, BMP, GIF, and PIC images are automatically depalettized. +// +// To query the width, height and component count of an image without having to +// decode the full file, you can use the stbi_info family of functions: +// +// int x,y,n,ok; +// ok = stbi_info(filename, &x, &y, &n); +// // returns ok=1 and sets x, y, n if image is a supported format, +// // 0 otherwise. +// +// Note that stb_image pervasively uses ints in its public API for sizes, +// including sizes of memory buffers. This is now part of the API and thus +// hard to change without causing breakage. As a result, the various image +// loaders all have certain limits on image size; these differ somewhat +// by format but generally boil down to either just under 2GB or just under +// 1GB. When the decoded image would be larger than this, stb_image decoding +// will fail. +// +// Additionally, stb_image will reject image files that have any of their +// dimensions set to a larger value than the configurable STBI_MAX_DIMENSIONS, +// which defaults to 2**24 = 16777216 pixels. Due to the above memory limit, +// the only way to have an image with such dimensions load correctly +// is for it to have a rather extreme aspect ratio. Either way, the +// assumption here is that such larger images are likely to be malformed +// or malicious. If you do need to load an image with individual dimensions +// larger than that, and it still fits in the overall size limit, you can +// #define STBI_MAX_DIMENSIONS on your own to be something larger. +// +// =========================================================================== +// +// UNICODE: +// +// If compiling for Windows and you wish to use Unicode filenames, compile +// with +// #define STBI_WINDOWS_UTF8 +// and pass utf8-encoded filenames. Call stbi_convert_wchar_to_utf8 to convert +// Windows wchar_t filenames to utf8. +// +// =========================================================================== +// +// Philosophy +// +// stb libraries are designed with the following priorities: +// +// 1. easy to use +// 2. easy to maintain +// 3. good performance +// +// Sometimes I let "good performance" creep up in priority over "easy to maintain", +// and for best performance I may provide less-easy-to-use APIs that give higher +// performance, in addition to the easy-to-use ones. Nevertheless, it's important +// to keep in mind that from the standpoint of you, a client of this library, +// all you care about is #1 and #3, and stb libraries DO NOT emphasize #3 above all. +// +// Some secondary priorities arise directly from the first two, some of which +// provide more explicit reasons why performance can't be emphasized. +// +// - Portable ("ease of use") +// - Small source code footprint ("easy to maintain") +// - No dependencies ("ease of use") +// +// =========================================================================== +// +// I/O callbacks +// +// I/O callbacks allow you to read from arbitrary sources, like packaged +// files or some other source. Data read from callbacks are processed +// through a small internal buffer (currently 128 bytes) to try to reduce +// overhead. +// +// The three functions you must define are "read" (reads some bytes of data), +// "skip" (skips some bytes of data), "eof" (reports if the stream is at the end). +// +// =========================================================================== +// +// SIMD support +// +// The JPEG decoder will try to automatically use SIMD kernels on x86 when +// supported by the compiler. For ARM Neon support, you must explicitly +// request it. +// +// (The old do-it-yourself SIMD API is no longer supported in the current +// code.) +// +// On x86, SSE2 will automatically be used when available based on a run-time +// test; if not, the generic C versions are used as a fall-back. On ARM targets, +// the typical path is to have separate builds for NEON and non-NEON devices +// (at least this is true for iOS and Android). Therefore, the NEON support is +// toggled by a build flag: define STBI_NEON to get NEON loops. +// +// If for some reason you do not want to use any of SIMD code, or if +// you have issues compiling it, you can disable it entirely by +// defining STBI_NO_SIMD. +// +// =========================================================================== +// +// HDR image support (disable by defining STBI_NO_HDR) +// +// stb_image supports loading HDR images in general, and currently the Radiance +// .HDR file format specifically. You can still load any file through the existing +// interface; if you attempt to load an HDR file, it will be automatically remapped +// to LDR, assuming gamma 2.2 and an arbitrary scale factor defaulting to 1; +// both of these constants can be reconfigured through this interface: +// +// stbi_hdr_to_ldr_gamma(2.2f); +// stbi_hdr_to_ldr_scale(1.0f); +// +// (note, do not use _inverse_ constants; stbi_image will invert them +// appropriately). +// +// Additionally, there is a new, parallel interface for loading files as +// (linear) floats to preserve the full dynamic range: +// +// float *data = stbi_loadf(filename, &x, &y, &n, 0); +// +// If you load LDR images through this interface, those images will +// be promoted to floating point values, run through the inverse of +// constants corresponding to the above: +// +// stbi_ldr_to_hdr_scale(1.0f); +// stbi_ldr_to_hdr_gamma(2.2f); +// +// Finally, given a filename (or an open file or memory block--see header +// file for details) containing image data, you can query for the "most +// appropriate" interface to use (that is, whether the image is HDR or +// not), using: +// +// stbi_is_hdr(char *filename); +// +// =========================================================================== +// +// iPhone PNG support: +// +// We optionally support converting iPhone-formatted PNGs (which store +// premultiplied BGRA) back to RGB, even though they're internally encoded +// differently. To enable this conversion, call +// stbi_convert_iphone_png_to_rgb(1). +// +// Call stbi_set_unpremultiply_on_load(1) as well to force a divide per +// pixel to remove any premultiplied alpha *only* if the image file explicitly +// says there's premultiplied data (currently only happens in iPhone images, +// and only if iPhone convert-to-rgb processing is on). +// +// =========================================================================== +// +// ADDITIONAL CONFIGURATION +// +// - You can suppress implementation of any of the decoders to reduce +// your code footprint by #defining one or more of the following +// symbols before creating the implementation. +// +// STBI_NO_JPEG +// STBI_NO_PNG +// STBI_NO_BMP +// STBI_NO_PSD +// STBI_NO_TGA +// STBI_NO_GIF +// STBI_NO_HDR +// STBI_NO_PIC +// STBI_NO_PNM (.ppm and .pgm) +// +// - You can request *only* certain decoders and suppress all other ones +// (this will be more forward-compatible, as addition of new decoders +// doesn't require you to disable them explicitly): +// +// STBI_ONLY_JPEG +// STBI_ONLY_PNG +// STBI_ONLY_BMP +// STBI_ONLY_PSD +// STBI_ONLY_TGA +// STBI_ONLY_GIF +// STBI_ONLY_HDR +// STBI_ONLY_PIC +// STBI_ONLY_PNM (.ppm and .pgm) +// +// - If you use STBI_NO_PNG (or _ONLY_ without PNG), and you still +// want the zlib decoder to be available, #define STBI_SUPPORT_ZLIB +// +// - If you define STBI_MAX_DIMENSIONS, stb_image will reject images greater +// than that size (in either width or height) without further processing. +// This is to let programs in the wild set an upper bound to prevent +// denial-of-service attacks on untrusted data, as one could generate a +// valid image of gigantic dimensions and force stb_image to allocate a +// huge block of memory and spend disproportionate time decoding it. By +// default this is set to (1 << 24), which is 16777216, but that's still +// very big. + +#ifndef STBI_NO_STDIO +#include +#endif // STBI_NO_STDIO + +#define STBI_VERSION 1 + +enum +{ + STBI_default = 0, // only used for desired_channels + + STBI_grey = 1, + STBI_grey_alpha = 2, + STBI_rgb = 3, + STBI_rgb_alpha = 4 +}; + +#include +typedef unsigned char stbi_uc; +typedef unsigned short stbi_us; + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef STBIDEF +#ifdef STB_IMAGE_STATIC +#define STBIDEF static +#else +#define STBIDEF extern +#endif +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// PRIMARY API - works on images of any type +// + +// +// load image by filename, open file, or memory buffer +// + +typedef struct +{ + int (*read) (void *user,char *data,int size); // fill 'data' with 'size' bytes. return number of bytes actually read + void (*skip) (void *user,int n); // skip the next 'n' bytes, or 'unget' the last -n bytes if negative + int (*eof) (void *user); // returns nonzero if we are at end of file/data +} stbi_io_callbacks; + +//////////////////////////////////// +// +// 8-bits-per-channel interface +// + +STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *channels_in_file, int desired_channels); + +#ifndef STBI_NO_STDIO +STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); +// for stbi_load_from_file, file pointer is left pointing immediately after image +#endif + +#ifndef STBI_NO_GIF +STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp); +#endif + +#ifdef STBI_WINDOWS_UTF8 +STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); +#endif + +//////////////////////////////////// +// +// 16-bits-per-channel interface +// + +STBIDEF stbi_us *stbi_load_16_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); + +#ifndef STBI_NO_STDIO +STBIDEF stbi_us *stbi_load_16 (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_us *stbi_load_from_file_16(FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); +#endif + +//////////////////////////////////// +// +// float-per-channel interface +// +#ifndef STBI_NO_LINEAR + STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); + STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); + + #ifndef STBI_NO_STDIO + STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); + STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); + #endif +#endif + +#ifndef STBI_NO_HDR + STBIDEF void stbi_hdr_to_ldr_gamma(float gamma); + STBIDEF void stbi_hdr_to_ldr_scale(float scale); +#endif // STBI_NO_HDR + +#ifndef STBI_NO_LINEAR + STBIDEF void stbi_ldr_to_hdr_gamma(float gamma); + STBIDEF void stbi_ldr_to_hdr_scale(float scale); +#endif // STBI_NO_LINEAR + +// stbi_is_hdr is always defined, but always returns false if STBI_NO_HDR +STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user); +STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len); +#ifndef STBI_NO_STDIO +STBIDEF int stbi_is_hdr (char const *filename); +STBIDEF int stbi_is_hdr_from_file(FILE *f); +#endif // STBI_NO_STDIO + + +// get a VERY brief reason for failure +// on most compilers (and ALL modern mainstream compilers) this is threadsafe +STBIDEF const char *stbi_failure_reason (void); + +// free the loaded image -- this is just free() +STBIDEF void stbi_image_free (void *retval_from_stbi_load); + +// get image dimensions & components without fully decoding +STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp); +STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp); +STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len); +STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *clbk, void *user); + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp); +STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp); +STBIDEF int stbi_is_16_bit (char const *filename); +STBIDEF int stbi_is_16_bit_from_file(FILE *f); +#endif + + + +// for image formats that explicitly notate that they have premultiplied alpha, +// we just return the colors as stored in the file. set this flag to force +// unpremultiplication. results are undefined if the unpremultiply overflow. +STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply); + +// indicate whether we should process iphone images back to canonical format, +// or just pass them through "as-is" +STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert); + +// flip the image vertically, so the first pixel in the output array is the bottom left +STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip); + +// as above, but only applies to images loaded on the thread that calls the function +// this function is only available if your compiler supports thread-local variables; +// calling it will fail to link if your compiler doesn't +STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply); +STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert); +STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip); + +// ZLIB client - used by PNG, available for other purposes + +STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen); +STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header); +STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen); +STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); + +STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen); +STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); + + +#ifdef __cplusplus +} +#endif + +// +// +//// end header file ///////////////////////////////////////////////////// +#endif // STBI_INCLUDE_STB_IMAGE_H + +#ifdef STB_IMAGE_IMPLEMENTATION + +#if defined(STBI_ONLY_JPEG) || defined(STBI_ONLY_PNG) || defined(STBI_ONLY_BMP) \ + || defined(STBI_ONLY_TGA) || defined(STBI_ONLY_GIF) || defined(STBI_ONLY_PSD) \ + || defined(STBI_ONLY_HDR) || defined(STBI_ONLY_PIC) || defined(STBI_ONLY_PNM) \ + || defined(STBI_ONLY_ZLIB) + #ifndef STBI_ONLY_JPEG + #define STBI_NO_JPEG + #endif + #ifndef STBI_ONLY_PNG + #define STBI_NO_PNG + #endif + #ifndef STBI_ONLY_BMP + #define STBI_NO_BMP + #endif + #ifndef STBI_ONLY_PSD + #define STBI_NO_PSD + #endif + #ifndef STBI_ONLY_TGA + #define STBI_NO_TGA + #endif + #ifndef STBI_ONLY_GIF + #define STBI_NO_GIF + #endif + #ifndef STBI_ONLY_HDR + #define STBI_NO_HDR + #endif + #ifndef STBI_ONLY_PIC + #define STBI_NO_PIC + #endif + #ifndef STBI_ONLY_PNM + #define STBI_NO_PNM + #endif +#endif + +#if defined(STBI_NO_PNG) && !defined(STBI_SUPPORT_ZLIB) && !defined(STBI_NO_ZLIB) +#define STBI_NO_ZLIB +#endif + + +#include +#include // ptrdiff_t on osx +#include +#include +#include + +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) +#include // ldexp, pow +#endif + +#ifndef STBI_NO_STDIO +#include +#endif + +#ifndef STBI_ASSERT +#include +#define STBI_ASSERT(x) assert(x) +#endif + +#ifdef __cplusplus +#define STBI_EXTERN extern "C" +#else +#define STBI_EXTERN extern +#endif + + +#ifndef _MSC_VER + #ifdef __cplusplus + #define stbi_inline inline + #else + #define stbi_inline + #endif +#else + #define stbi_inline __forceinline +#endif + +#ifndef STBI_NO_THREAD_LOCALS + #if defined(__cplusplus) && __cplusplus >= 201103L + #define STBI_THREAD_LOCAL thread_local + #elif defined(__GNUC__) && __GNUC__ < 5 + #define STBI_THREAD_LOCAL __thread + #elif defined(_MSC_VER) + #define STBI_THREAD_LOCAL __declspec(thread) + #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) + #define STBI_THREAD_LOCAL _Thread_local + #endif + + #ifndef STBI_THREAD_LOCAL + #if defined(__GNUC__) + #define STBI_THREAD_LOCAL __thread + #endif + #endif +#endif + +#if defined(_MSC_VER) || defined(__SYMBIAN32__) +typedef unsigned short stbi__uint16; +typedef signed short stbi__int16; +typedef unsigned int stbi__uint32; +typedef signed int stbi__int32; +#else +#include +typedef uint16_t stbi__uint16; +typedef int16_t stbi__int16; +typedef uint32_t stbi__uint32; +typedef int32_t stbi__int32; +#endif + +// should produce compiler error if size is wrong +typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1]; + +#ifdef _MSC_VER +#define STBI_NOTUSED(v) (void)(v) +#else +#define STBI_NOTUSED(v) (void)sizeof(v) +#endif + +#ifdef _MSC_VER +#define STBI_HAS_LROTL +#endif + +#ifdef STBI_HAS_LROTL + #define stbi_lrot(x,y) _lrotl(x,y) +#else + #define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (-(y) & 31))) +#endif + +#if defined(STBI_MALLOC) && defined(STBI_FREE) && (defined(STBI_REALLOC) || defined(STBI_REALLOC_SIZED)) +// ok +#elif !defined(STBI_MALLOC) && !defined(STBI_FREE) && !defined(STBI_REALLOC) && !defined(STBI_REALLOC_SIZED) +// ok +#else +#error "Must define all or none of STBI_MALLOC, STBI_FREE, and STBI_REALLOC (or STBI_REALLOC_SIZED)." +#endif + +#ifndef STBI_MALLOC +#define STBI_MALLOC(sz) malloc(sz) +#define STBI_REALLOC(p,newsz) realloc(p,newsz) +#define STBI_FREE(p) free(p) +#endif + +#ifndef STBI_REALLOC_SIZED +#define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz) +#endif + +// x86/x64 detection +#if defined(__x86_64__) || defined(_M_X64) +#define STBI__X64_TARGET +#elif defined(__i386) || defined(_M_IX86) +#define STBI__X86_TARGET +#endif + +#if defined(__GNUC__) && defined(STBI__X86_TARGET) && !defined(__SSE2__) && !defined(STBI_NO_SIMD) +// gcc doesn't support sse2 intrinsics unless you compile with -msse2, +// which in turn means it gets to use SSE2 everywhere. This is unfortunate, +// but previous attempts to provide the SSE2 functions with runtime +// detection caused numerous issues. The way architecture extensions are +// exposed in GCC/Clang is, sadly, not really suited for one-file libs. +// New behavior: if compiled with -msse2, we use SSE2 without any +// detection; if not, we don't use it at all. +#define STBI_NO_SIMD +#endif + +#if defined(__MINGW32__) && defined(STBI__X86_TARGET) && !defined(STBI_MINGW_ENABLE_SSE2) && !defined(STBI_NO_SIMD) +// Note that __MINGW32__ doesn't actually mean 32-bit, so we have to avoid STBI__X64_TARGET +// +// 32-bit MinGW wants ESP to be 16-byte aligned, but this is not in the +// Windows ABI and VC++ as well as Windows DLLs don't maintain that invariant. +// As a result, enabling SSE2 on 32-bit MinGW is dangerous when not +// simultaneously enabling "-mstackrealign". +// +// See https://github.com/nothings/stb/issues/81 for more information. +// +// So default to no SSE2 on 32-bit MinGW. If you've read this far and added +// -mstackrealign to your build settings, feel free to #define STBI_MINGW_ENABLE_SSE2. +#define STBI_NO_SIMD +#endif + +#if !defined(STBI_NO_SIMD) && (defined(STBI__X86_TARGET) || defined(STBI__X64_TARGET)) +#define STBI_SSE2 +#include + +#ifdef _MSC_VER + +#if _MSC_VER >= 1400 // not VC6 +#include // __cpuid +static int stbi__cpuid3(void) +{ + int info[4]; + __cpuid(info,1); + return info[3]; +} +#else +static int stbi__cpuid3(void) +{ + int res; + __asm { + mov eax,1 + cpuid + mov res,edx + } + return res; +} +#endif + +#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name + +#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) +static int stbi__sse2_available(void) +{ + int info3 = stbi__cpuid3(); + return ((info3 >> 26) & 1) != 0; +} +#endif + +#else // assume GCC-style if not VC++ +#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) + +#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) +static int stbi__sse2_available(void) +{ + // If we're even attempting to compile this on GCC/Clang, that means + // -msse2 is on, which means the compiler is allowed to use SSE2 + // instructions at will, and so are we. + return 1; +} +#endif + +#endif +#endif + +// ARM NEON +#if defined(STBI_NO_SIMD) && defined(STBI_NEON) +#undef STBI_NEON +#endif + +#ifdef STBI_NEON +#include +#ifdef _MSC_VER +#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name +#else +#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) +#endif +#endif + +#ifndef STBI_SIMD_ALIGN +#define STBI_SIMD_ALIGN(type, name) type name +#endif + +#ifndef STBI_MAX_DIMENSIONS +#define STBI_MAX_DIMENSIONS (1 << 24) +#endif + +/////////////////////////////////////////////// +// +// stbi__context struct and start_xxx functions + +// stbi__context structure is our basic context used by all images, so it +// contains all the IO context, plus some basic image information +typedef struct +{ + stbi__uint32 img_x, img_y; + int img_n, img_out_n; + + stbi_io_callbacks io; + void *io_user_data; + + int read_from_callbacks; + int buflen; + stbi_uc buffer_start[128]; + int callback_already_read; + + stbi_uc *img_buffer, *img_buffer_end; + stbi_uc *img_buffer_original, *img_buffer_original_end; +} stbi__context; + + +static void stbi__refill_buffer(stbi__context *s); + +// initialize a memory-decode context +static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len) +{ + s->io.read = NULL; + s->read_from_callbacks = 0; + s->callback_already_read = 0; + s->img_buffer = s->img_buffer_original = (stbi_uc *) buffer; + s->img_buffer_end = s->img_buffer_original_end = (stbi_uc *) buffer+len; +} + +// initialize a callback-based context +static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user) +{ + s->io = *c; + s->io_user_data = user; + s->buflen = sizeof(s->buffer_start); + s->read_from_callbacks = 1; + s->callback_already_read = 0; + s->img_buffer = s->img_buffer_original = s->buffer_start; + stbi__refill_buffer(s); + s->img_buffer_original_end = s->img_buffer_end; +} + +#ifndef STBI_NO_STDIO + +static int stbi__stdio_read(void *user, char *data, int size) +{ + return (int) fread(data,1,size,(FILE*) user); +} + +static void stbi__stdio_skip(void *user, int n) +{ + int ch; + fseek((FILE*) user, n, SEEK_CUR); + ch = fgetc((FILE*) user); /* have to read a byte to reset feof()'s flag */ + if (ch != EOF) { + ungetc(ch, (FILE *) user); /* push byte back onto stream if valid. */ + } +} + +static int stbi__stdio_eof(void *user) +{ + return feof((FILE*) user) || ferror((FILE *) user); +} + +static stbi_io_callbacks stbi__stdio_callbacks = +{ + stbi__stdio_read, + stbi__stdio_skip, + stbi__stdio_eof, +}; + +static void stbi__start_file(stbi__context *s, FILE *f) +{ + stbi__start_callbacks(s, &stbi__stdio_callbacks, (void *) f); +} + +//static void stop_file(stbi__context *s) { } + +#endif // !STBI_NO_STDIO + +static void stbi__rewind(stbi__context *s) +{ + // conceptually rewind SHOULD rewind to the beginning of the stream, + // but we just rewind to the beginning of the initial buffer, because + // we only use it after doing 'test', which only ever looks at at most 92 bytes + s->img_buffer = s->img_buffer_original; + s->img_buffer_end = s->img_buffer_original_end; +} + +enum +{ + STBI_ORDER_RGB, + STBI_ORDER_BGR +}; + +typedef struct +{ + int bits_per_channel; + int num_channels; + int channel_order; +} stbi__result_info; + +#ifndef STBI_NO_JPEG +static int stbi__jpeg_test(stbi__context *s); +static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PNG +static int stbi__png_test(stbi__context *s); +static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__png_is16(stbi__context *s); +#endif + +#ifndef STBI_NO_BMP +static int stbi__bmp_test(stbi__context *s); +static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_TGA +static int stbi__tga_test(stbi__context *s); +static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PSD +static int stbi__psd_test(stbi__context *s); +static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc); +static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__psd_is16(stbi__context *s); +#endif + +#ifndef STBI_NO_HDR +static int stbi__hdr_test(stbi__context *s); +static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PIC +static int stbi__pic_test(stbi__context *s); +static void *stbi__pic_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_GIF +static int stbi__gif_test(stbi__context *s); +static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp); +static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PNM +static int stbi__pnm_test(stbi__context *s); +static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__pnm_is16(stbi__context *s); +#endif + +static +#ifdef STBI_THREAD_LOCAL +STBI_THREAD_LOCAL +#endif +const char *stbi__g_failure_reason; + +STBIDEF const char *stbi_failure_reason(void) +{ + return stbi__g_failure_reason; +} + +#ifndef STBI_NO_FAILURE_STRINGS +static int stbi__err(const char *str) +{ + stbi__g_failure_reason = str; + return 0; +} +#endif + +static void *stbi__malloc(size_t size) +{ + return STBI_MALLOC(size); +} + +// stb_image uses ints pervasively, including for offset calculations. +// therefore the largest decoded image size we can support with the +// current code, even on 64-bit targets, is INT_MAX. this is not a +// significant limitation for the intended use case. +// +// we do, however, need to make sure our size calculations don't +// overflow. hence a few helper functions for size calculations that +// multiply integers together, making sure that they're non-negative +// and no overflow occurs. + +// return 1 if the sum is valid, 0 on overflow. +// negative terms are considered invalid. +static int stbi__addsizes_valid(int a, int b) +{ + if (b < 0) return 0; + // now 0 <= b <= INT_MAX, hence also + // 0 <= INT_MAX - b <= INTMAX. + // And "a + b <= INT_MAX" (which might overflow) is the + // same as a <= INT_MAX - b (no overflow) + return a <= INT_MAX - b; +} + +// returns 1 if the product is valid, 0 on overflow. +// negative factors are considered invalid. +static int stbi__mul2sizes_valid(int a, int b) +{ + if (a < 0 || b < 0) return 0; + if (b == 0) return 1; // mul-by-0 is always safe + // portable way to check for no overflows in a*b + return a <= INT_MAX/b; +} + +#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) +// returns 1 if "a*b + add" has no negative terms/factors and doesn't overflow +static int stbi__mad2sizes_valid(int a, int b, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__addsizes_valid(a*b, add); +} +#endif + +// returns 1 if "a*b*c + add" has no negative terms/factors and doesn't overflow +static int stbi__mad3sizes_valid(int a, int b, int c, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && + stbi__addsizes_valid(a*b*c, add); +} + +// returns 1 if "a*b*c*d + add" has no negative terms/factors and doesn't overflow +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) +static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && + stbi__mul2sizes_valid(a*b*c, d) && stbi__addsizes_valid(a*b*c*d, add); +} +#endif + +#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) +// mallocs with size overflow checking +static void *stbi__malloc_mad2(int a, int b, int add) +{ + if (!stbi__mad2sizes_valid(a, b, add)) return NULL; + return stbi__malloc(a*b + add); +} +#endif + +static void *stbi__malloc_mad3(int a, int b, int c, int add) +{ + if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL; + return stbi__malloc(a*b*c + add); +} + +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) +static void *stbi__malloc_mad4(int a, int b, int c, int d, int add) +{ + if (!stbi__mad4sizes_valid(a, b, c, d, add)) return NULL; + return stbi__malloc(a*b*c*d + add); +} +#endif + +// returns 1 if the sum of two signed ints is valid (between -2^31 and 2^31-1 inclusive), 0 on overflow. +static int stbi__addints_valid(int a, int b) +{ + if ((a >= 0) != (b >= 0)) return 1; // a and b have different signs, so no overflow + if (a < 0 && b < 0) return a >= INT_MIN - b; // same as a + b >= INT_MIN; INT_MIN - b cannot overflow since b < 0. + return a <= INT_MAX - b; +} + +// returns 1 if the product of two ints fits in a signed short, 0 on overflow. +static int stbi__mul2shorts_valid(int a, int b) +{ + if (b == 0 || b == -1) return 1; // multiplication by 0 is always 0; check for -1 so SHRT_MIN/b doesn't overflow + if ((a >= 0) == (b >= 0)) return a <= SHRT_MAX/b; // product is positive, so similar to mul2sizes_valid + if (b < 0) return a <= SHRT_MIN / b; // same as a * b >= SHRT_MIN + return a >= SHRT_MIN / b; +} + +// stbi__err - error +// stbi__errpf - error returning pointer to float +// stbi__errpuc - error returning pointer to unsigned char + +#ifdef STBI_NO_FAILURE_STRINGS + #define stbi__err(x,y) 0 +#elif defined(STBI_FAILURE_USERMSG) + #define stbi__err(x,y) stbi__err(y) +#else + #define stbi__err(x,y) stbi__err(x) +#endif + +#define stbi__errpf(x,y) ((float *)(size_t) (stbi__err(x,y)?NULL:NULL)) +#define stbi__errpuc(x,y) ((unsigned char *)(size_t) (stbi__err(x,y)?NULL:NULL)) + +STBIDEF void stbi_image_free(void *retval_from_stbi_load) +{ + STBI_FREE(retval_from_stbi_load); +} + +#ifndef STBI_NO_LINEAR +static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp); +#endif + +#ifndef STBI_NO_HDR +static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp); +#endif + +static int stbi__vertically_flip_on_load_global = 0; + +STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip) +{ + stbi__vertically_flip_on_load_global = flag_true_if_should_flip; +} + +#ifndef STBI_THREAD_LOCAL +#define stbi__vertically_flip_on_load stbi__vertically_flip_on_load_global +#else +static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set; + +STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip) +{ + stbi__vertically_flip_on_load_local = flag_true_if_should_flip; + stbi__vertically_flip_on_load_set = 1; +} + +#define stbi__vertically_flip_on_load (stbi__vertically_flip_on_load_set \ + ? stbi__vertically_flip_on_load_local \ + : stbi__vertically_flip_on_load_global) +#endif // STBI_THREAD_LOCAL + +static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) +{ + memset(ri, 0, sizeof(*ri)); // make sure it's initialized if we add new fields + ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed + ri->channel_order = STBI_ORDER_RGB; // all current input & output are this, but this is here so we can add BGR order + ri->num_channels = 0; + + // test the formats with a very explicit header first (at least a FOURCC + // or distinctive magic number first) + #ifndef STBI_NO_PNG + if (stbi__png_test(s)) return stbi__png_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_BMP + if (stbi__bmp_test(s)) return stbi__bmp_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_GIF + if (stbi__gif_test(s)) return stbi__gif_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_PSD + if (stbi__psd_test(s)) return stbi__psd_load(s,x,y,comp,req_comp, ri, bpc); + #else + STBI_NOTUSED(bpc); + #endif + #ifndef STBI_NO_PIC + if (stbi__pic_test(s)) return stbi__pic_load(s,x,y,comp,req_comp, ri); + #endif + + // then the formats that can end up attempting to load with just 1 or 2 + // bytes matching expectations; these are prone to false positives, so + // try them later + #ifndef STBI_NO_JPEG + if (stbi__jpeg_test(s)) return stbi__jpeg_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_PNM + if (stbi__pnm_test(s)) return stbi__pnm_load(s,x,y,comp,req_comp, ri); + #endif + + #ifndef STBI_NO_HDR + if (stbi__hdr_test(s)) { + float *hdr = stbi__hdr_load(s, x,y,comp,req_comp, ri); + return stbi__hdr_to_ldr(hdr, *x, *y, req_comp ? req_comp : *comp); + } + #endif + + #ifndef STBI_NO_TGA + // test tga last because it's a crappy test! + if (stbi__tga_test(s)) + return stbi__tga_load(s,x,y,comp,req_comp, ri); + #endif + + return stbi__errpuc("unknown image type", "Image not of any known type, or corrupt"); +} + +static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels) +{ + int i; + int img_len = w * h * channels; + stbi_uc *reduced; + + reduced = (stbi_uc *) stbi__malloc(img_len); + if (reduced == NULL) return stbi__errpuc("outofmem", "Out of memory"); + + for (i = 0; i < img_len; ++i) + reduced[i] = (stbi_uc)((orig[i] >> 8) & 0xFF); // top half of each byte is sufficient approx of 16->8 bit scaling + + STBI_FREE(orig); + return reduced; +} + +static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels) +{ + int i; + int img_len = w * h * channels; + stbi__uint16 *enlarged; + + enlarged = (stbi__uint16 *) stbi__malloc(img_len*2); + if (enlarged == NULL) return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); + + for (i = 0; i < img_len; ++i) + enlarged[i] = (stbi__uint16)((orig[i] << 8) + orig[i]); // replicate to high and low byte, maps 0->0, 255->0xffff + + STBI_FREE(orig); + return enlarged; +} + +static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel) +{ + int row; + size_t bytes_per_row = (size_t)w * bytes_per_pixel; + stbi_uc temp[2048]; + stbi_uc *bytes = (stbi_uc *)image; + + for (row = 0; row < (h>>1); row++) { + stbi_uc *row0 = bytes + row*bytes_per_row; + stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row; + // swap row0 with row1 + size_t bytes_left = bytes_per_row; + while (bytes_left) { + size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp); + memcpy(temp, row0, bytes_copy); + memcpy(row0, row1, bytes_copy); + memcpy(row1, temp, bytes_copy); + row0 += bytes_copy; + row1 += bytes_copy; + bytes_left -= bytes_copy; + } + } +} + +#ifndef STBI_NO_GIF +static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel) +{ + int slice; + int slice_size = w * h * bytes_per_pixel; + + stbi_uc *bytes = (stbi_uc *)image; + for (slice = 0; slice < z; ++slice) { + stbi__vertical_flip(bytes, w, h, bytes_per_pixel); + bytes += slice_size; + } +} +#endif + +static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + stbi__result_info ri; + void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 8); + + if (result == NULL) + return NULL; + + // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. + STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); + + if (ri.bits_per_channel != 8) { + result = stbi__convert_16_to_8((stbi__uint16 *) result, *x, *y, req_comp == 0 ? *comp : req_comp); + ri.bits_per_channel = 8; + } + + // @TODO: move stbi__convert_format to here + + if (stbi__vertically_flip_on_load) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi_uc)); + } + + return (unsigned char *) result; +} + +static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + stbi__result_info ri; + void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 16); + + if (result == NULL) + return NULL; + + // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. + STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); + + if (ri.bits_per_channel != 16) { + result = stbi__convert_8_to_16((stbi_uc *) result, *x, *y, req_comp == 0 ? *comp : req_comp); + ri.bits_per_channel = 16; + } + + // @TODO: move stbi__convert_format16 to here + // @TODO: special case RGB-to-Y (and RGBA-to-YA) for 8-bit-to-16-bit case to keep more precision + + if (stbi__vertically_flip_on_load) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi__uint16)); + } + + return (stbi__uint16 *) result; +} + +#if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR) +static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp) +{ + if (stbi__vertically_flip_on_load && result != NULL) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(float)); + } +} +#endif + +#ifndef STBI_NO_STDIO + +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) +STBI_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); +STBI_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); +#endif + +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) +STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) +{ + return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); +} +#endif + +static FILE *stbi__fopen(char const *filename, char const *mode) +{ + FILE *f; +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) + wchar_t wMode[64]; + wchar_t wFilename[1024]; + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename))) + return 0; + + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode))) + return 0; + +#if defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != _wfopen_s(&f, wFilename, wMode)) + f = 0; +#else + f = _wfopen(wFilename, wMode); +#endif + +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != fopen_s(&f, filename, mode)) + f=0; +#else + f = fopen(filename, mode); +#endif + return f; +} + + +STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + unsigned char *result; + if (!f) return stbi__errpuc("can't fopen", "Unable to open file"); + result = stbi_load_from_file(f,x,y,comp,req_comp); + fclose(f); + return result; +} + +STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + unsigned char *result; + stbi__context s; + stbi__start_file(&s,f); + result = stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); + if (result) { + // need to 'unget' all the characters in the IO buffer + fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); + } + return result; +} + +STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + stbi__uint16 *result; + stbi__context s; + stbi__start_file(&s,f); + result = stbi__load_and_postprocess_16bit(&s,x,y,comp,req_comp); + if (result) { + // need to 'unget' all the characters in the IO buffer + fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); + } + return result; +} + +STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + stbi__uint16 *result; + if (!f) return (stbi_us *) stbi__errpuc("can't fopen", "Unable to open file"); + result = stbi_load_from_file_16(f,x,y,comp,req_comp); + fclose(f); + return result; +} + + +#endif //!STBI_NO_STDIO + +STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); +} + +STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *)clbk, user); + return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); +} + +STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); +} + +STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); +} + +#ifndef STBI_NO_GIF +STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp) +{ + unsigned char *result; + stbi__context s; + stbi__start_mem(&s,buffer,len); + + result = (unsigned char*) stbi__load_gif_main(&s, delays, x, y, z, comp, req_comp); + if (stbi__vertically_flip_on_load) { + stbi__vertical_flip_slices( result, *x, *y, *z, *comp ); + } + + return result; +} +#endif + +#ifndef STBI_NO_LINEAR +static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + unsigned char *data; + #ifndef STBI_NO_HDR + if (stbi__hdr_test(s)) { + stbi__result_info ri; + float *hdr_data = stbi__hdr_load(s,x,y,comp,req_comp, &ri); + if (hdr_data) + stbi__float_postprocess(hdr_data,x,y,comp,req_comp); + return hdr_data; + } + #endif + data = stbi__load_and_postprocess_8bit(s, x, y, comp, req_comp); + if (data) + return stbi__ldr_to_hdr(data, *x, *y, req_comp ? req_comp : *comp); + return stbi__errpf("unknown image type", "Image not of any known type, or corrupt"); +} + +STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} + +STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} + +#ifndef STBI_NO_STDIO +STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + float *result; + FILE *f = stbi__fopen(filename, "rb"); + if (!f) return stbi__errpf("can't fopen", "Unable to open file"); + result = stbi_loadf_from_file(f,x,y,comp,req_comp); + fclose(f); + return result; +} + +STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_file(&s,f); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} +#endif // !STBI_NO_STDIO + +#endif // !STBI_NO_LINEAR + +// these is-hdr-or-not is defined independent of whether STBI_NO_LINEAR is +// defined, for API simplicity; if STBI_NO_LINEAR is defined, it always +// reports false! + +STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len) +{ + #ifndef STBI_NO_HDR + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__hdr_test(&s); + #else + STBI_NOTUSED(buffer); + STBI_NOTUSED(len); + return 0; + #endif +} + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_is_hdr (char const *filename) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result=0; + if (f) { + result = stbi_is_hdr_from_file(f); + fclose(f); + } + return result; +} + +STBIDEF int stbi_is_hdr_from_file(FILE *f) +{ + #ifndef STBI_NO_HDR + long pos = ftell(f); + int res; + stbi__context s; + stbi__start_file(&s,f); + res = stbi__hdr_test(&s); + fseek(f, pos, SEEK_SET); + return res; + #else + STBI_NOTUSED(f); + return 0; + #endif +} +#endif // !STBI_NO_STDIO + +STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user) +{ + #ifndef STBI_NO_HDR + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__hdr_test(&s); + #else + STBI_NOTUSED(clbk); + STBI_NOTUSED(user); + return 0; + #endif +} + +#ifndef STBI_NO_LINEAR +static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f; + +STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; } +STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; } +#endif + +static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f; + +STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; } +STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; } + + +////////////////////////////////////////////////////////////////////////////// +// +// Common code used by all image loaders +// + +enum +{ + STBI__SCAN_load=0, + STBI__SCAN_type, + STBI__SCAN_header +}; + +static void stbi__refill_buffer(stbi__context *s) +{ + int n = (s->io.read)(s->io_user_data,(char*)s->buffer_start,s->buflen); + s->callback_already_read += (int) (s->img_buffer - s->img_buffer_original); + if (n == 0) { + // at end of file, treat same as if from memory, but need to handle case + // where s->img_buffer isn't pointing to safe memory, e.g. 0-byte file + s->read_from_callbacks = 0; + s->img_buffer = s->buffer_start; + s->img_buffer_end = s->buffer_start+1; + *s->img_buffer = 0; + } else { + s->img_buffer = s->buffer_start; + s->img_buffer_end = s->buffer_start + n; + } +} + +stbi_inline static stbi_uc stbi__get8(stbi__context *s) +{ + if (s->img_buffer < s->img_buffer_end) + return *s->img_buffer++; + if (s->read_from_callbacks) { + stbi__refill_buffer(s); + return *s->img_buffer++; + } + return 0; +} + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +stbi_inline static int stbi__at_eof(stbi__context *s) +{ + if (s->io.read) { + if (!(s->io.eof)(s->io_user_data)) return 0; + // if feof() is true, check if buffer = end + // special case: we've only got the special 0 character at the end + if (s->read_from_callbacks == 0) return 1; + } + + return s->img_buffer >= s->img_buffer_end; +} +#endif + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) +// nothing +#else +static void stbi__skip(stbi__context *s, int n) +{ + if (n == 0) return; // already there! + if (n < 0) { + s->img_buffer = s->img_buffer_end; + return; + } + if (s->io.read) { + int blen = (int) (s->img_buffer_end - s->img_buffer); + if (blen < n) { + s->img_buffer = s->img_buffer_end; + (s->io.skip)(s->io_user_data, n - blen); + return; + } + } + s->img_buffer += n; +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_TGA) && defined(STBI_NO_HDR) && defined(STBI_NO_PNM) +// nothing +#else +static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n) +{ + if (s->io.read) { + int blen = (int) (s->img_buffer_end - s->img_buffer); + if (blen < n) { + int res, count; + + memcpy(buffer, s->img_buffer, blen); + + count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen); + res = (count == (n-blen)); + s->img_buffer = s->img_buffer_end; + return res; + } + } + + if (s->img_buffer+n <= s->img_buffer_end) { + memcpy(buffer, s->img_buffer, n); + s->img_buffer += n; + return 1; + } else + return 0; +} +#endif + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) +// nothing +#else +static int stbi__get16be(stbi__context *s) +{ + int z = stbi__get8(s); + return (z << 8) + stbi__get8(s); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) +// nothing +#else +static stbi__uint32 stbi__get32be(stbi__context *s) +{ + stbi__uint32 z = stbi__get16be(s); + return (z << 16) + stbi__get16be(s); +} +#endif + +#if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) +// nothing +#else +static int stbi__get16le(stbi__context *s) +{ + int z = stbi__get8(s); + return z + (stbi__get8(s) << 8); +} +#endif + +#ifndef STBI_NO_BMP +static stbi__uint32 stbi__get32le(stbi__context *s) +{ + stbi__uint32 z = stbi__get16le(s); + z += (stbi__uint32)stbi__get16le(s) << 16; + return z; +} +#endif + +#define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +////////////////////////////////////////////////////////////////////////////// +// +// generic converter from built-in img_n to req_comp +// individual types do this automatically as much as possible (e.g. jpeg +// does all cases internally since it needs to colorspace convert anyway, +// and it never has alpha, so very few cases ). png can automatically +// interleave an alpha=255 channel, but falls back to this for other cases +// +// assume data buffer is malloced, so malloc a new one and free that one +// only failure mode is malloc failing + +static stbi_uc stbi__compute_y(int r, int g, int b) +{ + return (stbi_uc) (((r*77) + (g*150) + (29*b)) >> 8); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y) +{ + int i,j; + unsigned char *good; + + if (req_comp == img_n) return data; + STBI_ASSERT(req_comp >= 1 && req_comp <= 4); + + good = (unsigned char *) stbi__malloc_mad3(req_comp, x, y, 0); + if (good == NULL) { + STBI_FREE(data); + return stbi__errpuc("outofmem", "Out of memory"); + } + + for (j=0; j < (int) y; ++j) { + unsigned char *src = data + j * x * img_n ; + unsigned char *dest = good + j * x * req_comp; + + #define STBI__COMBO(a,b) ((a)*8+(b)) + #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) + // convert source image with img_n components to one with req_comp components; + // avoid switch per pixel, so use switch per scanline and massive macros + switch (STBI__COMBO(img_n, req_comp)) { + STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=255; } break; + STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=255; } break; + STBI__CASE(2,1) { dest[0]=src[0]; } break; + STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; + STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=255; } break; + STBI__CASE(3,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; + STBI__CASE(3,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = 255; } break; + STBI__CASE(4,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; + STBI__CASE(4,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = src[3]; } break; + STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; + default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return stbi__errpuc("unsupported", "Unsupported format conversion"); + } + #undef STBI__CASE + } + + STBI_FREE(data); + return good; +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) +// nothing +#else +static stbi__uint16 stbi__compute_y_16(int r, int g, int b) +{ + return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) +// nothing +#else +static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y) +{ + int i,j; + stbi__uint16 *good; + + if (req_comp == img_n) return data; + STBI_ASSERT(req_comp >= 1 && req_comp <= 4); + + good = (stbi__uint16 *) stbi__malloc(req_comp * x * y * 2); + if (good == NULL) { + STBI_FREE(data); + return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); + } + + for (j=0; j < (int) y; ++j) { + stbi__uint16 *src = data + j * x * img_n ; + stbi__uint16 *dest = good + j * x * req_comp; + + #define STBI__COMBO(a,b) ((a)*8+(b)) + #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) + // convert source image with img_n components to one with req_comp components; + // avoid switch per pixel, so use switch per scanline and massive macros + switch (STBI__COMBO(img_n, req_comp)) { + STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=0xffff; } break; + STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=0xffff; } break; + STBI__CASE(2,1) { dest[0]=src[0]; } break; + STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; + STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=0xffff; } break; + STBI__CASE(3,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; + STBI__CASE(3,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = 0xffff; } break; + STBI__CASE(4,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; + STBI__CASE(4,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = src[3]; } break; + STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; + default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return (stbi__uint16*) stbi__errpuc("unsupported", "Unsupported format conversion"); + } + #undef STBI__CASE + } + + STBI_FREE(data); + return good; +} +#endif + +#ifndef STBI_NO_LINEAR +static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp) +{ + int i,k,n; + float *output; + if (!data) return NULL; + output = (float *) stbi__malloc_mad4(x, y, comp, sizeof(float), 0); + if (output == NULL) { STBI_FREE(data); return stbi__errpf("outofmem", "Out of memory"); } + // compute number of non-alpha components + if (comp & 1) n = comp; else n = comp-1; + for (i=0; i < x*y; ++i) { + for (k=0; k < n; ++k) { + output[i*comp + k] = (float) (pow(data[i*comp+k]/255.0f, stbi__l2h_gamma) * stbi__l2h_scale); + } + } + if (n < comp) { + for (i=0; i < x*y; ++i) { + output[i*comp + n] = data[i*comp + n]/255.0f; + } + } + STBI_FREE(data); + return output; +} +#endif + +#ifndef STBI_NO_HDR +#define stbi__float2int(x) ((int) (x)) +static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) +{ + int i,k,n; + stbi_uc *output; + if (!data) return NULL; + output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0); + if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); } + // compute number of non-alpha components + if (comp & 1) n = comp; else n = comp-1; + for (i=0; i < x*y; ++i) { + for (k=0; k < n; ++k) { + float z = (float) pow(data[i*comp+k]*stbi__h2l_scale_i, stbi__h2l_gamma_i) * 255 + 0.5f; + if (z < 0) z = 0; + if (z > 255) z = 255; + output[i*comp + k] = (stbi_uc) stbi__float2int(z); + } + if (k < comp) { + float z = data[i*comp+k] * 255 + 0.5f; + if (z < 0) z = 0; + if (z > 255) z = 255; + output[i*comp + k] = (stbi_uc) stbi__float2int(z); + } + } + STBI_FREE(data); + return output; +} +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// "baseline" JPEG/JFIF decoder +// +// simple implementation +// - doesn't support delayed output of y-dimension +// - simple interface (only one output format: 8-bit interleaved RGB) +// - doesn't try to recover corrupt jpegs +// - doesn't allow partial loading, loading multiple at once +// - still fast on x86 (copying globals into locals doesn't help x86) +// - allocates lots of intermediate memory (full size of all components) +// - non-interleaved case requires this anyway +// - allows good upsampling (see next) +// high-quality +// - upsampled channels are bilinearly interpolated, even across blocks +// - quality integer IDCT derived from IJG's 'slow' +// performance +// - fast huffman; reasonable integer IDCT +// - some SIMD kernels for common paths on targets with SSE2/NEON +// - uses a lot of intermediate memory, could cache poorly + +#ifndef STBI_NO_JPEG + +// huffman decoding acceleration +#define FAST_BITS 9 // larger handles more cases; smaller stomps less cache + +typedef struct +{ + stbi_uc fast[1 << FAST_BITS]; + // weirdly, repacking this into AoS is a 10% speed loss, instead of a win + stbi__uint16 code[256]; + stbi_uc values[256]; + stbi_uc size[257]; + unsigned int maxcode[18]; + int delta[17]; // old 'firstsymbol' - old 'firstcode' +} stbi__huffman; + +typedef struct +{ + stbi__context *s; + stbi__huffman huff_dc[4]; + stbi__huffman huff_ac[4]; + stbi__uint16 dequant[4][64]; + stbi__int16 fast_ac[4][1 << FAST_BITS]; + +// sizes for components, interleaved MCUs + int img_h_max, img_v_max; + int img_mcu_x, img_mcu_y; + int img_mcu_w, img_mcu_h; + +// definition of jpeg image component + struct + { + int id; + int h,v; + int tq; + int hd,ha; + int dc_pred; + + int x,y,w2,h2; + stbi_uc *data; + void *raw_data, *raw_coeff; + stbi_uc *linebuf; + short *coeff; // progressive only + int coeff_w, coeff_h; // number of 8x8 coefficient blocks + } img_comp[4]; + + stbi__uint32 code_buffer; // jpeg entropy-coded buffer + int code_bits; // number of valid bits + unsigned char marker; // marker seen while filling entropy buffer + int nomore; // flag if we saw a marker so must stop + + int progressive; + int spec_start; + int spec_end; + int succ_high; + int succ_low; + int eob_run; + int jfif; + int app14_color_transform; // Adobe APP14 tag + int rgb; + + int scan_n, order[4]; + int restart_interval, todo; + +// kernels + void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]); + void (*YCbCr_to_RGB_kernel)(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step); + stbi_uc *(*resample_row_hv_2_kernel)(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs); +} stbi__jpeg; + +static int stbi__build_huffman(stbi__huffman *h, int *count) +{ + int i,j,k=0; + unsigned int code; + // build size list for each symbol (from JPEG spec) + for (i=0; i < 16; ++i) { + for (j=0; j < count[i]; ++j) { + h->size[k++] = (stbi_uc) (i+1); + if(k >= 257) return stbi__err("bad size list","Corrupt JPEG"); + } + } + h->size[k] = 0; + + // compute actual symbols (from jpeg spec) + code = 0; + k = 0; + for(j=1; j <= 16; ++j) { + // compute delta to add to code to compute symbol id + h->delta[j] = k - code; + if (h->size[k] == j) { + while (h->size[k] == j) + h->code[k++] = (stbi__uint16) (code++); + if (code-1 >= (1u << j)) return stbi__err("bad code lengths","Corrupt JPEG"); + } + // compute largest code + 1 for this size, preshifted as needed later + h->maxcode[j] = code << (16-j); + code <<= 1; + } + h->maxcode[j] = 0xffffffff; + + // build non-spec acceleration table; 255 is flag for not-accelerated + memset(h->fast, 255, 1 << FAST_BITS); + for (i=0; i < k; ++i) { + int s = h->size[i]; + if (s <= FAST_BITS) { + int c = h->code[i] << (FAST_BITS-s); + int m = 1 << (FAST_BITS-s); + for (j=0; j < m; ++j) { + h->fast[c+j] = (stbi_uc) i; + } + } + } + return 1; +} + +// build a table that decodes both magnitude and value of small ACs in +// one go. +static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h) +{ + int i; + for (i=0; i < (1 << FAST_BITS); ++i) { + stbi_uc fast = h->fast[i]; + fast_ac[i] = 0; + if (fast < 255) { + int rs = h->values[fast]; + int run = (rs >> 4) & 15; + int magbits = rs & 15; + int len = h->size[fast]; + + if (magbits && len + magbits <= FAST_BITS) { + // magnitude code followed by receive_extend code + int k = ((i << len) & ((1 << FAST_BITS) - 1)) >> (FAST_BITS - magbits); + int m = 1 << (magbits - 1); + if (k < m) k += (~0U << magbits) + 1; + // if the result is small enough, we can fit it in fast_ac table + if (k >= -128 && k <= 127) + fast_ac[i] = (stbi__int16) ((k * 256) + (run * 16) + (len + magbits)); + } + } + } +} + +static void stbi__grow_buffer_unsafe(stbi__jpeg *j) +{ + do { + unsigned int b = j->nomore ? 0 : stbi__get8(j->s); + if (b == 0xff) { + int c = stbi__get8(j->s); + while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes + if (c != 0) { + j->marker = (unsigned char) c; + j->nomore = 1; + return; + } + } + j->code_buffer |= b << (24 - j->code_bits); + j->code_bits += 8; + } while (j->code_bits <= 24); +} + +// (1 << n) - 1 +static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535}; + +// decode a jpeg huffman value from the bitstream +stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h) +{ + unsigned int temp; + int c,k; + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + + // look at the top FAST_BITS and determine what symbol ID it is, + // if the code is <= FAST_BITS + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + k = h->fast[c]; + if (k < 255) { + int s = h->size[k]; + if (s > j->code_bits) + return -1; + j->code_buffer <<= s; + j->code_bits -= s; + return h->values[k]; + } + + // naive test is to shift the code_buffer down so k bits are + // valid, then test against maxcode. To speed this up, we've + // preshifted maxcode left so that it has (16-k) 0s at the + // end; in other words, regardless of the number of bits, it + // wants to be compared against something shifted to have 16; + // that way we don't need to shift inside the loop. + temp = j->code_buffer >> 16; + for (k=FAST_BITS+1 ; ; ++k) + if (temp < h->maxcode[k]) + break; + if (k == 17) { + // error! code not found + j->code_bits -= 16; + return -1; + } + + if (k > j->code_bits) + return -1; + + // convert the huffman code to the symbol id + c = ((j->code_buffer >> (32 - k)) & stbi__bmask[k]) + h->delta[k]; + if(c < 0 || c >= 256) // symbol id out of bounds! + return -1; + STBI_ASSERT((((j->code_buffer) >> (32 - h->size[c])) & stbi__bmask[h->size[c]]) == h->code[c]); + + // convert the id to a symbol + j->code_bits -= k; + j->code_buffer <<= k; + return h->values[c]; +} + +// bias[n] = (-1<code_bits < n) stbi__grow_buffer_unsafe(j); + if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing + + sgn = j->code_buffer >> 31; // sign bit always in MSB; 0 if MSB clear (positive), 1 if MSB set (negative) + k = stbi_lrot(j->code_buffer, n); + j->code_buffer = k & ~stbi__bmask[n]; + k &= stbi__bmask[n]; + j->code_bits -= n; + return k + (stbi__jbias[n] & (sgn - 1)); +} + +// get some unsigned bits +stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n) +{ + unsigned int k; + if (j->code_bits < n) stbi__grow_buffer_unsafe(j); + if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing + k = stbi_lrot(j->code_buffer, n); + j->code_buffer = k & ~stbi__bmask[n]; + k &= stbi__bmask[n]; + j->code_bits -= n; + return k; +} + +stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j) +{ + unsigned int k; + if (j->code_bits < 1) stbi__grow_buffer_unsafe(j); + if (j->code_bits < 1) return 0; // ran out of bits from stream, return 0s intead of continuing + k = j->code_buffer; + j->code_buffer <<= 1; + --j->code_bits; + return k & 0x80000000; +} + +// given a value that's at position X in the zigzag stream, +// where does it appear in the 8x8 matrix coded as row-major? +static const stbi_uc stbi__jpeg_dezigzag[64+15] = +{ + 0, 1, 8, 16, 9, 2, 3, 10, + 17, 24, 32, 25, 18, 11, 4, 5, + 12, 19, 26, 33, 40, 48, 41, 34, + 27, 20, 13, 6, 7, 14, 21, 28, + 35, 42, 49, 56, 57, 50, 43, 36, + 29, 22, 15, 23, 30, 37, 44, 51, + 58, 59, 52, 45, 38, 31, 39, 46, + 53, 60, 61, 54, 47, 55, 62, 63, + // let corrupt input sample past end + 63, 63, 63, 63, 63, 63, 63, 63, + 63, 63, 63, 63, 63, 63, 63 +}; + +// decode one 64-entry block-- +static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant) +{ + int diff,dc,k; + int t; + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + t = stbi__jpeg_huff_decode(j, hdc); + if (t < 0 || t > 15) return stbi__err("bad huffman code","Corrupt JPEG"); + + // 0 all the ac values now so we can do it 32-bits at a time + memset(data,0,64*sizeof(data[0])); + + diff = t ? stbi__extend_receive(j, t) : 0; + if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta","Corrupt JPEG"); + dc = j->img_comp[b].dc_pred + diff; + j->img_comp[b].dc_pred = dc; + if (!stbi__mul2shorts_valid(dc, dequant[0])) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + data[0] = (short) (dc * dequant[0]); + + // decode AC components, see JPEG spec + k = 1; + do { + unsigned int zig; + int c,r,s; + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + r = fac[c]; + if (r) { // fast-AC path + k += (r >> 4) & 15; // run + s = r & 15; // combined length + if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available"); + j->code_buffer <<= s; + j->code_bits -= s; + // decode into unzigzag'd location + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) ((r >> 8) * dequant[zig]); + } else { + int rs = stbi__jpeg_huff_decode(j, hac); + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (rs != 0xf0) break; // end block + k += 16; + } else { + k += r; + // decode into unzigzag'd location + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]); + } + } + } while (k < 64); + return 1; +} + +static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b) +{ + int diff,dc; + int t; + if (j->spec_end != 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + + if (j->succ_high == 0) { + // first scan for DC coefficient, must be first + memset(data,0,64*sizeof(data[0])); // 0 all the ac values now + t = stbi__jpeg_huff_decode(j, hdc); + if (t < 0 || t > 15) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + diff = t ? stbi__extend_receive(j, t) : 0; + + if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta", "Corrupt JPEG"); + dc = j->img_comp[b].dc_pred + diff; + j->img_comp[b].dc_pred = dc; + if (!stbi__mul2shorts_valid(dc, 1 << j->succ_low)) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + data[0] = (short) (dc * (1 << j->succ_low)); + } else { + // refinement scan for DC coefficient + if (stbi__jpeg_get_bit(j)) + data[0] += (short) (1 << j->succ_low); + } + return 1; +} + +// @OPTIMIZE: store non-zigzagged during the decode passes, +// and only de-zigzag when dequantizing +static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac) +{ + int k; + if (j->spec_start == 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + + if (j->succ_high == 0) { + int shift = j->succ_low; + + if (j->eob_run) { + --j->eob_run; + return 1; + } + + k = j->spec_start; + do { + unsigned int zig; + int c,r,s; + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + r = fac[c]; + if (r) { // fast-AC path + k += (r >> 4) & 15; // run + s = r & 15; // combined length + if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available"); + j->code_buffer <<= s; + j->code_bits -= s; + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) ((r >> 8) * (1 << shift)); + } else { + int rs = stbi__jpeg_huff_decode(j, hac); + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (r < 15) { + j->eob_run = (1 << r); + if (r) + j->eob_run += stbi__jpeg_get_bits(j, r); + --j->eob_run; + break; + } + k += 16; + } else { + k += r; + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) (stbi__extend_receive(j,s) * (1 << shift)); + } + } + } while (k <= j->spec_end); + } else { + // refinement scan for these AC coefficients + + short bit = (short) (1 << j->succ_low); + + if (j->eob_run) { + --j->eob_run; + for (k = j->spec_start; k <= j->spec_end; ++k) { + short *p = &data[stbi__jpeg_dezigzag[k]]; + if (*p != 0) + if (stbi__jpeg_get_bit(j)) + if ((*p & bit)==0) { + if (*p > 0) + *p += bit; + else + *p -= bit; + } + } + } else { + k = j->spec_start; + do { + int r,s; + int rs = stbi__jpeg_huff_decode(j, hac); // @OPTIMIZE see if we can use the fast path here, advance-by-r is so slow, eh + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (r < 15) { + j->eob_run = (1 << r) - 1; + if (r) + j->eob_run += stbi__jpeg_get_bits(j, r); + r = 64; // force end of block + } else { + // r=15 s=0 should write 16 0s, so we just do + // a run of 15 0s and then write s (which is 0), + // so we don't have to do anything special here + } + } else { + if (s != 1) return stbi__err("bad huffman code", "Corrupt JPEG"); + // sign bit + if (stbi__jpeg_get_bit(j)) + s = bit; + else + s = -bit; + } + + // advance by r + while (k <= j->spec_end) { + short *p = &data[stbi__jpeg_dezigzag[k++]]; + if (*p != 0) { + if (stbi__jpeg_get_bit(j)) + if ((*p & bit)==0) { + if (*p > 0) + *p += bit; + else + *p -= bit; + } + } else { + if (r == 0) { + *p = (short) s; + break; + } + --r; + } + } + } while (k <= j->spec_end); + } + } + return 1; +} + +// take a -128..127 value and stbi__clamp it and convert to 0..255 +stbi_inline static stbi_uc stbi__clamp(int x) +{ + // trick to use a single test to catch both cases + if ((unsigned int) x > 255) { + if (x < 0) return 0; + if (x > 255) return 255; + } + return (stbi_uc) x; +} + +#define stbi__f2f(x) ((int) (((x) * 4096 + 0.5))) +#define stbi__fsh(x) ((x) * 4096) + +// derived from jidctint -- DCT_ISLOW +#define STBI__IDCT_1D(s0,s1,s2,s3,s4,s5,s6,s7) \ + int t0,t1,t2,t3,p1,p2,p3,p4,p5,x0,x1,x2,x3; \ + p2 = s2; \ + p3 = s6; \ + p1 = (p2+p3) * stbi__f2f(0.5411961f); \ + t2 = p1 + p3*stbi__f2f(-1.847759065f); \ + t3 = p1 + p2*stbi__f2f( 0.765366865f); \ + p2 = s0; \ + p3 = s4; \ + t0 = stbi__fsh(p2+p3); \ + t1 = stbi__fsh(p2-p3); \ + x0 = t0+t3; \ + x3 = t0-t3; \ + x1 = t1+t2; \ + x2 = t1-t2; \ + t0 = s7; \ + t1 = s5; \ + t2 = s3; \ + t3 = s1; \ + p3 = t0+t2; \ + p4 = t1+t3; \ + p1 = t0+t3; \ + p2 = t1+t2; \ + p5 = (p3+p4)*stbi__f2f( 1.175875602f); \ + t0 = t0*stbi__f2f( 0.298631336f); \ + t1 = t1*stbi__f2f( 2.053119869f); \ + t2 = t2*stbi__f2f( 3.072711026f); \ + t3 = t3*stbi__f2f( 1.501321110f); \ + p1 = p5 + p1*stbi__f2f(-0.899976223f); \ + p2 = p5 + p2*stbi__f2f(-2.562915447f); \ + p3 = p3*stbi__f2f(-1.961570560f); \ + p4 = p4*stbi__f2f(-0.390180644f); \ + t3 += p1+p4; \ + t2 += p2+p3; \ + t1 += p2+p4; \ + t0 += p1+p3; + +static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64]) +{ + int i,val[64],*v=val; + stbi_uc *o; + short *d = data; + + // columns + for (i=0; i < 8; ++i,++d, ++v) { + // if all zeroes, shortcut -- this avoids dequantizing 0s and IDCTing + if (d[ 8]==0 && d[16]==0 && d[24]==0 && d[32]==0 + && d[40]==0 && d[48]==0 && d[56]==0) { + // no shortcut 0 seconds + // (1|2|3|4|5|6|7)==0 0 seconds + // all separate -0.047 seconds + // 1 && 2|3 && 4|5 && 6|7: -0.047 seconds + int dcterm = d[0]*4; + v[0] = v[8] = v[16] = v[24] = v[32] = v[40] = v[48] = v[56] = dcterm; + } else { + STBI__IDCT_1D(d[ 0],d[ 8],d[16],d[24],d[32],d[40],d[48],d[56]) + // constants scaled things up by 1<<12; let's bring them back + // down, but keep 2 extra bits of precision + x0 += 512; x1 += 512; x2 += 512; x3 += 512; + v[ 0] = (x0+t3) >> 10; + v[56] = (x0-t3) >> 10; + v[ 8] = (x1+t2) >> 10; + v[48] = (x1-t2) >> 10; + v[16] = (x2+t1) >> 10; + v[40] = (x2-t1) >> 10; + v[24] = (x3+t0) >> 10; + v[32] = (x3-t0) >> 10; + } + } + + for (i=0, v=val, o=out; i < 8; ++i,v+=8,o+=out_stride) { + // no fast case since the first 1D IDCT spread components out + STBI__IDCT_1D(v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7]) + // constants scaled things up by 1<<12, plus we had 1<<2 from first + // loop, plus horizontal and vertical each scale by sqrt(8) so together + // we've got an extra 1<<3, so 1<<17 total we need to remove. + // so we want to round that, which means adding 0.5 * 1<<17, + // aka 65536. Also, we'll end up with -128 to 127 that we want + // to encode as 0..255 by adding 128, so we'll add that before the shift + x0 += 65536 + (128<<17); + x1 += 65536 + (128<<17); + x2 += 65536 + (128<<17); + x3 += 65536 + (128<<17); + // tried computing the shifts into temps, or'ing the temps to see + // if any were out of range, but that was slower + o[0] = stbi__clamp((x0+t3) >> 17); + o[7] = stbi__clamp((x0-t3) >> 17); + o[1] = stbi__clamp((x1+t2) >> 17); + o[6] = stbi__clamp((x1-t2) >> 17); + o[2] = stbi__clamp((x2+t1) >> 17); + o[5] = stbi__clamp((x2-t1) >> 17); + o[3] = stbi__clamp((x3+t0) >> 17); + o[4] = stbi__clamp((x3-t0) >> 17); + } +} + +#ifdef STBI_SSE2 +// sse2 integer IDCT. not the fastest possible implementation but it +// produces bit-identical results to the generic C version so it's +// fully "transparent". +static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) +{ + // This is constructed to match our regular (generic) integer IDCT exactly. + __m128i row0, row1, row2, row3, row4, row5, row6, row7; + __m128i tmp; + + // dot product constant: even elems=x, odd elems=y + #define dct_const(x,y) _mm_setr_epi16((x),(y),(x),(y),(x),(y),(x),(y)) + + // out(0) = c0[even]*x + c0[odd]*y (c0, x, y 16-bit, out 32-bit) + // out(1) = c1[even]*x + c1[odd]*y + #define dct_rot(out0,out1, x,y,c0,c1) \ + __m128i c0##lo = _mm_unpacklo_epi16((x),(y)); \ + __m128i c0##hi = _mm_unpackhi_epi16((x),(y)); \ + __m128i out0##_l = _mm_madd_epi16(c0##lo, c0); \ + __m128i out0##_h = _mm_madd_epi16(c0##hi, c0); \ + __m128i out1##_l = _mm_madd_epi16(c0##lo, c1); \ + __m128i out1##_h = _mm_madd_epi16(c0##hi, c1) + + // out = in << 12 (in 16-bit, out 32-bit) + #define dct_widen(out, in) \ + __m128i out##_l = _mm_srai_epi32(_mm_unpacklo_epi16(_mm_setzero_si128(), (in)), 4); \ + __m128i out##_h = _mm_srai_epi32(_mm_unpackhi_epi16(_mm_setzero_si128(), (in)), 4) + + // wide add + #define dct_wadd(out, a, b) \ + __m128i out##_l = _mm_add_epi32(a##_l, b##_l); \ + __m128i out##_h = _mm_add_epi32(a##_h, b##_h) + + // wide sub + #define dct_wsub(out, a, b) \ + __m128i out##_l = _mm_sub_epi32(a##_l, b##_l); \ + __m128i out##_h = _mm_sub_epi32(a##_h, b##_h) + + // butterfly a/b, add bias, then shift by "s" and pack + #define dct_bfly32o(out0, out1, a,b,bias,s) \ + { \ + __m128i abiased_l = _mm_add_epi32(a##_l, bias); \ + __m128i abiased_h = _mm_add_epi32(a##_h, bias); \ + dct_wadd(sum, abiased, b); \ + dct_wsub(dif, abiased, b); \ + out0 = _mm_packs_epi32(_mm_srai_epi32(sum_l, s), _mm_srai_epi32(sum_h, s)); \ + out1 = _mm_packs_epi32(_mm_srai_epi32(dif_l, s), _mm_srai_epi32(dif_h, s)); \ + } + + // 8-bit interleave step (for transposes) + #define dct_interleave8(a, b) \ + tmp = a; \ + a = _mm_unpacklo_epi8(a, b); \ + b = _mm_unpackhi_epi8(tmp, b) + + // 16-bit interleave step (for transposes) + #define dct_interleave16(a, b) \ + tmp = a; \ + a = _mm_unpacklo_epi16(a, b); \ + b = _mm_unpackhi_epi16(tmp, b) + + #define dct_pass(bias,shift) \ + { \ + /* even part */ \ + dct_rot(t2e,t3e, row2,row6, rot0_0,rot0_1); \ + __m128i sum04 = _mm_add_epi16(row0, row4); \ + __m128i dif04 = _mm_sub_epi16(row0, row4); \ + dct_widen(t0e, sum04); \ + dct_widen(t1e, dif04); \ + dct_wadd(x0, t0e, t3e); \ + dct_wsub(x3, t0e, t3e); \ + dct_wadd(x1, t1e, t2e); \ + dct_wsub(x2, t1e, t2e); \ + /* odd part */ \ + dct_rot(y0o,y2o, row7,row3, rot2_0,rot2_1); \ + dct_rot(y1o,y3o, row5,row1, rot3_0,rot3_1); \ + __m128i sum17 = _mm_add_epi16(row1, row7); \ + __m128i sum35 = _mm_add_epi16(row3, row5); \ + dct_rot(y4o,y5o, sum17,sum35, rot1_0,rot1_1); \ + dct_wadd(x4, y0o, y4o); \ + dct_wadd(x5, y1o, y5o); \ + dct_wadd(x6, y2o, y5o); \ + dct_wadd(x7, y3o, y4o); \ + dct_bfly32o(row0,row7, x0,x7,bias,shift); \ + dct_bfly32o(row1,row6, x1,x6,bias,shift); \ + dct_bfly32o(row2,row5, x2,x5,bias,shift); \ + dct_bfly32o(row3,row4, x3,x4,bias,shift); \ + } + + __m128i rot0_0 = dct_const(stbi__f2f(0.5411961f), stbi__f2f(0.5411961f) + stbi__f2f(-1.847759065f)); + __m128i rot0_1 = dct_const(stbi__f2f(0.5411961f) + stbi__f2f( 0.765366865f), stbi__f2f(0.5411961f)); + __m128i rot1_0 = dct_const(stbi__f2f(1.175875602f) + stbi__f2f(-0.899976223f), stbi__f2f(1.175875602f)); + __m128i rot1_1 = dct_const(stbi__f2f(1.175875602f), stbi__f2f(1.175875602f) + stbi__f2f(-2.562915447f)); + __m128i rot2_0 = dct_const(stbi__f2f(-1.961570560f) + stbi__f2f( 0.298631336f), stbi__f2f(-1.961570560f)); + __m128i rot2_1 = dct_const(stbi__f2f(-1.961570560f), stbi__f2f(-1.961570560f) + stbi__f2f( 3.072711026f)); + __m128i rot3_0 = dct_const(stbi__f2f(-0.390180644f) + stbi__f2f( 2.053119869f), stbi__f2f(-0.390180644f)); + __m128i rot3_1 = dct_const(stbi__f2f(-0.390180644f), stbi__f2f(-0.390180644f) + stbi__f2f( 1.501321110f)); + + // rounding biases in column/row passes, see stbi__idct_block for explanation. + __m128i bias_0 = _mm_set1_epi32(512); + __m128i bias_1 = _mm_set1_epi32(65536 + (128<<17)); + + // load + row0 = _mm_load_si128((const __m128i *) (data + 0*8)); + row1 = _mm_load_si128((const __m128i *) (data + 1*8)); + row2 = _mm_load_si128((const __m128i *) (data + 2*8)); + row3 = _mm_load_si128((const __m128i *) (data + 3*8)); + row4 = _mm_load_si128((const __m128i *) (data + 4*8)); + row5 = _mm_load_si128((const __m128i *) (data + 5*8)); + row6 = _mm_load_si128((const __m128i *) (data + 6*8)); + row7 = _mm_load_si128((const __m128i *) (data + 7*8)); + + // column pass + dct_pass(bias_0, 10); + + { + // 16bit 8x8 transpose pass 1 + dct_interleave16(row0, row4); + dct_interleave16(row1, row5); + dct_interleave16(row2, row6); + dct_interleave16(row3, row7); + + // transpose pass 2 + dct_interleave16(row0, row2); + dct_interleave16(row1, row3); + dct_interleave16(row4, row6); + dct_interleave16(row5, row7); + + // transpose pass 3 + dct_interleave16(row0, row1); + dct_interleave16(row2, row3); + dct_interleave16(row4, row5); + dct_interleave16(row6, row7); + } + + // row pass + dct_pass(bias_1, 17); + + { + // pack + __m128i p0 = _mm_packus_epi16(row0, row1); // a0a1a2a3...a7b0b1b2b3...b7 + __m128i p1 = _mm_packus_epi16(row2, row3); + __m128i p2 = _mm_packus_epi16(row4, row5); + __m128i p3 = _mm_packus_epi16(row6, row7); + + // 8bit 8x8 transpose pass 1 + dct_interleave8(p0, p2); // a0e0a1e1... + dct_interleave8(p1, p3); // c0g0c1g1... + + // transpose pass 2 + dct_interleave8(p0, p1); // a0c0e0g0... + dct_interleave8(p2, p3); // b0d0f0h0... + + // transpose pass 3 + dct_interleave8(p0, p2); // a0b0c0d0... + dct_interleave8(p1, p3); // a4b4c4d4... + + // store + _mm_storel_epi64((__m128i *) out, p0); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p0, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p2); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p2, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p1); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p1, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p3); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p3, 0x4e)); + } + +#undef dct_const +#undef dct_rot +#undef dct_widen +#undef dct_wadd +#undef dct_wsub +#undef dct_bfly32o +#undef dct_interleave8 +#undef dct_interleave16 +#undef dct_pass +} + +#endif // STBI_SSE2 + +#ifdef STBI_NEON + +// NEON integer IDCT. should produce bit-identical +// results to the generic C version. +static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) +{ + int16x8_t row0, row1, row2, row3, row4, row5, row6, row7; + + int16x4_t rot0_0 = vdup_n_s16(stbi__f2f(0.5411961f)); + int16x4_t rot0_1 = vdup_n_s16(stbi__f2f(-1.847759065f)); + int16x4_t rot0_2 = vdup_n_s16(stbi__f2f( 0.765366865f)); + int16x4_t rot1_0 = vdup_n_s16(stbi__f2f( 1.175875602f)); + int16x4_t rot1_1 = vdup_n_s16(stbi__f2f(-0.899976223f)); + int16x4_t rot1_2 = vdup_n_s16(stbi__f2f(-2.562915447f)); + int16x4_t rot2_0 = vdup_n_s16(stbi__f2f(-1.961570560f)); + int16x4_t rot2_1 = vdup_n_s16(stbi__f2f(-0.390180644f)); + int16x4_t rot3_0 = vdup_n_s16(stbi__f2f( 0.298631336f)); + int16x4_t rot3_1 = vdup_n_s16(stbi__f2f( 2.053119869f)); + int16x4_t rot3_2 = vdup_n_s16(stbi__f2f( 3.072711026f)); + int16x4_t rot3_3 = vdup_n_s16(stbi__f2f( 1.501321110f)); + +#define dct_long_mul(out, inq, coeff) \ + int32x4_t out##_l = vmull_s16(vget_low_s16(inq), coeff); \ + int32x4_t out##_h = vmull_s16(vget_high_s16(inq), coeff) + +#define dct_long_mac(out, acc, inq, coeff) \ + int32x4_t out##_l = vmlal_s16(acc##_l, vget_low_s16(inq), coeff); \ + int32x4_t out##_h = vmlal_s16(acc##_h, vget_high_s16(inq), coeff) + +#define dct_widen(out, inq) \ + int32x4_t out##_l = vshll_n_s16(vget_low_s16(inq), 12); \ + int32x4_t out##_h = vshll_n_s16(vget_high_s16(inq), 12) + +// wide add +#define dct_wadd(out, a, b) \ + int32x4_t out##_l = vaddq_s32(a##_l, b##_l); \ + int32x4_t out##_h = vaddq_s32(a##_h, b##_h) + +// wide sub +#define dct_wsub(out, a, b) \ + int32x4_t out##_l = vsubq_s32(a##_l, b##_l); \ + int32x4_t out##_h = vsubq_s32(a##_h, b##_h) + +// butterfly a/b, then shift using "shiftop" by "s" and pack +#define dct_bfly32o(out0,out1, a,b,shiftop,s) \ + { \ + dct_wadd(sum, a, b); \ + dct_wsub(dif, a, b); \ + out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \ + out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \ + } + +#define dct_pass(shiftop, shift) \ + { \ + /* even part */ \ + int16x8_t sum26 = vaddq_s16(row2, row6); \ + dct_long_mul(p1e, sum26, rot0_0); \ + dct_long_mac(t2e, p1e, row6, rot0_1); \ + dct_long_mac(t3e, p1e, row2, rot0_2); \ + int16x8_t sum04 = vaddq_s16(row0, row4); \ + int16x8_t dif04 = vsubq_s16(row0, row4); \ + dct_widen(t0e, sum04); \ + dct_widen(t1e, dif04); \ + dct_wadd(x0, t0e, t3e); \ + dct_wsub(x3, t0e, t3e); \ + dct_wadd(x1, t1e, t2e); \ + dct_wsub(x2, t1e, t2e); \ + /* odd part */ \ + int16x8_t sum15 = vaddq_s16(row1, row5); \ + int16x8_t sum17 = vaddq_s16(row1, row7); \ + int16x8_t sum35 = vaddq_s16(row3, row5); \ + int16x8_t sum37 = vaddq_s16(row3, row7); \ + int16x8_t sumodd = vaddq_s16(sum17, sum35); \ + dct_long_mul(p5o, sumodd, rot1_0); \ + dct_long_mac(p1o, p5o, sum17, rot1_1); \ + dct_long_mac(p2o, p5o, sum35, rot1_2); \ + dct_long_mul(p3o, sum37, rot2_0); \ + dct_long_mul(p4o, sum15, rot2_1); \ + dct_wadd(sump13o, p1o, p3o); \ + dct_wadd(sump24o, p2o, p4o); \ + dct_wadd(sump23o, p2o, p3o); \ + dct_wadd(sump14o, p1o, p4o); \ + dct_long_mac(x4, sump13o, row7, rot3_0); \ + dct_long_mac(x5, sump24o, row5, rot3_1); \ + dct_long_mac(x6, sump23o, row3, rot3_2); \ + dct_long_mac(x7, sump14o, row1, rot3_3); \ + dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \ + dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \ + dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \ + dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \ + } + + // load + row0 = vld1q_s16(data + 0*8); + row1 = vld1q_s16(data + 1*8); + row2 = vld1q_s16(data + 2*8); + row3 = vld1q_s16(data + 3*8); + row4 = vld1q_s16(data + 4*8); + row5 = vld1q_s16(data + 5*8); + row6 = vld1q_s16(data + 6*8); + row7 = vld1q_s16(data + 7*8); + + // add DC bias + row0 = vaddq_s16(row0, vsetq_lane_s16(1024, vdupq_n_s16(0), 0)); + + // column pass + dct_pass(vrshrn_n_s32, 10); + + // 16bit 8x8 transpose + { +// these three map to a single VTRN.16, VTRN.32, and VSWP, respectively. +// whether compilers actually get this is another story, sadly. +#define dct_trn16(x, y) { int16x8x2_t t = vtrnq_s16(x, y); x = t.val[0]; y = t.val[1]; } +#define dct_trn32(x, y) { int32x4x2_t t = vtrnq_s32(vreinterpretq_s32_s16(x), vreinterpretq_s32_s16(y)); x = vreinterpretq_s16_s32(t.val[0]); y = vreinterpretq_s16_s32(t.val[1]); } +#define dct_trn64(x, y) { int16x8_t x0 = x; int16x8_t y0 = y; x = vcombine_s16(vget_low_s16(x0), vget_low_s16(y0)); y = vcombine_s16(vget_high_s16(x0), vget_high_s16(y0)); } + + // pass 1 + dct_trn16(row0, row1); // a0b0a2b2a4b4a6b6 + dct_trn16(row2, row3); + dct_trn16(row4, row5); + dct_trn16(row6, row7); + + // pass 2 + dct_trn32(row0, row2); // a0b0c0d0a4b4c4d4 + dct_trn32(row1, row3); + dct_trn32(row4, row6); + dct_trn32(row5, row7); + + // pass 3 + dct_trn64(row0, row4); // a0b0c0d0e0f0g0h0 + dct_trn64(row1, row5); + dct_trn64(row2, row6); + dct_trn64(row3, row7); + +#undef dct_trn16 +#undef dct_trn32 +#undef dct_trn64 + } + + // row pass + // vrshrn_n_s32 only supports shifts up to 16, we need + // 17. so do a non-rounding shift of 16 first then follow + // up with a rounding shift by 1. + dct_pass(vshrn_n_s32, 16); + + { + // pack and round + uint8x8_t p0 = vqrshrun_n_s16(row0, 1); + uint8x8_t p1 = vqrshrun_n_s16(row1, 1); + uint8x8_t p2 = vqrshrun_n_s16(row2, 1); + uint8x8_t p3 = vqrshrun_n_s16(row3, 1); + uint8x8_t p4 = vqrshrun_n_s16(row4, 1); + uint8x8_t p5 = vqrshrun_n_s16(row5, 1); + uint8x8_t p6 = vqrshrun_n_s16(row6, 1); + uint8x8_t p7 = vqrshrun_n_s16(row7, 1); + + // again, these can translate into one instruction, but often don't. +#define dct_trn8_8(x, y) { uint8x8x2_t t = vtrn_u8(x, y); x = t.val[0]; y = t.val[1]; } +#define dct_trn8_16(x, y) { uint16x4x2_t t = vtrn_u16(vreinterpret_u16_u8(x), vreinterpret_u16_u8(y)); x = vreinterpret_u8_u16(t.val[0]); y = vreinterpret_u8_u16(t.val[1]); } +#define dct_trn8_32(x, y) { uint32x2x2_t t = vtrn_u32(vreinterpret_u32_u8(x), vreinterpret_u32_u8(y)); x = vreinterpret_u8_u32(t.val[0]); y = vreinterpret_u8_u32(t.val[1]); } + + // sadly can't use interleaved stores here since we only write + // 8 bytes to each scan line! + + // 8x8 8-bit transpose pass 1 + dct_trn8_8(p0, p1); + dct_trn8_8(p2, p3); + dct_trn8_8(p4, p5); + dct_trn8_8(p6, p7); + + // pass 2 + dct_trn8_16(p0, p2); + dct_trn8_16(p1, p3); + dct_trn8_16(p4, p6); + dct_trn8_16(p5, p7); + + // pass 3 + dct_trn8_32(p0, p4); + dct_trn8_32(p1, p5); + dct_trn8_32(p2, p6); + dct_trn8_32(p3, p7); + + // store + vst1_u8(out, p0); out += out_stride; + vst1_u8(out, p1); out += out_stride; + vst1_u8(out, p2); out += out_stride; + vst1_u8(out, p3); out += out_stride; + vst1_u8(out, p4); out += out_stride; + vst1_u8(out, p5); out += out_stride; + vst1_u8(out, p6); out += out_stride; + vst1_u8(out, p7); + +#undef dct_trn8_8 +#undef dct_trn8_16 +#undef dct_trn8_32 + } + +#undef dct_long_mul +#undef dct_long_mac +#undef dct_widen +#undef dct_wadd +#undef dct_wsub +#undef dct_bfly32o +#undef dct_pass +} + +#endif // STBI_NEON + +#define STBI__MARKER_none 0xff +// if there's a pending marker from the entropy stream, return that +// otherwise, fetch from the stream and get a marker. if there's no +// marker, return 0xff, which is never a valid marker value +static stbi_uc stbi__get_marker(stbi__jpeg *j) +{ + stbi_uc x; + if (j->marker != STBI__MARKER_none) { x = j->marker; j->marker = STBI__MARKER_none; return x; } + x = stbi__get8(j->s); + if (x != 0xff) return STBI__MARKER_none; + while (x == 0xff) + x = stbi__get8(j->s); // consume repeated 0xff fill bytes + return x; +} + +// in each scan, we'll have scan_n components, and the order +// of the components is specified by order[] +#define STBI__RESTART(x) ((x) >= 0xd0 && (x) <= 0xd7) + +// after a restart interval, stbi__jpeg_reset the entropy decoder and +// the dc prediction +static void stbi__jpeg_reset(stbi__jpeg *j) +{ + j->code_bits = 0; + j->code_buffer = 0; + j->nomore = 0; + j->img_comp[0].dc_pred = j->img_comp[1].dc_pred = j->img_comp[2].dc_pred = j->img_comp[3].dc_pred = 0; + j->marker = STBI__MARKER_none; + j->todo = j->restart_interval ? j->restart_interval : 0x7fffffff; + j->eob_run = 0; + // no more than 1<<31 MCUs if no restart_interal? that's plenty safe, + // since we don't even allow 1<<30 pixels +} + +static int stbi__parse_entropy_coded_data(stbi__jpeg *z) +{ + stbi__jpeg_reset(z); + if (!z->progressive) { + if (z->scan_n == 1) { + int i,j; + STBI_SIMD_ALIGN(short, data[64]); + int n = z->order[0]; + // non-interleaved data, we just need to process one block at a time, + // in trivial scanline order + // number of blocks to do just depends on how many actual "pixels" this + // component has, independent of interleaved MCU blocking and such + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); + // every data block is an MCU, so countdown the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + // if it's NOT a restart, then just bail, so we get corrupt data + // rather than no data + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } else { // interleaved + int i,j,k,x,y; + STBI_SIMD_ALIGN(short, data[64]); + for (j=0; j < z->img_mcu_y; ++j) { + for (i=0; i < z->img_mcu_x; ++i) { + // scan an interleaved mcu... process scan_n components in order + for (k=0; k < z->scan_n; ++k) { + int n = z->order[k]; + // scan out an mcu's worth of this component; that's just determined + // by the basic H and V specified for the component + for (y=0; y < z->img_comp[n].v; ++y) { + for (x=0; x < z->img_comp[n].h; ++x) { + int x2 = (i*z->img_comp[n].h + x)*8; + int y2 = (j*z->img_comp[n].v + y)*8; + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*y2+x2, z->img_comp[n].w2, data); + } + } + } + // after all interleaved components, that's an interleaved MCU, + // so now count down the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } + } else { + if (z->scan_n == 1) { + int i,j; + int n = z->order[0]; + // non-interleaved data, we just need to process one block at a time, + // in trivial scanline order + // number of blocks to do just depends on how many actual "pixels" this + // component has, independent of interleaved MCU blocking and such + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); + if (z->spec_start == 0) { + if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) + return 0; + } else { + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block_prog_ac(z, data, &z->huff_ac[ha], z->fast_ac[ha])) + return 0; + } + // every data block is an MCU, so countdown the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } else { // interleaved + int i,j,k,x,y; + for (j=0; j < z->img_mcu_y; ++j) { + for (i=0; i < z->img_mcu_x; ++i) { + // scan an interleaved mcu... process scan_n components in order + for (k=0; k < z->scan_n; ++k) { + int n = z->order[k]; + // scan out an mcu's worth of this component; that's just determined + // by the basic H and V specified for the component + for (y=0; y < z->img_comp[n].v; ++y) { + for (x=0; x < z->img_comp[n].h; ++x) { + int x2 = (i*z->img_comp[n].h + x); + int y2 = (j*z->img_comp[n].v + y); + short *data = z->img_comp[n].coeff + 64 * (x2 + y2 * z->img_comp[n].coeff_w); + if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) + return 0; + } + } + } + // after all interleaved components, that's an interleaved MCU, + // so now count down the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } + } +} + +static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant) +{ + int i; + for (i=0; i < 64; ++i) + data[i] *= dequant[i]; +} + +static void stbi__jpeg_finish(stbi__jpeg *z) +{ + if (z->progressive) { + // dequantize and idct the data + int i,j,n; + for (n=0; n < z->s->img_n; ++n) { + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); + stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]); + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); + } + } + } + } +} + +static int stbi__process_marker(stbi__jpeg *z, int m) +{ + int L; + switch (m) { + case STBI__MARKER_none: // no marker found + return stbi__err("expected marker","Corrupt JPEG"); + + case 0xDD: // DRI - specify restart interval + if (stbi__get16be(z->s) != 4) return stbi__err("bad DRI len","Corrupt JPEG"); + z->restart_interval = stbi__get16be(z->s); + return 1; + + case 0xDB: // DQT - define quantization table + L = stbi__get16be(z->s)-2; + while (L > 0) { + int q = stbi__get8(z->s); + int p = q >> 4, sixteen = (p != 0); + int t = q & 15,i; + if (p != 0 && p != 1) return stbi__err("bad DQT type","Corrupt JPEG"); + if (t > 3) return stbi__err("bad DQT table","Corrupt JPEG"); + + for (i=0; i < 64; ++i) + z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(z->s)); + L -= (sixteen ? 129 : 65); + } + return L==0; + + case 0xC4: // DHT - define huffman table + L = stbi__get16be(z->s)-2; + while (L > 0) { + stbi_uc *v; + int sizes[16],i,n=0; + int q = stbi__get8(z->s); + int tc = q >> 4; + int th = q & 15; + if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG"); + for (i=0; i < 16; ++i) { + sizes[i] = stbi__get8(z->s); + n += sizes[i]; + } + if(n > 256) return stbi__err("bad DHT header","Corrupt JPEG"); // Loop over i < n would write past end of values! + L -= 17; + if (tc == 0) { + if (!stbi__build_huffman(z->huff_dc+th, sizes)) return 0; + v = z->huff_dc[th].values; + } else { + if (!stbi__build_huffman(z->huff_ac+th, sizes)) return 0; + v = z->huff_ac[th].values; + } + for (i=0; i < n; ++i) + v[i] = stbi__get8(z->s); + if (tc != 0) + stbi__build_fast_ac(z->fast_ac[th], z->huff_ac + th); + L -= n; + } + return L==0; + } + + // check for comment block or APP blocks + if ((m >= 0xE0 && m <= 0xEF) || m == 0xFE) { + L = stbi__get16be(z->s); + if (L < 2) { + if (m == 0xFE) + return stbi__err("bad COM len","Corrupt JPEG"); + else + return stbi__err("bad APP len","Corrupt JPEG"); + } + L -= 2; + + if (m == 0xE0 && L >= 5) { // JFIF APP0 segment + static const unsigned char tag[5] = {'J','F','I','F','\0'}; + int ok = 1; + int i; + for (i=0; i < 5; ++i) + if (stbi__get8(z->s) != tag[i]) + ok = 0; + L -= 5; + if (ok) + z->jfif = 1; + } else if (m == 0xEE && L >= 12) { // Adobe APP14 segment + static const unsigned char tag[6] = {'A','d','o','b','e','\0'}; + int ok = 1; + int i; + for (i=0; i < 6; ++i) + if (stbi__get8(z->s) != tag[i]) + ok = 0; + L -= 6; + if (ok) { + stbi__get8(z->s); // version + stbi__get16be(z->s); // flags0 + stbi__get16be(z->s); // flags1 + z->app14_color_transform = stbi__get8(z->s); // color transform + L -= 6; + } + } + + stbi__skip(z->s, L); + return 1; + } + + return stbi__err("unknown marker","Corrupt JPEG"); +} + +// after we see SOS +static int stbi__process_scan_header(stbi__jpeg *z) +{ + int i; + int Ls = stbi__get16be(z->s); + z->scan_n = stbi__get8(z->s); + if (z->scan_n < 1 || z->scan_n > 4 || z->scan_n > (int) z->s->img_n) return stbi__err("bad SOS component count","Corrupt JPEG"); + if (Ls != 6+2*z->scan_n) return stbi__err("bad SOS len","Corrupt JPEG"); + for (i=0; i < z->scan_n; ++i) { + int id = stbi__get8(z->s), which; + int q = stbi__get8(z->s); + for (which = 0; which < z->s->img_n; ++which) + if (z->img_comp[which].id == id) + break; + if (which == z->s->img_n) return 0; // no match + z->img_comp[which].hd = q >> 4; if (z->img_comp[which].hd > 3) return stbi__err("bad DC huff","Corrupt JPEG"); + z->img_comp[which].ha = q & 15; if (z->img_comp[which].ha > 3) return stbi__err("bad AC huff","Corrupt JPEG"); + z->order[i] = which; + } + + { + int aa; + z->spec_start = stbi__get8(z->s); + z->spec_end = stbi__get8(z->s); // should be 63, but might be 0 + aa = stbi__get8(z->s); + z->succ_high = (aa >> 4); + z->succ_low = (aa & 15); + if (z->progressive) { + if (z->spec_start > 63 || z->spec_end > 63 || z->spec_start > z->spec_end || z->succ_high > 13 || z->succ_low > 13) + return stbi__err("bad SOS", "Corrupt JPEG"); + } else { + if (z->spec_start != 0) return stbi__err("bad SOS","Corrupt JPEG"); + if (z->succ_high != 0 || z->succ_low != 0) return stbi__err("bad SOS","Corrupt JPEG"); + z->spec_end = 63; + } + } + + return 1; +} + +static int stbi__free_jpeg_components(stbi__jpeg *z, int ncomp, int why) +{ + int i; + for (i=0; i < ncomp; ++i) { + if (z->img_comp[i].raw_data) { + STBI_FREE(z->img_comp[i].raw_data); + z->img_comp[i].raw_data = NULL; + z->img_comp[i].data = NULL; + } + if (z->img_comp[i].raw_coeff) { + STBI_FREE(z->img_comp[i].raw_coeff); + z->img_comp[i].raw_coeff = 0; + z->img_comp[i].coeff = 0; + } + if (z->img_comp[i].linebuf) { + STBI_FREE(z->img_comp[i].linebuf); + z->img_comp[i].linebuf = NULL; + } + } + return why; +} + +static int stbi__process_frame_header(stbi__jpeg *z, int scan) +{ + stbi__context *s = z->s; + int Lf,p,i,q, h_max=1,v_max=1,c; + Lf = stbi__get16be(s); if (Lf < 11) return stbi__err("bad SOF len","Corrupt JPEG"); // JPEG + p = stbi__get8(s); if (p != 8) return stbi__err("only 8-bit","JPEG format not supported: 8-bit only"); // JPEG baseline + s->img_y = stbi__get16be(s); if (s->img_y == 0) return stbi__err("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG + s->img_x = stbi__get16be(s); if (s->img_x == 0) return stbi__err("0 width","Corrupt JPEG"); // JPEG requires + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + c = stbi__get8(s); + if (c != 3 && c != 1 && c != 4) return stbi__err("bad component count","Corrupt JPEG"); + s->img_n = c; + for (i=0; i < c; ++i) { + z->img_comp[i].data = NULL; + z->img_comp[i].linebuf = NULL; + } + + if (Lf != 8+3*s->img_n) return stbi__err("bad SOF len","Corrupt JPEG"); + + z->rgb = 0; + for (i=0; i < s->img_n; ++i) { + static const unsigned char rgb[3] = { 'R', 'G', 'B' }; + z->img_comp[i].id = stbi__get8(s); + if (s->img_n == 3 && z->img_comp[i].id == rgb[i]) + ++z->rgb; + q = stbi__get8(s); + z->img_comp[i].h = (q >> 4); if (!z->img_comp[i].h || z->img_comp[i].h > 4) return stbi__err("bad H","Corrupt JPEG"); + z->img_comp[i].v = q & 15; if (!z->img_comp[i].v || z->img_comp[i].v > 4) return stbi__err("bad V","Corrupt JPEG"); + z->img_comp[i].tq = stbi__get8(s); if (z->img_comp[i].tq > 3) return stbi__err("bad TQ","Corrupt JPEG"); + } + + if (scan != STBI__SCAN_load) return 1; + + if (!stbi__mad3sizes_valid(s->img_x, s->img_y, s->img_n, 0)) return stbi__err("too large", "Image too large to decode"); + + for (i=0; i < s->img_n; ++i) { + if (z->img_comp[i].h > h_max) h_max = z->img_comp[i].h; + if (z->img_comp[i].v > v_max) v_max = z->img_comp[i].v; + } + + // check that plane subsampling factors are integer ratios; our resamplers can't deal with fractional ratios + // and I've never seen a non-corrupted JPEG file actually use them + for (i=0; i < s->img_n; ++i) { + if (h_max % z->img_comp[i].h != 0) return stbi__err("bad H","Corrupt JPEG"); + if (v_max % z->img_comp[i].v != 0) return stbi__err("bad V","Corrupt JPEG"); + } + + // compute interleaved mcu info + z->img_h_max = h_max; + z->img_v_max = v_max; + z->img_mcu_w = h_max * 8; + z->img_mcu_h = v_max * 8; + // these sizes can't be more than 17 bits + z->img_mcu_x = (s->img_x + z->img_mcu_w-1) / z->img_mcu_w; + z->img_mcu_y = (s->img_y + z->img_mcu_h-1) / z->img_mcu_h; + + for (i=0; i < s->img_n; ++i) { + // number of effective pixels (e.g. for non-interleaved MCU) + z->img_comp[i].x = (s->img_x * z->img_comp[i].h + h_max-1) / h_max; + z->img_comp[i].y = (s->img_y * z->img_comp[i].v + v_max-1) / v_max; + // to simplify generation, we'll allocate enough memory to decode + // the bogus oversized data from using interleaved MCUs and their + // big blocks (e.g. a 16x16 iMCU on an image of width 33); we won't + // discard the extra data until colorspace conversion + // + // img_mcu_x, img_mcu_y: <=17 bits; comp[i].h and .v are <=4 (checked earlier) + // so these muls can't overflow with 32-bit ints (which we require) + z->img_comp[i].w2 = z->img_mcu_x * z->img_comp[i].h * 8; + z->img_comp[i].h2 = z->img_mcu_y * z->img_comp[i].v * 8; + z->img_comp[i].coeff = 0; + z->img_comp[i].raw_coeff = 0; + z->img_comp[i].linebuf = NULL; + z->img_comp[i].raw_data = stbi__malloc_mad2(z->img_comp[i].w2, z->img_comp[i].h2, 15); + if (z->img_comp[i].raw_data == NULL) + return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); + // align blocks for idct using mmx/sse + z->img_comp[i].data = (stbi_uc*) (((size_t) z->img_comp[i].raw_data + 15) & ~15); + if (z->progressive) { + // w2, h2 are multiples of 8 (see above) + z->img_comp[i].coeff_w = z->img_comp[i].w2 / 8; + z->img_comp[i].coeff_h = z->img_comp[i].h2 / 8; + z->img_comp[i].raw_coeff = stbi__malloc_mad3(z->img_comp[i].w2, z->img_comp[i].h2, sizeof(short), 15); + if (z->img_comp[i].raw_coeff == NULL) + return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); + z->img_comp[i].coeff = (short*) (((size_t) z->img_comp[i].raw_coeff + 15) & ~15); + } + } + + return 1; +} + +// use comparisons since in some cases we handle more than one case (e.g. SOF) +#define stbi__DNL(x) ((x) == 0xdc) +#define stbi__SOI(x) ((x) == 0xd8) +#define stbi__EOI(x) ((x) == 0xd9) +#define stbi__SOF(x) ((x) == 0xc0 || (x) == 0xc1 || (x) == 0xc2) +#define stbi__SOS(x) ((x) == 0xda) + +#define stbi__SOF_progressive(x) ((x) == 0xc2) + +static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan) +{ + int m; + z->jfif = 0; + z->app14_color_transform = -1; // valid values are 0,1,2 + z->marker = STBI__MARKER_none; // initialize cached marker to empty + m = stbi__get_marker(z); + if (!stbi__SOI(m)) return stbi__err("no SOI","Corrupt JPEG"); + if (scan == STBI__SCAN_type) return 1; + m = stbi__get_marker(z); + while (!stbi__SOF(m)) { + if (!stbi__process_marker(z,m)) return 0; + m = stbi__get_marker(z); + while (m == STBI__MARKER_none) { + // some files have extra padding after their blocks, so ok, we'll scan + if (stbi__at_eof(z->s)) return stbi__err("no SOF", "Corrupt JPEG"); + m = stbi__get_marker(z); + } + } + z->progressive = stbi__SOF_progressive(m); + if (!stbi__process_frame_header(z, scan)) return 0; + return 1; +} + +static stbi_uc stbi__skip_jpeg_junk_at_end(stbi__jpeg *j) +{ + // some JPEGs have junk at end, skip over it but if we find what looks + // like a valid marker, resume there + while (!stbi__at_eof(j->s)) { + stbi_uc x = stbi__get8(j->s); + while (x == 0xff) { // might be a marker + if (stbi__at_eof(j->s)) return STBI__MARKER_none; + x = stbi__get8(j->s); + if (x != 0x00 && x != 0xff) { + // not a stuffed zero or lead-in to another marker, looks + // like an actual marker, return it + return x; + } + // stuffed zero has x=0 now which ends the loop, meaning we go + // back to regular scan loop. + // repeated 0xff keeps trying to read the next byte of the marker. + } + } + return STBI__MARKER_none; +} + +// decode image to YCbCr format +static int stbi__decode_jpeg_image(stbi__jpeg *j) +{ + int m; + for (m = 0; m < 4; m++) { + j->img_comp[m].raw_data = NULL; + j->img_comp[m].raw_coeff = NULL; + } + j->restart_interval = 0; + if (!stbi__decode_jpeg_header(j, STBI__SCAN_load)) return 0; + m = stbi__get_marker(j); + while (!stbi__EOI(m)) { + if (stbi__SOS(m)) { + if (!stbi__process_scan_header(j)) return 0; + if (!stbi__parse_entropy_coded_data(j)) return 0; + if (j->marker == STBI__MARKER_none ) { + j->marker = stbi__skip_jpeg_junk_at_end(j); + // if we reach eof without hitting a marker, stbi__get_marker() below will fail and we'll eventually return 0 + } + m = stbi__get_marker(j); + if (STBI__RESTART(m)) + m = stbi__get_marker(j); + } else if (stbi__DNL(m)) { + int Ld = stbi__get16be(j->s); + stbi__uint32 NL = stbi__get16be(j->s); + if (Ld != 4) return stbi__err("bad DNL len", "Corrupt JPEG"); + if (NL != j->s->img_y) return stbi__err("bad DNL height", "Corrupt JPEG"); + m = stbi__get_marker(j); + } else { + if (!stbi__process_marker(j, m)) return 1; + m = stbi__get_marker(j); + } + } + if (j->progressive) + stbi__jpeg_finish(j); + return 1; +} + +// static jfif-centered resampling (across block boundaries) + +typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1, + int w, int hs); + +#define stbi__div4(x) ((stbi_uc) ((x) >> 2)) + +static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + STBI_NOTUSED(out); + STBI_NOTUSED(in_far); + STBI_NOTUSED(w); + STBI_NOTUSED(hs); + return in_near; +} + +static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate two samples vertically for every one in input + int i; + STBI_NOTUSED(hs); + for (i=0; i < w; ++i) + out[i] = stbi__div4(3*in_near[i] + in_far[i] + 2); + return out; +} + +static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate two samples horizontally for every one in input + int i; + stbi_uc *input = in_near; + + if (w == 1) { + // if only one sample, can't do any interpolation + out[0] = out[1] = input[0]; + return out; + } + + out[0] = input[0]; + out[1] = stbi__div4(input[0]*3 + input[1] + 2); + for (i=1; i < w-1; ++i) { + int n = 3*input[i]+2; + out[i*2+0] = stbi__div4(n+input[i-1]); + out[i*2+1] = stbi__div4(n+input[i+1]); + } + out[i*2+0] = stbi__div4(input[w-2]*3 + input[w-1] + 2); + out[i*2+1] = input[w-1]; + + STBI_NOTUSED(in_far); + STBI_NOTUSED(hs); + + return out; +} + +#define stbi__div16(x) ((stbi_uc) ((x) >> 4)) + +static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate 2x2 samples for every one in input + int i,t0,t1; + if (w == 1) { + out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); + return out; + } + + t1 = 3*in_near[0] + in_far[0]; + out[0] = stbi__div4(t1+2); + for (i=1; i < w; ++i) { + t0 = t1; + t1 = 3*in_near[i]+in_far[i]; + out[i*2-1] = stbi__div16(3*t0 + t1 + 8); + out[i*2 ] = stbi__div16(3*t1 + t0 + 8); + } + out[w*2-1] = stbi__div4(t1+2); + + STBI_NOTUSED(hs); + + return out; +} + +#if defined(STBI_SSE2) || defined(STBI_NEON) +static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate 2x2 samples for every one in input + int i=0,t0,t1; + + if (w == 1) { + out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); + return out; + } + + t1 = 3*in_near[0] + in_far[0]; + // process groups of 8 pixels for as long as we can. + // note we can't handle the last pixel in a row in this loop + // because we need to handle the filter boundary conditions. + for (; i < ((w-1) & ~7); i += 8) { +#if defined(STBI_SSE2) + // load and perform the vertical filtering pass + // this uses 3*x + y = 4*x + (y - x) + __m128i zero = _mm_setzero_si128(); + __m128i farb = _mm_loadl_epi64((__m128i *) (in_far + i)); + __m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i)); + __m128i farw = _mm_unpacklo_epi8(farb, zero); + __m128i nearw = _mm_unpacklo_epi8(nearb, zero); + __m128i diff = _mm_sub_epi16(farw, nearw); + __m128i nears = _mm_slli_epi16(nearw, 2); + __m128i curr = _mm_add_epi16(nears, diff); // current row + + // horizontal filter works the same based on shifted vers of current + // row. "prev" is current row shifted right by 1 pixel; we need to + // insert the previous pixel value (from t1). + // "next" is current row shifted left by 1 pixel, with first pixel + // of next block of 8 pixels added in. + __m128i prv0 = _mm_slli_si128(curr, 2); + __m128i nxt0 = _mm_srli_si128(curr, 2); + __m128i prev = _mm_insert_epi16(prv0, t1, 0); + __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7); + + // horizontal filter, polyphase implementation since it's convenient: + // even pixels = 3*cur + prev = cur*4 + (prev - cur) + // odd pixels = 3*cur + next = cur*4 + (next - cur) + // note the shared term. + __m128i bias = _mm_set1_epi16(8); + __m128i curs = _mm_slli_epi16(curr, 2); + __m128i prvd = _mm_sub_epi16(prev, curr); + __m128i nxtd = _mm_sub_epi16(next, curr); + __m128i curb = _mm_add_epi16(curs, bias); + __m128i even = _mm_add_epi16(prvd, curb); + __m128i odd = _mm_add_epi16(nxtd, curb); + + // interleave even and odd pixels, then undo scaling. + __m128i int0 = _mm_unpacklo_epi16(even, odd); + __m128i int1 = _mm_unpackhi_epi16(even, odd); + __m128i de0 = _mm_srli_epi16(int0, 4); + __m128i de1 = _mm_srli_epi16(int1, 4); + + // pack and write output + __m128i outv = _mm_packus_epi16(de0, de1); + _mm_storeu_si128((__m128i *) (out + i*2), outv); +#elif defined(STBI_NEON) + // load and perform the vertical filtering pass + // this uses 3*x + y = 4*x + (y - x) + uint8x8_t farb = vld1_u8(in_far + i); + uint8x8_t nearb = vld1_u8(in_near + i); + int16x8_t diff = vreinterpretq_s16_u16(vsubl_u8(farb, nearb)); + int16x8_t nears = vreinterpretq_s16_u16(vshll_n_u8(nearb, 2)); + int16x8_t curr = vaddq_s16(nears, diff); // current row + + // horizontal filter works the same based on shifted vers of current + // row. "prev" is current row shifted right by 1 pixel; we need to + // insert the previous pixel value (from t1). + // "next" is current row shifted left by 1 pixel, with first pixel + // of next block of 8 pixels added in. + int16x8_t prv0 = vextq_s16(curr, curr, 7); + int16x8_t nxt0 = vextq_s16(curr, curr, 1); + int16x8_t prev = vsetq_lane_s16(t1, prv0, 0); + int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7); + + // horizontal filter, polyphase implementation since it's convenient: + // even pixels = 3*cur + prev = cur*4 + (prev - cur) + // odd pixels = 3*cur + next = cur*4 + (next - cur) + // note the shared term. + int16x8_t curs = vshlq_n_s16(curr, 2); + int16x8_t prvd = vsubq_s16(prev, curr); + int16x8_t nxtd = vsubq_s16(next, curr); + int16x8_t even = vaddq_s16(curs, prvd); + int16x8_t odd = vaddq_s16(curs, nxtd); + + // undo scaling and round, then store with even/odd phases interleaved + uint8x8x2_t o; + o.val[0] = vqrshrun_n_s16(even, 4); + o.val[1] = vqrshrun_n_s16(odd, 4); + vst2_u8(out + i*2, o); +#endif + + // "previous" value for next iter + t1 = 3*in_near[i+7] + in_far[i+7]; + } + + t0 = t1; + t1 = 3*in_near[i] + in_far[i]; + out[i*2] = stbi__div16(3*t1 + t0 + 8); + + for (++i; i < w; ++i) { + t0 = t1; + t1 = 3*in_near[i]+in_far[i]; + out[i*2-1] = stbi__div16(3*t0 + t1 + 8); + out[i*2 ] = stbi__div16(3*t1 + t0 + 8); + } + out[w*2-1] = stbi__div4(t1+2); + + STBI_NOTUSED(hs); + + return out; +} +#endif + +static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // resample with nearest-neighbor + int i,j; + STBI_NOTUSED(in_far); + for (i=0; i < w; ++i) + for (j=0; j < hs; ++j) + out[i*hs+j] = in_near[i]; + return out; +} + +// this is a reduced-precision calculation of YCbCr-to-RGB introduced +// to make sure the code produces the same results in both SIMD and scalar +#define stbi__float2fixed(x) (((int) ((x) * 4096.0f + 0.5f)) << 8) +static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step) +{ + int i; + for (i=0; i < count; ++i) { + int y_fixed = (y[i] << 20) + (1<<19); // rounding + int r,g,b; + int cr = pcr[i] - 128; + int cb = pcb[i] - 128; + r = y_fixed + cr* stbi__float2fixed(1.40200f); + g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); + b = y_fixed + cb* stbi__float2fixed(1.77200f); + r >>= 20; + g >>= 20; + b >>= 20; + if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } + if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } + if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } + out[0] = (stbi_uc)r; + out[1] = (stbi_uc)g; + out[2] = (stbi_uc)b; + out[3] = 255; + out += step; + } +} + +#if defined(STBI_SSE2) || defined(STBI_NEON) +static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi_uc const *pcb, stbi_uc const *pcr, int count, int step) +{ + int i = 0; + +#ifdef STBI_SSE2 + // step == 3 is pretty ugly on the final interleave, and i'm not convinced + // it's useful in practice (you wouldn't use it for textures, for example). + // so just accelerate step == 4 case. + if (step == 4) { + // this is a fairly straightforward implementation and not super-optimized. + __m128i signflip = _mm_set1_epi8(-0x80); + __m128i cr_const0 = _mm_set1_epi16( (short) ( 1.40200f*4096.0f+0.5f)); + __m128i cr_const1 = _mm_set1_epi16( - (short) ( 0.71414f*4096.0f+0.5f)); + __m128i cb_const0 = _mm_set1_epi16( - (short) ( 0.34414f*4096.0f+0.5f)); + __m128i cb_const1 = _mm_set1_epi16( (short) ( 1.77200f*4096.0f+0.5f)); + __m128i y_bias = _mm_set1_epi8((char) (unsigned char) 128); + __m128i xw = _mm_set1_epi16(255); // alpha channel + + for (; i+7 < count; i += 8) { + // load + __m128i y_bytes = _mm_loadl_epi64((__m128i *) (y+i)); + __m128i cr_bytes = _mm_loadl_epi64((__m128i *) (pcr+i)); + __m128i cb_bytes = _mm_loadl_epi64((__m128i *) (pcb+i)); + __m128i cr_biased = _mm_xor_si128(cr_bytes, signflip); // -128 + __m128i cb_biased = _mm_xor_si128(cb_bytes, signflip); // -128 + + // unpack to short (and left-shift cr, cb by 8) + __m128i yw = _mm_unpacklo_epi8(y_bias, y_bytes); + __m128i crw = _mm_unpacklo_epi8(_mm_setzero_si128(), cr_biased); + __m128i cbw = _mm_unpacklo_epi8(_mm_setzero_si128(), cb_biased); + + // color transform + __m128i yws = _mm_srli_epi16(yw, 4); + __m128i cr0 = _mm_mulhi_epi16(cr_const0, crw); + __m128i cb0 = _mm_mulhi_epi16(cb_const0, cbw); + __m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1); + __m128i cr1 = _mm_mulhi_epi16(crw, cr_const1); + __m128i rws = _mm_add_epi16(cr0, yws); + __m128i gwt = _mm_add_epi16(cb0, yws); + __m128i bws = _mm_add_epi16(yws, cb1); + __m128i gws = _mm_add_epi16(gwt, cr1); + + // descale + __m128i rw = _mm_srai_epi16(rws, 4); + __m128i bw = _mm_srai_epi16(bws, 4); + __m128i gw = _mm_srai_epi16(gws, 4); + + // back to byte, set up for transpose + __m128i brb = _mm_packus_epi16(rw, bw); + __m128i gxb = _mm_packus_epi16(gw, xw); + + // transpose to interleave channels + __m128i t0 = _mm_unpacklo_epi8(brb, gxb); + __m128i t1 = _mm_unpackhi_epi8(brb, gxb); + __m128i o0 = _mm_unpacklo_epi16(t0, t1); + __m128i o1 = _mm_unpackhi_epi16(t0, t1); + + // store + _mm_storeu_si128((__m128i *) (out + 0), o0); + _mm_storeu_si128((__m128i *) (out + 16), o1); + out += 32; + } + } +#endif + +#ifdef STBI_NEON + // in this version, step=3 support would be easy to add. but is there demand? + if (step == 4) { + // this is a fairly straightforward implementation and not super-optimized. + uint8x8_t signflip = vdup_n_u8(0x80); + int16x8_t cr_const0 = vdupq_n_s16( (short) ( 1.40200f*4096.0f+0.5f)); + int16x8_t cr_const1 = vdupq_n_s16( - (short) ( 0.71414f*4096.0f+0.5f)); + int16x8_t cb_const0 = vdupq_n_s16( - (short) ( 0.34414f*4096.0f+0.5f)); + int16x8_t cb_const1 = vdupq_n_s16( (short) ( 1.77200f*4096.0f+0.5f)); + + for (; i+7 < count; i += 8) { + // load + uint8x8_t y_bytes = vld1_u8(y + i); + uint8x8_t cr_bytes = vld1_u8(pcr + i); + uint8x8_t cb_bytes = vld1_u8(pcb + i); + int8x8_t cr_biased = vreinterpret_s8_u8(vsub_u8(cr_bytes, signflip)); + int8x8_t cb_biased = vreinterpret_s8_u8(vsub_u8(cb_bytes, signflip)); + + // expand to s16 + int16x8_t yws = vreinterpretq_s16_u16(vshll_n_u8(y_bytes, 4)); + int16x8_t crw = vshll_n_s8(cr_biased, 7); + int16x8_t cbw = vshll_n_s8(cb_biased, 7); + + // color transform + int16x8_t cr0 = vqdmulhq_s16(crw, cr_const0); + int16x8_t cb0 = vqdmulhq_s16(cbw, cb_const0); + int16x8_t cr1 = vqdmulhq_s16(crw, cr_const1); + int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1); + int16x8_t rws = vaddq_s16(yws, cr0); + int16x8_t gws = vaddq_s16(vaddq_s16(yws, cb0), cr1); + int16x8_t bws = vaddq_s16(yws, cb1); + + // undo scaling, round, convert to byte + uint8x8x4_t o; + o.val[0] = vqrshrun_n_s16(rws, 4); + o.val[1] = vqrshrun_n_s16(gws, 4); + o.val[2] = vqrshrun_n_s16(bws, 4); + o.val[3] = vdup_n_u8(255); + + // store, interleaving r/g/b/a + vst4_u8(out, o); + out += 8*4; + } + } +#endif + + for (; i < count; ++i) { + int y_fixed = (y[i] << 20) + (1<<19); // rounding + int r,g,b; + int cr = pcr[i] - 128; + int cb = pcb[i] - 128; + r = y_fixed + cr* stbi__float2fixed(1.40200f); + g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); + b = y_fixed + cb* stbi__float2fixed(1.77200f); + r >>= 20; + g >>= 20; + b >>= 20; + if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } + if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } + if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } + out[0] = (stbi_uc)r; + out[1] = (stbi_uc)g; + out[2] = (stbi_uc)b; + out[3] = 255; + out += step; + } +} +#endif + +// set up the kernels +static void stbi__setup_jpeg(stbi__jpeg *j) +{ + j->idct_block_kernel = stbi__idct_block; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_row; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2; + +#ifdef STBI_SSE2 + if (stbi__sse2_available()) { + j->idct_block_kernel = stbi__idct_simd; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; + } +#endif + +#ifdef STBI_NEON + j->idct_block_kernel = stbi__idct_simd; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; +#endif +} + +// clean up the temporary component buffers +static void stbi__cleanup_jpeg(stbi__jpeg *j) +{ + stbi__free_jpeg_components(j, j->s->img_n, 0); +} + +typedef struct +{ + resample_row_func resample; + stbi_uc *line0,*line1; + int hs,vs; // expansion factor in each axis + int w_lores; // horizontal pixels pre-expansion + int ystep; // how far through vertical expansion we are + int ypos; // which pre-expansion row we're on +} stbi__resample; + +// fast 0..255 * 0..255 => 0..255 rounded multiplication +static stbi_uc stbi__blinn_8x8(stbi_uc x, stbi_uc y) +{ + unsigned int t = x*y + 128; + return (stbi_uc) ((t + (t >>8)) >> 8); +} + +static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp, int req_comp) +{ + int n, decode_n, is_rgb; + z->s->img_n = 0; // make stbi__cleanup_jpeg safe + + // validate req_comp + if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); + + // load a jpeg image from whichever source, but leave in YCbCr format + if (!stbi__decode_jpeg_image(z)) { stbi__cleanup_jpeg(z); return NULL; } + + // determine actual number of components to generate + n = req_comp ? req_comp : z->s->img_n >= 3 ? 3 : 1; + + is_rgb = z->s->img_n == 3 && (z->rgb == 3 || (z->app14_color_transform == 0 && !z->jfif)); + + if (z->s->img_n == 3 && n < 3 && !is_rgb) + decode_n = 1; + else + decode_n = z->s->img_n; + + // nothing to do if no components requested; check this now to avoid + // accessing uninitialized coutput[0] later + if (decode_n <= 0) { stbi__cleanup_jpeg(z); return NULL; } + + // resample and color-convert + { + int k; + unsigned int i,j; + stbi_uc *output; + stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL }; + + stbi__resample res_comp[4]; + + for (k=0; k < decode_n; ++k) { + stbi__resample *r = &res_comp[k]; + + // allocate line buffer big enough for upsampling off the edges + // with upsample factor of 4 + z->img_comp[k].linebuf = (stbi_uc *) stbi__malloc(z->s->img_x + 3); + if (!z->img_comp[k].linebuf) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } + + r->hs = z->img_h_max / z->img_comp[k].h; + r->vs = z->img_v_max / z->img_comp[k].v; + r->ystep = r->vs >> 1; + r->w_lores = (z->s->img_x + r->hs-1) / r->hs; + r->ypos = 0; + r->line0 = r->line1 = z->img_comp[k].data; + + if (r->hs == 1 && r->vs == 1) r->resample = resample_row_1; + else if (r->hs == 1 && r->vs == 2) r->resample = stbi__resample_row_v_2; + else if (r->hs == 2 && r->vs == 1) r->resample = stbi__resample_row_h_2; + else if (r->hs == 2 && r->vs == 2) r->resample = z->resample_row_hv_2_kernel; + else r->resample = stbi__resample_row_generic; + } + + // can't error after this so, this is safe + output = (stbi_uc *) stbi__malloc_mad3(n, z->s->img_x, z->s->img_y, 1); + if (!output) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } + + // now go ahead and resample + for (j=0; j < z->s->img_y; ++j) { + stbi_uc *out = output + n * z->s->img_x * j; + for (k=0; k < decode_n; ++k) { + stbi__resample *r = &res_comp[k]; + int y_bot = r->ystep >= (r->vs >> 1); + coutput[k] = r->resample(z->img_comp[k].linebuf, + y_bot ? r->line1 : r->line0, + y_bot ? r->line0 : r->line1, + r->w_lores, r->hs); + if (++r->ystep >= r->vs) { + r->ystep = 0; + r->line0 = r->line1; + if (++r->ypos < z->img_comp[k].y) + r->line1 += z->img_comp[k].w2; + } + } + if (n >= 3) { + stbi_uc *y = coutput[0]; + if (z->s->img_n == 3) { + if (is_rgb) { + for (i=0; i < z->s->img_x; ++i) { + out[0] = y[i]; + out[1] = coutput[1][i]; + out[2] = coutput[2][i]; + out[3] = 255; + out += n; + } + } else { + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + } + } else if (z->s->img_n == 4) { + if (z->app14_color_transform == 0) { // CMYK + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + out[0] = stbi__blinn_8x8(coutput[0][i], m); + out[1] = stbi__blinn_8x8(coutput[1][i], m); + out[2] = stbi__blinn_8x8(coutput[2][i], m); + out[3] = 255; + out += n; + } + } else if (z->app14_color_transform == 2) { // YCCK + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + out[0] = stbi__blinn_8x8(255 - out[0], m); + out[1] = stbi__blinn_8x8(255 - out[1], m); + out[2] = stbi__blinn_8x8(255 - out[2], m); + out += n; + } + } else { // YCbCr + alpha? Ignore the fourth channel for now + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + } + } else + for (i=0; i < z->s->img_x; ++i) { + out[0] = out[1] = out[2] = y[i]; + out[3] = 255; // not used if n==3 + out += n; + } + } else { + if (is_rgb) { + if (n == 1) + for (i=0; i < z->s->img_x; ++i) + *out++ = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); + else { + for (i=0; i < z->s->img_x; ++i, out += 2) { + out[0] = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); + out[1] = 255; + } + } + } else if (z->s->img_n == 4 && z->app14_color_transform == 0) { + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + stbi_uc r = stbi__blinn_8x8(coutput[0][i], m); + stbi_uc g = stbi__blinn_8x8(coutput[1][i], m); + stbi_uc b = stbi__blinn_8x8(coutput[2][i], m); + out[0] = stbi__compute_y(r, g, b); + out[1] = 255; + out += n; + } + } else if (z->s->img_n == 4 && z->app14_color_transform == 2) { + for (i=0; i < z->s->img_x; ++i) { + out[0] = stbi__blinn_8x8(255 - coutput[0][i], coutput[3][i]); + out[1] = 255; + out += n; + } + } else { + stbi_uc *y = coutput[0]; + if (n == 1) + for (i=0; i < z->s->img_x; ++i) out[i] = y[i]; + else + for (i=0; i < z->s->img_x; ++i) { *out++ = y[i]; *out++ = 255; } + } + } + } + stbi__cleanup_jpeg(z); + *out_x = z->s->img_x; + *out_y = z->s->img_y; + if (comp) *comp = z->s->img_n >= 3 ? 3 : 1; // report original components, not output + return output; + } +} + +static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + unsigned char* result; + stbi__jpeg* j = (stbi__jpeg*) stbi__malloc(sizeof(stbi__jpeg)); + if (!j) return stbi__errpuc("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + STBI_NOTUSED(ri); + j->s = s; + stbi__setup_jpeg(j); + result = load_jpeg_image(j, x,y,comp,req_comp); + STBI_FREE(j); + return result; +} + +static int stbi__jpeg_test(stbi__context *s) +{ + int r; + stbi__jpeg* j = (stbi__jpeg*)stbi__malloc(sizeof(stbi__jpeg)); + if (!j) return stbi__err("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + j->s = s; + stbi__setup_jpeg(j); + r = stbi__decode_jpeg_header(j, STBI__SCAN_type); + stbi__rewind(s); + STBI_FREE(j); + return r; +} + +static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp) +{ + if (!stbi__decode_jpeg_header(j, STBI__SCAN_header)) { + stbi__rewind( j->s ); + return 0; + } + if (x) *x = j->s->img_x; + if (y) *y = j->s->img_y; + if (comp) *comp = j->s->img_n >= 3 ? 3 : 1; + return 1; +} + +static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp) +{ + int result; + stbi__jpeg* j = (stbi__jpeg*) (stbi__malloc(sizeof(stbi__jpeg))); + if (!j) return stbi__err("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + j->s = s; + result = stbi__jpeg_info_raw(j, x, y, comp); + STBI_FREE(j); + return result; +} +#endif + +// public domain zlib decode v0.2 Sean Barrett 2006-11-18 +// simple implementation +// - all input must be provided in an upfront buffer +// - all output is written to a single output buffer (can malloc/realloc) +// performance +// - fast huffman + +#ifndef STBI_NO_ZLIB + +// fast-way is faster to check than jpeg huffman, but slow way is slower +#define STBI__ZFAST_BITS 9 // accelerate all cases in default tables +#define STBI__ZFAST_MASK ((1 << STBI__ZFAST_BITS) - 1) +#define STBI__ZNSYMS 288 // number of symbols in literal/length alphabet + +// zlib-style huffman encoding +// (jpegs packs from left, zlib from right, so can't share code) +typedef struct +{ + stbi__uint16 fast[1 << STBI__ZFAST_BITS]; + stbi__uint16 firstcode[16]; + int maxcode[17]; + stbi__uint16 firstsymbol[16]; + stbi_uc size[STBI__ZNSYMS]; + stbi__uint16 value[STBI__ZNSYMS]; +} stbi__zhuffman; + +stbi_inline static int stbi__bitreverse16(int n) +{ + n = ((n & 0xAAAA) >> 1) | ((n & 0x5555) << 1); + n = ((n & 0xCCCC) >> 2) | ((n & 0x3333) << 2); + n = ((n & 0xF0F0) >> 4) | ((n & 0x0F0F) << 4); + n = ((n & 0xFF00) >> 8) | ((n & 0x00FF) << 8); + return n; +} + +stbi_inline static int stbi__bit_reverse(int v, int bits) +{ + STBI_ASSERT(bits <= 16); + // to bit reverse n bits, reverse 16 and shift + // e.g. 11 bits, bit reverse and shift away 5 + return stbi__bitreverse16(v) >> (16-bits); +} + +static int stbi__zbuild_huffman(stbi__zhuffman *z, const stbi_uc *sizelist, int num) +{ + int i,k=0; + int code, next_code[16], sizes[17]; + + // DEFLATE spec for generating codes + memset(sizes, 0, sizeof(sizes)); + memset(z->fast, 0, sizeof(z->fast)); + for (i=0; i < num; ++i) + ++sizes[sizelist[i]]; + sizes[0] = 0; + for (i=1; i < 16; ++i) + if (sizes[i] > (1 << i)) + return stbi__err("bad sizes", "Corrupt PNG"); + code = 0; + for (i=1; i < 16; ++i) { + next_code[i] = code; + z->firstcode[i] = (stbi__uint16) code; + z->firstsymbol[i] = (stbi__uint16) k; + code = (code + sizes[i]); + if (sizes[i]) + if (code-1 >= (1 << i)) return stbi__err("bad codelengths","Corrupt PNG"); + z->maxcode[i] = code << (16-i); // preshift for inner loop + code <<= 1; + k += sizes[i]; + } + z->maxcode[16] = 0x10000; // sentinel + for (i=0; i < num; ++i) { + int s = sizelist[i]; + if (s) { + int c = next_code[s] - z->firstcode[s] + z->firstsymbol[s]; + stbi__uint16 fastv = (stbi__uint16) ((s << 9) | i); + z->size [c] = (stbi_uc ) s; + z->value[c] = (stbi__uint16) i; + if (s <= STBI__ZFAST_BITS) { + int j = stbi__bit_reverse(next_code[s],s); + while (j < (1 << STBI__ZFAST_BITS)) { + z->fast[j] = fastv; + j += (1 << s); + } + } + ++next_code[s]; + } + } + return 1; +} + +// zlib-from-memory implementation for PNG reading +// because PNG allows splitting the zlib stream arbitrarily, +// and it's annoying structurally to have PNG call ZLIB call PNG, +// we require PNG read all the IDATs and combine them into a single +// memory buffer + +typedef struct +{ + stbi_uc *zbuffer, *zbuffer_end; + int num_bits; + int hit_zeof_once; + stbi__uint32 code_buffer; + + char *zout; + char *zout_start; + char *zout_end; + int z_expandable; + + stbi__zhuffman z_length, z_distance; +} stbi__zbuf; + +stbi_inline static int stbi__zeof(stbi__zbuf *z) +{ + return (z->zbuffer >= z->zbuffer_end); +} + +stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z) +{ + return stbi__zeof(z) ? 0 : *z->zbuffer++; +} + +static void stbi__fill_bits(stbi__zbuf *z) +{ + do { + if (z->code_buffer >= (1U << z->num_bits)) { + z->zbuffer = z->zbuffer_end; /* treat this as EOF so we fail. */ + return; + } + z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits; + z->num_bits += 8; + } while (z->num_bits <= 24); +} + +stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n) +{ + unsigned int k; + if (z->num_bits < n) stbi__fill_bits(z); + k = z->code_buffer & ((1 << n) - 1); + z->code_buffer >>= n; + z->num_bits -= n; + return k; +} + +static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) +{ + int b,s,k; + // not resolved by fast table, so compute it the slow way + // use jpeg approach, which requires MSbits at top + k = stbi__bit_reverse(a->code_buffer, 16); + for (s=STBI__ZFAST_BITS+1; ; ++s) + if (k < z->maxcode[s]) + break; + if (s >= 16) return -1; // invalid code! + // code size is s, so: + b = (k >> (16-s)) - z->firstcode[s] + z->firstsymbol[s]; + if (b >= STBI__ZNSYMS) return -1; // some data was corrupt somewhere! + if (z->size[b] != s) return -1; // was originally an assert, but report failure instead. + a->code_buffer >>= s; + a->num_bits -= s; + return z->value[b]; +} + +stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z) +{ + int b,s; + if (a->num_bits < 16) { + if (stbi__zeof(a)) { + if (!a->hit_zeof_once) { + // This is the first time we hit eof, insert 16 extra padding btis + // to allow us to keep going; if we actually consume any of them + // though, that is invalid data. This is caught later. + a->hit_zeof_once = 1; + a->num_bits += 16; // add 16 implicit zero bits + } else { + // We already inserted our extra 16 padding bits and are again + // out, this stream is actually prematurely terminated. + return -1; + } + } else { + stbi__fill_bits(a); + } + } + b = z->fast[a->code_buffer & STBI__ZFAST_MASK]; + if (b) { + s = b >> 9; + a->code_buffer >>= s; + a->num_bits -= s; + return b & 511; + } + return stbi__zhuffman_decode_slowpath(a, z); +} + +static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to make room for n bytes +{ + char *q; + unsigned int cur, limit, old_limit; + z->zout = zout; + if (!z->z_expandable) return stbi__err("output buffer limit","Corrupt PNG"); + cur = (unsigned int) (z->zout - z->zout_start); + limit = old_limit = (unsigned) (z->zout_end - z->zout_start); + if (UINT_MAX - cur < (unsigned) n) return stbi__err("outofmem", "Out of memory"); + while (cur + n > limit) { + if(limit > UINT_MAX / 2) return stbi__err("outofmem", "Out of memory"); + limit *= 2; + } + q = (char *) STBI_REALLOC_SIZED(z->zout_start, old_limit, limit); + STBI_NOTUSED(old_limit); + if (q == NULL) return stbi__err("outofmem", "Out of memory"); + z->zout_start = q; + z->zout = q + cur; + z->zout_end = q + limit; + return 1; +} + +static const int stbi__zlength_base[31] = { + 3,4,5,6,7,8,9,10,11,13, + 15,17,19,23,27,31,35,43,51,59, + 67,83,99,115,131,163,195,227,258,0,0 }; + +static const int stbi__zlength_extra[31]= +{ 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 }; + +static const int stbi__zdist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193, +257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0}; + +static const int stbi__zdist_extra[32] = +{ 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13}; + +static int stbi__parse_huffman_block(stbi__zbuf *a) +{ + char *zout = a->zout; + for(;;) { + int z = stbi__zhuffman_decode(a, &a->z_length); + if (z < 256) { + if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); // error in huffman codes + if (zout >= a->zout_end) { + if (!stbi__zexpand(a, zout, 1)) return 0; + zout = a->zout; + } + *zout++ = (char) z; + } else { + stbi_uc *p; + int len,dist; + if (z == 256) { + a->zout = zout; + if (a->hit_zeof_once && a->num_bits < 16) { + // The first time we hit zeof, we inserted 16 extra zero bits into our bit + // buffer so the decoder can just do its speculative decoding. But if we + // actually consumed any of those bits (which is the case when num_bits < 16), + // the stream actually read past the end so it is malformed. + return stbi__err("unexpected end","Corrupt PNG"); + } + return 1; + } + if (z >= 286) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, length codes 286 and 287 must not appear in compressed data + z -= 257; + len = stbi__zlength_base[z]; + if (stbi__zlength_extra[z]) len += stbi__zreceive(a, stbi__zlength_extra[z]); + z = stbi__zhuffman_decode(a, &a->z_distance); + if (z < 0 || z >= 30) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, distance codes 30 and 31 must not appear in compressed data + dist = stbi__zdist_base[z]; + if (stbi__zdist_extra[z]) dist += stbi__zreceive(a, stbi__zdist_extra[z]); + if (zout - a->zout_start < dist) return stbi__err("bad dist","Corrupt PNG"); + if (len > a->zout_end - zout) { + if (!stbi__zexpand(a, zout, len)) return 0; + zout = a->zout; + } + p = (stbi_uc *) (zout - dist); + if (dist == 1) { // run of one byte; common in images. + stbi_uc v = *p; + if (len) { do *zout++ = v; while (--len); } + } else { + if (len) { do *zout++ = *p++; while (--len); } + } + } + } +} + +static int stbi__compute_huffman_codes(stbi__zbuf *a) +{ + static const stbi_uc length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 }; + stbi__zhuffman z_codelength; + stbi_uc lencodes[286+32+137];//padding for maximum single op + stbi_uc codelength_sizes[19]; + int i,n; + + int hlit = stbi__zreceive(a,5) + 257; + int hdist = stbi__zreceive(a,5) + 1; + int hclen = stbi__zreceive(a,4) + 4; + int ntot = hlit + hdist; + + memset(codelength_sizes, 0, sizeof(codelength_sizes)); + for (i=0; i < hclen; ++i) { + int s = stbi__zreceive(a,3); + codelength_sizes[length_dezigzag[i]] = (stbi_uc) s; + } + if (!stbi__zbuild_huffman(&z_codelength, codelength_sizes, 19)) return 0; + + n = 0; + while (n < ntot) { + int c = stbi__zhuffman_decode(a, &z_codelength); + if (c < 0 || c >= 19) return stbi__err("bad codelengths", "Corrupt PNG"); + if (c < 16) + lencodes[n++] = (stbi_uc) c; + else { + stbi_uc fill = 0; + if (c == 16) { + c = stbi__zreceive(a,2)+3; + if (n == 0) return stbi__err("bad codelengths", "Corrupt PNG"); + fill = lencodes[n-1]; + } else if (c == 17) { + c = stbi__zreceive(a,3)+3; + } else if (c == 18) { + c = stbi__zreceive(a,7)+11; + } else { + return stbi__err("bad codelengths", "Corrupt PNG"); + } + if (ntot - n < c) return stbi__err("bad codelengths", "Corrupt PNG"); + memset(lencodes+n, fill, c); + n += c; + } + } + if (n != ntot) return stbi__err("bad codelengths","Corrupt PNG"); + if (!stbi__zbuild_huffman(&a->z_length, lencodes, hlit)) return 0; + if (!stbi__zbuild_huffman(&a->z_distance, lencodes+hlit, hdist)) return 0; + return 1; +} + +static int stbi__parse_uncompressed_block(stbi__zbuf *a) +{ + stbi_uc header[4]; + int len,nlen,k; + if (a->num_bits & 7) + stbi__zreceive(a, a->num_bits & 7); // discard + // drain the bit-packed data into header + k = 0; + while (a->num_bits > 0) { + header[k++] = (stbi_uc) (a->code_buffer & 255); // suppress MSVC run-time check + a->code_buffer >>= 8; + a->num_bits -= 8; + } + if (a->num_bits < 0) return stbi__err("zlib corrupt","Corrupt PNG"); + // now fill header the normal way + while (k < 4) + header[k++] = stbi__zget8(a); + len = header[1] * 256 + header[0]; + nlen = header[3] * 256 + header[2]; + if (nlen != (len ^ 0xffff)) return stbi__err("zlib corrupt","Corrupt PNG"); + if (a->zbuffer + len > a->zbuffer_end) return stbi__err("read past buffer","Corrupt PNG"); + if (a->zout + len > a->zout_end) + if (!stbi__zexpand(a, a->zout, len)) return 0; + memcpy(a->zout, a->zbuffer, len); + a->zbuffer += len; + a->zout += len; + return 1; +} + +static int stbi__parse_zlib_header(stbi__zbuf *a) +{ + int cmf = stbi__zget8(a); + int cm = cmf & 15; + /* int cinfo = cmf >> 4; */ + int flg = stbi__zget8(a); + if (stbi__zeof(a)) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec + if ((cmf*256+flg) % 31 != 0) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec + if (flg & 32) return stbi__err("no preset dict","Corrupt PNG"); // preset dictionary not allowed in png + if (cm != 8) return stbi__err("bad compression","Corrupt PNG"); // DEFLATE required for png + // window = 1 << (8 + cinfo)... but who cares, we fully buffer output + return 1; +} + +static const stbi_uc stbi__zdefault_length[STBI__ZNSYMS] = +{ + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8 +}; +static const stbi_uc stbi__zdefault_distance[32] = +{ + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5 +}; +/* +Init algorithm: +{ + int i; // use <= to match clearly with spec + for (i=0; i <= 143; ++i) stbi__zdefault_length[i] = 8; + for ( ; i <= 255; ++i) stbi__zdefault_length[i] = 9; + for ( ; i <= 279; ++i) stbi__zdefault_length[i] = 7; + for ( ; i <= 287; ++i) stbi__zdefault_length[i] = 8; + + for (i=0; i <= 31; ++i) stbi__zdefault_distance[i] = 5; +} +*/ + +static int stbi__parse_zlib(stbi__zbuf *a, int parse_header) +{ + int final, type; + if (parse_header) + if (!stbi__parse_zlib_header(a)) return 0; + a->num_bits = 0; + a->code_buffer = 0; + a->hit_zeof_once = 0; + do { + final = stbi__zreceive(a,1); + type = stbi__zreceive(a,2); + if (type == 0) { + if (!stbi__parse_uncompressed_block(a)) return 0; + } else if (type == 3) { + return 0; + } else { + if (type == 1) { + // use fixed code lengths + if (!stbi__zbuild_huffman(&a->z_length , stbi__zdefault_length , STBI__ZNSYMS)) return 0; + if (!stbi__zbuild_huffman(&a->z_distance, stbi__zdefault_distance, 32)) return 0; + } else { + if (!stbi__compute_huffman_codes(a)) return 0; + } + if (!stbi__parse_huffman_block(a)) return 0; + } + } while (!final); + return 1; +} + +static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header) +{ + a->zout_start = obuf; + a->zout = obuf; + a->zout_end = obuf + olen; + a->z_expandable = exp; + + return stbi__parse_zlib(a, parse_header); +} + +STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(initial_size); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer + len; + if (stbi__do_zlib(&a, p, initial_size, 1, 1)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen) +{ + return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen); +} + +STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(initial_size); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer + len; + if (stbi__do_zlib(&a, p, initial_size, 1, parse_header)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const *ibuffer, int ilen) +{ + stbi__zbuf a; + a.zbuffer = (stbi_uc *) ibuffer; + a.zbuffer_end = (stbi_uc *) ibuffer + ilen; + if (stbi__do_zlib(&a, obuffer, olen, 0, 1)) + return (int) (a.zout - a.zout_start); + else + return -1; +} + +STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(16384); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer+len; + if (stbi__do_zlib(&a, p, 16384, 1, 0)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen) +{ + stbi__zbuf a; + a.zbuffer = (stbi_uc *) ibuffer; + a.zbuffer_end = (stbi_uc *) ibuffer + ilen; + if (stbi__do_zlib(&a, obuffer, olen, 0, 0)) + return (int) (a.zout - a.zout_start); + else + return -1; +} +#endif + +// public domain "baseline" PNG decoder v0.10 Sean Barrett 2006-11-18 +// simple implementation +// - only 8-bit samples +// - no CRC checking +// - allocates lots of intermediate memory +// - avoids problem of streaming data between subsystems +// - avoids explicit window management +// performance +// - uses stb_zlib, a PD zlib implementation with fast huffman decoding + +#ifndef STBI_NO_PNG +typedef struct +{ + stbi__uint32 length; + stbi__uint32 type; +} stbi__pngchunk; + +static stbi__pngchunk stbi__get_chunk_header(stbi__context *s) +{ + stbi__pngchunk c; + c.length = stbi__get32be(s); + c.type = stbi__get32be(s); + return c; +} + +static int stbi__check_png_header(stbi__context *s) +{ + static const stbi_uc png_sig[8] = { 137,80,78,71,13,10,26,10 }; + int i; + for (i=0; i < 8; ++i) + if (stbi__get8(s) != png_sig[i]) return stbi__err("bad png sig","Not a PNG"); + return 1; +} + +typedef struct +{ + stbi__context *s; + stbi_uc *idata, *expanded, *out; + int depth; +} stbi__png; + + +enum { + STBI__F_none=0, + STBI__F_sub=1, + STBI__F_up=2, + STBI__F_avg=3, + STBI__F_paeth=4, + // synthetic filter used for first scanline to avoid needing a dummy row of 0s + STBI__F_avg_first +}; + +static stbi_uc first_row_filter[5] = +{ + STBI__F_none, + STBI__F_sub, + STBI__F_none, + STBI__F_avg_first, + STBI__F_sub // Paeth with b=c=0 turns out to be equivalent to sub +}; + +static int stbi__paeth(int a, int b, int c) +{ + // This formulation looks very different from the reference in the PNG spec, but is + // actually equivalent and has favorable data dependencies and admits straightforward + // generation of branch-free code, which helps performance significantly. + int thresh = c*3 - (a + b); + int lo = a < b ? a : b; + int hi = a < b ? b : a; + int t0 = (hi <= thresh) ? lo : c; + int t1 = (thresh <= lo) ? hi : t0; + return t1; +} + +static const stbi_uc stbi__depth_scale_table[9] = { 0, 0xff, 0x55, 0, 0x11, 0,0,0, 0x01 }; + +// adds an extra all-255 alpha channel +// dest == src is legal +// img_n must be 1 or 3 +static void stbi__create_png_alpha_expand8(stbi_uc *dest, stbi_uc *src, stbi__uint32 x, int img_n) +{ + int i; + // must process data backwards since we allow dest==src + if (img_n == 1) { + for (i=x-1; i >= 0; --i) { + dest[i*2+1] = 255; + dest[i*2+0] = src[i]; + } + } else { + STBI_ASSERT(img_n == 3); + for (i=x-1; i >= 0; --i) { + dest[i*4+3] = 255; + dest[i*4+2] = src[i*3+2]; + dest[i*4+1] = src[i*3+1]; + dest[i*4+0] = src[i*3+0]; + } + } +} + +// create the png data from post-deflated data +static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color) +{ + int bytes = (depth == 16 ? 2 : 1); + stbi__context *s = a->s; + stbi__uint32 i,j,stride = x*out_n*bytes; + stbi__uint32 img_len, img_width_bytes; + stbi_uc *filter_buf; + int all_ok = 1; + int k; + int img_n = s->img_n; // copy it into a local for later + + int output_bytes = out_n*bytes; + int filter_bytes = img_n*bytes; + int width = x; + + STBI_ASSERT(out_n == s->img_n || out_n == s->img_n+1); + a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end into + if (!a->out) return stbi__err("outofmem", "Out of memory"); + + // note: error exits here don't need to clean up a->out individually, + // stbi__do_png always does on error. + if (!stbi__mad3sizes_valid(img_n, x, depth, 7)) return stbi__err("too large", "Corrupt PNG"); + img_width_bytes = (((img_n * x * depth) + 7) >> 3); + if (!stbi__mad2sizes_valid(img_width_bytes, y, img_width_bytes)) return stbi__err("too large", "Corrupt PNG"); + img_len = (img_width_bytes + 1) * y; + + // we used to check for exact match between raw_len and img_len on non-interlaced PNGs, + // but issue #276 reported a PNG in the wild that had extra data at the end (all zeros), + // so just check for raw_len < img_len always. + if (raw_len < img_len) return stbi__err("not enough pixels","Corrupt PNG"); + + // Allocate two scan lines worth of filter workspace buffer. + filter_buf = (stbi_uc *) stbi__malloc_mad2(img_width_bytes, 2, 0); + if (!filter_buf) return stbi__err("outofmem", "Out of memory"); + + // Filtering for low-bit-depth images + if (depth < 8) { + filter_bytes = 1; + width = img_width_bytes; + } + + for (j=0; j < y; ++j) { + // cur/prior filter buffers alternate + stbi_uc *cur = filter_buf + (j & 1)*img_width_bytes; + stbi_uc *prior = filter_buf + (~j & 1)*img_width_bytes; + stbi_uc *dest = a->out + stride*j; + int nk = width * filter_bytes; + int filter = *raw++; + + // check filter type + if (filter > 4) { + all_ok = stbi__err("invalid filter","Corrupt PNG"); + break; + } + + // if first row, use special filter that doesn't sample previous row + if (j == 0) filter = first_row_filter[filter]; + + // perform actual filtering + switch (filter) { + case STBI__F_none: + memcpy(cur, raw, nk); + break; + case STBI__F_sub: + memcpy(cur, raw, filter_bytes); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); + break; + case STBI__F_up: + for (k = 0; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + prior[k]); + break; + case STBI__F_avg: + for (k = 0; k < filter_bytes; ++k) + cur[k] = STBI__BYTECAST(raw[k] + (prior[k]>>1)); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); + break; + case STBI__F_paeth: + for (k = 0; k < filter_bytes; ++k) + cur[k] = STBI__BYTECAST(raw[k] + prior[k]); // prior[k] == stbi__paeth(0,prior[k],0) + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes], prior[k], prior[k-filter_bytes])); + break; + case STBI__F_avg_first: + memcpy(cur, raw, filter_bytes); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1)); + break; + } + + raw += nk; + + // expand decoded bits in cur to dest, also adding an extra alpha channel if desired + if (depth < 8) { + stbi_uc scale = (color == 0) ? stbi__depth_scale_table[depth] : 1; // scale grayscale values to 0..255 range + stbi_uc *in = cur; + stbi_uc *out = dest; + stbi_uc inb = 0; + stbi__uint32 nsmp = x*img_n; + + // expand bits to bytes first + if (depth == 4) { + for (i=0; i < nsmp; ++i) { + if ((i & 1) == 0) inb = *in++; + *out++ = scale * (inb >> 4); + inb <<= 4; + } + } else if (depth == 2) { + for (i=0; i < nsmp; ++i) { + if ((i & 3) == 0) inb = *in++; + *out++ = scale * (inb >> 6); + inb <<= 2; + } + } else { + STBI_ASSERT(depth == 1); + for (i=0; i < nsmp; ++i) { + if ((i & 7) == 0) inb = *in++; + *out++ = scale * (inb >> 7); + inb <<= 1; + } + } + + // insert alpha=255 values if desired + if (img_n != out_n) + stbi__create_png_alpha_expand8(dest, dest, x, img_n); + } else if (depth == 8) { + if (img_n == out_n) + memcpy(dest, cur, x*img_n); + else + stbi__create_png_alpha_expand8(dest, cur, x, img_n); + } else if (depth == 16) { + // convert the image data from big-endian to platform-native + stbi__uint16 *dest16 = (stbi__uint16*)dest; + stbi__uint32 nsmp = x*img_n; + + if (img_n == out_n) { + for (i = 0; i < nsmp; ++i, ++dest16, cur += 2) + *dest16 = (cur[0] << 8) | cur[1]; + } else { + STBI_ASSERT(img_n+1 == out_n); + if (img_n == 1) { + for (i = 0; i < x; ++i, dest16 += 2, cur += 2) { + dest16[0] = (cur[0] << 8) | cur[1]; + dest16[1] = 0xffff; + } + } else { + STBI_ASSERT(img_n == 3); + for (i = 0; i < x; ++i, dest16 += 4, cur += 6) { + dest16[0] = (cur[0] << 8) | cur[1]; + dest16[1] = (cur[2] << 8) | cur[3]; + dest16[2] = (cur[4] << 8) | cur[5]; + dest16[3] = 0xffff; + } + } + } + } + } + + STBI_FREE(filter_buf); + if (!all_ok) return 0; + + return 1; +} + +static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced) +{ + int bytes = (depth == 16 ? 2 : 1); + int out_bytes = out_n * bytes; + stbi_uc *final; + int p; + if (!interlaced) + return stbi__create_png_image_raw(a, image_data, image_data_len, out_n, a->s->img_x, a->s->img_y, depth, color); + + // de-interlacing + final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0); + if (!final) return stbi__err("outofmem", "Out of memory"); + for (p=0; p < 7; ++p) { + int xorig[] = { 0,4,0,2,0,1,0 }; + int yorig[] = { 0,0,4,0,2,0,1 }; + int xspc[] = { 8,8,4,4,2,2,1 }; + int yspc[] = { 8,8,8,4,4,2,2 }; + int i,j,x,y; + // pass1_x[4] = 0, pass1_x[5] = 1, pass1_x[12] = 1 + x = (a->s->img_x - xorig[p] + xspc[p]-1) / xspc[p]; + y = (a->s->img_y - yorig[p] + yspc[p]-1) / yspc[p]; + if (x && y) { + stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y; + if (!stbi__create_png_image_raw(a, image_data, image_data_len, out_n, x, y, depth, color)) { + STBI_FREE(final); + return 0; + } + for (j=0; j < y; ++j) { + for (i=0; i < x; ++i) { + int out_y = j*yspc[p]+yorig[p]; + int out_x = i*xspc[p]+xorig[p]; + memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes, + a->out + (j*x+i)*out_bytes, out_bytes); + } + } + STBI_FREE(a->out); + image_data += img_len; + image_data_len -= img_len; + } + } + a->out = final; + + return 1; +} + +static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi_uc *p = z->out; + + // compute color-based transparency, assuming we've + // already got 255 as the alpha value in the output + STBI_ASSERT(out_n == 2 || out_n == 4); + + if (out_n == 2) { + for (i=0; i < pixel_count; ++i) { + p[1] = (p[0] == tc[0] ? 0 : 255); + p += 2; + } + } else { + for (i=0; i < pixel_count; ++i) { + if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) + p[3] = 0; + p += 4; + } + } + return 1; +} + +static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi__uint16 *p = (stbi__uint16*) z->out; + + // compute color-based transparency, assuming we've + // already got 65535 as the alpha value in the output + STBI_ASSERT(out_n == 2 || out_n == 4); + + if (out_n == 2) { + for (i = 0; i < pixel_count; ++i) { + p[1] = (p[0] == tc[0] ? 0 : 65535); + p += 2; + } + } else { + for (i = 0; i < pixel_count; ++i) { + if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) + p[3] = 0; + p += 4; + } + } + return 1; +} + +static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n) +{ + stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y; + stbi_uc *p, *temp_out, *orig = a->out; + + p = (stbi_uc *) stbi__malloc_mad2(pixel_count, pal_img_n, 0); + if (p == NULL) return stbi__err("outofmem", "Out of memory"); + + // between here and free(out) below, exitting would leak + temp_out = p; + + if (pal_img_n == 3) { + for (i=0; i < pixel_count; ++i) { + int n = orig[i]*4; + p[0] = palette[n ]; + p[1] = palette[n+1]; + p[2] = palette[n+2]; + p += 3; + } + } else { + for (i=0; i < pixel_count; ++i) { + int n = orig[i]*4; + p[0] = palette[n ]; + p[1] = palette[n+1]; + p[2] = palette[n+2]; + p[3] = palette[n+3]; + p += 4; + } + } + STBI_FREE(a->out); + a->out = temp_out; + + STBI_NOTUSED(len); + + return 1; +} + +static int stbi__unpremultiply_on_load_global = 0; +static int stbi__de_iphone_flag_global = 0; + +STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply) +{ + stbi__unpremultiply_on_load_global = flag_true_if_should_unpremultiply; +} + +STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert) +{ + stbi__de_iphone_flag_global = flag_true_if_should_convert; +} + +#ifndef STBI_THREAD_LOCAL +#define stbi__unpremultiply_on_load stbi__unpremultiply_on_load_global +#define stbi__de_iphone_flag stbi__de_iphone_flag_global +#else +static STBI_THREAD_LOCAL int stbi__unpremultiply_on_load_local, stbi__unpremultiply_on_load_set; +static STBI_THREAD_LOCAL int stbi__de_iphone_flag_local, stbi__de_iphone_flag_set; + +STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply) +{ + stbi__unpremultiply_on_load_local = flag_true_if_should_unpremultiply; + stbi__unpremultiply_on_load_set = 1; +} + +STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert) +{ + stbi__de_iphone_flag_local = flag_true_if_should_convert; + stbi__de_iphone_flag_set = 1; +} + +#define stbi__unpremultiply_on_load (stbi__unpremultiply_on_load_set \ + ? stbi__unpremultiply_on_load_local \ + : stbi__unpremultiply_on_load_global) +#define stbi__de_iphone_flag (stbi__de_iphone_flag_set \ + ? stbi__de_iphone_flag_local \ + : stbi__de_iphone_flag_global) +#endif // STBI_THREAD_LOCAL + +static void stbi__de_iphone(stbi__png *z) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi_uc *p = z->out; + + if (s->img_out_n == 3) { // convert bgr to rgb + for (i=0; i < pixel_count; ++i) { + stbi_uc t = p[0]; + p[0] = p[2]; + p[2] = t; + p += 3; + } + } else { + STBI_ASSERT(s->img_out_n == 4); + if (stbi__unpremultiply_on_load) { + // convert bgr to rgb and unpremultiply + for (i=0; i < pixel_count; ++i) { + stbi_uc a = p[3]; + stbi_uc t = p[0]; + if (a) { + stbi_uc half = a / 2; + p[0] = (p[2] * 255 + half) / a; + p[1] = (p[1] * 255 + half) / a; + p[2] = ( t * 255 + half) / a; + } else { + p[0] = p[2]; + p[2] = t; + } + p += 4; + } + } else { + // convert bgr to rgb + for (i=0; i < pixel_count; ++i) { + stbi_uc t = p[0]; + p[0] = p[2]; + p[2] = t; + p += 4; + } + } + } +} + +#define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c) << 8) + (unsigned) (d)) + +static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp) +{ + stbi_uc palette[1024], pal_img_n=0; + stbi_uc has_trans=0, tc[3]={0}; + stbi__uint16 tc16[3]; + stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; + int first=1,k,interlace=0, color=0, is_iphone=0; + stbi__context *s = z->s; + + z->expanded = NULL; + z->idata = NULL; + z->out = NULL; + + if (!stbi__check_png_header(s)) return 0; + + if (scan == STBI__SCAN_type) return 1; + + for (;;) { + stbi__pngchunk c = stbi__get_chunk_header(s); + switch (c.type) { + case STBI__PNG_TYPE('C','g','B','I'): + is_iphone = 1; + stbi__skip(s, c.length); + break; + case STBI__PNG_TYPE('I','H','D','R'): { + int comp,filter; + if (!first) return stbi__err("multiple IHDR","Corrupt PNG"); + first = 0; + if (c.length != 13) return stbi__err("bad IHDR len","Corrupt PNG"); + s->img_x = stbi__get32be(s); + s->img_y = stbi__get32be(s); + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + z->depth = stbi__get8(s); if (z->depth != 1 && z->depth != 2 && z->depth != 4 && z->depth != 8 && z->depth != 16) return stbi__err("1/2/4/8/16-bit only","PNG not supported: 1/2/4/8/16-bit only"); + color = stbi__get8(s); if (color > 6) return stbi__err("bad ctype","Corrupt PNG"); + if (color == 3 && z->depth == 16) return stbi__err("bad ctype","Corrupt PNG"); + if (color == 3) pal_img_n = 3; else if (color & 1) return stbi__err("bad ctype","Corrupt PNG"); + comp = stbi__get8(s); if (comp) return stbi__err("bad comp method","Corrupt PNG"); + filter= stbi__get8(s); if (filter) return stbi__err("bad filter method","Corrupt PNG"); + interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG"); + if (!s->img_x || !s->img_y) return stbi__err("0-pixel image","Corrupt PNG"); + if (!pal_img_n) { + s->img_n = (color & 2 ? 3 : 1) + (color & 4 ? 1 : 0); + if ((1 << 30) / s->img_x / s->img_n < s->img_y) return stbi__err("too large", "Image too large to decode"); + } else { + // if paletted, then pal_n is our final components, and + // img_n is # components to decompress/filter. + s->img_n = 1; + if ((1 << 30) / s->img_x / 4 < s->img_y) return stbi__err("too large","Corrupt PNG"); + } + // even with SCAN_header, have to scan to see if we have a tRNS + break; + } + + case STBI__PNG_TYPE('P','L','T','E'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (c.length > 256*3) return stbi__err("invalid PLTE","Corrupt PNG"); + pal_len = c.length / 3; + if (pal_len * 3 != c.length) return stbi__err("invalid PLTE","Corrupt PNG"); + for (i=0; i < pal_len; ++i) { + palette[i*4+0] = stbi__get8(s); + palette[i*4+1] = stbi__get8(s); + palette[i*4+2] = stbi__get8(s); + palette[i*4+3] = 255; + } + break; + } + + case STBI__PNG_TYPE('t','R','N','S'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (z->idata) return stbi__err("tRNS after IDAT","Corrupt PNG"); + if (pal_img_n) { + if (scan == STBI__SCAN_header) { s->img_n = 4; return 1; } + if (pal_len == 0) return stbi__err("tRNS before PLTE","Corrupt PNG"); + if (c.length > pal_len) return stbi__err("bad tRNS len","Corrupt PNG"); + pal_img_n = 4; + for (i=0; i < c.length; ++i) + palette[i*4+3] = stbi__get8(s); + } else { + if (!(s->img_n & 1)) return stbi__err("tRNS with alpha","Corrupt PNG"); + if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG"); + has_trans = 1; + // non-paletted with tRNS = constant alpha. if header-scanning, we can stop now. + if (scan == STBI__SCAN_header) { ++s->img_n; return 1; } + if (z->depth == 16) { + for (k = 0; k < s->img_n; ++k) tc16[k] = (stbi__uint16)stbi__get16be(s); // copy the values as-is + } else { + for (k = 0; k < s->img_n; ++k) tc[k] = (stbi_uc)(stbi__get16be(s) & 255) * stbi__depth_scale_table[z->depth]; // non 8-bit images will be larger + } + } + break; + } + + case STBI__PNG_TYPE('I','D','A','T'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (pal_img_n && !pal_len) return stbi__err("no PLTE","Corrupt PNG"); + if (scan == STBI__SCAN_header) { + // header scan definitely stops at first IDAT + if (pal_img_n) + s->img_n = pal_img_n; + return 1; + } + if (c.length > (1u << 30)) return stbi__err("IDAT size limit", "IDAT section larger than 2^30 bytes"); + if ((int)(ioff + c.length) < (int)ioff) return 0; + if (ioff + c.length > idata_limit) { + stbi__uint32 idata_limit_old = idata_limit; + stbi_uc *p; + if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096; + while (ioff + c.length > idata_limit) + idata_limit *= 2; + STBI_NOTUSED(idata_limit_old); + p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory"); + z->idata = p; + } + if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG"); + ioff += c.length; + break; + } + + case STBI__PNG_TYPE('I','E','N','D'): { + stbi__uint32 raw_len, bpl; + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (scan != STBI__SCAN_load) return 1; + if (z->idata == NULL) return stbi__err("no IDAT","Corrupt PNG"); + // initial guess for decoded data size to avoid unnecessary reallocs + bpl = (s->img_x * z->depth + 7) / 8; // bytes per line, per component + raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */; + z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone); + if (z->expanded == NULL) return 0; // zlib should set error + STBI_FREE(z->idata); z->idata = NULL; + if ((req_comp == s->img_n+1 && req_comp != 3 && !pal_img_n) || has_trans) + s->img_out_n = s->img_n+1; + else + s->img_out_n = s->img_n; + if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0; + if (has_trans) { + if (z->depth == 16) { + if (!stbi__compute_transparency16(z, tc16, s->img_out_n)) return 0; + } else { + if (!stbi__compute_transparency(z, tc, s->img_out_n)) return 0; + } + } + if (is_iphone && stbi__de_iphone_flag && s->img_out_n > 2) + stbi__de_iphone(z); + if (pal_img_n) { + // pal_img_n == 3 or 4 + s->img_n = pal_img_n; // record the actual colors we had + s->img_out_n = pal_img_n; + if (req_comp >= 3) s->img_out_n = req_comp; + if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n)) + return 0; + } else if (has_trans) { + // non-paletted image with tRNS -> source image has (constant) alpha + ++s->img_n; + } + STBI_FREE(z->expanded); z->expanded = NULL; + // end of PNG chunk, read and skip CRC + stbi__get32be(s); + return 1; + } + + default: + // if critical, fail + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if ((c.type & (1 << 29)) == 0) { + #ifndef STBI_NO_FAILURE_STRINGS + // not threadsafe + static char invalid_chunk[] = "XXXX PNG chunk not known"; + invalid_chunk[0] = STBI__BYTECAST(c.type >> 24); + invalid_chunk[1] = STBI__BYTECAST(c.type >> 16); + invalid_chunk[2] = STBI__BYTECAST(c.type >> 8); + invalid_chunk[3] = STBI__BYTECAST(c.type >> 0); + #endif + return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type"); + } + stbi__skip(s, c.length); + break; + } + // end of PNG chunk, read and skip CRC + stbi__get32be(s); + } +} + +static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri) +{ + void *result=NULL; + if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); + if (stbi__parse_png_file(p, STBI__SCAN_load, req_comp)) { + if (p->depth <= 8) + ri->bits_per_channel = 8; + else if (p->depth == 16) + ri->bits_per_channel = 16; + else + return stbi__errpuc("bad bits_per_channel", "PNG not supported: unsupported color depth"); + result = p->out; + p->out = NULL; + if (req_comp && req_comp != p->s->img_out_n) { + if (ri->bits_per_channel == 8) + result = stbi__convert_format((unsigned char *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); + else + result = stbi__convert_format16((stbi__uint16 *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); + p->s->img_out_n = req_comp; + if (result == NULL) return result; + } + *x = p->s->img_x; + *y = p->s->img_y; + if (n) *n = p->s->img_n; + } + STBI_FREE(p->out); p->out = NULL; + STBI_FREE(p->expanded); p->expanded = NULL; + STBI_FREE(p->idata); p->idata = NULL; + + return result; +} + +static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi__png p; + p.s = s; + return stbi__do_png(&p, x,y,comp,req_comp, ri); +} + +static int stbi__png_test(stbi__context *s) +{ + int r; + r = stbi__check_png_header(s); + stbi__rewind(s); + return r; +} + +static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp) +{ + if (!stbi__parse_png_file(p, STBI__SCAN_header, 0)) { + stbi__rewind( p->s ); + return 0; + } + if (x) *x = p->s->img_x; + if (y) *y = p->s->img_y; + if (comp) *comp = p->s->img_n; + return 1; +} + +static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp) +{ + stbi__png p; + p.s = s; + return stbi__png_info_raw(&p, x, y, comp); +} + +static int stbi__png_is16(stbi__context *s) +{ + stbi__png p; + p.s = s; + if (!stbi__png_info_raw(&p, NULL, NULL, NULL)) + return 0; + if (p.depth != 16) { + stbi__rewind(p.s); + return 0; + } + return 1; +} +#endif + +// Microsoft/Windows BMP image + +#ifndef STBI_NO_BMP +static int stbi__bmp_test_raw(stbi__context *s) +{ + int r; + int sz; + if (stbi__get8(s) != 'B') return 0; + if (stbi__get8(s) != 'M') return 0; + stbi__get32le(s); // discard filesize + stbi__get16le(s); // discard reserved + stbi__get16le(s); // discard reserved + stbi__get32le(s); // discard data offset + sz = stbi__get32le(s); + r = (sz == 12 || sz == 40 || sz == 56 || sz == 108 || sz == 124); + return r; +} + +static int stbi__bmp_test(stbi__context *s) +{ + int r = stbi__bmp_test_raw(s); + stbi__rewind(s); + return r; +} + + +// returns 0..31 for the highest set bit +static int stbi__high_bit(unsigned int z) +{ + int n=0; + if (z == 0) return -1; + if (z >= 0x10000) { n += 16; z >>= 16; } + if (z >= 0x00100) { n += 8; z >>= 8; } + if (z >= 0x00010) { n += 4; z >>= 4; } + if (z >= 0x00004) { n += 2; z >>= 2; } + if (z >= 0x00002) { n += 1;/* >>= 1;*/ } + return n; +} + +static int stbi__bitcount(unsigned int a) +{ + a = (a & 0x55555555) + ((a >> 1) & 0x55555555); // max 2 + a = (a & 0x33333333) + ((a >> 2) & 0x33333333); // max 4 + a = (a + (a >> 4)) & 0x0f0f0f0f; // max 8 per 4, now 8 bits + a = (a + (a >> 8)); // max 16 per 8 bits + a = (a + (a >> 16)); // max 32 per 8 bits + return a & 0xff; +} + +// extract an arbitrarily-aligned N-bit value (N=bits) +// from v, and then make it 8-bits long and fractionally +// extend it to full full range. +static int stbi__shiftsigned(unsigned int v, int shift, int bits) +{ + static unsigned int mul_table[9] = { + 0, + 0xff/*0b11111111*/, 0x55/*0b01010101*/, 0x49/*0b01001001*/, 0x11/*0b00010001*/, + 0x21/*0b00100001*/, 0x41/*0b01000001*/, 0x81/*0b10000001*/, 0x01/*0b00000001*/, + }; + static unsigned int shift_table[9] = { + 0, 0,0,1,0,2,4,6,0, + }; + if (shift < 0) + v <<= -shift; + else + v >>= shift; + STBI_ASSERT(v < 256); + v >>= (8-bits); + STBI_ASSERT(bits >= 0 && bits <= 8); + return (int) ((unsigned) v * mul_table[bits]) >> shift_table[bits]; +} + +typedef struct +{ + int bpp, offset, hsz; + unsigned int mr,mg,mb,ma, all_a; + int extra_read; +} stbi__bmp_data; + +static int stbi__bmp_set_mask_defaults(stbi__bmp_data *info, int compress) +{ + // BI_BITFIELDS specifies masks explicitly, don't override + if (compress == 3) + return 1; + + if (compress == 0) { + if (info->bpp == 16) { + info->mr = 31u << 10; + info->mg = 31u << 5; + info->mb = 31u << 0; + } else if (info->bpp == 32) { + info->mr = 0xffu << 16; + info->mg = 0xffu << 8; + info->mb = 0xffu << 0; + info->ma = 0xffu << 24; + info->all_a = 0; // if all_a is 0 at end, then we loaded alpha channel but it was all 0 + } else { + // otherwise, use defaults, which is all-0 + info->mr = info->mg = info->mb = info->ma = 0; + } + return 1; + } + return 0; // error +} + +static void *stbi__bmp_parse_header(stbi__context *s, stbi__bmp_data *info) +{ + int hsz; + if (stbi__get8(s) != 'B' || stbi__get8(s) != 'M') return stbi__errpuc("not BMP", "Corrupt BMP"); + stbi__get32le(s); // discard filesize + stbi__get16le(s); // discard reserved + stbi__get16le(s); // discard reserved + info->offset = stbi__get32le(s); + info->hsz = hsz = stbi__get32le(s); + info->mr = info->mg = info->mb = info->ma = 0; + info->extra_read = 14; + + if (info->offset < 0) return stbi__errpuc("bad BMP", "bad BMP"); + + if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108 && hsz != 124) return stbi__errpuc("unknown BMP", "BMP type not supported: unknown"); + if (hsz == 12) { + s->img_x = stbi__get16le(s); + s->img_y = stbi__get16le(s); + } else { + s->img_x = stbi__get32le(s); + s->img_y = stbi__get32le(s); + } + if (stbi__get16le(s) != 1) return stbi__errpuc("bad BMP", "bad BMP"); + info->bpp = stbi__get16le(s); + if (hsz != 12) { + int compress = stbi__get32le(s); + if (compress == 1 || compress == 2) return stbi__errpuc("BMP RLE", "BMP type not supported: RLE"); + if (compress >= 4) return stbi__errpuc("BMP JPEG/PNG", "BMP type not supported: unsupported compression"); // this includes PNG/JPEG modes + if (compress == 3 && info->bpp != 16 && info->bpp != 32) return stbi__errpuc("bad BMP", "bad BMP"); // bitfields requires 16 or 32 bits/pixel + stbi__get32le(s); // discard sizeof + stbi__get32le(s); // discard hres + stbi__get32le(s); // discard vres + stbi__get32le(s); // discard colorsused + stbi__get32le(s); // discard max important + if (hsz == 40 || hsz == 56) { + if (hsz == 56) { + stbi__get32le(s); + stbi__get32le(s); + stbi__get32le(s); + stbi__get32le(s); + } + if (info->bpp == 16 || info->bpp == 32) { + if (compress == 0) { + stbi__bmp_set_mask_defaults(info, compress); + } else if (compress == 3) { + info->mr = stbi__get32le(s); + info->mg = stbi__get32le(s); + info->mb = stbi__get32le(s); + info->extra_read += 12; + // not documented, but generated by photoshop and handled by mspaint + if (info->mr == info->mg && info->mg == info->mb) { + // ?!?!? + return stbi__errpuc("bad BMP", "bad BMP"); + } + } else + return stbi__errpuc("bad BMP", "bad BMP"); + } + } else { + // V4/V5 header + int i; + if (hsz != 108 && hsz != 124) + return stbi__errpuc("bad BMP", "bad BMP"); + info->mr = stbi__get32le(s); + info->mg = stbi__get32le(s); + info->mb = stbi__get32le(s); + info->ma = stbi__get32le(s); + if (compress != 3) // override mr/mg/mb unless in BI_BITFIELDS mode, as per docs + stbi__bmp_set_mask_defaults(info, compress); + stbi__get32le(s); // discard color space + for (i=0; i < 12; ++i) + stbi__get32le(s); // discard color space parameters + if (hsz == 124) { + stbi__get32le(s); // discard rendering intent + stbi__get32le(s); // discard offset of profile data + stbi__get32le(s); // discard size of profile data + stbi__get32le(s); // discard reserved + } + } + } + return (void *) 1; +} + + +static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *out; + unsigned int mr=0,mg=0,mb=0,ma=0, all_a; + stbi_uc pal[256][4]; + int psize=0,i,j,width; + int flip_vertically, pad, target; + stbi__bmp_data info; + STBI_NOTUSED(ri); + + info.all_a = 255; + if (stbi__bmp_parse_header(s, &info) == NULL) + return NULL; // error code already set + + flip_vertically = ((int) s->img_y) > 0; + s->img_y = abs((int) s->img_y); + + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + mr = info.mr; + mg = info.mg; + mb = info.mb; + ma = info.ma; + all_a = info.all_a; + + if (info.hsz == 12) { + if (info.bpp < 24) + psize = (info.offset - info.extra_read - 24) / 3; + } else { + if (info.bpp < 16) + psize = (info.offset - info.extra_read - info.hsz) >> 2; + } + if (psize == 0) { + // accept some number of extra bytes after the header, but if the offset points either to before + // the header ends or implies a large amount of extra data, reject the file as malformed + int bytes_read_so_far = s->callback_already_read + (int)(s->img_buffer - s->img_buffer_original); + int header_limit = 1024; // max we actually read is below 256 bytes currently. + int extra_data_limit = 256*4; // what ordinarily goes here is a palette; 256 entries*4 bytes is its max size. + if (bytes_read_so_far <= 0 || bytes_read_so_far > header_limit) { + return stbi__errpuc("bad header", "Corrupt BMP"); + } + // we established that bytes_read_so_far is positive and sensible. + // the first half of this test rejects offsets that are either too small positives, or + // negative, and guarantees that info.offset >= bytes_read_so_far > 0. this in turn + // ensures the number computed in the second half of the test can't overflow. + if (info.offset < bytes_read_so_far || info.offset - bytes_read_so_far > extra_data_limit) { + return stbi__errpuc("bad offset", "Corrupt BMP"); + } else { + stbi__skip(s, info.offset - bytes_read_so_far); + } + } + + if (info.bpp == 24 && ma == 0xff000000) + s->img_n = 3; + else + s->img_n = ma ? 4 : 3; + if (req_comp && req_comp >= 3) // we can directly decode 3 or 4 + target = req_comp; + else + target = s->img_n; // if they want monochrome, we'll post-convert + + // sanity-check size + if (!stbi__mad3sizes_valid(target, s->img_x, s->img_y, 0)) + return stbi__errpuc("too large", "Corrupt BMP"); + + out = (stbi_uc *) stbi__malloc_mad3(target, s->img_x, s->img_y, 0); + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + if (info.bpp < 16) { + int z=0; + if (psize == 0 || psize > 256) { STBI_FREE(out); return stbi__errpuc("invalid", "Corrupt BMP"); } + for (i=0; i < psize; ++i) { + pal[i][2] = stbi__get8(s); + pal[i][1] = stbi__get8(s); + pal[i][0] = stbi__get8(s); + if (info.hsz != 12) stbi__get8(s); + pal[i][3] = 255; + } + stbi__skip(s, info.offset - info.extra_read - info.hsz - psize * (info.hsz == 12 ? 3 : 4)); + if (info.bpp == 1) width = (s->img_x + 7) >> 3; + else if (info.bpp == 4) width = (s->img_x + 1) >> 1; + else if (info.bpp == 8) width = s->img_x; + else { STBI_FREE(out); return stbi__errpuc("bad bpp", "Corrupt BMP"); } + pad = (-width)&3; + if (info.bpp == 1) { + for (j=0; j < (int) s->img_y; ++j) { + int bit_offset = 7, v = stbi__get8(s); + for (i=0; i < (int) s->img_x; ++i) { + int color = (v>>bit_offset)&0x1; + out[z++] = pal[color][0]; + out[z++] = pal[color][1]; + out[z++] = pal[color][2]; + if (target == 4) out[z++] = 255; + if (i+1 == (int) s->img_x) break; + if((--bit_offset) < 0) { + bit_offset = 7; + v = stbi__get8(s); + } + } + stbi__skip(s, pad); + } + } else { + for (j=0; j < (int) s->img_y; ++j) { + for (i=0; i < (int) s->img_x; i += 2) { + int v=stbi__get8(s),v2=0; + if (info.bpp == 4) { + v2 = v & 15; + v >>= 4; + } + out[z++] = pal[v][0]; + out[z++] = pal[v][1]; + out[z++] = pal[v][2]; + if (target == 4) out[z++] = 255; + if (i+1 == (int) s->img_x) break; + v = (info.bpp == 8) ? stbi__get8(s) : v2; + out[z++] = pal[v][0]; + out[z++] = pal[v][1]; + out[z++] = pal[v][2]; + if (target == 4) out[z++] = 255; + } + stbi__skip(s, pad); + } + } + } else { + int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0; + int z = 0; + int easy=0; + stbi__skip(s, info.offset - info.extra_read - info.hsz); + if (info.bpp == 24) width = 3 * s->img_x; + else if (info.bpp == 16) width = 2*s->img_x; + else /* bpp = 32 and pad = 0 */ width=0; + pad = (-width) & 3; + if (info.bpp == 24) { + easy = 1; + } else if (info.bpp == 32) { + if (mb == 0xff && mg == 0xff00 && mr == 0x00ff0000 && ma == 0xff000000) + easy = 2; + } + if (!easy) { + if (!mr || !mg || !mb) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } + // right shift amt to put high bit in position #7 + rshift = stbi__high_bit(mr)-7; rcount = stbi__bitcount(mr); + gshift = stbi__high_bit(mg)-7; gcount = stbi__bitcount(mg); + bshift = stbi__high_bit(mb)-7; bcount = stbi__bitcount(mb); + ashift = stbi__high_bit(ma)-7; acount = stbi__bitcount(ma); + if (rcount > 8 || gcount > 8 || bcount > 8 || acount > 8) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } + } + for (j=0; j < (int) s->img_y; ++j) { + if (easy) { + for (i=0; i < (int) s->img_x; ++i) { + unsigned char a; + out[z+2] = stbi__get8(s); + out[z+1] = stbi__get8(s); + out[z+0] = stbi__get8(s); + z += 3; + a = (easy == 2 ? stbi__get8(s) : 255); + all_a |= a; + if (target == 4) out[z++] = a; + } + } else { + int bpp = info.bpp; + for (i=0; i < (int) s->img_x; ++i) { + stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s)); + unsigned int a; + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mr, rshift, rcount)); + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mg, gshift, gcount)); + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mb, bshift, bcount)); + a = (ma ? stbi__shiftsigned(v & ma, ashift, acount) : 255); + all_a |= a; + if (target == 4) out[z++] = STBI__BYTECAST(a); + } + } + stbi__skip(s, pad); + } + } + + // if alpha channel is all 0s, replace with all 255s + if (target == 4 && all_a == 0) + for (i=4*s->img_x*s->img_y-1; i >= 0; i -= 4) + out[i] = 255; + + if (flip_vertically) { + stbi_uc t; + for (j=0; j < (int) s->img_y>>1; ++j) { + stbi_uc *p1 = out + j *s->img_x*target; + stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target; + for (i=0; i < (int) s->img_x*target; ++i) { + t = p1[i]; p1[i] = p2[i]; p2[i] = t; + } + } + } + + if (req_comp && req_comp != target) { + out = stbi__convert_format(out, target, req_comp, s->img_x, s->img_y); + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + + *x = s->img_x; + *y = s->img_y; + if (comp) *comp = s->img_n; + return out; +} +#endif + +// Targa Truevision - TGA +// by Jonathan Dummer +#ifndef STBI_NO_TGA +// returns STBI_rgb or whatever, 0 on error +static int stbi__tga_get_comp(int bits_per_pixel, int is_grey, int* is_rgb16) +{ + // only RGB or RGBA (incl. 16bit) or grey allowed + if (is_rgb16) *is_rgb16 = 0; + switch(bits_per_pixel) { + case 8: return STBI_grey; + case 16: if(is_grey) return STBI_grey_alpha; + // fallthrough + case 15: if(is_rgb16) *is_rgb16 = 1; + return STBI_rgb; + case 24: // fallthrough + case 32: return bits_per_pixel/8; + default: return 0; + } +} + +static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp) +{ + int tga_w, tga_h, tga_comp, tga_image_type, tga_bits_per_pixel, tga_colormap_bpp; + int sz, tga_colormap_type; + stbi__get8(s); // discard Offset + tga_colormap_type = stbi__get8(s); // colormap type + if( tga_colormap_type > 1 ) { + stbi__rewind(s); + return 0; // only RGB or indexed allowed + } + tga_image_type = stbi__get8(s); // image type + if ( tga_colormap_type == 1 ) { // colormapped (paletted) image + if (tga_image_type != 1 && tga_image_type != 9) { + stbi__rewind(s); + return 0; + } + stbi__skip(s,4); // skip index of first colormap entry and number of entries + sz = stbi__get8(s); // check bits per palette color entry + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) { + stbi__rewind(s); + return 0; + } + stbi__skip(s,4); // skip image x and y origin + tga_colormap_bpp = sz; + } else { // "normal" image w/o colormap - only RGB or grey allowed, +/- RLE + if ( (tga_image_type != 2) && (tga_image_type != 3) && (tga_image_type != 10) && (tga_image_type != 11) ) { + stbi__rewind(s); + return 0; // only RGB or grey allowed, +/- RLE + } + stbi__skip(s,9); // skip colormap specification and image x/y origin + tga_colormap_bpp = 0; + } + tga_w = stbi__get16le(s); + if( tga_w < 1 ) { + stbi__rewind(s); + return 0; // test width + } + tga_h = stbi__get16le(s); + if( tga_h < 1 ) { + stbi__rewind(s); + return 0; // test height + } + tga_bits_per_pixel = stbi__get8(s); // bits per pixel + stbi__get8(s); // ignore alpha bits + if (tga_colormap_bpp != 0) { + if((tga_bits_per_pixel != 8) && (tga_bits_per_pixel != 16)) { + // when using a colormap, tga_bits_per_pixel is the size of the indexes + // I don't think anything but 8 or 16bit indexes makes sense + stbi__rewind(s); + return 0; + } + tga_comp = stbi__tga_get_comp(tga_colormap_bpp, 0, NULL); + } else { + tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3) || (tga_image_type == 11), NULL); + } + if(!tga_comp) { + stbi__rewind(s); + return 0; + } + if (x) *x = tga_w; + if (y) *y = tga_h; + if (comp) *comp = tga_comp; + return 1; // seems to have passed everything +} + +static int stbi__tga_test(stbi__context *s) +{ + int res = 0; + int sz, tga_color_type; + stbi__get8(s); // discard Offset + tga_color_type = stbi__get8(s); // color type + if ( tga_color_type > 1 ) goto errorEnd; // only RGB or indexed allowed + sz = stbi__get8(s); // image type + if ( tga_color_type == 1 ) { // colormapped (paletted) image + if (sz != 1 && sz != 9) goto errorEnd; // colortype 1 demands image type 1 or 9 + stbi__skip(s,4); // skip index of first colormap entry and number of entries + sz = stbi__get8(s); // check bits per palette color entry + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; + stbi__skip(s,4); // skip image x and y origin + } else { // "normal" image w/o colormap + if ( (sz != 2) && (sz != 3) && (sz != 10) && (sz != 11) ) goto errorEnd; // only RGB or grey allowed, +/- RLE + stbi__skip(s,9); // skip colormap specification and image x/y origin + } + if ( stbi__get16le(s) < 1 ) goto errorEnd; // test width + if ( stbi__get16le(s) < 1 ) goto errorEnd; // test height + sz = stbi__get8(s); // bits per pixel + if ( (tga_color_type == 1) && (sz != 8) && (sz != 16) ) goto errorEnd; // for colormapped images, bpp is size of an index + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; + + res = 1; // if we got this far, everything's good and we can return 1 instead of 0 + +errorEnd: + stbi__rewind(s); + return res; +} + +// read 16bit value and convert to 24bit RGB +static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out) +{ + stbi__uint16 px = (stbi__uint16)stbi__get16le(s); + stbi__uint16 fiveBitMask = 31; + // we have 3 channels with 5bits each + int r = (px >> 10) & fiveBitMask; + int g = (px >> 5) & fiveBitMask; + int b = px & fiveBitMask; + // Note that this saves the data in RGB(A) order, so it doesn't need to be swapped later + out[0] = (stbi_uc)((r * 255)/31); + out[1] = (stbi_uc)((g * 255)/31); + out[2] = (stbi_uc)((b * 255)/31); + + // some people claim that the most significant bit might be used for alpha + // (possibly if an alpha-bit is set in the "image descriptor byte") + // but that only made 16bit test images completely translucent.. + // so let's treat all 15 and 16bit TGAs as RGB with no alpha. +} + +static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + // read in the TGA header stuff + int tga_offset = stbi__get8(s); + int tga_indexed = stbi__get8(s); + int tga_image_type = stbi__get8(s); + int tga_is_RLE = 0; + int tga_palette_start = stbi__get16le(s); + int tga_palette_len = stbi__get16le(s); + int tga_palette_bits = stbi__get8(s); + int tga_x_origin = stbi__get16le(s); + int tga_y_origin = stbi__get16le(s); + int tga_width = stbi__get16le(s); + int tga_height = stbi__get16le(s); + int tga_bits_per_pixel = stbi__get8(s); + int tga_comp, tga_rgb16=0; + int tga_inverted = stbi__get8(s); + // int tga_alpha_bits = tga_inverted & 15; // the 4 lowest bits - unused (useless?) + // image data + unsigned char *tga_data; + unsigned char *tga_palette = NULL; + int i, j; + unsigned char raw_data[4] = {0}; + int RLE_count = 0; + int RLE_repeating = 0; + int read_next_pixel = 1; + STBI_NOTUSED(ri); + STBI_NOTUSED(tga_x_origin); // @TODO + STBI_NOTUSED(tga_y_origin); // @TODO + + if (tga_height > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (tga_width > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + // do a tiny bit of precessing + if ( tga_image_type >= 8 ) + { + tga_image_type -= 8; + tga_is_RLE = 1; + } + tga_inverted = 1 - ((tga_inverted >> 5) & 1); + + // If I'm paletted, then I'll use the number of bits from the palette + if ( tga_indexed ) tga_comp = stbi__tga_get_comp(tga_palette_bits, 0, &tga_rgb16); + else tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3), &tga_rgb16); + + if(!tga_comp) // shouldn't really happen, stbi__tga_test() should have ensured basic consistency + return stbi__errpuc("bad format", "Can't find out TGA pixelformat"); + + // tga info + *x = tga_width; + *y = tga_height; + if (comp) *comp = tga_comp; + + if (!stbi__mad3sizes_valid(tga_width, tga_height, tga_comp, 0)) + return stbi__errpuc("too large", "Corrupt TGA"); + + tga_data = (unsigned char*)stbi__malloc_mad3(tga_width, tga_height, tga_comp, 0); + if (!tga_data) return stbi__errpuc("outofmem", "Out of memory"); + + // skip to the data's starting position (offset usually = 0) + stbi__skip(s, tga_offset ); + + if ( !tga_indexed && !tga_is_RLE && !tga_rgb16 ) { + for (i=0; i < tga_height; ++i) { + int row = tga_inverted ? tga_height -i - 1 : i; + stbi_uc *tga_row = tga_data + row*tga_width*tga_comp; + stbi__getn(s, tga_row, tga_width * tga_comp); + } + } else { + // do I need to load a palette? + if ( tga_indexed) + { + if (tga_palette_len == 0) { /* you have to have at least one entry! */ + STBI_FREE(tga_data); + return stbi__errpuc("bad palette", "Corrupt TGA"); + } + + // any data to skip? (offset usually = 0) + stbi__skip(s, tga_palette_start ); + // load the palette + tga_palette = (unsigned char*)stbi__malloc_mad2(tga_palette_len, tga_comp, 0); + if (!tga_palette) { + STBI_FREE(tga_data); + return stbi__errpuc("outofmem", "Out of memory"); + } + if (tga_rgb16) { + stbi_uc *pal_entry = tga_palette; + STBI_ASSERT(tga_comp == STBI_rgb); + for (i=0; i < tga_palette_len; ++i) { + stbi__tga_read_rgb16(s, pal_entry); + pal_entry += tga_comp; + } + } else if (!stbi__getn(s, tga_palette, tga_palette_len * tga_comp)) { + STBI_FREE(tga_data); + STBI_FREE(tga_palette); + return stbi__errpuc("bad palette", "Corrupt TGA"); + } + } + // load the data + for (i=0; i < tga_width * tga_height; ++i) + { + // if I'm in RLE mode, do I need to get a RLE stbi__pngchunk? + if ( tga_is_RLE ) + { + if ( RLE_count == 0 ) + { + // yep, get the next byte as a RLE command + int RLE_cmd = stbi__get8(s); + RLE_count = 1 + (RLE_cmd & 127); + RLE_repeating = RLE_cmd >> 7; + read_next_pixel = 1; + } else if ( !RLE_repeating ) + { + read_next_pixel = 1; + } + } else + { + read_next_pixel = 1; + } + // OK, if I need to read a pixel, do it now + if ( read_next_pixel ) + { + // load however much data we did have + if ( tga_indexed ) + { + // read in index, then perform the lookup + int pal_idx = (tga_bits_per_pixel == 8) ? stbi__get8(s) : stbi__get16le(s); + if ( pal_idx >= tga_palette_len ) { + // invalid index + pal_idx = 0; + } + pal_idx *= tga_comp; + for (j = 0; j < tga_comp; ++j) { + raw_data[j] = tga_palette[pal_idx+j]; + } + } else if(tga_rgb16) { + STBI_ASSERT(tga_comp == STBI_rgb); + stbi__tga_read_rgb16(s, raw_data); + } else { + // read in the data raw + for (j = 0; j < tga_comp; ++j) { + raw_data[j] = stbi__get8(s); + } + } + // clear the reading flag for the next pixel + read_next_pixel = 0; + } // end of reading a pixel + + // copy data + for (j = 0; j < tga_comp; ++j) + tga_data[i*tga_comp+j] = raw_data[j]; + + // in case we're in RLE mode, keep counting down + --RLE_count; + } + // do I need to invert the image? + if ( tga_inverted ) + { + for (j = 0; j*2 < tga_height; ++j) + { + int index1 = j * tga_width * tga_comp; + int index2 = (tga_height - 1 - j) * tga_width * tga_comp; + for (i = tga_width * tga_comp; i > 0; --i) + { + unsigned char temp = tga_data[index1]; + tga_data[index1] = tga_data[index2]; + tga_data[index2] = temp; + ++index1; + ++index2; + } + } + } + // clear my palette, if I had one + if ( tga_palette != NULL ) + { + STBI_FREE( tga_palette ); + } + } + + // swap RGB - if the source data was RGB16, it already is in the right order + if (tga_comp >= 3 && !tga_rgb16) + { + unsigned char* tga_pixel = tga_data; + for (i=0; i < tga_width * tga_height; ++i) + { + unsigned char temp = tga_pixel[0]; + tga_pixel[0] = tga_pixel[2]; + tga_pixel[2] = temp; + tga_pixel += tga_comp; + } + } + + // convert to target component count + if (req_comp && req_comp != tga_comp) + tga_data = stbi__convert_format(tga_data, tga_comp, req_comp, tga_width, tga_height); + + // the things I do to get rid of an error message, and yet keep + // Microsoft's C compilers happy... [8^( + tga_palette_start = tga_palette_len = tga_palette_bits = + tga_x_origin = tga_y_origin = 0; + STBI_NOTUSED(tga_palette_start); + // OK, done + return tga_data; +} +#endif + +// ************************************************************************************************* +// Photoshop PSD loader -- PD by Thatcher Ulrich, integration by Nicolas Schulz, tweaked by STB + +#ifndef STBI_NO_PSD +static int stbi__psd_test(stbi__context *s) +{ + int r = (stbi__get32be(s) == 0x38425053); + stbi__rewind(s); + return r; +} + +static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount) +{ + int count, nleft, len; + + count = 0; + while ((nleft = pixelCount - count) > 0) { + len = stbi__get8(s); + if (len == 128) { + // No-op. + } else if (len < 128) { + // Copy next len+1 bytes literally. + len++; + if (len > nleft) return 0; // corrupt data + count += len; + while (len) { + *p = stbi__get8(s); + p += 4; + len--; + } + } else if (len > 128) { + stbi_uc val; + // Next -len+1 bytes in the dest are replicated from next source byte. + // (Interpret len as a negative 8-bit int.) + len = 257 - len; + if (len > nleft) return 0; // corrupt data + val = stbi__get8(s); + count += len; + while (len) { + *p = val; + p += 4; + len--; + } + } + } + + return 1; +} + +static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) +{ + int pixelCount; + int channelCount, compression; + int channel, i; + int bitdepth; + int w,h; + stbi_uc *out; + STBI_NOTUSED(ri); + + // Check identifier + if (stbi__get32be(s) != 0x38425053) // "8BPS" + return stbi__errpuc("not PSD", "Corrupt PSD image"); + + // Check file type version. + if (stbi__get16be(s) != 1) + return stbi__errpuc("wrong version", "Unsupported version of PSD image"); + + // Skip 6 reserved bytes. + stbi__skip(s, 6 ); + + // Read the number of channels (R, G, B, A, etc). + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) + return stbi__errpuc("wrong channel count", "Unsupported number of channels in PSD image"); + + // Read the rows and columns of the image. + h = stbi__get32be(s); + w = stbi__get32be(s); + + if (h > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (w > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + // Make sure the depth is 8 bits. + bitdepth = stbi__get16be(s); + if (bitdepth != 8 && bitdepth != 16) + return stbi__errpuc("unsupported bit depth", "PSD bit depth is not 8 or 16 bit"); + + // Make sure the color mode is RGB. + // Valid options are: + // 0: Bitmap + // 1: Grayscale + // 2: Indexed color + // 3: RGB color + // 4: CMYK color + // 7: Multichannel + // 8: Duotone + // 9: Lab color + if (stbi__get16be(s) != 3) + return stbi__errpuc("wrong color format", "PSD is not in RGB color format"); + + // Skip the Mode Data. (It's the palette for indexed color; other info for other modes.) + stbi__skip(s,stbi__get32be(s) ); + + // Skip the image resources. (resolution, pen tool paths, etc) + stbi__skip(s, stbi__get32be(s) ); + + // Skip the reserved data. + stbi__skip(s, stbi__get32be(s) ); + + // Find out if the data is compressed. + // Known values: + // 0: no compression + // 1: RLE compressed + compression = stbi__get16be(s); + if (compression > 1) + return stbi__errpuc("bad compression", "PSD has an unknown compression format"); + + // Check size + if (!stbi__mad3sizes_valid(4, w, h, 0)) + return stbi__errpuc("too large", "Corrupt PSD"); + + // Create the destination image. + + if (!compression && bitdepth == 16 && bpc == 16) { + out = (stbi_uc *) stbi__malloc_mad3(8, w, h, 0); + ri->bits_per_channel = 16; + } else + out = (stbi_uc *) stbi__malloc(4 * w*h); + + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + pixelCount = w*h; + + // Initialize the data to zero. + //memset( out, 0, pixelCount * 4 ); + + // Finally, the image data. + if (compression) { + // RLE as used by .PSD and .TIFF + // Loop until you get the number of unpacked bytes you are expecting: + // Read the next source byte into n. + // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally. + // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times. + // Else if n is 128, noop. + // Endloop + + // The RLE-compressed data is preceded by a 2-byte data count for each row in the data, + // which we're going to just skip. + stbi__skip(s, h * channelCount * 2 ); + + // Read the RLE data by channel. + for (channel = 0; channel < 4; channel++) { + stbi_uc *p; + + p = out+channel; + if (channel >= channelCount) { + // Fill this channel with default data. + for (i = 0; i < pixelCount; i++, p += 4) + *p = (channel == 3 ? 255 : 0); + } else { + // Read the RLE data. + if (!stbi__psd_decode_rle(s, p, pixelCount)) { + STBI_FREE(out); + return stbi__errpuc("corrupt", "bad RLE data"); + } + } + } + + } else { + // We're at the raw image data. It's each channel in order (Red, Green, Blue, Alpha, ...) + // where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image. + + // Read the data by channel. + for (channel = 0; channel < 4; channel++) { + if (channel >= channelCount) { + // Fill this channel with default data. + if (bitdepth == 16 && bpc == 16) { + stbi__uint16 *q = ((stbi__uint16 *) out) + channel; + stbi__uint16 val = channel == 3 ? 65535 : 0; + for (i = 0; i < pixelCount; i++, q += 4) + *q = val; + } else { + stbi_uc *p = out+channel; + stbi_uc val = channel == 3 ? 255 : 0; + for (i = 0; i < pixelCount; i++, p += 4) + *p = val; + } + } else { + if (ri->bits_per_channel == 16) { // output bpc + stbi__uint16 *q = ((stbi__uint16 *) out) + channel; + for (i = 0; i < pixelCount; i++, q += 4) + *q = (stbi__uint16) stbi__get16be(s); + } else { + stbi_uc *p = out+channel; + if (bitdepth == 16) { // input bpc + for (i = 0; i < pixelCount; i++, p += 4) + *p = (stbi_uc) (stbi__get16be(s) >> 8); + } else { + for (i = 0; i < pixelCount; i++, p += 4) + *p = stbi__get8(s); + } + } + } + } + } + + // remove weird white matte from PSD + if (channelCount >= 4) { + if (ri->bits_per_channel == 16) { + for (i=0; i < w*h; ++i) { + stbi__uint16 *pixel = (stbi__uint16 *) out + 4*i; + if (pixel[3] != 0 && pixel[3] != 65535) { + float a = pixel[3] / 65535.0f; + float ra = 1.0f / a; + float inv_a = 65535.0f * (1 - ra); + pixel[0] = (stbi__uint16) (pixel[0]*ra + inv_a); + pixel[1] = (stbi__uint16) (pixel[1]*ra + inv_a); + pixel[2] = (stbi__uint16) (pixel[2]*ra + inv_a); + } + } + } else { + for (i=0; i < w*h; ++i) { + unsigned char *pixel = out + 4*i; + if (pixel[3] != 0 && pixel[3] != 255) { + float a = pixel[3] / 255.0f; + float ra = 1.0f / a; + float inv_a = 255.0f * (1 - ra); + pixel[0] = (unsigned char) (pixel[0]*ra + inv_a); + pixel[1] = (unsigned char) (pixel[1]*ra + inv_a); + pixel[2] = (unsigned char) (pixel[2]*ra + inv_a); + } + } + } + } + + // convert to desired output format + if (req_comp && req_comp != 4) { + if (ri->bits_per_channel == 16) + out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, 4, req_comp, w, h); + else + out = stbi__convert_format(out, 4, req_comp, w, h); + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + + if (comp) *comp = 4; + *y = h; + *x = w; + + return out; +} +#endif + +// ************************************************************************************************* +// Softimage PIC loader +// by Tom Seddon +// +// See http://softimage.wiki.softimage.com/index.php/INFO:_PIC_file_format +// See http://ozviz.wasp.uwa.edu.au/~pbourke/dataformats/softimagepic/ + +#ifndef STBI_NO_PIC +static int stbi__pic_is4(stbi__context *s,const char *str) +{ + int i; + for (i=0; i<4; ++i) + if (stbi__get8(s) != (stbi_uc)str[i]) + return 0; + + return 1; +} + +static int stbi__pic_test_core(stbi__context *s) +{ + int i; + + if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) + return 0; + + for(i=0;i<84;++i) + stbi__get8(s); + + if (!stbi__pic_is4(s,"PICT")) + return 0; + + return 1; +} + +typedef struct +{ + stbi_uc size,type,channel; +} stbi__pic_packet; + +static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest) +{ + int mask=0x80, i; + + for (i=0; i<4; ++i, mask>>=1) { + if (channel & mask) { + if (stbi__at_eof(s)) return stbi__errpuc("bad file","PIC file too short"); + dest[i]=stbi__get8(s); + } + } + + return dest; +} + +static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src) +{ + int mask=0x80,i; + + for (i=0;i<4; ++i, mask>>=1) + if (channel&mask) + dest[i]=src[i]; +} + +static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int height,int *comp, stbi_uc *result) +{ + int act_comp=0,num_packets=0,y,chained; + stbi__pic_packet packets[10]; + + // this will (should...) cater for even some bizarre stuff like having data + // for the same channel in multiple packets. + do { + stbi__pic_packet *packet; + + if (num_packets==sizeof(packets)/sizeof(packets[0])) + return stbi__errpuc("bad format","too many packets"); + + packet = &packets[num_packets++]; + + chained = stbi__get8(s); + packet->size = stbi__get8(s); + packet->type = stbi__get8(s); + packet->channel = stbi__get8(s); + + act_comp |= packet->channel; + + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (reading packets)"); + if (packet->size != 8) return stbi__errpuc("bad format","packet isn't 8bpp"); + } while (chained); + + *comp = (act_comp & 0x10 ? 4 : 3); // has alpha channel? + + for(y=0; ytype) { + default: + return stbi__errpuc("bad format","packet has bad compression type"); + + case 0: {//uncompressed + int x; + + for(x=0;xchannel,dest)) + return 0; + break; + } + + case 1://Pure RLE + { + int left=width, i; + + while (left>0) { + stbi_uc count,value[4]; + + count=stbi__get8(s); + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pure read count)"); + + if (count > left) + count = (stbi_uc) left; + + if (!stbi__readval(s,packet->channel,value)) return 0; + + for(i=0; ichannel,dest,value); + left -= count; + } + } + break; + + case 2: {//Mixed RLE + int left=width; + while (left>0) { + int count = stbi__get8(s), i; + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (mixed read count)"); + + if (count >= 128) { // Repeated + stbi_uc value[4]; + + if (count==128) + count = stbi__get16be(s); + else + count -= 127; + if (count > left) + return stbi__errpuc("bad file","scanline overrun"); + + if (!stbi__readval(s,packet->channel,value)) + return 0; + + for(i=0;ichannel,dest,value); + } else { // Raw + ++count; + if (count>left) return stbi__errpuc("bad file","scanline overrun"); + + for(i=0;ichannel,dest)) + return 0; + } + left-=count; + } + break; + } + } + } + } + + return result; +} + +static void *stbi__pic_load(stbi__context *s,int *px,int *py,int *comp,int req_comp, stbi__result_info *ri) +{ + stbi_uc *result; + int i, x,y, internal_comp; + STBI_NOTUSED(ri); + + if (!comp) comp = &internal_comp; + + for (i=0; i<92; ++i) + stbi__get8(s); + + x = stbi__get16be(s); + y = stbi__get16be(s); + + if (y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pic header)"); + if (!stbi__mad3sizes_valid(x, y, 4, 0)) return stbi__errpuc("too large", "PIC image too large to decode"); + + stbi__get32be(s); //skip `ratio' + stbi__get16be(s); //skip `fields' + stbi__get16be(s); //skip `pad' + + // intermediate buffer is RGBA + result = (stbi_uc *) stbi__malloc_mad3(x, y, 4, 0); + if (!result) return stbi__errpuc("outofmem", "Out of memory"); + memset(result, 0xff, x*y*4); + + if (!stbi__pic_load_core(s,x,y,comp, result)) { + STBI_FREE(result); + result=0; + } + *px = x; + *py = y; + if (req_comp == 0) req_comp = *comp; + result=stbi__convert_format(result,4,req_comp,x,y); + + return result; +} + +static int stbi__pic_test(stbi__context *s) +{ + int r = stbi__pic_test_core(s); + stbi__rewind(s); + return r; +} +#endif + +// ************************************************************************************************* +// GIF loader -- public domain by Jean-Marc Lienher -- simplified/shrunk by stb + +#ifndef STBI_NO_GIF +typedef struct +{ + stbi__int16 prefix; + stbi_uc first; + stbi_uc suffix; +} stbi__gif_lzw; + +typedef struct +{ + int w,h; + stbi_uc *out; // output buffer (always 4 components) + stbi_uc *background; // The current "background" as far as a gif is concerned + stbi_uc *history; + int flags, bgindex, ratio, transparent, eflags; + stbi_uc pal[256][4]; + stbi_uc lpal[256][4]; + stbi__gif_lzw codes[8192]; + stbi_uc *color_table; + int parse, step; + int lflags; + int start_x, start_y; + int max_x, max_y; + int cur_x, cur_y; + int line_size; + int delay; +} stbi__gif; + +static int stbi__gif_test_raw(stbi__context *s) +{ + int sz; + if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0; + sz = stbi__get8(s); + if (sz != '9' && sz != '7') return 0; + if (stbi__get8(s) != 'a') return 0; + return 1; +} + +static int stbi__gif_test(stbi__context *s) +{ + int r = stbi__gif_test_raw(s); + stbi__rewind(s); + return r; +} + +static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256][4], int num_entries, int transp) +{ + int i; + for (i=0; i < num_entries; ++i) { + pal[i][2] = stbi__get8(s); + pal[i][1] = stbi__get8(s); + pal[i][0] = stbi__get8(s); + pal[i][3] = transp == i ? 0 : 255; + } +} + +static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, int is_info) +{ + stbi_uc version; + if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') + return stbi__err("not GIF", "Corrupt GIF"); + + version = stbi__get8(s); + if (version != '7' && version != '9') return stbi__err("not GIF", "Corrupt GIF"); + if (stbi__get8(s) != 'a') return stbi__err("not GIF", "Corrupt GIF"); + + stbi__g_failure_reason = ""; + g->w = stbi__get16le(s); + g->h = stbi__get16le(s); + g->flags = stbi__get8(s); + g->bgindex = stbi__get8(s); + g->ratio = stbi__get8(s); + g->transparent = -1; + + if (g->w > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (g->h > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + + if (comp != 0) *comp = 4; // can't actually tell whether it's 3 or 4 until we parse the comments + + if (is_info) return 1; + + if (g->flags & 0x80) + stbi__gif_parse_colortable(s,g->pal, 2 << (g->flags & 7), -1); + + return 1; +} + +static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp) +{ + stbi__gif* g = (stbi__gif*) stbi__malloc(sizeof(stbi__gif)); + if (!g) return stbi__err("outofmem", "Out of memory"); + if (!stbi__gif_header(s, g, comp, 1)) { + STBI_FREE(g); + stbi__rewind( s ); + return 0; + } + if (x) *x = g->w; + if (y) *y = g->h; + STBI_FREE(g); + return 1; +} + +static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code) +{ + stbi_uc *p, *c; + int idx; + + // recurse to decode the prefixes, since the linked-list is backwards, + // and working backwards through an interleaved image would be nasty + if (g->codes[code].prefix >= 0) + stbi__out_gif_code(g, g->codes[code].prefix); + + if (g->cur_y >= g->max_y) return; + + idx = g->cur_x + g->cur_y; + p = &g->out[idx]; + g->history[idx / 4] = 1; + + c = &g->color_table[g->codes[code].suffix * 4]; + if (c[3] > 128) { // don't render transparent pixels; + p[0] = c[2]; + p[1] = c[1]; + p[2] = c[0]; + p[3] = c[3]; + } + g->cur_x += 4; + + if (g->cur_x >= g->max_x) { + g->cur_x = g->start_x; + g->cur_y += g->step; + + while (g->cur_y >= g->max_y && g->parse > 0) { + g->step = (1 << g->parse) * g->line_size; + g->cur_y = g->start_y + (g->step >> 1); + --g->parse; + } + } +} + +static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g) +{ + stbi_uc lzw_cs; + stbi__int32 len, init_code; + stbi__uint32 first; + stbi__int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear; + stbi__gif_lzw *p; + + lzw_cs = stbi__get8(s); + if (lzw_cs > 12) return NULL; + clear = 1 << lzw_cs; + first = 1; + codesize = lzw_cs + 1; + codemask = (1 << codesize) - 1; + bits = 0; + valid_bits = 0; + for (init_code = 0; init_code < clear; init_code++) { + g->codes[init_code].prefix = -1; + g->codes[init_code].first = (stbi_uc) init_code; + g->codes[init_code].suffix = (stbi_uc) init_code; + } + + // support no starting clear code + avail = clear+2; + oldcode = -1; + + len = 0; + for(;;) { + if (valid_bits < codesize) { + if (len == 0) { + len = stbi__get8(s); // start new block + if (len == 0) + return g->out; + } + --len; + bits |= (stbi__int32) stbi__get8(s) << valid_bits; + valid_bits += 8; + } else { + stbi__int32 code = bits & codemask; + bits >>= codesize; + valid_bits -= codesize; + // @OPTIMIZE: is there some way we can accelerate the non-clear path? + if (code == clear) { // clear code + codesize = lzw_cs + 1; + codemask = (1 << codesize) - 1; + avail = clear + 2; + oldcode = -1; + first = 0; + } else if (code == clear + 1) { // end of stream code + stbi__skip(s, len); + while ((len = stbi__get8(s)) > 0) + stbi__skip(s,len); + return g->out; + } else if (code <= avail) { + if (first) { + return stbi__errpuc("no clear code", "Corrupt GIF"); + } + + if (oldcode >= 0) { + p = &g->codes[avail++]; + if (avail > 8192) { + return stbi__errpuc("too many codes", "Corrupt GIF"); + } + + p->prefix = (stbi__int16) oldcode; + p->first = g->codes[oldcode].first; + p->suffix = (code == avail) ? p->first : g->codes[code].first; + } else if (code == avail) + return stbi__errpuc("illegal code in raster", "Corrupt GIF"); + + stbi__out_gif_code(g, (stbi__uint16) code); + + if ((avail & codemask) == 0 && avail <= 0x0FFF) { + codesize++; + codemask = (1 << codesize) - 1; + } + + oldcode = code; + } else { + return stbi__errpuc("illegal code in raster", "Corrupt GIF"); + } + } + } +} + +// this function is designed to support animated gifs, although stb_image doesn't support it +// two back is the image from two frames ago, used for a very specific disposal format +static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, int req_comp, stbi_uc *two_back) +{ + int dispose; + int first_frame; + int pi; + int pcount; + STBI_NOTUSED(req_comp); + + // on first frame, any non-written pixels get the background colour (non-transparent) + first_frame = 0; + if (g->out == 0) { + if (!stbi__gif_header(s, g, comp,0)) return 0; // stbi__g_failure_reason set by stbi__gif_header + if (!stbi__mad3sizes_valid(4, g->w, g->h, 0)) + return stbi__errpuc("too large", "GIF image is too large"); + pcount = g->w * g->h; + g->out = (stbi_uc *) stbi__malloc(4 * pcount); + g->background = (stbi_uc *) stbi__malloc(4 * pcount); + g->history = (stbi_uc *) stbi__malloc(pcount); + if (!g->out || !g->background || !g->history) + return stbi__errpuc("outofmem", "Out of memory"); + + // image is treated as "transparent" at the start - ie, nothing overwrites the current background; + // background colour is only used for pixels that are not rendered first frame, after that "background" + // color refers to the color that was there the previous frame. + memset(g->out, 0x00, 4 * pcount); + memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent) + memset(g->history, 0x00, pcount); // pixels that were affected previous frame + first_frame = 1; + } else { + // second frame - how do we dispose of the previous one? + dispose = (g->eflags & 0x1C) >> 2; + pcount = g->w * g->h; + + if ((dispose == 3) && (two_back == 0)) { + dispose = 2; // if I don't have an image to revert back to, default to the old background + } + + if (dispose == 3) { // use previous graphic + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi]) { + memcpy( &g->out[pi * 4], &two_back[pi * 4], 4 ); + } + } + } else if (dispose == 2) { + // restore what was changed last frame to background before that frame; + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi]) { + memcpy( &g->out[pi * 4], &g->background[pi * 4], 4 ); + } + } + } else { + // This is a non-disposal case eithe way, so just + // leave the pixels as is, and they will become the new background + // 1: do not dispose + // 0: not specified. + } + + // background is what out is after the undoing of the previou frame; + memcpy( g->background, g->out, 4 * g->w * g->h ); + } + + // clear my history; + memset( g->history, 0x00, g->w * g->h ); // pixels that were affected previous frame + + for (;;) { + int tag = stbi__get8(s); + switch (tag) { + case 0x2C: /* Image Descriptor */ + { + stbi__int32 x, y, w, h; + stbi_uc *o; + + x = stbi__get16le(s); + y = stbi__get16le(s); + w = stbi__get16le(s); + h = stbi__get16le(s); + if (((x + w) > (g->w)) || ((y + h) > (g->h))) + return stbi__errpuc("bad Image Descriptor", "Corrupt GIF"); + + g->line_size = g->w * 4; + g->start_x = x * 4; + g->start_y = y * g->line_size; + g->max_x = g->start_x + w * 4; + g->max_y = g->start_y + h * g->line_size; + g->cur_x = g->start_x; + g->cur_y = g->start_y; + + // if the width of the specified rectangle is 0, that means + // we may not see *any* pixels or the image is malformed; + // to make sure this is caught, move the current y down to + // max_y (which is what out_gif_code checks). + if (w == 0) + g->cur_y = g->max_y; + + g->lflags = stbi__get8(s); + + if (g->lflags & 0x40) { + g->step = 8 * g->line_size; // first interlaced spacing + g->parse = 3; + } else { + g->step = g->line_size; + g->parse = 0; + } + + if (g->lflags & 0x80) { + stbi__gif_parse_colortable(s,g->lpal, 2 << (g->lflags & 7), g->eflags & 0x01 ? g->transparent : -1); + g->color_table = (stbi_uc *) g->lpal; + } else if (g->flags & 0x80) { + g->color_table = (stbi_uc *) g->pal; + } else + return stbi__errpuc("missing color table", "Corrupt GIF"); + + o = stbi__process_gif_raster(s, g); + if (!o) return NULL; + + // if this was the first frame, + pcount = g->w * g->h; + if (first_frame && (g->bgindex > 0)) { + // if first frame, any pixel not drawn to gets the background color + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi] == 0) { + g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be; + memcpy( &g->out[pi * 4], &g->pal[g->bgindex], 4 ); + } + } + } + + return o; + } + + case 0x21: // Comment Extension. + { + int len; + int ext = stbi__get8(s); + if (ext == 0xF9) { // Graphic Control Extension. + len = stbi__get8(s); + if (len == 4) { + g->eflags = stbi__get8(s); + g->delay = 10 * stbi__get16le(s); // delay - 1/100th of a second, saving as 1/1000ths. + + // unset old transparent + if (g->transparent >= 0) { + g->pal[g->transparent][3] = 255; + } + if (g->eflags & 0x01) { + g->transparent = stbi__get8(s); + if (g->transparent >= 0) { + g->pal[g->transparent][3] = 0; + } + } else { + // don't need transparent + stbi__skip(s, 1); + g->transparent = -1; + } + } else { + stbi__skip(s, len); + break; + } + } + while ((len = stbi__get8(s)) != 0) { + stbi__skip(s, len); + } + break; + } + + case 0x3B: // gif stream termination code + return (stbi_uc *) s; // using '1' causes warning on some compilers + + default: + return stbi__errpuc("unknown code", "Corrupt GIF"); + } + } +} + +static void *stbi__load_gif_main_outofmem(stbi__gif *g, stbi_uc *out, int **delays) +{ + STBI_FREE(g->out); + STBI_FREE(g->history); + STBI_FREE(g->background); + + if (out) STBI_FREE(out); + if (delays && *delays) STBI_FREE(*delays); + return stbi__errpuc("outofmem", "Out of memory"); +} + +static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp) +{ + if (stbi__gif_test(s)) { + int layers = 0; + stbi_uc *u = 0; + stbi_uc *out = 0; + stbi_uc *two_back = 0; + stbi__gif g; + int stride; + int out_size = 0; + int delays_size = 0; + + STBI_NOTUSED(out_size); + STBI_NOTUSED(delays_size); + + memset(&g, 0, sizeof(g)); + if (delays) { + *delays = 0; + } + + do { + u = stbi__gif_load_next(s, &g, comp, req_comp, two_back); + if (u == (stbi_uc *) s) u = 0; // end of animated gif marker + + if (u) { + *x = g.w; + *y = g.h; + ++layers; + stride = g.w * g.h * 4; + + if (out) { + void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride ); + if (!tmp) + return stbi__load_gif_main_outofmem(&g, out, delays); + else { + out = (stbi_uc*) tmp; + out_size = layers * stride; + } + + if (delays) { + int *new_delays = (int*) STBI_REALLOC_SIZED( *delays, delays_size, sizeof(int) * layers ); + if (!new_delays) + return stbi__load_gif_main_outofmem(&g, out, delays); + *delays = new_delays; + delays_size = layers * sizeof(int); + } + } else { + out = (stbi_uc*)stbi__malloc( layers * stride ); + if (!out) + return stbi__load_gif_main_outofmem(&g, out, delays); + out_size = layers * stride; + if (delays) { + *delays = (int*) stbi__malloc( layers * sizeof(int) ); + if (!*delays) + return stbi__load_gif_main_outofmem(&g, out, delays); + delays_size = layers * sizeof(int); + } + } + memcpy( out + ((layers - 1) * stride), u, stride ); + if (layers >= 2) { + two_back = out - 2 * stride; + } + + if (delays) { + (*delays)[layers - 1U] = g.delay; + } + } + } while (u != 0); + + // free temp buffer; + STBI_FREE(g.out); + STBI_FREE(g.history); + STBI_FREE(g.background); + + // do the final conversion after loading everything; + if (req_comp && req_comp != 4) + out = stbi__convert_format(out, 4, req_comp, layers * g.w, g.h); + + *z = layers; + return out; + } else { + return stbi__errpuc("not GIF", "Image was not as a gif type."); + } +} + +static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *u = 0; + stbi__gif g; + memset(&g, 0, sizeof(g)); + STBI_NOTUSED(ri); + + u = stbi__gif_load_next(s, &g, comp, req_comp, 0); + if (u == (stbi_uc *) s) u = 0; // end of animated gif marker + if (u) { + *x = g.w; + *y = g.h; + + // moved conversion to after successful load so that the same + // can be done for multiple frames. + if (req_comp && req_comp != 4) + u = stbi__convert_format(u, 4, req_comp, g.w, g.h); + } else if (g.out) { + // if there was an error and we allocated an image buffer, free it! + STBI_FREE(g.out); + } + + // free buffers needed for multiple frame loading; + STBI_FREE(g.history); + STBI_FREE(g.background); + + return u; +} + +static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp) +{ + return stbi__gif_info_raw(s,x,y,comp); +} +#endif + +// ************************************************************************************************* +// Radiance RGBE HDR loader +// originally by Nicolas Schulz +#ifndef STBI_NO_HDR +static int stbi__hdr_test_core(stbi__context *s, const char *signature) +{ + int i; + for (i=0; signature[i]; ++i) + if (stbi__get8(s) != signature[i]) + return 0; + stbi__rewind(s); + return 1; +} + +static int stbi__hdr_test(stbi__context* s) +{ + int r = stbi__hdr_test_core(s, "#?RADIANCE\n"); + stbi__rewind(s); + if(!r) { + r = stbi__hdr_test_core(s, "#?RGBE\n"); + stbi__rewind(s); + } + return r; +} + +#define STBI__HDR_BUFLEN 1024 +static char *stbi__hdr_gettoken(stbi__context *z, char *buffer) +{ + int len=0; + char c = '\0'; + + c = (char) stbi__get8(z); + + while (!stbi__at_eof(z) && c != '\n') { + buffer[len++] = c; + if (len == STBI__HDR_BUFLEN-1) { + // flush to end of line + while (!stbi__at_eof(z) && stbi__get8(z) != '\n') + ; + break; + } + c = (char) stbi__get8(z); + } + + buffer[len] = 0; + return buffer; +} + +static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp) +{ + if ( input[3] != 0 ) { + float f1; + // Exponent + f1 = (float) ldexp(1.0f, input[3] - (int)(128 + 8)); + if (req_comp <= 2) + output[0] = (input[0] + input[1] + input[2]) * f1 / 3; + else { + output[0] = input[0] * f1; + output[1] = input[1] * f1; + output[2] = input[2] * f1; + } + if (req_comp == 2) output[1] = 1; + if (req_comp == 4) output[3] = 1; + } else { + switch (req_comp) { + case 4: output[3] = 1; /* fallthrough */ + case 3: output[0] = output[1] = output[2] = 0; + break; + case 2: output[1] = 1; /* fallthrough */ + case 1: output[0] = 0; + break; + } + } +} + +static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + char buffer[STBI__HDR_BUFLEN]; + char *token; + int valid = 0; + int width, height; + stbi_uc *scanline; + float *hdr_data; + int len; + unsigned char count, value; + int i, j, k, c1,c2, z; + const char *headerToken; + STBI_NOTUSED(ri); + + // Check identifier + headerToken = stbi__hdr_gettoken(s,buffer); + if (strcmp(headerToken, "#?RADIANCE") != 0 && strcmp(headerToken, "#?RGBE") != 0) + return stbi__errpf("not HDR", "Corrupt HDR image"); + + // Parse header + for(;;) { + token = stbi__hdr_gettoken(s,buffer); + if (token[0] == 0) break; + if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; + } + + if (!valid) return stbi__errpf("unsupported format", "Unsupported HDR format"); + + // Parse width and height + // can't use sscanf() if we're not using stdio! + token = stbi__hdr_gettoken(s,buffer); + if (strncmp(token, "-Y ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); + token += 3; + height = (int) strtol(token, &token, 10); + while (*token == ' ') ++token; + if (strncmp(token, "+X ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); + token += 3; + width = (int) strtol(token, NULL, 10); + + if (height > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); + if (width > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); + + *x = width; + *y = height; + + if (comp) *comp = 3; + if (req_comp == 0) req_comp = 3; + + if (!stbi__mad4sizes_valid(width, height, req_comp, sizeof(float), 0)) + return stbi__errpf("too large", "HDR image is too large"); + + // Read data + hdr_data = (float *) stbi__malloc_mad4(width, height, req_comp, sizeof(float), 0); + if (!hdr_data) + return stbi__errpf("outofmem", "Out of memory"); + + // Load image data + // image data is stored as some number of sca + if ( width < 8 || width >= 32768) { + // Read flat data + for (j=0; j < height; ++j) { + for (i=0; i < width; ++i) { + stbi_uc rgbe[4]; + main_decode_loop: + stbi__getn(s, rgbe, 4); + stbi__hdr_convert(hdr_data + j * width * req_comp + i * req_comp, rgbe, req_comp); + } + } + } else { + // Read RLE-encoded data + scanline = NULL; + + for (j = 0; j < height; ++j) { + c1 = stbi__get8(s); + c2 = stbi__get8(s); + len = stbi__get8(s); + if (c1 != 2 || c2 != 2 || (len & 0x80)) { + // not run-length encoded, so we have to actually use THIS data as a decoded + // pixel (note this can't be a valid pixel--one of RGB must be >= 128) + stbi_uc rgbe[4]; + rgbe[0] = (stbi_uc) c1; + rgbe[1] = (stbi_uc) c2; + rgbe[2] = (stbi_uc) len; + rgbe[3] = (stbi_uc) stbi__get8(s); + stbi__hdr_convert(hdr_data, rgbe, req_comp); + i = 1; + j = 0; + STBI_FREE(scanline); + goto main_decode_loop; // yes, this makes no sense + } + len <<= 8; + len |= stbi__get8(s); + if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded scanline length", "corrupt HDR"); } + if (scanline == NULL) { + scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0); + if (!scanline) { + STBI_FREE(hdr_data); + return stbi__errpf("outofmem", "Out of memory"); + } + } + + for (k = 0; k < 4; ++k) { + int nleft; + i = 0; + while ((nleft = width - i) > 0) { + count = stbi__get8(s); + if (count > 128) { + // Run + value = stbi__get8(s); + count -= 128; + if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } + for (z = 0; z < count; ++z) + scanline[i++ * 4 + k] = value; + } else { + // Dump + if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } + for (z = 0; z < count; ++z) + scanline[i++ * 4 + k] = stbi__get8(s); + } + } + } + for (i=0; i < width; ++i) + stbi__hdr_convert(hdr_data+(j*width + i)*req_comp, scanline + i*4, req_comp); + } + if (scanline) + STBI_FREE(scanline); + } + + return hdr_data; +} + +static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp) +{ + char buffer[STBI__HDR_BUFLEN]; + char *token; + int valid = 0; + int dummy; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + if (stbi__hdr_test(s) == 0) { + stbi__rewind( s ); + return 0; + } + + for(;;) { + token = stbi__hdr_gettoken(s,buffer); + if (token[0] == 0) break; + if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; + } + + if (!valid) { + stbi__rewind( s ); + return 0; + } + token = stbi__hdr_gettoken(s,buffer); + if (strncmp(token, "-Y ", 3)) { + stbi__rewind( s ); + return 0; + } + token += 3; + *y = (int) strtol(token, &token, 10); + while (*token == ' ') ++token; + if (strncmp(token, "+X ", 3)) { + stbi__rewind( s ); + return 0; + } + token += 3; + *x = (int) strtol(token, NULL, 10); + *comp = 3; + return 1; +} +#endif // STBI_NO_HDR + +#ifndef STBI_NO_BMP +static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp) +{ + void *p; + stbi__bmp_data info; + + info.all_a = 255; + p = stbi__bmp_parse_header(s, &info); + if (p == NULL) { + stbi__rewind( s ); + return 0; + } + if (x) *x = s->img_x; + if (y) *y = s->img_y; + if (comp) { + if (info.bpp == 24 && info.ma == 0xff000000) + *comp = 3; + else + *comp = info.ma ? 4 : 3; + } + return 1; +} +#endif + +#ifndef STBI_NO_PSD +static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp) +{ + int channelCount, dummy, depth; + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + if (stbi__get32be(s) != 0x38425053) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 1) { + stbi__rewind( s ); + return 0; + } + stbi__skip(s, 6); + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) { + stbi__rewind( s ); + return 0; + } + *y = stbi__get32be(s); + *x = stbi__get32be(s); + depth = stbi__get16be(s); + if (depth != 8 && depth != 16) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 3) { + stbi__rewind( s ); + return 0; + } + *comp = 4; + return 1; +} + +static int stbi__psd_is16(stbi__context *s) +{ + int channelCount, depth; + if (stbi__get32be(s) != 0x38425053) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 1) { + stbi__rewind( s ); + return 0; + } + stbi__skip(s, 6); + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) { + stbi__rewind( s ); + return 0; + } + STBI_NOTUSED(stbi__get32be(s)); + STBI_NOTUSED(stbi__get32be(s)); + depth = stbi__get16be(s); + if (depth != 16) { + stbi__rewind( s ); + return 0; + } + return 1; +} +#endif + +#ifndef STBI_NO_PIC +static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp) +{ + int act_comp=0,num_packets=0,chained,dummy; + stbi__pic_packet packets[10]; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) { + stbi__rewind(s); + return 0; + } + + stbi__skip(s, 88); + + *x = stbi__get16be(s); + *y = stbi__get16be(s); + if (stbi__at_eof(s)) { + stbi__rewind( s); + return 0; + } + if ( (*x) != 0 && (1 << 28) / (*x) < (*y)) { + stbi__rewind( s ); + return 0; + } + + stbi__skip(s, 8); + + do { + stbi__pic_packet *packet; + + if (num_packets==sizeof(packets)/sizeof(packets[0])) + return 0; + + packet = &packets[num_packets++]; + chained = stbi__get8(s); + packet->size = stbi__get8(s); + packet->type = stbi__get8(s); + packet->channel = stbi__get8(s); + act_comp |= packet->channel; + + if (stbi__at_eof(s)) { + stbi__rewind( s ); + return 0; + } + if (packet->size != 8) { + stbi__rewind( s ); + return 0; + } + } while (chained); + + *comp = (act_comp & 0x10 ? 4 : 3); + + return 1; +} +#endif + +// ************************************************************************************************* +// Portable Gray Map and Portable Pixel Map loader +// by Ken Miller +// +// PGM: http://netpbm.sourceforge.net/doc/pgm.html +// PPM: http://netpbm.sourceforge.net/doc/ppm.html +// +// Known limitations: +// Does not support comments in the header section +// Does not support ASCII image data (formats P2 and P3) + +#ifndef STBI_NO_PNM + +static int stbi__pnm_test(stbi__context *s) +{ + char p, t; + p = (char) stbi__get8(s); + t = (char) stbi__get8(s); + if (p != 'P' || (t != '5' && t != '6')) { + stbi__rewind( s ); + return 0; + } + return 1; +} + +static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *out; + STBI_NOTUSED(ri); + + ri->bits_per_channel = stbi__pnm_info(s, (int *)&s->img_x, (int *)&s->img_y, (int *)&s->img_n); + if (ri->bits_per_channel == 0) + return 0; + + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + *x = s->img_x; + *y = s->img_y; + if (comp) *comp = s->img_n; + + if (!stbi__mad4sizes_valid(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0)) + return stbi__errpuc("too large", "PNM too large"); + + out = (stbi_uc *) stbi__malloc_mad4(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0); + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + if (!stbi__getn(s, out, s->img_n * s->img_x * s->img_y * (ri->bits_per_channel / 8))) { + STBI_FREE(out); + return stbi__errpuc("bad PNM", "PNM file truncated"); + } + + if (req_comp && req_comp != s->img_n) { + if (ri->bits_per_channel == 16) { + out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, s->img_n, req_comp, s->img_x, s->img_y); + } else { + out = stbi__convert_format(out, s->img_n, req_comp, s->img_x, s->img_y); + } + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + return out; +} + +static int stbi__pnm_isspace(char c) +{ + return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'; +} + +static void stbi__pnm_skip_whitespace(stbi__context *s, char *c) +{ + for (;;) { + while (!stbi__at_eof(s) && stbi__pnm_isspace(*c)) + *c = (char) stbi__get8(s); + + if (stbi__at_eof(s) || *c != '#') + break; + + while (!stbi__at_eof(s) && *c != '\n' && *c != '\r' ) + *c = (char) stbi__get8(s); + } +} + +static int stbi__pnm_isdigit(char c) +{ + return c >= '0' && c <= '9'; +} + +static int stbi__pnm_getinteger(stbi__context *s, char *c) +{ + int value = 0; + + while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) { + value = value*10 + (*c - '0'); + *c = (char) stbi__get8(s); + if((value > 214748364) || (value == 214748364 && *c > '7')) + return stbi__err("integer parse overflow", "Parsing an integer in the PPM header overflowed a 32-bit int"); + } + + return value; +} + +static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp) +{ + int maxv, dummy; + char c, p, t; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + stbi__rewind(s); + + // Get identifier + p = (char) stbi__get8(s); + t = (char) stbi__get8(s); + if (p != 'P' || (t != '5' && t != '6')) { + stbi__rewind(s); + return 0; + } + + *comp = (t == '6') ? 3 : 1; // '5' is 1-component .pgm; '6' is 3-component .ppm + + c = (char) stbi__get8(s); + stbi__pnm_skip_whitespace(s, &c); + + *x = stbi__pnm_getinteger(s, &c); // read width + if(*x == 0) + return stbi__err("invalid width", "PPM image header had zero or overflowing width"); + stbi__pnm_skip_whitespace(s, &c); + + *y = stbi__pnm_getinteger(s, &c); // read height + if (*y == 0) + return stbi__err("invalid width", "PPM image header had zero or overflowing width"); + stbi__pnm_skip_whitespace(s, &c); + + maxv = stbi__pnm_getinteger(s, &c); // read max value + if (maxv > 65535) + return stbi__err("max value > 65535", "PPM image supports only 8-bit and 16-bit images"); + else if (maxv > 255) + return 16; + else + return 8; +} + +static int stbi__pnm_is16(stbi__context *s) +{ + if (stbi__pnm_info(s, NULL, NULL, NULL) == 16) + return 1; + return 0; +} +#endif + +static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp) +{ + #ifndef STBI_NO_JPEG + if (stbi__jpeg_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PNG + if (stbi__png_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_GIF + if (stbi__gif_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_BMP + if (stbi__bmp_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PSD + if (stbi__psd_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PIC + if (stbi__pic_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PNM + if (stbi__pnm_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_HDR + if (stbi__hdr_info(s, x, y, comp)) return 1; + #endif + + // test tga last because it's a crappy test! + #ifndef STBI_NO_TGA + if (stbi__tga_info(s, x, y, comp)) + return 1; + #endif + return stbi__err("unknown image type", "Image not of any known type, or corrupt"); +} + +static int stbi__is_16_main(stbi__context *s) +{ + #ifndef STBI_NO_PNG + if (stbi__png_is16(s)) return 1; + #endif + + #ifndef STBI_NO_PSD + if (stbi__psd_is16(s)) return 1; + #endif + + #ifndef STBI_NO_PNM + if (stbi__pnm_is16(s)) return 1; + #endif + return 0; +} + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result; + if (!f) return stbi__err("can't fopen", "Unable to open file"); + result = stbi_info_from_file(f, x, y, comp); + fclose(f); + return result; +} + +STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp) +{ + int r; + stbi__context s; + long pos = ftell(f); + stbi__start_file(&s, f); + r = stbi__info_main(&s,x,y,comp); + fseek(f,pos,SEEK_SET); + return r; +} + +STBIDEF int stbi_is_16_bit(char const *filename) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result; + if (!f) return stbi__err("can't fopen", "Unable to open file"); + result = stbi_is_16_bit_from_file(f); + fclose(f); + return result; +} + +STBIDEF int stbi_is_16_bit_from_file(FILE *f) +{ + int r; + stbi__context s; + long pos = ftell(f); + stbi__start_file(&s, f); + r = stbi__is_16_main(&s); + fseek(f,pos,SEEK_SET); + return r; +} +#endif // !STBI_NO_STDIO + +STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__info_main(&s,x,y,comp); +} + +STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); + return stbi__info_main(&s,x,y,comp); +} + +STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__is_16_main(&s); +} + +STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); + return stbi__is_16_main(&s); +} + +#endif // STB_IMAGE_IMPLEMENTATION + +/* + revision history: + 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs + 2.19 (2018-02-11) fix warning + 2.18 (2018-01-30) fix warnings + 2.17 (2018-01-29) change sbti__shiftsigned to avoid clang -O2 bug + 1-bit BMP + *_is_16_bit api + avoid warnings + 2.16 (2017-07-23) all functions have 16-bit variants; + STBI_NO_STDIO works again; + compilation fixes; + fix rounding in unpremultiply; + optimize vertical flip; + disable raw_len validation; + documentation fixes + 2.15 (2017-03-18) fix png-1,2,4 bug; now all Imagenet JPGs decode; + warning fixes; disable run-time SSE detection on gcc; + uniform handling of optional "return" values; + thread-safe initialization of zlib tables + 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs + 2.13 (2016-11-29) add 16-bit API, only supported for PNG right now + 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes + 2.11 (2016-04-02) allocate large structures on the stack + remove white matting for transparent PSD + fix reported channel count for PNG & BMP + re-enable SSE2 in non-gcc 64-bit + support RGB-formatted JPEG + read 16-bit PNGs (only as 8-bit) + 2.10 (2016-01-22) avoid warning introduced in 2.09 by STBI_REALLOC_SIZED + 2.09 (2016-01-16) allow comments in PNM files + 16-bit-per-pixel TGA (not bit-per-component) + info() for TGA could break due to .hdr handling + info() for BMP to shares code instead of sloppy parse + can use STBI_REALLOC_SIZED if allocator doesn't support realloc + code cleanup + 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA + 2.07 (2015-09-13) fix compiler warnings + partial animated GIF support + limited 16-bpc PSD support + #ifdef unused functions + bug with < 92 byte PIC,PNM,HDR,TGA + 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value + 2.05 (2015-04-19) fix bug in progressive JPEG handling, fix warning + 2.04 (2015-04-15) try to re-enable SIMD on MinGW 64-bit + 2.03 (2015-04-12) extra corruption checking (mmozeiko) + stbi_set_flip_vertically_on_load (nguillemot) + fix NEON support; fix mingw support + 2.02 (2015-01-19) fix incorrect assert, fix warning + 2.01 (2015-01-17) fix various warnings; suppress SIMD on gcc 32-bit without -msse2 + 2.00b (2014-12-25) fix STBI_MALLOC in progressive JPEG + 2.00 (2014-12-25) optimize JPG, including x86 SSE2 & NEON SIMD (ryg) + progressive JPEG (stb) + PGM/PPM support (Ken Miller) + STBI_MALLOC,STBI_REALLOC,STBI_FREE + GIF bugfix -- seemingly never worked + STBI_NO_*, STBI_ONLY_* + 1.48 (2014-12-14) fix incorrectly-named assert() + 1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb) + optimize PNG (ryg) + fix bug in interlaced PNG with user-specified channel count (stb) + 1.46 (2014-08-26) + fix broken tRNS chunk (colorkey-style transparency) in non-paletted PNG + 1.45 (2014-08-16) + fix MSVC-ARM internal compiler error by wrapping malloc + 1.44 (2014-08-07) + various warning fixes from Ronny Chevalier + 1.43 (2014-07-15) + fix MSVC-only compiler problem in code changed in 1.42 + 1.42 (2014-07-09) + don't define _CRT_SECURE_NO_WARNINGS (affects user code) + fixes to stbi__cleanup_jpeg path + added STBI_ASSERT to avoid requiring assert.h + 1.41 (2014-06-25) + fix search&replace from 1.36 that messed up comments/error messages + 1.40 (2014-06-22) + fix gcc struct-initialization warning + 1.39 (2014-06-15) + fix to TGA optimization when req_comp != number of components in TGA; + fix to GIF loading because BMP wasn't rewinding (whoops, no GIFs in my test suite) + add support for BMP version 5 (more ignored fields) + 1.38 (2014-06-06) + suppress MSVC warnings on integer casts truncating values + fix accidental rename of 'skip' field of I/O + 1.37 (2014-06-04) + remove duplicate typedef + 1.36 (2014-06-03) + convert to header file single-file library + if de-iphone isn't set, load iphone images color-swapped instead of returning NULL + 1.35 (2014-05-27) + various warnings + fix broken STBI_SIMD path + fix bug where stbi_load_from_file no longer left file pointer in correct place + fix broken non-easy path for 32-bit BMP (possibly never used) + TGA optimization by Arseny Kapoulkine + 1.34 (unknown) + use STBI_NOTUSED in stbi__resample_row_generic(), fix one more leak in tga failure case + 1.33 (2011-07-14) + make stbi_is_hdr work in STBI_NO_HDR (as specified), minor compiler-friendly improvements + 1.32 (2011-07-13) + support for "info" function for all supported filetypes (SpartanJ) + 1.31 (2011-06-20) + a few more leak fixes, bug in PNG handling (SpartanJ) + 1.30 (2011-06-11) + added ability to load files via callbacks to accomidate custom input streams (Ben Wenger) + removed deprecated format-specific test/load functions + removed support for installable file formats (stbi_loader) -- would have been broken for IO callbacks anyway + error cases in bmp and tga give messages and don't leak (Raymond Barbiero, grisha) + fix inefficiency in decoding 32-bit BMP (David Woo) + 1.29 (2010-08-16) + various warning fixes from Aurelien Pocheville + 1.28 (2010-08-01) + fix bug in GIF palette transparency (SpartanJ) + 1.27 (2010-08-01) + cast-to-stbi_uc to fix warnings + 1.26 (2010-07-24) + fix bug in file buffering for PNG reported by SpartanJ + 1.25 (2010-07-17) + refix trans_data warning (Won Chun) + 1.24 (2010-07-12) + perf improvements reading from files on platforms with lock-heavy fgetc() + minor perf improvements for jpeg + deprecated type-specific functions so we'll get feedback if they're needed + attempt to fix trans_data warning (Won Chun) + 1.23 fixed bug in iPhone support + 1.22 (2010-07-10) + removed image *writing* support + stbi_info support from Jetro Lauha + GIF support from Jean-Marc Lienher + iPhone PNG-extensions from James Brown + warning-fixes from Nicolas Schulz and Janez Zemva (i.stbi__err. Janez (U+017D)emva) + 1.21 fix use of 'stbi_uc' in header (reported by jon blow) + 1.20 added support for Softimage PIC, by Tom Seddon + 1.19 bug in interlaced PNG corruption check (found by ryg) + 1.18 (2008-08-02) + fix a threading bug (local mutable static) + 1.17 support interlaced PNG + 1.16 major bugfix - stbi__convert_format converted one too many pixels + 1.15 initialize some fields for thread safety + 1.14 fix threadsafe conversion bug + header-file-only version (#define STBI_HEADER_FILE_ONLY before including) + 1.13 threadsafe + 1.12 const qualifiers in the API + 1.11 Support installable IDCT, colorspace conversion routines + 1.10 Fixes for 64-bit (don't use "unsigned long") + optimized upsampling by Fabian "ryg" Giesen + 1.09 Fix format-conversion for PSD code (bad global variables!) + 1.08 Thatcher Ulrich's PSD code integrated by Nicolas Schulz + 1.07 attempt to fix C++ warning/errors again + 1.06 attempt to fix C++ warning/errors again + 1.05 fix TGA loading to return correct *comp and use good luminance calc + 1.04 default float alpha is 1, not 255; use 'void *' for stbi_image_free + 1.03 bugfixes to STBI_NO_STDIO, STBI_NO_HDR + 1.02 support for (subset of) HDR files, float interface for preferred access to them + 1.01 fix bug: possible bug in handling right-side up bmps... not sure + fix bug: the stbi__bmp_load() and stbi__tga_load() functions didn't work at all + 1.00 interface to zlib that skips zlib header + 0.99 correct handling of alpha in palette + 0.98 TGA loader by lonesock; dynamically add loaders (untested) + 0.97 jpeg errors on too large a file; also catch another malloc failure + 0.96 fix detection of invalid v value - particleman@mollyrocket forum + 0.95 during header scan, seek to markers in case of padding + 0.94 STBI_NO_STDIO to disable stdio usage; rename all #defines the same + 0.93 handle jpegtran output; verbose errors + 0.92 read 4,8,16,24,32-bit BMP files of several formats + 0.91 output 24-bit Windows 3.0 BMP files + 0.90 fix a few more warnings; bump version number to approach 1.0 + 0.61 bugfixes due to Marc LeBlanc, Christopher Lloyd + 0.60 fix compiling as c++ + 0.59 fix warnings: merge Dave Moore's -Wall fixes + 0.58 fix bug: zlib uncompressed mode len/nlen was wrong endian + 0.57 fix bug: jpg last huffman symbol before marker was >9 bits but less than 16 available + 0.56 fix bug: zlib uncompressed mode len vs. nlen + 0.55 fix bug: restart_interval not initialized to 0 + 0.54 allow NULL for 'int *comp' + 0.53 fix bug in png 3->4; speedup png decoding + 0.52 png handles req_comp=3,4 directly; minor cleanup; jpeg comments + 0.51 obey req_comp requests, 1-component jpegs return as 1-component, + on 'test' only check type, not whether we support this variant + 0.50 (2006-11-19) + first released version +*/ + + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/application-performance/demos/tau/01_no_instrumentation/src/common/stb_image_write.h b/application-performance/demos/tau/01_no_instrumentation/src/common/stb_image_write.h new file mode 100644 index 000000000..e4b32ed1b --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/common/stb_image_write.h @@ -0,0 +1,1724 @@ +/* stb_image_write - v1.16 - public domain - http://nothings.org/stb + writes out PNG/BMP/TGA/JPEG/HDR images to C stdio - Sean Barrett 2010-2015 + no warranty implied; use at your own risk + + Before #including, + + #define STB_IMAGE_WRITE_IMPLEMENTATION + + in the file that you want to have the implementation. + + Will probably not work correctly with strict-aliasing optimizations. + +ABOUT: + + This header file is a library for writing images to C stdio or a callback. + + The PNG output is not optimal; it is 20-50% larger than the file + written by a decent optimizing implementation; though providing a custom + zlib compress function (see STBIW_ZLIB_COMPRESS) can mitigate that. + This library is designed for source code compactness and simplicity, + not optimal image file size or run-time performance. + +BUILDING: + + You can #define STBIW_ASSERT(x) before the #include to avoid using assert.h. + You can #define STBIW_MALLOC(), STBIW_REALLOC(), and STBIW_FREE() to replace + malloc,realloc,free. + You can #define STBIW_MEMMOVE() to replace memmove() + You can #define STBIW_ZLIB_COMPRESS to use a custom zlib-style compress function + for PNG compression (instead of the builtin one), it must have the following signature: + unsigned char * my_compress(unsigned char *data, int data_len, int *out_len, int quality); + The returned data will be freed with STBIW_FREE() (free() by default), + so it must be heap allocated with STBIW_MALLOC() (malloc() by default), + +UNICODE: + + If compiling for Windows and you wish to use Unicode filenames, compile + with + #define STBIW_WINDOWS_UTF8 + and pass utf8-encoded filenames. Call stbiw_convert_wchar_to_utf8 to convert + Windows wchar_t filenames to utf8. + +USAGE: + + There are five functions, one for each image file format: + + int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes); + int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data); + int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data); + int stbi_write_jpg(char const *filename, int w, int h, int comp, const void *data, int quality); + int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data); + + void stbi_flip_vertically_on_write(int flag); // flag is non-zero to flip data vertically + + There are also five equivalent functions that use an arbitrary write function. You are + expected to open/close your file-equivalent before and after calling these: + + int stbi_write_png_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data, int stride_in_bytes); + int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); + int stbi_write_tga_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); + int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const float *data); + int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality); + + where the callback is: + void stbi_write_func(void *context, void *data, int size); + + You can configure it with these global variables: + int stbi_write_tga_with_rle; // defaults to true; set to 0 to disable RLE + int stbi_write_png_compression_level; // defaults to 8; set to higher for more compression + int stbi_write_force_png_filter; // defaults to -1; set to 0..5 to force a filter mode + + + You can define STBI_WRITE_NO_STDIO to disable the file variant of these + functions, so the library will not use stdio.h at all. However, this will + also disable HDR writing, because it requires stdio for formatted output. + + Each function returns 0 on failure and non-0 on success. + + The functions create an image file defined by the parameters. The image + is a rectangle of pixels stored from left-to-right, top-to-bottom. + Each pixel contains 'comp' channels of data stored interleaved with 8-bits + per channel, in the following order: 1=Y, 2=YA, 3=RGB, 4=RGBA. (Y is + monochrome color.) The rectangle is 'w' pixels wide and 'h' pixels tall. + The *data pointer points to the first byte of the top-left-most pixel. + For PNG, "stride_in_bytes" is the distance in bytes from the first byte of + a row of pixels to the first byte of the next row of pixels. + + PNG creates output files with the same number of components as the input. + The BMP format expands Y to RGB in the file format and does not + output alpha. + + PNG supports writing rectangles of data even when the bytes storing rows of + data are not consecutive in memory (e.g. sub-rectangles of a larger image), + by supplying the stride between the beginning of adjacent rows. The other + formats do not. (Thus you cannot write a native-format BMP through the BMP + writer, both because it is in BGR order and because it may have padding + at the end of the line.) + + PNG allows you to set the deflate compression level by setting the global + variable 'stbi_write_png_compression_level' (it defaults to 8). + + HDR expects linear float data. Since the format is always 32-bit rgb(e) + data, alpha (if provided) is discarded, and for monochrome data it is + replicated across all three channels. + + TGA supports RLE or non-RLE compressed data. To use non-RLE-compressed + data, set the global variable 'stbi_write_tga_with_rle' to 0. + + JPEG does ignore alpha channels in input data; quality is between 1 and 100. + Higher quality looks better but results in a bigger image. + JPEG baseline (no JPEG progressive). + +CREDITS: + + + Sean Barrett - PNG/BMP/TGA + Baldur Karlsson - HDR + Jean-Sebastien Guay - TGA monochrome + Tim Kelsey - misc enhancements + Alan Hickman - TGA RLE + Emmanuel Julien - initial file IO callback implementation + Jon Olick - original jo_jpeg.cpp code + Daniel Gibson - integrate JPEG, allow external zlib + Aarni Koskela - allow choosing PNG filter + + bugfixes: + github:Chribba + Guillaume Chereau + github:jry2 + github:romigrou + Sergio Gonzalez + Jonas Karlsson + Filip Wasil + Thatcher Ulrich + github:poppolopoppo + Patrick Boettcher + github:xeekworx + Cap Petschulat + Simon Rodriguez + Ivan Tikhonov + github:ignotion + Adam Schackart + Andrew Kensler + +LICENSE + + See end of file for license information. + +*/ + +#ifndef INCLUDE_STB_IMAGE_WRITE_H +#define INCLUDE_STB_IMAGE_WRITE_H + +#include + +// if STB_IMAGE_WRITE_STATIC causes problems, try defining STBIWDEF to 'inline' or 'static inline' +#ifndef STBIWDEF +#ifdef STB_IMAGE_WRITE_STATIC +#define STBIWDEF static +#else +#ifdef __cplusplus +#define STBIWDEF extern "C" +#else +#define STBIWDEF extern +#endif +#endif +#endif + +#ifndef STB_IMAGE_WRITE_STATIC // C++ forbids static forward declarations +STBIWDEF int stbi_write_tga_with_rle; +STBIWDEF int stbi_write_png_compression_level; +STBIWDEF int stbi_write_force_png_filter; +#endif + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes); +STBIWDEF int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data); +STBIWDEF int stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality); + +#ifdef STBIW_WINDOWS_UTF8 +STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); +#endif +#endif + +typedef void stbi_write_func(void *context, void *data, int size); + +STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data, int stride_in_bytes); +STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_tga_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const float *data); +STBIWDEF int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality); + +STBIWDEF void stbi_flip_vertically_on_write(int flip_boolean); + +#endif//INCLUDE_STB_IMAGE_WRITE_H + +#ifdef STB_IMAGE_WRITE_IMPLEMENTATION + +#ifdef _WIN32 + #ifndef _CRT_SECURE_NO_WARNINGS + #define _CRT_SECURE_NO_WARNINGS + #endif + #ifndef _CRT_NONSTDC_NO_DEPRECATE + #define _CRT_NONSTDC_NO_DEPRECATE + #endif +#endif + +#ifndef STBI_WRITE_NO_STDIO +#include +#endif // STBI_WRITE_NO_STDIO + +#include +#include +#include +#include + +#if defined(STBIW_MALLOC) && defined(STBIW_FREE) && (defined(STBIW_REALLOC) || defined(STBIW_REALLOC_SIZED)) +// ok +#elif !defined(STBIW_MALLOC) && !defined(STBIW_FREE) && !defined(STBIW_REALLOC) && !defined(STBIW_REALLOC_SIZED) +// ok +#else +#error "Must define all or none of STBIW_MALLOC, STBIW_FREE, and STBIW_REALLOC (or STBIW_REALLOC_SIZED)." +#endif + +#ifndef STBIW_MALLOC +#define STBIW_MALLOC(sz) malloc(sz) +#define STBIW_REALLOC(p,newsz) realloc(p,newsz) +#define STBIW_FREE(p) free(p) +#endif + +#ifndef STBIW_REALLOC_SIZED +#define STBIW_REALLOC_SIZED(p,oldsz,newsz) STBIW_REALLOC(p,newsz) +#endif + + +#ifndef STBIW_MEMMOVE +#define STBIW_MEMMOVE(a,b,sz) memmove(a,b,sz) +#endif + + +#ifndef STBIW_ASSERT +#include +#define STBIW_ASSERT(x) assert(x) +#endif + +#define STBIW_UCHAR(x) (unsigned char) ((x) & 0xff) + +#ifdef STB_IMAGE_WRITE_STATIC +static int stbi_write_png_compression_level = 8; +static int stbi_write_tga_with_rle = 1; +static int stbi_write_force_png_filter = -1; +#else +int stbi_write_png_compression_level = 8; +int stbi_write_tga_with_rle = 1; +int stbi_write_force_png_filter = -1; +#endif + +static int stbi__flip_vertically_on_write = 0; + +STBIWDEF void stbi_flip_vertically_on_write(int flag) +{ + stbi__flip_vertically_on_write = flag; +} + +typedef struct +{ + stbi_write_func *func; + void *context; + unsigned char buffer[64]; + int buf_used; +} stbi__write_context; + +// initialize a callback-based context +static void stbi__start_write_callbacks(stbi__write_context *s, stbi_write_func *c, void *context) +{ + s->func = c; + s->context = context; +} + +#ifndef STBI_WRITE_NO_STDIO + +static void stbi__stdio_write(void *context, void *data, int size) +{ + fwrite(data,1,size,(FILE*) context); +} + +#if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) +#ifdef __cplusplus +#define STBIW_EXTERN extern "C" +#else +#define STBIW_EXTERN extern +#endif +STBIW_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); +STBIW_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); + +STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) +{ + return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); +} +#endif + +static FILE *stbiw__fopen(char const *filename, char const *mode) +{ + FILE *f; +#if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) + wchar_t wMode[64]; + wchar_t wFilename[1024]; + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename))) + return 0; + + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode))) + return 0; + +#if defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != _wfopen_s(&f, wFilename, wMode)) + f = 0; +#else + f = _wfopen(wFilename, wMode); +#endif + +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != fopen_s(&f, filename, mode)) + f=0; +#else + f = fopen(filename, mode); +#endif + return f; +} + +static int stbi__start_write_file(stbi__write_context *s, const char *filename) +{ + FILE *f = stbiw__fopen(filename, "wb"); + stbi__start_write_callbacks(s, stbi__stdio_write, (void *) f); + return f != NULL; +} + +static void stbi__end_write_file(stbi__write_context *s) +{ + fclose((FILE *)s->context); +} + +#endif // !STBI_WRITE_NO_STDIO + +typedef unsigned int stbiw_uint32; +typedef int stb_image_write_test[sizeof(stbiw_uint32)==4 ? 1 : -1]; + +static void stbiw__writefv(stbi__write_context *s, const char *fmt, va_list v) +{ + while (*fmt) { + switch (*fmt++) { + case ' ': break; + case '1': { unsigned char x = STBIW_UCHAR(va_arg(v, int)); + s->func(s->context,&x,1); + break; } + case '2': { int x = va_arg(v,int); + unsigned char b[2]; + b[0] = STBIW_UCHAR(x); + b[1] = STBIW_UCHAR(x>>8); + s->func(s->context,b,2); + break; } + case '4': { stbiw_uint32 x = va_arg(v,int); + unsigned char b[4]; + b[0]=STBIW_UCHAR(x); + b[1]=STBIW_UCHAR(x>>8); + b[2]=STBIW_UCHAR(x>>16); + b[3]=STBIW_UCHAR(x>>24); + s->func(s->context,b,4); + break; } + default: + STBIW_ASSERT(0); + return; + } + } +} + +static void stbiw__writef(stbi__write_context *s, const char *fmt, ...) +{ + va_list v; + va_start(v, fmt); + stbiw__writefv(s, fmt, v); + va_end(v); +} + +static void stbiw__write_flush(stbi__write_context *s) +{ + if (s->buf_used) { + s->func(s->context, &s->buffer, s->buf_used); + s->buf_used = 0; + } +} + +static void stbiw__putc(stbi__write_context *s, unsigned char c) +{ + s->func(s->context, &c, 1); +} + +static void stbiw__write1(stbi__write_context *s, unsigned char a) +{ + if ((size_t)s->buf_used + 1 > sizeof(s->buffer)) + stbiw__write_flush(s); + s->buffer[s->buf_used++] = a; +} + +static void stbiw__write3(stbi__write_context *s, unsigned char a, unsigned char b, unsigned char c) +{ + int n; + if ((size_t)s->buf_used + 3 > sizeof(s->buffer)) + stbiw__write_flush(s); + n = s->buf_used; + s->buf_used = n+3; + s->buffer[n+0] = a; + s->buffer[n+1] = b; + s->buffer[n+2] = c; +} + +static void stbiw__write_pixel(stbi__write_context *s, int rgb_dir, int comp, int write_alpha, int expand_mono, unsigned char *d) +{ + unsigned char bg[3] = { 255, 0, 255}, px[3]; + int k; + + if (write_alpha < 0) + stbiw__write1(s, d[comp - 1]); + + switch (comp) { + case 2: // 2 pixels = mono + alpha, alpha is written separately, so same as 1-channel case + case 1: + if (expand_mono) + stbiw__write3(s, d[0], d[0], d[0]); // monochrome bmp + else + stbiw__write1(s, d[0]); // monochrome TGA + break; + case 4: + if (!write_alpha) { + // composite against pink background + for (k = 0; k < 3; ++k) + px[k] = bg[k] + ((d[k] - bg[k]) * d[3]) / 255; + stbiw__write3(s, px[1 - rgb_dir], px[1], px[1 + rgb_dir]); + break; + } + /* FALLTHROUGH */ + case 3: + stbiw__write3(s, d[1 - rgb_dir], d[1], d[1 + rgb_dir]); + break; + } + if (write_alpha > 0) + stbiw__write1(s, d[comp - 1]); +} + +static void stbiw__write_pixels(stbi__write_context *s, int rgb_dir, int vdir, int x, int y, int comp, void *data, int write_alpha, int scanline_pad, int expand_mono) +{ + stbiw_uint32 zero = 0; + int i,j, j_end; + + if (y <= 0) + return; + + if (stbi__flip_vertically_on_write) + vdir *= -1; + + if (vdir < 0) { + j_end = -1; j = y-1; + } else { + j_end = y; j = 0; + } + + for (; j != j_end; j += vdir) { + for (i=0; i < x; ++i) { + unsigned char *d = (unsigned char *) data + (j*x+i)*comp; + stbiw__write_pixel(s, rgb_dir, comp, write_alpha, expand_mono, d); + } + stbiw__write_flush(s); + s->func(s->context, &zero, scanline_pad); + } +} + +static int stbiw__outfile(stbi__write_context *s, int rgb_dir, int vdir, int x, int y, int comp, int expand_mono, void *data, int alpha, int pad, const char *fmt, ...) +{ + if (y < 0 || x < 0) { + return 0; + } else { + va_list v; + va_start(v, fmt); + stbiw__writefv(s, fmt, v); + va_end(v); + stbiw__write_pixels(s,rgb_dir,vdir,x,y,comp,data,alpha,pad, expand_mono); + return 1; + } +} + +static int stbi_write_bmp_core(stbi__write_context *s, int x, int y, int comp, const void *data) +{ + if (comp != 4) { + // write RGB bitmap + int pad = (-x*3) & 3; + return stbiw__outfile(s,-1,-1,x,y,comp,1,(void *) data,0,pad, + "11 4 22 4" "4 44 22 444444", + 'B', 'M', 14+40+(x*3+pad)*y, 0,0, 14+40, // file header + 40, x,y, 1,24, 0,0,0,0,0,0); // bitmap header + } else { + // RGBA bitmaps need a v4 header + // use BI_BITFIELDS mode with 32bpp and alpha mask + // (straight BI_RGB with alpha mask doesn't work in most readers) + return stbiw__outfile(s,-1,-1,x,y,comp,1,(void *)data,1,0, + "11 4 22 4" "4 44 22 444444 4444 4 444 444 444 444", + 'B', 'M', 14+108+x*y*4, 0, 0, 14+108, // file header + 108, x,y, 1,32, 3,0,0,0,0,0, 0xff0000,0xff00,0xff,0xff000000u, 0, 0,0,0, 0,0,0, 0,0,0, 0,0,0); // bitmap V4 header + } +} + +STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_bmp_core(&s, x, y, comp, data); +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_bmp(char const *filename, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_bmp_core(&s, x, y, comp, data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif //!STBI_WRITE_NO_STDIO + +static int stbi_write_tga_core(stbi__write_context *s, int x, int y, int comp, void *data) +{ + int has_alpha = (comp == 2 || comp == 4); + int colorbytes = has_alpha ? comp-1 : comp; + int format = colorbytes < 2 ? 3 : 2; // 3 color channels (RGB/RGBA) = 2, 1 color channel (Y/YA) = 3 + + if (y < 0 || x < 0) + return 0; + + if (!stbi_write_tga_with_rle) { + return stbiw__outfile(s, -1, -1, x, y, comp, 0, (void *) data, has_alpha, 0, + "111 221 2222 11", 0, 0, format, 0, 0, 0, 0, 0, x, y, (colorbytes + has_alpha) * 8, has_alpha * 8); + } else { + int i,j,k; + int jend, jdir; + + stbiw__writef(s, "111 221 2222 11", 0,0,format+8, 0,0,0, 0,0,x,y, (colorbytes + has_alpha) * 8, has_alpha * 8); + + if (stbi__flip_vertically_on_write) { + j = 0; + jend = y; + jdir = 1; + } else { + j = y-1; + jend = -1; + jdir = -1; + } + for (; j != jend; j += jdir) { + unsigned char *row = (unsigned char *) data + j * x * comp; + int len; + + for (i = 0; i < x; i += len) { + unsigned char *begin = row + i * comp; + int diff = 1; + len = 1; + + if (i < x - 1) { + ++len; + diff = memcmp(begin, row + (i + 1) * comp, comp); + if (diff) { + const unsigned char *prev = begin; + for (k = i + 2; k < x && len < 128; ++k) { + if (memcmp(prev, row + k * comp, comp)) { + prev += comp; + ++len; + } else { + --len; + break; + } + } + } else { + for (k = i + 2; k < x && len < 128; ++k) { + if (!memcmp(begin, row + k * comp, comp)) { + ++len; + } else { + break; + } + } + } + } + + if (diff) { + unsigned char header = STBIW_UCHAR(len - 1); + stbiw__write1(s, header); + for (k = 0; k < len; ++k) { + stbiw__write_pixel(s, -1, comp, has_alpha, 0, begin + k * comp); + } + } else { + unsigned char header = STBIW_UCHAR(len - 129); + stbiw__write1(s, header); + stbiw__write_pixel(s, -1, comp, has_alpha, 0, begin); + } + } + } + stbiw__write_flush(s); + } + return 1; +} + +STBIWDEF int stbi_write_tga_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_tga_core(&s, x, y, comp, (void *) data); +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_tga(char const *filename, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_tga_core(&s, x, y, comp, (void *) data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif + +// ************************************************************************************************* +// Radiance RGBE HDR writer +// by Baldur Karlsson + +#define stbiw__max(a, b) ((a) > (b) ? (a) : (b)) + +#ifndef STBI_WRITE_NO_STDIO + +static void stbiw__linear_to_rgbe(unsigned char *rgbe, float *linear) +{ + int exponent; + float maxcomp = stbiw__max(linear[0], stbiw__max(linear[1], linear[2])); + + if (maxcomp < 1e-32f) { + rgbe[0] = rgbe[1] = rgbe[2] = rgbe[3] = 0; + } else { + float normalize = (float) frexp(maxcomp, &exponent) * 256.0f/maxcomp; + + rgbe[0] = (unsigned char)(linear[0] * normalize); + rgbe[1] = (unsigned char)(linear[1] * normalize); + rgbe[2] = (unsigned char)(linear[2] * normalize); + rgbe[3] = (unsigned char)(exponent + 128); + } +} + +static void stbiw__write_run_data(stbi__write_context *s, int length, unsigned char databyte) +{ + unsigned char lengthbyte = STBIW_UCHAR(length+128); + STBIW_ASSERT(length+128 <= 255); + s->func(s->context, &lengthbyte, 1); + s->func(s->context, &databyte, 1); +} + +static void stbiw__write_dump_data(stbi__write_context *s, int length, unsigned char *data) +{ + unsigned char lengthbyte = STBIW_UCHAR(length); + STBIW_ASSERT(length <= 128); // inconsistent with spec but consistent with official code + s->func(s->context, &lengthbyte, 1); + s->func(s->context, data, length); +} + +static void stbiw__write_hdr_scanline(stbi__write_context *s, int width, int ncomp, unsigned char *scratch, float *scanline) +{ + unsigned char scanlineheader[4] = { 2, 2, 0, 0 }; + unsigned char rgbe[4]; + float linear[3]; + int x; + + scanlineheader[2] = (width&0xff00)>>8; + scanlineheader[3] = (width&0x00ff); + + /* skip RLE for images too small or large */ + if (width < 8 || width >= 32768) { + for (x=0; x < width; x++) { + switch (ncomp) { + case 4: /* fallthrough */ + case 3: linear[2] = scanline[x*ncomp + 2]; + linear[1] = scanline[x*ncomp + 1]; + linear[0] = scanline[x*ncomp + 0]; + break; + default: + linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; + break; + } + stbiw__linear_to_rgbe(rgbe, linear); + s->func(s->context, rgbe, 4); + } + } else { + int c,r; + /* encode into scratch buffer */ + for (x=0; x < width; x++) { + switch(ncomp) { + case 4: /* fallthrough */ + case 3: linear[2] = scanline[x*ncomp + 2]; + linear[1] = scanline[x*ncomp + 1]; + linear[0] = scanline[x*ncomp + 0]; + break; + default: + linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; + break; + } + stbiw__linear_to_rgbe(rgbe, linear); + scratch[x + width*0] = rgbe[0]; + scratch[x + width*1] = rgbe[1]; + scratch[x + width*2] = rgbe[2]; + scratch[x + width*3] = rgbe[3]; + } + + s->func(s->context, scanlineheader, 4); + + /* RLE each component separately */ + for (c=0; c < 4; c++) { + unsigned char *comp = &scratch[width*c]; + + x = 0; + while (x < width) { + // find first run + r = x; + while (r+2 < width) { + if (comp[r] == comp[r+1] && comp[r] == comp[r+2]) + break; + ++r; + } + if (r+2 >= width) + r = width; + // dump up to first run + while (x < r) { + int len = r-x; + if (len > 128) len = 128; + stbiw__write_dump_data(s, len, &comp[x]); + x += len; + } + // if there's a run, output it + if (r+2 < width) { // same test as what we break out of in search loop, so only true if we break'd + // find next byte after run + while (r < width && comp[r] == comp[x]) + ++r; + // output run up to r + while (x < r) { + int len = r-x; + if (len > 127) len = 127; + stbiw__write_run_data(s, len, comp[x]); + x += len; + } + } + } + } + } +} + +static int stbi_write_hdr_core(stbi__write_context *s, int x, int y, int comp, float *data) +{ + if (y <= 0 || x <= 0 || data == NULL) + return 0; + else { + // Each component is stored separately. Allocate scratch space for full output scanline. + unsigned char *scratch = (unsigned char *) STBIW_MALLOC(x*4); + int i, len; + char buffer[128]; + char header[] = "#?RADIANCE\n# Written by stb_image_write.h\nFORMAT=32-bit_rle_rgbe\n"; + s->func(s->context, header, sizeof(header)-1); + +#ifdef __STDC_LIB_EXT1__ + len = sprintf_s(buffer, sizeof(buffer), "EXPOSURE= 1.0000000000000\n\n-Y %d +X %d\n", y, x); +#else + len = sprintf(buffer, "EXPOSURE= 1.0000000000000\n\n-Y %d +X %d\n", y, x); +#endif + s->func(s->context, buffer, len); + + for(i=0; i < y; i++) + stbiw__write_hdr_scanline(s, x, comp, scratch, data + comp*x*(stbi__flip_vertically_on_write ? y-1-i : i)); + STBIW_FREE(scratch); + return 1; + } +} + +STBIWDEF int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const float *data) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_hdr_core(&s, x, y, comp, (float *) data); +} + +STBIWDEF int stbi_write_hdr(char const *filename, int x, int y, int comp, const float *data) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_hdr_core(&s, x, y, comp, (float *) data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif // STBI_WRITE_NO_STDIO + + +////////////////////////////////////////////////////////////////////////////// +// +// PNG writer +// + +#ifndef STBIW_ZLIB_COMPRESS +// stretchy buffer; stbiw__sbpush() == vector<>::push_back() -- stbiw__sbcount() == vector<>::size() +#define stbiw__sbraw(a) ((int *) (void *) (a) - 2) +#define stbiw__sbm(a) stbiw__sbraw(a)[0] +#define stbiw__sbn(a) stbiw__sbraw(a)[1] + +#define stbiw__sbneedgrow(a,n) ((a)==0 || stbiw__sbn(a)+n >= stbiw__sbm(a)) +#define stbiw__sbmaybegrow(a,n) (stbiw__sbneedgrow(a,(n)) ? stbiw__sbgrow(a,n) : 0) +#define stbiw__sbgrow(a,n) stbiw__sbgrowf((void **) &(a), (n), sizeof(*(a))) + +#define stbiw__sbpush(a, v) (stbiw__sbmaybegrow(a,1), (a)[stbiw__sbn(a)++] = (v)) +#define stbiw__sbcount(a) ((a) ? stbiw__sbn(a) : 0) +#define stbiw__sbfree(a) ((a) ? STBIW_FREE(stbiw__sbraw(a)),0 : 0) + +static void *stbiw__sbgrowf(void **arr, int increment, int itemsize) +{ + int m = *arr ? 2*stbiw__sbm(*arr)+increment : increment+1; + void *p = STBIW_REALLOC_SIZED(*arr ? stbiw__sbraw(*arr) : 0, *arr ? (stbiw__sbm(*arr)*itemsize + sizeof(int)*2) : 0, itemsize * m + sizeof(int)*2); + STBIW_ASSERT(p); + if (p) { + if (!*arr) ((int *) p)[1] = 0; + *arr = (void *) ((int *) p + 2); + stbiw__sbm(*arr) = m; + } + return *arr; +} + +static unsigned char *stbiw__zlib_flushf(unsigned char *data, unsigned int *bitbuffer, int *bitcount) +{ + while (*bitcount >= 8) { + stbiw__sbpush(data, STBIW_UCHAR(*bitbuffer)); + *bitbuffer >>= 8; + *bitcount -= 8; + } + return data; +} + +static int stbiw__zlib_bitrev(int code, int codebits) +{ + int res=0; + while (codebits--) { + res = (res << 1) | (code & 1); + code >>= 1; + } + return res; +} + +static unsigned int stbiw__zlib_countm(unsigned char *a, unsigned char *b, int limit) +{ + int i; + for (i=0; i < limit && i < 258; ++i) + if (a[i] != b[i]) break; + return i; +} + +static unsigned int stbiw__zhash(unsigned char *data) +{ + stbiw_uint32 hash = data[0] + (data[1] << 8) + (data[2] << 16); + hash ^= hash << 3; + hash += hash >> 5; + hash ^= hash << 4; + hash += hash >> 17; + hash ^= hash << 25; + hash += hash >> 6; + return hash; +} + +#define stbiw__zlib_flush() (out = stbiw__zlib_flushf(out, &bitbuf, &bitcount)) +#define stbiw__zlib_add(code,codebits) \ + (bitbuf |= (code) << bitcount, bitcount += (codebits), stbiw__zlib_flush()) +#define stbiw__zlib_huffa(b,c) stbiw__zlib_add(stbiw__zlib_bitrev(b,c),c) +// default huffman tables +#define stbiw__zlib_huff1(n) stbiw__zlib_huffa(0x30 + (n), 8) +#define stbiw__zlib_huff2(n) stbiw__zlib_huffa(0x190 + (n)-144, 9) +#define stbiw__zlib_huff3(n) stbiw__zlib_huffa(0 + (n)-256,7) +#define stbiw__zlib_huff4(n) stbiw__zlib_huffa(0xc0 + (n)-280,8) +#define stbiw__zlib_huff(n) ((n) <= 143 ? stbiw__zlib_huff1(n) : (n) <= 255 ? stbiw__zlib_huff2(n) : (n) <= 279 ? stbiw__zlib_huff3(n) : stbiw__zlib_huff4(n)) +#define stbiw__zlib_huffb(n) ((n) <= 143 ? stbiw__zlib_huff1(n) : stbiw__zlib_huff2(n)) + +#define stbiw__ZHASH 16384 + +#endif // STBIW_ZLIB_COMPRESS + +STBIWDEF unsigned char * stbi_zlib_compress(unsigned char *data, int data_len, int *out_len, int quality) +{ +#ifdef STBIW_ZLIB_COMPRESS + // user provided a zlib compress implementation, use that + return STBIW_ZLIB_COMPRESS(data, data_len, out_len, quality); +#else // use builtin + static unsigned short lengthc[] = { 3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258, 259 }; + static unsigned char lengtheb[]= { 0,0,0,0,0,0,0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0 }; + static unsigned short distc[] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577, 32768 }; + static unsigned char disteb[] = { 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13 }; + unsigned int bitbuf=0; + int i,j, bitcount=0; + unsigned char *out = NULL; + unsigned char ***hash_table = (unsigned char***) STBIW_MALLOC(stbiw__ZHASH * sizeof(unsigned char**)); + if (hash_table == NULL) + return NULL; + if (quality < 5) quality = 5; + + stbiw__sbpush(out, 0x78); // DEFLATE 32K window + stbiw__sbpush(out, 0x5e); // FLEVEL = 1 + stbiw__zlib_add(1,1); // BFINAL = 1 + stbiw__zlib_add(1,2); // BTYPE = 1 -- fixed huffman + + for (i=0; i < stbiw__ZHASH; ++i) + hash_table[i] = NULL; + + i=0; + while (i < data_len-3) { + // hash next 3 bytes of data to be compressed + int h = stbiw__zhash(data+i)&(stbiw__ZHASH-1), best=3; + unsigned char *bestloc = 0; + unsigned char **hlist = hash_table[h]; + int n = stbiw__sbcount(hlist); + for (j=0; j < n; ++j) { + if (hlist[j]-data > i-32768) { // if entry lies within window + int d = stbiw__zlib_countm(hlist[j], data+i, data_len-i); + if (d >= best) { best=d; bestloc=hlist[j]; } + } + } + // when hash table entry is too long, delete half the entries + if (hash_table[h] && stbiw__sbn(hash_table[h]) == 2*quality) { + STBIW_MEMMOVE(hash_table[h], hash_table[h]+quality, sizeof(hash_table[h][0])*quality); + stbiw__sbn(hash_table[h]) = quality; + } + stbiw__sbpush(hash_table[h],data+i); + + if (bestloc) { + // "lazy matching" - check match at *next* byte, and if it's better, do cur byte as literal + h = stbiw__zhash(data+i+1)&(stbiw__ZHASH-1); + hlist = hash_table[h]; + n = stbiw__sbcount(hlist); + for (j=0; j < n; ++j) { + if (hlist[j]-data > i-32767) { + int e = stbiw__zlib_countm(hlist[j], data+i+1, data_len-i-1); + if (e > best) { // if next match is better, bail on current match + bestloc = NULL; + break; + } + } + } + } + + if (bestloc) { + int d = (int) (data+i - bestloc); // distance back + STBIW_ASSERT(d <= 32767 && best <= 258); + for (j=0; best > lengthc[j+1]-1; ++j); + stbiw__zlib_huff(j+257); + if (lengtheb[j]) stbiw__zlib_add(best - lengthc[j], lengtheb[j]); + for (j=0; d > distc[j+1]-1; ++j); + stbiw__zlib_add(stbiw__zlib_bitrev(j,5),5); + if (disteb[j]) stbiw__zlib_add(d - distc[j], disteb[j]); + i += best; + } else { + stbiw__zlib_huffb(data[i]); + ++i; + } + } + // write out final bytes + for (;i < data_len; ++i) + stbiw__zlib_huffb(data[i]); + stbiw__zlib_huff(256); // end of block + // pad with 0 bits to byte boundary + while (bitcount) + stbiw__zlib_add(0,1); + + for (i=0; i < stbiw__ZHASH; ++i) + (void) stbiw__sbfree(hash_table[i]); + STBIW_FREE(hash_table); + + // store uncompressed instead if compression was worse + if (stbiw__sbn(out) > data_len + 2 + ((data_len+32766)/32767)*5) { + stbiw__sbn(out) = 2; // truncate to DEFLATE 32K window and FLEVEL = 1 + for (j = 0; j < data_len;) { + int blocklen = data_len - j; + if (blocklen > 32767) blocklen = 32767; + stbiw__sbpush(out, data_len - j == blocklen); // BFINAL = ?, BTYPE = 0 -- no compression + stbiw__sbpush(out, STBIW_UCHAR(blocklen)); // LEN + stbiw__sbpush(out, STBIW_UCHAR(blocklen >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(~blocklen)); // NLEN + stbiw__sbpush(out, STBIW_UCHAR(~blocklen >> 8)); + memcpy(out+stbiw__sbn(out), data+j, blocklen); + stbiw__sbn(out) += blocklen; + j += blocklen; + } + } + + { + // compute adler32 on input + unsigned int s1=1, s2=0; + int blocklen = (int) (data_len % 5552); + j=0; + while (j < data_len) { + for (i=0; i < blocklen; ++i) { s1 += data[j+i]; s2 += s1; } + s1 %= 65521; s2 %= 65521; + j += blocklen; + blocklen = 5552; + } + stbiw__sbpush(out, STBIW_UCHAR(s2 >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(s2)); + stbiw__sbpush(out, STBIW_UCHAR(s1 >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(s1)); + } + *out_len = stbiw__sbn(out); + // make returned pointer freeable + STBIW_MEMMOVE(stbiw__sbraw(out), out, *out_len); + return (unsigned char *) stbiw__sbraw(out); +#endif // STBIW_ZLIB_COMPRESS +} + +static unsigned int stbiw__crc32(unsigned char *buffer, int len) +{ +#ifdef STBIW_CRC32 + return STBIW_CRC32(buffer, len); +#else + static unsigned int crc_table[256] = + { + 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3, + 0x0eDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91, + 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, + 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5, + 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B, + 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59, + 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F, + 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D, + 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433, + 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01, + 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457, + 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65, + 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2, 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, + 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9, + 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F, + 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD, + 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683, + 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, + 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE, 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7, + 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5, + 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B, + 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79, + 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F, + 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D, + 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713, + 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, + 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777, + 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C, 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, + 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB, + 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9, + 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF, + 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D + }; + + unsigned int crc = ~0u; + int i; + for (i=0; i < len; ++i) + crc = (crc >> 8) ^ crc_table[buffer[i] ^ (crc & 0xff)]; + return ~crc; +#endif +} + +#define stbiw__wpng4(o,a,b,c,d) ((o)[0]=STBIW_UCHAR(a),(o)[1]=STBIW_UCHAR(b),(o)[2]=STBIW_UCHAR(c),(o)[3]=STBIW_UCHAR(d),(o)+=4) +#define stbiw__wp32(data,v) stbiw__wpng4(data, (v)>>24,(v)>>16,(v)>>8,(v)); +#define stbiw__wptag(data,s) stbiw__wpng4(data, s[0],s[1],s[2],s[3]) + +static void stbiw__wpcrc(unsigned char **data, int len) +{ + unsigned int crc = stbiw__crc32(*data - len - 4, len+4); + stbiw__wp32(*data, crc); +} + +static unsigned char stbiw__paeth(int a, int b, int c) +{ + int p = a + b - c, pa = abs(p-a), pb = abs(p-b), pc = abs(p-c); + if (pa <= pb && pa <= pc) return STBIW_UCHAR(a); + if (pb <= pc) return STBIW_UCHAR(b); + return STBIW_UCHAR(c); +} + +// @OPTIMIZE: provide an option that always forces left-predict or paeth predict +static void stbiw__encode_png_line(unsigned char *pixels, int stride_bytes, int width, int height, int y, int n, int filter_type, signed char *line_buffer) +{ + static int mapping[] = { 0,1,2,3,4 }; + static int firstmap[] = { 0,1,0,5,6 }; + int *mymap = (y != 0) ? mapping : firstmap; + int i; + int type = mymap[filter_type]; + unsigned char *z = pixels + stride_bytes * (stbi__flip_vertically_on_write ? height-1-y : y); + int signed_stride = stbi__flip_vertically_on_write ? -stride_bytes : stride_bytes; + + if (type==0) { + memcpy(line_buffer, z, width*n); + return; + } + + // first loop isn't optimized since it's just one pixel + for (i = 0; i < n; ++i) { + switch (type) { + case 1: line_buffer[i] = z[i]; break; + case 2: line_buffer[i] = z[i] - z[i-signed_stride]; break; + case 3: line_buffer[i] = z[i] - (z[i-signed_stride]>>1); break; + case 4: line_buffer[i] = (signed char) (z[i] - stbiw__paeth(0,z[i-signed_stride],0)); break; + case 5: line_buffer[i] = z[i]; break; + case 6: line_buffer[i] = z[i]; break; + } + } + switch (type) { + case 1: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - z[i-n]; break; + case 2: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - z[i-signed_stride]; break; + case 3: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - ((z[i-n] + z[i-signed_stride])>>1); break; + case 4: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], z[i-signed_stride], z[i-signed_stride-n]); break; + case 5: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - (z[i-n]>>1); break; + case 6: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], 0,0); break; + } +} + +STBIWDEF unsigned char *stbi_write_png_to_mem(const unsigned char *pixels, int stride_bytes, int x, int y, int n, int *out_len) +{ + int force_filter = stbi_write_force_png_filter; + int ctype[5] = { -1, 0, 4, 2, 6 }; + unsigned char sig[8] = { 137,80,78,71,13,10,26,10 }; + unsigned char *out,*o, *filt, *zlib; + signed char *line_buffer; + int j,zlen; + + if (stride_bytes == 0) + stride_bytes = x * n; + + if (force_filter >= 5) { + force_filter = -1; + } + + filt = (unsigned char *) STBIW_MALLOC((x*n+1) * y); if (!filt) return 0; + line_buffer = (signed char *) STBIW_MALLOC(x * n); if (!line_buffer) { STBIW_FREE(filt); return 0; } + for (j=0; j < y; ++j) { + int filter_type; + if (force_filter > -1) { + filter_type = force_filter; + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, force_filter, line_buffer); + } else { // Estimate the best filter by running through all of them: + int best_filter = 0, best_filter_val = 0x7fffffff, est, i; + for (filter_type = 0; filter_type < 5; filter_type++) { + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, filter_type, line_buffer); + + // Estimate the entropy of the line using this filter; the less, the better. + est = 0; + for (i = 0; i < x*n; ++i) { + est += abs((signed char) line_buffer[i]); + } + if (est < best_filter_val) { + best_filter_val = est; + best_filter = filter_type; + } + } + if (filter_type != best_filter) { // If the last iteration already got us the best filter, don't redo it + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, best_filter, line_buffer); + filter_type = best_filter; + } + } + // when we get here, filter_type contains the filter type, and line_buffer contains the data + filt[j*(x*n+1)] = (unsigned char) filter_type; + STBIW_MEMMOVE(filt+j*(x*n+1)+1, line_buffer, x*n); + } + STBIW_FREE(line_buffer); + zlib = stbi_zlib_compress(filt, y*( x*n+1), &zlen, stbi_write_png_compression_level); + STBIW_FREE(filt); + if (!zlib) return 0; + + // each tag requires 12 bytes of overhead + out = (unsigned char *) STBIW_MALLOC(8 + 12+13 + 12+zlen + 12); + if (!out) return 0; + *out_len = 8 + 12+13 + 12+zlen + 12; + + o=out; + STBIW_MEMMOVE(o,sig,8); o+= 8; + stbiw__wp32(o, 13); // header length + stbiw__wptag(o, "IHDR"); + stbiw__wp32(o, x); + stbiw__wp32(o, y); + *o++ = 8; + *o++ = STBIW_UCHAR(ctype[n]); + *o++ = 0; + *o++ = 0; + *o++ = 0; + stbiw__wpcrc(&o,13); + + stbiw__wp32(o, zlen); + stbiw__wptag(o, "IDAT"); + STBIW_MEMMOVE(o, zlib, zlen); + o += zlen; + STBIW_FREE(zlib); + stbiw__wpcrc(&o, zlen); + + stbiw__wp32(o,0); + stbiw__wptag(o, "IEND"); + stbiw__wpcrc(&o,0); + + STBIW_ASSERT(o == out + *out_len); + + return out; +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_png(char const *filename, int x, int y, int comp, const void *data, int stride_bytes) +{ + FILE *f; + int len; + unsigned char *png = stbi_write_png_to_mem((const unsigned char *) data, stride_bytes, x, y, comp, &len); + if (png == NULL) return 0; + + f = stbiw__fopen(filename, "wb"); + if (!f) { STBIW_FREE(png); return 0; } + fwrite(png, 1, len, f); + fclose(f); + STBIW_FREE(png); + return 1; +} +#endif + +STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int stride_bytes) +{ + int len; + unsigned char *png = stbi_write_png_to_mem((const unsigned char *) data, stride_bytes, x, y, comp, &len); + if (png == NULL) return 0; + func(context, png, len); + STBIW_FREE(png); + return 1; +} + + +/* *************************************************************************** + * + * JPEG writer + * + * This is based on Jon Olick's jo_jpeg.cpp: + * public domain Simple, Minimalistic JPEG writer - http://www.jonolick.com/code.html + */ + +static const unsigned char stbiw__jpg_ZigZag[] = { 0,1,5,6,14,15,27,28,2,4,7,13,16,26,29,42,3,8,12,17,25,30,41,43,9,11,18, + 24,31,40,44,53,10,19,23,32,39,45,52,54,20,22,33,38,46,51,55,60,21,34,37,47,50,56,59,61,35,36,48,49,57,58,62,63 }; + +static void stbiw__jpg_writeBits(stbi__write_context *s, int *bitBufP, int *bitCntP, const unsigned short *bs) { + int bitBuf = *bitBufP, bitCnt = *bitCntP; + bitCnt += bs[1]; + bitBuf |= bs[0] << (24 - bitCnt); + while(bitCnt >= 8) { + unsigned char c = (bitBuf >> 16) & 255; + stbiw__putc(s, c); + if(c == 255) { + stbiw__putc(s, 0); + } + bitBuf <<= 8; + bitCnt -= 8; + } + *bitBufP = bitBuf; + *bitCntP = bitCnt; +} + +static void stbiw__jpg_DCT(float *d0p, float *d1p, float *d2p, float *d3p, float *d4p, float *d5p, float *d6p, float *d7p) { + float d0 = *d0p, d1 = *d1p, d2 = *d2p, d3 = *d3p, d4 = *d4p, d5 = *d5p, d6 = *d6p, d7 = *d7p; + float z1, z2, z3, z4, z5, z11, z13; + + float tmp0 = d0 + d7; + float tmp7 = d0 - d7; + float tmp1 = d1 + d6; + float tmp6 = d1 - d6; + float tmp2 = d2 + d5; + float tmp5 = d2 - d5; + float tmp3 = d3 + d4; + float tmp4 = d3 - d4; + + // Even part + float tmp10 = tmp0 + tmp3; // phase 2 + float tmp13 = tmp0 - tmp3; + float tmp11 = tmp1 + tmp2; + float tmp12 = tmp1 - tmp2; + + d0 = tmp10 + tmp11; // phase 3 + d4 = tmp10 - tmp11; + + z1 = (tmp12 + tmp13) * 0.707106781f; // c4 + d2 = tmp13 + z1; // phase 5 + d6 = tmp13 - z1; + + // Odd part + tmp10 = tmp4 + tmp5; // phase 2 + tmp11 = tmp5 + tmp6; + tmp12 = tmp6 + tmp7; + + // The rotator is modified from fig 4-8 to avoid extra negations. + z5 = (tmp10 - tmp12) * 0.382683433f; // c6 + z2 = tmp10 * 0.541196100f + z5; // c2-c6 + z4 = tmp12 * 1.306562965f + z5; // c2+c6 + z3 = tmp11 * 0.707106781f; // c4 + + z11 = tmp7 + z3; // phase 5 + z13 = tmp7 - z3; + + *d5p = z13 + z2; // phase 6 + *d3p = z13 - z2; + *d1p = z11 + z4; + *d7p = z11 - z4; + + *d0p = d0; *d2p = d2; *d4p = d4; *d6p = d6; +} + +static void stbiw__jpg_calcBits(int val, unsigned short bits[2]) { + int tmp1 = val < 0 ? -val : val; + val = val < 0 ? val-1 : val; + bits[1] = 1; + while(tmp1 >>= 1) { + ++bits[1]; + } + bits[0] = val & ((1<0)&&(DU[end0pos]==0); --end0pos) { + } + // end0pos = first element in reverse order !=0 + if(end0pos == 0) { + stbiw__jpg_writeBits(s, bitBuf, bitCnt, EOB); + return DU[0]; + } + for(i = 1; i <= end0pos; ++i) { + int startpos = i; + int nrzeroes; + unsigned short bits[2]; + for (; DU[i]==0 && i<=end0pos; ++i) { + } + nrzeroes = i-startpos; + if ( nrzeroes >= 16 ) { + int lng = nrzeroes>>4; + int nrmarker; + for (nrmarker=1; nrmarker <= lng; ++nrmarker) + stbiw__jpg_writeBits(s, bitBuf, bitCnt, M16zeroes); + nrzeroes &= 15; + } + stbiw__jpg_calcBits(DU[i], bits); + stbiw__jpg_writeBits(s, bitBuf, bitCnt, HTAC[(nrzeroes<<4)+bits[1]]); + stbiw__jpg_writeBits(s, bitBuf, bitCnt, bits); + } + if(end0pos != 63) { + stbiw__jpg_writeBits(s, bitBuf, bitCnt, EOB); + } + return DU[0]; +} + +static int stbi_write_jpg_core(stbi__write_context *s, int width, int height, int comp, const void* data, int quality) { + // Constants that don't pollute global namespace + static const unsigned char std_dc_luminance_nrcodes[] = {0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0}; + static const unsigned char std_dc_luminance_values[] = {0,1,2,3,4,5,6,7,8,9,10,11}; + static const unsigned char std_ac_luminance_nrcodes[] = {0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d}; + static const unsigned char std_ac_luminance_values[] = { + 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08, + 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28, + 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59, + 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89, + 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6, + 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2, + 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa + }; + static const unsigned char std_dc_chrominance_nrcodes[] = {0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0}; + static const unsigned char std_dc_chrominance_values[] = {0,1,2,3,4,5,6,7,8,9,10,11}; + static const unsigned char std_ac_chrominance_nrcodes[] = {0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77}; + static const unsigned char std_ac_chrominance_values[] = { + 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91, + 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26, + 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58, + 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87, + 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4, + 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda, + 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa + }; + // Huffman tables + static const unsigned short YDC_HT[256][2] = { {0,2},{2,3},{3,3},{4,3},{5,3},{6,3},{14,4},{30,5},{62,6},{126,7},{254,8},{510,9}}; + static const unsigned short UVDC_HT[256][2] = { {0,2},{1,2},{2,2},{6,3},{14,4},{30,5},{62,6},{126,7},{254,8},{510,9},{1022,10},{2046,11}}; + static const unsigned short YAC_HT[256][2] = { + {10,4},{0,2},{1,2},{4,3},{11,4},{26,5},{120,7},{248,8},{1014,10},{65410,16},{65411,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {12,4},{27,5},{121,7},{502,9},{2038,11},{65412,16},{65413,16},{65414,16},{65415,16},{65416,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {28,5},{249,8},{1015,10},{4084,12},{65417,16},{65418,16},{65419,16},{65420,16},{65421,16},{65422,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {58,6},{503,9},{4085,12},{65423,16},{65424,16},{65425,16},{65426,16},{65427,16},{65428,16},{65429,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {59,6},{1016,10},{65430,16},{65431,16},{65432,16},{65433,16},{65434,16},{65435,16},{65436,16},{65437,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {122,7},{2039,11},{65438,16},{65439,16},{65440,16},{65441,16},{65442,16},{65443,16},{65444,16},{65445,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {123,7},{4086,12},{65446,16},{65447,16},{65448,16},{65449,16},{65450,16},{65451,16},{65452,16},{65453,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {250,8},{4087,12},{65454,16},{65455,16},{65456,16},{65457,16},{65458,16},{65459,16},{65460,16},{65461,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {504,9},{32704,15},{65462,16},{65463,16},{65464,16},{65465,16},{65466,16},{65467,16},{65468,16},{65469,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {505,9},{65470,16},{65471,16},{65472,16},{65473,16},{65474,16},{65475,16},{65476,16},{65477,16},{65478,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {506,9},{65479,16},{65480,16},{65481,16},{65482,16},{65483,16},{65484,16},{65485,16},{65486,16},{65487,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1017,10},{65488,16},{65489,16},{65490,16},{65491,16},{65492,16},{65493,16},{65494,16},{65495,16},{65496,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1018,10},{65497,16},{65498,16},{65499,16},{65500,16},{65501,16},{65502,16},{65503,16},{65504,16},{65505,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2040,11},{65506,16},{65507,16},{65508,16},{65509,16},{65510,16},{65511,16},{65512,16},{65513,16},{65514,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {65515,16},{65516,16},{65517,16},{65518,16},{65519,16},{65520,16},{65521,16},{65522,16},{65523,16},{65524,16},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2041,11},{65525,16},{65526,16},{65527,16},{65528,16},{65529,16},{65530,16},{65531,16},{65532,16},{65533,16},{65534,16},{0,0},{0,0},{0,0},{0,0},{0,0} + }; + static const unsigned short UVAC_HT[256][2] = { + {0,2},{1,2},{4,3},{10,4},{24,5},{25,5},{56,6},{120,7},{500,9},{1014,10},{4084,12},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {11,4},{57,6},{246,8},{501,9},{2038,11},{4085,12},{65416,16},{65417,16},{65418,16},{65419,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {26,5},{247,8},{1015,10},{4086,12},{32706,15},{65420,16},{65421,16},{65422,16},{65423,16},{65424,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {27,5},{248,8},{1016,10},{4087,12},{65425,16},{65426,16},{65427,16},{65428,16},{65429,16},{65430,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {58,6},{502,9},{65431,16},{65432,16},{65433,16},{65434,16},{65435,16},{65436,16},{65437,16},{65438,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {59,6},{1017,10},{65439,16},{65440,16},{65441,16},{65442,16},{65443,16},{65444,16},{65445,16},{65446,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {121,7},{2039,11},{65447,16},{65448,16},{65449,16},{65450,16},{65451,16},{65452,16},{65453,16},{65454,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {122,7},{2040,11},{65455,16},{65456,16},{65457,16},{65458,16},{65459,16},{65460,16},{65461,16},{65462,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {249,8},{65463,16},{65464,16},{65465,16},{65466,16},{65467,16},{65468,16},{65469,16},{65470,16},{65471,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {503,9},{65472,16},{65473,16},{65474,16},{65475,16},{65476,16},{65477,16},{65478,16},{65479,16},{65480,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {504,9},{65481,16},{65482,16},{65483,16},{65484,16},{65485,16},{65486,16},{65487,16},{65488,16},{65489,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {505,9},{65490,16},{65491,16},{65492,16},{65493,16},{65494,16},{65495,16},{65496,16},{65497,16},{65498,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {506,9},{65499,16},{65500,16},{65501,16},{65502,16},{65503,16},{65504,16},{65505,16},{65506,16},{65507,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2041,11},{65508,16},{65509,16},{65510,16},{65511,16},{65512,16},{65513,16},{65514,16},{65515,16},{65516,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {16352,14},{65517,16},{65518,16},{65519,16},{65520,16},{65521,16},{65522,16},{65523,16},{65524,16},{65525,16},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1018,10},{32707,15},{65526,16},{65527,16},{65528,16},{65529,16},{65530,16},{65531,16},{65532,16},{65533,16},{65534,16},{0,0},{0,0},{0,0},{0,0},{0,0} + }; + static const int YQT[] = {16,11,10,16,24,40,51,61,12,12,14,19,26,58,60,55,14,13,16,24,40,57,69,56,14,17,22,29,51,87,80,62,18,22, + 37,56,68,109,103,77,24,35,55,64,81,104,113,92,49,64,78,87,103,121,120,101,72,92,95,98,112,100,103,99}; + static const int UVQT[] = {17,18,24,47,99,99,99,99,18,21,26,66,99,99,99,99,24,26,56,99,99,99,99,99,47,66,99,99,99,99,99,99, + 99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99}; + static const float aasf[] = { 1.0f * 2.828427125f, 1.387039845f * 2.828427125f, 1.306562965f * 2.828427125f, 1.175875602f * 2.828427125f, + 1.0f * 2.828427125f, 0.785694958f * 2.828427125f, 0.541196100f * 2.828427125f, 0.275899379f * 2.828427125f }; + + int row, col, i, k, subsample; + float fdtbl_Y[64], fdtbl_UV[64]; + unsigned char YTable[64], UVTable[64]; + + if(!data || !width || !height || comp > 4 || comp < 1) { + return 0; + } + + quality = quality ? quality : 90; + subsample = quality <= 90 ? 1 : 0; + quality = quality < 1 ? 1 : quality > 100 ? 100 : quality; + quality = quality < 50 ? 5000 / quality : 200 - quality * 2; + + for(i = 0; i < 64; ++i) { + int uvti, yti = (YQT[i]*quality+50)/100; + YTable[stbiw__jpg_ZigZag[i]] = (unsigned char) (yti < 1 ? 1 : yti > 255 ? 255 : yti); + uvti = (UVQT[i]*quality+50)/100; + UVTable[stbiw__jpg_ZigZag[i]] = (unsigned char) (uvti < 1 ? 1 : uvti > 255 ? 255 : uvti); + } + + for(row = 0, k = 0; row < 8; ++row) { + for(col = 0; col < 8; ++col, ++k) { + fdtbl_Y[k] = 1 / (YTable [stbiw__jpg_ZigZag[k]] * aasf[row] * aasf[col]); + fdtbl_UV[k] = 1 / (UVTable[stbiw__jpg_ZigZag[k]] * aasf[row] * aasf[col]); + } + } + + // Write Headers + { + static const unsigned char head0[] = { 0xFF,0xD8,0xFF,0xE0,0,0x10,'J','F','I','F',0,1,1,0,0,1,0,1,0,0,0xFF,0xDB,0,0x84,0 }; + static const unsigned char head2[] = { 0xFF,0xDA,0,0xC,3,1,0,2,0x11,3,0x11,0,0x3F,0 }; + const unsigned char head1[] = { 0xFF,0xC0,0,0x11,8,(unsigned char)(height>>8),STBIW_UCHAR(height),(unsigned char)(width>>8),STBIW_UCHAR(width), + 3,1,(unsigned char)(subsample?0x22:0x11),0,2,0x11,1,3,0x11,1,0xFF,0xC4,0x01,0xA2,0 }; + s->func(s->context, (void*)head0, sizeof(head0)); + s->func(s->context, (void*)YTable, sizeof(YTable)); + stbiw__putc(s, 1); + s->func(s->context, UVTable, sizeof(UVTable)); + s->func(s->context, (void*)head1, sizeof(head1)); + s->func(s->context, (void*)(std_dc_luminance_nrcodes+1), sizeof(std_dc_luminance_nrcodes)-1); + s->func(s->context, (void*)std_dc_luminance_values, sizeof(std_dc_luminance_values)); + stbiw__putc(s, 0x10); // HTYACinfo + s->func(s->context, (void*)(std_ac_luminance_nrcodes+1), sizeof(std_ac_luminance_nrcodes)-1); + s->func(s->context, (void*)std_ac_luminance_values, sizeof(std_ac_luminance_values)); + stbiw__putc(s, 1); // HTUDCinfo + s->func(s->context, (void*)(std_dc_chrominance_nrcodes+1), sizeof(std_dc_chrominance_nrcodes)-1); + s->func(s->context, (void*)std_dc_chrominance_values, sizeof(std_dc_chrominance_values)); + stbiw__putc(s, 0x11); // HTUACinfo + s->func(s->context, (void*)(std_ac_chrominance_nrcodes+1), sizeof(std_ac_chrominance_nrcodes)-1); + s->func(s->context, (void*)std_ac_chrominance_values, sizeof(std_ac_chrominance_values)); + s->func(s->context, (void*)head2, sizeof(head2)); + } + + // Encode 8x8 macroblocks + { + static const unsigned short fillBits[] = {0x7F, 7}; + int DCY=0, DCU=0, DCV=0; + int bitBuf=0, bitCnt=0; + // comp == 2 is grey+alpha (alpha is ignored) + int ofsG = comp > 2 ? 1 : 0, ofsB = comp > 2 ? 2 : 0; + const unsigned char *dataR = (const unsigned char *)data; + const unsigned char *dataG = dataR + ofsG; + const unsigned char *dataB = dataR + ofsB; + int x, y, pos; + if(subsample) { + for(y = 0; y < height; y += 16) { + for(x = 0; x < width; x += 16) { + float Y[256], U[256], V[256]; + for(row = y, pos = 0; row < y+16; ++row) { + // row >= height => use last input row + int clamped_row = (row < height) ? row : height - 1; + int base_p = (stbi__flip_vertically_on_write ? (height-1-clamped_row) : clamped_row)*width*comp; + for(col = x; col < x+16; ++col, ++pos) { + // if col >= width => use pixel from last input column + int p = base_p + ((col < width) ? col : (width-1))*comp; + float r = dataR[p], g = dataG[p], b = dataB[p]; + Y[pos]= +0.29900f*r + 0.58700f*g + 0.11400f*b - 128; + U[pos]= -0.16874f*r - 0.33126f*g + 0.50000f*b; + V[pos]= +0.50000f*r - 0.41869f*g - 0.08131f*b; + } + } + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+0, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+8, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+128, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+136, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + + // subsample U,V + { + float subU[64], subV[64]; + int yy, xx; + for(yy = 0, pos = 0; yy < 8; ++yy) { + for(xx = 0; xx < 8; ++xx, ++pos) { + int j = yy*32+xx*2; + subU[pos] = (U[j+0] + U[j+1] + U[j+16] + U[j+17]) * 0.25f; + subV[pos] = (V[j+0] + V[j+1] + V[j+16] + V[j+17]) * 0.25f; + } + } + DCU = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, subU, 8, fdtbl_UV, DCU, UVDC_HT, UVAC_HT); + DCV = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, subV, 8, fdtbl_UV, DCV, UVDC_HT, UVAC_HT); + } + } + } + } else { + for(y = 0; y < height; y += 8) { + for(x = 0; x < width; x += 8) { + float Y[64], U[64], V[64]; + for(row = y, pos = 0; row < y+8; ++row) { + // row >= height => use last input row + int clamped_row = (row < height) ? row : height - 1; + int base_p = (stbi__flip_vertically_on_write ? (height-1-clamped_row) : clamped_row)*width*comp; + for(col = x; col < x+8; ++col, ++pos) { + // if col >= width => use pixel from last input column + int p = base_p + ((col < width) ? col : (width-1))*comp; + float r = dataR[p], g = dataG[p], b = dataB[p]; + Y[pos]= +0.29900f*r + 0.58700f*g + 0.11400f*b - 128; + U[pos]= -0.16874f*r - 0.33126f*g + 0.50000f*b; + V[pos]= +0.50000f*r - 0.41869f*g - 0.08131f*b; + } + } + + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y, 8, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCU = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, U, 8, fdtbl_UV, DCU, UVDC_HT, UVAC_HT); + DCV = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, V, 8, fdtbl_UV, DCV, UVDC_HT, UVAC_HT); + } + } + } + + // Do the bit alignment of the EOI marker + stbiw__jpg_writeBits(s, &bitBuf, &bitCnt, fillBits); + } + + // EOI + stbiw__putc(s, 0xFF); + stbiw__putc(s, 0xD9); + + return 1; +} + +STBIWDEF int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_jpg_core(&s, x, y, comp, (void *) data, quality); +} + + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_jpg_core(&s, x, y, comp, data, quality); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif + +#endif // STB_IMAGE_WRITE_IMPLEMENTATION + +/* Revision history + 1.16 (2021-07-11) + make Deflate code emit uncompressed blocks when it would otherwise expand + support writing BMPs with alpha channel + 1.15 (2020-07-13) unknown + 1.14 (2020-02-02) updated JPEG writer to downsample chroma channels + 1.13 + 1.12 + 1.11 (2019-08-11) + + 1.10 (2019-02-07) + support utf8 filenames in Windows; fix warnings and platform ifdefs + 1.09 (2018-02-11) + fix typo in zlib quality API, improve STB_I_W_STATIC in C++ + 1.08 (2018-01-29) + add stbi__flip_vertically_on_write, external zlib, zlib quality, choose PNG filter + 1.07 (2017-07-24) + doc fix + 1.06 (2017-07-23) + writing JPEG (using Jon Olick's code) + 1.05 ??? + 1.04 (2017-03-03) + monochrome BMP expansion + 1.03 ??? + 1.02 (2016-04-02) + avoid allocating large structures on the stack + 1.01 (2016-01-16) + STBIW_REALLOC_SIZED: support allocators with no realloc support + avoid race-condition in crc initialization + minor compile issues + 1.00 (2015-09-14) + installable file IO function + 0.99 (2015-09-13) + warning fixes; TGA rle support + 0.98 (2015-04-08) + added STBIW_MALLOC, STBIW_ASSERT etc + 0.97 (2015-01-18) + fixed HDR asserts, rewrote HDR rle logic + 0.96 (2015-01-17) + add HDR output + fix monochrome BMP + 0.95 (2014-08-17) + add monochrome TGA output + 0.94 (2014-05-31) + rename private functions to avoid conflicts with stb_image.h + 0.93 (2014-05-27) + warning fixes + 0.92 (2010-08-01) + casts to unsigned char to fix warnings + 0.91 (2010-07-17) + first public release + 0.90 first internal release +*/ + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/Makefile b/application-performance/demos/tau/01_no_instrumentation/src/hip/Makefile new file mode 100644 index 000000000..459f9417f --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/Makefile @@ -0,0 +1,45 @@ +COMMONDIR=../common + +CXX=CC +CC=cc +HIPFLAGS=-xhip -g -O3 -I$(COMMONDIR) +CCFLAGS=-g -O3 -Wall -I$(COMMONDIR) +LDFLAGS= +LIBS= + +EXE=heat_hip +OBJS=main.o core.o setup.o utilities.o io.o +OBJS_PNG=$(COMMONDIR)/pngwriter.o +OBJS_HIP=core_hip.o + +all: $(EXE) + +core.o: core.cpp heat.h +core_hip.o: core_hip.cpp heat.h +utilities.o: utilities.cpp heat.h +setup.o: setup.cpp heat.h +io.o: io.cpp heat.h +main.o: main.cpp heat.h + +$(OBJS_PNG): C_COMPILER := $(CC) +$(OBJS): C_COMPILER := $(CXX) +$(OBJS): FLAGS := $(CCFLAGS) +$(OBJS_HIP): C_COMPILER := $(CXX) +$(OBJS_HIP): FLAGS := $(HIPFLAGS) + +$(EXE): $(OBJS) $(OBJS_HIP) $(OBJS_PNG) + $(CXX) $(CCFLAGS) $(OBJS) $(OBJS_HIP) $(OBJS_PNG) -o $@ $(LDFLAGS) $(LIBS) + +%.o: %.cpp + $(C_COMPILER) $(FLAGS) -c $< -o $@ + +%.o: %.cu + $(C_COMPILER) $(FLAGS) -c $< -o $@ + + +%.o: %.c + $(CC) $(CCFLAGS) -c $< -o $@ + +.PHONY: clean +clean: + -/bin/rm -f $(EXE) a.out *.o *.png *~ diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/core.cpp b/application-performance/demos/tau/01_no_instrumentation/src/hip/core.cpp new file mode 100644 index 000000000..3c999cb7c --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/core.cpp @@ -0,0 +1,38 @@ +/* Main solver routines for heat equation solver */ + +#include +#include +#include +#include +#include + +#include "heat.h" + +/* Exchange the boundary values */ +void exchange(field *temperature, parallel_data *parallel) +{ + double *data; + double *sbuf_up, *sbuf_down, *rbuf_up, *rbuf_down; + + data = temperature->devdata; + + // Send to the up, receive from down + sbuf_up = data + temperature->ny + 2; // upper data + rbuf_down = data + (temperature->nx + 1) * (temperature->ny + 2); // lower halo + + MPI_Sendrecv(sbuf_up, temperature->ny + 2, MPI_DOUBLE, + parallel->nup, 11, + rbuf_down, temperature->ny + 2, MPI_DOUBLE, + parallel->ndown, 11, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + + // Send to the down, receive from up + sbuf_down = data + temperature->nx * (temperature->ny + 2); // lower data + rbuf_up = data; // upper halo + + MPI_Sendrecv(sbuf_down, temperature->ny + 2, MPI_DOUBLE, + parallel->ndown, 12, + rbuf_up, temperature->ny + 2, MPI_DOUBLE, + parallel->nup, 12, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + +} + diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/core_hip.cpp b/application-performance/demos/tau/01_no_instrumentation/src/hip/core_hip.cpp new file mode 100644 index 000000000..d6b00538c --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/core_hip.cpp @@ -0,0 +1,91 @@ +#include "hip/hip_runtime.h" +/* Main solver routines for heat equation solver */ + +#include +#include +#include +#include +#include +#include + +#include "heat.h" + +/* Update the temperature values using five-point stencil */ +__global__ void evolve_kernel(double *currdata, double *prevdata, double a, double dt, int nx, int ny, + double dx2, double dy2) +{ + + /* Determine the temperature field at next time step + * As we have fixed boundary conditions, the outermost gridpoints + * are not updated. */ + int ind, ip, im, jp, jm; + + // CUDA threads are arranged in column major order; thus j index from x, i from y + int j = blockIdx.x * blockDim.x + threadIdx.x; + int i = blockIdx.y * blockDim.y + threadIdx.y; + + if (i > 0 && j > 0 && i < nx+1 && j < ny+1) { + ind = i * (ny + 2) + j; + ip = (i + 1) * (ny + 2) + j; + im = (i - 1) * (ny + 2) + j; + jp = i * (ny + 2) + j + 1; + jm = i * (ny + 2) + j - 1; + currdata[ind] = prevdata[ind] + a * dt * + ((prevdata[ip] -2.0 * prevdata[ind] + prevdata[im]) / dx2 + + (prevdata[jp] - 2.0 * prevdata[ind] + prevdata[jm]) / dy2); + + } + +} + +void evolve(field *curr, field *prev, double a, double dt) +{ + int nx, ny; + double dx2, dy2; + nx = prev->nx; + ny = prev->ny; + dx2 = prev->dx * prev->dx; + dy2 = prev->dy * prev->dy; + + /* CUDA thread settings */ + const int blocksize = 16; //!< CUDA thread block dimension + dim3 dimBlock(blocksize, blocksize); + // CUDA threads are arranged in column major order; thus make ny x nx grid + dim3 dimGrid((ny + 2 + blocksize - 1) / blocksize, + (nx + 2 + blocksize - 1) / blocksize); + + hipLaunchKernelGGL(evolve_kernel, dim3(dimGrid), dim3(dimBlock), 0, 0, curr->devdata, prev->devdata, a, dt, nx, ny, dx2, dy2); + hipDeviceSynchronize(); +} + +void enter_data(field *temperature1, field *temperature2) +{ + size_t datasize; + + datasize = (temperature1->nx + 2) * (temperature1->ny + 2) * sizeof(double); + + hipMalloc(&temperature1->devdata, datasize); + hipMalloc(&temperature2->devdata, datasize); + + hipMemcpy(temperature1->devdata, temperature1->data, datasize, hipMemcpyHostToDevice); + hipMemcpy(temperature2->devdata, temperature2->data, datasize, hipMemcpyHostToDevice); +} + +/* Copy a temperature field from the device to the host */ +void update_host(field *temperature) +{ + size_t datasize; + + datasize = (temperature->nx + 2) * (temperature->ny + 2) * sizeof(double); + hipMemcpy(temperature->data, temperature->devdata, datasize, hipMemcpyDeviceToHost); +} + +/* Copy a temperature field from the host to the device */ +void update_device(field *temperature) +{ + size_t datasize; + + datasize = (temperature->nx + 2) * (temperature->ny + 2) * sizeof(double); + hipMemcpy(temperature->devdata, temperature->data, datasize, hipMemcpyHostToDevice); +} + diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/heat.h b/application-performance/demos/tau/01_no_instrumentation/src/hip/heat.h new file mode 100644 index 000000000..f0cfd20e5 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/heat.h @@ -0,0 +1,76 @@ +#ifndef __HEAT_H__ +#define __HEAT_H__ + + +/* Datatype for temperature field */ +typedef struct { + /* nx and ny are the true dimensions of the field. The array data + * contains also ghost layers, so it will have dimensions nx+2 x ny+2 */ + int nx; /* Local dimensions of the field */ + int ny; + int nx_full; /* Global dimensions of the field */ + int ny_full; /* Global dimensions of the field */ + double dx; + double dy; + double *data; + double *devdata; /* Data in device */ +} field; + +/* Datatype for basic parallelization information */ +typedef struct { + int size; /* Number of MPI tasks */ + int rank; + int nup, ndown; /* Ranks of neighbouring MPI tasks */ +} parallel_data; + + +/* We use here fixed grid spacing */ +#define DX 0.01 +#define DY 0.01 + +#if __cplusplus + extern "C" { +#endif +/* Function prototypes */ +void set_field_dimensions(field *temperature, int nx, int ny, + parallel_data *parallel); + +void parallel_setup(parallel_data *parallel, int nx, int ny); + +void parallel_set_dimensions(parallel_data *parallel, int nx, int ny); + +void initialize(int argc, char *argv[], field *temperature1, + field *temperature2, int *nsteps, parallel_data *parallel); + +void generate_field(field *temperature, parallel_data *parallel); + +double average(field *temperature); + +void exchange(field *temperature, parallel_data *parallel); + +void evolve(field *curr, field *prev, double a, double dt); + +void write_field(field *temperature, int iter, parallel_data *parallel); + +void read_field(field *temperature1, field *temperature2, + char *filename, parallel_data *parallel); + +void copy_field(field *temperature1, field *temperature2); + +void swap_fields(field *temperature1, field *temperature2); + +void allocate_field(field *temperature); + +void finalize(field *temperature1, field *temperature2); + +void enter_data(field *temperature1, field *temperature2); + +void update_host(field *temperature); + +void update_device(field *temperature); + +#if __cplusplus + } +#endif +#endif /* __HEAT_H__ */ + diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/io.cpp b/application-performance/demos/tau/01_no_instrumentation/src/hip/io.cpp new file mode 100644 index 000000000..42daaca36 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/io.cpp @@ -0,0 +1,139 @@ +/* I/O related functions for heat equation solver */ + +#include +#include +#include +#include +#include + +#include "heat.h" +#include "pngwriter.h" + +/* Output routine that prints out a picture of the temperature + * distribution. */ +void write_field(field *temperature, int iter, parallel_data *parallel) +{ + char filename[64]; + + /* The actual write routine takes only the actual data + * (without ghost layers) so we need array for that. */ + int height, width; + double *full_data; + double *tmp_data; // array for MPI sends and receives + + height = temperature->nx * parallel->size; + width = temperature->ny; + + tmp_data = new double [temperature->nx * temperature->ny]; + + if (parallel->rank == 0) { + /* Copy the inner data */ + full_data = new double [height * width]; + for (int i = 0; i < temperature->nx; i++) + memcpy(&full_data[i * width], &temperature->data[(i + 1) * (width + 2) + 1], + temperature->ny * sizeof(double)); + /* Receive data from other ranks */ + for (int p = 1; p < parallel->size; p++) { + MPI_Recv(tmp_data, temperature->nx * temperature->ny, + MPI_DOUBLE, p, 22, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + /* Copy data to full array */ + memcpy(&full_data[p * temperature->nx * width], tmp_data, + temperature->nx * temperature->ny * sizeof(double)); + } + /* Write out the data to a png file */ + sprintf(filename, "%s_%04d.png", "heat", iter); + save_png(full_data, height, width, filename, 'c'); + delete[] full_data; + // free(full_data); + } else { + /* Send data */ + for (int i = 0; i < temperature->nx; i++) + memcpy(&tmp_data[i * width], &temperature->data[(i + 1) * (width + 2) + 1], + temperature->ny * sizeof(double)); + MPI_Send(tmp_data, temperature->nx * temperature->ny, + MPI_DOUBLE, 0, 22, MPI_COMM_WORLD); + } + + delete[] tmp_data; + // free(tmp_data); + +} + +/* Read the initial temperature distribution from a file and + * initialize the temperature fields temperature1 and + * temperature2 to the same initial state. */ +void read_field(field *temperature1, field *temperature2, char *filename, + parallel_data *parallel) +{ + FILE *fp; + int nx, ny, ind; + double *full_data; + double *inner_data; + + int nx_local, ny_local, count; + + fp = fopen(filename, "r"); + /* Read the header */ + count = fscanf(fp, "# %d %d \n", &nx, &ny); + if (count < 2) { + fprintf(stderr, "Error while reading the input file!\n"); + MPI_Abort(MPI_COMM_WORLD, -1); + } + + parallel_setup(parallel, nx, ny); + set_field_dimensions(temperature1, nx, ny, parallel); + set_field_dimensions(temperature2, nx, ny, parallel); + + /* Allocate arrays (including ghost layers) */ + temperature1->data = new double[(temperature1->nx + 2) * (temperature1->ny + 2)]; + temperature2->data = new double[(temperature1->nx + 2) * (temperature1->ny + 2)]; + + inner_data = new double[temperature1->nx * temperature1->ny]; + + if (parallel->rank == 0) { + /* Full array */ + full_data = new double [nx * ny]; + + /* Read the actual data */ + for (int i = 0; i < nx; i++) { + for (int j = 0; j < ny; j++) { + ind = i * ny + j; + count = fscanf(fp, "%lf", &full_data[ind]); + } + } + } else { + /* Dummy array for full data. Some MPI implementations + * require that this array is actually allocated... */ + full_data = new double[1]; + } + + nx_local = temperature1->nx; + ny_local = temperature1->ny; + + MPI_Scatter(full_data, nx_local * ny, MPI_DOUBLE, inner_data, + nx_local * ny, MPI_DOUBLE, 0, MPI_COMM_WORLD); + + /* Copy to the array containing also boundaries */ + for (int i = 0; i < nx_local; i++) + memcpy(&temperature1->data[(i + 1) * (ny_local + 2) + 1], &inner_data[i * ny_local], + ny * sizeof(double)); + + /* Set the boundary values */ + for (int i = 1; i < nx_local + 1; i++) { + temperature1->data[i * (ny_local + 2)] = temperature1->data[i * (ny_local + 2) + 1]; + temperature1->data[i * (ny_local + 2) + ny + 1] = temperature1->data[i * (ny_local + 2) + ny]; + } + for (int j = 0; j < ny + 2; j++) { + temperature1->data[j] = temperature1->data[ny_local + j]; + temperature1->data[(nx_local + 1) * (ny_local + 2) + j] = + temperature1->data[nx_local * (ny_local + 2) + j]; + } + + copy_field(temperature1, temperature2); + + delete[] full_data; + delete[] inner_data; + // free(full_data); + // free(inner_data); + fclose(fp); +} diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/main.cpp b/application-performance/demos/tau/01_no_instrumentation/src/hip/main.cpp new file mode 100644 index 000000000..4235e9835 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/main.cpp @@ -0,0 +1,107 @@ +/* Heat equation solver in 2D. */ + +#include +#include +#include +#include +#include + +#if defined(OMPI_HAVE_MPI_EXT_CUDA) && OMPI_HAVE_MPI_EXT_CUDA +#include /* Needed for CUDA-aware check */ +#endif + +#include "heat.h" + +int main(int argc, char **argv) +{ + double a = 0.5; //!< Diffusion constant + field current, previous; //!< Current and previous temperature fields + + double dt; //!< Time step + int nsteps; //!< Number of time steps + + int image_interval = 1500; //!< Image output interval + + parallel_data parallelization; //!< Parallelization info + + double dx2, dy2; //!< Delta x and y squared + + double average_temp; //!< Average temperature + + double start_clock, stop_clock; //!< Time stamps + + + MPI_Init(&argc, &argv); + + bool has_support_for_gpu_aware_mpi = false; +#if defined(OMPI_HAVE_MPI_EXT_CUDA) && OMPI_HAVE_MPI_EXT_CUDA + has_support_for_gpu_aware_mpi = (bool)MPIX_Query_cuda_support(); +#else + if (const char *env_gpu_mpi = std::getenv("MPICH_GPU_SUPPORT_ENABLED")) { + has_support_for_gpu_aware_mpi = (bool)std::atoi(env_gpu_mpi); + } +#endif + + if (!has_support_for_gpu_aware_mpi) { + printf("GPU aware MPI required\n"); + fflush(stdout); + MPI_Abort(MPI_COMM_WORLD, 5); + } + initialize(argc, argv, ¤t, &previous, &nsteps, ¶llelization); + + /* Output the initial field */ + write_field(¤t, 0, ¶llelization); + + average_temp = average(¤t); + if (parallelization.rank == 0) { + printf("Average temperature at start: %f\n", average_temp); + } + + + /* Largest stable time step */ + dx2 = current.dx * current.dx; + dy2 = current.dy * current.dy; + dt = dx2 * dy2 / (2.0 * a * (dx2 + dy2)); + + /* Get the start time stamp */ + start_clock = MPI_Wtime(); + + /* Copy fields to device */ + enter_data(¤t, &previous); + + /* Time evolve */ + for (int iter = 1; iter <= nsteps; iter++) { + exchange(&previous, ¶llelization); + evolve(¤t, &previous, a, dt); + if (iter % image_interval == 0) { + update_host(¤t); + write_field(¤t, iter, ¶llelization); + } + /* Swap current field so that it will be used + as previous for next iteration step */ + swap_fields(¤t, &previous); + } + + update_host(&previous); + stop_clock = MPI_Wtime(); + + /* Average temperature for reference */ + average_temp = average(&previous); + + /* Determine the CPU time used for the iteration */ + if (parallelization.rank == 0) { + printf("Iteration took %.3f seconds.\n", (stop_clock - start_clock)); + printf("Average temperature: %f\n", average_temp); + if (argc == 1) { + printf("Reference value with default arguments: 59.281239\n"); + } + } + + /* Output the final field */ + write_field(&previous, nsteps, ¶llelization); + + finalize(¤t, &previous); + MPI_Finalize(); + + return 0; +} diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/setup.cpp b/application-performance/demos/tau/01_no_instrumentation/src/hip/setup.cpp new file mode 100644 index 000000000..d73325d37 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/setup.cpp @@ -0,0 +1,201 @@ +/* Setup routines for heat equation solver */ + +#include +#include +#include +#include +#include +//#include + +#include "heat.h" + + +#define NSTEPS 500 // Default number of iteration steps + +/* Initialize the heat equation solver */ +void initialize(int argc, char *argv[], field *current, + field *previous, int *nsteps, parallel_data *parallel) +{ + /* + * Following combinations of command line arguments are possible: + * No arguments: use default field dimensions and number of time steps + * One argument: read initial field from a given file + * Two arguments: initial field from file and number of time steps + * Three arguments: field dimensions (rows,cols) and number of time steps + */ + + + int rows = 2000; //!< Field dimensions with default values + int cols = 2000; + + char input_file[64]; //!< Name of the optional input file + + int read_file = 0; + + *nsteps = NSTEPS; + + switch (argc) { + case 1: + /* Use default values */ + break; + case 2: + /* Read initial field from a file */ + strncpy(input_file, argv[1], 64); + read_file = 1; + break; + case 3: + /* Read initial field from a file */ + strncpy(input_file, argv[1], 64); + read_file = 1; + + /* Number of time steps */ + *nsteps = atoi(argv[2]); + break; + case 4: + /* Field dimensions */ + rows = atoi(argv[1]); + cols = atoi(argv[2]); + /* Number of time steps */ + *nsteps = atoi(argv[3]); + break; + default: + printf("Unsupported number of command line arguments\n"); + exit(-1); + } + + if (read_file) { + read_field(current, previous, input_file, parallel); + } else { + parallel_setup(parallel, rows, cols); + set_field_dimensions(current, rows, cols, parallel); + set_field_dimensions(previous, rows, cols, parallel); + generate_field(current, parallel); + allocate_field(previous); + copy_field(current, previous); + } +} + +/* Generate initial temperature field. Pattern is disc with a radius + * of nx_full / 6 in the center of the grid. + * Boundary conditions are (different) constant temperatures outside the grid */ +void generate_field(field *temperature, parallel_data *parallel) +{ + int ind; + double radius; + int dx, dy; + + /* Allocate the temperature array, note that + * we have to allocate also the ghost layers */ + temperature->data = new double [(temperature->nx + 2) * (temperature->ny + 2)]; + + + /* Radius of the source disc */ + radius = temperature->nx_full / 6.0; + for (int i = 0; i < temperature->nx + 2; i++) { + for (int j = 0; j < temperature->ny + 2; j++) { + ind = i * (temperature->ny + 2) + j; + /* Distance of point i, j from the origin */ + dx = i + parallel->rank * temperature->nx - + temperature->nx_full / 2 + 1; + dy = j - temperature->ny / 2 + 1; + if (dx * dx + dy * dy < radius * radius) { + temperature->data[ind] = 5.0; + } else { + temperature->data[ind] = 65.0; + } + } + } + + /* Boundary conditions */ + for (int i = 0; i < temperature->nx + 2; i++) { + temperature->data[i * (temperature->ny + 2)] = 20.0; + temperature->data[i * (temperature->ny + 2) + temperature->ny + 1] = 70.0; + } + + if (parallel->rank == 0) { + for (int j = 0; j < temperature->ny + 2; j++) { + temperature->data[j] = 85.0; + } + } + if (parallel->rank == parallel->size - 1) { + for (int j = 0; j < temperature->ny + 2; j++) { + temperature->data[(temperature->nx + 1) * (temperature->ny + 2) + j] = 5.0; + } + } +} + +/* Set dimensions of the field. Note that the nx is the size of the first + * dimension and ny the second. */ +void set_field_dimensions(field *temperature, int nx, int ny, + parallel_data *parallel) +{ + int nx_local; + + nx_local = nx / parallel->size; + + temperature->dx = DX; + temperature->dy = DY; + temperature->nx = nx_local; + temperature->ny = ny; + temperature->nx_full = nx; + temperature->ny_full = ny; +} + +void parallel_setup(parallel_data *parallel, int nx, int ny) +{ + MPI_Comm_size(MPI_COMM_WORLD, ¶llel->size); + MPI_Comm_rank(MPI_COMM_WORLD, ¶llel->rank); + + parallel_set_dimensions(parallel, nx, ny); + + parallel->nup = parallel->rank - 1; + parallel->ndown = parallel->rank + 1; + + if (parallel->nup < 0) { + parallel->nup = MPI_PROC_NULL; + } + if (parallel->ndown > parallel->size - 1) { + parallel->ndown = MPI_PROC_NULL; + } +} + +void parallel_set_dimensions(parallel_data *parallel, int nx, int ny) +{ + int nx_local; + + nx_local = nx / parallel->size; + if (nx_local * parallel->size != nx) { + printf("Cannot divide grid evenly to processors\n"); + MPI_Abort(MPI_COMM_WORLD, -2); + } + + /* + MPI_Comm intranodecomm; + int nodeRank, nodeProcs, devCount; + + MPI_Comm_split_type(MPI_COMM_WORLD, MPI_COMM_TYPE_SHARED, 0, MPI_INFO_NULL, &intranodecomm); + + MPI_Comm_rank(intranodecomm, &nodeRank); + MPI_Comm_size(intranodecomm, &nodeProcs); + + MPI_Comm_free(&intranodecomm); + + hipGetDeviceCount(&devCount); + + if (nodeProcs > devCount) { + printf("Not enough GPUs for all processes in the node.\n"); + MPI_Abort(MPI_COMM_WORLD, -2); + } + + hipSetDevice(nodeRank); +*/ +} + + +/* Deallocate the 2D arrays of temperature fields */ +void finalize(field *temperature1, field *temperature2) +{ + delete[] temperature1->data; + delete[] temperature2->data; +} + diff --git a/application-performance/demos/tau/01_no_instrumentation/src/hip/utilities.cpp b/application-performance/demos/tau/01_no_instrumentation/src/hip/utilities.cpp new file mode 100644 index 000000000..37883dea6 --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/src/hip/utilities.cpp @@ -0,0 +1,64 @@ +/* Utility functions for heat equation solver + * NOTE: This file does not need to be edited! */ + +#include +#include +#include +#include +#include + +#include "heat.h" + + +/* Copy data on temperature1 into temperature2 */ +void copy_field(field *temperature1, field *temperature2) +{ + assert(temperature1->nx == temperature2->nx); + assert(temperature1->ny == temperature2->ny); + memcpy(temperature2->data, temperature1->data, + (temperature1->nx + 2) * (temperature1->ny + 2) * sizeof(double)); +} + +/* Swap the data of fields temperature1 and temperature2 */ +void swap_fields(field *temperature1, field *temperature2) +{ + double *tmp; + tmp = temperature1->data; + temperature1->data = temperature2->data; + temperature2->data = tmp; + + tmp = temperature1->devdata; + temperature1->devdata = temperature2->devdata; + temperature2->devdata = tmp; +} + +/* Allocate memory for a temperature field and initialise it to zero */ +void allocate_field(field *temperature) +{ + // Allocate also ghost layers + temperature->data = new double [(temperature->nx + 2) * (temperature->ny + 2)]; + + // Initialize to zero + memset(temperature->data, 0.0, + (temperature->nx + 2) * (temperature->ny + 2) * sizeof(double)); +} + +/* Calculate average temperature */ +double average(field *temperature) +{ + double local_average = 0.0; + double average = 0.0; + + for (int i = 1; i < temperature->nx + 1; i++) { + for (int j = 1; j < temperature->ny + 1; j++) { + int ind = i * (temperature->ny + 2) + j; + local_average += temperature->data[ind]; + } + } + + MPI_Allreduce(&local_average, &average, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD); + average /= (temperature->nx_full * temperature->ny_full); + return average; +} + + diff --git a/application-performance/demos/tau/01_no_instrumentation/trace.sbatch b/application-performance/demos/tau/01_no_instrumentation/trace.sbatch new file mode 100644 index 000000000..845fe580f --- /dev/null +++ b/application-performance/demos/tau/01_no_instrumentation/trace.sbatch @@ -0,0 +1,44 @@ +#!/bin/bash -l + +#SBATCH --account=project_465001194 +#SBATCH --job-name=hip_heat +#SBATCH --output=hip_heat.out%j +#SBATCH --error=hip_heat.err%j +#SBATCH --partition=small-g +#SBATCH --reservation=CSC_summer_school_gpu +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --gpus-per-node=8 +#SBATCH --mem=10G +#SBATCH --time=00:05:00 + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +cat << "EOF" > select_gpu +#!/bin/bash + +export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID +exec $* +EOF + +chmod +x ./select_gpu +CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" +export MPICH_GPU_SUPPORT_ENABLED=1 + +. ../sourceme.sh + +export TAU_TRACE=1 +export TRACEDIR=tautrace +[ -d $TRACEDIR ] || mkdir $TRACEDIR + +srun --cpu-bind=${CPU_BIND} \ + ./select_gpu \ + tau_exec \ + -T mpi,roctracer \ + src/hip/heat_hip 10000 10000 5000 + +rm -rf ./select_gpu diff --git a/application-performance/demos/tau/02_compiler_instrumentation/build.sh b/application-performance/demos/tau/02_compiler_instrumentation/build.sh new file mode 100755 index 000000000..70c14bab5 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/build.sh @@ -0,0 +1,14 @@ +#!/bin/bash -l + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +. ../sourceme.sh + +export TAU_OPTIONS=-optCompInst +export TAU_MAKEFILE=$TAU_LIB/Makefile.tau-rocm-hip-rocprofiler-roctracer-cray-papi-mpi-pthread + +(make -C src/hip/) || { echo "Failed to build hip code"; exit 1; } diff --git a/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch b/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch new file mode 100644 index 000000000..1060f9311 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch @@ -0,0 +1,42 @@ +#!/bin/bash -l + +#SBATCH --account=project_465001194 +#SBATCH --job-name=hip_heat +#SBATCH --output=hip_heat.out%j +#SBATCH --error=hip_heat.err%j +#SBATCH --partition=small-g +#SBATCH --reservation=CSC_summer_school_gpu +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --gpus-per-node=8 +#SBATCH --mem=10G +#SBATCH --time=00:05:00 + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +cat << "EOF" > select_gpu +#!/bin/bash + +export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID +exec $* +EOF + +chmod +x ./select_gpu +CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" +export MPICH_GPU_SUPPORT_ENABLED=1 + +. ../sourceme.sh + +export TAU_PROFILE=1 +export PROFILEDIR=tauprofile +[ -d $PROFILEDIR ] || mkdir $PROFILEDIR + +srun --cpu-bind=${CPU_BIND} \ + ./select_gpu \ + src/hip/heat_hip 10000 10000 5000 + +rm -rf ./select_gpu diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/common/bottle.dat b/application-performance/demos/tau/02_compiler_instrumentation/src/common/bottle.dat new file mode 100644 index 000000000..08409bc34 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/common/bottle.dat @@ -0,0 +1,201 @@ +# 200 200 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 95.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 6.000000 6.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 +95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 95.000000 diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.c b/application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.c new file mode 100644 index 000000000..89edec337 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.c @@ -0,0 +1,163 @@ +#define STB_IMAGE_WRITE_IMPLEMENTATION +#define STB_IMAGE_IMPLEMENTATION +#include "stb_image.h" +#include "stb_image_write.h" + +#include "pngwriter.h" +#include + +/* Datatype for RGB pixel */ +typedef struct { + uint8_t red; + uint8_t green; + uint8_t blue; +} pixel_t; + +static int heat_colormap[256][3] = { + {59, 76, 192}, {59, 76, 192}, {60, 78, 194}, {61, 80, 195}, + {62, 81, 197}, {64, 83, 198}, {65, 85, 200}, {66, 87, 201}, + {67, 88, 203}, {68, 90, 204}, {69, 92, 206}, {71, 93, 207}, + {72, 95, 209}, {73, 97, 210}, {74, 99, 211}, {75, 100, 213}, + {77, 102, 214}, {78, 104, 215}, {79, 105, 217}, {80, 107, 218}, + {82, 109, 219}, {83, 110, 221}, {84, 112, 222}, {85, 114, 223}, + {87, 115, 224}, {88, 117, 225}, {89, 119, 227}, {90, 120, 228}, + {92, 122, 229}, {93, 124, 230}, {94, 125, 231}, {96, 127, 232}, + {97, 129, 233}, {98, 130, 234}, {100, 132, 235}, {101, 133, 236}, + {102, 135, 237}, {103, 137, 238}, {105, 138, 239}, {106, 140, 240}, + {107, 141, 240}, {109, 143, 241}, {110, 144, 242}, {111, 146, 243}, + {113, 147, 244}, {114, 149, 244}, {116, 150, 245}, {117, 152, 246}, + {118, 153, 246}, {120, 155, 247}, {121, 156, 248}, {122, 157, 248}, + {124, 159, 249}, {125, 160, 249}, {127, 162, 250}, {128, 163, 250}, + {129, 164, 251}, {131, 166, 251}, {132, 167, 252}, {133, 168, 252}, + {135, 170, 252}, {136, 171, 253}, {138, 172, 253}, {139, 174, 253}, + {140, 175, 254}, {142, 176, 254}, {143, 177, 254}, {145, 179, 254}, + {146, 180, 254}, {147, 181, 255}, {149, 182, 255}, {150, 183, 255}, + {152, 185, 255}, {153, 186, 255}, {154, 187, 255}, {156, 188, 255}, + {157, 189, 255}, {158, 190, 255}, {160, 191, 255}, {161, 192, 255}, + {163, 193, 255}, {164, 194, 254}, {165, 195, 254}, {167, 196, 254}, + {168, 197, 254}, {169, 198, 254}, {171, 199, 253}, {172, 200, 253}, + {173, 201, 253}, {175, 202, 252}, {176, 203, 252}, {177, 203, 252}, + {179, 204, 251}, {180, 205, 251}, {181, 206, 250}, {183, 207, 250}, + {184, 207, 249}, {185, 208, 249}, {186, 209, 248}, {188, 209, 247}, + {189, 210, 247}, {190, 211, 246}, {191, 211, 246}, {193, 212, 245}, + {194, 213, 244}, {195, 213, 243}, {196, 214, 243}, {198, 214, 242}, + {199, 215, 241}, {200, 215, 240}, {201, 216, 239}, {202, 216, 239}, + {204, 217, 238}, {205, 217, 237}, {206, 217, 236}, {207, 218, 235}, + {208, 218, 234}, {209, 218, 233}, {210, 219, 232}, {211, 219, 231}, + {212, 219, 230}, {214, 220, 229}, {215, 220, 228}, {216, 220, 227}, + {217, 220, 225}, {218, 220, 224}, {219, 220, 223}, {220, 221, 222}, + {221, 221, 221}, {222, 220, 219}, {223, 220, 218}, {224, 219, 216}, + {225, 219, 215}, {226, 218, 214}, {227, 218, 212}, {228, 217, 211}, + {229, 216, 209}, {230, 216, 208}, {231, 215, 206}, {232, 215, 205}, + {233, 214, 203}, {233, 213, 202}, {234, 212, 200}, {235, 212, 199}, + {236, 211, 197}, {237, 210, 196}, {237, 209, 194}, {238, 208, 193}, + {239, 208, 191}, {239, 207, 190}, {240, 206, 188}, {240, 205, 187}, + {241, 204, 185}, {242, 203, 183}, {242, 202, 182}, {243, 201, 180}, + {243, 200, 179}, {243, 199, 177}, {244, 198, 176}, {244, 197, 174}, + {245, 196, 173}, {245, 195, 171}, {245, 194, 169}, {246, 193, 168}, + {246, 192, 166}, {246, 190, 165}, {246, 189, 163}, {247, 188, 161}, + {247, 187, 160}, {247, 186, 158}, {247, 184, 157}, {247, 183, 155}, + {247, 182, 153}, {247, 181, 152}, {247, 179, 150}, {247, 178, 149}, + {247, 177, 147}, {247, 175, 146}, {247, 174, 144}, {247, 172, 142}, + {247, 171, 141}, {247, 170, 139}, {247, 168, 138}, {247, 167, 136}, + {247, 165, 135}, {246, 164, 133}, {246, 162, 131}, {246, 161, 130}, + {246, 159, 128}, {245, 158, 127}, {245, 156, 125}, {245, 155, 124}, + {244, 153, 122}, {244, 151, 121}, {243, 150, 119}, {243, 148, 117}, + {242, 147, 116}, {242, 145, 114}, {241, 143, 113}, {241, 142, 111}, + {240, 140, 110}, {240, 138, 108}, {239, 136, 107}, {239, 135, 105}, + {238, 133, 104}, {237, 131, 102}, {237, 129, 101}, {236, 128, 99}, + {235, 126, 98}, {235, 124, 96}, {234, 122, 95}, {233, 120, 94}, + {232, 118, 92}, {231, 117, 91}, {230, 115, 89}, {230, 113, 88}, + {229, 111, 86}, {228, 109, 85}, {227, 107, 84}, {226, 105, 82}, + {225, 103, 81}, {224, 101, 79}, {223, 99, 78}, {222, 97, 77}, + {221, 95, 75}, {220, 93, 74}, {219, 91, 73}, {218, 89, 71}, + {217, 87, 70}, {215, 85, 69}, {214, 82, 67}, {213, 80, 66}, + {212, 78, 65}, {211, 76, 64}, {210, 74, 62}, {208, 71, 61}, + {207, 69, 60}, {206, 67, 59}, {204, 64, 57}, {203, 62, 56}, + {202, 59, 55}, {200, 57, 54}, {199, 54, 53}, {198, 52, 51}, + {196, 49, 50}, {195, 46, 49}, {193, 43, 48}, {192, 40, 47}, + {191, 37, 46}, {189, 34, 44}, {188, 30, 43}, {186, 26, 42}, + {185, 22, 41}, {183, 17, 40}, {182, 11, 39}, {180, 4, 38} +}; + +/* + * This routine sets the RGB values for the pixel_t structure using + * the colormap data heat_colormap. If the value is outside the + * acceptable png values 0, 255 blue or red color is used instead. + */ +pixel_t cmap(double value, const double scaling, const double offset) { + int ival; + + pixel_t pix = {}; + ival = (int)(value * scaling + offset); + if (ival < 0) { /* Colder than colorscale, substitute blue */ + pix.red = 0; + pix.green = 0; + pix.blue = 255; + } else if (ival > 255) { + pix.red = 255; /* Hotter than colormap, substitute red */ + pix.green = 0; + pix.blue = 0; + } else { + pix.red = heat_colormap[ival][0]; + pix.green = heat_colormap[ival][1]; + pix.blue = heat_colormap[ival][2]; + } + + return pix; +} + +/* + * Save the two dimensional array as a png image + * Arguments: + * double *data - pointer to an array of nx * ny values + * int nx - number of COLUMNS to be written + * int ny - number of ROWS to be written + * char *fname - name of the picture + * char lang - either 'c' or 'f' denoting the memory + * layout. That is, if 'f' is given, then rows + * and columns are swapped. + */ + +uint8_t *bytes_from_data(const double *data, const int height, const int width, + const int num_channels, const char *fname, + const char lang) { + const int c_layout = lang == 'c' || lang == 'C'; + const size_t num_bytes = height * width * num_channels; + uint8_t *bytes = (uint8_t *)malloc(num_bytes); + + size_t k = 0; + for (size_t i = 0; i < height; i++) { + for (size_t j = 0; j < width; j++) { + const size_t index = c_layout ? i * width + j : i + j * height; + + /* Scale the values so that values between 0 and + * 100 degrees are mapped to values between 0 and 255 */ + const pixel_t pixel = cmap(data[index], 2.55, 0.0); + bytes[0 + k * num_channels] = pixel.red; + bytes[1 + k * num_channels] = pixel.green; + bytes[2 + k * num_channels] = pixel.blue; + k++; + } + } + + return bytes; +} + +int save_png(const double *data, const int height, const int width, + const char *fname, const char lang) { + const size_t num_channels = 3; + uint8_t *bytes = + bytes_from_data(data, height, width, num_channels, fname, lang); + int status = !stbi_write_png(fname, width, height, num_channels, bytes, + num_channels * width); + free(bytes); + + return status; +} + +uint8_t *load_png(const char *fname, int *height, int *width, int *channels) { + return stbi_load(fname, height, width, channels, 0); +} + +void release_png(void *data) { stbi_image_free(data); } diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.h b/application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.h new file mode 100644 index 000000000..829c15abd --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/common/pngwriter.h @@ -0,0 +1,21 @@ +#ifndef PNGWRITER_H_ +#define PNGWRITER_H_ + +#include + +#if __cplusplus + extern "C" { +#endif + + uint8_t *bytes_from_data(const double *data, const int height, + const int width, const int num_channels, + const char *fname, const char lang); + int save_png(const double *data, const int height, const int width, + const char *fname, const char lang); + uint8_t *load_png(const char *fname, int *height, int *width, int *channels); + void release_png(void *data); + +#if __cplusplus + } +#endif +#endif diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image.h b/application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image.h new file mode 100644 index 000000000..a632d5435 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image.h @@ -0,0 +1,7985 @@ +/* stb_image - v2.29 - public domain image loader - http://nothings.org/stb + no warranty implied; use at your own risk + + Do this: + #define STB_IMAGE_IMPLEMENTATION + before you include this file in *one* C or C++ file to create the implementation. + + // i.e. it should look like this: + #include ... + #include ... + #include ... + #define STB_IMAGE_IMPLEMENTATION + #include "stb_image.h" + + You can #define STBI_ASSERT(x) before the #include to avoid using assert.h. + And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free + + + QUICK NOTES: + Primarily of interest to game developers and other people who can + avoid problematic images and only need the trivial interface + + JPEG baseline & progressive (12 bpc/arithmetic not supported, same as stock IJG lib) + PNG 1/2/4/8/16-bit-per-channel + + TGA (not sure what subset, if a subset) + BMP non-1bpp, non-RLE + PSD (composited view only, no extra channels, 8/16 bit-per-channel) + + GIF (*comp always reports as 4-channel) + HDR (radiance rgbE format) + PIC (Softimage PIC) + PNM (PPM and PGM binary only) + + Animated GIF still needs a proper API, but here's one way to do it: + http://gist.github.com/urraka/685d9a6340b26b830d49 + + - decode from memory or through FILE (define STBI_NO_STDIO to remove code) + - decode from arbitrary I/O callbacks + - SIMD acceleration on x86/x64 (SSE2) and ARM (NEON) + + Full documentation under "DOCUMENTATION" below. + + +LICENSE + + See end of file for license information. + +RECENT REVISION HISTORY: + + 2.29 (2023-05-xx) optimizations + 2.28 (2023-01-29) many error fixes, security errors, just tons of stuff + 2.27 (2021-07-11) document stbi_info better, 16-bit PNM support, bug fixes + 2.26 (2020-07-13) many minor fixes + 2.25 (2020-02-02) fix warnings + 2.24 (2020-02-02) fix warnings; thread-local failure_reason and flip_vertically + 2.23 (2019-08-11) fix clang static analysis warning + 2.22 (2019-03-04) gif fixes, fix warnings + 2.21 (2019-02-25) fix typo in comment + 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs + 2.19 (2018-02-11) fix warning + 2.18 (2018-01-30) fix warnings + 2.17 (2018-01-29) bugfix, 1-bit BMP, 16-bitness query, fix warnings + 2.16 (2017-07-23) all functions have 16-bit variants; optimizations; bugfixes + 2.15 (2017-03-18) fix png-1,2,4; all Imagenet JPGs; no runtime SSE detection on GCC + 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs + 2.13 (2016-12-04) experimental 16-bit API, only for PNG so far; fixes + 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes + 2.11 (2016-04-02) 16-bit PNGS; enable SSE2 in non-gcc x64 + RGB-format JPEG; remove white matting in PSD; + allocate large structures on the stack; + correct channel count for PNG & BMP + 2.10 (2016-01-22) avoid warning introduced in 2.09 + 2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED + + See end of file for full revision history. + + + ============================ Contributors ========================= + + Image formats Extensions, features + Sean Barrett (jpeg, png, bmp) Jetro Lauha (stbi_info) + Nicolas Schulz (hdr, psd) Martin "SpartanJ" Golini (stbi_info) + Jonathan Dummer (tga) James "moose2000" Brown (iPhone PNG) + Jean-Marc Lienher (gif) Ben "Disch" Wenger (io callbacks) + Tom Seddon (pic) Omar Cornut (1/2/4-bit PNG) + Thatcher Ulrich (psd) Nicolas Guillemot (vertical flip) + Ken Miller (pgm, ppm) Richard Mitton (16-bit PSD) + github:urraka (animated gif) Junggon Kim (PNM comments) + Christopher Forseth (animated gif) Daniel Gibson (16-bit TGA) + socks-the-fox (16-bit PNG) + Jeremy Sawicki (handle all ImageNet JPGs) + Optimizations & bugfixes Mikhail Morozov (1-bit BMP) + Fabian "ryg" Giesen Anael Seghezzi (is-16-bit query) + Arseny Kapoulkine Simon Breuss (16-bit PNM) + John-Mark Allen + Carmelo J Fdez-Aguera + + Bug & warning fixes + Marc LeBlanc David Woo Guillaume George Martins Mozeiko + Christpher Lloyd Jerry Jansson Joseph Thomson Blazej Dariusz Roszkowski + Phil Jordan Dave Moore Roy Eltham + Hayaki Saito Nathan Reed Won Chun + Luke Graham Johan Duparc Nick Verigakis the Horde3D community + Thomas Ruf Ronny Chevalier github:rlyeh + Janez Zemva John Bartholomew Michal Cichon github:romigrou + Jonathan Blow Ken Hamada Tero Hanninen github:svdijk + Eugene Golushkov Laurent Gomila Cort Stratton github:snagar + Aruelien Pocheville Sergio Gonzalez Thibault Reuille github:Zelex + Cass Everitt Ryamond Barbiero github:grim210 + Paul Du Bois Engin Manap Aldo Culquicondor github:sammyhw + Philipp Wiesemann Dale Weiler Oriol Ferrer Mesia github:phprus + Josh Tobin Neil Bickford Matthew Gregan github:poppolopoppo + Julian Raschke Gregory Mullen Christian Floisand github:darealshinji + Baldur Karlsson Kevin Schmidt JR Smith github:Michaelangel007 + Brad Weinberger Matvey Cherevko github:mosra + Luca Sas Alexander Veselov Zack Middleton [reserved] + Ryan C. Gordon [reserved] [reserved] + DO NOT ADD YOUR NAME HERE + + Jacko Dirks + + To add your name to the credits, pick a random blank space in the middle and fill it. + 80% of merge conflicts on stb PRs are due to people adding their name at the end + of the credits. +*/ + +#ifndef STBI_INCLUDE_STB_IMAGE_H +#define STBI_INCLUDE_STB_IMAGE_H + +// DOCUMENTATION +// +// Limitations: +// - no 12-bit-per-channel JPEG +// - no JPEGs with arithmetic coding +// - GIF always returns *comp=4 +// +// Basic usage (see HDR discussion below for HDR usage): +// int x,y,n; +// unsigned char *data = stbi_load(filename, &x, &y, &n, 0); +// // ... process data if not NULL ... +// // ... x = width, y = height, n = # 8-bit components per pixel ... +// // ... replace '0' with '1'..'4' to force that many components per pixel +// // ... but 'n' will always be the number that it would have been if you said 0 +// stbi_image_free(data); +// +// Standard parameters: +// int *x -- outputs image width in pixels +// int *y -- outputs image height in pixels +// int *channels_in_file -- outputs # of image components in image file +// int desired_channels -- if non-zero, # of image components requested in result +// +// The return value from an image loader is an 'unsigned char *' which points +// to the pixel data, or NULL on an allocation failure or if the image is +// corrupt or invalid. The pixel data consists of *y scanlines of *x pixels, +// with each pixel consisting of N interleaved 8-bit components; the first +// pixel pointed to is top-left-most in the image. There is no padding between +// image scanlines or between pixels, regardless of format. The number of +// components N is 'desired_channels' if desired_channels is non-zero, or +// *channels_in_file otherwise. If desired_channels is non-zero, +// *channels_in_file has the number of components that _would_ have been +// output otherwise. E.g. if you set desired_channels to 4, you will always +// get RGBA output, but you can check *channels_in_file to see if it's trivially +// opaque because e.g. there were only 3 channels in the source image. +// +// An output image with N components has the following components interleaved +// in this order in each pixel: +// +// N=#comp components +// 1 grey +// 2 grey, alpha +// 3 red, green, blue +// 4 red, green, blue, alpha +// +// If image loading fails for any reason, the return value will be NULL, +// and *x, *y, *channels_in_file will be unchanged. The function +// stbi_failure_reason() can be queried for an extremely brief, end-user +// unfriendly explanation of why the load failed. Define STBI_NO_FAILURE_STRINGS +// to avoid compiling these strings at all, and STBI_FAILURE_USERMSG to get slightly +// more user-friendly ones. +// +// Paletted PNG, BMP, GIF, and PIC images are automatically depalettized. +// +// To query the width, height and component count of an image without having to +// decode the full file, you can use the stbi_info family of functions: +// +// int x,y,n,ok; +// ok = stbi_info(filename, &x, &y, &n); +// // returns ok=1 and sets x, y, n if image is a supported format, +// // 0 otherwise. +// +// Note that stb_image pervasively uses ints in its public API for sizes, +// including sizes of memory buffers. This is now part of the API and thus +// hard to change without causing breakage. As a result, the various image +// loaders all have certain limits on image size; these differ somewhat +// by format but generally boil down to either just under 2GB or just under +// 1GB. When the decoded image would be larger than this, stb_image decoding +// will fail. +// +// Additionally, stb_image will reject image files that have any of their +// dimensions set to a larger value than the configurable STBI_MAX_DIMENSIONS, +// which defaults to 2**24 = 16777216 pixels. Due to the above memory limit, +// the only way to have an image with such dimensions load correctly +// is for it to have a rather extreme aspect ratio. Either way, the +// assumption here is that such larger images are likely to be malformed +// or malicious. If you do need to load an image with individual dimensions +// larger than that, and it still fits in the overall size limit, you can +// #define STBI_MAX_DIMENSIONS on your own to be something larger. +// +// =========================================================================== +// +// UNICODE: +// +// If compiling for Windows and you wish to use Unicode filenames, compile +// with +// #define STBI_WINDOWS_UTF8 +// and pass utf8-encoded filenames. Call stbi_convert_wchar_to_utf8 to convert +// Windows wchar_t filenames to utf8. +// +// =========================================================================== +// +// Philosophy +// +// stb libraries are designed with the following priorities: +// +// 1. easy to use +// 2. easy to maintain +// 3. good performance +// +// Sometimes I let "good performance" creep up in priority over "easy to maintain", +// and for best performance I may provide less-easy-to-use APIs that give higher +// performance, in addition to the easy-to-use ones. Nevertheless, it's important +// to keep in mind that from the standpoint of you, a client of this library, +// all you care about is #1 and #3, and stb libraries DO NOT emphasize #3 above all. +// +// Some secondary priorities arise directly from the first two, some of which +// provide more explicit reasons why performance can't be emphasized. +// +// - Portable ("ease of use") +// - Small source code footprint ("easy to maintain") +// - No dependencies ("ease of use") +// +// =========================================================================== +// +// I/O callbacks +// +// I/O callbacks allow you to read from arbitrary sources, like packaged +// files or some other source. Data read from callbacks are processed +// through a small internal buffer (currently 128 bytes) to try to reduce +// overhead. +// +// The three functions you must define are "read" (reads some bytes of data), +// "skip" (skips some bytes of data), "eof" (reports if the stream is at the end). +// +// =========================================================================== +// +// SIMD support +// +// The JPEG decoder will try to automatically use SIMD kernels on x86 when +// supported by the compiler. For ARM Neon support, you must explicitly +// request it. +// +// (The old do-it-yourself SIMD API is no longer supported in the current +// code.) +// +// On x86, SSE2 will automatically be used when available based on a run-time +// test; if not, the generic C versions are used as a fall-back. On ARM targets, +// the typical path is to have separate builds for NEON and non-NEON devices +// (at least this is true for iOS and Android). Therefore, the NEON support is +// toggled by a build flag: define STBI_NEON to get NEON loops. +// +// If for some reason you do not want to use any of SIMD code, or if +// you have issues compiling it, you can disable it entirely by +// defining STBI_NO_SIMD. +// +// =========================================================================== +// +// HDR image support (disable by defining STBI_NO_HDR) +// +// stb_image supports loading HDR images in general, and currently the Radiance +// .HDR file format specifically. You can still load any file through the existing +// interface; if you attempt to load an HDR file, it will be automatically remapped +// to LDR, assuming gamma 2.2 and an arbitrary scale factor defaulting to 1; +// both of these constants can be reconfigured through this interface: +// +// stbi_hdr_to_ldr_gamma(2.2f); +// stbi_hdr_to_ldr_scale(1.0f); +// +// (note, do not use _inverse_ constants; stbi_image will invert them +// appropriately). +// +// Additionally, there is a new, parallel interface for loading files as +// (linear) floats to preserve the full dynamic range: +// +// float *data = stbi_loadf(filename, &x, &y, &n, 0); +// +// If you load LDR images through this interface, those images will +// be promoted to floating point values, run through the inverse of +// constants corresponding to the above: +// +// stbi_ldr_to_hdr_scale(1.0f); +// stbi_ldr_to_hdr_gamma(2.2f); +// +// Finally, given a filename (or an open file or memory block--see header +// file for details) containing image data, you can query for the "most +// appropriate" interface to use (that is, whether the image is HDR or +// not), using: +// +// stbi_is_hdr(char *filename); +// +// =========================================================================== +// +// iPhone PNG support: +// +// We optionally support converting iPhone-formatted PNGs (which store +// premultiplied BGRA) back to RGB, even though they're internally encoded +// differently. To enable this conversion, call +// stbi_convert_iphone_png_to_rgb(1). +// +// Call stbi_set_unpremultiply_on_load(1) as well to force a divide per +// pixel to remove any premultiplied alpha *only* if the image file explicitly +// says there's premultiplied data (currently only happens in iPhone images, +// and only if iPhone convert-to-rgb processing is on). +// +// =========================================================================== +// +// ADDITIONAL CONFIGURATION +// +// - You can suppress implementation of any of the decoders to reduce +// your code footprint by #defining one or more of the following +// symbols before creating the implementation. +// +// STBI_NO_JPEG +// STBI_NO_PNG +// STBI_NO_BMP +// STBI_NO_PSD +// STBI_NO_TGA +// STBI_NO_GIF +// STBI_NO_HDR +// STBI_NO_PIC +// STBI_NO_PNM (.ppm and .pgm) +// +// - You can request *only* certain decoders and suppress all other ones +// (this will be more forward-compatible, as addition of new decoders +// doesn't require you to disable them explicitly): +// +// STBI_ONLY_JPEG +// STBI_ONLY_PNG +// STBI_ONLY_BMP +// STBI_ONLY_PSD +// STBI_ONLY_TGA +// STBI_ONLY_GIF +// STBI_ONLY_HDR +// STBI_ONLY_PIC +// STBI_ONLY_PNM (.ppm and .pgm) +// +// - If you use STBI_NO_PNG (or _ONLY_ without PNG), and you still +// want the zlib decoder to be available, #define STBI_SUPPORT_ZLIB +// +// - If you define STBI_MAX_DIMENSIONS, stb_image will reject images greater +// than that size (in either width or height) without further processing. +// This is to let programs in the wild set an upper bound to prevent +// denial-of-service attacks on untrusted data, as one could generate a +// valid image of gigantic dimensions and force stb_image to allocate a +// huge block of memory and spend disproportionate time decoding it. By +// default this is set to (1 << 24), which is 16777216, but that's still +// very big. + +#ifndef STBI_NO_STDIO +#include +#endif // STBI_NO_STDIO + +#define STBI_VERSION 1 + +enum +{ + STBI_default = 0, // only used for desired_channels + + STBI_grey = 1, + STBI_grey_alpha = 2, + STBI_rgb = 3, + STBI_rgb_alpha = 4 +}; + +#include +typedef unsigned char stbi_uc; +typedef unsigned short stbi_us; + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef STBIDEF +#ifdef STB_IMAGE_STATIC +#define STBIDEF static +#else +#define STBIDEF extern +#endif +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// PRIMARY API - works on images of any type +// + +// +// load image by filename, open file, or memory buffer +// + +typedef struct +{ + int (*read) (void *user,char *data,int size); // fill 'data' with 'size' bytes. return number of bytes actually read + void (*skip) (void *user,int n); // skip the next 'n' bytes, or 'unget' the last -n bytes if negative + int (*eof) (void *user); // returns nonzero if we are at end of file/data +} stbi_io_callbacks; + +//////////////////////////////////// +// +// 8-bits-per-channel interface +// + +STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *channels_in_file, int desired_channels); + +#ifndef STBI_NO_STDIO +STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); +// for stbi_load_from_file, file pointer is left pointing immediately after image +#endif + +#ifndef STBI_NO_GIF +STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp); +#endif + +#ifdef STBI_WINDOWS_UTF8 +STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); +#endif + +//////////////////////////////////// +// +// 16-bits-per-channel interface +// + +STBIDEF stbi_us *stbi_load_16_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); + +#ifndef STBI_NO_STDIO +STBIDEF stbi_us *stbi_load_16 (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_us *stbi_load_from_file_16(FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); +#endif + +//////////////////////////////////// +// +// float-per-channel interface +// +#ifndef STBI_NO_LINEAR + STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); + STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); + + #ifndef STBI_NO_STDIO + STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); + STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); + #endif +#endif + +#ifndef STBI_NO_HDR + STBIDEF void stbi_hdr_to_ldr_gamma(float gamma); + STBIDEF void stbi_hdr_to_ldr_scale(float scale); +#endif // STBI_NO_HDR + +#ifndef STBI_NO_LINEAR + STBIDEF void stbi_ldr_to_hdr_gamma(float gamma); + STBIDEF void stbi_ldr_to_hdr_scale(float scale); +#endif // STBI_NO_LINEAR + +// stbi_is_hdr is always defined, but always returns false if STBI_NO_HDR +STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user); +STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len); +#ifndef STBI_NO_STDIO +STBIDEF int stbi_is_hdr (char const *filename); +STBIDEF int stbi_is_hdr_from_file(FILE *f); +#endif // STBI_NO_STDIO + + +// get a VERY brief reason for failure +// on most compilers (and ALL modern mainstream compilers) this is threadsafe +STBIDEF const char *stbi_failure_reason (void); + +// free the loaded image -- this is just free() +STBIDEF void stbi_image_free (void *retval_from_stbi_load); + +// get image dimensions & components without fully decoding +STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp); +STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp); +STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len); +STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *clbk, void *user); + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp); +STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp); +STBIDEF int stbi_is_16_bit (char const *filename); +STBIDEF int stbi_is_16_bit_from_file(FILE *f); +#endif + + + +// for image formats that explicitly notate that they have premultiplied alpha, +// we just return the colors as stored in the file. set this flag to force +// unpremultiplication. results are undefined if the unpremultiply overflow. +STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply); + +// indicate whether we should process iphone images back to canonical format, +// or just pass them through "as-is" +STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert); + +// flip the image vertically, so the first pixel in the output array is the bottom left +STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip); + +// as above, but only applies to images loaded on the thread that calls the function +// this function is only available if your compiler supports thread-local variables; +// calling it will fail to link if your compiler doesn't +STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply); +STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert); +STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip); + +// ZLIB client - used by PNG, available for other purposes + +STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen); +STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header); +STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen); +STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); + +STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen); +STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); + + +#ifdef __cplusplus +} +#endif + +// +// +//// end header file ///////////////////////////////////////////////////// +#endif // STBI_INCLUDE_STB_IMAGE_H + +#ifdef STB_IMAGE_IMPLEMENTATION + +#if defined(STBI_ONLY_JPEG) || defined(STBI_ONLY_PNG) || defined(STBI_ONLY_BMP) \ + || defined(STBI_ONLY_TGA) || defined(STBI_ONLY_GIF) || defined(STBI_ONLY_PSD) \ + || defined(STBI_ONLY_HDR) || defined(STBI_ONLY_PIC) || defined(STBI_ONLY_PNM) \ + || defined(STBI_ONLY_ZLIB) + #ifndef STBI_ONLY_JPEG + #define STBI_NO_JPEG + #endif + #ifndef STBI_ONLY_PNG + #define STBI_NO_PNG + #endif + #ifndef STBI_ONLY_BMP + #define STBI_NO_BMP + #endif + #ifndef STBI_ONLY_PSD + #define STBI_NO_PSD + #endif + #ifndef STBI_ONLY_TGA + #define STBI_NO_TGA + #endif + #ifndef STBI_ONLY_GIF + #define STBI_NO_GIF + #endif + #ifndef STBI_ONLY_HDR + #define STBI_NO_HDR + #endif + #ifndef STBI_ONLY_PIC + #define STBI_NO_PIC + #endif + #ifndef STBI_ONLY_PNM + #define STBI_NO_PNM + #endif +#endif + +#if defined(STBI_NO_PNG) && !defined(STBI_SUPPORT_ZLIB) && !defined(STBI_NO_ZLIB) +#define STBI_NO_ZLIB +#endif + + +#include +#include // ptrdiff_t on osx +#include +#include +#include + +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) +#include // ldexp, pow +#endif + +#ifndef STBI_NO_STDIO +#include +#endif + +#ifndef STBI_ASSERT +#include +#define STBI_ASSERT(x) assert(x) +#endif + +#ifdef __cplusplus +#define STBI_EXTERN extern "C" +#else +#define STBI_EXTERN extern +#endif + + +#ifndef _MSC_VER + #ifdef __cplusplus + #define stbi_inline inline + #else + #define stbi_inline + #endif +#else + #define stbi_inline __forceinline +#endif + +#ifndef STBI_NO_THREAD_LOCALS + #if defined(__cplusplus) && __cplusplus >= 201103L + #define STBI_THREAD_LOCAL thread_local + #elif defined(__GNUC__) && __GNUC__ < 5 + #define STBI_THREAD_LOCAL __thread + #elif defined(_MSC_VER) + #define STBI_THREAD_LOCAL __declspec(thread) + #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) + #define STBI_THREAD_LOCAL _Thread_local + #endif + + #ifndef STBI_THREAD_LOCAL + #if defined(__GNUC__) + #define STBI_THREAD_LOCAL __thread + #endif + #endif +#endif + +#if defined(_MSC_VER) || defined(__SYMBIAN32__) +typedef unsigned short stbi__uint16; +typedef signed short stbi__int16; +typedef unsigned int stbi__uint32; +typedef signed int stbi__int32; +#else +#include +typedef uint16_t stbi__uint16; +typedef int16_t stbi__int16; +typedef uint32_t stbi__uint32; +typedef int32_t stbi__int32; +#endif + +// should produce compiler error if size is wrong +typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1]; + +#ifdef _MSC_VER +#define STBI_NOTUSED(v) (void)(v) +#else +#define STBI_NOTUSED(v) (void)sizeof(v) +#endif + +#ifdef _MSC_VER +#define STBI_HAS_LROTL +#endif + +#ifdef STBI_HAS_LROTL + #define stbi_lrot(x,y) _lrotl(x,y) +#else + #define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (-(y) & 31))) +#endif + +#if defined(STBI_MALLOC) && defined(STBI_FREE) && (defined(STBI_REALLOC) || defined(STBI_REALLOC_SIZED)) +// ok +#elif !defined(STBI_MALLOC) && !defined(STBI_FREE) && !defined(STBI_REALLOC) && !defined(STBI_REALLOC_SIZED) +// ok +#else +#error "Must define all or none of STBI_MALLOC, STBI_FREE, and STBI_REALLOC (or STBI_REALLOC_SIZED)." +#endif + +#ifndef STBI_MALLOC +#define STBI_MALLOC(sz) malloc(sz) +#define STBI_REALLOC(p,newsz) realloc(p,newsz) +#define STBI_FREE(p) free(p) +#endif + +#ifndef STBI_REALLOC_SIZED +#define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz) +#endif + +// x86/x64 detection +#if defined(__x86_64__) || defined(_M_X64) +#define STBI__X64_TARGET +#elif defined(__i386) || defined(_M_IX86) +#define STBI__X86_TARGET +#endif + +#if defined(__GNUC__) && defined(STBI__X86_TARGET) && !defined(__SSE2__) && !defined(STBI_NO_SIMD) +// gcc doesn't support sse2 intrinsics unless you compile with -msse2, +// which in turn means it gets to use SSE2 everywhere. This is unfortunate, +// but previous attempts to provide the SSE2 functions with runtime +// detection caused numerous issues. The way architecture extensions are +// exposed in GCC/Clang is, sadly, not really suited for one-file libs. +// New behavior: if compiled with -msse2, we use SSE2 without any +// detection; if not, we don't use it at all. +#define STBI_NO_SIMD +#endif + +#if defined(__MINGW32__) && defined(STBI__X86_TARGET) && !defined(STBI_MINGW_ENABLE_SSE2) && !defined(STBI_NO_SIMD) +// Note that __MINGW32__ doesn't actually mean 32-bit, so we have to avoid STBI__X64_TARGET +// +// 32-bit MinGW wants ESP to be 16-byte aligned, but this is not in the +// Windows ABI and VC++ as well as Windows DLLs don't maintain that invariant. +// As a result, enabling SSE2 on 32-bit MinGW is dangerous when not +// simultaneously enabling "-mstackrealign". +// +// See https://github.com/nothings/stb/issues/81 for more information. +// +// So default to no SSE2 on 32-bit MinGW. If you've read this far and added +// -mstackrealign to your build settings, feel free to #define STBI_MINGW_ENABLE_SSE2. +#define STBI_NO_SIMD +#endif + +#if !defined(STBI_NO_SIMD) && (defined(STBI__X86_TARGET) || defined(STBI__X64_TARGET)) +#define STBI_SSE2 +#include + +#ifdef _MSC_VER + +#if _MSC_VER >= 1400 // not VC6 +#include // __cpuid +static int stbi__cpuid3(void) +{ + int info[4]; + __cpuid(info,1); + return info[3]; +} +#else +static int stbi__cpuid3(void) +{ + int res; + __asm { + mov eax,1 + cpuid + mov res,edx + } + return res; +} +#endif + +#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name + +#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) +static int stbi__sse2_available(void) +{ + int info3 = stbi__cpuid3(); + return ((info3 >> 26) & 1) != 0; +} +#endif + +#else // assume GCC-style if not VC++ +#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) + +#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) +static int stbi__sse2_available(void) +{ + // If we're even attempting to compile this on GCC/Clang, that means + // -msse2 is on, which means the compiler is allowed to use SSE2 + // instructions at will, and so are we. + return 1; +} +#endif + +#endif +#endif + +// ARM NEON +#if defined(STBI_NO_SIMD) && defined(STBI_NEON) +#undef STBI_NEON +#endif + +#ifdef STBI_NEON +#include +#ifdef _MSC_VER +#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name +#else +#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) +#endif +#endif + +#ifndef STBI_SIMD_ALIGN +#define STBI_SIMD_ALIGN(type, name) type name +#endif + +#ifndef STBI_MAX_DIMENSIONS +#define STBI_MAX_DIMENSIONS (1 << 24) +#endif + +/////////////////////////////////////////////// +// +// stbi__context struct and start_xxx functions + +// stbi__context structure is our basic context used by all images, so it +// contains all the IO context, plus some basic image information +typedef struct +{ + stbi__uint32 img_x, img_y; + int img_n, img_out_n; + + stbi_io_callbacks io; + void *io_user_data; + + int read_from_callbacks; + int buflen; + stbi_uc buffer_start[128]; + int callback_already_read; + + stbi_uc *img_buffer, *img_buffer_end; + stbi_uc *img_buffer_original, *img_buffer_original_end; +} stbi__context; + + +static void stbi__refill_buffer(stbi__context *s); + +// initialize a memory-decode context +static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len) +{ + s->io.read = NULL; + s->read_from_callbacks = 0; + s->callback_already_read = 0; + s->img_buffer = s->img_buffer_original = (stbi_uc *) buffer; + s->img_buffer_end = s->img_buffer_original_end = (stbi_uc *) buffer+len; +} + +// initialize a callback-based context +static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user) +{ + s->io = *c; + s->io_user_data = user; + s->buflen = sizeof(s->buffer_start); + s->read_from_callbacks = 1; + s->callback_already_read = 0; + s->img_buffer = s->img_buffer_original = s->buffer_start; + stbi__refill_buffer(s); + s->img_buffer_original_end = s->img_buffer_end; +} + +#ifndef STBI_NO_STDIO + +static int stbi__stdio_read(void *user, char *data, int size) +{ + return (int) fread(data,1,size,(FILE*) user); +} + +static void stbi__stdio_skip(void *user, int n) +{ + int ch; + fseek((FILE*) user, n, SEEK_CUR); + ch = fgetc((FILE*) user); /* have to read a byte to reset feof()'s flag */ + if (ch != EOF) { + ungetc(ch, (FILE *) user); /* push byte back onto stream if valid. */ + } +} + +static int stbi__stdio_eof(void *user) +{ + return feof((FILE*) user) || ferror((FILE *) user); +} + +static stbi_io_callbacks stbi__stdio_callbacks = +{ + stbi__stdio_read, + stbi__stdio_skip, + stbi__stdio_eof, +}; + +static void stbi__start_file(stbi__context *s, FILE *f) +{ + stbi__start_callbacks(s, &stbi__stdio_callbacks, (void *) f); +} + +//static void stop_file(stbi__context *s) { } + +#endif // !STBI_NO_STDIO + +static void stbi__rewind(stbi__context *s) +{ + // conceptually rewind SHOULD rewind to the beginning of the stream, + // but we just rewind to the beginning of the initial buffer, because + // we only use it after doing 'test', which only ever looks at at most 92 bytes + s->img_buffer = s->img_buffer_original; + s->img_buffer_end = s->img_buffer_original_end; +} + +enum +{ + STBI_ORDER_RGB, + STBI_ORDER_BGR +}; + +typedef struct +{ + int bits_per_channel; + int num_channels; + int channel_order; +} stbi__result_info; + +#ifndef STBI_NO_JPEG +static int stbi__jpeg_test(stbi__context *s); +static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PNG +static int stbi__png_test(stbi__context *s); +static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__png_is16(stbi__context *s); +#endif + +#ifndef STBI_NO_BMP +static int stbi__bmp_test(stbi__context *s); +static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_TGA +static int stbi__tga_test(stbi__context *s); +static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PSD +static int stbi__psd_test(stbi__context *s); +static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc); +static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__psd_is16(stbi__context *s); +#endif + +#ifndef STBI_NO_HDR +static int stbi__hdr_test(stbi__context *s); +static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PIC +static int stbi__pic_test(stbi__context *s); +static void *stbi__pic_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_GIF +static int stbi__gif_test(stbi__context *s); +static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp); +static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PNM +static int stbi__pnm_test(stbi__context *s); +static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__pnm_is16(stbi__context *s); +#endif + +static +#ifdef STBI_THREAD_LOCAL +STBI_THREAD_LOCAL +#endif +const char *stbi__g_failure_reason; + +STBIDEF const char *stbi_failure_reason(void) +{ + return stbi__g_failure_reason; +} + +#ifndef STBI_NO_FAILURE_STRINGS +static int stbi__err(const char *str) +{ + stbi__g_failure_reason = str; + return 0; +} +#endif + +static void *stbi__malloc(size_t size) +{ + return STBI_MALLOC(size); +} + +// stb_image uses ints pervasively, including for offset calculations. +// therefore the largest decoded image size we can support with the +// current code, even on 64-bit targets, is INT_MAX. this is not a +// significant limitation for the intended use case. +// +// we do, however, need to make sure our size calculations don't +// overflow. hence a few helper functions for size calculations that +// multiply integers together, making sure that they're non-negative +// and no overflow occurs. + +// return 1 if the sum is valid, 0 on overflow. +// negative terms are considered invalid. +static int stbi__addsizes_valid(int a, int b) +{ + if (b < 0) return 0; + // now 0 <= b <= INT_MAX, hence also + // 0 <= INT_MAX - b <= INTMAX. + // And "a + b <= INT_MAX" (which might overflow) is the + // same as a <= INT_MAX - b (no overflow) + return a <= INT_MAX - b; +} + +// returns 1 if the product is valid, 0 on overflow. +// negative factors are considered invalid. +static int stbi__mul2sizes_valid(int a, int b) +{ + if (a < 0 || b < 0) return 0; + if (b == 0) return 1; // mul-by-0 is always safe + // portable way to check for no overflows in a*b + return a <= INT_MAX/b; +} + +#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) +// returns 1 if "a*b + add" has no negative terms/factors and doesn't overflow +static int stbi__mad2sizes_valid(int a, int b, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__addsizes_valid(a*b, add); +} +#endif + +// returns 1 if "a*b*c + add" has no negative terms/factors and doesn't overflow +static int stbi__mad3sizes_valid(int a, int b, int c, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && + stbi__addsizes_valid(a*b*c, add); +} + +// returns 1 if "a*b*c*d + add" has no negative terms/factors and doesn't overflow +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) +static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && + stbi__mul2sizes_valid(a*b*c, d) && stbi__addsizes_valid(a*b*c*d, add); +} +#endif + +#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) +// mallocs with size overflow checking +static void *stbi__malloc_mad2(int a, int b, int add) +{ + if (!stbi__mad2sizes_valid(a, b, add)) return NULL; + return stbi__malloc(a*b + add); +} +#endif + +static void *stbi__malloc_mad3(int a, int b, int c, int add) +{ + if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL; + return stbi__malloc(a*b*c + add); +} + +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) +static void *stbi__malloc_mad4(int a, int b, int c, int d, int add) +{ + if (!stbi__mad4sizes_valid(a, b, c, d, add)) return NULL; + return stbi__malloc(a*b*c*d + add); +} +#endif + +// returns 1 if the sum of two signed ints is valid (between -2^31 and 2^31-1 inclusive), 0 on overflow. +static int stbi__addints_valid(int a, int b) +{ + if ((a >= 0) != (b >= 0)) return 1; // a and b have different signs, so no overflow + if (a < 0 && b < 0) return a >= INT_MIN - b; // same as a + b >= INT_MIN; INT_MIN - b cannot overflow since b < 0. + return a <= INT_MAX - b; +} + +// returns 1 if the product of two ints fits in a signed short, 0 on overflow. +static int stbi__mul2shorts_valid(int a, int b) +{ + if (b == 0 || b == -1) return 1; // multiplication by 0 is always 0; check for -1 so SHRT_MIN/b doesn't overflow + if ((a >= 0) == (b >= 0)) return a <= SHRT_MAX/b; // product is positive, so similar to mul2sizes_valid + if (b < 0) return a <= SHRT_MIN / b; // same as a * b >= SHRT_MIN + return a >= SHRT_MIN / b; +} + +// stbi__err - error +// stbi__errpf - error returning pointer to float +// stbi__errpuc - error returning pointer to unsigned char + +#ifdef STBI_NO_FAILURE_STRINGS + #define stbi__err(x,y) 0 +#elif defined(STBI_FAILURE_USERMSG) + #define stbi__err(x,y) stbi__err(y) +#else + #define stbi__err(x,y) stbi__err(x) +#endif + +#define stbi__errpf(x,y) ((float *)(size_t) (stbi__err(x,y)?NULL:NULL)) +#define stbi__errpuc(x,y) ((unsigned char *)(size_t) (stbi__err(x,y)?NULL:NULL)) + +STBIDEF void stbi_image_free(void *retval_from_stbi_load) +{ + STBI_FREE(retval_from_stbi_load); +} + +#ifndef STBI_NO_LINEAR +static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp); +#endif + +#ifndef STBI_NO_HDR +static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp); +#endif + +static int stbi__vertically_flip_on_load_global = 0; + +STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip) +{ + stbi__vertically_flip_on_load_global = flag_true_if_should_flip; +} + +#ifndef STBI_THREAD_LOCAL +#define stbi__vertically_flip_on_load stbi__vertically_flip_on_load_global +#else +static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set; + +STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip) +{ + stbi__vertically_flip_on_load_local = flag_true_if_should_flip; + stbi__vertically_flip_on_load_set = 1; +} + +#define stbi__vertically_flip_on_load (stbi__vertically_flip_on_load_set \ + ? stbi__vertically_flip_on_load_local \ + : stbi__vertically_flip_on_load_global) +#endif // STBI_THREAD_LOCAL + +static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) +{ + memset(ri, 0, sizeof(*ri)); // make sure it's initialized if we add new fields + ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed + ri->channel_order = STBI_ORDER_RGB; // all current input & output are this, but this is here so we can add BGR order + ri->num_channels = 0; + + // test the formats with a very explicit header first (at least a FOURCC + // or distinctive magic number first) + #ifndef STBI_NO_PNG + if (stbi__png_test(s)) return stbi__png_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_BMP + if (stbi__bmp_test(s)) return stbi__bmp_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_GIF + if (stbi__gif_test(s)) return stbi__gif_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_PSD + if (stbi__psd_test(s)) return stbi__psd_load(s,x,y,comp,req_comp, ri, bpc); + #else + STBI_NOTUSED(bpc); + #endif + #ifndef STBI_NO_PIC + if (stbi__pic_test(s)) return stbi__pic_load(s,x,y,comp,req_comp, ri); + #endif + + // then the formats that can end up attempting to load with just 1 or 2 + // bytes matching expectations; these are prone to false positives, so + // try them later + #ifndef STBI_NO_JPEG + if (stbi__jpeg_test(s)) return stbi__jpeg_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_PNM + if (stbi__pnm_test(s)) return stbi__pnm_load(s,x,y,comp,req_comp, ri); + #endif + + #ifndef STBI_NO_HDR + if (stbi__hdr_test(s)) { + float *hdr = stbi__hdr_load(s, x,y,comp,req_comp, ri); + return stbi__hdr_to_ldr(hdr, *x, *y, req_comp ? req_comp : *comp); + } + #endif + + #ifndef STBI_NO_TGA + // test tga last because it's a crappy test! + if (stbi__tga_test(s)) + return stbi__tga_load(s,x,y,comp,req_comp, ri); + #endif + + return stbi__errpuc("unknown image type", "Image not of any known type, or corrupt"); +} + +static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels) +{ + int i; + int img_len = w * h * channels; + stbi_uc *reduced; + + reduced = (stbi_uc *) stbi__malloc(img_len); + if (reduced == NULL) return stbi__errpuc("outofmem", "Out of memory"); + + for (i = 0; i < img_len; ++i) + reduced[i] = (stbi_uc)((orig[i] >> 8) & 0xFF); // top half of each byte is sufficient approx of 16->8 bit scaling + + STBI_FREE(orig); + return reduced; +} + +static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels) +{ + int i; + int img_len = w * h * channels; + stbi__uint16 *enlarged; + + enlarged = (stbi__uint16 *) stbi__malloc(img_len*2); + if (enlarged == NULL) return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); + + for (i = 0; i < img_len; ++i) + enlarged[i] = (stbi__uint16)((orig[i] << 8) + orig[i]); // replicate to high and low byte, maps 0->0, 255->0xffff + + STBI_FREE(orig); + return enlarged; +} + +static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel) +{ + int row; + size_t bytes_per_row = (size_t)w * bytes_per_pixel; + stbi_uc temp[2048]; + stbi_uc *bytes = (stbi_uc *)image; + + for (row = 0; row < (h>>1); row++) { + stbi_uc *row0 = bytes + row*bytes_per_row; + stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row; + // swap row0 with row1 + size_t bytes_left = bytes_per_row; + while (bytes_left) { + size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp); + memcpy(temp, row0, bytes_copy); + memcpy(row0, row1, bytes_copy); + memcpy(row1, temp, bytes_copy); + row0 += bytes_copy; + row1 += bytes_copy; + bytes_left -= bytes_copy; + } + } +} + +#ifndef STBI_NO_GIF +static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel) +{ + int slice; + int slice_size = w * h * bytes_per_pixel; + + stbi_uc *bytes = (stbi_uc *)image; + for (slice = 0; slice < z; ++slice) { + stbi__vertical_flip(bytes, w, h, bytes_per_pixel); + bytes += slice_size; + } +} +#endif + +static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + stbi__result_info ri; + void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 8); + + if (result == NULL) + return NULL; + + // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. + STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); + + if (ri.bits_per_channel != 8) { + result = stbi__convert_16_to_8((stbi__uint16 *) result, *x, *y, req_comp == 0 ? *comp : req_comp); + ri.bits_per_channel = 8; + } + + // @TODO: move stbi__convert_format to here + + if (stbi__vertically_flip_on_load) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi_uc)); + } + + return (unsigned char *) result; +} + +static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + stbi__result_info ri; + void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 16); + + if (result == NULL) + return NULL; + + // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. + STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); + + if (ri.bits_per_channel != 16) { + result = stbi__convert_8_to_16((stbi_uc *) result, *x, *y, req_comp == 0 ? *comp : req_comp); + ri.bits_per_channel = 16; + } + + // @TODO: move stbi__convert_format16 to here + // @TODO: special case RGB-to-Y (and RGBA-to-YA) for 8-bit-to-16-bit case to keep more precision + + if (stbi__vertically_flip_on_load) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi__uint16)); + } + + return (stbi__uint16 *) result; +} + +#if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR) +static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp) +{ + if (stbi__vertically_flip_on_load && result != NULL) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(float)); + } +} +#endif + +#ifndef STBI_NO_STDIO + +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) +STBI_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); +STBI_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); +#endif + +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) +STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) +{ + return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); +} +#endif + +static FILE *stbi__fopen(char const *filename, char const *mode) +{ + FILE *f; +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) + wchar_t wMode[64]; + wchar_t wFilename[1024]; + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename))) + return 0; + + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode))) + return 0; + +#if defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != _wfopen_s(&f, wFilename, wMode)) + f = 0; +#else + f = _wfopen(wFilename, wMode); +#endif + +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != fopen_s(&f, filename, mode)) + f=0; +#else + f = fopen(filename, mode); +#endif + return f; +} + + +STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + unsigned char *result; + if (!f) return stbi__errpuc("can't fopen", "Unable to open file"); + result = stbi_load_from_file(f,x,y,comp,req_comp); + fclose(f); + return result; +} + +STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + unsigned char *result; + stbi__context s; + stbi__start_file(&s,f); + result = stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); + if (result) { + // need to 'unget' all the characters in the IO buffer + fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); + } + return result; +} + +STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + stbi__uint16 *result; + stbi__context s; + stbi__start_file(&s,f); + result = stbi__load_and_postprocess_16bit(&s,x,y,comp,req_comp); + if (result) { + // need to 'unget' all the characters in the IO buffer + fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); + } + return result; +} + +STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + stbi__uint16 *result; + if (!f) return (stbi_us *) stbi__errpuc("can't fopen", "Unable to open file"); + result = stbi_load_from_file_16(f,x,y,comp,req_comp); + fclose(f); + return result; +} + + +#endif //!STBI_NO_STDIO + +STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); +} + +STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *)clbk, user); + return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); +} + +STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); +} + +STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); +} + +#ifndef STBI_NO_GIF +STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp) +{ + unsigned char *result; + stbi__context s; + stbi__start_mem(&s,buffer,len); + + result = (unsigned char*) stbi__load_gif_main(&s, delays, x, y, z, comp, req_comp); + if (stbi__vertically_flip_on_load) { + stbi__vertical_flip_slices( result, *x, *y, *z, *comp ); + } + + return result; +} +#endif + +#ifndef STBI_NO_LINEAR +static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + unsigned char *data; + #ifndef STBI_NO_HDR + if (stbi__hdr_test(s)) { + stbi__result_info ri; + float *hdr_data = stbi__hdr_load(s,x,y,comp,req_comp, &ri); + if (hdr_data) + stbi__float_postprocess(hdr_data,x,y,comp,req_comp); + return hdr_data; + } + #endif + data = stbi__load_and_postprocess_8bit(s, x, y, comp, req_comp); + if (data) + return stbi__ldr_to_hdr(data, *x, *y, req_comp ? req_comp : *comp); + return stbi__errpf("unknown image type", "Image not of any known type, or corrupt"); +} + +STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} + +STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} + +#ifndef STBI_NO_STDIO +STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + float *result; + FILE *f = stbi__fopen(filename, "rb"); + if (!f) return stbi__errpf("can't fopen", "Unable to open file"); + result = stbi_loadf_from_file(f,x,y,comp,req_comp); + fclose(f); + return result; +} + +STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_file(&s,f); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} +#endif // !STBI_NO_STDIO + +#endif // !STBI_NO_LINEAR + +// these is-hdr-or-not is defined independent of whether STBI_NO_LINEAR is +// defined, for API simplicity; if STBI_NO_LINEAR is defined, it always +// reports false! + +STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len) +{ + #ifndef STBI_NO_HDR + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__hdr_test(&s); + #else + STBI_NOTUSED(buffer); + STBI_NOTUSED(len); + return 0; + #endif +} + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_is_hdr (char const *filename) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result=0; + if (f) { + result = stbi_is_hdr_from_file(f); + fclose(f); + } + return result; +} + +STBIDEF int stbi_is_hdr_from_file(FILE *f) +{ + #ifndef STBI_NO_HDR + long pos = ftell(f); + int res; + stbi__context s; + stbi__start_file(&s,f); + res = stbi__hdr_test(&s); + fseek(f, pos, SEEK_SET); + return res; + #else + STBI_NOTUSED(f); + return 0; + #endif +} +#endif // !STBI_NO_STDIO + +STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user) +{ + #ifndef STBI_NO_HDR + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__hdr_test(&s); + #else + STBI_NOTUSED(clbk); + STBI_NOTUSED(user); + return 0; + #endif +} + +#ifndef STBI_NO_LINEAR +static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f; + +STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; } +STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; } +#endif + +static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f; + +STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; } +STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; } + + +////////////////////////////////////////////////////////////////////////////// +// +// Common code used by all image loaders +// + +enum +{ + STBI__SCAN_load=0, + STBI__SCAN_type, + STBI__SCAN_header +}; + +static void stbi__refill_buffer(stbi__context *s) +{ + int n = (s->io.read)(s->io_user_data,(char*)s->buffer_start,s->buflen); + s->callback_already_read += (int) (s->img_buffer - s->img_buffer_original); + if (n == 0) { + // at end of file, treat same as if from memory, but need to handle case + // where s->img_buffer isn't pointing to safe memory, e.g. 0-byte file + s->read_from_callbacks = 0; + s->img_buffer = s->buffer_start; + s->img_buffer_end = s->buffer_start+1; + *s->img_buffer = 0; + } else { + s->img_buffer = s->buffer_start; + s->img_buffer_end = s->buffer_start + n; + } +} + +stbi_inline static stbi_uc stbi__get8(stbi__context *s) +{ + if (s->img_buffer < s->img_buffer_end) + return *s->img_buffer++; + if (s->read_from_callbacks) { + stbi__refill_buffer(s); + return *s->img_buffer++; + } + return 0; +} + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +stbi_inline static int stbi__at_eof(stbi__context *s) +{ + if (s->io.read) { + if (!(s->io.eof)(s->io_user_data)) return 0; + // if feof() is true, check if buffer = end + // special case: we've only got the special 0 character at the end + if (s->read_from_callbacks == 0) return 1; + } + + return s->img_buffer >= s->img_buffer_end; +} +#endif + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) +// nothing +#else +static void stbi__skip(stbi__context *s, int n) +{ + if (n == 0) return; // already there! + if (n < 0) { + s->img_buffer = s->img_buffer_end; + return; + } + if (s->io.read) { + int blen = (int) (s->img_buffer_end - s->img_buffer); + if (blen < n) { + s->img_buffer = s->img_buffer_end; + (s->io.skip)(s->io_user_data, n - blen); + return; + } + } + s->img_buffer += n; +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_TGA) && defined(STBI_NO_HDR) && defined(STBI_NO_PNM) +// nothing +#else +static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n) +{ + if (s->io.read) { + int blen = (int) (s->img_buffer_end - s->img_buffer); + if (blen < n) { + int res, count; + + memcpy(buffer, s->img_buffer, blen); + + count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen); + res = (count == (n-blen)); + s->img_buffer = s->img_buffer_end; + return res; + } + } + + if (s->img_buffer+n <= s->img_buffer_end) { + memcpy(buffer, s->img_buffer, n); + s->img_buffer += n; + return 1; + } else + return 0; +} +#endif + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) +// nothing +#else +static int stbi__get16be(stbi__context *s) +{ + int z = stbi__get8(s); + return (z << 8) + stbi__get8(s); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) +// nothing +#else +static stbi__uint32 stbi__get32be(stbi__context *s) +{ + stbi__uint32 z = stbi__get16be(s); + return (z << 16) + stbi__get16be(s); +} +#endif + +#if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) +// nothing +#else +static int stbi__get16le(stbi__context *s) +{ + int z = stbi__get8(s); + return z + (stbi__get8(s) << 8); +} +#endif + +#ifndef STBI_NO_BMP +static stbi__uint32 stbi__get32le(stbi__context *s) +{ + stbi__uint32 z = stbi__get16le(s); + z += (stbi__uint32)stbi__get16le(s) << 16; + return z; +} +#endif + +#define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +////////////////////////////////////////////////////////////////////////////// +// +// generic converter from built-in img_n to req_comp +// individual types do this automatically as much as possible (e.g. jpeg +// does all cases internally since it needs to colorspace convert anyway, +// and it never has alpha, so very few cases ). png can automatically +// interleave an alpha=255 channel, but falls back to this for other cases +// +// assume data buffer is malloced, so malloc a new one and free that one +// only failure mode is malloc failing + +static stbi_uc stbi__compute_y(int r, int g, int b) +{ + return (stbi_uc) (((r*77) + (g*150) + (29*b)) >> 8); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y) +{ + int i,j; + unsigned char *good; + + if (req_comp == img_n) return data; + STBI_ASSERT(req_comp >= 1 && req_comp <= 4); + + good = (unsigned char *) stbi__malloc_mad3(req_comp, x, y, 0); + if (good == NULL) { + STBI_FREE(data); + return stbi__errpuc("outofmem", "Out of memory"); + } + + for (j=0; j < (int) y; ++j) { + unsigned char *src = data + j * x * img_n ; + unsigned char *dest = good + j * x * req_comp; + + #define STBI__COMBO(a,b) ((a)*8+(b)) + #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) + // convert source image with img_n components to one with req_comp components; + // avoid switch per pixel, so use switch per scanline and massive macros + switch (STBI__COMBO(img_n, req_comp)) { + STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=255; } break; + STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=255; } break; + STBI__CASE(2,1) { dest[0]=src[0]; } break; + STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; + STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=255; } break; + STBI__CASE(3,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; + STBI__CASE(3,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = 255; } break; + STBI__CASE(4,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; + STBI__CASE(4,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = src[3]; } break; + STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; + default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return stbi__errpuc("unsupported", "Unsupported format conversion"); + } + #undef STBI__CASE + } + + STBI_FREE(data); + return good; +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) +// nothing +#else +static stbi__uint16 stbi__compute_y_16(int r, int g, int b) +{ + return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) +// nothing +#else +static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y) +{ + int i,j; + stbi__uint16 *good; + + if (req_comp == img_n) return data; + STBI_ASSERT(req_comp >= 1 && req_comp <= 4); + + good = (stbi__uint16 *) stbi__malloc(req_comp * x * y * 2); + if (good == NULL) { + STBI_FREE(data); + return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); + } + + for (j=0; j < (int) y; ++j) { + stbi__uint16 *src = data + j * x * img_n ; + stbi__uint16 *dest = good + j * x * req_comp; + + #define STBI__COMBO(a,b) ((a)*8+(b)) + #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) + // convert source image with img_n components to one with req_comp components; + // avoid switch per pixel, so use switch per scanline and massive macros + switch (STBI__COMBO(img_n, req_comp)) { + STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=0xffff; } break; + STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=0xffff; } break; + STBI__CASE(2,1) { dest[0]=src[0]; } break; + STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; + STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=0xffff; } break; + STBI__CASE(3,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; + STBI__CASE(3,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = 0xffff; } break; + STBI__CASE(4,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; + STBI__CASE(4,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = src[3]; } break; + STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; + default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return (stbi__uint16*) stbi__errpuc("unsupported", "Unsupported format conversion"); + } + #undef STBI__CASE + } + + STBI_FREE(data); + return good; +} +#endif + +#ifndef STBI_NO_LINEAR +static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp) +{ + int i,k,n; + float *output; + if (!data) return NULL; + output = (float *) stbi__malloc_mad4(x, y, comp, sizeof(float), 0); + if (output == NULL) { STBI_FREE(data); return stbi__errpf("outofmem", "Out of memory"); } + // compute number of non-alpha components + if (comp & 1) n = comp; else n = comp-1; + for (i=0; i < x*y; ++i) { + for (k=0; k < n; ++k) { + output[i*comp + k] = (float) (pow(data[i*comp+k]/255.0f, stbi__l2h_gamma) * stbi__l2h_scale); + } + } + if (n < comp) { + for (i=0; i < x*y; ++i) { + output[i*comp + n] = data[i*comp + n]/255.0f; + } + } + STBI_FREE(data); + return output; +} +#endif + +#ifndef STBI_NO_HDR +#define stbi__float2int(x) ((int) (x)) +static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) +{ + int i,k,n; + stbi_uc *output; + if (!data) return NULL; + output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0); + if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); } + // compute number of non-alpha components + if (comp & 1) n = comp; else n = comp-1; + for (i=0; i < x*y; ++i) { + for (k=0; k < n; ++k) { + float z = (float) pow(data[i*comp+k]*stbi__h2l_scale_i, stbi__h2l_gamma_i) * 255 + 0.5f; + if (z < 0) z = 0; + if (z > 255) z = 255; + output[i*comp + k] = (stbi_uc) stbi__float2int(z); + } + if (k < comp) { + float z = data[i*comp+k] * 255 + 0.5f; + if (z < 0) z = 0; + if (z > 255) z = 255; + output[i*comp + k] = (stbi_uc) stbi__float2int(z); + } + } + STBI_FREE(data); + return output; +} +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// "baseline" JPEG/JFIF decoder +// +// simple implementation +// - doesn't support delayed output of y-dimension +// - simple interface (only one output format: 8-bit interleaved RGB) +// - doesn't try to recover corrupt jpegs +// - doesn't allow partial loading, loading multiple at once +// - still fast on x86 (copying globals into locals doesn't help x86) +// - allocates lots of intermediate memory (full size of all components) +// - non-interleaved case requires this anyway +// - allows good upsampling (see next) +// high-quality +// - upsampled channels are bilinearly interpolated, even across blocks +// - quality integer IDCT derived from IJG's 'slow' +// performance +// - fast huffman; reasonable integer IDCT +// - some SIMD kernels for common paths on targets with SSE2/NEON +// - uses a lot of intermediate memory, could cache poorly + +#ifndef STBI_NO_JPEG + +// huffman decoding acceleration +#define FAST_BITS 9 // larger handles more cases; smaller stomps less cache + +typedef struct +{ + stbi_uc fast[1 << FAST_BITS]; + // weirdly, repacking this into AoS is a 10% speed loss, instead of a win + stbi__uint16 code[256]; + stbi_uc values[256]; + stbi_uc size[257]; + unsigned int maxcode[18]; + int delta[17]; // old 'firstsymbol' - old 'firstcode' +} stbi__huffman; + +typedef struct +{ + stbi__context *s; + stbi__huffman huff_dc[4]; + stbi__huffman huff_ac[4]; + stbi__uint16 dequant[4][64]; + stbi__int16 fast_ac[4][1 << FAST_BITS]; + +// sizes for components, interleaved MCUs + int img_h_max, img_v_max; + int img_mcu_x, img_mcu_y; + int img_mcu_w, img_mcu_h; + +// definition of jpeg image component + struct + { + int id; + int h,v; + int tq; + int hd,ha; + int dc_pred; + + int x,y,w2,h2; + stbi_uc *data; + void *raw_data, *raw_coeff; + stbi_uc *linebuf; + short *coeff; // progressive only + int coeff_w, coeff_h; // number of 8x8 coefficient blocks + } img_comp[4]; + + stbi__uint32 code_buffer; // jpeg entropy-coded buffer + int code_bits; // number of valid bits + unsigned char marker; // marker seen while filling entropy buffer + int nomore; // flag if we saw a marker so must stop + + int progressive; + int spec_start; + int spec_end; + int succ_high; + int succ_low; + int eob_run; + int jfif; + int app14_color_transform; // Adobe APP14 tag + int rgb; + + int scan_n, order[4]; + int restart_interval, todo; + +// kernels + void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]); + void (*YCbCr_to_RGB_kernel)(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step); + stbi_uc *(*resample_row_hv_2_kernel)(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs); +} stbi__jpeg; + +static int stbi__build_huffman(stbi__huffman *h, int *count) +{ + int i,j,k=0; + unsigned int code; + // build size list for each symbol (from JPEG spec) + for (i=0; i < 16; ++i) { + for (j=0; j < count[i]; ++j) { + h->size[k++] = (stbi_uc) (i+1); + if(k >= 257) return stbi__err("bad size list","Corrupt JPEG"); + } + } + h->size[k] = 0; + + // compute actual symbols (from jpeg spec) + code = 0; + k = 0; + for(j=1; j <= 16; ++j) { + // compute delta to add to code to compute symbol id + h->delta[j] = k - code; + if (h->size[k] == j) { + while (h->size[k] == j) + h->code[k++] = (stbi__uint16) (code++); + if (code-1 >= (1u << j)) return stbi__err("bad code lengths","Corrupt JPEG"); + } + // compute largest code + 1 for this size, preshifted as needed later + h->maxcode[j] = code << (16-j); + code <<= 1; + } + h->maxcode[j] = 0xffffffff; + + // build non-spec acceleration table; 255 is flag for not-accelerated + memset(h->fast, 255, 1 << FAST_BITS); + for (i=0; i < k; ++i) { + int s = h->size[i]; + if (s <= FAST_BITS) { + int c = h->code[i] << (FAST_BITS-s); + int m = 1 << (FAST_BITS-s); + for (j=0; j < m; ++j) { + h->fast[c+j] = (stbi_uc) i; + } + } + } + return 1; +} + +// build a table that decodes both magnitude and value of small ACs in +// one go. +static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h) +{ + int i; + for (i=0; i < (1 << FAST_BITS); ++i) { + stbi_uc fast = h->fast[i]; + fast_ac[i] = 0; + if (fast < 255) { + int rs = h->values[fast]; + int run = (rs >> 4) & 15; + int magbits = rs & 15; + int len = h->size[fast]; + + if (magbits && len + magbits <= FAST_BITS) { + // magnitude code followed by receive_extend code + int k = ((i << len) & ((1 << FAST_BITS) - 1)) >> (FAST_BITS - magbits); + int m = 1 << (magbits - 1); + if (k < m) k += (~0U << magbits) + 1; + // if the result is small enough, we can fit it in fast_ac table + if (k >= -128 && k <= 127) + fast_ac[i] = (stbi__int16) ((k * 256) + (run * 16) + (len + magbits)); + } + } + } +} + +static void stbi__grow_buffer_unsafe(stbi__jpeg *j) +{ + do { + unsigned int b = j->nomore ? 0 : stbi__get8(j->s); + if (b == 0xff) { + int c = stbi__get8(j->s); + while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes + if (c != 0) { + j->marker = (unsigned char) c; + j->nomore = 1; + return; + } + } + j->code_buffer |= b << (24 - j->code_bits); + j->code_bits += 8; + } while (j->code_bits <= 24); +} + +// (1 << n) - 1 +static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535}; + +// decode a jpeg huffman value from the bitstream +stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h) +{ + unsigned int temp; + int c,k; + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + + // look at the top FAST_BITS and determine what symbol ID it is, + // if the code is <= FAST_BITS + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + k = h->fast[c]; + if (k < 255) { + int s = h->size[k]; + if (s > j->code_bits) + return -1; + j->code_buffer <<= s; + j->code_bits -= s; + return h->values[k]; + } + + // naive test is to shift the code_buffer down so k bits are + // valid, then test against maxcode. To speed this up, we've + // preshifted maxcode left so that it has (16-k) 0s at the + // end; in other words, regardless of the number of bits, it + // wants to be compared against something shifted to have 16; + // that way we don't need to shift inside the loop. + temp = j->code_buffer >> 16; + for (k=FAST_BITS+1 ; ; ++k) + if (temp < h->maxcode[k]) + break; + if (k == 17) { + // error! code not found + j->code_bits -= 16; + return -1; + } + + if (k > j->code_bits) + return -1; + + // convert the huffman code to the symbol id + c = ((j->code_buffer >> (32 - k)) & stbi__bmask[k]) + h->delta[k]; + if(c < 0 || c >= 256) // symbol id out of bounds! + return -1; + STBI_ASSERT((((j->code_buffer) >> (32 - h->size[c])) & stbi__bmask[h->size[c]]) == h->code[c]); + + // convert the id to a symbol + j->code_bits -= k; + j->code_buffer <<= k; + return h->values[c]; +} + +// bias[n] = (-1<code_bits < n) stbi__grow_buffer_unsafe(j); + if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing + + sgn = j->code_buffer >> 31; // sign bit always in MSB; 0 if MSB clear (positive), 1 if MSB set (negative) + k = stbi_lrot(j->code_buffer, n); + j->code_buffer = k & ~stbi__bmask[n]; + k &= stbi__bmask[n]; + j->code_bits -= n; + return k + (stbi__jbias[n] & (sgn - 1)); +} + +// get some unsigned bits +stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n) +{ + unsigned int k; + if (j->code_bits < n) stbi__grow_buffer_unsafe(j); + if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing + k = stbi_lrot(j->code_buffer, n); + j->code_buffer = k & ~stbi__bmask[n]; + k &= stbi__bmask[n]; + j->code_bits -= n; + return k; +} + +stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j) +{ + unsigned int k; + if (j->code_bits < 1) stbi__grow_buffer_unsafe(j); + if (j->code_bits < 1) return 0; // ran out of bits from stream, return 0s intead of continuing + k = j->code_buffer; + j->code_buffer <<= 1; + --j->code_bits; + return k & 0x80000000; +} + +// given a value that's at position X in the zigzag stream, +// where does it appear in the 8x8 matrix coded as row-major? +static const stbi_uc stbi__jpeg_dezigzag[64+15] = +{ + 0, 1, 8, 16, 9, 2, 3, 10, + 17, 24, 32, 25, 18, 11, 4, 5, + 12, 19, 26, 33, 40, 48, 41, 34, + 27, 20, 13, 6, 7, 14, 21, 28, + 35, 42, 49, 56, 57, 50, 43, 36, + 29, 22, 15, 23, 30, 37, 44, 51, + 58, 59, 52, 45, 38, 31, 39, 46, + 53, 60, 61, 54, 47, 55, 62, 63, + // let corrupt input sample past end + 63, 63, 63, 63, 63, 63, 63, 63, + 63, 63, 63, 63, 63, 63, 63 +}; + +// decode one 64-entry block-- +static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant) +{ + int diff,dc,k; + int t; + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + t = stbi__jpeg_huff_decode(j, hdc); + if (t < 0 || t > 15) return stbi__err("bad huffman code","Corrupt JPEG"); + + // 0 all the ac values now so we can do it 32-bits at a time + memset(data,0,64*sizeof(data[0])); + + diff = t ? stbi__extend_receive(j, t) : 0; + if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta","Corrupt JPEG"); + dc = j->img_comp[b].dc_pred + diff; + j->img_comp[b].dc_pred = dc; + if (!stbi__mul2shorts_valid(dc, dequant[0])) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + data[0] = (short) (dc * dequant[0]); + + // decode AC components, see JPEG spec + k = 1; + do { + unsigned int zig; + int c,r,s; + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + r = fac[c]; + if (r) { // fast-AC path + k += (r >> 4) & 15; // run + s = r & 15; // combined length + if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available"); + j->code_buffer <<= s; + j->code_bits -= s; + // decode into unzigzag'd location + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) ((r >> 8) * dequant[zig]); + } else { + int rs = stbi__jpeg_huff_decode(j, hac); + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (rs != 0xf0) break; // end block + k += 16; + } else { + k += r; + // decode into unzigzag'd location + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]); + } + } + } while (k < 64); + return 1; +} + +static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b) +{ + int diff,dc; + int t; + if (j->spec_end != 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + + if (j->succ_high == 0) { + // first scan for DC coefficient, must be first + memset(data,0,64*sizeof(data[0])); // 0 all the ac values now + t = stbi__jpeg_huff_decode(j, hdc); + if (t < 0 || t > 15) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + diff = t ? stbi__extend_receive(j, t) : 0; + + if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta", "Corrupt JPEG"); + dc = j->img_comp[b].dc_pred + diff; + j->img_comp[b].dc_pred = dc; + if (!stbi__mul2shorts_valid(dc, 1 << j->succ_low)) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + data[0] = (short) (dc * (1 << j->succ_low)); + } else { + // refinement scan for DC coefficient + if (stbi__jpeg_get_bit(j)) + data[0] += (short) (1 << j->succ_low); + } + return 1; +} + +// @OPTIMIZE: store non-zigzagged during the decode passes, +// and only de-zigzag when dequantizing +static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac) +{ + int k; + if (j->spec_start == 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + + if (j->succ_high == 0) { + int shift = j->succ_low; + + if (j->eob_run) { + --j->eob_run; + return 1; + } + + k = j->spec_start; + do { + unsigned int zig; + int c,r,s; + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + r = fac[c]; + if (r) { // fast-AC path + k += (r >> 4) & 15; // run + s = r & 15; // combined length + if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available"); + j->code_buffer <<= s; + j->code_bits -= s; + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) ((r >> 8) * (1 << shift)); + } else { + int rs = stbi__jpeg_huff_decode(j, hac); + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (r < 15) { + j->eob_run = (1 << r); + if (r) + j->eob_run += stbi__jpeg_get_bits(j, r); + --j->eob_run; + break; + } + k += 16; + } else { + k += r; + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) (stbi__extend_receive(j,s) * (1 << shift)); + } + } + } while (k <= j->spec_end); + } else { + // refinement scan for these AC coefficients + + short bit = (short) (1 << j->succ_low); + + if (j->eob_run) { + --j->eob_run; + for (k = j->spec_start; k <= j->spec_end; ++k) { + short *p = &data[stbi__jpeg_dezigzag[k]]; + if (*p != 0) + if (stbi__jpeg_get_bit(j)) + if ((*p & bit)==0) { + if (*p > 0) + *p += bit; + else + *p -= bit; + } + } + } else { + k = j->spec_start; + do { + int r,s; + int rs = stbi__jpeg_huff_decode(j, hac); // @OPTIMIZE see if we can use the fast path here, advance-by-r is so slow, eh + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (r < 15) { + j->eob_run = (1 << r) - 1; + if (r) + j->eob_run += stbi__jpeg_get_bits(j, r); + r = 64; // force end of block + } else { + // r=15 s=0 should write 16 0s, so we just do + // a run of 15 0s and then write s (which is 0), + // so we don't have to do anything special here + } + } else { + if (s != 1) return stbi__err("bad huffman code", "Corrupt JPEG"); + // sign bit + if (stbi__jpeg_get_bit(j)) + s = bit; + else + s = -bit; + } + + // advance by r + while (k <= j->spec_end) { + short *p = &data[stbi__jpeg_dezigzag[k++]]; + if (*p != 0) { + if (stbi__jpeg_get_bit(j)) + if ((*p & bit)==0) { + if (*p > 0) + *p += bit; + else + *p -= bit; + } + } else { + if (r == 0) { + *p = (short) s; + break; + } + --r; + } + } + } while (k <= j->spec_end); + } + } + return 1; +} + +// take a -128..127 value and stbi__clamp it and convert to 0..255 +stbi_inline static stbi_uc stbi__clamp(int x) +{ + // trick to use a single test to catch both cases + if ((unsigned int) x > 255) { + if (x < 0) return 0; + if (x > 255) return 255; + } + return (stbi_uc) x; +} + +#define stbi__f2f(x) ((int) (((x) * 4096 + 0.5))) +#define stbi__fsh(x) ((x) * 4096) + +// derived from jidctint -- DCT_ISLOW +#define STBI__IDCT_1D(s0,s1,s2,s3,s4,s5,s6,s7) \ + int t0,t1,t2,t3,p1,p2,p3,p4,p5,x0,x1,x2,x3; \ + p2 = s2; \ + p3 = s6; \ + p1 = (p2+p3) * stbi__f2f(0.5411961f); \ + t2 = p1 + p3*stbi__f2f(-1.847759065f); \ + t3 = p1 + p2*stbi__f2f( 0.765366865f); \ + p2 = s0; \ + p3 = s4; \ + t0 = stbi__fsh(p2+p3); \ + t1 = stbi__fsh(p2-p3); \ + x0 = t0+t3; \ + x3 = t0-t3; \ + x1 = t1+t2; \ + x2 = t1-t2; \ + t0 = s7; \ + t1 = s5; \ + t2 = s3; \ + t3 = s1; \ + p3 = t0+t2; \ + p4 = t1+t3; \ + p1 = t0+t3; \ + p2 = t1+t2; \ + p5 = (p3+p4)*stbi__f2f( 1.175875602f); \ + t0 = t0*stbi__f2f( 0.298631336f); \ + t1 = t1*stbi__f2f( 2.053119869f); \ + t2 = t2*stbi__f2f( 3.072711026f); \ + t3 = t3*stbi__f2f( 1.501321110f); \ + p1 = p5 + p1*stbi__f2f(-0.899976223f); \ + p2 = p5 + p2*stbi__f2f(-2.562915447f); \ + p3 = p3*stbi__f2f(-1.961570560f); \ + p4 = p4*stbi__f2f(-0.390180644f); \ + t3 += p1+p4; \ + t2 += p2+p3; \ + t1 += p2+p4; \ + t0 += p1+p3; + +static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64]) +{ + int i,val[64],*v=val; + stbi_uc *o; + short *d = data; + + // columns + for (i=0; i < 8; ++i,++d, ++v) { + // if all zeroes, shortcut -- this avoids dequantizing 0s and IDCTing + if (d[ 8]==0 && d[16]==0 && d[24]==0 && d[32]==0 + && d[40]==0 && d[48]==0 && d[56]==0) { + // no shortcut 0 seconds + // (1|2|3|4|5|6|7)==0 0 seconds + // all separate -0.047 seconds + // 1 && 2|3 && 4|5 && 6|7: -0.047 seconds + int dcterm = d[0]*4; + v[0] = v[8] = v[16] = v[24] = v[32] = v[40] = v[48] = v[56] = dcterm; + } else { + STBI__IDCT_1D(d[ 0],d[ 8],d[16],d[24],d[32],d[40],d[48],d[56]) + // constants scaled things up by 1<<12; let's bring them back + // down, but keep 2 extra bits of precision + x0 += 512; x1 += 512; x2 += 512; x3 += 512; + v[ 0] = (x0+t3) >> 10; + v[56] = (x0-t3) >> 10; + v[ 8] = (x1+t2) >> 10; + v[48] = (x1-t2) >> 10; + v[16] = (x2+t1) >> 10; + v[40] = (x2-t1) >> 10; + v[24] = (x3+t0) >> 10; + v[32] = (x3-t0) >> 10; + } + } + + for (i=0, v=val, o=out; i < 8; ++i,v+=8,o+=out_stride) { + // no fast case since the first 1D IDCT spread components out + STBI__IDCT_1D(v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7]) + // constants scaled things up by 1<<12, plus we had 1<<2 from first + // loop, plus horizontal and vertical each scale by sqrt(8) so together + // we've got an extra 1<<3, so 1<<17 total we need to remove. + // so we want to round that, which means adding 0.5 * 1<<17, + // aka 65536. Also, we'll end up with -128 to 127 that we want + // to encode as 0..255 by adding 128, so we'll add that before the shift + x0 += 65536 + (128<<17); + x1 += 65536 + (128<<17); + x2 += 65536 + (128<<17); + x3 += 65536 + (128<<17); + // tried computing the shifts into temps, or'ing the temps to see + // if any were out of range, but that was slower + o[0] = stbi__clamp((x0+t3) >> 17); + o[7] = stbi__clamp((x0-t3) >> 17); + o[1] = stbi__clamp((x1+t2) >> 17); + o[6] = stbi__clamp((x1-t2) >> 17); + o[2] = stbi__clamp((x2+t1) >> 17); + o[5] = stbi__clamp((x2-t1) >> 17); + o[3] = stbi__clamp((x3+t0) >> 17); + o[4] = stbi__clamp((x3-t0) >> 17); + } +} + +#ifdef STBI_SSE2 +// sse2 integer IDCT. not the fastest possible implementation but it +// produces bit-identical results to the generic C version so it's +// fully "transparent". +static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) +{ + // This is constructed to match our regular (generic) integer IDCT exactly. + __m128i row0, row1, row2, row3, row4, row5, row6, row7; + __m128i tmp; + + // dot product constant: even elems=x, odd elems=y + #define dct_const(x,y) _mm_setr_epi16((x),(y),(x),(y),(x),(y),(x),(y)) + + // out(0) = c0[even]*x + c0[odd]*y (c0, x, y 16-bit, out 32-bit) + // out(1) = c1[even]*x + c1[odd]*y + #define dct_rot(out0,out1, x,y,c0,c1) \ + __m128i c0##lo = _mm_unpacklo_epi16((x),(y)); \ + __m128i c0##hi = _mm_unpackhi_epi16((x),(y)); \ + __m128i out0##_l = _mm_madd_epi16(c0##lo, c0); \ + __m128i out0##_h = _mm_madd_epi16(c0##hi, c0); \ + __m128i out1##_l = _mm_madd_epi16(c0##lo, c1); \ + __m128i out1##_h = _mm_madd_epi16(c0##hi, c1) + + // out = in << 12 (in 16-bit, out 32-bit) + #define dct_widen(out, in) \ + __m128i out##_l = _mm_srai_epi32(_mm_unpacklo_epi16(_mm_setzero_si128(), (in)), 4); \ + __m128i out##_h = _mm_srai_epi32(_mm_unpackhi_epi16(_mm_setzero_si128(), (in)), 4) + + // wide add + #define dct_wadd(out, a, b) \ + __m128i out##_l = _mm_add_epi32(a##_l, b##_l); \ + __m128i out##_h = _mm_add_epi32(a##_h, b##_h) + + // wide sub + #define dct_wsub(out, a, b) \ + __m128i out##_l = _mm_sub_epi32(a##_l, b##_l); \ + __m128i out##_h = _mm_sub_epi32(a##_h, b##_h) + + // butterfly a/b, add bias, then shift by "s" and pack + #define dct_bfly32o(out0, out1, a,b,bias,s) \ + { \ + __m128i abiased_l = _mm_add_epi32(a##_l, bias); \ + __m128i abiased_h = _mm_add_epi32(a##_h, bias); \ + dct_wadd(sum, abiased, b); \ + dct_wsub(dif, abiased, b); \ + out0 = _mm_packs_epi32(_mm_srai_epi32(sum_l, s), _mm_srai_epi32(sum_h, s)); \ + out1 = _mm_packs_epi32(_mm_srai_epi32(dif_l, s), _mm_srai_epi32(dif_h, s)); \ + } + + // 8-bit interleave step (for transposes) + #define dct_interleave8(a, b) \ + tmp = a; \ + a = _mm_unpacklo_epi8(a, b); \ + b = _mm_unpackhi_epi8(tmp, b) + + // 16-bit interleave step (for transposes) + #define dct_interleave16(a, b) \ + tmp = a; \ + a = _mm_unpacklo_epi16(a, b); \ + b = _mm_unpackhi_epi16(tmp, b) + + #define dct_pass(bias,shift) \ + { \ + /* even part */ \ + dct_rot(t2e,t3e, row2,row6, rot0_0,rot0_1); \ + __m128i sum04 = _mm_add_epi16(row0, row4); \ + __m128i dif04 = _mm_sub_epi16(row0, row4); \ + dct_widen(t0e, sum04); \ + dct_widen(t1e, dif04); \ + dct_wadd(x0, t0e, t3e); \ + dct_wsub(x3, t0e, t3e); \ + dct_wadd(x1, t1e, t2e); \ + dct_wsub(x2, t1e, t2e); \ + /* odd part */ \ + dct_rot(y0o,y2o, row7,row3, rot2_0,rot2_1); \ + dct_rot(y1o,y3o, row5,row1, rot3_0,rot3_1); \ + __m128i sum17 = _mm_add_epi16(row1, row7); \ + __m128i sum35 = _mm_add_epi16(row3, row5); \ + dct_rot(y4o,y5o, sum17,sum35, rot1_0,rot1_1); \ + dct_wadd(x4, y0o, y4o); \ + dct_wadd(x5, y1o, y5o); \ + dct_wadd(x6, y2o, y5o); \ + dct_wadd(x7, y3o, y4o); \ + dct_bfly32o(row0,row7, x0,x7,bias,shift); \ + dct_bfly32o(row1,row6, x1,x6,bias,shift); \ + dct_bfly32o(row2,row5, x2,x5,bias,shift); \ + dct_bfly32o(row3,row4, x3,x4,bias,shift); \ + } + + __m128i rot0_0 = dct_const(stbi__f2f(0.5411961f), stbi__f2f(0.5411961f) + stbi__f2f(-1.847759065f)); + __m128i rot0_1 = dct_const(stbi__f2f(0.5411961f) + stbi__f2f( 0.765366865f), stbi__f2f(0.5411961f)); + __m128i rot1_0 = dct_const(stbi__f2f(1.175875602f) + stbi__f2f(-0.899976223f), stbi__f2f(1.175875602f)); + __m128i rot1_1 = dct_const(stbi__f2f(1.175875602f), stbi__f2f(1.175875602f) + stbi__f2f(-2.562915447f)); + __m128i rot2_0 = dct_const(stbi__f2f(-1.961570560f) + stbi__f2f( 0.298631336f), stbi__f2f(-1.961570560f)); + __m128i rot2_1 = dct_const(stbi__f2f(-1.961570560f), stbi__f2f(-1.961570560f) + stbi__f2f( 3.072711026f)); + __m128i rot3_0 = dct_const(stbi__f2f(-0.390180644f) + stbi__f2f( 2.053119869f), stbi__f2f(-0.390180644f)); + __m128i rot3_1 = dct_const(stbi__f2f(-0.390180644f), stbi__f2f(-0.390180644f) + stbi__f2f( 1.501321110f)); + + // rounding biases in column/row passes, see stbi__idct_block for explanation. + __m128i bias_0 = _mm_set1_epi32(512); + __m128i bias_1 = _mm_set1_epi32(65536 + (128<<17)); + + // load + row0 = _mm_load_si128((const __m128i *) (data + 0*8)); + row1 = _mm_load_si128((const __m128i *) (data + 1*8)); + row2 = _mm_load_si128((const __m128i *) (data + 2*8)); + row3 = _mm_load_si128((const __m128i *) (data + 3*8)); + row4 = _mm_load_si128((const __m128i *) (data + 4*8)); + row5 = _mm_load_si128((const __m128i *) (data + 5*8)); + row6 = _mm_load_si128((const __m128i *) (data + 6*8)); + row7 = _mm_load_si128((const __m128i *) (data + 7*8)); + + // column pass + dct_pass(bias_0, 10); + + { + // 16bit 8x8 transpose pass 1 + dct_interleave16(row0, row4); + dct_interleave16(row1, row5); + dct_interleave16(row2, row6); + dct_interleave16(row3, row7); + + // transpose pass 2 + dct_interleave16(row0, row2); + dct_interleave16(row1, row3); + dct_interleave16(row4, row6); + dct_interleave16(row5, row7); + + // transpose pass 3 + dct_interleave16(row0, row1); + dct_interleave16(row2, row3); + dct_interleave16(row4, row5); + dct_interleave16(row6, row7); + } + + // row pass + dct_pass(bias_1, 17); + + { + // pack + __m128i p0 = _mm_packus_epi16(row0, row1); // a0a1a2a3...a7b0b1b2b3...b7 + __m128i p1 = _mm_packus_epi16(row2, row3); + __m128i p2 = _mm_packus_epi16(row4, row5); + __m128i p3 = _mm_packus_epi16(row6, row7); + + // 8bit 8x8 transpose pass 1 + dct_interleave8(p0, p2); // a0e0a1e1... + dct_interleave8(p1, p3); // c0g0c1g1... + + // transpose pass 2 + dct_interleave8(p0, p1); // a0c0e0g0... + dct_interleave8(p2, p3); // b0d0f0h0... + + // transpose pass 3 + dct_interleave8(p0, p2); // a0b0c0d0... + dct_interleave8(p1, p3); // a4b4c4d4... + + // store + _mm_storel_epi64((__m128i *) out, p0); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p0, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p2); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p2, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p1); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p1, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p3); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p3, 0x4e)); + } + +#undef dct_const +#undef dct_rot +#undef dct_widen +#undef dct_wadd +#undef dct_wsub +#undef dct_bfly32o +#undef dct_interleave8 +#undef dct_interleave16 +#undef dct_pass +} + +#endif // STBI_SSE2 + +#ifdef STBI_NEON + +// NEON integer IDCT. should produce bit-identical +// results to the generic C version. +static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) +{ + int16x8_t row0, row1, row2, row3, row4, row5, row6, row7; + + int16x4_t rot0_0 = vdup_n_s16(stbi__f2f(0.5411961f)); + int16x4_t rot0_1 = vdup_n_s16(stbi__f2f(-1.847759065f)); + int16x4_t rot0_2 = vdup_n_s16(stbi__f2f( 0.765366865f)); + int16x4_t rot1_0 = vdup_n_s16(stbi__f2f( 1.175875602f)); + int16x4_t rot1_1 = vdup_n_s16(stbi__f2f(-0.899976223f)); + int16x4_t rot1_2 = vdup_n_s16(stbi__f2f(-2.562915447f)); + int16x4_t rot2_0 = vdup_n_s16(stbi__f2f(-1.961570560f)); + int16x4_t rot2_1 = vdup_n_s16(stbi__f2f(-0.390180644f)); + int16x4_t rot3_0 = vdup_n_s16(stbi__f2f( 0.298631336f)); + int16x4_t rot3_1 = vdup_n_s16(stbi__f2f( 2.053119869f)); + int16x4_t rot3_2 = vdup_n_s16(stbi__f2f( 3.072711026f)); + int16x4_t rot3_3 = vdup_n_s16(stbi__f2f( 1.501321110f)); + +#define dct_long_mul(out, inq, coeff) \ + int32x4_t out##_l = vmull_s16(vget_low_s16(inq), coeff); \ + int32x4_t out##_h = vmull_s16(vget_high_s16(inq), coeff) + +#define dct_long_mac(out, acc, inq, coeff) \ + int32x4_t out##_l = vmlal_s16(acc##_l, vget_low_s16(inq), coeff); \ + int32x4_t out##_h = vmlal_s16(acc##_h, vget_high_s16(inq), coeff) + +#define dct_widen(out, inq) \ + int32x4_t out##_l = vshll_n_s16(vget_low_s16(inq), 12); \ + int32x4_t out##_h = vshll_n_s16(vget_high_s16(inq), 12) + +// wide add +#define dct_wadd(out, a, b) \ + int32x4_t out##_l = vaddq_s32(a##_l, b##_l); \ + int32x4_t out##_h = vaddq_s32(a##_h, b##_h) + +// wide sub +#define dct_wsub(out, a, b) \ + int32x4_t out##_l = vsubq_s32(a##_l, b##_l); \ + int32x4_t out##_h = vsubq_s32(a##_h, b##_h) + +// butterfly a/b, then shift using "shiftop" by "s" and pack +#define dct_bfly32o(out0,out1, a,b,shiftop,s) \ + { \ + dct_wadd(sum, a, b); \ + dct_wsub(dif, a, b); \ + out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \ + out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \ + } + +#define dct_pass(shiftop, shift) \ + { \ + /* even part */ \ + int16x8_t sum26 = vaddq_s16(row2, row6); \ + dct_long_mul(p1e, sum26, rot0_0); \ + dct_long_mac(t2e, p1e, row6, rot0_1); \ + dct_long_mac(t3e, p1e, row2, rot0_2); \ + int16x8_t sum04 = vaddq_s16(row0, row4); \ + int16x8_t dif04 = vsubq_s16(row0, row4); \ + dct_widen(t0e, sum04); \ + dct_widen(t1e, dif04); \ + dct_wadd(x0, t0e, t3e); \ + dct_wsub(x3, t0e, t3e); \ + dct_wadd(x1, t1e, t2e); \ + dct_wsub(x2, t1e, t2e); \ + /* odd part */ \ + int16x8_t sum15 = vaddq_s16(row1, row5); \ + int16x8_t sum17 = vaddq_s16(row1, row7); \ + int16x8_t sum35 = vaddq_s16(row3, row5); \ + int16x8_t sum37 = vaddq_s16(row3, row7); \ + int16x8_t sumodd = vaddq_s16(sum17, sum35); \ + dct_long_mul(p5o, sumodd, rot1_0); \ + dct_long_mac(p1o, p5o, sum17, rot1_1); \ + dct_long_mac(p2o, p5o, sum35, rot1_2); \ + dct_long_mul(p3o, sum37, rot2_0); \ + dct_long_mul(p4o, sum15, rot2_1); \ + dct_wadd(sump13o, p1o, p3o); \ + dct_wadd(sump24o, p2o, p4o); \ + dct_wadd(sump23o, p2o, p3o); \ + dct_wadd(sump14o, p1o, p4o); \ + dct_long_mac(x4, sump13o, row7, rot3_0); \ + dct_long_mac(x5, sump24o, row5, rot3_1); \ + dct_long_mac(x6, sump23o, row3, rot3_2); \ + dct_long_mac(x7, sump14o, row1, rot3_3); \ + dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \ + dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \ + dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \ + dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \ + } + + // load + row0 = vld1q_s16(data + 0*8); + row1 = vld1q_s16(data + 1*8); + row2 = vld1q_s16(data + 2*8); + row3 = vld1q_s16(data + 3*8); + row4 = vld1q_s16(data + 4*8); + row5 = vld1q_s16(data + 5*8); + row6 = vld1q_s16(data + 6*8); + row7 = vld1q_s16(data + 7*8); + + // add DC bias + row0 = vaddq_s16(row0, vsetq_lane_s16(1024, vdupq_n_s16(0), 0)); + + // column pass + dct_pass(vrshrn_n_s32, 10); + + // 16bit 8x8 transpose + { +// these three map to a single VTRN.16, VTRN.32, and VSWP, respectively. +// whether compilers actually get this is another story, sadly. +#define dct_trn16(x, y) { int16x8x2_t t = vtrnq_s16(x, y); x = t.val[0]; y = t.val[1]; } +#define dct_trn32(x, y) { int32x4x2_t t = vtrnq_s32(vreinterpretq_s32_s16(x), vreinterpretq_s32_s16(y)); x = vreinterpretq_s16_s32(t.val[0]); y = vreinterpretq_s16_s32(t.val[1]); } +#define dct_trn64(x, y) { int16x8_t x0 = x; int16x8_t y0 = y; x = vcombine_s16(vget_low_s16(x0), vget_low_s16(y0)); y = vcombine_s16(vget_high_s16(x0), vget_high_s16(y0)); } + + // pass 1 + dct_trn16(row0, row1); // a0b0a2b2a4b4a6b6 + dct_trn16(row2, row3); + dct_trn16(row4, row5); + dct_trn16(row6, row7); + + // pass 2 + dct_trn32(row0, row2); // a0b0c0d0a4b4c4d4 + dct_trn32(row1, row3); + dct_trn32(row4, row6); + dct_trn32(row5, row7); + + // pass 3 + dct_trn64(row0, row4); // a0b0c0d0e0f0g0h0 + dct_trn64(row1, row5); + dct_trn64(row2, row6); + dct_trn64(row3, row7); + +#undef dct_trn16 +#undef dct_trn32 +#undef dct_trn64 + } + + // row pass + // vrshrn_n_s32 only supports shifts up to 16, we need + // 17. so do a non-rounding shift of 16 first then follow + // up with a rounding shift by 1. + dct_pass(vshrn_n_s32, 16); + + { + // pack and round + uint8x8_t p0 = vqrshrun_n_s16(row0, 1); + uint8x8_t p1 = vqrshrun_n_s16(row1, 1); + uint8x8_t p2 = vqrshrun_n_s16(row2, 1); + uint8x8_t p3 = vqrshrun_n_s16(row3, 1); + uint8x8_t p4 = vqrshrun_n_s16(row4, 1); + uint8x8_t p5 = vqrshrun_n_s16(row5, 1); + uint8x8_t p6 = vqrshrun_n_s16(row6, 1); + uint8x8_t p7 = vqrshrun_n_s16(row7, 1); + + // again, these can translate into one instruction, but often don't. +#define dct_trn8_8(x, y) { uint8x8x2_t t = vtrn_u8(x, y); x = t.val[0]; y = t.val[1]; } +#define dct_trn8_16(x, y) { uint16x4x2_t t = vtrn_u16(vreinterpret_u16_u8(x), vreinterpret_u16_u8(y)); x = vreinterpret_u8_u16(t.val[0]); y = vreinterpret_u8_u16(t.val[1]); } +#define dct_trn8_32(x, y) { uint32x2x2_t t = vtrn_u32(vreinterpret_u32_u8(x), vreinterpret_u32_u8(y)); x = vreinterpret_u8_u32(t.val[0]); y = vreinterpret_u8_u32(t.val[1]); } + + // sadly can't use interleaved stores here since we only write + // 8 bytes to each scan line! + + // 8x8 8-bit transpose pass 1 + dct_trn8_8(p0, p1); + dct_trn8_8(p2, p3); + dct_trn8_8(p4, p5); + dct_trn8_8(p6, p7); + + // pass 2 + dct_trn8_16(p0, p2); + dct_trn8_16(p1, p3); + dct_trn8_16(p4, p6); + dct_trn8_16(p5, p7); + + // pass 3 + dct_trn8_32(p0, p4); + dct_trn8_32(p1, p5); + dct_trn8_32(p2, p6); + dct_trn8_32(p3, p7); + + // store + vst1_u8(out, p0); out += out_stride; + vst1_u8(out, p1); out += out_stride; + vst1_u8(out, p2); out += out_stride; + vst1_u8(out, p3); out += out_stride; + vst1_u8(out, p4); out += out_stride; + vst1_u8(out, p5); out += out_stride; + vst1_u8(out, p6); out += out_stride; + vst1_u8(out, p7); + +#undef dct_trn8_8 +#undef dct_trn8_16 +#undef dct_trn8_32 + } + +#undef dct_long_mul +#undef dct_long_mac +#undef dct_widen +#undef dct_wadd +#undef dct_wsub +#undef dct_bfly32o +#undef dct_pass +} + +#endif // STBI_NEON + +#define STBI__MARKER_none 0xff +// if there's a pending marker from the entropy stream, return that +// otherwise, fetch from the stream and get a marker. if there's no +// marker, return 0xff, which is never a valid marker value +static stbi_uc stbi__get_marker(stbi__jpeg *j) +{ + stbi_uc x; + if (j->marker != STBI__MARKER_none) { x = j->marker; j->marker = STBI__MARKER_none; return x; } + x = stbi__get8(j->s); + if (x != 0xff) return STBI__MARKER_none; + while (x == 0xff) + x = stbi__get8(j->s); // consume repeated 0xff fill bytes + return x; +} + +// in each scan, we'll have scan_n components, and the order +// of the components is specified by order[] +#define STBI__RESTART(x) ((x) >= 0xd0 && (x) <= 0xd7) + +// after a restart interval, stbi__jpeg_reset the entropy decoder and +// the dc prediction +static void stbi__jpeg_reset(stbi__jpeg *j) +{ + j->code_bits = 0; + j->code_buffer = 0; + j->nomore = 0; + j->img_comp[0].dc_pred = j->img_comp[1].dc_pred = j->img_comp[2].dc_pred = j->img_comp[3].dc_pred = 0; + j->marker = STBI__MARKER_none; + j->todo = j->restart_interval ? j->restart_interval : 0x7fffffff; + j->eob_run = 0; + // no more than 1<<31 MCUs if no restart_interal? that's plenty safe, + // since we don't even allow 1<<30 pixels +} + +static int stbi__parse_entropy_coded_data(stbi__jpeg *z) +{ + stbi__jpeg_reset(z); + if (!z->progressive) { + if (z->scan_n == 1) { + int i,j; + STBI_SIMD_ALIGN(short, data[64]); + int n = z->order[0]; + // non-interleaved data, we just need to process one block at a time, + // in trivial scanline order + // number of blocks to do just depends on how many actual "pixels" this + // component has, independent of interleaved MCU blocking and such + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); + // every data block is an MCU, so countdown the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + // if it's NOT a restart, then just bail, so we get corrupt data + // rather than no data + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } else { // interleaved + int i,j,k,x,y; + STBI_SIMD_ALIGN(short, data[64]); + for (j=0; j < z->img_mcu_y; ++j) { + for (i=0; i < z->img_mcu_x; ++i) { + // scan an interleaved mcu... process scan_n components in order + for (k=0; k < z->scan_n; ++k) { + int n = z->order[k]; + // scan out an mcu's worth of this component; that's just determined + // by the basic H and V specified for the component + for (y=0; y < z->img_comp[n].v; ++y) { + for (x=0; x < z->img_comp[n].h; ++x) { + int x2 = (i*z->img_comp[n].h + x)*8; + int y2 = (j*z->img_comp[n].v + y)*8; + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*y2+x2, z->img_comp[n].w2, data); + } + } + } + // after all interleaved components, that's an interleaved MCU, + // so now count down the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } + } else { + if (z->scan_n == 1) { + int i,j; + int n = z->order[0]; + // non-interleaved data, we just need to process one block at a time, + // in trivial scanline order + // number of blocks to do just depends on how many actual "pixels" this + // component has, independent of interleaved MCU blocking and such + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); + if (z->spec_start == 0) { + if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) + return 0; + } else { + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block_prog_ac(z, data, &z->huff_ac[ha], z->fast_ac[ha])) + return 0; + } + // every data block is an MCU, so countdown the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } else { // interleaved + int i,j,k,x,y; + for (j=0; j < z->img_mcu_y; ++j) { + for (i=0; i < z->img_mcu_x; ++i) { + // scan an interleaved mcu... process scan_n components in order + for (k=0; k < z->scan_n; ++k) { + int n = z->order[k]; + // scan out an mcu's worth of this component; that's just determined + // by the basic H and V specified for the component + for (y=0; y < z->img_comp[n].v; ++y) { + for (x=0; x < z->img_comp[n].h; ++x) { + int x2 = (i*z->img_comp[n].h + x); + int y2 = (j*z->img_comp[n].v + y); + short *data = z->img_comp[n].coeff + 64 * (x2 + y2 * z->img_comp[n].coeff_w); + if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) + return 0; + } + } + } + // after all interleaved components, that's an interleaved MCU, + // so now count down the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } + } +} + +static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant) +{ + int i; + for (i=0; i < 64; ++i) + data[i] *= dequant[i]; +} + +static void stbi__jpeg_finish(stbi__jpeg *z) +{ + if (z->progressive) { + // dequantize and idct the data + int i,j,n; + for (n=0; n < z->s->img_n; ++n) { + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); + stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]); + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); + } + } + } + } +} + +static int stbi__process_marker(stbi__jpeg *z, int m) +{ + int L; + switch (m) { + case STBI__MARKER_none: // no marker found + return stbi__err("expected marker","Corrupt JPEG"); + + case 0xDD: // DRI - specify restart interval + if (stbi__get16be(z->s) != 4) return stbi__err("bad DRI len","Corrupt JPEG"); + z->restart_interval = stbi__get16be(z->s); + return 1; + + case 0xDB: // DQT - define quantization table + L = stbi__get16be(z->s)-2; + while (L > 0) { + int q = stbi__get8(z->s); + int p = q >> 4, sixteen = (p != 0); + int t = q & 15,i; + if (p != 0 && p != 1) return stbi__err("bad DQT type","Corrupt JPEG"); + if (t > 3) return stbi__err("bad DQT table","Corrupt JPEG"); + + for (i=0; i < 64; ++i) + z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(z->s)); + L -= (sixteen ? 129 : 65); + } + return L==0; + + case 0xC4: // DHT - define huffman table + L = stbi__get16be(z->s)-2; + while (L > 0) { + stbi_uc *v; + int sizes[16],i,n=0; + int q = stbi__get8(z->s); + int tc = q >> 4; + int th = q & 15; + if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG"); + for (i=0; i < 16; ++i) { + sizes[i] = stbi__get8(z->s); + n += sizes[i]; + } + if(n > 256) return stbi__err("bad DHT header","Corrupt JPEG"); // Loop over i < n would write past end of values! + L -= 17; + if (tc == 0) { + if (!stbi__build_huffman(z->huff_dc+th, sizes)) return 0; + v = z->huff_dc[th].values; + } else { + if (!stbi__build_huffman(z->huff_ac+th, sizes)) return 0; + v = z->huff_ac[th].values; + } + for (i=0; i < n; ++i) + v[i] = stbi__get8(z->s); + if (tc != 0) + stbi__build_fast_ac(z->fast_ac[th], z->huff_ac + th); + L -= n; + } + return L==0; + } + + // check for comment block or APP blocks + if ((m >= 0xE0 && m <= 0xEF) || m == 0xFE) { + L = stbi__get16be(z->s); + if (L < 2) { + if (m == 0xFE) + return stbi__err("bad COM len","Corrupt JPEG"); + else + return stbi__err("bad APP len","Corrupt JPEG"); + } + L -= 2; + + if (m == 0xE0 && L >= 5) { // JFIF APP0 segment + static const unsigned char tag[5] = {'J','F','I','F','\0'}; + int ok = 1; + int i; + for (i=0; i < 5; ++i) + if (stbi__get8(z->s) != tag[i]) + ok = 0; + L -= 5; + if (ok) + z->jfif = 1; + } else if (m == 0xEE && L >= 12) { // Adobe APP14 segment + static const unsigned char tag[6] = {'A','d','o','b','e','\0'}; + int ok = 1; + int i; + for (i=0; i < 6; ++i) + if (stbi__get8(z->s) != tag[i]) + ok = 0; + L -= 6; + if (ok) { + stbi__get8(z->s); // version + stbi__get16be(z->s); // flags0 + stbi__get16be(z->s); // flags1 + z->app14_color_transform = stbi__get8(z->s); // color transform + L -= 6; + } + } + + stbi__skip(z->s, L); + return 1; + } + + return stbi__err("unknown marker","Corrupt JPEG"); +} + +// after we see SOS +static int stbi__process_scan_header(stbi__jpeg *z) +{ + int i; + int Ls = stbi__get16be(z->s); + z->scan_n = stbi__get8(z->s); + if (z->scan_n < 1 || z->scan_n > 4 || z->scan_n > (int) z->s->img_n) return stbi__err("bad SOS component count","Corrupt JPEG"); + if (Ls != 6+2*z->scan_n) return stbi__err("bad SOS len","Corrupt JPEG"); + for (i=0; i < z->scan_n; ++i) { + int id = stbi__get8(z->s), which; + int q = stbi__get8(z->s); + for (which = 0; which < z->s->img_n; ++which) + if (z->img_comp[which].id == id) + break; + if (which == z->s->img_n) return 0; // no match + z->img_comp[which].hd = q >> 4; if (z->img_comp[which].hd > 3) return stbi__err("bad DC huff","Corrupt JPEG"); + z->img_comp[which].ha = q & 15; if (z->img_comp[which].ha > 3) return stbi__err("bad AC huff","Corrupt JPEG"); + z->order[i] = which; + } + + { + int aa; + z->spec_start = stbi__get8(z->s); + z->spec_end = stbi__get8(z->s); // should be 63, but might be 0 + aa = stbi__get8(z->s); + z->succ_high = (aa >> 4); + z->succ_low = (aa & 15); + if (z->progressive) { + if (z->spec_start > 63 || z->spec_end > 63 || z->spec_start > z->spec_end || z->succ_high > 13 || z->succ_low > 13) + return stbi__err("bad SOS", "Corrupt JPEG"); + } else { + if (z->spec_start != 0) return stbi__err("bad SOS","Corrupt JPEG"); + if (z->succ_high != 0 || z->succ_low != 0) return stbi__err("bad SOS","Corrupt JPEG"); + z->spec_end = 63; + } + } + + return 1; +} + +static int stbi__free_jpeg_components(stbi__jpeg *z, int ncomp, int why) +{ + int i; + for (i=0; i < ncomp; ++i) { + if (z->img_comp[i].raw_data) { + STBI_FREE(z->img_comp[i].raw_data); + z->img_comp[i].raw_data = NULL; + z->img_comp[i].data = NULL; + } + if (z->img_comp[i].raw_coeff) { + STBI_FREE(z->img_comp[i].raw_coeff); + z->img_comp[i].raw_coeff = 0; + z->img_comp[i].coeff = 0; + } + if (z->img_comp[i].linebuf) { + STBI_FREE(z->img_comp[i].linebuf); + z->img_comp[i].linebuf = NULL; + } + } + return why; +} + +static int stbi__process_frame_header(stbi__jpeg *z, int scan) +{ + stbi__context *s = z->s; + int Lf,p,i,q, h_max=1,v_max=1,c; + Lf = stbi__get16be(s); if (Lf < 11) return stbi__err("bad SOF len","Corrupt JPEG"); // JPEG + p = stbi__get8(s); if (p != 8) return stbi__err("only 8-bit","JPEG format not supported: 8-bit only"); // JPEG baseline + s->img_y = stbi__get16be(s); if (s->img_y == 0) return stbi__err("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG + s->img_x = stbi__get16be(s); if (s->img_x == 0) return stbi__err("0 width","Corrupt JPEG"); // JPEG requires + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + c = stbi__get8(s); + if (c != 3 && c != 1 && c != 4) return stbi__err("bad component count","Corrupt JPEG"); + s->img_n = c; + for (i=0; i < c; ++i) { + z->img_comp[i].data = NULL; + z->img_comp[i].linebuf = NULL; + } + + if (Lf != 8+3*s->img_n) return stbi__err("bad SOF len","Corrupt JPEG"); + + z->rgb = 0; + for (i=0; i < s->img_n; ++i) { + static const unsigned char rgb[3] = { 'R', 'G', 'B' }; + z->img_comp[i].id = stbi__get8(s); + if (s->img_n == 3 && z->img_comp[i].id == rgb[i]) + ++z->rgb; + q = stbi__get8(s); + z->img_comp[i].h = (q >> 4); if (!z->img_comp[i].h || z->img_comp[i].h > 4) return stbi__err("bad H","Corrupt JPEG"); + z->img_comp[i].v = q & 15; if (!z->img_comp[i].v || z->img_comp[i].v > 4) return stbi__err("bad V","Corrupt JPEG"); + z->img_comp[i].tq = stbi__get8(s); if (z->img_comp[i].tq > 3) return stbi__err("bad TQ","Corrupt JPEG"); + } + + if (scan != STBI__SCAN_load) return 1; + + if (!stbi__mad3sizes_valid(s->img_x, s->img_y, s->img_n, 0)) return stbi__err("too large", "Image too large to decode"); + + for (i=0; i < s->img_n; ++i) { + if (z->img_comp[i].h > h_max) h_max = z->img_comp[i].h; + if (z->img_comp[i].v > v_max) v_max = z->img_comp[i].v; + } + + // check that plane subsampling factors are integer ratios; our resamplers can't deal with fractional ratios + // and I've never seen a non-corrupted JPEG file actually use them + for (i=0; i < s->img_n; ++i) { + if (h_max % z->img_comp[i].h != 0) return stbi__err("bad H","Corrupt JPEG"); + if (v_max % z->img_comp[i].v != 0) return stbi__err("bad V","Corrupt JPEG"); + } + + // compute interleaved mcu info + z->img_h_max = h_max; + z->img_v_max = v_max; + z->img_mcu_w = h_max * 8; + z->img_mcu_h = v_max * 8; + // these sizes can't be more than 17 bits + z->img_mcu_x = (s->img_x + z->img_mcu_w-1) / z->img_mcu_w; + z->img_mcu_y = (s->img_y + z->img_mcu_h-1) / z->img_mcu_h; + + for (i=0; i < s->img_n; ++i) { + // number of effective pixels (e.g. for non-interleaved MCU) + z->img_comp[i].x = (s->img_x * z->img_comp[i].h + h_max-1) / h_max; + z->img_comp[i].y = (s->img_y * z->img_comp[i].v + v_max-1) / v_max; + // to simplify generation, we'll allocate enough memory to decode + // the bogus oversized data from using interleaved MCUs and their + // big blocks (e.g. a 16x16 iMCU on an image of width 33); we won't + // discard the extra data until colorspace conversion + // + // img_mcu_x, img_mcu_y: <=17 bits; comp[i].h and .v are <=4 (checked earlier) + // so these muls can't overflow with 32-bit ints (which we require) + z->img_comp[i].w2 = z->img_mcu_x * z->img_comp[i].h * 8; + z->img_comp[i].h2 = z->img_mcu_y * z->img_comp[i].v * 8; + z->img_comp[i].coeff = 0; + z->img_comp[i].raw_coeff = 0; + z->img_comp[i].linebuf = NULL; + z->img_comp[i].raw_data = stbi__malloc_mad2(z->img_comp[i].w2, z->img_comp[i].h2, 15); + if (z->img_comp[i].raw_data == NULL) + return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); + // align blocks for idct using mmx/sse + z->img_comp[i].data = (stbi_uc*) (((size_t) z->img_comp[i].raw_data + 15) & ~15); + if (z->progressive) { + // w2, h2 are multiples of 8 (see above) + z->img_comp[i].coeff_w = z->img_comp[i].w2 / 8; + z->img_comp[i].coeff_h = z->img_comp[i].h2 / 8; + z->img_comp[i].raw_coeff = stbi__malloc_mad3(z->img_comp[i].w2, z->img_comp[i].h2, sizeof(short), 15); + if (z->img_comp[i].raw_coeff == NULL) + return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); + z->img_comp[i].coeff = (short*) (((size_t) z->img_comp[i].raw_coeff + 15) & ~15); + } + } + + return 1; +} + +// use comparisons since in some cases we handle more than one case (e.g. SOF) +#define stbi__DNL(x) ((x) == 0xdc) +#define stbi__SOI(x) ((x) == 0xd8) +#define stbi__EOI(x) ((x) == 0xd9) +#define stbi__SOF(x) ((x) == 0xc0 || (x) == 0xc1 || (x) == 0xc2) +#define stbi__SOS(x) ((x) == 0xda) + +#define stbi__SOF_progressive(x) ((x) == 0xc2) + +static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan) +{ + int m; + z->jfif = 0; + z->app14_color_transform = -1; // valid values are 0,1,2 + z->marker = STBI__MARKER_none; // initialize cached marker to empty + m = stbi__get_marker(z); + if (!stbi__SOI(m)) return stbi__err("no SOI","Corrupt JPEG"); + if (scan == STBI__SCAN_type) return 1; + m = stbi__get_marker(z); + while (!stbi__SOF(m)) { + if (!stbi__process_marker(z,m)) return 0; + m = stbi__get_marker(z); + while (m == STBI__MARKER_none) { + // some files have extra padding after their blocks, so ok, we'll scan + if (stbi__at_eof(z->s)) return stbi__err("no SOF", "Corrupt JPEG"); + m = stbi__get_marker(z); + } + } + z->progressive = stbi__SOF_progressive(m); + if (!stbi__process_frame_header(z, scan)) return 0; + return 1; +} + +static stbi_uc stbi__skip_jpeg_junk_at_end(stbi__jpeg *j) +{ + // some JPEGs have junk at end, skip over it but if we find what looks + // like a valid marker, resume there + while (!stbi__at_eof(j->s)) { + stbi_uc x = stbi__get8(j->s); + while (x == 0xff) { // might be a marker + if (stbi__at_eof(j->s)) return STBI__MARKER_none; + x = stbi__get8(j->s); + if (x != 0x00 && x != 0xff) { + // not a stuffed zero or lead-in to another marker, looks + // like an actual marker, return it + return x; + } + // stuffed zero has x=0 now which ends the loop, meaning we go + // back to regular scan loop. + // repeated 0xff keeps trying to read the next byte of the marker. + } + } + return STBI__MARKER_none; +} + +// decode image to YCbCr format +static int stbi__decode_jpeg_image(stbi__jpeg *j) +{ + int m; + for (m = 0; m < 4; m++) { + j->img_comp[m].raw_data = NULL; + j->img_comp[m].raw_coeff = NULL; + } + j->restart_interval = 0; + if (!stbi__decode_jpeg_header(j, STBI__SCAN_load)) return 0; + m = stbi__get_marker(j); + while (!stbi__EOI(m)) { + if (stbi__SOS(m)) { + if (!stbi__process_scan_header(j)) return 0; + if (!stbi__parse_entropy_coded_data(j)) return 0; + if (j->marker == STBI__MARKER_none ) { + j->marker = stbi__skip_jpeg_junk_at_end(j); + // if we reach eof without hitting a marker, stbi__get_marker() below will fail and we'll eventually return 0 + } + m = stbi__get_marker(j); + if (STBI__RESTART(m)) + m = stbi__get_marker(j); + } else if (stbi__DNL(m)) { + int Ld = stbi__get16be(j->s); + stbi__uint32 NL = stbi__get16be(j->s); + if (Ld != 4) return stbi__err("bad DNL len", "Corrupt JPEG"); + if (NL != j->s->img_y) return stbi__err("bad DNL height", "Corrupt JPEG"); + m = stbi__get_marker(j); + } else { + if (!stbi__process_marker(j, m)) return 1; + m = stbi__get_marker(j); + } + } + if (j->progressive) + stbi__jpeg_finish(j); + return 1; +} + +// static jfif-centered resampling (across block boundaries) + +typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1, + int w, int hs); + +#define stbi__div4(x) ((stbi_uc) ((x) >> 2)) + +static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + STBI_NOTUSED(out); + STBI_NOTUSED(in_far); + STBI_NOTUSED(w); + STBI_NOTUSED(hs); + return in_near; +} + +static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate two samples vertically for every one in input + int i; + STBI_NOTUSED(hs); + for (i=0; i < w; ++i) + out[i] = stbi__div4(3*in_near[i] + in_far[i] + 2); + return out; +} + +static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate two samples horizontally for every one in input + int i; + stbi_uc *input = in_near; + + if (w == 1) { + // if only one sample, can't do any interpolation + out[0] = out[1] = input[0]; + return out; + } + + out[0] = input[0]; + out[1] = stbi__div4(input[0]*3 + input[1] + 2); + for (i=1; i < w-1; ++i) { + int n = 3*input[i]+2; + out[i*2+0] = stbi__div4(n+input[i-1]); + out[i*2+1] = stbi__div4(n+input[i+1]); + } + out[i*2+0] = stbi__div4(input[w-2]*3 + input[w-1] + 2); + out[i*2+1] = input[w-1]; + + STBI_NOTUSED(in_far); + STBI_NOTUSED(hs); + + return out; +} + +#define stbi__div16(x) ((stbi_uc) ((x) >> 4)) + +static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate 2x2 samples for every one in input + int i,t0,t1; + if (w == 1) { + out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); + return out; + } + + t1 = 3*in_near[0] + in_far[0]; + out[0] = stbi__div4(t1+2); + for (i=1; i < w; ++i) { + t0 = t1; + t1 = 3*in_near[i]+in_far[i]; + out[i*2-1] = stbi__div16(3*t0 + t1 + 8); + out[i*2 ] = stbi__div16(3*t1 + t0 + 8); + } + out[w*2-1] = stbi__div4(t1+2); + + STBI_NOTUSED(hs); + + return out; +} + +#if defined(STBI_SSE2) || defined(STBI_NEON) +static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate 2x2 samples for every one in input + int i=0,t0,t1; + + if (w == 1) { + out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); + return out; + } + + t1 = 3*in_near[0] + in_far[0]; + // process groups of 8 pixels for as long as we can. + // note we can't handle the last pixel in a row in this loop + // because we need to handle the filter boundary conditions. + for (; i < ((w-1) & ~7); i += 8) { +#if defined(STBI_SSE2) + // load and perform the vertical filtering pass + // this uses 3*x + y = 4*x + (y - x) + __m128i zero = _mm_setzero_si128(); + __m128i farb = _mm_loadl_epi64((__m128i *) (in_far + i)); + __m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i)); + __m128i farw = _mm_unpacklo_epi8(farb, zero); + __m128i nearw = _mm_unpacklo_epi8(nearb, zero); + __m128i diff = _mm_sub_epi16(farw, nearw); + __m128i nears = _mm_slli_epi16(nearw, 2); + __m128i curr = _mm_add_epi16(nears, diff); // current row + + // horizontal filter works the same based on shifted vers of current + // row. "prev" is current row shifted right by 1 pixel; we need to + // insert the previous pixel value (from t1). + // "next" is current row shifted left by 1 pixel, with first pixel + // of next block of 8 pixels added in. + __m128i prv0 = _mm_slli_si128(curr, 2); + __m128i nxt0 = _mm_srli_si128(curr, 2); + __m128i prev = _mm_insert_epi16(prv0, t1, 0); + __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7); + + // horizontal filter, polyphase implementation since it's convenient: + // even pixels = 3*cur + prev = cur*4 + (prev - cur) + // odd pixels = 3*cur + next = cur*4 + (next - cur) + // note the shared term. + __m128i bias = _mm_set1_epi16(8); + __m128i curs = _mm_slli_epi16(curr, 2); + __m128i prvd = _mm_sub_epi16(prev, curr); + __m128i nxtd = _mm_sub_epi16(next, curr); + __m128i curb = _mm_add_epi16(curs, bias); + __m128i even = _mm_add_epi16(prvd, curb); + __m128i odd = _mm_add_epi16(nxtd, curb); + + // interleave even and odd pixels, then undo scaling. + __m128i int0 = _mm_unpacklo_epi16(even, odd); + __m128i int1 = _mm_unpackhi_epi16(even, odd); + __m128i de0 = _mm_srli_epi16(int0, 4); + __m128i de1 = _mm_srli_epi16(int1, 4); + + // pack and write output + __m128i outv = _mm_packus_epi16(de0, de1); + _mm_storeu_si128((__m128i *) (out + i*2), outv); +#elif defined(STBI_NEON) + // load and perform the vertical filtering pass + // this uses 3*x + y = 4*x + (y - x) + uint8x8_t farb = vld1_u8(in_far + i); + uint8x8_t nearb = vld1_u8(in_near + i); + int16x8_t diff = vreinterpretq_s16_u16(vsubl_u8(farb, nearb)); + int16x8_t nears = vreinterpretq_s16_u16(vshll_n_u8(nearb, 2)); + int16x8_t curr = vaddq_s16(nears, diff); // current row + + // horizontal filter works the same based on shifted vers of current + // row. "prev" is current row shifted right by 1 pixel; we need to + // insert the previous pixel value (from t1). + // "next" is current row shifted left by 1 pixel, with first pixel + // of next block of 8 pixels added in. + int16x8_t prv0 = vextq_s16(curr, curr, 7); + int16x8_t nxt0 = vextq_s16(curr, curr, 1); + int16x8_t prev = vsetq_lane_s16(t1, prv0, 0); + int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7); + + // horizontal filter, polyphase implementation since it's convenient: + // even pixels = 3*cur + prev = cur*4 + (prev - cur) + // odd pixels = 3*cur + next = cur*4 + (next - cur) + // note the shared term. + int16x8_t curs = vshlq_n_s16(curr, 2); + int16x8_t prvd = vsubq_s16(prev, curr); + int16x8_t nxtd = vsubq_s16(next, curr); + int16x8_t even = vaddq_s16(curs, prvd); + int16x8_t odd = vaddq_s16(curs, nxtd); + + // undo scaling and round, then store with even/odd phases interleaved + uint8x8x2_t o; + o.val[0] = vqrshrun_n_s16(even, 4); + o.val[1] = vqrshrun_n_s16(odd, 4); + vst2_u8(out + i*2, o); +#endif + + // "previous" value for next iter + t1 = 3*in_near[i+7] + in_far[i+7]; + } + + t0 = t1; + t1 = 3*in_near[i] + in_far[i]; + out[i*2] = stbi__div16(3*t1 + t0 + 8); + + for (++i; i < w; ++i) { + t0 = t1; + t1 = 3*in_near[i]+in_far[i]; + out[i*2-1] = stbi__div16(3*t0 + t1 + 8); + out[i*2 ] = stbi__div16(3*t1 + t0 + 8); + } + out[w*2-1] = stbi__div4(t1+2); + + STBI_NOTUSED(hs); + + return out; +} +#endif + +static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // resample with nearest-neighbor + int i,j; + STBI_NOTUSED(in_far); + for (i=0; i < w; ++i) + for (j=0; j < hs; ++j) + out[i*hs+j] = in_near[i]; + return out; +} + +// this is a reduced-precision calculation of YCbCr-to-RGB introduced +// to make sure the code produces the same results in both SIMD and scalar +#define stbi__float2fixed(x) (((int) ((x) * 4096.0f + 0.5f)) << 8) +static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step) +{ + int i; + for (i=0; i < count; ++i) { + int y_fixed = (y[i] << 20) + (1<<19); // rounding + int r,g,b; + int cr = pcr[i] - 128; + int cb = pcb[i] - 128; + r = y_fixed + cr* stbi__float2fixed(1.40200f); + g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); + b = y_fixed + cb* stbi__float2fixed(1.77200f); + r >>= 20; + g >>= 20; + b >>= 20; + if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } + if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } + if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } + out[0] = (stbi_uc)r; + out[1] = (stbi_uc)g; + out[2] = (stbi_uc)b; + out[3] = 255; + out += step; + } +} + +#if defined(STBI_SSE2) || defined(STBI_NEON) +static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi_uc const *pcb, stbi_uc const *pcr, int count, int step) +{ + int i = 0; + +#ifdef STBI_SSE2 + // step == 3 is pretty ugly on the final interleave, and i'm not convinced + // it's useful in practice (you wouldn't use it for textures, for example). + // so just accelerate step == 4 case. + if (step == 4) { + // this is a fairly straightforward implementation and not super-optimized. + __m128i signflip = _mm_set1_epi8(-0x80); + __m128i cr_const0 = _mm_set1_epi16( (short) ( 1.40200f*4096.0f+0.5f)); + __m128i cr_const1 = _mm_set1_epi16( - (short) ( 0.71414f*4096.0f+0.5f)); + __m128i cb_const0 = _mm_set1_epi16( - (short) ( 0.34414f*4096.0f+0.5f)); + __m128i cb_const1 = _mm_set1_epi16( (short) ( 1.77200f*4096.0f+0.5f)); + __m128i y_bias = _mm_set1_epi8((char) (unsigned char) 128); + __m128i xw = _mm_set1_epi16(255); // alpha channel + + for (; i+7 < count; i += 8) { + // load + __m128i y_bytes = _mm_loadl_epi64((__m128i *) (y+i)); + __m128i cr_bytes = _mm_loadl_epi64((__m128i *) (pcr+i)); + __m128i cb_bytes = _mm_loadl_epi64((__m128i *) (pcb+i)); + __m128i cr_biased = _mm_xor_si128(cr_bytes, signflip); // -128 + __m128i cb_biased = _mm_xor_si128(cb_bytes, signflip); // -128 + + // unpack to short (and left-shift cr, cb by 8) + __m128i yw = _mm_unpacklo_epi8(y_bias, y_bytes); + __m128i crw = _mm_unpacklo_epi8(_mm_setzero_si128(), cr_biased); + __m128i cbw = _mm_unpacklo_epi8(_mm_setzero_si128(), cb_biased); + + // color transform + __m128i yws = _mm_srli_epi16(yw, 4); + __m128i cr0 = _mm_mulhi_epi16(cr_const0, crw); + __m128i cb0 = _mm_mulhi_epi16(cb_const0, cbw); + __m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1); + __m128i cr1 = _mm_mulhi_epi16(crw, cr_const1); + __m128i rws = _mm_add_epi16(cr0, yws); + __m128i gwt = _mm_add_epi16(cb0, yws); + __m128i bws = _mm_add_epi16(yws, cb1); + __m128i gws = _mm_add_epi16(gwt, cr1); + + // descale + __m128i rw = _mm_srai_epi16(rws, 4); + __m128i bw = _mm_srai_epi16(bws, 4); + __m128i gw = _mm_srai_epi16(gws, 4); + + // back to byte, set up for transpose + __m128i brb = _mm_packus_epi16(rw, bw); + __m128i gxb = _mm_packus_epi16(gw, xw); + + // transpose to interleave channels + __m128i t0 = _mm_unpacklo_epi8(brb, gxb); + __m128i t1 = _mm_unpackhi_epi8(brb, gxb); + __m128i o0 = _mm_unpacklo_epi16(t0, t1); + __m128i o1 = _mm_unpackhi_epi16(t0, t1); + + // store + _mm_storeu_si128((__m128i *) (out + 0), o0); + _mm_storeu_si128((__m128i *) (out + 16), o1); + out += 32; + } + } +#endif + +#ifdef STBI_NEON + // in this version, step=3 support would be easy to add. but is there demand? + if (step == 4) { + // this is a fairly straightforward implementation and not super-optimized. + uint8x8_t signflip = vdup_n_u8(0x80); + int16x8_t cr_const0 = vdupq_n_s16( (short) ( 1.40200f*4096.0f+0.5f)); + int16x8_t cr_const1 = vdupq_n_s16( - (short) ( 0.71414f*4096.0f+0.5f)); + int16x8_t cb_const0 = vdupq_n_s16( - (short) ( 0.34414f*4096.0f+0.5f)); + int16x8_t cb_const1 = vdupq_n_s16( (short) ( 1.77200f*4096.0f+0.5f)); + + for (; i+7 < count; i += 8) { + // load + uint8x8_t y_bytes = vld1_u8(y + i); + uint8x8_t cr_bytes = vld1_u8(pcr + i); + uint8x8_t cb_bytes = vld1_u8(pcb + i); + int8x8_t cr_biased = vreinterpret_s8_u8(vsub_u8(cr_bytes, signflip)); + int8x8_t cb_biased = vreinterpret_s8_u8(vsub_u8(cb_bytes, signflip)); + + // expand to s16 + int16x8_t yws = vreinterpretq_s16_u16(vshll_n_u8(y_bytes, 4)); + int16x8_t crw = vshll_n_s8(cr_biased, 7); + int16x8_t cbw = vshll_n_s8(cb_biased, 7); + + // color transform + int16x8_t cr0 = vqdmulhq_s16(crw, cr_const0); + int16x8_t cb0 = vqdmulhq_s16(cbw, cb_const0); + int16x8_t cr1 = vqdmulhq_s16(crw, cr_const1); + int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1); + int16x8_t rws = vaddq_s16(yws, cr0); + int16x8_t gws = vaddq_s16(vaddq_s16(yws, cb0), cr1); + int16x8_t bws = vaddq_s16(yws, cb1); + + // undo scaling, round, convert to byte + uint8x8x4_t o; + o.val[0] = vqrshrun_n_s16(rws, 4); + o.val[1] = vqrshrun_n_s16(gws, 4); + o.val[2] = vqrshrun_n_s16(bws, 4); + o.val[3] = vdup_n_u8(255); + + // store, interleaving r/g/b/a + vst4_u8(out, o); + out += 8*4; + } + } +#endif + + for (; i < count; ++i) { + int y_fixed = (y[i] << 20) + (1<<19); // rounding + int r,g,b; + int cr = pcr[i] - 128; + int cb = pcb[i] - 128; + r = y_fixed + cr* stbi__float2fixed(1.40200f); + g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); + b = y_fixed + cb* stbi__float2fixed(1.77200f); + r >>= 20; + g >>= 20; + b >>= 20; + if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } + if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } + if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } + out[0] = (stbi_uc)r; + out[1] = (stbi_uc)g; + out[2] = (stbi_uc)b; + out[3] = 255; + out += step; + } +} +#endif + +// set up the kernels +static void stbi__setup_jpeg(stbi__jpeg *j) +{ + j->idct_block_kernel = stbi__idct_block; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_row; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2; + +#ifdef STBI_SSE2 + if (stbi__sse2_available()) { + j->idct_block_kernel = stbi__idct_simd; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; + } +#endif + +#ifdef STBI_NEON + j->idct_block_kernel = stbi__idct_simd; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; +#endif +} + +// clean up the temporary component buffers +static void stbi__cleanup_jpeg(stbi__jpeg *j) +{ + stbi__free_jpeg_components(j, j->s->img_n, 0); +} + +typedef struct +{ + resample_row_func resample; + stbi_uc *line0,*line1; + int hs,vs; // expansion factor in each axis + int w_lores; // horizontal pixels pre-expansion + int ystep; // how far through vertical expansion we are + int ypos; // which pre-expansion row we're on +} stbi__resample; + +// fast 0..255 * 0..255 => 0..255 rounded multiplication +static stbi_uc stbi__blinn_8x8(stbi_uc x, stbi_uc y) +{ + unsigned int t = x*y + 128; + return (stbi_uc) ((t + (t >>8)) >> 8); +} + +static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp, int req_comp) +{ + int n, decode_n, is_rgb; + z->s->img_n = 0; // make stbi__cleanup_jpeg safe + + // validate req_comp + if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); + + // load a jpeg image from whichever source, but leave in YCbCr format + if (!stbi__decode_jpeg_image(z)) { stbi__cleanup_jpeg(z); return NULL; } + + // determine actual number of components to generate + n = req_comp ? req_comp : z->s->img_n >= 3 ? 3 : 1; + + is_rgb = z->s->img_n == 3 && (z->rgb == 3 || (z->app14_color_transform == 0 && !z->jfif)); + + if (z->s->img_n == 3 && n < 3 && !is_rgb) + decode_n = 1; + else + decode_n = z->s->img_n; + + // nothing to do if no components requested; check this now to avoid + // accessing uninitialized coutput[0] later + if (decode_n <= 0) { stbi__cleanup_jpeg(z); return NULL; } + + // resample and color-convert + { + int k; + unsigned int i,j; + stbi_uc *output; + stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL }; + + stbi__resample res_comp[4]; + + for (k=0; k < decode_n; ++k) { + stbi__resample *r = &res_comp[k]; + + // allocate line buffer big enough for upsampling off the edges + // with upsample factor of 4 + z->img_comp[k].linebuf = (stbi_uc *) stbi__malloc(z->s->img_x + 3); + if (!z->img_comp[k].linebuf) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } + + r->hs = z->img_h_max / z->img_comp[k].h; + r->vs = z->img_v_max / z->img_comp[k].v; + r->ystep = r->vs >> 1; + r->w_lores = (z->s->img_x + r->hs-1) / r->hs; + r->ypos = 0; + r->line0 = r->line1 = z->img_comp[k].data; + + if (r->hs == 1 && r->vs == 1) r->resample = resample_row_1; + else if (r->hs == 1 && r->vs == 2) r->resample = stbi__resample_row_v_2; + else if (r->hs == 2 && r->vs == 1) r->resample = stbi__resample_row_h_2; + else if (r->hs == 2 && r->vs == 2) r->resample = z->resample_row_hv_2_kernel; + else r->resample = stbi__resample_row_generic; + } + + // can't error after this so, this is safe + output = (stbi_uc *) stbi__malloc_mad3(n, z->s->img_x, z->s->img_y, 1); + if (!output) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } + + // now go ahead and resample + for (j=0; j < z->s->img_y; ++j) { + stbi_uc *out = output + n * z->s->img_x * j; + for (k=0; k < decode_n; ++k) { + stbi__resample *r = &res_comp[k]; + int y_bot = r->ystep >= (r->vs >> 1); + coutput[k] = r->resample(z->img_comp[k].linebuf, + y_bot ? r->line1 : r->line0, + y_bot ? r->line0 : r->line1, + r->w_lores, r->hs); + if (++r->ystep >= r->vs) { + r->ystep = 0; + r->line0 = r->line1; + if (++r->ypos < z->img_comp[k].y) + r->line1 += z->img_comp[k].w2; + } + } + if (n >= 3) { + stbi_uc *y = coutput[0]; + if (z->s->img_n == 3) { + if (is_rgb) { + for (i=0; i < z->s->img_x; ++i) { + out[0] = y[i]; + out[1] = coutput[1][i]; + out[2] = coutput[2][i]; + out[3] = 255; + out += n; + } + } else { + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + } + } else if (z->s->img_n == 4) { + if (z->app14_color_transform == 0) { // CMYK + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + out[0] = stbi__blinn_8x8(coutput[0][i], m); + out[1] = stbi__blinn_8x8(coutput[1][i], m); + out[2] = stbi__blinn_8x8(coutput[2][i], m); + out[3] = 255; + out += n; + } + } else if (z->app14_color_transform == 2) { // YCCK + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + out[0] = stbi__blinn_8x8(255 - out[0], m); + out[1] = stbi__blinn_8x8(255 - out[1], m); + out[2] = stbi__blinn_8x8(255 - out[2], m); + out += n; + } + } else { // YCbCr + alpha? Ignore the fourth channel for now + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + } + } else + for (i=0; i < z->s->img_x; ++i) { + out[0] = out[1] = out[2] = y[i]; + out[3] = 255; // not used if n==3 + out += n; + } + } else { + if (is_rgb) { + if (n == 1) + for (i=0; i < z->s->img_x; ++i) + *out++ = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); + else { + for (i=0; i < z->s->img_x; ++i, out += 2) { + out[0] = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); + out[1] = 255; + } + } + } else if (z->s->img_n == 4 && z->app14_color_transform == 0) { + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + stbi_uc r = stbi__blinn_8x8(coutput[0][i], m); + stbi_uc g = stbi__blinn_8x8(coutput[1][i], m); + stbi_uc b = stbi__blinn_8x8(coutput[2][i], m); + out[0] = stbi__compute_y(r, g, b); + out[1] = 255; + out += n; + } + } else if (z->s->img_n == 4 && z->app14_color_transform == 2) { + for (i=0; i < z->s->img_x; ++i) { + out[0] = stbi__blinn_8x8(255 - coutput[0][i], coutput[3][i]); + out[1] = 255; + out += n; + } + } else { + stbi_uc *y = coutput[0]; + if (n == 1) + for (i=0; i < z->s->img_x; ++i) out[i] = y[i]; + else + for (i=0; i < z->s->img_x; ++i) { *out++ = y[i]; *out++ = 255; } + } + } + } + stbi__cleanup_jpeg(z); + *out_x = z->s->img_x; + *out_y = z->s->img_y; + if (comp) *comp = z->s->img_n >= 3 ? 3 : 1; // report original components, not output + return output; + } +} + +static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + unsigned char* result; + stbi__jpeg* j = (stbi__jpeg*) stbi__malloc(sizeof(stbi__jpeg)); + if (!j) return stbi__errpuc("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + STBI_NOTUSED(ri); + j->s = s; + stbi__setup_jpeg(j); + result = load_jpeg_image(j, x,y,comp,req_comp); + STBI_FREE(j); + return result; +} + +static int stbi__jpeg_test(stbi__context *s) +{ + int r; + stbi__jpeg* j = (stbi__jpeg*)stbi__malloc(sizeof(stbi__jpeg)); + if (!j) return stbi__err("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + j->s = s; + stbi__setup_jpeg(j); + r = stbi__decode_jpeg_header(j, STBI__SCAN_type); + stbi__rewind(s); + STBI_FREE(j); + return r; +} + +static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp) +{ + if (!stbi__decode_jpeg_header(j, STBI__SCAN_header)) { + stbi__rewind( j->s ); + return 0; + } + if (x) *x = j->s->img_x; + if (y) *y = j->s->img_y; + if (comp) *comp = j->s->img_n >= 3 ? 3 : 1; + return 1; +} + +static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp) +{ + int result; + stbi__jpeg* j = (stbi__jpeg*) (stbi__malloc(sizeof(stbi__jpeg))); + if (!j) return stbi__err("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + j->s = s; + result = stbi__jpeg_info_raw(j, x, y, comp); + STBI_FREE(j); + return result; +} +#endif + +// public domain zlib decode v0.2 Sean Barrett 2006-11-18 +// simple implementation +// - all input must be provided in an upfront buffer +// - all output is written to a single output buffer (can malloc/realloc) +// performance +// - fast huffman + +#ifndef STBI_NO_ZLIB + +// fast-way is faster to check than jpeg huffman, but slow way is slower +#define STBI__ZFAST_BITS 9 // accelerate all cases in default tables +#define STBI__ZFAST_MASK ((1 << STBI__ZFAST_BITS) - 1) +#define STBI__ZNSYMS 288 // number of symbols in literal/length alphabet + +// zlib-style huffman encoding +// (jpegs packs from left, zlib from right, so can't share code) +typedef struct +{ + stbi__uint16 fast[1 << STBI__ZFAST_BITS]; + stbi__uint16 firstcode[16]; + int maxcode[17]; + stbi__uint16 firstsymbol[16]; + stbi_uc size[STBI__ZNSYMS]; + stbi__uint16 value[STBI__ZNSYMS]; +} stbi__zhuffman; + +stbi_inline static int stbi__bitreverse16(int n) +{ + n = ((n & 0xAAAA) >> 1) | ((n & 0x5555) << 1); + n = ((n & 0xCCCC) >> 2) | ((n & 0x3333) << 2); + n = ((n & 0xF0F0) >> 4) | ((n & 0x0F0F) << 4); + n = ((n & 0xFF00) >> 8) | ((n & 0x00FF) << 8); + return n; +} + +stbi_inline static int stbi__bit_reverse(int v, int bits) +{ + STBI_ASSERT(bits <= 16); + // to bit reverse n bits, reverse 16 and shift + // e.g. 11 bits, bit reverse and shift away 5 + return stbi__bitreverse16(v) >> (16-bits); +} + +static int stbi__zbuild_huffman(stbi__zhuffman *z, const stbi_uc *sizelist, int num) +{ + int i,k=0; + int code, next_code[16], sizes[17]; + + // DEFLATE spec for generating codes + memset(sizes, 0, sizeof(sizes)); + memset(z->fast, 0, sizeof(z->fast)); + for (i=0; i < num; ++i) + ++sizes[sizelist[i]]; + sizes[0] = 0; + for (i=1; i < 16; ++i) + if (sizes[i] > (1 << i)) + return stbi__err("bad sizes", "Corrupt PNG"); + code = 0; + for (i=1; i < 16; ++i) { + next_code[i] = code; + z->firstcode[i] = (stbi__uint16) code; + z->firstsymbol[i] = (stbi__uint16) k; + code = (code + sizes[i]); + if (sizes[i]) + if (code-1 >= (1 << i)) return stbi__err("bad codelengths","Corrupt PNG"); + z->maxcode[i] = code << (16-i); // preshift for inner loop + code <<= 1; + k += sizes[i]; + } + z->maxcode[16] = 0x10000; // sentinel + for (i=0; i < num; ++i) { + int s = sizelist[i]; + if (s) { + int c = next_code[s] - z->firstcode[s] + z->firstsymbol[s]; + stbi__uint16 fastv = (stbi__uint16) ((s << 9) | i); + z->size [c] = (stbi_uc ) s; + z->value[c] = (stbi__uint16) i; + if (s <= STBI__ZFAST_BITS) { + int j = stbi__bit_reverse(next_code[s],s); + while (j < (1 << STBI__ZFAST_BITS)) { + z->fast[j] = fastv; + j += (1 << s); + } + } + ++next_code[s]; + } + } + return 1; +} + +// zlib-from-memory implementation for PNG reading +// because PNG allows splitting the zlib stream arbitrarily, +// and it's annoying structurally to have PNG call ZLIB call PNG, +// we require PNG read all the IDATs and combine them into a single +// memory buffer + +typedef struct +{ + stbi_uc *zbuffer, *zbuffer_end; + int num_bits; + int hit_zeof_once; + stbi__uint32 code_buffer; + + char *zout; + char *zout_start; + char *zout_end; + int z_expandable; + + stbi__zhuffman z_length, z_distance; +} stbi__zbuf; + +stbi_inline static int stbi__zeof(stbi__zbuf *z) +{ + return (z->zbuffer >= z->zbuffer_end); +} + +stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z) +{ + return stbi__zeof(z) ? 0 : *z->zbuffer++; +} + +static void stbi__fill_bits(stbi__zbuf *z) +{ + do { + if (z->code_buffer >= (1U << z->num_bits)) { + z->zbuffer = z->zbuffer_end; /* treat this as EOF so we fail. */ + return; + } + z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits; + z->num_bits += 8; + } while (z->num_bits <= 24); +} + +stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n) +{ + unsigned int k; + if (z->num_bits < n) stbi__fill_bits(z); + k = z->code_buffer & ((1 << n) - 1); + z->code_buffer >>= n; + z->num_bits -= n; + return k; +} + +static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) +{ + int b,s,k; + // not resolved by fast table, so compute it the slow way + // use jpeg approach, which requires MSbits at top + k = stbi__bit_reverse(a->code_buffer, 16); + for (s=STBI__ZFAST_BITS+1; ; ++s) + if (k < z->maxcode[s]) + break; + if (s >= 16) return -1; // invalid code! + // code size is s, so: + b = (k >> (16-s)) - z->firstcode[s] + z->firstsymbol[s]; + if (b >= STBI__ZNSYMS) return -1; // some data was corrupt somewhere! + if (z->size[b] != s) return -1; // was originally an assert, but report failure instead. + a->code_buffer >>= s; + a->num_bits -= s; + return z->value[b]; +} + +stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z) +{ + int b,s; + if (a->num_bits < 16) { + if (stbi__zeof(a)) { + if (!a->hit_zeof_once) { + // This is the first time we hit eof, insert 16 extra padding btis + // to allow us to keep going; if we actually consume any of them + // though, that is invalid data. This is caught later. + a->hit_zeof_once = 1; + a->num_bits += 16; // add 16 implicit zero bits + } else { + // We already inserted our extra 16 padding bits and are again + // out, this stream is actually prematurely terminated. + return -1; + } + } else { + stbi__fill_bits(a); + } + } + b = z->fast[a->code_buffer & STBI__ZFAST_MASK]; + if (b) { + s = b >> 9; + a->code_buffer >>= s; + a->num_bits -= s; + return b & 511; + } + return stbi__zhuffman_decode_slowpath(a, z); +} + +static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to make room for n bytes +{ + char *q; + unsigned int cur, limit, old_limit; + z->zout = zout; + if (!z->z_expandable) return stbi__err("output buffer limit","Corrupt PNG"); + cur = (unsigned int) (z->zout - z->zout_start); + limit = old_limit = (unsigned) (z->zout_end - z->zout_start); + if (UINT_MAX - cur < (unsigned) n) return stbi__err("outofmem", "Out of memory"); + while (cur + n > limit) { + if(limit > UINT_MAX / 2) return stbi__err("outofmem", "Out of memory"); + limit *= 2; + } + q = (char *) STBI_REALLOC_SIZED(z->zout_start, old_limit, limit); + STBI_NOTUSED(old_limit); + if (q == NULL) return stbi__err("outofmem", "Out of memory"); + z->zout_start = q; + z->zout = q + cur; + z->zout_end = q + limit; + return 1; +} + +static const int stbi__zlength_base[31] = { + 3,4,5,6,7,8,9,10,11,13, + 15,17,19,23,27,31,35,43,51,59, + 67,83,99,115,131,163,195,227,258,0,0 }; + +static const int stbi__zlength_extra[31]= +{ 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 }; + +static const int stbi__zdist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193, +257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0}; + +static const int stbi__zdist_extra[32] = +{ 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13}; + +static int stbi__parse_huffman_block(stbi__zbuf *a) +{ + char *zout = a->zout; + for(;;) { + int z = stbi__zhuffman_decode(a, &a->z_length); + if (z < 256) { + if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); // error in huffman codes + if (zout >= a->zout_end) { + if (!stbi__zexpand(a, zout, 1)) return 0; + zout = a->zout; + } + *zout++ = (char) z; + } else { + stbi_uc *p; + int len,dist; + if (z == 256) { + a->zout = zout; + if (a->hit_zeof_once && a->num_bits < 16) { + // The first time we hit zeof, we inserted 16 extra zero bits into our bit + // buffer so the decoder can just do its speculative decoding. But if we + // actually consumed any of those bits (which is the case when num_bits < 16), + // the stream actually read past the end so it is malformed. + return stbi__err("unexpected end","Corrupt PNG"); + } + return 1; + } + if (z >= 286) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, length codes 286 and 287 must not appear in compressed data + z -= 257; + len = stbi__zlength_base[z]; + if (stbi__zlength_extra[z]) len += stbi__zreceive(a, stbi__zlength_extra[z]); + z = stbi__zhuffman_decode(a, &a->z_distance); + if (z < 0 || z >= 30) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, distance codes 30 and 31 must not appear in compressed data + dist = stbi__zdist_base[z]; + if (stbi__zdist_extra[z]) dist += stbi__zreceive(a, stbi__zdist_extra[z]); + if (zout - a->zout_start < dist) return stbi__err("bad dist","Corrupt PNG"); + if (len > a->zout_end - zout) { + if (!stbi__zexpand(a, zout, len)) return 0; + zout = a->zout; + } + p = (stbi_uc *) (zout - dist); + if (dist == 1) { // run of one byte; common in images. + stbi_uc v = *p; + if (len) { do *zout++ = v; while (--len); } + } else { + if (len) { do *zout++ = *p++; while (--len); } + } + } + } +} + +static int stbi__compute_huffman_codes(stbi__zbuf *a) +{ + static const stbi_uc length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 }; + stbi__zhuffman z_codelength; + stbi_uc lencodes[286+32+137];//padding for maximum single op + stbi_uc codelength_sizes[19]; + int i,n; + + int hlit = stbi__zreceive(a,5) + 257; + int hdist = stbi__zreceive(a,5) + 1; + int hclen = stbi__zreceive(a,4) + 4; + int ntot = hlit + hdist; + + memset(codelength_sizes, 0, sizeof(codelength_sizes)); + for (i=0; i < hclen; ++i) { + int s = stbi__zreceive(a,3); + codelength_sizes[length_dezigzag[i]] = (stbi_uc) s; + } + if (!stbi__zbuild_huffman(&z_codelength, codelength_sizes, 19)) return 0; + + n = 0; + while (n < ntot) { + int c = stbi__zhuffman_decode(a, &z_codelength); + if (c < 0 || c >= 19) return stbi__err("bad codelengths", "Corrupt PNG"); + if (c < 16) + lencodes[n++] = (stbi_uc) c; + else { + stbi_uc fill = 0; + if (c == 16) { + c = stbi__zreceive(a,2)+3; + if (n == 0) return stbi__err("bad codelengths", "Corrupt PNG"); + fill = lencodes[n-1]; + } else if (c == 17) { + c = stbi__zreceive(a,3)+3; + } else if (c == 18) { + c = stbi__zreceive(a,7)+11; + } else { + return stbi__err("bad codelengths", "Corrupt PNG"); + } + if (ntot - n < c) return stbi__err("bad codelengths", "Corrupt PNG"); + memset(lencodes+n, fill, c); + n += c; + } + } + if (n != ntot) return stbi__err("bad codelengths","Corrupt PNG"); + if (!stbi__zbuild_huffman(&a->z_length, lencodes, hlit)) return 0; + if (!stbi__zbuild_huffman(&a->z_distance, lencodes+hlit, hdist)) return 0; + return 1; +} + +static int stbi__parse_uncompressed_block(stbi__zbuf *a) +{ + stbi_uc header[4]; + int len,nlen,k; + if (a->num_bits & 7) + stbi__zreceive(a, a->num_bits & 7); // discard + // drain the bit-packed data into header + k = 0; + while (a->num_bits > 0) { + header[k++] = (stbi_uc) (a->code_buffer & 255); // suppress MSVC run-time check + a->code_buffer >>= 8; + a->num_bits -= 8; + } + if (a->num_bits < 0) return stbi__err("zlib corrupt","Corrupt PNG"); + // now fill header the normal way + while (k < 4) + header[k++] = stbi__zget8(a); + len = header[1] * 256 + header[0]; + nlen = header[3] * 256 + header[2]; + if (nlen != (len ^ 0xffff)) return stbi__err("zlib corrupt","Corrupt PNG"); + if (a->zbuffer + len > a->zbuffer_end) return stbi__err("read past buffer","Corrupt PNG"); + if (a->zout + len > a->zout_end) + if (!stbi__zexpand(a, a->zout, len)) return 0; + memcpy(a->zout, a->zbuffer, len); + a->zbuffer += len; + a->zout += len; + return 1; +} + +static int stbi__parse_zlib_header(stbi__zbuf *a) +{ + int cmf = stbi__zget8(a); + int cm = cmf & 15; + /* int cinfo = cmf >> 4; */ + int flg = stbi__zget8(a); + if (stbi__zeof(a)) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec + if ((cmf*256+flg) % 31 != 0) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec + if (flg & 32) return stbi__err("no preset dict","Corrupt PNG"); // preset dictionary not allowed in png + if (cm != 8) return stbi__err("bad compression","Corrupt PNG"); // DEFLATE required for png + // window = 1 << (8 + cinfo)... but who cares, we fully buffer output + return 1; +} + +static const stbi_uc stbi__zdefault_length[STBI__ZNSYMS] = +{ + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8 +}; +static const stbi_uc stbi__zdefault_distance[32] = +{ + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5 +}; +/* +Init algorithm: +{ + int i; // use <= to match clearly with spec + for (i=0; i <= 143; ++i) stbi__zdefault_length[i] = 8; + for ( ; i <= 255; ++i) stbi__zdefault_length[i] = 9; + for ( ; i <= 279; ++i) stbi__zdefault_length[i] = 7; + for ( ; i <= 287; ++i) stbi__zdefault_length[i] = 8; + + for (i=0; i <= 31; ++i) stbi__zdefault_distance[i] = 5; +} +*/ + +static int stbi__parse_zlib(stbi__zbuf *a, int parse_header) +{ + int final, type; + if (parse_header) + if (!stbi__parse_zlib_header(a)) return 0; + a->num_bits = 0; + a->code_buffer = 0; + a->hit_zeof_once = 0; + do { + final = stbi__zreceive(a,1); + type = stbi__zreceive(a,2); + if (type == 0) { + if (!stbi__parse_uncompressed_block(a)) return 0; + } else if (type == 3) { + return 0; + } else { + if (type == 1) { + // use fixed code lengths + if (!stbi__zbuild_huffman(&a->z_length , stbi__zdefault_length , STBI__ZNSYMS)) return 0; + if (!stbi__zbuild_huffman(&a->z_distance, stbi__zdefault_distance, 32)) return 0; + } else { + if (!stbi__compute_huffman_codes(a)) return 0; + } + if (!stbi__parse_huffman_block(a)) return 0; + } + } while (!final); + return 1; +} + +static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header) +{ + a->zout_start = obuf; + a->zout = obuf; + a->zout_end = obuf + olen; + a->z_expandable = exp; + + return stbi__parse_zlib(a, parse_header); +} + +STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(initial_size); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer + len; + if (stbi__do_zlib(&a, p, initial_size, 1, 1)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen) +{ + return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen); +} + +STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(initial_size); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer + len; + if (stbi__do_zlib(&a, p, initial_size, 1, parse_header)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const *ibuffer, int ilen) +{ + stbi__zbuf a; + a.zbuffer = (stbi_uc *) ibuffer; + a.zbuffer_end = (stbi_uc *) ibuffer + ilen; + if (stbi__do_zlib(&a, obuffer, olen, 0, 1)) + return (int) (a.zout - a.zout_start); + else + return -1; +} + +STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(16384); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer+len; + if (stbi__do_zlib(&a, p, 16384, 1, 0)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen) +{ + stbi__zbuf a; + a.zbuffer = (stbi_uc *) ibuffer; + a.zbuffer_end = (stbi_uc *) ibuffer + ilen; + if (stbi__do_zlib(&a, obuffer, olen, 0, 0)) + return (int) (a.zout - a.zout_start); + else + return -1; +} +#endif + +// public domain "baseline" PNG decoder v0.10 Sean Barrett 2006-11-18 +// simple implementation +// - only 8-bit samples +// - no CRC checking +// - allocates lots of intermediate memory +// - avoids problem of streaming data between subsystems +// - avoids explicit window management +// performance +// - uses stb_zlib, a PD zlib implementation with fast huffman decoding + +#ifndef STBI_NO_PNG +typedef struct +{ + stbi__uint32 length; + stbi__uint32 type; +} stbi__pngchunk; + +static stbi__pngchunk stbi__get_chunk_header(stbi__context *s) +{ + stbi__pngchunk c; + c.length = stbi__get32be(s); + c.type = stbi__get32be(s); + return c; +} + +static int stbi__check_png_header(stbi__context *s) +{ + static const stbi_uc png_sig[8] = { 137,80,78,71,13,10,26,10 }; + int i; + for (i=0; i < 8; ++i) + if (stbi__get8(s) != png_sig[i]) return stbi__err("bad png sig","Not a PNG"); + return 1; +} + +typedef struct +{ + stbi__context *s; + stbi_uc *idata, *expanded, *out; + int depth; +} stbi__png; + + +enum { + STBI__F_none=0, + STBI__F_sub=1, + STBI__F_up=2, + STBI__F_avg=3, + STBI__F_paeth=4, + // synthetic filter used for first scanline to avoid needing a dummy row of 0s + STBI__F_avg_first +}; + +static stbi_uc first_row_filter[5] = +{ + STBI__F_none, + STBI__F_sub, + STBI__F_none, + STBI__F_avg_first, + STBI__F_sub // Paeth with b=c=0 turns out to be equivalent to sub +}; + +static int stbi__paeth(int a, int b, int c) +{ + // This formulation looks very different from the reference in the PNG spec, but is + // actually equivalent and has favorable data dependencies and admits straightforward + // generation of branch-free code, which helps performance significantly. + int thresh = c*3 - (a + b); + int lo = a < b ? a : b; + int hi = a < b ? b : a; + int t0 = (hi <= thresh) ? lo : c; + int t1 = (thresh <= lo) ? hi : t0; + return t1; +} + +static const stbi_uc stbi__depth_scale_table[9] = { 0, 0xff, 0x55, 0, 0x11, 0,0,0, 0x01 }; + +// adds an extra all-255 alpha channel +// dest == src is legal +// img_n must be 1 or 3 +static void stbi__create_png_alpha_expand8(stbi_uc *dest, stbi_uc *src, stbi__uint32 x, int img_n) +{ + int i; + // must process data backwards since we allow dest==src + if (img_n == 1) { + for (i=x-1; i >= 0; --i) { + dest[i*2+1] = 255; + dest[i*2+0] = src[i]; + } + } else { + STBI_ASSERT(img_n == 3); + for (i=x-1; i >= 0; --i) { + dest[i*4+3] = 255; + dest[i*4+2] = src[i*3+2]; + dest[i*4+1] = src[i*3+1]; + dest[i*4+0] = src[i*3+0]; + } + } +} + +// create the png data from post-deflated data +static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color) +{ + int bytes = (depth == 16 ? 2 : 1); + stbi__context *s = a->s; + stbi__uint32 i,j,stride = x*out_n*bytes; + stbi__uint32 img_len, img_width_bytes; + stbi_uc *filter_buf; + int all_ok = 1; + int k; + int img_n = s->img_n; // copy it into a local for later + + int output_bytes = out_n*bytes; + int filter_bytes = img_n*bytes; + int width = x; + + STBI_ASSERT(out_n == s->img_n || out_n == s->img_n+1); + a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end into + if (!a->out) return stbi__err("outofmem", "Out of memory"); + + // note: error exits here don't need to clean up a->out individually, + // stbi__do_png always does on error. + if (!stbi__mad3sizes_valid(img_n, x, depth, 7)) return stbi__err("too large", "Corrupt PNG"); + img_width_bytes = (((img_n * x * depth) + 7) >> 3); + if (!stbi__mad2sizes_valid(img_width_bytes, y, img_width_bytes)) return stbi__err("too large", "Corrupt PNG"); + img_len = (img_width_bytes + 1) * y; + + // we used to check for exact match between raw_len and img_len on non-interlaced PNGs, + // but issue #276 reported a PNG in the wild that had extra data at the end (all zeros), + // so just check for raw_len < img_len always. + if (raw_len < img_len) return stbi__err("not enough pixels","Corrupt PNG"); + + // Allocate two scan lines worth of filter workspace buffer. + filter_buf = (stbi_uc *) stbi__malloc_mad2(img_width_bytes, 2, 0); + if (!filter_buf) return stbi__err("outofmem", "Out of memory"); + + // Filtering for low-bit-depth images + if (depth < 8) { + filter_bytes = 1; + width = img_width_bytes; + } + + for (j=0; j < y; ++j) { + // cur/prior filter buffers alternate + stbi_uc *cur = filter_buf + (j & 1)*img_width_bytes; + stbi_uc *prior = filter_buf + (~j & 1)*img_width_bytes; + stbi_uc *dest = a->out + stride*j; + int nk = width * filter_bytes; + int filter = *raw++; + + // check filter type + if (filter > 4) { + all_ok = stbi__err("invalid filter","Corrupt PNG"); + break; + } + + // if first row, use special filter that doesn't sample previous row + if (j == 0) filter = first_row_filter[filter]; + + // perform actual filtering + switch (filter) { + case STBI__F_none: + memcpy(cur, raw, nk); + break; + case STBI__F_sub: + memcpy(cur, raw, filter_bytes); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); + break; + case STBI__F_up: + for (k = 0; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + prior[k]); + break; + case STBI__F_avg: + for (k = 0; k < filter_bytes; ++k) + cur[k] = STBI__BYTECAST(raw[k] + (prior[k]>>1)); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); + break; + case STBI__F_paeth: + for (k = 0; k < filter_bytes; ++k) + cur[k] = STBI__BYTECAST(raw[k] + prior[k]); // prior[k] == stbi__paeth(0,prior[k],0) + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes], prior[k], prior[k-filter_bytes])); + break; + case STBI__F_avg_first: + memcpy(cur, raw, filter_bytes); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1)); + break; + } + + raw += nk; + + // expand decoded bits in cur to dest, also adding an extra alpha channel if desired + if (depth < 8) { + stbi_uc scale = (color == 0) ? stbi__depth_scale_table[depth] : 1; // scale grayscale values to 0..255 range + stbi_uc *in = cur; + stbi_uc *out = dest; + stbi_uc inb = 0; + stbi__uint32 nsmp = x*img_n; + + // expand bits to bytes first + if (depth == 4) { + for (i=0; i < nsmp; ++i) { + if ((i & 1) == 0) inb = *in++; + *out++ = scale * (inb >> 4); + inb <<= 4; + } + } else if (depth == 2) { + for (i=0; i < nsmp; ++i) { + if ((i & 3) == 0) inb = *in++; + *out++ = scale * (inb >> 6); + inb <<= 2; + } + } else { + STBI_ASSERT(depth == 1); + for (i=0; i < nsmp; ++i) { + if ((i & 7) == 0) inb = *in++; + *out++ = scale * (inb >> 7); + inb <<= 1; + } + } + + // insert alpha=255 values if desired + if (img_n != out_n) + stbi__create_png_alpha_expand8(dest, dest, x, img_n); + } else if (depth == 8) { + if (img_n == out_n) + memcpy(dest, cur, x*img_n); + else + stbi__create_png_alpha_expand8(dest, cur, x, img_n); + } else if (depth == 16) { + // convert the image data from big-endian to platform-native + stbi__uint16 *dest16 = (stbi__uint16*)dest; + stbi__uint32 nsmp = x*img_n; + + if (img_n == out_n) { + for (i = 0; i < nsmp; ++i, ++dest16, cur += 2) + *dest16 = (cur[0] << 8) | cur[1]; + } else { + STBI_ASSERT(img_n+1 == out_n); + if (img_n == 1) { + for (i = 0; i < x; ++i, dest16 += 2, cur += 2) { + dest16[0] = (cur[0] << 8) | cur[1]; + dest16[1] = 0xffff; + } + } else { + STBI_ASSERT(img_n == 3); + for (i = 0; i < x; ++i, dest16 += 4, cur += 6) { + dest16[0] = (cur[0] << 8) | cur[1]; + dest16[1] = (cur[2] << 8) | cur[3]; + dest16[2] = (cur[4] << 8) | cur[5]; + dest16[3] = 0xffff; + } + } + } + } + } + + STBI_FREE(filter_buf); + if (!all_ok) return 0; + + return 1; +} + +static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced) +{ + int bytes = (depth == 16 ? 2 : 1); + int out_bytes = out_n * bytes; + stbi_uc *final; + int p; + if (!interlaced) + return stbi__create_png_image_raw(a, image_data, image_data_len, out_n, a->s->img_x, a->s->img_y, depth, color); + + // de-interlacing + final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0); + if (!final) return stbi__err("outofmem", "Out of memory"); + for (p=0; p < 7; ++p) { + int xorig[] = { 0,4,0,2,0,1,0 }; + int yorig[] = { 0,0,4,0,2,0,1 }; + int xspc[] = { 8,8,4,4,2,2,1 }; + int yspc[] = { 8,8,8,4,4,2,2 }; + int i,j,x,y; + // pass1_x[4] = 0, pass1_x[5] = 1, pass1_x[12] = 1 + x = (a->s->img_x - xorig[p] + xspc[p]-1) / xspc[p]; + y = (a->s->img_y - yorig[p] + yspc[p]-1) / yspc[p]; + if (x && y) { + stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y; + if (!stbi__create_png_image_raw(a, image_data, image_data_len, out_n, x, y, depth, color)) { + STBI_FREE(final); + return 0; + } + for (j=0; j < y; ++j) { + for (i=0; i < x; ++i) { + int out_y = j*yspc[p]+yorig[p]; + int out_x = i*xspc[p]+xorig[p]; + memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes, + a->out + (j*x+i)*out_bytes, out_bytes); + } + } + STBI_FREE(a->out); + image_data += img_len; + image_data_len -= img_len; + } + } + a->out = final; + + return 1; +} + +static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi_uc *p = z->out; + + // compute color-based transparency, assuming we've + // already got 255 as the alpha value in the output + STBI_ASSERT(out_n == 2 || out_n == 4); + + if (out_n == 2) { + for (i=0; i < pixel_count; ++i) { + p[1] = (p[0] == tc[0] ? 0 : 255); + p += 2; + } + } else { + for (i=0; i < pixel_count; ++i) { + if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) + p[3] = 0; + p += 4; + } + } + return 1; +} + +static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi__uint16 *p = (stbi__uint16*) z->out; + + // compute color-based transparency, assuming we've + // already got 65535 as the alpha value in the output + STBI_ASSERT(out_n == 2 || out_n == 4); + + if (out_n == 2) { + for (i = 0; i < pixel_count; ++i) { + p[1] = (p[0] == tc[0] ? 0 : 65535); + p += 2; + } + } else { + for (i = 0; i < pixel_count; ++i) { + if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) + p[3] = 0; + p += 4; + } + } + return 1; +} + +static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n) +{ + stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y; + stbi_uc *p, *temp_out, *orig = a->out; + + p = (stbi_uc *) stbi__malloc_mad2(pixel_count, pal_img_n, 0); + if (p == NULL) return stbi__err("outofmem", "Out of memory"); + + // between here and free(out) below, exitting would leak + temp_out = p; + + if (pal_img_n == 3) { + for (i=0; i < pixel_count; ++i) { + int n = orig[i]*4; + p[0] = palette[n ]; + p[1] = palette[n+1]; + p[2] = palette[n+2]; + p += 3; + } + } else { + for (i=0; i < pixel_count; ++i) { + int n = orig[i]*4; + p[0] = palette[n ]; + p[1] = palette[n+1]; + p[2] = palette[n+2]; + p[3] = palette[n+3]; + p += 4; + } + } + STBI_FREE(a->out); + a->out = temp_out; + + STBI_NOTUSED(len); + + return 1; +} + +static int stbi__unpremultiply_on_load_global = 0; +static int stbi__de_iphone_flag_global = 0; + +STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply) +{ + stbi__unpremultiply_on_load_global = flag_true_if_should_unpremultiply; +} + +STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert) +{ + stbi__de_iphone_flag_global = flag_true_if_should_convert; +} + +#ifndef STBI_THREAD_LOCAL +#define stbi__unpremultiply_on_load stbi__unpremultiply_on_load_global +#define stbi__de_iphone_flag stbi__de_iphone_flag_global +#else +static STBI_THREAD_LOCAL int stbi__unpremultiply_on_load_local, stbi__unpremultiply_on_load_set; +static STBI_THREAD_LOCAL int stbi__de_iphone_flag_local, stbi__de_iphone_flag_set; + +STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply) +{ + stbi__unpremultiply_on_load_local = flag_true_if_should_unpremultiply; + stbi__unpremultiply_on_load_set = 1; +} + +STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert) +{ + stbi__de_iphone_flag_local = flag_true_if_should_convert; + stbi__de_iphone_flag_set = 1; +} + +#define stbi__unpremultiply_on_load (stbi__unpremultiply_on_load_set \ + ? stbi__unpremultiply_on_load_local \ + : stbi__unpremultiply_on_load_global) +#define stbi__de_iphone_flag (stbi__de_iphone_flag_set \ + ? stbi__de_iphone_flag_local \ + : stbi__de_iphone_flag_global) +#endif // STBI_THREAD_LOCAL + +static void stbi__de_iphone(stbi__png *z) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi_uc *p = z->out; + + if (s->img_out_n == 3) { // convert bgr to rgb + for (i=0; i < pixel_count; ++i) { + stbi_uc t = p[0]; + p[0] = p[2]; + p[2] = t; + p += 3; + } + } else { + STBI_ASSERT(s->img_out_n == 4); + if (stbi__unpremultiply_on_load) { + // convert bgr to rgb and unpremultiply + for (i=0; i < pixel_count; ++i) { + stbi_uc a = p[3]; + stbi_uc t = p[0]; + if (a) { + stbi_uc half = a / 2; + p[0] = (p[2] * 255 + half) / a; + p[1] = (p[1] * 255 + half) / a; + p[2] = ( t * 255 + half) / a; + } else { + p[0] = p[2]; + p[2] = t; + } + p += 4; + } + } else { + // convert bgr to rgb + for (i=0; i < pixel_count; ++i) { + stbi_uc t = p[0]; + p[0] = p[2]; + p[2] = t; + p += 4; + } + } + } +} + +#define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c) << 8) + (unsigned) (d)) + +static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp) +{ + stbi_uc palette[1024], pal_img_n=0; + stbi_uc has_trans=0, tc[3]={0}; + stbi__uint16 tc16[3]; + stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; + int first=1,k,interlace=0, color=0, is_iphone=0; + stbi__context *s = z->s; + + z->expanded = NULL; + z->idata = NULL; + z->out = NULL; + + if (!stbi__check_png_header(s)) return 0; + + if (scan == STBI__SCAN_type) return 1; + + for (;;) { + stbi__pngchunk c = stbi__get_chunk_header(s); + switch (c.type) { + case STBI__PNG_TYPE('C','g','B','I'): + is_iphone = 1; + stbi__skip(s, c.length); + break; + case STBI__PNG_TYPE('I','H','D','R'): { + int comp,filter; + if (!first) return stbi__err("multiple IHDR","Corrupt PNG"); + first = 0; + if (c.length != 13) return stbi__err("bad IHDR len","Corrupt PNG"); + s->img_x = stbi__get32be(s); + s->img_y = stbi__get32be(s); + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + z->depth = stbi__get8(s); if (z->depth != 1 && z->depth != 2 && z->depth != 4 && z->depth != 8 && z->depth != 16) return stbi__err("1/2/4/8/16-bit only","PNG not supported: 1/2/4/8/16-bit only"); + color = stbi__get8(s); if (color > 6) return stbi__err("bad ctype","Corrupt PNG"); + if (color == 3 && z->depth == 16) return stbi__err("bad ctype","Corrupt PNG"); + if (color == 3) pal_img_n = 3; else if (color & 1) return stbi__err("bad ctype","Corrupt PNG"); + comp = stbi__get8(s); if (comp) return stbi__err("bad comp method","Corrupt PNG"); + filter= stbi__get8(s); if (filter) return stbi__err("bad filter method","Corrupt PNG"); + interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG"); + if (!s->img_x || !s->img_y) return stbi__err("0-pixel image","Corrupt PNG"); + if (!pal_img_n) { + s->img_n = (color & 2 ? 3 : 1) + (color & 4 ? 1 : 0); + if ((1 << 30) / s->img_x / s->img_n < s->img_y) return stbi__err("too large", "Image too large to decode"); + } else { + // if paletted, then pal_n is our final components, and + // img_n is # components to decompress/filter. + s->img_n = 1; + if ((1 << 30) / s->img_x / 4 < s->img_y) return stbi__err("too large","Corrupt PNG"); + } + // even with SCAN_header, have to scan to see if we have a tRNS + break; + } + + case STBI__PNG_TYPE('P','L','T','E'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (c.length > 256*3) return stbi__err("invalid PLTE","Corrupt PNG"); + pal_len = c.length / 3; + if (pal_len * 3 != c.length) return stbi__err("invalid PLTE","Corrupt PNG"); + for (i=0; i < pal_len; ++i) { + palette[i*4+0] = stbi__get8(s); + palette[i*4+1] = stbi__get8(s); + palette[i*4+2] = stbi__get8(s); + palette[i*4+3] = 255; + } + break; + } + + case STBI__PNG_TYPE('t','R','N','S'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (z->idata) return stbi__err("tRNS after IDAT","Corrupt PNG"); + if (pal_img_n) { + if (scan == STBI__SCAN_header) { s->img_n = 4; return 1; } + if (pal_len == 0) return stbi__err("tRNS before PLTE","Corrupt PNG"); + if (c.length > pal_len) return stbi__err("bad tRNS len","Corrupt PNG"); + pal_img_n = 4; + for (i=0; i < c.length; ++i) + palette[i*4+3] = stbi__get8(s); + } else { + if (!(s->img_n & 1)) return stbi__err("tRNS with alpha","Corrupt PNG"); + if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG"); + has_trans = 1; + // non-paletted with tRNS = constant alpha. if header-scanning, we can stop now. + if (scan == STBI__SCAN_header) { ++s->img_n; return 1; } + if (z->depth == 16) { + for (k = 0; k < s->img_n; ++k) tc16[k] = (stbi__uint16)stbi__get16be(s); // copy the values as-is + } else { + for (k = 0; k < s->img_n; ++k) tc[k] = (stbi_uc)(stbi__get16be(s) & 255) * stbi__depth_scale_table[z->depth]; // non 8-bit images will be larger + } + } + break; + } + + case STBI__PNG_TYPE('I','D','A','T'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (pal_img_n && !pal_len) return stbi__err("no PLTE","Corrupt PNG"); + if (scan == STBI__SCAN_header) { + // header scan definitely stops at first IDAT + if (pal_img_n) + s->img_n = pal_img_n; + return 1; + } + if (c.length > (1u << 30)) return stbi__err("IDAT size limit", "IDAT section larger than 2^30 bytes"); + if ((int)(ioff + c.length) < (int)ioff) return 0; + if (ioff + c.length > idata_limit) { + stbi__uint32 idata_limit_old = idata_limit; + stbi_uc *p; + if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096; + while (ioff + c.length > idata_limit) + idata_limit *= 2; + STBI_NOTUSED(idata_limit_old); + p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory"); + z->idata = p; + } + if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG"); + ioff += c.length; + break; + } + + case STBI__PNG_TYPE('I','E','N','D'): { + stbi__uint32 raw_len, bpl; + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (scan != STBI__SCAN_load) return 1; + if (z->idata == NULL) return stbi__err("no IDAT","Corrupt PNG"); + // initial guess for decoded data size to avoid unnecessary reallocs + bpl = (s->img_x * z->depth + 7) / 8; // bytes per line, per component + raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */; + z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone); + if (z->expanded == NULL) return 0; // zlib should set error + STBI_FREE(z->idata); z->idata = NULL; + if ((req_comp == s->img_n+1 && req_comp != 3 && !pal_img_n) || has_trans) + s->img_out_n = s->img_n+1; + else + s->img_out_n = s->img_n; + if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0; + if (has_trans) { + if (z->depth == 16) { + if (!stbi__compute_transparency16(z, tc16, s->img_out_n)) return 0; + } else { + if (!stbi__compute_transparency(z, tc, s->img_out_n)) return 0; + } + } + if (is_iphone && stbi__de_iphone_flag && s->img_out_n > 2) + stbi__de_iphone(z); + if (pal_img_n) { + // pal_img_n == 3 or 4 + s->img_n = pal_img_n; // record the actual colors we had + s->img_out_n = pal_img_n; + if (req_comp >= 3) s->img_out_n = req_comp; + if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n)) + return 0; + } else if (has_trans) { + // non-paletted image with tRNS -> source image has (constant) alpha + ++s->img_n; + } + STBI_FREE(z->expanded); z->expanded = NULL; + // end of PNG chunk, read and skip CRC + stbi__get32be(s); + return 1; + } + + default: + // if critical, fail + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if ((c.type & (1 << 29)) == 0) { + #ifndef STBI_NO_FAILURE_STRINGS + // not threadsafe + static char invalid_chunk[] = "XXXX PNG chunk not known"; + invalid_chunk[0] = STBI__BYTECAST(c.type >> 24); + invalid_chunk[1] = STBI__BYTECAST(c.type >> 16); + invalid_chunk[2] = STBI__BYTECAST(c.type >> 8); + invalid_chunk[3] = STBI__BYTECAST(c.type >> 0); + #endif + return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type"); + } + stbi__skip(s, c.length); + break; + } + // end of PNG chunk, read and skip CRC + stbi__get32be(s); + } +} + +static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri) +{ + void *result=NULL; + if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); + if (stbi__parse_png_file(p, STBI__SCAN_load, req_comp)) { + if (p->depth <= 8) + ri->bits_per_channel = 8; + else if (p->depth == 16) + ri->bits_per_channel = 16; + else + return stbi__errpuc("bad bits_per_channel", "PNG not supported: unsupported color depth"); + result = p->out; + p->out = NULL; + if (req_comp && req_comp != p->s->img_out_n) { + if (ri->bits_per_channel == 8) + result = stbi__convert_format((unsigned char *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); + else + result = stbi__convert_format16((stbi__uint16 *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); + p->s->img_out_n = req_comp; + if (result == NULL) return result; + } + *x = p->s->img_x; + *y = p->s->img_y; + if (n) *n = p->s->img_n; + } + STBI_FREE(p->out); p->out = NULL; + STBI_FREE(p->expanded); p->expanded = NULL; + STBI_FREE(p->idata); p->idata = NULL; + + return result; +} + +static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi__png p; + p.s = s; + return stbi__do_png(&p, x,y,comp,req_comp, ri); +} + +static int stbi__png_test(stbi__context *s) +{ + int r; + r = stbi__check_png_header(s); + stbi__rewind(s); + return r; +} + +static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp) +{ + if (!stbi__parse_png_file(p, STBI__SCAN_header, 0)) { + stbi__rewind( p->s ); + return 0; + } + if (x) *x = p->s->img_x; + if (y) *y = p->s->img_y; + if (comp) *comp = p->s->img_n; + return 1; +} + +static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp) +{ + stbi__png p; + p.s = s; + return stbi__png_info_raw(&p, x, y, comp); +} + +static int stbi__png_is16(stbi__context *s) +{ + stbi__png p; + p.s = s; + if (!stbi__png_info_raw(&p, NULL, NULL, NULL)) + return 0; + if (p.depth != 16) { + stbi__rewind(p.s); + return 0; + } + return 1; +} +#endif + +// Microsoft/Windows BMP image + +#ifndef STBI_NO_BMP +static int stbi__bmp_test_raw(stbi__context *s) +{ + int r; + int sz; + if (stbi__get8(s) != 'B') return 0; + if (stbi__get8(s) != 'M') return 0; + stbi__get32le(s); // discard filesize + stbi__get16le(s); // discard reserved + stbi__get16le(s); // discard reserved + stbi__get32le(s); // discard data offset + sz = stbi__get32le(s); + r = (sz == 12 || sz == 40 || sz == 56 || sz == 108 || sz == 124); + return r; +} + +static int stbi__bmp_test(stbi__context *s) +{ + int r = stbi__bmp_test_raw(s); + stbi__rewind(s); + return r; +} + + +// returns 0..31 for the highest set bit +static int stbi__high_bit(unsigned int z) +{ + int n=0; + if (z == 0) return -1; + if (z >= 0x10000) { n += 16; z >>= 16; } + if (z >= 0x00100) { n += 8; z >>= 8; } + if (z >= 0x00010) { n += 4; z >>= 4; } + if (z >= 0x00004) { n += 2; z >>= 2; } + if (z >= 0x00002) { n += 1;/* >>= 1;*/ } + return n; +} + +static int stbi__bitcount(unsigned int a) +{ + a = (a & 0x55555555) + ((a >> 1) & 0x55555555); // max 2 + a = (a & 0x33333333) + ((a >> 2) & 0x33333333); // max 4 + a = (a + (a >> 4)) & 0x0f0f0f0f; // max 8 per 4, now 8 bits + a = (a + (a >> 8)); // max 16 per 8 bits + a = (a + (a >> 16)); // max 32 per 8 bits + return a & 0xff; +} + +// extract an arbitrarily-aligned N-bit value (N=bits) +// from v, and then make it 8-bits long and fractionally +// extend it to full full range. +static int stbi__shiftsigned(unsigned int v, int shift, int bits) +{ + static unsigned int mul_table[9] = { + 0, + 0xff/*0b11111111*/, 0x55/*0b01010101*/, 0x49/*0b01001001*/, 0x11/*0b00010001*/, + 0x21/*0b00100001*/, 0x41/*0b01000001*/, 0x81/*0b10000001*/, 0x01/*0b00000001*/, + }; + static unsigned int shift_table[9] = { + 0, 0,0,1,0,2,4,6,0, + }; + if (shift < 0) + v <<= -shift; + else + v >>= shift; + STBI_ASSERT(v < 256); + v >>= (8-bits); + STBI_ASSERT(bits >= 0 && bits <= 8); + return (int) ((unsigned) v * mul_table[bits]) >> shift_table[bits]; +} + +typedef struct +{ + int bpp, offset, hsz; + unsigned int mr,mg,mb,ma, all_a; + int extra_read; +} stbi__bmp_data; + +static int stbi__bmp_set_mask_defaults(stbi__bmp_data *info, int compress) +{ + // BI_BITFIELDS specifies masks explicitly, don't override + if (compress == 3) + return 1; + + if (compress == 0) { + if (info->bpp == 16) { + info->mr = 31u << 10; + info->mg = 31u << 5; + info->mb = 31u << 0; + } else if (info->bpp == 32) { + info->mr = 0xffu << 16; + info->mg = 0xffu << 8; + info->mb = 0xffu << 0; + info->ma = 0xffu << 24; + info->all_a = 0; // if all_a is 0 at end, then we loaded alpha channel but it was all 0 + } else { + // otherwise, use defaults, which is all-0 + info->mr = info->mg = info->mb = info->ma = 0; + } + return 1; + } + return 0; // error +} + +static void *stbi__bmp_parse_header(stbi__context *s, stbi__bmp_data *info) +{ + int hsz; + if (stbi__get8(s) != 'B' || stbi__get8(s) != 'M') return stbi__errpuc("not BMP", "Corrupt BMP"); + stbi__get32le(s); // discard filesize + stbi__get16le(s); // discard reserved + stbi__get16le(s); // discard reserved + info->offset = stbi__get32le(s); + info->hsz = hsz = stbi__get32le(s); + info->mr = info->mg = info->mb = info->ma = 0; + info->extra_read = 14; + + if (info->offset < 0) return stbi__errpuc("bad BMP", "bad BMP"); + + if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108 && hsz != 124) return stbi__errpuc("unknown BMP", "BMP type not supported: unknown"); + if (hsz == 12) { + s->img_x = stbi__get16le(s); + s->img_y = stbi__get16le(s); + } else { + s->img_x = stbi__get32le(s); + s->img_y = stbi__get32le(s); + } + if (stbi__get16le(s) != 1) return stbi__errpuc("bad BMP", "bad BMP"); + info->bpp = stbi__get16le(s); + if (hsz != 12) { + int compress = stbi__get32le(s); + if (compress == 1 || compress == 2) return stbi__errpuc("BMP RLE", "BMP type not supported: RLE"); + if (compress >= 4) return stbi__errpuc("BMP JPEG/PNG", "BMP type not supported: unsupported compression"); // this includes PNG/JPEG modes + if (compress == 3 && info->bpp != 16 && info->bpp != 32) return stbi__errpuc("bad BMP", "bad BMP"); // bitfields requires 16 or 32 bits/pixel + stbi__get32le(s); // discard sizeof + stbi__get32le(s); // discard hres + stbi__get32le(s); // discard vres + stbi__get32le(s); // discard colorsused + stbi__get32le(s); // discard max important + if (hsz == 40 || hsz == 56) { + if (hsz == 56) { + stbi__get32le(s); + stbi__get32le(s); + stbi__get32le(s); + stbi__get32le(s); + } + if (info->bpp == 16 || info->bpp == 32) { + if (compress == 0) { + stbi__bmp_set_mask_defaults(info, compress); + } else if (compress == 3) { + info->mr = stbi__get32le(s); + info->mg = stbi__get32le(s); + info->mb = stbi__get32le(s); + info->extra_read += 12; + // not documented, but generated by photoshop and handled by mspaint + if (info->mr == info->mg && info->mg == info->mb) { + // ?!?!? + return stbi__errpuc("bad BMP", "bad BMP"); + } + } else + return stbi__errpuc("bad BMP", "bad BMP"); + } + } else { + // V4/V5 header + int i; + if (hsz != 108 && hsz != 124) + return stbi__errpuc("bad BMP", "bad BMP"); + info->mr = stbi__get32le(s); + info->mg = stbi__get32le(s); + info->mb = stbi__get32le(s); + info->ma = stbi__get32le(s); + if (compress != 3) // override mr/mg/mb unless in BI_BITFIELDS mode, as per docs + stbi__bmp_set_mask_defaults(info, compress); + stbi__get32le(s); // discard color space + for (i=0; i < 12; ++i) + stbi__get32le(s); // discard color space parameters + if (hsz == 124) { + stbi__get32le(s); // discard rendering intent + stbi__get32le(s); // discard offset of profile data + stbi__get32le(s); // discard size of profile data + stbi__get32le(s); // discard reserved + } + } + } + return (void *) 1; +} + + +static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *out; + unsigned int mr=0,mg=0,mb=0,ma=0, all_a; + stbi_uc pal[256][4]; + int psize=0,i,j,width; + int flip_vertically, pad, target; + stbi__bmp_data info; + STBI_NOTUSED(ri); + + info.all_a = 255; + if (stbi__bmp_parse_header(s, &info) == NULL) + return NULL; // error code already set + + flip_vertically = ((int) s->img_y) > 0; + s->img_y = abs((int) s->img_y); + + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + mr = info.mr; + mg = info.mg; + mb = info.mb; + ma = info.ma; + all_a = info.all_a; + + if (info.hsz == 12) { + if (info.bpp < 24) + psize = (info.offset - info.extra_read - 24) / 3; + } else { + if (info.bpp < 16) + psize = (info.offset - info.extra_read - info.hsz) >> 2; + } + if (psize == 0) { + // accept some number of extra bytes after the header, but if the offset points either to before + // the header ends or implies a large amount of extra data, reject the file as malformed + int bytes_read_so_far = s->callback_already_read + (int)(s->img_buffer - s->img_buffer_original); + int header_limit = 1024; // max we actually read is below 256 bytes currently. + int extra_data_limit = 256*4; // what ordinarily goes here is a palette; 256 entries*4 bytes is its max size. + if (bytes_read_so_far <= 0 || bytes_read_so_far > header_limit) { + return stbi__errpuc("bad header", "Corrupt BMP"); + } + // we established that bytes_read_so_far is positive and sensible. + // the first half of this test rejects offsets that are either too small positives, or + // negative, and guarantees that info.offset >= bytes_read_so_far > 0. this in turn + // ensures the number computed in the second half of the test can't overflow. + if (info.offset < bytes_read_so_far || info.offset - bytes_read_so_far > extra_data_limit) { + return stbi__errpuc("bad offset", "Corrupt BMP"); + } else { + stbi__skip(s, info.offset - bytes_read_so_far); + } + } + + if (info.bpp == 24 && ma == 0xff000000) + s->img_n = 3; + else + s->img_n = ma ? 4 : 3; + if (req_comp && req_comp >= 3) // we can directly decode 3 or 4 + target = req_comp; + else + target = s->img_n; // if they want monochrome, we'll post-convert + + // sanity-check size + if (!stbi__mad3sizes_valid(target, s->img_x, s->img_y, 0)) + return stbi__errpuc("too large", "Corrupt BMP"); + + out = (stbi_uc *) stbi__malloc_mad3(target, s->img_x, s->img_y, 0); + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + if (info.bpp < 16) { + int z=0; + if (psize == 0 || psize > 256) { STBI_FREE(out); return stbi__errpuc("invalid", "Corrupt BMP"); } + for (i=0; i < psize; ++i) { + pal[i][2] = stbi__get8(s); + pal[i][1] = stbi__get8(s); + pal[i][0] = stbi__get8(s); + if (info.hsz != 12) stbi__get8(s); + pal[i][3] = 255; + } + stbi__skip(s, info.offset - info.extra_read - info.hsz - psize * (info.hsz == 12 ? 3 : 4)); + if (info.bpp == 1) width = (s->img_x + 7) >> 3; + else if (info.bpp == 4) width = (s->img_x + 1) >> 1; + else if (info.bpp == 8) width = s->img_x; + else { STBI_FREE(out); return stbi__errpuc("bad bpp", "Corrupt BMP"); } + pad = (-width)&3; + if (info.bpp == 1) { + for (j=0; j < (int) s->img_y; ++j) { + int bit_offset = 7, v = stbi__get8(s); + for (i=0; i < (int) s->img_x; ++i) { + int color = (v>>bit_offset)&0x1; + out[z++] = pal[color][0]; + out[z++] = pal[color][1]; + out[z++] = pal[color][2]; + if (target == 4) out[z++] = 255; + if (i+1 == (int) s->img_x) break; + if((--bit_offset) < 0) { + bit_offset = 7; + v = stbi__get8(s); + } + } + stbi__skip(s, pad); + } + } else { + for (j=0; j < (int) s->img_y; ++j) { + for (i=0; i < (int) s->img_x; i += 2) { + int v=stbi__get8(s),v2=0; + if (info.bpp == 4) { + v2 = v & 15; + v >>= 4; + } + out[z++] = pal[v][0]; + out[z++] = pal[v][1]; + out[z++] = pal[v][2]; + if (target == 4) out[z++] = 255; + if (i+1 == (int) s->img_x) break; + v = (info.bpp == 8) ? stbi__get8(s) : v2; + out[z++] = pal[v][0]; + out[z++] = pal[v][1]; + out[z++] = pal[v][2]; + if (target == 4) out[z++] = 255; + } + stbi__skip(s, pad); + } + } + } else { + int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0; + int z = 0; + int easy=0; + stbi__skip(s, info.offset - info.extra_read - info.hsz); + if (info.bpp == 24) width = 3 * s->img_x; + else if (info.bpp == 16) width = 2*s->img_x; + else /* bpp = 32 and pad = 0 */ width=0; + pad = (-width) & 3; + if (info.bpp == 24) { + easy = 1; + } else if (info.bpp == 32) { + if (mb == 0xff && mg == 0xff00 && mr == 0x00ff0000 && ma == 0xff000000) + easy = 2; + } + if (!easy) { + if (!mr || !mg || !mb) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } + // right shift amt to put high bit in position #7 + rshift = stbi__high_bit(mr)-7; rcount = stbi__bitcount(mr); + gshift = stbi__high_bit(mg)-7; gcount = stbi__bitcount(mg); + bshift = stbi__high_bit(mb)-7; bcount = stbi__bitcount(mb); + ashift = stbi__high_bit(ma)-7; acount = stbi__bitcount(ma); + if (rcount > 8 || gcount > 8 || bcount > 8 || acount > 8) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } + } + for (j=0; j < (int) s->img_y; ++j) { + if (easy) { + for (i=0; i < (int) s->img_x; ++i) { + unsigned char a; + out[z+2] = stbi__get8(s); + out[z+1] = stbi__get8(s); + out[z+0] = stbi__get8(s); + z += 3; + a = (easy == 2 ? stbi__get8(s) : 255); + all_a |= a; + if (target == 4) out[z++] = a; + } + } else { + int bpp = info.bpp; + for (i=0; i < (int) s->img_x; ++i) { + stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s)); + unsigned int a; + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mr, rshift, rcount)); + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mg, gshift, gcount)); + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mb, bshift, bcount)); + a = (ma ? stbi__shiftsigned(v & ma, ashift, acount) : 255); + all_a |= a; + if (target == 4) out[z++] = STBI__BYTECAST(a); + } + } + stbi__skip(s, pad); + } + } + + // if alpha channel is all 0s, replace with all 255s + if (target == 4 && all_a == 0) + for (i=4*s->img_x*s->img_y-1; i >= 0; i -= 4) + out[i] = 255; + + if (flip_vertically) { + stbi_uc t; + for (j=0; j < (int) s->img_y>>1; ++j) { + stbi_uc *p1 = out + j *s->img_x*target; + stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target; + for (i=0; i < (int) s->img_x*target; ++i) { + t = p1[i]; p1[i] = p2[i]; p2[i] = t; + } + } + } + + if (req_comp && req_comp != target) { + out = stbi__convert_format(out, target, req_comp, s->img_x, s->img_y); + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + + *x = s->img_x; + *y = s->img_y; + if (comp) *comp = s->img_n; + return out; +} +#endif + +// Targa Truevision - TGA +// by Jonathan Dummer +#ifndef STBI_NO_TGA +// returns STBI_rgb or whatever, 0 on error +static int stbi__tga_get_comp(int bits_per_pixel, int is_grey, int* is_rgb16) +{ + // only RGB or RGBA (incl. 16bit) or grey allowed + if (is_rgb16) *is_rgb16 = 0; + switch(bits_per_pixel) { + case 8: return STBI_grey; + case 16: if(is_grey) return STBI_grey_alpha; + // fallthrough + case 15: if(is_rgb16) *is_rgb16 = 1; + return STBI_rgb; + case 24: // fallthrough + case 32: return bits_per_pixel/8; + default: return 0; + } +} + +static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp) +{ + int tga_w, tga_h, tga_comp, tga_image_type, tga_bits_per_pixel, tga_colormap_bpp; + int sz, tga_colormap_type; + stbi__get8(s); // discard Offset + tga_colormap_type = stbi__get8(s); // colormap type + if( tga_colormap_type > 1 ) { + stbi__rewind(s); + return 0; // only RGB or indexed allowed + } + tga_image_type = stbi__get8(s); // image type + if ( tga_colormap_type == 1 ) { // colormapped (paletted) image + if (tga_image_type != 1 && tga_image_type != 9) { + stbi__rewind(s); + return 0; + } + stbi__skip(s,4); // skip index of first colormap entry and number of entries + sz = stbi__get8(s); // check bits per palette color entry + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) { + stbi__rewind(s); + return 0; + } + stbi__skip(s,4); // skip image x and y origin + tga_colormap_bpp = sz; + } else { // "normal" image w/o colormap - only RGB or grey allowed, +/- RLE + if ( (tga_image_type != 2) && (tga_image_type != 3) && (tga_image_type != 10) && (tga_image_type != 11) ) { + stbi__rewind(s); + return 0; // only RGB or grey allowed, +/- RLE + } + stbi__skip(s,9); // skip colormap specification and image x/y origin + tga_colormap_bpp = 0; + } + tga_w = stbi__get16le(s); + if( tga_w < 1 ) { + stbi__rewind(s); + return 0; // test width + } + tga_h = stbi__get16le(s); + if( tga_h < 1 ) { + stbi__rewind(s); + return 0; // test height + } + tga_bits_per_pixel = stbi__get8(s); // bits per pixel + stbi__get8(s); // ignore alpha bits + if (tga_colormap_bpp != 0) { + if((tga_bits_per_pixel != 8) && (tga_bits_per_pixel != 16)) { + // when using a colormap, tga_bits_per_pixel is the size of the indexes + // I don't think anything but 8 or 16bit indexes makes sense + stbi__rewind(s); + return 0; + } + tga_comp = stbi__tga_get_comp(tga_colormap_bpp, 0, NULL); + } else { + tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3) || (tga_image_type == 11), NULL); + } + if(!tga_comp) { + stbi__rewind(s); + return 0; + } + if (x) *x = tga_w; + if (y) *y = tga_h; + if (comp) *comp = tga_comp; + return 1; // seems to have passed everything +} + +static int stbi__tga_test(stbi__context *s) +{ + int res = 0; + int sz, tga_color_type; + stbi__get8(s); // discard Offset + tga_color_type = stbi__get8(s); // color type + if ( tga_color_type > 1 ) goto errorEnd; // only RGB or indexed allowed + sz = stbi__get8(s); // image type + if ( tga_color_type == 1 ) { // colormapped (paletted) image + if (sz != 1 && sz != 9) goto errorEnd; // colortype 1 demands image type 1 or 9 + stbi__skip(s,4); // skip index of first colormap entry and number of entries + sz = stbi__get8(s); // check bits per palette color entry + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; + stbi__skip(s,4); // skip image x and y origin + } else { // "normal" image w/o colormap + if ( (sz != 2) && (sz != 3) && (sz != 10) && (sz != 11) ) goto errorEnd; // only RGB or grey allowed, +/- RLE + stbi__skip(s,9); // skip colormap specification and image x/y origin + } + if ( stbi__get16le(s) < 1 ) goto errorEnd; // test width + if ( stbi__get16le(s) < 1 ) goto errorEnd; // test height + sz = stbi__get8(s); // bits per pixel + if ( (tga_color_type == 1) && (sz != 8) && (sz != 16) ) goto errorEnd; // for colormapped images, bpp is size of an index + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; + + res = 1; // if we got this far, everything's good and we can return 1 instead of 0 + +errorEnd: + stbi__rewind(s); + return res; +} + +// read 16bit value and convert to 24bit RGB +static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out) +{ + stbi__uint16 px = (stbi__uint16)stbi__get16le(s); + stbi__uint16 fiveBitMask = 31; + // we have 3 channels with 5bits each + int r = (px >> 10) & fiveBitMask; + int g = (px >> 5) & fiveBitMask; + int b = px & fiveBitMask; + // Note that this saves the data in RGB(A) order, so it doesn't need to be swapped later + out[0] = (stbi_uc)((r * 255)/31); + out[1] = (stbi_uc)((g * 255)/31); + out[2] = (stbi_uc)((b * 255)/31); + + // some people claim that the most significant bit might be used for alpha + // (possibly if an alpha-bit is set in the "image descriptor byte") + // but that only made 16bit test images completely translucent.. + // so let's treat all 15 and 16bit TGAs as RGB with no alpha. +} + +static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + // read in the TGA header stuff + int tga_offset = stbi__get8(s); + int tga_indexed = stbi__get8(s); + int tga_image_type = stbi__get8(s); + int tga_is_RLE = 0; + int tga_palette_start = stbi__get16le(s); + int tga_palette_len = stbi__get16le(s); + int tga_palette_bits = stbi__get8(s); + int tga_x_origin = stbi__get16le(s); + int tga_y_origin = stbi__get16le(s); + int tga_width = stbi__get16le(s); + int tga_height = stbi__get16le(s); + int tga_bits_per_pixel = stbi__get8(s); + int tga_comp, tga_rgb16=0; + int tga_inverted = stbi__get8(s); + // int tga_alpha_bits = tga_inverted & 15; // the 4 lowest bits - unused (useless?) + // image data + unsigned char *tga_data; + unsigned char *tga_palette = NULL; + int i, j; + unsigned char raw_data[4] = {0}; + int RLE_count = 0; + int RLE_repeating = 0; + int read_next_pixel = 1; + STBI_NOTUSED(ri); + STBI_NOTUSED(tga_x_origin); // @TODO + STBI_NOTUSED(tga_y_origin); // @TODO + + if (tga_height > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (tga_width > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + // do a tiny bit of precessing + if ( tga_image_type >= 8 ) + { + tga_image_type -= 8; + tga_is_RLE = 1; + } + tga_inverted = 1 - ((tga_inverted >> 5) & 1); + + // If I'm paletted, then I'll use the number of bits from the palette + if ( tga_indexed ) tga_comp = stbi__tga_get_comp(tga_palette_bits, 0, &tga_rgb16); + else tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3), &tga_rgb16); + + if(!tga_comp) // shouldn't really happen, stbi__tga_test() should have ensured basic consistency + return stbi__errpuc("bad format", "Can't find out TGA pixelformat"); + + // tga info + *x = tga_width; + *y = tga_height; + if (comp) *comp = tga_comp; + + if (!stbi__mad3sizes_valid(tga_width, tga_height, tga_comp, 0)) + return stbi__errpuc("too large", "Corrupt TGA"); + + tga_data = (unsigned char*)stbi__malloc_mad3(tga_width, tga_height, tga_comp, 0); + if (!tga_data) return stbi__errpuc("outofmem", "Out of memory"); + + // skip to the data's starting position (offset usually = 0) + stbi__skip(s, tga_offset ); + + if ( !tga_indexed && !tga_is_RLE && !tga_rgb16 ) { + for (i=0; i < tga_height; ++i) { + int row = tga_inverted ? tga_height -i - 1 : i; + stbi_uc *tga_row = tga_data + row*tga_width*tga_comp; + stbi__getn(s, tga_row, tga_width * tga_comp); + } + } else { + // do I need to load a palette? + if ( tga_indexed) + { + if (tga_palette_len == 0) { /* you have to have at least one entry! */ + STBI_FREE(tga_data); + return stbi__errpuc("bad palette", "Corrupt TGA"); + } + + // any data to skip? (offset usually = 0) + stbi__skip(s, tga_palette_start ); + // load the palette + tga_palette = (unsigned char*)stbi__malloc_mad2(tga_palette_len, tga_comp, 0); + if (!tga_palette) { + STBI_FREE(tga_data); + return stbi__errpuc("outofmem", "Out of memory"); + } + if (tga_rgb16) { + stbi_uc *pal_entry = tga_palette; + STBI_ASSERT(tga_comp == STBI_rgb); + for (i=0; i < tga_palette_len; ++i) { + stbi__tga_read_rgb16(s, pal_entry); + pal_entry += tga_comp; + } + } else if (!stbi__getn(s, tga_palette, tga_palette_len * tga_comp)) { + STBI_FREE(tga_data); + STBI_FREE(tga_palette); + return stbi__errpuc("bad palette", "Corrupt TGA"); + } + } + // load the data + for (i=0; i < tga_width * tga_height; ++i) + { + // if I'm in RLE mode, do I need to get a RLE stbi__pngchunk? + if ( tga_is_RLE ) + { + if ( RLE_count == 0 ) + { + // yep, get the next byte as a RLE command + int RLE_cmd = stbi__get8(s); + RLE_count = 1 + (RLE_cmd & 127); + RLE_repeating = RLE_cmd >> 7; + read_next_pixel = 1; + } else if ( !RLE_repeating ) + { + read_next_pixel = 1; + } + } else + { + read_next_pixel = 1; + } + // OK, if I need to read a pixel, do it now + if ( read_next_pixel ) + { + // load however much data we did have + if ( tga_indexed ) + { + // read in index, then perform the lookup + int pal_idx = (tga_bits_per_pixel == 8) ? stbi__get8(s) : stbi__get16le(s); + if ( pal_idx >= tga_palette_len ) { + // invalid index + pal_idx = 0; + } + pal_idx *= tga_comp; + for (j = 0; j < tga_comp; ++j) { + raw_data[j] = tga_palette[pal_idx+j]; + } + } else if(tga_rgb16) { + STBI_ASSERT(tga_comp == STBI_rgb); + stbi__tga_read_rgb16(s, raw_data); + } else { + // read in the data raw + for (j = 0; j < tga_comp; ++j) { + raw_data[j] = stbi__get8(s); + } + } + // clear the reading flag for the next pixel + read_next_pixel = 0; + } // end of reading a pixel + + // copy data + for (j = 0; j < tga_comp; ++j) + tga_data[i*tga_comp+j] = raw_data[j]; + + // in case we're in RLE mode, keep counting down + --RLE_count; + } + // do I need to invert the image? + if ( tga_inverted ) + { + for (j = 0; j*2 < tga_height; ++j) + { + int index1 = j * tga_width * tga_comp; + int index2 = (tga_height - 1 - j) * tga_width * tga_comp; + for (i = tga_width * tga_comp; i > 0; --i) + { + unsigned char temp = tga_data[index1]; + tga_data[index1] = tga_data[index2]; + tga_data[index2] = temp; + ++index1; + ++index2; + } + } + } + // clear my palette, if I had one + if ( tga_palette != NULL ) + { + STBI_FREE( tga_palette ); + } + } + + // swap RGB - if the source data was RGB16, it already is in the right order + if (tga_comp >= 3 && !tga_rgb16) + { + unsigned char* tga_pixel = tga_data; + for (i=0; i < tga_width * tga_height; ++i) + { + unsigned char temp = tga_pixel[0]; + tga_pixel[0] = tga_pixel[2]; + tga_pixel[2] = temp; + tga_pixel += tga_comp; + } + } + + // convert to target component count + if (req_comp && req_comp != tga_comp) + tga_data = stbi__convert_format(tga_data, tga_comp, req_comp, tga_width, tga_height); + + // the things I do to get rid of an error message, and yet keep + // Microsoft's C compilers happy... [8^( + tga_palette_start = tga_palette_len = tga_palette_bits = + tga_x_origin = tga_y_origin = 0; + STBI_NOTUSED(tga_palette_start); + // OK, done + return tga_data; +} +#endif + +// ************************************************************************************************* +// Photoshop PSD loader -- PD by Thatcher Ulrich, integration by Nicolas Schulz, tweaked by STB + +#ifndef STBI_NO_PSD +static int stbi__psd_test(stbi__context *s) +{ + int r = (stbi__get32be(s) == 0x38425053); + stbi__rewind(s); + return r; +} + +static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount) +{ + int count, nleft, len; + + count = 0; + while ((nleft = pixelCount - count) > 0) { + len = stbi__get8(s); + if (len == 128) { + // No-op. + } else if (len < 128) { + // Copy next len+1 bytes literally. + len++; + if (len > nleft) return 0; // corrupt data + count += len; + while (len) { + *p = stbi__get8(s); + p += 4; + len--; + } + } else if (len > 128) { + stbi_uc val; + // Next -len+1 bytes in the dest are replicated from next source byte. + // (Interpret len as a negative 8-bit int.) + len = 257 - len; + if (len > nleft) return 0; // corrupt data + val = stbi__get8(s); + count += len; + while (len) { + *p = val; + p += 4; + len--; + } + } + } + + return 1; +} + +static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) +{ + int pixelCount; + int channelCount, compression; + int channel, i; + int bitdepth; + int w,h; + stbi_uc *out; + STBI_NOTUSED(ri); + + // Check identifier + if (stbi__get32be(s) != 0x38425053) // "8BPS" + return stbi__errpuc("not PSD", "Corrupt PSD image"); + + // Check file type version. + if (stbi__get16be(s) != 1) + return stbi__errpuc("wrong version", "Unsupported version of PSD image"); + + // Skip 6 reserved bytes. + stbi__skip(s, 6 ); + + // Read the number of channels (R, G, B, A, etc). + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) + return stbi__errpuc("wrong channel count", "Unsupported number of channels in PSD image"); + + // Read the rows and columns of the image. + h = stbi__get32be(s); + w = stbi__get32be(s); + + if (h > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (w > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + // Make sure the depth is 8 bits. + bitdepth = stbi__get16be(s); + if (bitdepth != 8 && bitdepth != 16) + return stbi__errpuc("unsupported bit depth", "PSD bit depth is not 8 or 16 bit"); + + // Make sure the color mode is RGB. + // Valid options are: + // 0: Bitmap + // 1: Grayscale + // 2: Indexed color + // 3: RGB color + // 4: CMYK color + // 7: Multichannel + // 8: Duotone + // 9: Lab color + if (stbi__get16be(s) != 3) + return stbi__errpuc("wrong color format", "PSD is not in RGB color format"); + + // Skip the Mode Data. (It's the palette for indexed color; other info for other modes.) + stbi__skip(s,stbi__get32be(s) ); + + // Skip the image resources. (resolution, pen tool paths, etc) + stbi__skip(s, stbi__get32be(s) ); + + // Skip the reserved data. + stbi__skip(s, stbi__get32be(s) ); + + // Find out if the data is compressed. + // Known values: + // 0: no compression + // 1: RLE compressed + compression = stbi__get16be(s); + if (compression > 1) + return stbi__errpuc("bad compression", "PSD has an unknown compression format"); + + // Check size + if (!stbi__mad3sizes_valid(4, w, h, 0)) + return stbi__errpuc("too large", "Corrupt PSD"); + + // Create the destination image. + + if (!compression && bitdepth == 16 && bpc == 16) { + out = (stbi_uc *) stbi__malloc_mad3(8, w, h, 0); + ri->bits_per_channel = 16; + } else + out = (stbi_uc *) stbi__malloc(4 * w*h); + + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + pixelCount = w*h; + + // Initialize the data to zero. + //memset( out, 0, pixelCount * 4 ); + + // Finally, the image data. + if (compression) { + // RLE as used by .PSD and .TIFF + // Loop until you get the number of unpacked bytes you are expecting: + // Read the next source byte into n. + // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally. + // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times. + // Else if n is 128, noop. + // Endloop + + // The RLE-compressed data is preceded by a 2-byte data count for each row in the data, + // which we're going to just skip. + stbi__skip(s, h * channelCount * 2 ); + + // Read the RLE data by channel. + for (channel = 0; channel < 4; channel++) { + stbi_uc *p; + + p = out+channel; + if (channel >= channelCount) { + // Fill this channel with default data. + for (i = 0; i < pixelCount; i++, p += 4) + *p = (channel == 3 ? 255 : 0); + } else { + // Read the RLE data. + if (!stbi__psd_decode_rle(s, p, pixelCount)) { + STBI_FREE(out); + return stbi__errpuc("corrupt", "bad RLE data"); + } + } + } + + } else { + // We're at the raw image data. It's each channel in order (Red, Green, Blue, Alpha, ...) + // where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image. + + // Read the data by channel. + for (channel = 0; channel < 4; channel++) { + if (channel >= channelCount) { + // Fill this channel with default data. + if (bitdepth == 16 && bpc == 16) { + stbi__uint16 *q = ((stbi__uint16 *) out) + channel; + stbi__uint16 val = channel == 3 ? 65535 : 0; + for (i = 0; i < pixelCount; i++, q += 4) + *q = val; + } else { + stbi_uc *p = out+channel; + stbi_uc val = channel == 3 ? 255 : 0; + for (i = 0; i < pixelCount; i++, p += 4) + *p = val; + } + } else { + if (ri->bits_per_channel == 16) { // output bpc + stbi__uint16 *q = ((stbi__uint16 *) out) + channel; + for (i = 0; i < pixelCount; i++, q += 4) + *q = (stbi__uint16) stbi__get16be(s); + } else { + stbi_uc *p = out+channel; + if (bitdepth == 16) { // input bpc + for (i = 0; i < pixelCount; i++, p += 4) + *p = (stbi_uc) (stbi__get16be(s) >> 8); + } else { + for (i = 0; i < pixelCount; i++, p += 4) + *p = stbi__get8(s); + } + } + } + } + } + + // remove weird white matte from PSD + if (channelCount >= 4) { + if (ri->bits_per_channel == 16) { + for (i=0; i < w*h; ++i) { + stbi__uint16 *pixel = (stbi__uint16 *) out + 4*i; + if (pixel[3] != 0 && pixel[3] != 65535) { + float a = pixel[3] / 65535.0f; + float ra = 1.0f / a; + float inv_a = 65535.0f * (1 - ra); + pixel[0] = (stbi__uint16) (pixel[0]*ra + inv_a); + pixel[1] = (stbi__uint16) (pixel[1]*ra + inv_a); + pixel[2] = (stbi__uint16) (pixel[2]*ra + inv_a); + } + } + } else { + for (i=0; i < w*h; ++i) { + unsigned char *pixel = out + 4*i; + if (pixel[3] != 0 && pixel[3] != 255) { + float a = pixel[3] / 255.0f; + float ra = 1.0f / a; + float inv_a = 255.0f * (1 - ra); + pixel[0] = (unsigned char) (pixel[0]*ra + inv_a); + pixel[1] = (unsigned char) (pixel[1]*ra + inv_a); + pixel[2] = (unsigned char) (pixel[2]*ra + inv_a); + } + } + } + } + + // convert to desired output format + if (req_comp && req_comp != 4) { + if (ri->bits_per_channel == 16) + out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, 4, req_comp, w, h); + else + out = stbi__convert_format(out, 4, req_comp, w, h); + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + + if (comp) *comp = 4; + *y = h; + *x = w; + + return out; +} +#endif + +// ************************************************************************************************* +// Softimage PIC loader +// by Tom Seddon +// +// See http://softimage.wiki.softimage.com/index.php/INFO:_PIC_file_format +// See http://ozviz.wasp.uwa.edu.au/~pbourke/dataformats/softimagepic/ + +#ifndef STBI_NO_PIC +static int stbi__pic_is4(stbi__context *s,const char *str) +{ + int i; + for (i=0; i<4; ++i) + if (stbi__get8(s) != (stbi_uc)str[i]) + return 0; + + return 1; +} + +static int stbi__pic_test_core(stbi__context *s) +{ + int i; + + if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) + return 0; + + for(i=0;i<84;++i) + stbi__get8(s); + + if (!stbi__pic_is4(s,"PICT")) + return 0; + + return 1; +} + +typedef struct +{ + stbi_uc size,type,channel; +} stbi__pic_packet; + +static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest) +{ + int mask=0x80, i; + + for (i=0; i<4; ++i, mask>>=1) { + if (channel & mask) { + if (stbi__at_eof(s)) return stbi__errpuc("bad file","PIC file too short"); + dest[i]=stbi__get8(s); + } + } + + return dest; +} + +static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src) +{ + int mask=0x80,i; + + for (i=0;i<4; ++i, mask>>=1) + if (channel&mask) + dest[i]=src[i]; +} + +static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int height,int *comp, stbi_uc *result) +{ + int act_comp=0,num_packets=0,y,chained; + stbi__pic_packet packets[10]; + + // this will (should...) cater for even some bizarre stuff like having data + // for the same channel in multiple packets. + do { + stbi__pic_packet *packet; + + if (num_packets==sizeof(packets)/sizeof(packets[0])) + return stbi__errpuc("bad format","too many packets"); + + packet = &packets[num_packets++]; + + chained = stbi__get8(s); + packet->size = stbi__get8(s); + packet->type = stbi__get8(s); + packet->channel = stbi__get8(s); + + act_comp |= packet->channel; + + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (reading packets)"); + if (packet->size != 8) return stbi__errpuc("bad format","packet isn't 8bpp"); + } while (chained); + + *comp = (act_comp & 0x10 ? 4 : 3); // has alpha channel? + + for(y=0; ytype) { + default: + return stbi__errpuc("bad format","packet has bad compression type"); + + case 0: {//uncompressed + int x; + + for(x=0;xchannel,dest)) + return 0; + break; + } + + case 1://Pure RLE + { + int left=width, i; + + while (left>0) { + stbi_uc count,value[4]; + + count=stbi__get8(s); + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pure read count)"); + + if (count > left) + count = (stbi_uc) left; + + if (!stbi__readval(s,packet->channel,value)) return 0; + + for(i=0; ichannel,dest,value); + left -= count; + } + } + break; + + case 2: {//Mixed RLE + int left=width; + while (left>0) { + int count = stbi__get8(s), i; + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (mixed read count)"); + + if (count >= 128) { // Repeated + stbi_uc value[4]; + + if (count==128) + count = stbi__get16be(s); + else + count -= 127; + if (count > left) + return stbi__errpuc("bad file","scanline overrun"); + + if (!stbi__readval(s,packet->channel,value)) + return 0; + + for(i=0;ichannel,dest,value); + } else { // Raw + ++count; + if (count>left) return stbi__errpuc("bad file","scanline overrun"); + + for(i=0;ichannel,dest)) + return 0; + } + left-=count; + } + break; + } + } + } + } + + return result; +} + +static void *stbi__pic_load(stbi__context *s,int *px,int *py,int *comp,int req_comp, stbi__result_info *ri) +{ + stbi_uc *result; + int i, x,y, internal_comp; + STBI_NOTUSED(ri); + + if (!comp) comp = &internal_comp; + + for (i=0; i<92; ++i) + stbi__get8(s); + + x = stbi__get16be(s); + y = stbi__get16be(s); + + if (y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pic header)"); + if (!stbi__mad3sizes_valid(x, y, 4, 0)) return stbi__errpuc("too large", "PIC image too large to decode"); + + stbi__get32be(s); //skip `ratio' + stbi__get16be(s); //skip `fields' + stbi__get16be(s); //skip `pad' + + // intermediate buffer is RGBA + result = (stbi_uc *) stbi__malloc_mad3(x, y, 4, 0); + if (!result) return stbi__errpuc("outofmem", "Out of memory"); + memset(result, 0xff, x*y*4); + + if (!stbi__pic_load_core(s,x,y,comp, result)) { + STBI_FREE(result); + result=0; + } + *px = x; + *py = y; + if (req_comp == 0) req_comp = *comp; + result=stbi__convert_format(result,4,req_comp,x,y); + + return result; +} + +static int stbi__pic_test(stbi__context *s) +{ + int r = stbi__pic_test_core(s); + stbi__rewind(s); + return r; +} +#endif + +// ************************************************************************************************* +// GIF loader -- public domain by Jean-Marc Lienher -- simplified/shrunk by stb + +#ifndef STBI_NO_GIF +typedef struct +{ + stbi__int16 prefix; + stbi_uc first; + stbi_uc suffix; +} stbi__gif_lzw; + +typedef struct +{ + int w,h; + stbi_uc *out; // output buffer (always 4 components) + stbi_uc *background; // The current "background" as far as a gif is concerned + stbi_uc *history; + int flags, bgindex, ratio, transparent, eflags; + stbi_uc pal[256][4]; + stbi_uc lpal[256][4]; + stbi__gif_lzw codes[8192]; + stbi_uc *color_table; + int parse, step; + int lflags; + int start_x, start_y; + int max_x, max_y; + int cur_x, cur_y; + int line_size; + int delay; +} stbi__gif; + +static int stbi__gif_test_raw(stbi__context *s) +{ + int sz; + if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0; + sz = stbi__get8(s); + if (sz != '9' && sz != '7') return 0; + if (stbi__get8(s) != 'a') return 0; + return 1; +} + +static int stbi__gif_test(stbi__context *s) +{ + int r = stbi__gif_test_raw(s); + stbi__rewind(s); + return r; +} + +static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256][4], int num_entries, int transp) +{ + int i; + for (i=0; i < num_entries; ++i) { + pal[i][2] = stbi__get8(s); + pal[i][1] = stbi__get8(s); + pal[i][0] = stbi__get8(s); + pal[i][3] = transp == i ? 0 : 255; + } +} + +static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, int is_info) +{ + stbi_uc version; + if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') + return stbi__err("not GIF", "Corrupt GIF"); + + version = stbi__get8(s); + if (version != '7' && version != '9') return stbi__err("not GIF", "Corrupt GIF"); + if (stbi__get8(s) != 'a') return stbi__err("not GIF", "Corrupt GIF"); + + stbi__g_failure_reason = ""; + g->w = stbi__get16le(s); + g->h = stbi__get16le(s); + g->flags = stbi__get8(s); + g->bgindex = stbi__get8(s); + g->ratio = stbi__get8(s); + g->transparent = -1; + + if (g->w > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (g->h > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + + if (comp != 0) *comp = 4; // can't actually tell whether it's 3 or 4 until we parse the comments + + if (is_info) return 1; + + if (g->flags & 0x80) + stbi__gif_parse_colortable(s,g->pal, 2 << (g->flags & 7), -1); + + return 1; +} + +static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp) +{ + stbi__gif* g = (stbi__gif*) stbi__malloc(sizeof(stbi__gif)); + if (!g) return stbi__err("outofmem", "Out of memory"); + if (!stbi__gif_header(s, g, comp, 1)) { + STBI_FREE(g); + stbi__rewind( s ); + return 0; + } + if (x) *x = g->w; + if (y) *y = g->h; + STBI_FREE(g); + return 1; +} + +static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code) +{ + stbi_uc *p, *c; + int idx; + + // recurse to decode the prefixes, since the linked-list is backwards, + // and working backwards through an interleaved image would be nasty + if (g->codes[code].prefix >= 0) + stbi__out_gif_code(g, g->codes[code].prefix); + + if (g->cur_y >= g->max_y) return; + + idx = g->cur_x + g->cur_y; + p = &g->out[idx]; + g->history[idx / 4] = 1; + + c = &g->color_table[g->codes[code].suffix * 4]; + if (c[3] > 128) { // don't render transparent pixels; + p[0] = c[2]; + p[1] = c[1]; + p[2] = c[0]; + p[3] = c[3]; + } + g->cur_x += 4; + + if (g->cur_x >= g->max_x) { + g->cur_x = g->start_x; + g->cur_y += g->step; + + while (g->cur_y >= g->max_y && g->parse > 0) { + g->step = (1 << g->parse) * g->line_size; + g->cur_y = g->start_y + (g->step >> 1); + --g->parse; + } + } +} + +static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g) +{ + stbi_uc lzw_cs; + stbi__int32 len, init_code; + stbi__uint32 first; + stbi__int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear; + stbi__gif_lzw *p; + + lzw_cs = stbi__get8(s); + if (lzw_cs > 12) return NULL; + clear = 1 << lzw_cs; + first = 1; + codesize = lzw_cs + 1; + codemask = (1 << codesize) - 1; + bits = 0; + valid_bits = 0; + for (init_code = 0; init_code < clear; init_code++) { + g->codes[init_code].prefix = -1; + g->codes[init_code].first = (stbi_uc) init_code; + g->codes[init_code].suffix = (stbi_uc) init_code; + } + + // support no starting clear code + avail = clear+2; + oldcode = -1; + + len = 0; + for(;;) { + if (valid_bits < codesize) { + if (len == 0) { + len = stbi__get8(s); // start new block + if (len == 0) + return g->out; + } + --len; + bits |= (stbi__int32) stbi__get8(s) << valid_bits; + valid_bits += 8; + } else { + stbi__int32 code = bits & codemask; + bits >>= codesize; + valid_bits -= codesize; + // @OPTIMIZE: is there some way we can accelerate the non-clear path? + if (code == clear) { // clear code + codesize = lzw_cs + 1; + codemask = (1 << codesize) - 1; + avail = clear + 2; + oldcode = -1; + first = 0; + } else if (code == clear + 1) { // end of stream code + stbi__skip(s, len); + while ((len = stbi__get8(s)) > 0) + stbi__skip(s,len); + return g->out; + } else if (code <= avail) { + if (first) { + return stbi__errpuc("no clear code", "Corrupt GIF"); + } + + if (oldcode >= 0) { + p = &g->codes[avail++]; + if (avail > 8192) { + return stbi__errpuc("too many codes", "Corrupt GIF"); + } + + p->prefix = (stbi__int16) oldcode; + p->first = g->codes[oldcode].first; + p->suffix = (code == avail) ? p->first : g->codes[code].first; + } else if (code == avail) + return stbi__errpuc("illegal code in raster", "Corrupt GIF"); + + stbi__out_gif_code(g, (stbi__uint16) code); + + if ((avail & codemask) == 0 && avail <= 0x0FFF) { + codesize++; + codemask = (1 << codesize) - 1; + } + + oldcode = code; + } else { + return stbi__errpuc("illegal code in raster", "Corrupt GIF"); + } + } + } +} + +// this function is designed to support animated gifs, although stb_image doesn't support it +// two back is the image from two frames ago, used for a very specific disposal format +static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, int req_comp, stbi_uc *two_back) +{ + int dispose; + int first_frame; + int pi; + int pcount; + STBI_NOTUSED(req_comp); + + // on first frame, any non-written pixels get the background colour (non-transparent) + first_frame = 0; + if (g->out == 0) { + if (!stbi__gif_header(s, g, comp,0)) return 0; // stbi__g_failure_reason set by stbi__gif_header + if (!stbi__mad3sizes_valid(4, g->w, g->h, 0)) + return stbi__errpuc("too large", "GIF image is too large"); + pcount = g->w * g->h; + g->out = (stbi_uc *) stbi__malloc(4 * pcount); + g->background = (stbi_uc *) stbi__malloc(4 * pcount); + g->history = (stbi_uc *) stbi__malloc(pcount); + if (!g->out || !g->background || !g->history) + return stbi__errpuc("outofmem", "Out of memory"); + + // image is treated as "transparent" at the start - ie, nothing overwrites the current background; + // background colour is only used for pixels that are not rendered first frame, after that "background" + // color refers to the color that was there the previous frame. + memset(g->out, 0x00, 4 * pcount); + memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent) + memset(g->history, 0x00, pcount); // pixels that were affected previous frame + first_frame = 1; + } else { + // second frame - how do we dispose of the previous one? + dispose = (g->eflags & 0x1C) >> 2; + pcount = g->w * g->h; + + if ((dispose == 3) && (two_back == 0)) { + dispose = 2; // if I don't have an image to revert back to, default to the old background + } + + if (dispose == 3) { // use previous graphic + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi]) { + memcpy( &g->out[pi * 4], &two_back[pi * 4], 4 ); + } + } + } else if (dispose == 2) { + // restore what was changed last frame to background before that frame; + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi]) { + memcpy( &g->out[pi * 4], &g->background[pi * 4], 4 ); + } + } + } else { + // This is a non-disposal case eithe way, so just + // leave the pixels as is, and they will become the new background + // 1: do not dispose + // 0: not specified. + } + + // background is what out is after the undoing of the previou frame; + memcpy( g->background, g->out, 4 * g->w * g->h ); + } + + // clear my history; + memset( g->history, 0x00, g->w * g->h ); // pixels that were affected previous frame + + for (;;) { + int tag = stbi__get8(s); + switch (tag) { + case 0x2C: /* Image Descriptor */ + { + stbi__int32 x, y, w, h; + stbi_uc *o; + + x = stbi__get16le(s); + y = stbi__get16le(s); + w = stbi__get16le(s); + h = stbi__get16le(s); + if (((x + w) > (g->w)) || ((y + h) > (g->h))) + return stbi__errpuc("bad Image Descriptor", "Corrupt GIF"); + + g->line_size = g->w * 4; + g->start_x = x * 4; + g->start_y = y * g->line_size; + g->max_x = g->start_x + w * 4; + g->max_y = g->start_y + h * g->line_size; + g->cur_x = g->start_x; + g->cur_y = g->start_y; + + // if the width of the specified rectangle is 0, that means + // we may not see *any* pixels or the image is malformed; + // to make sure this is caught, move the current y down to + // max_y (which is what out_gif_code checks). + if (w == 0) + g->cur_y = g->max_y; + + g->lflags = stbi__get8(s); + + if (g->lflags & 0x40) { + g->step = 8 * g->line_size; // first interlaced spacing + g->parse = 3; + } else { + g->step = g->line_size; + g->parse = 0; + } + + if (g->lflags & 0x80) { + stbi__gif_parse_colortable(s,g->lpal, 2 << (g->lflags & 7), g->eflags & 0x01 ? g->transparent : -1); + g->color_table = (stbi_uc *) g->lpal; + } else if (g->flags & 0x80) { + g->color_table = (stbi_uc *) g->pal; + } else + return stbi__errpuc("missing color table", "Corrupt GIF"); + + o = stbi__process_gif_raster(s, g); + if (!o) return NULL; + + // if this was the first frame, + pcount = g->w * g->h; + if (first_frame && (g->bgindex > 0)) { + // if first frame, any pixel not drawn to gets the background color + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi] == 0) { + g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be; + memcpy( &g->out[pi * 4], &g->pal[g->bgindex], 4 ); + } + } + } + + return o; + } + + case 0x21: // Comment Extension. + { + int len; + int ext = stbi__get8(s); + if (ext == 0xF9) { // Graphic Control Extension. + len = stbi__get8(s); + if (len == 4) { + g->eflags = stbi__get8(s); + g->delay = 10 * stbi__get16le(s); // delay - 1/100th of a second, saving as 1/1000ths. + + // unset old transparent + if (g->transparent >= 0) { + g->pal[g->transparent][3] = 255; + } + if (g->eflags & 0x01) { + g->transparent = stbi__get8(s); + if (g->transparent >= 0) { + g->pal[g->transparent][3] = 0; + } + } else { + // don't need transparent + stbi__skip(s, 1); + g->transparent = -1; + } + } else { + stbi__skip(s, len); + break; + } + } + while ((len = stbi__get8(s)) != 0) { + stbi__skip(s, len); + } + break; + } + + case 0x3B: // gif stream termination code + return (stbi_uc *) s; // using '1' causes warning on some compilers + + default: + return stbi__errpuc("unknown code", "Corrupt GIF"); + } + } +} + +static void *stbi__load_gif_main_outofmem(stbi__gif *g, stbi_uc *out, int **delays) +{ + STBI_FREE(g->out); + STBI_FREE(g->history); + STBI_FREE(g->background); + + if (out) STBI_FREE(out); + if (delays && *delays) STBI_FREE(*delays); + return stbi__errpuc("outofmem", "Out of memory"); +} + +static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp) +{ + if (stbi__gif_test(s)) { + int layers = 0; + stbi_uc *u = 0; + stbi_uc *out = 0; + stbi_uc *two_back = 0; + stbi__gif g; + int stride; + int out_size = 0; + int delays_size = 0; + + STBI_NOTUSED(out_size); + STBI_NOTUSED(delays_size); + + memset(&g, 0, sizeof(g)); + if (delays) { + *delays = 0; + } + + do { + u = stbi__gif_load_next(s, &g, comp, req_comp, two_back); + if (u == (stbi_uc *) s) u = 0; // end of animated gif marker + + if (u) { + *x = g.w; + *y = g.h; + ++layers; + stride = g.w * g.h * 4; + + if (out) { + void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride ); + if (!tmp) + return stbi__load_gif_main_outofmem(&g, out, delays); + else { + out = (stbi_uc*) tmp; + out_size = layers * stride; + } + + if (delays) { + int *new_delays = (int*) STBI_REALLOC_SIZED( *delays, delays_size, sizeof(int) * layers ); + if (!new_delays) + return stbi__load_gif_main_outofmem(&g, out, delays); + *delays = new_delays; + delays_size = layers * sizeof(int); + } + } else { + out = (stbi_uc*)stbi__malloc( layers * stride ); + if (!out) + return stbi__load_gif_main_outofmem(&g, out, delays); + out_size = layers * stride; + if (delays) { + *delays = (int*) stbi__malloc( layers * sizeof(int) ); + if (!*delays) + return stbi__load_gif_main_outofmem(&g, out, delays); + delays_size = layers * sizeof(int); + } + } + memcpy( out + ((layers - 1) * stride), u, stride ); + if (layers >= 2) { + two_back = out - 2 * stride; + } + + if (delays) { + (*delays)[layers - 1U] = g.delay; + } + } + } while (u != 0); + + // free temp buffer; + STBI_FREE(g.out); + STBI_FREE(g.history); + STBI_FREE(g.background); + + // do the final conversion after loading everything; + if (req_comp && req_comp != 4) + out = stbi__convert_format(out, 4, req_comp, layers * g.w, g.h); + + *z = layers; + return out; + } else { + return stbi__errpuc("not GIF", "Image was not as a gif type."); + } +} + +static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *u = 0; + stbi__gif g; + memset(&g, 0, sizeof(g)); + STBI_NOTUSED(ri); + + u = stbi__gif_load_next(s, &g, comp, req_comp, 0); + if (u == (stbi_uc *) s) u = 0; // end of animated gif marker + if (u) { + *x = g.w; + *y = g.h; + + // moved conversion to after successful load so that the same + // can be done for multiple frames. + if (req_comp && req_comp != 4) + u = stbi__convert_format(u, 4, req_comp, g.w, g.h); + } else if (g.out) { + // if there was an error and we allocated an image buffer, free it! + STBI_FREE(g.out); + } + + // free buffers needed for multiple frame loading; + STBI_FREE(g.history); + STBI_FREE(g.background); + + return u; +} + +static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp) +{ + return stbi__gif_info_raw(s,x,y,comp); +} +#endif + +// ************************************************************************************************* +// Radiance RGBE HDR loader +// originally by Nicolas Schulz +#ifndef STBI_NO_HDR +static int stbi__hdr_test_core(stbi__context *s, const char *signature) +{ + int i; + for (i=0; signature[i]; ++i) + if (stbi__get8(s) != signature[i]) + return 0; + stbi__rewind(s); + return 1; +} + +static int stbi__hdr_test(stbi__context* s) +{ + int r = stbi__hdr_test_core(s, "#?RADIANCE\n"); + stbi__rewind(s); + if(!r) { + r = stbi__hdr_test_core(s, "#?RGBE\n"); + stbi__rewind(s); + } + return r; +} + +#define STBI__HDR_BUFLEN 1024 +static char *stbi__hdr_gettoken(stbi__context *z, char *buffer) +{ + int len=0; + char c = '\0'; + + c = (char) stbi__get8(z); + + while (!stbi__at_eof(z) && c != '\n') { + buffer[len++] = c; + if (len == STBI__HDR_BUFLEN-1) { + // flush to end of line + while (!stbi__at_eof(z) && stbi__get8(z) != '\n') + ; + break; + } + c = (char) stbi__get8(z); + } + + buffer[len] = 0; + return buffer; +} + +static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp) +{ + if ( input[3] != 0 ) { + float f1; + // Exponent + f1 = (float) ldexp(1.0f, input[3] - (int)(128 + 8)); + if (req_comp <= 2) + output[0] = (input[0] + input[1] + input[2]) * f1 / 3; + else { + output[0] = input[0] * f1; + output[1] = input[1] * f1; + output[2] = input[2] * f1; + } + if (req_comp == 2) output[1] = 1; + if (req_comp == 4) output[3] = 1; + } else { + switch (req_comp) { + case 4: output[3] = 1; /* fallthrough */ + case 3: output[0] = output[1] = output[2] = 0; + break; + case 2: output[1] = 1; /* fallthrough */ + case 1: output[0] = 0; + break; + } + } +} + +static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + char buffer[STBI__HDR_BUFLEN]; + char *token; + int valid = 0; + int width, height; + stbi_uc *scanline; + float *hdr_data; + int len; + unsigned char count, value; + int i, j, k, c1,c2, z; + const char *headerToken; + STBI_NOTUSED(ri); + + // Check identifier + headerToken = stbi__hdr_gettoken(s,buffer); + if (strcmp(headerToken, "#?RADIANCE") != 0 && strcmp(headerToken, "#?RGBE") != 0) + return stbi__errpf("not HDR", "Corrupt HDR image"); + + // Parse header + for(;;) { + token = stbi__hdr_gettoken(s,buffer); + if (token[0] == 0) break; + if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; + } + + if (!valid) return stbi__errpf("unsupported format", "Unsupported HDR format"); + + // Parse width and height + // can't use sscanf() if we're not using stdio! + token = stbi__hdr_gettoken(s,buffer); + if (strncmp(token, "-Y ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); + token += 3; + height = (int) strtol(token, &token, 10); + while (*token == ' ') ++token; + if (strncmp(token, "+X ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); + token += 3; + width = (int) strtol(token, NULL, 10); + + if (height > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); + if (width > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); + + *x = width; + *y = height; + + if (comp) *comp = 3; + if (req_comp == 0) req_comp = 3; + + if (!stbi__mad4sizes_valid(width, height, req_comp, sizeof(float), 0)) + return stbi__errpf("too large", "HDR image is too large"); + + // Read data + hdr_data = (float *) stbi__malloc_mad4(width, height, req_comp, sizeof(float), 0); + if (!hdr_data) + return stbi__errpf("outofmem", "Out of memory"); + + // Load image data + // image data is stored as some number of sca + if ( width < 8 || width >= 32768) { + // Read flat data + for (j=0; j < height; ++j) { + for (i=0; i < width; ++i) { + stbi_uc rgbe[4]; + main_decode_loop: + stbi__getn(s, rgbe, 4); + stbi__hdr_convert(hdr_data + j * width * req_comp + i * req_comp, rgbe, req_comp); + } + } + } else { + // Read RLE-encoded data + scanline = NULL; + + for (j = 0; j < height; ++j) { + c1 = stbi__get8(s); + c2 = stbi__get8(s); + len = stbi__get8(s); + if (c1 != 2 || c2 != 2 || (len & 0x80)) { + // not run-length encoded, so we have to actually use THIS data as a decoded + // pixel (note this can't be a valid pixel--one of RGB must be >= 128) + stbi_uc rgbe[4]; + rgbe[0] = (stbi_uc) c1; + rgbe[1] = (stbi_uc) c2; + rgbe[2] = (stbi_uc) len; + rgbe[3] = (stbi_uc) stbi__get8(s); + stbi__hdr_convert(hdr_data, rgbe, req_comp); + i = 1; + j = 0; + STBI_FREE(scanline); + goto main_decode_loop; // yes, this makes no sense + } + len <<= 8; + len |= stbi__get8(s); + if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded scanline length", "corrupt HDR"); } + if (scanline == NULL) { + scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0); + if (!scanline) { + STBI_FREE(hdr_data); + return stbi__errpf("outofmem", "Out of memory"); + } + } + + for (k = 0; k < 4; ++k) { + int nleft; + i = 0; + while ((nleft = width - i) > 0) { + count = stbi__get8(s); + if (count > 128) { + // Run + value = stbi__get8(s); + count -= 128; + if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } + for (z = 0; z < count; ++z) + scanline[i++ * 4 + k] = value; + } else { + // Dump + if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } + for (z = 0; z < count; ++z) + scanline[i++ * 4 + k] = stbi__get8(s); + } + } + } + for (i=0; i < width; ++i) + stbi__hdr_convert(hdr_data+(j*width + i)*req_comp, scanline + i*4, req_comp); + } + if (scanline) + STBI_FREE(scanline); + } + + return hdr_data; +} + +static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp) +{ + char buffer[STBI__HDR_BUFLEN]; + char *token; + int valid = 0; + int dummy; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + if (stbi__hdr_test(s) == 0) { + stbi__rewind( s ); + return 0; + } + + for(;;) { + token = stbi__hdr_gettoken(s,buffer); + if (token[0] == 0) break; + if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; + } + + if (!valid) { + stbi__rewind( s ); + return 0; + } + token = stbi__hdr_gettoken(s,buffer); + if (strncmp(token, "-Y ", 3)) { + stbi__rewind( s ); + return 0; + } + token += 3; + *y = (int) strtol(token, &token, 10); + while (*token == ' ') ++token; + if (strncmp(token, "+X ", 3)) { + stbi__rewind( s ); + return 0; + } + token += 3; + *x = (int) strtol(token, NULL, 10); + *comp = 3; + return 1; +} +#endif // STBI_NO_HDR + +#ifndef STBI_NO_BMP +static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp) +{ + void *p; + stbi__bmp_data info; + + info.all_a = 255; + p = stbi__bmp_parse_header(s, &info); + if (p == NULL) { + stbi__rewind( s ); + return 0; + } + if (x) *x = s->img_x; + if (y) *y = s->img_y; + if (comp) { + if (info.bpp == 24 && info.ma == 0xff000000) + *comp = 3; + else + *comp = info.ma ? 4 : 3; + } + return 1; +} +#endif + +#ifndef STBI_NO_PSD +static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp) +{ + int channelCount, dummy, depth; + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + if (stbi__get32be(s) != 0x38425053) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 1) { + stbi__rewind( s ); + return 0; + } + stbi__skip(s, 6); + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) { + stbi__rewind( s ); + return 0; + } + *y = stbi__get32be(s); + *x = stbi__get32be(s); + depth = stbi__get16be(s); + if (depth != 8 && depth != 16) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 3) { + stbi__rewind( s ); + return 0; + } + *comp = 4; + return 1; +} + +static int stbi__psd_is16(stbi__context *s) +{ + int channelCount, depth; + if (stbi__get32be(s) != 0x38425053) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 1) { + stbi__rewind( s ); + return 0; + } + stbi__skip(s, 6); + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) { + stbi__rewind( s ); + return 0; + } + STBI_NOTUSED(stbi__get32be(s)); + STBI_NOTUSED(stbi__get32be(s)); + depth = stbi__get16be(s); + if (depth != 16) { + stbi__rewind( s ); + return 0; + } + return 1; +} +#endif + +#ifndef STBI_NO_PIC +static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp) +{ + int act_comp=0,num_packets=0,chained,dummy; + stbi__pic_packet packets[10]; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) { + stbi__rewind(s); + return 0; + } + + stbi__skip(s, 88); + + *x = stbi__get16be(s); + *y = stbi__get16be(s); + if (stbi__at_eof(s)) { + stbi__rewind( s); + return 0; + } + if ( (*x) != 0 && (1 << 28) / (*x) < (*y)) { + stbi__rewind( s ); + return 0; + } + + stbi__skip(s, 8); + + do { + stbi__pic_packet *packet; + + if (num_packets==sizeof(packets)/sizeof(packets[0])) + return 0; + + packet = &packets[num_packets++]; + chained = stbi__get8(s); + packet->size = stbi__get8(s); + packet->type = stbi__get8(s); + packet->channel = stbi__get8(s); + act_comp |= packet->channel; + + if (stbi__at_eof(s)) { + stbi__rewind( s ); + return 0; + } + if (packet->size != 8) { + stbi__rewind( s ); + return 0; + } + } while (chained); + + *comp = (act_comp & 0x10 ? 4 : 3); + + return 1; +} +#endif + +// ************************************************************************************************* +// Portable Gray Map and Portable Pixel Map loader +// by Ken Miller +// +// PGM: http://netpbm.sourceforge.net/doc/pgm.html +// PPM: http://netpbm.sourceforge.net/doc/ppm.html +// +// Known limitations: +// Does not support comments in the header section +// Does not support ASCII image data (formats P2 and P3) + +#ifndef STBI_NO_PNM + +static int stbi__pnm_test(stbi__context *s) +{ + char p, t; + p = (char) stbi__get8(s); + t = (char) stbi__get8(s); + if (p != 'P' || (t != '5' && t != '6')) { + stbi__rewind( s ); + return 0; + } + return 1; +} + +static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *out; + STBI_NOTUSED(ri); + + ri->bits_per_channel = stbi__pnm_info(s, (int *)&s->img_x, (int *)&s->img_y, (int *)&s->img_n); + if (ri->bits_per_channel == 0) + return 0; + + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + *x = s->img_x; + *y = s->img_y; + if (comp) *comp = s->img_n; + + if (!stbi__mad4sizes_valid(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0)) + return stbi__errpuc("too large", "PNM too large"); + + out = (stbi_uc *) stbi__malloc_mad4(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0); + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + if (!stbi__getn(s, out, s->img_n * s->img_x * s->img_y * (ri->bits_per_channel / 8))) { + STBI_FREE(out); + return stbi__errpuc("bad PNM", "PNM file truncated"); + } + + if (req_comp && req_comp != s->img_n) { + if (ri->bits_per_channel == 16) { + out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, s->img_n, req_comp, s->img_x, s->img_y); + } else { + out = stbi__convert_format(out, s->img_n, req_comp, s->img_x, s->img_y); + } + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + return out; +} + +static int stbi__pnm_isspace(char c) +{ + return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'; +} + +static void stbi__pnm_skip_whitespace(stbi__context *s, char *c) +{ + for (;;) { + while (!stbi__at_eof(s) && stbi__pnm_isspace(*c)) + *c = (char) stbi__get8(s); + + if (stbi__at_eof(s) || *c != '#') + break; + + while (!stbi__at_eof(s) && *c != '\n' && *c != '\r' ) + *c = (char) stbi__get8(s); + } +} + +static int stbi__pnm_isdigit(char c) +{ + return c >= '0' && c <= '9'; +} + +static int stbi__pnm_getinteger(stbi__context *s, char *c) +{ + int value = 0; + + while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) { + value = value*10 + (*c - '0'); + *c = (char) stbi__get8(s); + if((value > 214748364) || (value == 214748364 && *c > '7')) + return stbi__err("integer parse overflow", "Parsing an integer in the PPM header overflowed a 32-bit int"); + } + + return value; +} + +static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp) +{ + int maxv, dummy; + char c, p, t; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + stbi__rewind(s); + + // Get identifier + p = (char) stbi__get8(s); + t = (char) stbi__get8(s); + if (p != 'P' || (t != '5' && t != '6')) { + stbi__rewind(s); + return 0; + } + + *comp = (t == '6') ? 3 : 1; // '5' is 1-component .pgm; '6' is 3-component .ppm + + c = (char) stbi__get8(s); + stbi__pnm_skip_whitespace(s, &c); + + *x = stbi__pnm_getinteger(s, &c); // read width + if(*x == 0) + return stbi__err("invalid width", "PPM image header had zero or overflowing width"); + stbi__pnm_skip_whitespace(s, &c); + + *y = stbi__pnm_getinteger(s, &c); // read height + if (*y == 0) + return stbi__err("invalid width", "PPM image header had zero or overflowing width"); + stbi__pnm_skip_whitespace(s, &c); + + maxv = stbi__pnm_getinteger(s, &c); // read max value + if (maxv > 65535) + return stbi__err("max value > 65535", "PPM image supports only 8-bit and 16-bit images"); + else if (maxv > 255) + return 16; + else + return 8; +} + +static int stbi__pnm_is16(stbi__context *s) +{ + if (stbi__pnm_info(s, NULL, NULL, NULL) == 16) + return 1; + return 0; +} +#endif + +static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp) +{ + #ifndef STBI_NO_JPEG + if (stbi__jpeg_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PNG + if (stbi__png_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_GIF + if (stbi__gif_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_BMP + if (stbi__bmp_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PSD + if (stbi__psd_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PIC + if (stbi__pic_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PNM + if (stbi__pnm_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_HDR + if (stbi__hdr_info(s, x, y, comp)) return 1; + #endif + + // test tga last because it's a crappy test! + #ifndef STBI_NO_TGA + if (stbi__tga_info(s, x, y, comp)) + return 1; + #endif + return stbi__err("unknown image type", "Image not of any known type, or corrupt"); +} + +static int stbi__is_16_main(stbi__context *s) +{ + #ifndef STBI_NO_PNG + if (stbi__png_is16(s)) return 1; + #endif + + #ifndef STBI_NO_PSD + if (stbi__psd_is16(s)) return 1; + #endif + + #ifndef STBI_NO_PNM + if (stbi__pnm_is16(s)) return 1; + #endif + return 0; +} + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result; + if (!f) return stbi__err("can't fopen", "Unable to open file"); + result = stbi_info_from_file(f, x, y, comp); + fclose(f); + return result; +} + +STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp) +{ + int r; + stbi__context s; + long pos = ftell(f); + stbi__start_file(&s, f); + r = stbi__info_main(&s,x,y,comp); + fseek(f,pos,SEEK_SET); + return r; +} + +STBIDEF int stbi_is_16_bit(char const *filename) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result; + if (!f) return stbi__err("can't fopen", "Unable to open file"); + result = stbi_is_16_bit_from_file(f); + fclose(f); + return result; +} + +STBIDEF int stbi_is_16_bit_from_file(FILE *f) +{ + int r; + stbi__context s; + long pos = ftell(f); + stbi__start_file(&s, f); + r = stbi__is_16_main(&s); + fseek(f,pos,SEEK_SET); + return r; +} +#endif // !STBI_NO_STDIO + +STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__info_main(&s,x,y,comp); +} + +STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); + return stbi__info_main(&s,x,y,comp); +} + +STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__is_16_main(&s); +} + +STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); + return stbi__is_16_main(&s); +} + +#endif // STB_IMAGE_IMPLEMENTATION + +/* + revision history: + 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs + 2.19 (2018-02-11) fix warning + 2.18 (2018-01-30) fix warnings + 2.17 (2018-01-29) change sbti__shiftsigned to avoid clang -O2 bug + 1-bit BMP + *_is_16_bit api + avoid warnings + 2.16 (2017-07-23) all functions have 16-bit variants; + STBI_NO_STDIO works again; + compilation fixes; + fix rounding in unpremultiply; + optimize vertical flip; + disable raw_len validation; + documentation fixes + 2.15 (2017-03-18) fix png-1,2,4 bug; now all Imagenet JPGs decode; + warning fixes; disable run-time SSE detection on gcc; + uniform handling of optional "return" values; + thread-safe initialization of zlib tables + 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs + 2.13 (2016-11-29) add 16-bit API, only supported for PNG right now + 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes + 2.11 (2016-04-02) allocate large structures on the stack + remove white matting for transparent PSD + fix reported channel count for PNG & BMP + re-enable SSE2 in non-gcc 64-bit + support RGB-formatted JPEG + read 16-bit PNGs (only as 8-bit) + 2.10 (2016-01-22) avoid warning introduced in 2.09 by STBI_REALLOC_SIZED + 2.09 (2016-01-16) allow comments in PNM files + 16-bit-per-pixel TGA (not bit-per-component) + info() for TGA could break due to .hdr handling + info() for BMP to shares code instead of sloppy parse + can use STBI_REALLOC_SIZED if allocator doesn't support realloc + code cleanup + 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA + 2.07 (2015-09-13) fix compiler warnings + partial animated GIF support + limited 16-bpc PSD support + #ifdef unused functions + bug with < 92 byte PIC,PNM,HDR,TGA + 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value + 2.05 (2015-04-19) fix bug in progressive JPEG handling, fix warning + 2.04 (2015-04-15) try to re-enable SIMD on MinGW 64-bit + 2.03 (2015-04-12) extra corruption checking (mmozeiko) + stbi_set_flip_vertically_on_load (nguillemot) + fix NEON support; fix mingw support + 2.02 (2015-01-19) fix incorrect assert, fix warning + 2.01 (2015-01-17) fix various warnings; suppress SIMD on gcc 32-bit without -msse2 + 2.00b (2014-12-25) fix STBI_MALLOC in progressive JPEG + 2.00 (2014-12-25) optimize JPG, including x86 SSE2 & NEON SIMD (ryg) + progressive JPEG (stb) + PGM/PPM support (Ken Miller) + STBI_MALLOC,STBI_REALLOC,STBI_FREE + GIF bugfix -- seemingly never worked + STBI_NO_*, STBI_ONLY_* + 1.48 (2014-12-14) fix incorrectly-named assert() + 1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb) + optimize PNG (ryg) + fix bug in interlaced PNG with user-specified channel count (stb) + 1.46 (2014-08-26) + fix broken tRNS chunk (colorkey-style transparency) in non-paletted PNG + 1.45 (2014-08-16) + fix MSVC-ARM internal compiler error by wrapping malloc + 1.44 (2014-08-07) + various warning fixes from Ronny Chevalier + 1.43 (2014-07-15) + fix MSVC-only compiler problem in code changed in 1.42 + 1.42 (2014-07-09) + don't define _CRT_SECURE_NO_WARNINGS (affects user code) + fixes to stbi__cleanup_jpeg path + added STBI_ASSERT to avoid requiring assert.h + 1.41 (2014-06-25) + fix search&replace from 1.36 that messed up comments/error messages + 1.40 (2014-06-22) + fix gcc struct-initialization warning + 1.39 (2014-06-15) + fix to TGA optimization when req_comp != number of components in TGA; + fix to GIF loading because BMP wasn't rewinding (whoops, no GIFs in my test suite) + add support for BMP version 5 (more ignored fields) + 1.38 (2014-06-06) + suppress MSVC warnings on integer casts truncating values + fix accidental rename of 'skip' field of I/O + 1.37 (2014-06-04) + remove duplicate typedef + 1.36 (2014-06-03) + convert to header file single-file library + if de-iphone isn't set, load iphone images color-swapped instead of returning NULL + 1.35 (2014-05-27) + various warnings + fix broken STBI_SIMD path + fix bug where stbi_load_from_file no longer left file pointer in correct place + fix broken non-easy path for 32-bit BMP (possibly never used) + TGA optimization by Arseny Kapoulkine + 1.34 (unknown) + use STBI_NOTUSED in stbi__resample_row_generic(), fix one more leak in tga failure case + 1.33 (2011-07-14) + make stbi_is_hdr work in STBI_NO_HDR (as specified), minor compiler-friendly improvements + 1.32 (2011-07-13) + support for "info" function for all supported filetypes (SpartanJ) + 1.31 (2011-06-20) + a few more leak fixes, bug in PNG handling (SpartanJ) + 1.30 (2011-06-11) + added ability to load files via callbacks to accomidate custom input streams (Ben Wenger) + removed deprecated format-specific test/load functions + removed support for installable file formats (stbi_loader) -- would have been broken for IO callbacks anyway + error cases in bmp and tga give messages and don't leak (Raymond Barbiero, grisha) + fix inefficiency in decoding 32-bit BMP (David Woo) + 1.29 (2010-08-16) + various warning fixes from Aurelien Pocheville + 1.28 (2010-08-01) + fix bug in GIF palette transparency (SpartanJ) + 1.27 (2010-08-01) + cast-to-stbi_uc to fix warnings + 1.26 (2010-07-24) + fix bug in file buffering for PNG reported by SpartanJ + 1.25 (2010-07-17) + refix trans_data warning (Won Chun) + 1.24 (2010-07-12) + perf improvements reading from files on platforms with lock-heavy fgetc() + minor perf improvements for jpeg + deprecated type-specific functions so we'll get feedback if they're needed + attempt to fix trans_data warning (Won Chun) + 1.23 fixed bug in iPhone support + 1.22 (2010-07-10) + removed image *writing* support + stbi_info support from Jetro Lauha + GIF support from Jean-Marc Lienher + iPhone PNG-extensions from James Brown + warning-fixes from Nicolas Schulz and Janez Zemva (i.stbi__err. Janez (U+017D)emva) + 1.21 fix use of 'stbi_uc' in header (reported by jon blow) + 1.20 added support for Softimage PIC, by Tom Seddon + 1.19 bug in interlaced PNG corruption check (found by ryg) + 1.18 (2008-08-02) + fix a threading bug (local mutable static) + 1.17 support interlaced PNG + 1.16 major bugfix - stbi__convert_format converted one too many pixels + 1.15 initialize some fields for thread safety + 1.14 fix threadsafe conversion bug + header-file-only version (#define STBI_HEADER_FILE_ONLY before including) + 1.13 threadsafe + 1.12 const qualifiers in the API + 1.11 Support installable IDCT, colorspace conversion routines + 1.10 Fixes for 64-bit (don't use "unsigned long") + optimized upsampling by Fabian "ryg" Giesen + 1.09 Fix format-conversion for PSD code (bad global variables!) + 1.08 Thatcher Ulrich's PSD code integrated by Nicolas Schulz + 1.07 attempt to fix C++ warning/errors again + 1.06 attempt to fix C++ warning/errors again + 1.05 fix TGA loading to return correct *comp and use good luminance calc + 1.04 default float alpha is 1, not 255; use 'void *' for stbi_image_free + 1.03 bugfixes to STBI_NO_STDIO, STBI_NO_HDR + 1.02 support for (subset of) HDR files, float interface for preferred access to them + 1.01 fix bug: possible bug in handling right-side up bmps... not sure + fix bug: the stbi__bmp_load() and stbi__tga_load() functions didn't work at all + 1.00 interface to zlib that skips zlib header + 0.99 correct handling of alpha in palette + 0.98 TGA loader by lonesock; dynamically add loaders (untested) + 0.97 jpeg errors on too large a file; also catch another malloc failure + 0.96 fix detection of invalid v value - particleman@mollyrocket forum + 0.95 during header scan, seek to markers in case of padding + 0.94 STBI_NO_STDIO to disable stdio usage; rename all #defines the same + 0.93 handle jpegtran output; verbose errors + 0.92 read 4,8,16,24,32-bit BMP files of several formats + 0.91 output 24-bit Windows 3.0 BMP files + 0.90 fix a few more warnings; bump version number to approach 1.0 + 0.61 bugfixes due to Marc LeBlanc, Christopher Lloyd + 0.60 fix compiling as c++ + 0.59 fix warnings: merge Dave Moore's -Wall fixes + 0.58 fix bug: zlib uncompressed mode len/nlen was wrong endian + 0.57 fix bug: jpg last huffman symbol before marker was >9 bits but less than 16 available + 0.56 fix bug: zlib uncompressed mode len vs. nlen + 0.55 fix bug: restart_interval not initialized to 0 + 0.54 allow NULL for 'int *comp' + 0.53 fix bug in png 3->4; speedup png decoding + 0.52 png handles req_comp=3,4 directly; minor cleanup; jpeg comments + 0.51 obey req_comp requests, 1-component jpegs return as 1-component, + on 'test' only check type, not whether we support this variant + 0.50 (2006-11-19) + first released version +*/ + + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image_write.h b/application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image_write.h new file mode 100644 index 000000000..e4b32ed1b --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/common/stb_image_write.h @@ -0,0 +1,1724 @@ +/* stb_image_write - v1.16 - public domain - http://nothings.org/stb + writes out PNG/BMP/TGA/JPEG/HDR images to C stdio - Sean Barrett 2010-2015 + no warranty implied; use at your own risk + + Before #including, + + #define STB_IMAGE_WRITE_IMPLEMENTATION + + in the file that you want to have the implementation. + + Will probably not work correctly with strict-aliasing optimizations. + +ABOUT: + + This header file is a library for writing images to C stdio or a callback. + + The PNG output is not optimal; it is 20-50% larger than the file + written by a decent optimizing implementation; though providing a custom + zlib compress function (see STBIW_ZLIB_COMPRESS) can mitigate that. + This library is designed for source code compactness and simplicity, + not optimal image file size or run-time performance. + +BUILDING: + + You can #define STBIW_ASSERT(x) before the #include to avoid using assert.h. + You can #define STBIW_MALLOC(), STBIW_REALLOC(), and STBIW_FREE() to replace + malloc,realloc,free. + You can #define STBIW_MEMMOVE() to replace memmove() + You can #define STBIW_ZLIB_COMPRESS to use a custom zlib-style compress function + for PNG compression (instead of the builtin one), it must have the following signature: + unsigned char * my_compress(unsigned char *data, int data_len, int *out_len, int quality); + The returned data will be freed with STBIW_FREE() (free() by default), + so it must be heap allocated with STBIW_MALLOC() (malloc() by default), + +UNICODE: + + If compiling for Windows and you wish to use Unicode filenames, compile + with + #define STBIW_WINDOWS_UTF8 + and pass utf8-encoded filenames. Call stbiw_convert_wchar_to_utf8 to convert + Windows wchar_t filenames to utf8. + +USAGE: + + There are five functions, one for each image file format: + + int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes); + int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data); + int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data); + int stbi_write_jpg(char const *filename, int w, int h, int comp, const void *data, int quality); + int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data); + + void stbi_flip_vertically_on_write(int flag); // flag is non-zero to flip data vertically + + There are also five equivalent functions that use an arbitrary write function. You are + expected to open/close your file-equivalent before and after calling these: + + int stbi_write_png_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data, int stride_in_bytes); + int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); + int stbi_write_tga_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); + int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const float *data); + int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality); + + where the callback is: + void stbi_write_func(void *context, void *data, int size); + + You can configure it with these global variables: + int stbi_write_tga_with_rle; // defaults to true; set to 0 to disable RLE + int stbi_write_png_compression_level; // defaults to 8; set to higher for more compression + int stbi_write_force_png_filter; // defaults to -1; set to 0..5 to force a filter mode + + + You can define STBI_WRITE_NO_STDIO to disable the file variant of these + functions, so the library will not use stdio.h at all. However, this will + also disable HDR writing, because it requires stdio for formatted output. + + Each function returns 0 on failure and non-0 on success. + + The functions create an image file defined by the parameters. The image + is a rectangle of pixels stored from left-to-right, top-to-bottom. + Each pixel contains 'comp' channels of data stored interleaved with 8-bits + per channel, in the following order: 1=Y, 2=YA, 3=RGB, 4=RGBA. (Y is + monochrome color.) The rectangle is 'w' pixels wide and 'h' pixels tall. + The *data pointer points to the first byte of the top-left-most pixel. + For PNG, "stride_in_bytes" is the distance in bytes from the first byte of + a row of pixels to the first byte of the next row of pixels. + + PNG creates output files with the same number of components as the input. + The BMP format expands Y to RGB in the file format and does not + output alpha. + + PNG supports writing rectangles of data even when the bytes storing rows of + data are not consecutive in memory (e.g. sub-rectangles of a larger image), + by supplying the stride between the beginning of adjacent rows. The other + formats do not. (Thus you cannot write a native-format BMP through the BMP + writer, both because it is in BGR order and because it may have padding + at the end of the line.) + + PNG allows you to set the deflate compression level by setting the global + variable 'stbi_write_png_compression_level' (it defaults to 8). + + HDR expects linear float data. Since the format is always 32-bit rgb(e) + data, alpha (if provided) is discarded, and for monochrome data it is + replicated across all three channels. + + TGA supports RLE or non-RLE compressed data. To use non-RLE-compressed + data, set the global variable 'stbi_write_tga_with_rle' to 0. + + JPEG does ignore alpha channels in input data; quality is between 1 and 100. + Higher quality looks better but results in a bigger image. + JPEG baseline (no JPEG progressive). + +CREDITS: + + + Sean Barrett - PNG/BMP/TGA + Baldur Karlsson - HDR + Jean-Sebastien Guay - TGA monochrome + Tim Kelsey - misc enhancements + Alan Hickman - TGA RLE + Emmanuel Julien - initial file IO callback implementation + Jon Olick - original jo_jpeg.cpp code + Daniel Gibson - integrate JPEG, allow external zlib + Aarni Koskela - allow choosing PNG filter + + bugfixes: + github:Chribba + Guillaume Chereau + github:jry2 + github:romigrou + Sergio Gonzalez + Jonas Karlsson + Filip Wasil + Thatcher Ulrich + github:poppolopoppo + Patrick Boettcher + github:xeekworx + Cap Petschulat + Simon Rodriguez + Ivan Tikhonov + github:ignotion + Adam Schackart + Andrew Kensler + +LICENSE + + See end of file for license information. + +*/ + +#ifndef INCLUDE_STB_IMAGE_WRITE_H +#define INCLUDE_STB_IMAGE_WRITE_H + +#include + +// if STB_IMAGE_WRITE_STATIC causes problems, try defining STBIWDEF to 'inline' or 'static inline' +#ifndef STBIWDEF +#ifdef STB_IMAGE_WRITE_STATIC +#define STBIWDEF static +#else +#ifdef __cplusplus +#define STBIWDEF extern "C" +#else +#define STBIWDEF extern +#endif +#endif +#endif + +#ifndef STB_IMAGE_WRITE_STATIC // C++ forbids static forward declarations +STBIWDEF int stbi_write_tga_with_rle; +STBIWDEF int stbi_write_png_compression_level; +STBIWDEF int stbi_write_force_png_filter; +#endif + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes); +STBIWDEF int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data); +STBIWDEF int stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality); + +#ifdef STBIW_WINDOWS_UTF8 +STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); +#endif +#endif + +typedef void stbi_write_func(void *context, void *data, int size); + +STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data, int stride_in_bytes); +STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_tga_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const float *data); +STBIWDEF int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality); + +STBIWDEF void stbi_flip_vertically_on_write(int flip_boolean); + +#endif//INCLUDE_STB_IMAGE_WRITE_H + +#ifdef STB_IMAGE_WRITE_IMPLEMENTATION + +#ifdef _WIN32 + #ifndef _CRT_SECURE_NO_WARNINGS + #define _CRT_SECURE_NO_WARNINGS + #endif + #ifndef _CRT_NONSTDC_NO_DEPRECATE + #define _CRT_NONSTDC_NO_DEPRECATE + #endif +#endif + +#ifndef STBI_WRITE_NO_STDIO +#include +#endif // STBI_WRITE_NO_STDIO + +#include +#include +#include +#include + +#if defined(STBIW_MALLOC) && defined(STBIW_FREE) && (defined(STBIW_REALLOC) || defined(STBIW_REALLOC_SIZED)) +// ok +#elif !defined(STBIW_MALLOC) && !defined(STBIW_FREE) && !defined(STBIW_REALLOC) && !defined(STBIW_REALLOC_SIZED) +// ok +#else +#error "Must define all or none of STBIW_MALLOC, STBIW_FREE, and STBIW_REALLOC (or STBIW_REALLOC_SIZED)." +#endif + +#ifndef STBIW_MALLOC +#define STBIW_MALLOC(sz) malloc(sz) +#define STBIW_REALLOC(p,newsz) realloc(p,newsz) +#define STBIW_FREE(p) free(p) +#endif + +#ifndef STBIW_REALLOC_SIZED +#define STBIW_REALLOC_SIZED(p,oldsz,newsz) STBIW_REALLOC(p,newsz) +#endif + + +#ifndef STBIW_MEMMOVE +#define STBIW_MEMMOVE(a,b,sz) memmove(a,b,sz) +#endif + + +#ifndef STBIW_ASSERT +#include +#define STBIW_ASSERT(x) assert(x) +#endif + +#define STBIW_UCHAR(x) (unsigned char) ((x) & 0xff) + +#ifdef STB_IMAGE_WRITE_STATIC +static int stbi_write_png_compression_level = 8; +static int stbi_write_tga_with_rle = 1; +static int stbi_write_force_png_filter = -1; +#else +int stbi_write_png_compression_level = 8; +int stbi_write_tga_with_rle = 1; +int stbi_write_force_png_filter = -1; +#endif + +static int stbi__flip_vertically_on_write = 0; + +STBIWDEF void stbi_flip_vertically_on_write(int flag) +{ + stbi__flip_vertically_on_write = flag; +} + +typedef struct +{ + stbi_write_func *func; + void *context; + unsigned char buffer[64]; + int buf_used; +} stbi__write_context; + +// initialize a callback-based context +static void stbi__start_write_callbacks(stbi__write_context *s, stbi_write_func *c, void *context) +{ + s->func = c; + s->context = context; +} + +#ifndef STBI_WRITE_NO_STDIO + +static void stbi__stdio_write(void *context, void *data, int size) +{ + fwrite(data,1,size,(FILE*) context); +} + +#if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) +#ifdef __cplusplus +#define STBIW_EXTERN extern "C" +#else +#define STBIW_EXTERN extern +#endif +STBIW_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); +STBIW_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); + +STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) +{ + return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); +} +#endif + +static FILE *stbiw__fopen(char const *filename, char const *mode) +{ + FILE *f; +#if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) + wchar_t wMode[64]; + wchar_t wFilename[1024]; + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename))) + return 0; + + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode))) + return 0; + +#if defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != _wfopen_s(&f, wFilename, wMode)) + f = 0; +#else + f = _wfopen(wFilename, wMode); +#endif + +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != fopen_s(&f, filename, mode)) + f=0; +#else + f = fopen(filename, mode); +#endif + return f; +} + +static int stbi__start_write_file(stbi__write_context *s, const char *filename) +{ + FILE *f = stbiw__fopen(filename, "wb"); + stbi__start_write_callbacks(s, stbi__stdio_write, (void *) f); + return f != NULL; +} + +static void stbi__end_write_file(stbi__write_context *s) +{ + fclose((FILE *)s->context); +} + +#endif // !STBI_WRITE_NO_STDIO + +typedef unsigned int stbiw_uint32; +typedef int stb_image_write_test[sizeof(stbiw_uint32)==4 ? 1 : -1]; + +static void stbiw__writefv(stbi__write_context *s, const char *fmt, va_list v) +{ + while (*fmt) { + switch (*fmt++) { + case ' ': break; + case '1': { unsigned char x = STBIW_UCHAR(va_arg(v, int)); + s->func(s->context,&x,1); + break; } + case '2': { int x = va_arg(v,int); + unsigned char b[2]; + b[0] = STBIW_UCHAR(x); + b[1] = STBIW_UCHAR(x>>8); + s->func(s->context,b,2); + break; } + case '4': { stbiw_uint32 x = va_arg(v,int); + unsigned char b[4]; + b[0]=STBIW_UCHAR(x); + b[1]=STBIW_UCHAR(x>>8); + b[2]=STBIW_UCHAR(x>>16); + b[3]=STBIW_UCHAR(x>>24); + s->func(s->context,b,4); + break; } + default: + STBIW_ASSERT(0); + return; + } + } +} + +static void stbiw__writef(stbi__write_context *s, const char *fmt, ...) +{ + va_list v; + va_start(v, fmt); + stbiw__writefv(s, fmt, v); + va_end(v); +} + +static void stbiw__write_flush(stbi__write_context *s) +{ + if (s->buf_used) { + s->func(s->context, &s->buffer, s->buf_used); + s->buf_used = 0; + } +} + +static void stbiw__putc(stbi__write_context *s, unsigned char c) +{ + s->func(s->context, &c, 1); +} + +static void stbiw__write1(stbi__write_context *s, unsigned char a) +{ + if ((size_t)s->buf_used + 1 > sizeof(s->buffer)) + stbiw__write_flush(s); + s->buffer[s->buf_used++] = a; +} + +static void stbiw__write3(stbi__write_context *s, unsigned char a, unsigned char b, unsigned char c) +{ + int n; + if ((size_t)s->buf_used + 3 > sizeof(s->buffer)) + stbiw__write_flush(s); + n = s->buf_used; + s->buf_used = n+3; + s->buffer[n+0] = a; + s->buffer[n+1] = b; + s->buffer[n+2] = c; +} + +static void stbiw__write_pixel(stbi__write_context *s, int rgb_dir, int comp, int write_alpha, int expand_mono, unsigned char *d) +{ + unsigned char bg[3] = { 255, 0, 255}, px[3]; + int k; + + if (write_alpha < 0) + stbiw__write1(s, d[comp - 1]); + + switch (comp) { + case 2: // 2 pixels = mono + alpha, alpha is written separately, so same as 1-channel case + case 1: + if (expand_mono) + stbiw__write3(s, d[0], d[0], d[0]); // monochrome bmp + else + stbiw__write1(s, d[0]); // monochrome TGA + break; + case 4: + if (!write_alpha) { + // composite against pink background + for (k = 0; k < 3; ++k) + px[k] = bg[k] + ((d[k] - bg[k]) * d[3]) / 255; + stbiw__write3(s, px[1 - rgb_dir], px[1], px[1 + rgb_dir]); + break; + } + /* FALLTHROUGH */ + case 3: + stbiw__write3(s, d[1 - rgb_dir], d[1], d[1 + rgb_dir]); + break; + } + if (write_alpha > 0) + stbiw__write1(s, d[comp - 1]); +} + +static void stbiw__write_pixels(stbi__write_context *s, int rgb_dir, int vdir, int x, int y, int comp, void *data, int write_alpha, int scanline_pad, int expand_mono) +{ + stbiw_uint32 zero = 0; + int i,j, j_end; + + if (y <= 0) + return; + + if (stbi__flip_vertically_on_write) + vdir *= -1; + + if (vdir < 0) { + j_end = -1; j = y-1; + } else { + j_end = y; j = 0; + } + + for (; j != j_end; j += vdir) { + for (i=0; i < x; ++i) { + unsigned char *d = (unsigned char *) data + (j*x+i)*comp; + stbiw__write_pixel(s, rgb_dir, comp, write_alpha, expand_mono, d); + } + stbiw__write_flush(s); + s->func(s->context, &zero, scanline_pad); + } +} + +static int stbiw__outfile(stbi__write_context *s, int rgb_dir, int vdir, int x, int y, int comp, int expand_mono, void *data, int alpha, int pad, const char *fmt, ...) +{ + if (y < 0 || x < 0) { + return 0; + } else { + va_list v; + va_start(v, fmt); + stbiw__writefv(s, fmt, v); + va_end(v); + stbiw__write_pixels(s,rgb_dir,vdir,x,y,comp,data,alpha,pad, expand_mono); + return 1; + } +} + +static int stbi_write_bmp_core(stbi__write_context *s, int x, int y, int comp, const void *data) +{ + if (comp != 4) { + // write RGB bitmap + int pad = (-x*3) & 3; + return stbiw__outfile(s,-1,-1,x,y,comp,1,(void *) data,0,pad, + "11 4 22 4" "4 44 22 444444", + 'B', 'M', 14+40+(x*3+pad)*y, 0,0, 14+40, // file header + 40, x,y, 1,24, 0,0,0,0,0,0); // bitmap header + } else { + // RGBA bitmaps need a v4 header + // use BI_BITFIELDS mode with 32bpp and alpha mask + // (straight BI_RGB with alpha mask doesn't work in most readers) + return stbiw__outfile(s,-1,-1,x,y,comp,1,(void *)data,1,0, + "11 4 22 4" "4 44 22 444444 4444 4 444 444 444 444", + 'B', 'M', 14+108+x*y*4, 0, 0, 14+108, // file header + 108, x,y, 1,32, 3,0,0,0,0,0, 0xff0000,0xff00,0xff,0xff000000u, 0, 0,0,0, 0,0,0, 0,0,0, 0,0,0); // bitmap V4 header + } +} + +STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_bmp_core(&s, x, y, comp, data); +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_bmp(char const *filename, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_bmp_core(&s, x, y, comp, data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif //!STBI_WRITE_NO_STDIO + +static int stbi_write_tga_core(stbi__write_context *s, int x, int y, int comp, void *data) +{ + int has_alpha = (comp == 2 || comp == 4); + int colorbytes = has_alpha ? comp-1 : comp; + int format = colorbytes < 2 ? 3 : 2; // 3 color channels (RGB/RGBA) = 2, 1 color channel (Y/YA) = 3 + + if (y < 0 || x < 0) + return 0; + + if (!stbi_write_tga_with_rle) { + return stbiw__outfile(s, -1, -1, x, y, comp, 0, (void *) data, has_alpha, 0, + "111 221 2222 11", 0, 0, format, 0, 0, 0, 0, 0, x, y, (colorbytes + has_alpha) * 8, has_alpha * 8); + } else { + int i,j,k; + int jend, jdir; + + stbiw__writef(s, "111 221 2222 11", 0,0,format+8, 0,0,0, 0,0,x,y, (colorbytes + has_alpha) * 8, has_alpha * 8); + + if (stbi__flip_vertically_on_write) { + j = 0; + jend = y; + jdir = 1; + } else { + j = y-1; + jend = -1; + jdir = -1; + } + for (; j != jend; j += jdir) { + unsigned char *row = (unsigned char *) data + j * x * comp; + int len; + + for (i = 0; i < x; i += len) { + unsigned char *begin = row + i * comp; + int diff = 1; + len = 1; + + if (i < x - 1) { + ++len; + diff = memcmp(begin, row + (i + 1) * comp, comp); + if (diff) { + const unsigned char *prev = begin; + for (k = i + 2; k < x && len < 128; ++k) { + if (memcmp(prev, row + k * comp, comp)) { + prev += comp; + ++len; + } else { + --len; + break; + } + } + } else { + for (k = i + 2; k < x && len < 128; ++k) { + if (!memcmp(begin, row + k * comp, comp)) { + ++len; + } else { + break; + } + } + } + } + + if (diff) { + unsigned char header = STBIW_UCHAR(len - 1); + stbiw__write1(s, header); + for (k = 0; k < len; ++k) { + stbiw__write_pixel(s, -1, comp, has_alpha, 0, begin + k * comp); + } + } else { + unsigned char header = STBIW_UCHAR(len - 129); + stbiw__write1(s, header); + stbiw__write_pixel(s, -1, comp, has_alpha, 0, begin); + } + } + } + stbiw__write_flush(s); + } + return 1; +} + +STBIWDEF int stbi_write_tga_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_tga_core(&s, x, y, comp, (void *) data); +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_tga(char const *filename, int x, int y, int comp, const void *data) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_tga_core(&s, x, y, comp, (void *) data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif + +// ************************************************************************************************* +// Radiance RGBE HDR writer +// by Baldur Karlsson + +#define stbiw__max(a, b) ((a) > (b) ? (a) : (b)) + +#ifndef STBI_WRITE_NO_STDIO + +static void stbiw__linear_to_rgbe(unsigned char *rgbe, float *linear) +{ + int exponent; + float maxcomp = stbiw__max(linear[0], stbiw__max(linear[1], linear[2])); + + if (maxcomp < 1e-32f) { + rgbe[0] = rgbe[1] = rgbe[2] = rgbe[3] = 0; + } else { + float normalize = (float) frexp(maxcomp, &exponent) * 256.0f/maxcomp; + + rgbe[0] = (unsigned char)(linear[0] * normalize); + rgbe[1] = (unsigned char)(linear[1] * normalize); + rgbe[2] = (unsigned char)(linear[2] * normalize); + rgbe[3] = (unsigned char)(exponent + 128); + } +} + +static void stbiw__write_run_data(stbi__write_context *s, int length, unsigned char databyte) +{ + unsigned char lengthbyte = STBIW_UCHAR(length+128); + STBIW_ASSERT(length+128 <= 255); + s->func(s->context, &lengthbyte, 1); + s->func(s->context, &databyte, 1); +} + +static void stbiw__write_dump_data(stbi__write_context *s, int length, unsigned char *data) +{ + unsigned char lengthbyte = STBIW_UCHAR(length); + STBIW_ASSERT(length <= 128); // inconsistent with spec but consistent with official code + s->func(s->context, &lengthbyte, 1); + s->func(s->context, data, length); +} + +static void stbiw__write_hdr_scanline(stbi__write_context *s, int width, int ncomp, unsigned char *scratch, float *scanline) +{ + unsigned char scanlineheader[4] = { 2, 2, 0, 0 }; + unsigned char rgbe[4]; + float linear[3]; + int x; + + scanlineheader[2] = (width&0xff00)>>8; + scanlineheader[3] = (width&0x00ff); + + /* skip RLE for images too small or large */ + if (width < 8 || width >= 32768) { + for (x=0; x < width; x++) { + switch (ncomp) { + case 4: /* fallthrough */ + case 3: linear[2] = scanline[x*ncomp + 2]; + linear[1] = scanline[x*ncomp + 1]; + linear[0] = scanline[x*ncomp + 0]; + break; + default: + linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; + break; + } + stbiw__linear_to_rgbe(rgbe, linear); + s->func(s->context, rgbe, 4); + } + } else { + int c,r; + /* encode into scratch buffer */ + for (x=0; x < width; x++) { + switch(ncomp) { + case 4: /* fallthrough */ + case 3: linear[2] = scanline[x*ncomp + 2]; + linear[1] = scanline[x*ncomp + 1]; + linear[0] = scanline[x*ncomp + 0]; + break; + default: + linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; + break; + } + stbiw__linear_to_rgbe(rgbe, linear); + scratch[x + width*0] = rgbe[0]; + scratch[x + width*1] = rgbe[1]; + scratch[x + width*2] = rgbe[2]; + scratch[x + width*3] = rgbe[3]; + } + + s->func(s->context, scanlineheader, 4); + + /* RLE each component separately */ + for (c=0; c < 4; c++) { + unsigned char *comp = &scratch[width*c]; + + x = 0; + while (x < width) { + // find first run + r = x; + while (r+2 < width) { + if (comp[r] == comp[r+1] && comp[r] == comp[r+2]) + break; + ++r; + } + if (r+2 >= width) + r = width; + // dump up to first run + while (x < r) { + int len = r-x; + if (len > 128) len = 128; + stbiw__write_dump_data(s, len, &comp[x]); + x += len; + } + // if there's a run, output it + if (r+2 < width) { // same test as what we break out of in search loop, so only true if we break'd + // find next byte after run + while (r < width && comp[r] == comp[x]) + ++r; + // output run up to r + while (x < r) { + int len = r-x; + if (len > 127) len = 127; + stbiw__write_run_data(s, len, comp[x]); + x += len; + } + } + } + } + } +} + +static int stbi_write_hdr_core(stbi__write_context *s, int x, int y, int comp, float *data) +{ + if (y <= 0 || x <= 0 || data == NULL) + return 0; + else { + // Each component is stored separately. Allocate scratch space for full output scanline. + unsigned char *scratch = (unsigned char *) STBIW_MALLOC(x*4); + int i, len; + char buffer[128]; + char header[] = "#?RADIANCE\n# Written by stb_image_write.h\nFORMAT=32-bit_rle_rgbe\n"; + s->func(s->context, header, sizeof(header)-1); + +#ifdef __STDC_LIB_EXT1__ + len = sprintf_s(buffer, sizeof(buffer), "EXPOSURE= 1.0000000000000\n\n-Y %d +X %d\n", y, x); +#else + len = sprintf(buffer, "EXPOSURE= 1.0000000000000\n\n-Y %d +X %d\n", y, x); +#endif + s->func(s->context, buffer, len); + + for(i=0; i < y; i++) + stbiw__write_hdr_scanline(s, x, comp, scratch, data + comp*x*(stbi__flip_vertically_on_write ? y-1-i : i)); + STBIW_FREE(scratch); + return 1; + } +} + +STBIWDEF int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const float *data) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_hdr_core(&s, x, y, comp, (float *) data); +} + +STBIWDEF int stbi_write_hdr(char const *filename, int x, int y, int comp, const float *data) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_hdr_core(&s, x, y, comp, (float *) data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif // STBI_WRITE_NO_STDIO + + +////////////////////////////////////////////////////////////////////////////// +// +// PNG writer +// + +#ifndef STBIW_ZLIB_COMPRESS +// stretchy buffer; stbiw__sbpush() == vector<>::push_back() -- stbiw__sbcount() == vector<>::size() +#define stbiw__sbraw(a) ((int *) (void *) (a) - 2) +#define stbiw__sbm(a) stbiw__sbraw(a)[0] +#define stbiw__sbn(a) stbiw__sbraw(a)[1] + +#define stbiw__sbneedgrow(a,n) ((a)==0 || stbiw__sbn(a)+n >= stbiw__sbm(a)) +#define stbiw__sbmaybegrow(a,n) (stbiw__sbneedgrow(a,(n)) ? stbiw__sbgrow(a,n) : 0) +#define stbiw__sbgrow(a,n) stbiw__sbgrowf((void **) &(a), (n), sizeof(*(a))) + +#define stbiw__sbpush(a, v) (stbiw__sbmaybegrow(a,1), (a)[stbiw__sbn(a)++] = (v)) +#define stbiw__sbcount(a) ((a) ? stbiw__sbn(a) : 0) +#define stbiw__sbfree(a) ((a) ? STBIW_FREE(stbiw__sbraw(a)),0 : 0) + +static void *stbiw__sbgrowf(void **arr, int increment, int itemsize) +{ + int m = *arr ? 2*stbiw__sbm(*arr)+increment : increment+1; + void *p = STBIW_REALLOC_SIZED(*arr ? stbiw__sbraw(*arr) : 0, *arr ? (stbiw__sbm(*arr)*itemsize + sizeof(int)*2) : 0, itemsize * m + sizeof(int)*2); + STBIW_ASSERT(p); + if (p) { + if (!*arr) ((int *) p)[1] = 0; + *arr = (void *) ((int *) p + 2); + stbiw__sbm(*arr) = m; + } + return *arr; +} + +static unsigned char *stbiw__zlib_flushf(unsigned char *data, unsigned int *bitbuffer, int *bitcount) +{ + while (*bitcount >= 8) { + stbiw__sbpush(data, STBIW_UCHAR(*bitbuffer)); + *bitbuffer >>= 8; + *bitcount -= 8; + } + return data; +} + +static int stbiw__zlib_bitrev(int code, int codebits) +{ + int res=0; + while (codebits--) { + res = (res << 1) | (code & 1); + code >>= 1; + } + return res; +} + +static unsigned int stbiw__zlib_countm(unsigned char *a, unsigned char *b, int limit) +{ + int i; + for (i=0; i < limit && i < 258; ++i) + if (a[i] != b[i]) break; + return i; +} + +static unsigned int stbiw__zhash(unsigned char *data) +{ + stbiw_uint32 hash = data[0] + (data[1] << 8) + (data[2] << 16); + hash ^= hash << 3; + hash += hash >> 5; + hash ^= hash << 4; + hash += hash >> 17; + hash ^= hash << 25; + hash += hash >> 6; + return hash; +} + +#define stbiw__zlib_flush() (out = stbiw__zlib_flushf(out, &bitbuf, &bitcount)) +#define stbiw__zlib_add(code,codebits) \ + (bitbuf |= (code) << bitcount, bitcount += (codebits), stbiw__zlib_flush()) +#define stbiw__zlib_huffa(b,c) stbiw__zlib_add(stbiw__zlib_bitrev(b,c),c) +// default huffman tables +#define stbiw__zlib_huff1(n) stbiw__zlib_huffa(0x30 + (n), 8) +#define stbiw__zlib_huff2(n) stbiw__zlib_huffa(0x190 + (n)-144, 9) +#define stbiw__zlib_huff3(n) stbiw__zlib_huffa(0 + (n)-256,7) +#define stbiw__zlib_huff4(n) stbiw__zlib_huffa(0xc0 + (n)-280,8) +#define stbiw__zlib_huff(n) ((n) <= 143 ? stbiw__zlib_huff1(n) : (n) <= 255 ? stbiw__zlib_huff2(n) : (n) <= 279 ? stbiw__zlib_huff3(n) : stbiw__zlib_huff4(n)) +#define stbiw__zlib_huffb(n) ((n) <= 143 ? stbiw__zlib_huff1(n) : stbiw__zlib_huff2(n)) + +#define stbiw__ZHASH 16384 + +#endif // STBIW_ZLIB_COMPRESS + +STBIWDEF unsigned char * stbi_zlib_compress(unsigned char *data, int data_len, int *out_len, int quality) +{ +#ifdef STBIW_ZLIB_COMPRESS + // user provided a zlib compress implementation, use that + return STBIW_ZLIB_COMPRESS(data, data_len, out_len, quality); +#else // use builtin + static unsigned short lengthc[] = { 3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258, 259 }; + static unsigned char lengtheb[]= { 0,0,0,0,0,0,0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0 }; + static unsigned short distc[] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577, 32768 }; + static unsigned char disteb[] = { 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13 }; + unsigned int bitbuf=0; + int i,j, bitcount=0; + unsigned char *out = NULL; + unsigned char ***hash_table = (unsigned char***) STBIW_MALLOC(stbiw__ZHASH * sizeof(unsigned char**)); + if (hash_table == NULL) + return NULL; + if (quality < 5) quality = 5; + + stbiw__sbpush(out, 0x78); // DEFLATE 32K window + stbiw__sbpush(out, 0x5e); // FLEVEL = 1 + stbiw__zlib_add(1,1); // BFINAL = 1 + stbiw__zlib_add(1,2); // BTYPE = 1 -- fixed huffman + + for (i=0; i < stbiw__ZHASH; ++i) + hash_table[i] = NULL; + + i=0; + while (i < data_len-3) { + // hash next 3 bytes of data to be compressed + int h = stbiw__zhash(data+i)&(stbiw__ZHASH-1), best=3; + unsigned char *bestloc = 0; + unsigned char **hlist = hash_table[h]; + int n = stbiw__sbcount(hlist); + for (j=0; j < n; ++j) { + if (hlist[j]-data > i-32768) { // if entry lies within window + int d = stbiw__zlib_countm(hlist[j], data+i, data_len-i); + if (d >= best) { best=d; bestloc=hlist[j]; } + } + } + // when hash table entry is too long, delete half the entries + if (hash_table[h] && stbiw__sbn(hash_table[h]) == 2*quality) { + STBIW_MEMMOVE(hash_table[h], hash_table[h]+quality, sizeof(hash_table[h][0])*quality); + stbiw__sbn(hash_table[h]) = quality; + } + stbiw__sbpush(hash_table[h],data+i); + + if (bestloc) { + // "lazy matching" - check match at *next* byte, and if it's better, do cur byte as literal + h = stbiw__zhash(data+i+1)&(stbiw__ZHASH-1); + hlist = hash_table[h]; + n = stbiw__sbcount(hlist); + for (j=0; j < n; ++j) { + if (hlist[j]-data > i-32767) { + int e = stbiw__zlib_countm(hlist[j], data+i+1, data_len-i-1); + if (e > best) { // if next match is better, bail on current match + bestloc = NULL; + break; + } + } + } + } + + if (bestloc) { + int d = (int) (data+i - bestloc); // distance back + STBIW_ASSERT(d <= 32767 && best <= 258); + for (j=0; best > lengthc[j+1]-1; ++j); + stbiw__zlib_huff(j+257); + if (lengtheb[j]) stbiw__zlib_add(best - lengthc[j], lengtheb[j]); + for (j=0; d > distc[j+1]-1; ++j); + stbiw__zlib_add(stbiw__zlib_bitrev(j,5),5); + if (disteb[j]) stbiw__zlib_add(d - distc[j], disteb[j]); + i += best; + } else { + stbiw__zlib_huffb(data[i]); + ++i; + } + } + // write out final bytes + for (;i < data_len; ++i) + stbiw__zlib_huffb(data[i]); + stbiw__zlib_huff(256); // end of block + // pad with 0 bits to byte boundary + while (bitcount) + stbiw__zlib_add(0,1); + + for (i=0; i < stbiw__ZHASH; ++i) + (void) stbiw__sbfree(hash_table[i]); + STBIW_FREE(hash_table); + + // store uncompressed instead if compression was worse + if (stbiw__sbn(out) > data_len + 2 + ((data_len+32766)/32767)*5) { + stbiw__sbn(out) = 2; // truncate to DEFLATE 32K window and FLEVEL = 1 + for (j = 0; j < data_len;) { + int blocklen = data_len - j; + if (blocklen > 32767) blocklen = 32767; + stbiw__sbpush(out, data_len - j == blocklen); // BFINAL = ?, BTYPE = 0 -- no compression + stbiw__sbpush(out, STBIW_UCHAR(blocklen)); // LEN + stbiw__sbpush(out, STBIW_UCHAR(blocklen >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(~blocklen)); // NLEN + stbiw__sbpush(out, STBIW_UCHAR(~blocklen >> 8)); + memcpy(out+stbiw__sbn(out), data+j, blocklen); + stbiw__sbn(out) += blocklen; + j += blocklen; + } + } + + { + // compute adler32 on input + unsigned int s1=1, s2=0; + int blocklen = (int) (data_len % 5552); + j=0; + while (j < data_len) { + for (i=0; i < blocklen; ++i) { s1 += data[j+i]; s2 += s1; } + s1 %= 65521; s2 %= 65521; + j += blocklen; + blocklen = 5552; + } + stbiw__sbpush(out, STBIW_UCHAR(s2 >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(s2)); + stbiw__sbpush(out, STBIW_UCHAR(s1 >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(s1)); + } + *out_len = stbiw__sbn(out); + // make returned pointer freeable + STBIW_MEMMOVE(stbiw__sbraw(out), out, *out_len); + return (unsigned char *) stbiw__sbraw(out); +#endif // STBIW_ZLIB_COMPRESS +} + +static unsigned int stbiw__crc32(unsigned char *buffer, int len) +{ +#ifdef STBIW_CRC32 + return STBIW_CRC32(buffer, len); +#else + static unsigned int crc_table[256] = + { + 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3, + 0x0eDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91, + 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, + 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5, + 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B, + 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59, + 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F, + 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D, + 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433, + 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01, + 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457, + 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65, + 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2, 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, + 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9, + 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F, + 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD, + 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683, + 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, + 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE, 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7, + 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5, + 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B, + 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79, + 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F, + 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D, + 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713, + 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, + 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777, + 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C, 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, + 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB, + 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9, + 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF, + 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D + }; + + unsigned int crc = ~0u; + int i; + for (i=0; i < len; ++i) + crc = (crc >> 8) ^ crc_table[buffer[i] ^ (crc & 0xff)]; + return ~crc; +#endif +} + +#define stbiw__wpng4(o,a,b,c,d) ((o)[0]=STBIW_UCHAR(a),(o)[1]=STBIW_UCHAR(b),(o)[2]=STBIW_UCHAR(c),(o)[3]=STBIW_UCHAR(d),(o)+=4) +#define stbiw__wp32(data,v) stbiw__wpng4(data, (v)>>24,(v)>>16,(v)>>8,(v)); +#define stbiw__wptag(data,s) stbiw__wpng4(data, s[0],s[1],s[2],s[3]) + +static void stbiw__wpcrc(unsigned char **data, int len) +{ + unsigned int crc = stbiw__crc32(*data - len - 4, len+4); + stbiw__wp32(*data, crc); +} + +static unsigned char stbiw__paeth(int a, int b, int c) +{ + int p = a + b - c, pa = abs(p-a), pb = abs(p-b), pc = abs(p-c); + if (pa <= pb && pa <= pc) return STBIW_UCHAR(a); + if (pb <= pc) return STBIW_UCHAR(b); + return STBIW_UCHAR(c); +} + +// @OPTIMIZE: provide an option that always forces left-predict or paeth predict +static void stbiw__encode_png_line(unsigned char *pixels, int stride_bytes, int width, int height, int y, int n, int filter_type, signed char *line_buffer) +{ + static int mapping[] = { 0,1,2,3,4 }; + static int firstmap[] = { 0,1,0,5,6 }; + int *mymap = (y != 0) ? mapping : firstmap; + int i; + int type = mymap[filter_type]; + unsigned char *z = pixels + stride_bytes * (stbi__flip_vertically_on_write ? height-1-y : y); + int signed_stride = stbi__flip_vertically_on_write ? -stride_bytes : stride_bytes; + + if (type==0) { + memcpy(line_buffer, z, width*n); + return; + } + + // first loop isn't optimized since it's just one pixel + for (i = 0; i < n; ++i) { + switch (type) { + case 1: line_buffer[i] = z[i]; break; + case 2: line_buffer[i] = z[i] - z[i-signed_stride]; break; + case 3: line_buffer[i] = z[i] - (z[i-signed_stride]>>1); break; + case 4: line_buffer[i] = (signed char) (z[i] - stbiw__paeth(0,z[i-signed_stride],0)); break; + case 5: line_buffer[i] = z[i]; break; + case 6: line_buffer[i] = z[i]; break; + } + } + switch (type) { + case 1: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - z[i-n]; break; + case 2: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - z[i-signed_stride]; break; + case 3: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - ((z[i-n] + z[i-signed_stride])>>1); break; + case 4: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], z[i-signed_stride], z[i-signed_stride-n]); break; + case 5: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - (z[i-n]>>1); break; + case 6: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], 0,0); break; + } +} + +STBIWDEF unsigned char *stbi_write_png_to_mem(const unsigned char *pixels, int stride_bytes, int x, int y, int n, int *out_len) +{ + int force_filter = stbi_write_force_png_filter; + int ctype[5] = { -1, 0, 4, 2, 6 }; + unsigned char sig[8] = { 137,80,78,71,13,10,26,10 }; + unsigned char *out,*o, *filt, *zlib; + signed char *line_buffer; + int j,zlen; + + if (stride_bytes == 0) + stride_bytes = x * n; + + if (force_filter >= 5) { + force_filter = -1; + } + + filt = (unsigned char *) STBIW_MALLOC((x*n+1) * y); if (!filt) return 0; + line_buffer = (signed char *) STBIW_MALLOC(x * n); if (!line_buffer) { STBIW_FREE(filt); return 0; } + for (j=0; j < y; ++j) { + int filter_type; + if (force_filter > -1) { + filter_type = force_filter; + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, force_filter, line_buffer); + } else { // Estimate the best filter by running through all of them: + int best_filter = 0, best_filter_val = 0x7fffffff, est, i; + for (filter_type = 0; filter_type < 5; filter_type++) { + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, filter_type, line_buffer); + + // Estimate the entropy of the line using this filter; the less, the better. + est = 0; + for (i = 0; i < x*n; ++i) { + est += abs((signed char) line_buffer[i]); + } + if (est < best_filter_val) { + best_filter_val = est; + best_filter = filter_type; + } + } + if (filter_type != best_filter) { // If the last iteration already got us the best filter, don't redo it + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, best_filter, line_buffer); + filter_type = best_filter; + } + } + // when we get here, filter_type contains the filter type, and line_buffer contains the data + filt[j*(x*n+1)] = (unsigned char) filter_type; + STBIW_MEMMOVE(filt+j*(x*n+1)+1, line_buffer, x*n); + } + STBIW_FREE(line_buffer); + zlib = stbi_zlib_compress(filt, y*( x*n+1), &zlen, stbi_write_png_compression_level); + STBIW_FREE(filt); + if (!zlib) return 0; + + // each tag requires 12 bytes of overhead + out = (unsigned char *) STBIW_MALLOC(8 + 12+13 + 12+zlen + 12); + if (!out) return 0; + *out_len = 8 + 12+13 + 12+zlen + 12; + + o=out; + STBIW_MEMMOVE(o,sig,8); o+= 8; + stbiw__wp32(o, 13); // header length + stbiw__wptag(o, "IHDR"); + stbiw__wp32(o, x); + stbiw__wp32(o, y); + *o++ = 8; + *o++ = STBIW_UCHAR(ctype[n]); + *o++ = 0; + *o++ = 0; + *o++ = 0; + stbiw__wpcrc(&o,13); + + stbiw__wp32(o, zlen); + stbiw__wptag(o, "IDAT"); + STBIW_MEMMOVE(o, zlib, zlen); + o += zlen; + STBIW_FREE(zlib); + stbiw__wpcrc(&o, zlen); + + stbiw__wp32(o,0); + stbiw__wptag(o, "IEND"); + stbiw__wpcrc(&o,0); + + STBIW_ASSERT(o == out + *out_len); + + return out; +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_png(char const *filename, int x, int y, int comp, const void *data, int stride_bytes) +{ + FILE *f; + int len; + unsigned char *png = stbi_write_png_to_mem((const unsigned char *) data, stride_bytes, x, y, comp, &len); + if (png == NULL) return 0; + + f = stbiw__fopen(filename, "wb"); + if (!f) { STBIW_FREE(png); return 0; } + fwrite(png, 1, len, f); + fclose(f); + STBIW_FREE(png); + return 1; +} +#endif + +STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int stride_bytes) +{ + int len; + unsigned char *png = stbi_write_png_to_mem((const unsigned char *) data, stride_bytes, x, y, comp, &len); + if (png == NULL) return 0; + func(context, png, len); + STBIW_FREE(png); + return 1; +} + + +/* *************************************************************************** + * + * JPEG writer + * + * This is based on Jon Olick's jo_jpeg.cpp: + * public domain Simple, Minimalistic JPEG writer - http://www.jonolick.com/code.html + */ + +static const unsigned char stbiw__jpg_ZigZag[] = { 0,1,5,6,14,15,27,28,2,4,7,13,16,26,29,42,3,8,12,17,25,30,41,43,9,11,18, + 24,31,40,44,53,10,19,23,32,39,45,52,54,20,22,33,38,46,51,55,60,21,34,37,47,50,56,59,61,35,36,48,49,57,58,62,63 }; + +static void stbiw__jpg_writeBits(stbi__write_context *s, int *bitBufP, int *bitCntP, const unsigned short *bs) { + int bitBuf = *bitBufP, bitCnt = *bitCntP; + bitCnt += bs[1]; + bitBuf |= bs[0] << (24 - bitCnt); + while(bitCnt >= 8) { + unsigned char c = (bitBuf >> 16) & 255; + stbiw__putc(s, c); + if(c == 255) { + stbiw__putc(s, 0); + } + bitBuf <<= 8; + bitCnt -= 8; + } + *bitBufP = bitBuf; + *bitCntP = bitCnt; +} + +static void stbiw__jpg_DCT(float *d0p, float *d1p, float *d2p, float *d3p, float *d4p, float *d5p, float *d6p, float *d7p) { + float d0 = *d0p, d1 = *d1p, d2 = *d2p, d3 = *d3p, d4 = *d4p, d5 = *d5p, d6 = *d6p, d7 = *d7p; + float z1, z2, z3, z4, z5, z11, z13; + + float tmp0 = d0 + d7; + float tmp7 = d0 - d7; + float tmp1 = d1 + d6; + float tmp6 = d1 - d6; + float tmp2 = d2 + d5; + float tmp5 = d2 - d5; + float tmp3 = d3 + d4; + float tmp4 = d3 - d4; + + // Even part + float tmp10 = tmp0 + tmp3; // phase 2 + float tmp13 = tmp0 - tmp3; + float tmp11 = tmp1 + tmp2; + float tmp12 = tmp1 - tmp2; + + d0 = tmp10 + tmp11; // phase 3 + d4 = tmp10 - tmp11; + + z1 = (tmp12 + tmp13) * 0.707106781f; // c4 + d2 = tmp13 + z1; // phase 5 + d6 = tmp13 - z1; + + // Odd part + tmp10 = tmp4 + tmp5; // phase 2 + tmp11 = tmp5 + tmp6; + tmp12 = tmp6 + tmp7; + + // The rotator is modified from fig 4-8 to avoid extra negations. + z5 = (tmp10 - tmp12) * 0.382683433f; // c6 + z2 = tmp10 * 0.541196100f + z5; // c2-c6 + z4 = tmp12 * 1.306562965f + z5; // c2+c6 + z3 = tmp11 * 0.707106781f; // c4 + + z11 = tmp7 + z3; // phase 5 + z13 = tmp7 - z3; + + *d5p = z13 + z2; // phase 6 + *d3p = z13 - z2; + *d1p = z11 + z4; + *d7p = z11 - z4; + + *d0p = d0; *d2p = d2; *d4p = d4; *d6p = d6; +} + +static void stbiw__jpg_calcBits(int val, unsigned short bits[2]) { + int tmp1 = val < 0 ? -val : val; + val = val < 0 ? val-1 : val; + bits[1] = 1; + while(tmp1 >>= 1) { + ++bits[1]; + } + bits[0] = val & ((1<0)&&(DU[end0pos]==0); --end0pos) { + } + // end0pos = first element in reverse order !=0 + if(end0pos == 0) { + stbiw__jpg_writeBits(s, bitBuf, bitCnt, EOB); + return DU[0]; + } + for(i = 1; i <= end0pos; ++i) { + int startpos = i; + int nrzeroes; + unsigned short bits[2]; + for (; DU[i]==0 && i<=end0pos; ++i) { + } + nrzeroes = i-startpos; + if ( nrzeroes >= 16 ) { + int lng = nrzeroes>>4; + int nrmarker; + for (nrmarker=1; nrmarker <= lng; ++nrmarker) + stbiw__jpg_writeBits(s, bitBuf, bitCnt, M16zeroes); + nrzeroes &= 15; + } + stbiw__jpg_calcBits(DU[i], bits); + stbiw__jpg_writeBits(s, bitBuf, bitCnt, HTAC[(nrzeroes<<4)+bits[1]]); + stbiw__jpg_writeBits(s, bitBuf, bitCnt, bits); + } + if(end0pos != 63) { + stbiw__jpg_writeBits(s, bitBuf, bitCnt, EOB); + } + return DU[0]; +} + +static int stbi_write_jpg_core(stbi__write_context *s, int width, int height, int comp, const void* data, int quality) { + // Constants that don't pollute global namespace + static const unsigned char std_dc_luminance_nrcodes[] = {0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0}; + static const unsigned char std_dc_luminance_values[] = {0,1,2,3,4,5,6,7,8,9,10,11}; + static const unsigned char std_ac_luminance_nrcodes[] = {0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d}; + static const unsigned char std_ac_luminance_values[] = { + 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08, + 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28, + 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59, + 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89, + 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6, + 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2, + 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa + }; + static const unsigned char std_dc_chrominance_nrcodes[] = {0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0}; + static const unsigned char std_dc_chrominance_values[] = {0,1,2,3,4,5,6,7,8,9,10,11}; + static const unsigned char std_ac_chrominance_nrcodes[] = {0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77}; + static const unsigned char std_ac_chrominance_values[] = { + 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91, + 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26, + 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58, + 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87, + 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4, + 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda, + 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa + }; + // Huffman tables + static const unsigned short YDC_HT[256][2] = { {0,2},{2,3},{3,3},{4,3},{5,3},{6,3},{14,4},{30,5},{62,6},{126,7},{254,8},{510,9}}; + static const unsigned short UVDC_HT[256][2] = { {0,2},{1,2},{2,2},{6,3},{14,4},{30,5},{62,6},{126,7},{254,8},{510,9},{1022,10},{2046,11}}; + static const unsigned short YAC_HT[256][2] = { + {10,4},{0,2},{1,2},{4,3},{11,4},{26,5},{120,7},{248,8},{1014,10},{65410,16},{65411,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {12,4},{27,5},{121,7},{502,9},{2038,11},{65412,16},{65413,16},{65414,16},{65415,16},{65416,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {28,5},{249,8},{1015,10},{4084,12},{65417,16},{65418,16},{65419,16},{65420,16},{65421,16},{65422,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {58,6},{503,9},{4085,12},{65423,16},{65424,16},{65425,16},{65426,16},{65427,16},{65428,16},{65429,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {59,6},{1016,10},{65430,16},{65431,16},{65432,16},{65433,16},{65434,16},{65435,16},{65436,16},{65437,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {122,7},{2039,11},{65438,16},{65439,16},{65440,16},{65441,16},{65442,16},{65443,16},{65444,16},{65445,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {123,7},{4086,12},{65446,16},{65447,16},{65448,16},{65449,16},{65450,16},{65451,16},{65452,16},{65453,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {250,8},{4087,12},{65454,16},{65455,16},{65456,16},{65457,16},{65458,16},{65459,16},{65460,16},{65461,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {504,9},{32704,15},{65462,16},{65463,16},{65464,16},{65465,16},{65466,16},{65467,16},{65468,16},{65469,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {505,9},{65470,16},{65471,16},{65472,16},{65473,16},{65474,16},{65475,16},{65476,16},{65477,16},{65478,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {506,9},{65479,16},{65480,16},{65481,16},{65482,16},{65483,16},{65484,16},{65485,16},{65486,16},{65487,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1017,10},{65488,16},{65489,16},{65490,16},{65491,16},{65492,16},{65493,16},{65494,16},{65495,16},{65496,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1018,10},{65497,16},{65498,16},{65499,16},{65500,16},{65501,16},{65502,16},{65503,16},{65504,16},{65505,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2040,11},{65506,16},{65507,16},{65508,16},{65509,16},{65510,16},{65511,16},{65512,16},{65513,16},{65514,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {65515,16},{65516,16},{65517,16},{65518,16},{65519,16},{65520,16},{65521,16},{65522,16},{65523,16},{65524,16},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2041,11},{65525,16},{65526,16},{65527,16},{65528,16},{65529,16},{65530,16},{65531,16},{65532,16},{65533,16},{65534,16},{0,0},{0,0},{0,0},{0,0},{0,0} + }; + static const unsigned short UVAC_HT[256][2] = { + {0,2},{1,2},{4,3},{10,4},{24,5},{25,5},{56,6},{120,7},{500,9},{1014,10},{4084,12},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {11,4},{57,6},{246,8},{501,9},{2038,11},{4085,12},{65416,16},{65417,16},{65418,16},{65419,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {26,5},{247,8},{1015,10},{4086,12},{32706,15},{65420,16},{65421,16},{65422,16},{65423,16},{65424,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {27,5},{248,8},{1016,10},{4087,12},{65425,16},{65426,16},{65427,16},{65428,16},{65429,16},{65430,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {58,6},{502,9},{65431,16},{65432,16},{65433,16},{65434,16},{65435,16},{65436,16},{65437,16},{65438,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {59,6},{1017,10},{65439,16},{65440,16},{65441,16},{65442,16},{65443,16},{65444,16},{65445,16},{65446,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {121,7},{2039,11},{65447,16},{65448,16},{65449,16},{65450,16},{65451,16},{65452,16},{65453,16},{65454,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {122,7},{2040,11},{65455,16},{65456,16},{65457,16},{65458,16},{65459,16},{65460,16},{65461,16},{65462,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {249,8},{65463,16},{65464,16},{65465,16},{65466,16},{65467,16},{65468,16},{65469,16},{65470,16},{65471,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {503,9},{65472,16},{65473,16},{65474,16},{65475,16},{65476,16},{65477,16},{65478,16},{65479,16},{65480,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {504,9},{65481,16},{65482,16},{65483,16},{65484,16},{65485,16},{65486,16},{65487,16},{65488,16},{65489,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {505,9},{65490,16},{65491,16},{65492,16},{65493,16},{65494,16},{65495,16},{65496,16},{65497,16},{65498,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {506,9},{65499,16},{65500,16},{65501,16},{65502,16},{65503,16},{65504,16},{65505,16},{65506,16},{65507,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2041,11},{65508,16},{65509,16},{65510,16},{65511,16},{65512,16},{65513,16},{65514,16},{65515,16},{65516,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {16352,14},{65517,16},{65518,16},{65519,16},{65520,16},{65521,16},{65522,16},{65523,16},{65524,16},{65525,16},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1018,10},{32707,15},{65526,16},{65527,16},{65528,16},{65529,16},{65530,16},{65531,16},{65532,16},{65533,16},{65534,16},{0,0},{0,0},{0,0},{0,0},{0,0} + }; + static const int YQT[] = {16,11,10,16,24,40,51,61,12,12,14,19,26,58,60,55,14,13,16,24,40,57,69,56,14,17,22,29,51,87,80,62,18,22, + 37,56,68,109,103,77,24,35,55,64,81,104,113,92,49,64,78,87,103,121,120,101,72,92,95,98,112,100,103,99}; + static const int UVQT[] = {17,18,24,47,99,99,99,99,18,21,26,66,99,99,99,99,24,26,56,99,99,99,99,99,47,66,99,99,99,99,99,99, + 99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99}; + static const float aasf[] = { 1.0f * 2.828427125f, 1.387039845f * 2.828427125f, 1.306562965f * 2.828427125f, 1.175875602f * 2.828427125f, + 1.0f * 2.828427125f, 0.785694958f * 2.828427125f, 0.541196100f * 2.828427125f, 0.275899379f * 2.828427125f }; + + int row, col, i, k, subsample; + float fdtbl_Y[64], fdtbl_UV[64]; + unsigned char YTable[64], UVTable[64]; + + if(!data || !width || !height || comp > 4 || comp < 1) { + return 0; + } + + quality = quality ? quality : 90; + subsample = quality <= 90 ? 1 : 0; + quality = quality < 1 ? 1 : quality > 100 ? 100 : quality; + quality = quality < 50 ? 5000 / quality : 200 - quality * 2; + + for(i = 0; i < 64; ++i) { + int uvti, yti = (YQT[i]*quality+50)/100; + YTable[stbiw__jpg_ZigZag[i]] = (unsigned char) (yti < 1 ? 1 : yti > 255 ? 255 : yti); + uvti = (UVQT[i]*quality+50)/100; + UVTable[stbiw__jpg_ZigZag[i]] = (unsigned char) (uvti < 1 ? 1 : uvti > 255 ? 255 : uvti); + } + + for(row = 0, k = 0; row < 8; ++row) { + for(col = 0; col < 8; ++col, ++k) { + fdtbl_Y[k] = 1 / (YTable [stbiw__jpg_ZigZag[k]] * aasf[row] * aasf[col]); + fdtbl_UV[k] = 1 / (UVTable[stbiw__jpg_ZigZag[k]] * aasf[row] * aasf[col]); + } + } + + // Write Headers + { + static const unsigned char head0[] = { 0xFF,0xD8,0xFF,0xE0,0,0x10,'J','F','I','F',0,1,1,0,0,1,0,1,0,0,0xFF,0xDB,0,0x84,0 }; + static const unsigned char head2[] = { 0xFF,0xDA,0,0xC,3,1,0,2,0x11,3,0x11,0,0x3F,0 }; + const unsigned char head1[] = { 0xFF,0xC0,0,0x11,8,(unsigned char)(height>>8),STBIW_UCHAR(height),(unsigned char)(width>>8),STBIW_UCHAR(width), + 3,1,(unsigned char)(subsample?0x22:0x11),0,2,0x11,1,3,0x11,1,0xFF,0xC4,0x01,0xA2,0 }; + s->func(s->context, (void*)head0, sizeof(head0)); + s->func(s->context, (void*)YTable, sizeof(YTable)); + stbiw__putc(s, 1); + s->func(s->context, UVTable, sizeof(UVTable)); + s->func(s->context, (void*)head1, sizeof(head1)); + s->func(s->context, (void*)(std_dc_luminance_nrcodes+1), sizeof(std_dc_luminance_nrcodes)-1); + s->func(s->context, (void*)std_dc_luminance_values, sizeof(std_dc_luminance_values)); + stbiw__putc(s, 0x10); // HTYACinfo + s->func(s->context, (void*)(std_ac_luminance_nrcodes+1), sizeof(std_ac_luminance_nrcodes)-1); + s->func(s->context, (void*)std_ac_luminance_values, sizeof(std_ac_luminance_values)); + stbiw__putc(s, 1); // HTUDCinfo + s->func(s->context, (void*)(std_dc_chrominance_nrcodes+1), sizeof(std_dc_chrominance_nrcodes)-1); + s->func(s->context, (void*)std_dc_chrominance_values, sizeof(std_dc_chrominance_values)); + stbiw__putc(s, 0x11); // HTUACinfo + s->func(s->context, (void*)(std_ac_chrominance_nrcodes+1), sizeof(std_ac_chrominance_nrcodes)-1); + s->func(s->context, (void*)std_ac_chrominance_values, sizeof(std_ac_chrominance_values)); + s->func(s->context, (void*)head2, sizeof(head2)); + } + + // Encode 8x8 macroblocks + { + static const unsigned short fillBits[] = {0x7F, 7}; + int DCY=0, DCU=0, DCV=0; + int bitBuf=0, bitCnt=0; + // comp == 2 is grey+alpha (alpha is ignored) + int ofsG = comp > 2 ? 1 : 0, ofsB = comp > 2 ? 2 : 0; + const unsigned char *dataR = (const unsigned char *)data; + const unsigned char *dataG = dataR + ofsG; + const unsigned char *dataB = dataR + ofsB; + int x, y, pos; + if(subsample) { + for(y = 0; y < height; y += 16) { + for(x = 0; x < width; x += 16) { + float Y[256], U[256], V[256]; + for(row = y, pos = 0; row < y+16; ++row) { + // row >= height => use last input row + int clamped_row = (row < height) ? row : height - 1; + int base_p = (stbi__flip_vertically_on_write ? (height-1-clamped_row) : clamped_row)*width*comp; + for(col = x; col < x+16; ++col, ++pos) { + // if col >= width => use pixel from last input column + int p = base_p + ((col < width) ? col : (width-1))*comp; + float r = dataR[p], g = dataG[p], b = dataB[p]; + Y[pos]= +0.29900f*r + 0.58700f*g + 0.11400f*b - 128; + U[pos]= -0.16874f*r - 0.33126f*g + 0.50000f*b; + V[pos]= +0.50000f*r - 0.41869f*g - 0.08131f*b; + } + } + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+0, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+8, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+128, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+136, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + + // subsample U,V + { + float subU[64], subV[64]; + int yy, xx; + for(yy = 0, pos = 0; yy < 8; ++yy) { + for(xx = 0; xx < 8; ++xx, ++pos) { + int j = yy*32+xx*2; + subU[pos] = (U[j+0] + U[j+1] + U[j+16] + U[j+17]) * 0.25f; + subV[pos] = (V[j+0] + V[j+1] + V[j+16] + V[j+17]) * 0.25f; + } + } + DCU = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, subU, 8, fdtbl_UV, DCU, UVDC_HT, UVAC_HT); + DCV = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, subV, 8, fdtbl_UV, DCV, UVDC_HT, UVAC_HT); + } + } + } + } else { + for(y = 0; y < height; y += 8) { + for(x = 0; x < width; x += 8) { + float Y[64], U[64], V[64]; + for(row = y, pos = 0; row < y+8; ++row) { + // row >= height => use last input row + int clamped_row = (row < height) ? row : height - 1; + int base_p = (stbi__flip_vertically_on_write ? (height-1-clamped_row) : clamped_row)*width*comp; + for(col = x; col < x+8; ++col, ++pos) { + // if col >= width => use pixel from last input column + int p = base_p + ((col < width) ? col : (width-1))*comp; + float r = dataR[p], g = dataG[p], b = dataB[p]; + Y[pos]= +0.29900f*r + 0.58700f*g + 0.11400f*b - 128; + U[pos]= -0.16874f*r - 0.33126f*g + 0.50000f*b; + V[pos]= +0.50000f*r - 0.41869f*g - 0.08131f*b; + } + } + + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y, 8, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCU = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, U, 8, fdtbl_UV, DCU, UVDC_HT, UVAC_HT); + DCV = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, V, 8, fdtbl_UV, DCV, UVDC_HT, UVAC_HT); + } + } + } + + // Do the bit alignment of the EOI marker + stbiw__jpg_writeBits(s, &bitBuf, &bitCnt, fillBits); + } + + // EOI + stbiw__putc(s, 0xFF); + stbiw__putc(s, 0xD9); + + return 1; +} + +STBIWDEF int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality) +{ + stbi__write_context s = { 0 }; + stbi__start_write_callbacks(&s, func, context); + return stbi_write_jpg_core(&s, x, y, comp, (void *) data, quality); +} + + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality) +{ + stbi__write_context s = { 0 }; + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_jpg_core(&s, x, y, comp, data, quality); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif + +#endif // STB_IMAGE_WRITE_IMPLEMENTATION + +/* Revision history + 1.16 (2021-07-11) + make Deflate code emit uncompressed blocks when it would otherwise expand + support writing BMPs with alpha channel + 1.15 (2020-07-13) unknown + 1.14 (2020-02-02) updated JPEG writer to downsample chroma channels + 1.13 + 1.12 + 1.11 (2019-08-11) + + 1.10 (2019-02-07) + support utf8 filenames in Windows; fix warnings and platform ifdefs + 1.09 (2018-02-11) + fix typo in zlib quality API, improve STB_I_W_STATIC in C++ + 1.08 (2018-01-29) + add stbi__flip_vertically_on_write, external zlib, zlib quality, choose PNG filter + 1.07 (2017-07-24) + doc fix + 1.06 (2017-07-23) + writing JPEG (using Jon Olick's code) + 1.05 ??? + 1.04 (2017-03-03) + monochrome BMP expansion + 1.03 ??? + 1.02 (2016-04-02) + avoid allocating large structures on the stack + 1.01 (2016-01-16) + STBIW_REALLOC_SIZED: support allocators with no realloc support + avoid race-condition in crc initialization + minor compile issues + 1.00 (2015-09-14) + installable file IO function + 0.99 (2015-09-13) + warning fixes; TGA rle support + 0.98 (2015-04-08) + added STBIW_MALLOC, STBIW_ASSERT etc + 0.97 (2015-01-18) + fixed HDR asserts, rewrote HDR rle logic + 0.96 (2015-01-17) + add HDR output + fix monochrome BMP + 0.95 (2014-08-17) + add monochrome TGA output + 0.94 (2014-05-31) + rename private functions to avoid conflicts with stb_image.h + 0.93 (2014-05-27) + warning fixes + 0.92 (2010-08-01) + casts to unsigned char to fix warnings + 0.91 (2010-07-17) + first public release + 0.90 first internal release +*/ + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/Makefile b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/Makefile new file mode 100644 index 000000000..85175ac54 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/Makefile @@ -0,0 +1,45 @@ +COMMONDIR=../common + +CXX=tau_cxx.sh +CC=tau_cc.sh +HIPFLAGS=-xhip -g -O3 -I$(COMMONDIR) +CCFLAGS=-g -O3 -Wall -I$(COMMONDIR) +LDFLAGS= +LIBS= + +EXE=heat_hip +OBJS=main.o core.o setup.o utilities.o io.o +OBJS_PNG=$(COMMONDIR)/pngwriter.o +OBJS_HIP=core_hip.o + +all: $(EXE) + +core.o: core.cpp heat.h +core_hip.o: core_hip.cpp heat.h +utilities.o: utilities.cpp heat.h +setup.o: setup.cpp heat.h +io.o: io.cpp heat.h +main.o: main.cpp heat.h + +$(OBJS_PNG): C_COMPILER := $(CC) +$(OBJS): C_COMPILER := $(CXX) +$(OBJS): FLAGS := $(CCFLAGS) +$(OBJS_HIP): C_COMPILER := $(CXX) +$(OBJS_HIP): FLAGS := $(HIPFLAGS) + +$(EXE): $(OBJS) $(OBJS_HIP) $(OBJS_PNG) + $(CXX) $(CCFLAGS) $(OBJS) $(OBJS_HIP) $(OBJS_PNG) -o $@ $(LDFLAGS) $(LIBS) + +%.o: %.cpp + $(C_COMPILER) $(FLAGS) -c $< -o $@ + +%.o: %.cu + $(C_COMPILER) $(FLAGS) -c $< -o $@ + + +%.o: %.c + $(CC) $(CCFLAGS) -c $< -o $@ + +.PHONY: clean +clean: + -/bin/rm -f $(EXE) a.out *.o *.png *~ diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/core.cpp b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/core.cpp new file mode 100644 index 000000000..3c999cb7c --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/core.cpp @@ -0,0 +1,38 @@ +/* Main solver routines for heat equation solver */ + +#include +#include +#include +#include +#include + +#include "heat.h" + +/* Exchange the boundary values */ +void exchange(field *temperature, parallel_data *parallel) +{ + double *data; + double *sbuf_up, *sbuf_down, *rbuf_up, *rbuf_down; + + data = temperature->devdata; + + // Send to the up, receive from down + sbuf_up = data + temperature->ny + 2; // upper data + rbuf_down = data + (temperature->nx + 1) * (temperature->ny + 2); // lower halo + + MPI_Sendrecv(sbuf_up, temperature->ny + 2, MPI_DOUBLE, + parallel->nup, 11, + rbuf_down, temperature->ny + 2, MPI_DOUBLE, + parallel->ndown, 11, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + + // Send to the down, receive from up + sbuf_down = data + temperature->nx * (temperature->ny + 2); // lower data + rbuf_up = data; // upper halo + + MPI_Sendrecv(sbuf_down, temperature->ny + 2, MPI_DOUBLE, + parallel->ndown, 12, + rbuf_up, temperature->ny + 2, MPI_DOUBLE, + parallel->nup, 12, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + +} + diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/core_hip.cpp b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/core_hip.cpp new file mode 100644 index 000000000..d6b00538c --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/core_hip.cpp @@ -0,0 +1,91 @@ +#include "hip/hip_runtime.h" +/* Main solver routines for heat equation solver */ + +#include +#include +#include +#include +#include +#include + +#include "heat.h" + +/* Update the temperature values using five-point stencil */ +__global__ void evolve_kernel(double *currdata, double *prevdata, double a, double dt, int nx, int ny, + double dx2, double dy2) +{ + + /* Determine the temperature field at next time step + * As we have fixed boundary conditions, the outermost gridpoints + * are not updated. */ + int ind, ip, im, jp, jm; + + // CUDA threads are arranged in column major order; thus j index from x, i from y + int j = blockIdx.x * blockDim.x + threadIdx.x; + int i = blockIdx.y * blockDim.y + threadIdx.y; + + if (i > 0 && j > 0 && i < nx+1 && j < ny+1) { + ind = i * (ny + 2) + j; + ip = (i + 1) * (ny + 2) + j; + im = (i - 1) * (ny + 2) + j; + jp = i * (ny + 2) + j + 1; + jm = i * (ny + 2) + j - 1; + currdata[ind] = prevdata[ind] + a * dt * + ((prevdata[ip] -2.0 * prevdata[ind] + prevdata[im]) / dx2 + + (prevdata[jp] - 2.0 * prevdata[ind] + prevdata[jm]) / dy2); + + } + +} + +void evolve(field *curr, field *prev, double a, double dt) +{ + int nx, ny; + double dx2, dy2; + nx = prev->nx; + ny = prev->ny; + dx2 = prev->dx * prev->dx; + dy2 = prev->dy * prev->dy; + + /* CUDA thread settings */ + const int blocksize = 16; //!< CUDA thread block dimension + dim3 dimBlock(blocksize, blocksize); + // CUDA threads are arranged in column major order; thus make ny x nx grid + dim3 dimGrid((ny + 2 + blocksize - 1) / blocksize, + (nx + 2 + blocksize - 1) / blocksize); + + hipLaunchKernelGGL(evolve_kernel, dim3(dimGrid), dim3(dimBlock), 0, 0, curr->devdata, prev->devdata, a, dt, nx, ny, dx2, dy2); + hipDeviceSynchronize(); +} + +void enter_data(field *temperature1, field *temperature2) +{ + size_t datasize; + + datasize = (temperature1->nx + 2) * (temperature1->ny + 2) * sizeof(double); + + hipMalloc(&temperature1->devdata, datasize); + hipMalloc(&temperature2->devdata, datasize); + + hipMemcpy(temperature1->devdata, temperature1->data, datasize, hipMemcpyHostToDevice); + hipMemcpy(temperature2->devdata, temperature2->data, datasize, hipMemcpyHostToDevice); +} + +/* Copy a temperature field from the device to the host */ +void update_host(field *temperature) +{ + size_t datasize; + + datasize = (temperature->nx + 2) * (temperature->ny + 2) * sizeof(double); + hipMemcpy(temperature->data, temperature->devdata, datasize, hipMemcpyDeviceToHost); +} + +/* Copy a temperature field from the host to the device */ +void update_device(field *temperature) +{ + size_t datasize; + + datasize = (temperature->nx + 2) * (temperature->ny + 2) * sizeof(double); + hipMemcpy(temperature->devdata, temperature->data, datasize, hipMemcpyHostToDevice); +} + diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/heat.h b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/heat.h new file mode 100644 index 000000000..f0cfd20e5 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/heat.h @@ -0,0 +1,76 @@ +#ifndef __HEAT_H__ +#define __HEAT_H__ + + +/* Datatype for temperature field */ +typedef struct { + /* nx and ny are the true dimensions of the field. The array data + * contains also ghost layers, so it will have dimensions nx+2 x ny+2 */ + int nx; /* Local dimensions of the field */ + int ny; + int nx_full; /* Global dimensions of the field */ + int ny_full; /* Global dimensions of the field */ + double dx; + double dy; + double *data; + double *devdata; /* Data in device */ +} field; + +/* Datatype for basic parallelization information */ +typedef struct { + int size; /* Number of MPI tasks */ + int rank; + int nup, ndown; /* Ranks of neighbouring MPI tasks */ +} parallel_data; + + +/* We use here fixed grid spacing */ +#define DX 0.01 +#define DY 0.01 + +#if __cplusplus + extern "C" { +#endif +/* Function prototypes */ +void set_field_dimensions(field *temperature, int nx, int ny, + parallel_data *parallel); + +void parallel_setup(parallel_data *parallel, int nx, int ny); + +void parallel_set_dimensions(parallel_data *parallel, int nx, int ny); + +void initialize(int argc, char *argv[], field *temperature1, + field *temperature2, int *nsteps, parallel_data *parallel); + +void generate_field(field *temperature, parallel_data *parallel); + +double average(field *temperature); + +void exchange(field *temperature, parallel_data *parallel); + +void evolve(field *curr, field *prev, double a, double dt); + +void write_field(field *temperature, int iter, parallel_data *parallel); + +void read_field(field *temperature1, field *temperature2, + char *filename, parallel_data *parallel); + +void copy_field(field *temperature1, field *temperature2); + +void swap_fields(field *temperature1, field *temperature2); + +void allocate_field(field *temperature); + +void finalize(field *temperature1, field *temperature2); + +void enter_data(field *temperature1, field *temperature2); + +void update_host(field *temperature); + +void update_device(field *temperature); + +#if __cplusplus + } +#endif +#endif /* __HEAT_H__ */ + diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/io.cpp b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/io.cpp new file mode 100644 index 000000000..42daaca36 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/io.cpp @@ -0,0 +1,139 @@ +/* I/O related functions for heat equation solver */ + +#include +#include +#include +#include +#include + +#include "heat.h" +#include "pngwriter.h" + +/* Output routine that prints out a picture of the temperature + * distribution. */ +void write_field(field *temperature, int iter, parallel_data *parallel) +{ + char filename[64]; + + /* The actual write routine takes only the actual data + * (without ghost layers) so we need array for that. */ + int height, width; + double *full_data; + double *tmp_data; // array for MPI sends and receives + + height = temperature->nx * parallel->size; + width = temperature->ny; + + tmp_data = new double [temperature->nx * temperature->ny]; + + if (parallel->rank == 0) { + /* Copy the inner data */ + full_data = new double [height * width]; + for (int i = 0; i < temperature->nx; i++) + memcpy(&full_data[i * width], &temperature->data[(i + 1) * (width + 2) + 1], + temperature->ny * sizeof(double)); + /* Receive data from other ranks */ + for (int p = 1; p < parallel->size; p++) { + MPI_Recv(tmp_data, temperature->nx * temperature->ny, + MPI_DOUBLE, p, 22, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + /* Copy data to full array */ + memcpy(&full_data[p * temperature->nx * width], tmp_data, + temperature->nx * temperature->ny * sizeof(double)); + } + /* Write out the data to a png file */ + sprintf(filename, "%s_%04d.png", "heat", iter); + save_png(full_data, height, width, filename, 'c'); + delete[] full_data; + // free(full_data); + } else { + /* Send data */ + for (int i = 0; i < temperature->nx; i++) + memcpy(&tmp_data[i * width], &temperature->data[(i + 1) * (width + 2) + 1], + temperature->ny * sizeof(double)); + MPI_Send(tmp_data, temperature->nx * temperature->ny, + MPI_DOUBLE, 0, 22, MPI_COMM_WORLD); + } + + delete[] tmp_data; + // free(tmp_data); + +} + +/* Read the initial temperature distribution from a file and + * initialize the temperature fields temperature1 and + * temperature2 to the same initial state. */ +void read_field(field *temperature1, field *temperature2, char *filename, + parallel_data *parallel) +{ + FILE *fp; + int nx, ny, ind; + double *full_data; + double *inner_data; + + int nx_local, ny_local, count; + + fp = fopen(filename, "r"); + /* Read the header */ + count = fscanf(fp, "# %d %d \n", &nx, &ny); + if (count < 2) { + fprintf(stderr, "Error while reading the input file!\n"); + MPI_Abort(MPI_COMM_WORLD, -1); + } + + parallel_setup(parallel, nx, ny); + set_field_dimensions(temperature1, nx, ny, parallel); + set_field_dimensions(temperature2, nx, ny, parallel); + + /* Allocate arrays (including ghost layers) */ + temperature1->data = new double[(temperature1->nx + 2) * (temperature1->ny + 2)]; + temperature2->data = new double[(temperature1->nx + 2) * (temperature1->ny + 2)]; + + inner_data = new double[temperature1->nx * temperature1->ny]; + + if (parallel->rank == 0) { + /* Full array */ + full_data = new double [nx * ny]; + + /* Read the actual data */ + for (int i = 0; i < nx; i++) { + for (int j = 0; j < ny; j++) { + ind = i * ny + j; + count = fscanf(fp, "%lf", &full_data[ind]); + } + } + } else { + /* Dummy array for full data. Some MPI implementations + * require that this array is actually allocated... */ + full_data = new double[1]; + } + + nx_local = temperature1->nx; + ny_local = temperature1->ny; + + MPI_Scatter(full_data, nx_local * ny, MPI_DOUBLE, inner_data, + nx_local * ny, MPI_DOUBLE, 0, MPI_COMM_WORLD); + + /* Copy to the array containing also boundaries */ + for (int i = 0; i < nx_local; i++) + memcpy(&temperature1->data[(i + 1) * (ny_local + 2) + 1], &inner_data[i * ny_local], + ny * sizeof(double)); + + /* Set the boundary values */ + for (int i = 1; i < nx_local + 1; i++) { + temperature1->data[i * (ny_local + 2)] = temperature1->data[i * (ny_local + 2) + 1]; + temperature1->data[i * (ny_local + 2) + ny + 1] = temperature1->data[i * (ny_local + 2) + ny]; + } + for (int j = 0; j < ny + 2; j++) { + temperature1->data[j] = temperature1->data[ny_local + j]; + temperature1->data[(nx_local + 1) * (ny_local + 2) + j] = + temperature1->data[nx_local * (ny_local + 2) + j]; + } + + copy_field(temperature1, temperature2); + + delete[] full_data; + delete[] inner_data; + // free(full_data); + // free(inner_data); + fclose(fp); +} diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/main.cpp b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/main.cpp new file mode 100644 index 000000000..4235e9835 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/main.cpp @@ -0,0 +1,107 @@ +/* Heat equation solver in 2D. */ + +#include +#include +#include +#include +#include + +#if defined(OMPI_HAVE_MPI_EXT_CUDA) && OMPI_HAVE_MPI_EXT_CUDA +#include /* Needed for CUDA-aware check */ +#endif + +#include "heat.h" + +int main(int argc, char **argv) +{ + double a = 0.5; //!< Diffusion constant + field current, previous; //!< Current and previous temperature fields + + double dt; //!< Time step + int nsteps; //!< Number of time steps + + int image_interval = 1500; //!< Image output interval + + parallel_data parallelization; //!< Parallelization info + + double dx2, dy2; //!< Delta x and y squared + + double average_temp; //!< Average temperature + + double start_clock, stop_clock; //!< Time stamps + + + MPI_Init(&argc, &argv); + + bool has_support_for_gpu_aware_mpi = false; +#if defined(OMPI_HAVE_MPI_EXT_CUDA) && OMPI_HAVE_MPI_EXT_CUDA + has_support_for_gpu_aware_mpi = (bool)MPIX_Query_cuda_support(); +#else + if (const char *env_gpu_mpi = std::getenv("MPICH_GPU_SUPPORT_ENABLED")) { + has_support_for_gpu_aware_mpi = (bool)std::atoi(env_gpu_mpi); + } +#endif + + if (!has_support_for_gpu_aware_mpi) { + printf("GPU aware MPI required\n"); + fflush(stdout); + MPI_Abort(MPI_COMM_WORLD, 5); + } + initialize(argc, argv, ¤t, &previous, &nsteps, ¶llelization); + + /* Output the initial field */ + write_field(¤t, 0, ¶llelization); + + average_temp = average(¤t); + if (parallelization.rank == 0) { + printf("Average temperature at start: %f\n", average_temp); + } + + + /* Largest stable time step */ + dx2 = current.dx * current.dx; + dy2 = current.dy * current.dy; + dt = dx2 * dy2 / (2.0 * a * (dx2 + dy2)); + + /* Get the start time stamp */ + start_clock = MPI_Wtime(); + + /* Copy fields to device */ + enter_data(¤t, &previous); + + /* Time evolve */ + for (int iter = 1; iter <= nsteps; iter++) { + exchange(&previous, ¶llelization); + evolve(¤t, &previous, a, dt); + if (iter % image_interval == 0) { + update_host(¤t); + write_field(¤t, iter, ¶llelization); + } + /* Swap current field so that it will be used + as previous for next iteration step */ + swap_fields(¤t, &previous); + } + + update_host(&previous); + stop_clock = MPI_Wtime(); + + /* Average temperature for reference */ + average_temp = average(&previous); + + /* Determine the CPU time used for the iteration */ + if (parallelization.rank == 0) { + printf("Iteration took %.3f seconds.\n", (stop_clock - start_clock)); + printf("Average temperature: %f\n", average_temp); + if (argc == 1) { + printf("Reference value with default arguments: 59.281239\n"); + } + } + + /* Output the final field */ + write_field(&previous, nsteps, ¶llelization); + + finalize(¤t, &previous); + MPI_Finalize(); + + return 0; +} diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/setup.cpp b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/setup.cpp new file mode 100644 index 000000000..d73325d37 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/setup.cpp @@ -0,0 +1,201 @@ +/* Setup routines for heat equation solver */ + +#include +#include +#include +#include +#include +//#include + +#include "heat.h" + + +#define NSTEPS 500 // Default number of iteration steps + +/* Initialize the heat equation solver */ +void initialize(int argc, char *argv[], field *current, + field *previous, int *nsteps, parallel_data *parallel) +{ + /* + * Following combinations of command line arguments are possible: + * No arguments: use default field dimensions and number of time steps + * One argument: read initial field from a given file + * Two arguments: initial field from file and number of time steps + * Three arguments: field dimensions (rows,cols) and number of time steps + */ + + + int rows = 2000; //!< Field dimensions with default values + int cols = 2000; + + char input_file[64]; //!< Name of the optional input file + + int read_file = 0; + + *nsteps = NSTEPS; + + switch (argc) { + case 1: + /* Use default values */ + break; + case 2: + /* Read initial field from a file */ + strncpy(input_file, argv[1], 64); + read_file = 1; + break; + case 3: + /* Read initial field from a file */ + strncpy(input_file, argv[1], 64); + read_file = 1; + + /* Number of time steps */ + *nsteps = atoi(argv[2]); + break; + case 4: + /* Field dimensions */ + rows = atoi(argv[1]); + cols = atoi(argv[2]); + /* Number of time steps */ + *nsteps = atoi(argv[3]); + break; + default: + printf("Unsupported number of command line arguments\n"); + exit(-1); + } + + if (read_file) { + read_field(current, previous, input_file, parallel); + } else { + parallel_setup(parallel, rows, cols); + set_field_dimensions(current, rows, cols, parallel); + set_field_dimensions(previous, rows, cols, parallel); + generate_field(current, parallel); + allocate_field(previous); + copy_field(current, previous); + } +} + +/* Generate initial temperature field. Pattern is disc with a radius + * of nx_full / 6 in the center of the grid. + * Boundary conditions are (different) constant temperatures outside the grid */ +void generate_field(field *temperature, parallel_data *parallel) +{ + int ind; + double radius; + int dx, dy; + + /* Allocate the temperature array, note that + * we have to allocate also the ghost layers */ + temperature->data = new double [(temperature->nx + 2) * (temperature->ny + 2)]; + + + /* Radius of the source disc */ + radius = temperature->nx_full / 6.0; + for (int i = 0; i < temperature->nx + 2; i++) { + for (int j = 0; j < temperature->ny + 2; j++) { + ind = i * (temperature->ny + 2) + j; + /* Distance of point i, j from the origin */ + dx = i + parallel->rank * temperature->nx - + temperature->nx_full / 2 + 1; + dy = j - temperature->ny / 2 + 1; + if (dx * dx + dy * dy < radius * radius) { + temperature->data[ind] = 5.0; + } else { + temperature->data[ind] = 65.0; + } + } + } + + /* Boundary conditions */ + for (int i = 0; i < temperature->nx + 2; i++) { + temperature->data[i * (temperature->ny + 2)] = 20.0; + temperature->data[i * (temperature->ny + 2) + temperature->ny + 1] = 70.0; + } + + if (parallel->rank == 0) { + for (int j = 0; j < temperature->ny + 2; j++) { + temperature->data[j] = 85.0; + } + } + if (parallel->rank == parallel->size - 1) { + for (int j = 0; j < temperature->ny + 2; j++) { + temperature->data[(temperature->nx + 1) * (temperature->ny + 2) + j] = 5.0; + } + } +} + +/* Set dimensions of the field. Note that the nx is the size of the first + * dimension and ny the second. */ +void set_field_dimensions(field *temperature, int nx, int ny, + parallel_data *parallel) +{ + int nx_local; + + nx_local = nx / parallel->size; + + temperature->dx = DX; + temperature->dy = DY; + temperature->nx = nx_local; + temperature->ny = ny; + temperature->nx_full = nx; + temperature->ny_full = ny; +} + +void parallel_setup(parallel_data *parallel, int nx, int ny) +{ + MPI_Comm_size(MPI_COMM_WORLD, ¶llel->size); + MPI_Comm_rank(MPI_COMM_WORLD, ¶llel->rank); + + parallel_set_dimensions(parallel, nx, ny); + + parallel->nup = parallel->rank - 1; + parallel->ndown = parallel->rank + 1; + + if (parallel->nup < 0) { + parallel->nup = MPI_PROC_NULL; + } + if (parallel->ndown > parallel->size - 1) { + parallel->ndown = MPI_PROC_NULL; + } +} + +void parallel_set_dimensions(parallel_data *parallel, int nx, int ny) +{ + int nx_local; + + nx_local = nx / parallel->size; + if (nx_local * parallel->size != nx) { + printf("Cannot divide grid evenly to processors\n"); + MPI_Abort(MPI_COMM_WORLD, -2); + } + + /* + MPI_Comm intranodecomm; + int nodeRank, nodeProcs, devCount; + + MPI_Comm_split_type(MPI_COMM_WORLD, MPI_COMM_TYPE_SHARED, 0, MPI_INFO_NULL, &intranodecomm); + + MPI_Comm_rank(intranodecomm, &nodeRank); + MPI_Comm_size(intranodecomm, &nodeProcs); + + MPI_Comm_free(&intranodecomm); + + hipGetDeviceCount(&devCount); + + if (nodeProcs > devCount) { + printf("Not enough GPUs for all processes in the node.\n"); + MPI_Abort(MPI_COMM_WORLD, -2); + } + + hipSetDevice(nodeRank); +*/ +} + + +/* Deallocate the 2D arrays of temperature fields */ +void finalize(field *temperature1, field *temperature2) +{ + delete[] temperature1->data; + delete[] temperature2->data; +} + diff --git a/application-performance/demos/tau/02_compiler_instrumentation/src/hip/utilities.cpp b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/utilities.cpp new file mode 100644 index 000000000..37883dea6 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/src/hip/utilities.cpp @@ -0,0 +1,64 @@ +/* Utility functions for heat equation solver + * NOTE: This file does not need to be edited! */ + +#include +#include +#include +#include +#include + +#include "heat.h" + + +/* Copy data on temperature1 into temperature2 */ +void copy_field(field *temperature1, field *temperature2) +{ + assert(temperature1->nx == temperature2->nx); + assert(temperature1->ny == temperature2->ny); + memcpy(temperature2->data, temperature1->data, + (temperature1->nx + 2) * (temperature1->ny + 2) * sizeof(double)); +} + +/* Swap the data of fields temperature1 and temperature2 */ +void swap_fields(field *temperature1, field *temperature2) +{ + double *tmp; + tmp = temperature1->data; + temperature1->data = temperature2->data; + temperature2->data = tmp; + + tmp = temperature1->devdata; + temperature1->devdata = temperature2->devdata; + temperature2->devdata = tmp; +} + +/* Allocate memory for a temperature field and initialise it to zero */ +void allocate_field(field *temperature) +{ + // Allocate also ghost layers + temperature->data = new double [(temperature->nx + 2) * (temperature->ny + 2)]; + + // Initialize to zero + memset(temperature->data, 0.0, + (temperature->nx + 2) * (temperature->ny + 2) * sizeof(double)); +} + +/* Calculate average temperature */ +double average(field *temperature) +{ + double local_average = 0.0; + double average = 0.0; + + for (int i = 1; i < temperature->nx + 1; i++) { + for (int j = 1; j < temperature->ny + 1; j++) { + int ind = i * (temperature->ny + 2) + j; + local_average += temperature->data[ind]; + } + } + + MPI_Allreduce(&local_average, &average, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD); + average /= (temperature->nx_full * temperature->ny_full); + return average; +} + + diff --git a/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch b/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch new file mode 100644 index 000000000..0b1ac5592 --- /dev/null +++ b/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch @@ -0,0 +1,42 @@ +#!/bin/bash -l + +#SBATCH --account=project_465001194 +#SBATCH --job-name=hip_heat +#SBATCH --output=hip_heat.out%j +#SBATCH --error=hip_heat.err%j +#SBATCH --partition=small-g +#SBATCH --reservation=CSC_summer_school_gpu +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --gpus-per-node=8 +#SBATCH --mem=10G +#SBATCH --time=00:05:00 + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +cat << "EOF" > select_gpu +#!/bin/bash + +export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID +exec $* +EOF + +chmod +x ./select_gpu +CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" +export MPICH_GPU_SUPPORT_ENABLED=1 + +. ../sourceme.sh + +export TAU_TRACE=1 +export TRACEDIR=tautrace +[ -d $TRACEDIR ] || mkdir $TRACEDIR + +srun --cpu-bind=${CPU_BIND} \ + ./select_gpu \ + src/hip/heat_hip 10000 10000 5000 + +rm -rf ./select_gpu diff --git a/application-performance/demos/tau/README.md b/application-performance/demos/tau/README.md new file mode 100644 index 000000000..6e7a1c1ab --- /dev/null +++ b/application-performance/demos/tau/README.md @@ -0,0 +1,14 @@ +# Build + +1. run `. sourceme.sh` +2. cd to one of the subdirectories +3. Use `./build.sh` to build the code on a login node +4. `sbatch profile.sbatch` to profile the code or `sbatch trace.sbatch` to trace the code + +If you traced the code do +1. `cd tautrace` +2. `tau_treemerge.pl` +3. `tau_trace2json tau.trc tau.edf -chrome -ignoreatomic -o app.json` +4. copy the app.json to your laptop (or use lumi.csc.fi) +5. go to `ui.perfetto.dev` +6. Open trace file `app.json` diff --git a/application-performance/demos/tau/sourceme.sh b/application-performance/demos/tau/sourceme.sh new file mode 100644 index 000000000..8bfcde205 --- /dev/null +++ b/application-performance/demos/tau/sourceme.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +export TAU=/projappl/project_465001194/apps/tau/2.33.1 +export TAU_LIB=$TAU/craycnl/lib +export PATH=$TAU/craycnl/bin:$PATH From 2be9dbf6ab989365ef95110ee7bb1c700a18ad59 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Fri, 28 Jun 2024 15:14:41 +0300 Subject: [PATCH 07/10] Add short example of faster memory --- application-performance/docs/02-gpu-performance.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/application-performance/docs/02-gpu-performance.md b/application-performance/docs/02-gpu-performance.md index 5b52d9dfc..972c077af 100644 --- a/application-performance/docs/02-gpu-performance.md +++ b/application-performance/docs/02-gpu-performance.md @@ -125,6 +125,17 @@ while (1) { Keep the data in faster memory + +```cpp +__global__ void tiled_mat_mul(float *a, float *b, float *c) { + __shared__ float tileA[64]; + __shared__ float tileB[64]; + // Load data from a and b to shared memory and compute c + // while reusing the shared memory by the threads in one block +} +``` + + ::: ::: {.column width="70%"} From 7c4507ed03d7ec8feac6ac0e23dd73c00797654c Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Fri, 28 Jun 2024 16:20:05 +0300 Subject: [PATCH 08/10] Change from full node run to 2 gpu run --- .../tau/01_no_instrumentation/profile.sbatch | 21 ++++--------------- .../tau/01_no_instrumentation/trace.sbatch | 21 ++++--------------- .../profile.sbatch | 19 +++-------------- .../02_compiler_instrumentation/trace.sbatch | 19 +++-------------- application-performance/demos/tau/README.md | 2 +- 5 files changed, 15 insertions(+), 67 deletions(-) diff --git a/application-performance/demos/tau/01_no_instrumentation/profile.sbatch b/application-performance/demos/tau/01_no_instrumentation/profile.sbatch index ac50af711..51c1b793e 100644 --- a/application-performance/demos/tau/01_no_instrumentation/profile.sbatch +++ b/application-performance/demos/tau/01_no_instrumentation/profile.sbatch @@ -7,8 +7,8 @@ #SBATCH --partition=small-g #SBATCH --reservation=CSC_summer_school_gpu #SBATCH --nodes=1 -#SBATCH --ntasks-per-node=8 -#SBATCH --gpus-per-node=8 +#SBATCH --ntasks-per-node=2 +#SBATCH --gpus-per-node=2 #SBATCH --mem=10G #SBATCH --time=00:05:00 @@ -18,15 +18,6 @@ ml PrgEnv-cray ml craype-accel-amd-gfx90a ml rocm/5.4.6 -cat << "EOF" > select_gpu -#!/bin/bash - -export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID -exec $* -EOF - -chmod +x ./select_gpu -CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" export MPICH_GPU_SUPPORT_ENABLED=1 . ../sourceme.sh @@ -35,11 +26,7 @@ export TAU_PROFILE=1 export PROFILEDIR=tauprofile [ -d $PROFILEDIR ] || mkdir $PROFILEDIR -srun --cpu-bind=${CPU_BIND} \ - ./select_gpu \ - tau_exec \ +srun tau_exec \ -T mpi,rocprofiler \ -ebs \ - src/hip/heat_hip 10000 10000 5000 - -rm -rf ./select_gpu + src/hip/heat_hip 4000 4000 5000 diff --git a/application-performance/demos/tau/01_no_instrumentation/trace.sbatch b/application-performance/demos/tau/01_no_instrumentation/trace.sbatch index 845fe580f..3e865b527 100644 --- a/application-performance/demos/tau/01_no_instrumentation/trace.sbatch +++ b/application-performance/demos/tau/01_no_instrumentation/trace.sbatch @@ -7,8 +7,8 @@ #SBATCH --partition=small-g #SBATCH --reservation=CSC_summer_school_gpu #SBATCH --nodes=1 -#SBATCH --ntasks-per-node=8 -#SBATCH --gpus-per-node=8 +#SBATCH --ntasks-per-node=2 +#SBATCH --gpus-per-node=2 #SBATCH --mem=10G #SBATCH --time=00:05:00 @@ -18,15 +18,6 @@ ml PrgEnv-cray ml craype-accel-amd-gfx90a ml rocm/5.4.6 -cat << "EOF" > select_gpu -#!/bin/bash - -export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID -exec $* -EOF - -chmod +x ./select_gpu -CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" export MPICH_GPU_SUPPORT_ENABLED=1 . ../sourceme.sh @@ -35,10 +26,6 @@ export TAU_TRACE=1 export TRACEDIR=tautrace [ -d $TRACEDIR ] || mkdir $TRACEDIR -srun --cpu-bind=${CPU_BIND} \ - ./select_gpu \ - tau_exec \ +srun tau_exec \ -T mpi,roctracer \ - src/hip/heat_hip 10000 10000 5000 - -rm -rf ./select_gpu + src/hip/heat_hip 4000 4000 5000 diff --git a/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch b/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch index 1060f9311..7b335cac5 100644 --- a/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch +++ b/application-performance/demos/tau/02_compiler_instrumentation/profile.sbatch @@ -7,8 +7,8 @@ #SBATCH --partition=small-g #SBATCH --reservation=CSC_summer_school_gpu #SBATCH --nodes=1 -#SBATCH --ntasks-per-node=8 -#SBATCH --gpus-per-node=8 +#SBATCH --ntasks-per-node=2 +#SBATCH --gpus-per-node=2 #SBATCH --mem=10G #SBATCH --time=00:05:00 @@ -18,15 +18,6 @@ ml PrgEnv-cray ml craype-accel-amd-gfx90a ml rocm/5.4.6 -cat << "EOF" > select_gpu -#!/bin/bash - -export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID -exec $* -EOF - -chmod +x ./select_gpu -CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" export MPICH_GPU_SUPPORT_ENABLED=1 . ../sourceme.sh @@ -35,8 +26,4 @@ export TAU_PROFILE=1 export PROFILEDIR=tauprofile [ -d $PROFILEDIR ] || mkdir $PROFILEDIR -srun --cpu-bind=${CPU_BIND} \ - ./select_gpu \ - src/hip/heat_hip 10000 10000 5000 - -rm -rf ./select_gpu +srun src/hip/heat_hip 4000 4000 5000 diff --git a/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch b/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch index 0b1ac5592..00bf9fafa 100644 --- a/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch +++ b/application-performance/demos/tau/02_compiler_instrumentation/trace.sbatch @@ -7,8 +7,8 @@ #SBATCH --partition=small-g #SBATCH --reservation=CSC_summer_school_gpu #SBATCH --nodes=1 -#SBATCH --ntasks-per-node=8 -#SBATCH --gpus-per-node=8 +#SBATCH --ntasks-per-node=2 +#SBATCH --gpus-per-node=2 #SBATCH --mem=10G #SBATCH --time=00:05:00 @@ -18,15 +18,6 @@ ml PrgEnv-cray ml craype-accel-amd-gfx90a ml rocm/5.4.6 -cat << "EOF" > select_gpu -#!/bin/bash - -export ROCR_VISIBLE_DEVICES=$SLURM_LOCALID -exec $* -EOF - -chmod +x ./select_gpu -CPU_BIND="map_cpu:49,57,17,25,1,9,33,41" export MPICH_GPU_SUPPORT_ENABLED=1 . ../sourceme.sh @@ -35,8 +26,4 @@ export TAU_TRACE=1 export TRACEDIR=tautrace [ -d $TRACEDIR ] || mkdir $TRACEDIR -srun --cpu-bind=${CPU_BIND} \ - ./select_gpu \ - src/hip/heat_hip 10000 10000 5000 - -rm -rf ./select_gpu +srun src/hip/heat_hip 4000 4000 5000 diff --git a/application-performance/demos/tau/README.md b/application-performance/demos/tau/README.md index 6e7a1c1ab..0fe7d3311 100644 --- a/application-performance/demos/tau/README.md +++ b/application-performance/demos/tau/README.md @@ -10,5 +10,5 @@ If you traced the code do 2. `tau_treemerge.pl` 3. `tau_trace2json tau.trc tau.edf -chrome -ignoreatomic -o app.json` 4. copy the app.json to your laptop (or use lumi.csc.fi) -5. go to `ui.perfetto.dev` +5. go to `https://ui.perfetto.dev` 6. Open trace file `app.json` From b7ca383851067bd0456cccf82b94ea3383478c55 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Fri, 28 Jun 2024 20:40:44 +0300 Subject: [PATCH 09/10] Add example --- .../omniperf/cpu_gpu_synchronization/build.sh | 8 +++ .../omniperf/cpu_gpu_synchronization/main.cpp | 50 +++++++++++++++++++ .../cpu_gpu_synchronization/profile.sbatch | 23 +++++++++ 3 files changed, 81 insertions(+) create mode 100755 application-performance/demos/omniperf/cpu_gpu_synchronization/build.sh create mode 100644 application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp create mode 100644 application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch diff --git a/application-performance/demos/omniperf/cpu_gpu_synchronization/build.sh b/application-performance/demos/omniperf/cpu_gpu_synchronization/build.sh new file mode 100755 index 000000000..5c06d13b5 --- /dev/null +++ b/application-performance/demos/omniperf/cpu_gpu_synchronization/build.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +ml LUMI/23.09 +ml partition/G +ml rocm/5.4.6 +ml PrgEnv-cray/8.4.0 + +CC -xhip -pg -O2 main.cpp diff --git a/application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp b/application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp new file mode 100644 index 000000000..86e5e59df --- /dev/null +++ b/application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp @@ -0,0 +1,50 @@ +#include +#include + +__global__ void saxpy_(size_t n, float a, float *x, float *y, float *r) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + r[tid] = a * x[tid] + y[tid]; + } +} + +__global__ void init_data(size_t n, float *x, float *y) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + x[tid] = 2.3f * sin(tid); + y[tid] = 1.1f * cos(tid); + } +} + +void *gpu_allocate(size_t bytes) { + void *p = nullptr; + [[maybe_unused]] const auto result = hipMalloc(&p, bytes); + return p; +} + +int main() { + constexpr size_t n = 1 << 30; + constexpr size_t num_bytes = sizeof(float) * n; + constexpr float a = 3.4f; + + float *const x = static_cast(gpu_allocate(num_bytes)); + float *const y = static_cast(gpu_allocate(num_bytes)); + float *const r = static_cast(gpu_allocate(num_bytes)); + + constexpr dim3 blocks(32); + constexpr dim3 threads(256); + init_data<<>>(n, x, y); + + for (size_t i = 0; i < 10; i++) { + saxpy_<<>>(n, a, x, y, r); + [[maybe_unused]] const auto result = hipDeviceSynchronize(); + } + + hipFree(x); + hipFree(y); + hipFree(r); +} diff --git a/application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch b/application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch new file mode 100644 index 000000000..b34eae642 --- /dev/null +++ b/application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch @@ -0,0 +1,23 @@ +#!/bin/bash -l + +#SBATCH --account=project_465001194 +#SBATCH --job-name=cpu_gpu_sync +#SBATCH --output=cpu_gpu_sync.out%j +#SBATCH --error=cpu_gpu_sync.err%j +#SBATCH --partition=small-g +#SBATCH --reservation=CSC_summer_school_gpu +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=1 +#SBATCH --gpus-per-node=1 +#SBATCH --mem=10G +#SBATCH --time=00:30:00 + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +export PATH=/projappl/project_465001194/apps/omniperf/bin:$PATH + +srun omniperf profile -n cpu_gpu_sync -- ./a.out From 90b8e4923ab16d020fd79a092b2f6e2cd0373b43 Mon Sep 17 00:00:00 2001 From: Juhana Lankinen Date: Mon, 1 Jul 2024 16:35:02 +0300 Subject: [PATCH 10/10] Add gpu performance exercises/demos --- .../demos/omniperf/01_three_kernels/README.md | 19 +++++ .../build.sh | 0 .../demos/omniperf/01_three_kernels/main.cpp | 77 +++++++++++++++++++ .../omniperf/01_three_kernels/profile.sbatch | 23 ++++++ .../omniperf/02_strided_data_access/README.md | 19 +++++ .../omniperf/02_strided_data_access/build.sh | 8 ++ .../omniperf/02_strided_data_access/main.cpp | 64 +++++++++++++++ .../profile.sbatch | 8 +- .../omniperf/cpu_gpu_synchronization/main.cpp | 50 ------------ .../demos/omniperf/sourceme.sh | 9 +++ 10 files changed, 223 insertions(+), 54 deletions(-) create mode 100644 application-performance/demos/omniperf/01_three_kernels/README.md rename application-performance/demos/omniperf/{cpu_gpu_synchronization => 01_three_kernels}/build.sh (100%) create mode 100644 application-performance/demos/omniperf/01_three_kernels/main.cpp create mode 100644 application-performance/demos/omniperf/01_three_kernels/profile.sbatch create mode 100644 application-performance/demos/omniperf/02_strided_data_access/README.md create mode 100755 application-performance/demos/omniperf/02_strided_data_access/build.sh create mode 100644 application-performance/demos/omniperf/02_strided_data_access/main.cpp rename application-performance/demos/omniperf/{cpu_gpu_synchronization => 02_strided_data_access}/profile.sbatch (71%) delete mode 100644 application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp create mode 100644 application-performance/demos/omniperf/sourceme.sh diff --git a/application-performance/demos/omniperf/01_three_kernels/README.md b/application-performance/demos/omniperf/01_three_kernels/README.md new file mode 100644 index 000000000..79fdd83cb --- /dev/null +++ b/application-performance/demos/omniperf/01_three_kernels/README.md @@ -0,0 +1,19 @@ +# Build + +Build on the login node with `./build.sh` + +# Run + +Run with `sbatch profile.sbatch` + +# Analyze + +1. Go to www.lumi.csc.fi +2. Start a desktop session +3. Launch a terminal on the desktop session +4. cd to this directory +5. Do `. ../sourceme.sh` +6. run `omniperf analyze -p workloads/01_three_kernels/mi200/ --gui` +7. Open Firefox +8. Go to address `localhost:8050` +9. Analyze diff --git a/application-performance/demos/omniperf/cpu_gpu_synchronization/build.sh b/application-performance/demos/omniperf/01_three_kernels/build.sh similarity index 100% rename from application-performance/demos/omniperf/cpu_gpu_synchronization/build.sh rename to application-performance/demos/omniperf/01_three_kernels/build.sh diff --git a/application-performance/demos/omniperf/01_three_kernels/main.cpp b/application-performance/demos/omniperf/01_three_kernels/main.cpp new file mode 100644 index 000000000..31c39ba20 --- /dev/null +++ b/application-performance/demos/omniperf/01_three_kernels/main.cpp @@ -0,0 +1,77 @@ +#include +#include +#include + +__global__ void kernel1(size_t n, float *x, float *y) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + x[tid] = 0.666f * sin(tid); + y[tid] = 1.337f * cos(tid); + } +} + +__global__ void kernel2(size_t n, float a, float *x, float *y, float *r) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + r[tid] = a * x[tid] + y[tid]; + } +} + +__global__ void kernel3(size_t n, float a, float *x, float *y, float *r) { + size_t tid = threadIdx.x + blockIdx.x * blockDim.x; + const size_t stride = gridDim.x * blockDim.x; + + for (; tid < n; tid += stride) { + const float x1 = x[tid]; + const float x2 = x1 * x1; + const float x3 = x1 * x2; + const float x4 = x2 * x2; + + const float y1 = y[tid]; + const float y2 = y1 * y1; + const float y3 = y1 * y2; + const float y4 = y2 * y2; + // clang-format off + r[tid] = + 1.0f * a * x1 + - 2.0f * a * x2 + + 3.0f * a * x3 + - 4.0f * a * x4 + + 4.0f * a * y1 + - 3.0f * a * y2 + + 2.0f * a * y3 + - 1.0f * a * y4; + // clang-format on + } +} + +void *gpu_allocate(size_t bytes) { + void *p = nullptr; + [[maybe_unused]] const auto result = hipMalloc(&p, bytes); + return p; +} + +int main() { + constexpr size_t n = 1 << 30; + constexpr size_t num_bytes = sizeof(float) * n; + constexpr float a = 3.4f; + + float *const x = static_cast(gpu_allocate(num_bytes)); + float *const y = static_cast(gpu_allocate(num_bytes)); + float *const r = static_cast(gpu_allocate(num_bytes)); + + constexpr dim3 blocks(1024); + constexpr dim3 threads(1024); + kernel1<<>>(n, x, y); + kernel2<<>>(n, a, x, y, r); + kernel3<<>>(n, a, x, y, r); + [[maybe_unused]] auto t = hipDeviceSynchronize(); + + hipFree(x); + hipFree(y); + hipFree(r); +} diff --git a/application-performance/demos/omniperf/01_three_kernels/profile.sbatch b/application-performance/demos/omniperf/01_three_kernels/profile.sbatch new file mode 100644 index 000000000..2983511a8 --- /dev/null +++ b/application-performance/demos/omniperf/01_three_kernels/profile.sbatch @@ -0,0 +1,23 @@ +#!/bin/bash -l + +#SBATCH --account=project_465001194 +#SBATCH --job-name=01_three_kernels +#SBATCH --output=01_three_kernels.out%j +#SBATCH --error=01_three_kernelsname.err%j +#SBATCH --partition=small-g +#SBATCH --reservation=CSC_summer_school_gpu +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=1 +#SBATCH --gpus-per-node=1 +#SBATCH --mem=10G +#SBATCH --time=00:30:00 + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +export PATH=/projappl/project_465001194/apps/omniperf/bin:$PATH + +srun omniperf profile -n 01_three_kernels -- ./a.out diff --git a/application-performance/demos/omniperf/02_strided_data_access/README.md b/application-performance/demos/omniperf/02_strided_data_access/README.md new file mode 100644 index 000000000..79fdd83cb --- /dev/null +++ b/application-performance/demos/omniperf/02_strided_data_access/README.md @@ -0,0 +1,19 @@ +# Build + +Build on the login node with `./build.sh` + +# Run + +Run with `sbatch profile.sbatch` + +# Analyze + +1. Go to www.lumi.csc.fi +2. Start a desktop session +3. Launch a terminal on the desktop session +4. cd to this directory +5. Do `. ../sourceme.sh` +6. run `omniperf analyze -p workloads/01_three_kernels/mi200/ --gui` +7. Open Firefox +8. Go to address `localhost:8050` +9. Analyze diff --git a/application-performance/demos/omniperf/02_strided_data_access/build.sh b/application-performance/demos/omniperf/02_strided_data_access/build.sh new file mode 100755 index 000000000..5c06d13b5 --- /dev/null +++ b/application-performance/demos/omniperf/02_strided_data_access/build.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +ml LUMI/23.09 +ml partition/G +ml rocm/5.4.6 +ml PrgEnv-cray/8.4.0 + +CC -xhip -pg -O2 main.cpp diff --git a/application-performance/demos/omniperf/02_strided_data_access/main.cpp b/application-performance/demos/omniperf/02_strided_data_access/main.cpp new file mode 100644 index 000000000..d4b9799a9 --- /dev/null +++ b/application-performance/demos/omniperf/02_strided_data_access/main.cpp @@ -0,0 +1,64 @@ +#include +#include + +__global__ void init(size_t num_rows, float *a, float *b, float *c) { + const size_t col = threadIdx.x; + size_t row = threadIdx.y + blockIdx.x * blockDim.y; + const size_t row_stride = gridDim.x * blockDim.y; + + for (; row < num_rows; row += row_stride) { + const size_t i = col + row * blockDim.x; + a[i] = 1.0f; + b[i] = 2.0f; + } +} + +__global__ void row_major(size_t num_rows, float *a, float *b, float *c) { + const size_t col = threadIdx.x; + size_t row = threadIdx.y + blockIdx.x * blockDim.y; + const size_t row_stride = gridDim.x * blockDim.y; + + for (; row < num_rows; row += row_stride) { + const size_t i = col + row * blockDim.x; + c[i] = a[i] + b[i]; + } +} + +__global__ void col_major(size_t num_rows, float *a, float *b, float *c) { + const size_t col = threadIdx.x; + size_t row = threadIdx.y + blockIdx.x * blockDim.y; + const size_t row_stride = gridDim.x * blockDim.y; + + for (; row < num_rows; row += row_stride) { + const size_t i = row + col * num_rows; + c[i] = a[i] + b[i]; + } +} + +void *gpu_allocate(size_t bytes) { + void *p = nullptr; + [[maybe_unused]] const auto result = hipMalloc(&p, bytes); + return p; +} + +int main() { + constexpr size_t num_rows = 1 << 24; + constexpr size_t num_cols = 64; + constexpr size_t n = num_rows * num_cols; + constexpr size_t num_bytes = sizeof(float) * n; + + float *const a = static_cast(gpu_allocate(num_bytes)); + float *const b = static_cast(gpu_allocate(num_bytes)); + float *const c = static_cast(gpu_allocate(num_bytes)); + + constexpr dim3 blocks(1024); + constexpr dim3 threads(64, 16); + row_major<<>>(num_rows, a, b, c); + col_major<<>>(num_rows, a, b, c); + + [[maybe_unused]] auto t = hipDeviceSynchronize(); + + hipFree(a); + hipFree(b); + hipFree(c); +} diff --git a/application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch b/application-performance/demos/omniperf/02_strided_data_access/profile.sbatch similarity index 71% rename from application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch rename to application-performance/demos/omniperf/02_strided_data_access/profile.sbatch index b34eae642..1a2e77791 100644 --- a/application-performance/demos/omniperf/cpu_gpu_synchronization/profile.sbatch +++ b/application-performance/demos/omniperf/02_strided_data_access/profile.sbatch @@ -1,9 +1,9 @@ #!/bin/bash -l #SBATCH --account=project_465001194 -#SBATCH --job-name=cpu_gpu_sync -#SBATCH --output=cpu_gpu_sync.out%j -#SBATCH --error=cpu_gpu_sync.err%j +#SBATCH --job-name=02_row_col +#SBATCH --output=02_row_col.out%j +#SBATCH --error=02_row_col.err%j #SBATCH --partition=small-g #SBATCH --reservation=CSC_summer_school_gpu #SBATCH --nodes=1 @@ -20,4 +20,4 @@ ml rocm/5.4.6 export PATH=/projappl/project_465001194/apps/omniperf/bin:$PATH -srun omniperf profile -n cpu_gpu_sync -- ./a.out +srun omniperf profile -n 02_row_col -- ./a.out diff --git a/application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp b/application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp deleted file mode 100644 index 86e5e59df..000000000 --- a/application-performance/demos/omniperf/cpu_gpu_synchronization/main.cpp +++ /dev/null @@ -1,50 +0,0 @@ -#include -#include - -__global__ void saxpy_(size_t n, float a, float *x, float *y, float *r) { - size_t tid = threadIdx.x + blockIdx.x * blockDim.x; - const size_t stride = gridDim.x * blockDim.x; - - for (; tid < n; tid += stride) { - r[tid] = a * x[tid] + y[tid]; - } -} - -__global__ void init_data(size_t n, float *x, float *y) { - size_t tid = threadIdx.x + blockIdx.x * blockDim.x; - const size_t stride = gridDim.x * blockDim.x; - - for (; tid < n; tid += stride) { - x[tid] = 2.3f * sin(tid); - y[tid] = 1.1f * cos(tid); - } -} - -void *gpu_allocate(size_t bytes) { - void *p = nullptr; - [[maybe_unused]] const auto result = hipMalloc(&p, bytes); - return p; -} - -int main() { - constexpr size_t n = 1 << 30; - constexpr size_t num_bytes = sizeof(float) * n; - constexpr float a = 3.4f; - - float *const x = static_cast(gpu_allocate(num_bytes)); - float *const y = static_cast(gpu_allocate(num_bytes)); - float *const r = static_cast(gpu_allocate(num_bytes)); - - constexpr dim3 blocks(32); - constexpr dim3 threads(256); - init_data<<>>(n, x, y); - - for (size_t i = 0; i < 10; i++) { - saxpy_<<>>(n, a, x, y, r); - [[maybe_unused]] const auto result = hipDeviceSynchronize(); - } - - hipFree(x); - hipFree(y); - hipFree(r); -} diff --git a/application-performance/demos/omniperf/sourceme.sh b/application-performance/demos/omniperf/sourceme.sh new file mode 100644 index 000000000..bf2e0152c --- /dev/null +++ b/application-performance/demos/omniperf/sourceme.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +ml LUMI/23.09 +ml partition/G +ml PrgEnv-cray +ml craype-accel-amd-gfx90a +ml rocm/5.4.6 + +export PATH=/projappl/project_465001194/apps/omniperf/bin:$PATH