nitroxcalc/src/0000775000175000017500000000000014727310114013047 5ustar salvosalvonitroxcalc/src/calcwrapper.h0000664000175000017500000000203414727310114015522 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ #ifndef CALCWRAPPER_H #define CALCWRAPPER_H #include #include class CalcWrapper : public QObject { Q_OBJECT public: Q_INVOKABLE QString mod(int ean); Q_INVOKABLE QString bod(int ean); Q_INVOKABLE QString ead(int ean, int depth); }; #endif // CALCWRAPPER_H nitroxcalc/src/calcwrapper.cpp0000664000175000017500000000271714727310114016065 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ #include "calcwrapper.h" #include "calc.h" QString CalcWrapper::mod(int ean) { if (ean < 21 || ean > 40) { return QString(" --- "); } return QString::number(maximum_operative_depth(ean)) + QString('m'); } QString CalcWrapper::bod(int ean) { if (ean < 21 || ean > 40) { return QString(" --- "); } return QString::number(best_operative_depth(ean, 1)) + QString('m'); } QString CalcWrapper::ead(int ean, int depth) { if (ean < 21 || ean > 40 || depth < 5) { return QString(" --- "); } int d = equivalent_air_depth(ean, depth); if (depth >= maximum_operative_depth(ean)) { return QString("Too deep!"); } return QString::number(d) + QString('m'); } nitroxcalc/src/calc.h0000664000175000017500000000342614727310114014127 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ #ifndef CALC #define CALC /** * @brief equivalent_air_depth * Calculates the equivalent depth for a planned * nitrox dive. * * The parameters are the used gas and the planned * depth. It returns the equivalent depth on air. * * @param ean, in % * For example 21 is normal air, and 100 is pure O₂ * @param depth * Expressed in meters * @return * The equivalent depth on an air dive, in meters */ int equivalent_air_depth(int ean,double depth); /** * @brief maximum_operative_depth * Returns the maximum possible depth reacheable * using a certain mix * @param ean, in % * For example 21 is normal air, and 100 is pure O₂ * @return * expressed in meters */ int maximum_operative_depth(int ean); /** * @brief best_operative_depth * same as maximum_operative_depth but returns the * depth that is best for the gas mix * @param ean * @param factors * Adding factors to the count increases the safety * margin by 0.1 atm * @return */ int best_operative_depth(int ean, unsigned int factors = 0); #endif // CALC nitroxcalc/src/calc.cpp0000664000175000017500000000256214727310114014462 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ #include #include "calc.h" #define MAX_PO2 1.6 //atm static int best_depth(int ean, double factors) { double o2 = (double)ean / 100; double margin = (factors) / 10; double pressure = (MAX_PO2 - margin) / o2; return (int)floor((pressure - 1) * 10); } int maximum_operative_depth(int ean) { return best_depth(ean, 0); } int best_operative_depth(int ean, unsigned int factors) { return best_depth(ean, factors+1); } int equivalent_air_depth(int ean, double depth) { //Amount of nitrogen in the mix. [0, 1] double n = 1-((double)ean/100); return (int)floor(((n*(depth+10)) / 0.79) - 10); } nitroxcalc/src/main.cpp0000664000175000017500000000216714727310114014505 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ #include #include #include #include "calcwrapper.h" int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); CalcWrapper calc; QQmlApplicationEngine engine; engine.rootContext()->setContextProperty("calc", &calc); engine.load(QUrl(QStringLiteral("qrc:/ui/main.qml"))); return app.exec(); } nitroxcalc/src/ui.qrc0000664000175000017500000000047014727310114014174 0ustar salvosalvo ui/background.jpg ui/Background.qml ui/bubble.png ui/FormLabel.qml ui/main.qml ui/sparkleSize.png ui/UI.qml nitroxcalc/src/ui/0000775000175000017500000000000014727310114013464 5ustar salvosalvonitroxcalc/src/ui/Background.qml0000664000175000017500000000363614727310114016266 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ import QtQuick 2.0 import QtQuick.Particles 2.0 Rectangle { color: "#0170FE" Image { source: "background.jpg" fillMode: Image.PreserveAspectCrop anchors.fill: parent } Timer { interval: 8000 triggeredOnStart: true repeat: true running: true onTriggered: { emitter.burst(50); } } MouseArea { anchors.fill: parent acceptedButtons: Qt.LeftButton | Qt.RightButton } ParticleSystem { id: particles running: true } ImageParticle { anchors.fill: parent system: particles source: "bubble.png" sizeTable: "sparkleSize.png" alpha: 0 colorVariation: 0.6 } Rectangle { width: parent.width height: 5 anchors.bottom: parent.bottom opacity: 0 Emitter { id: emitter anchors.fill: parent system: particles emitRate: 3 lifeSpan: 30000 size: 20 endSize: 30 velocity: PointDirection {y: -72; yVariation: 24} sizeVariation: 10 } } } nitroxcalc/src/ui/sparkleSize.png0000664000175000017500000000057214727310114016472 0ustar salvosalvoPNG  IHDRl pHYs aFtEXtSoftwareAdobe ImageReadyqe<IDAT(ݐJP߄R)v"N[@ŹafqvR|DHCBI%WBn.8s{"t]/S $[@e@buj+%$o@v_r+VǏF+z}Od-VFq(7M9 9.SIA%G# hz\TcY۴/&=erZS_V\r;<{a&TDO%v dk7 :wз -Z3pc:5dq g1QSJ=gNQCN9`X[r Ue%AaEG Co/ =R #PyP3jd]i}yo R}0KdiYw8"ziנEXU|nxyU7iR}J.N#ۓ¦'sdJ6y5;q,rHFK˛{wt<ƭ\UML+:|umInX[O-\zyj,֭[^lpC+}VRi3 xn&Rp;U'OjƮPf# LiH{D1 ֥Q*ߊޞ1I.P =xy]kM#QQɜTQ,hJ((@%#(0TIKEK))hR`%QR0`%QR% bQKIRJ)i*%,(c(`(%- ET))hQE (C ()0() (@(@QEhxԠ`W&i)RKM+NM' "9FsR4 XZp4R"ՁtH KU+?DeS ,@`Q%1MD&޾n"FO/ diRCއW]0!e ӾrĖ+:@ 4]Z oFJ'p#>:i4r!R5TW(I2RWEqLE9R撁HCR,P1{T4LM''`a9M!,3\0U*TEUTKn9UY5c`G1@Bri[JW?6 eKkjw1A 1&j,,Tg\5SX6+2rxsNtjXXJKE1bao.{4:$/ޡ63NJ)" r}}v3PsʸRy4R.>f{fK%.5zg֫HQw> y[8q#+5 d@U9ܥ$`֙!ldq?c`mL(Kn{tR]J*RF̠џ{UI JO#O24̀gLw;: k!P`f+hin alL y k[ mylF5Ӭ;V- t=:J_xs:3ѝ׌fXVVF54saYs 3CQ3b2=QZRƪ"VIf $aRan)G&gxzN1z$Bp)3x8bM*\U֢ ܎b0J6觲zS+ɜ\]aR$xR ,A3;i1dt8s6O)e\28p0}(PQv*j2d89>Ԙ P9(͕_<  ɶ17mlB+`%~O&PR(f[pqұtCl*Ax4&H(0 =j*SHhڝwOY AK{BAwV,l&XjB"3E#IR yua(JGJiܘ[X#i2EU,mJZn%-M&pXHMgdw^֫1.i \d*猂(;Pxr !e9]%`#Ғcj0T0/;1L9aMa(c@5EQE%-% (J(QEKQEK(1(c(`%QR%QP%QR))i*F%,)*XŠ( ET))i)QE# JZ)0((%-J)hQE %QH(0)QE (/IE ;ED)94 ZN($ @yn斚MH S )PN )tR@ J@F zIIBqE NEQb F)h ŢzR 4RSHz@“4'4RSL Ю3j*=AK2UK]FE^FF~)AN6i{KP'o i ĀsNo?/5vlrߕz8|;sQHش@`RFv1TPTC(;ivii)Ev#1h0@W+ qA# 'aM+!ێ)֊Jbͥsy+`*ppz`;=OQ^Hto UiF~c{ P*\AgbF I#t52(1P7Ǩ nN!E_)1+&t2 duoAD/r^rzPwu#Jܗn^`╀*zabGq=0 A-H=Ҙ0T46]2-0FGLød`ya$GzkWLNRݫPzXiJ{ǚJH±#OSLm%?iC⒡1(T 3EPKu"qS+Ң(]+|i1@N=IlJ)i+QQH E-%KRRTE-%H%-%KRRT0ZJ1(c(`%,aIKE@ IKEKQEK(C () ((ETER(`QE!QHRR)QE(@QEwJ/Q_013@)6ưVK#'Nj0i&J@4SQ[I i--! RgizQJJ`R@)k{ƛP@#b*H DOL1I9Nm m&˙ PfK{qqE4}Wo{qC)hQBQKLP1 cE-!1.~O RS^0ܹB;0.}J#Qڝ;SjEClہVdO5NF$_ִ]> #QcK CCU_*pEt/ wfqFEy$L]7fdh^4J;iѰe8"L+βJ8bjPzlD驭Mx4WRG<{դFߙyncJk -R>qR+t tj[3'QڎVԝqE%tPh Gz(HcʤWpEIm=~dC9_^)7er'nÌDrFswuSt⧝䌘cXEFF1I;Wj '${*\[]Gk:¨z-ISbHҜ `_4i_0gh+>_- J%+F^ZXmT[fJ4rO&T+O8+"~e=jU#I)֛i  bp&))IRqAr:ZyM5w&MOLv><9)$V$J)i((0(IKEC))hc1))h`%%-%CRRRJJZJ0c JZ*X IKEKQEKQE QHaETQEK) ))i)RRTQEQIRER`%( (’)QEQNS_\4+IPvh384$ <T}M 9C!s..i)jp(+Kv籫Q€HBQyoD%؁(ю())qGj1(RJZJ@4Z@K2MY}rx<㊣)(dJV5.+/ ,vE:zYH[Xng?KM- % F:<ۆ =nNI^t7(<1K `W<VRљs95tu>a@fY$wr{ ˚ԫrݮ:iVRљHRi擽13HiĎP4W@@V52RB1XsUבmKtA)(LfZHFT>R{htJJ*j$XH+X@SK_OD)IȢBJu&ycMM%!G~))h1))i) (TjUE @P҃WW."rǁh0β4ĕkvP=s- ' $uK+ڠhXvO1QzBc=*r)2K[ȳC sրjHM)429S⹧ޤZf@JW`RAqL`zTeJvßZnW84 NR2nE=dC@xMfL}+7.zӳ!]PA RӊJ@){SqAEb (sEQ(oN}hӟJ;RcGz\ JcjJ .(;SqNZcQO ̄7^ƧRiIYN Ὢ"Œ y qU-Œ ($J){I֘ĢPIKE!sړԔJCN⒐KIR%%-%K(CE,b5<2nN3ګѓJ( rpQ]y,09UrS~^Ƃo|sT r}'#+^zhH]˜wZ'NrQTȮ,D,ӱ!Mw.٤4fV-$7|M*h(SrB%XE.N%{ )#g4SVQERR0bRRRJJZ*XĤJJZJIKECT))i*XĢRRT1%-,c (QEKQE,)40`QE&(ER(QHQIQEK)RRTQ@QH@ ӻRzW>Z&{rk.{*`Lzz0qI1)h!{P#p|0Bd p(<(ҍi{ѰlFi06E(oQ) n9# B8qޛi[4! ϭ&qH"KxWiN~FHJߛP2)͝( IZNQKI@ \uҎhQE J)qIL`i)i(@ĤILi):Rv{P1 h E-'j%iRIKA1 %/J)IJi1RP1 6HECN%KHT4J7WMJY`b`бB9c$ Ty-޹ZnE|7"53#FxSry5!ܟb9zq`+L$bf=( 3SjT/֟]k2%>Q ZZ+E%dgq))Ԕ J)i*@J)i)1ET(c JZJQE bQE,bQE,*XĤJ( aETE,(c(`,aETRRR) J(EPIKEH ERRZB*XQH*Š(AERQE% ( KtLvGi0vRg P ݩئw4):E)(HKLaEPRt4cCIKERnh))J - JJZJ`(bRRڀE%) CҒH}0INԌ))M%KPiM%K(CM4J1Ա4l0G5 JCXΜg-6"6D&41ۂ;ԜY-VF)qNʖq1IKE&%%-#@%%-%KRRIKIR# JZJIKIR%QR%QP))i*XĢ*XĢ* E-%KQEC(0c()1ETRRRQE,bQKIHKE6RRT JZJL(QEH E-% ZJERE&1(@bwj@zsHzP(5qr(1O e[@ ;R#5 qQ$M ri6yE7dGJ8O9AhQIS"(v&;#(T*qګZXpZfs8-8WҌ +ۧHjM#qޘizkQB=k=;S L:ARމn Bp)i4uH2j9~i$ЊVBKG Q [+aӣBt-5_2YJ籯RZTrG"2֖e{b`X6k29 4_cX֚+Dіu>`xyn^]rj5׫k9DhÒ ,Ӯ-I2AZVM1QO=+7Oc-hjK8Ι,,TGx7esP!i6sӚ6b3HvR?hv8]Xf=C5xR٨ٲsSZ#GЭ0PkSR=yqZ&6pą 9#7 y4ŖIvWn[iË>lZ wb qkIRz[z&.I1"ι|]sw$8pT\*Nj[9 q:S-?JJG^F$CzgíCYu&=g&ʹ=Aj9/!f<*w*-ܬT摔U`۷gJiyZ<^` ߊ#')5IRzXa ޕusDD"5 (̌ȫ(keøjcl0=j"#UX\\⟨H+)3zm^I|˺V󑿏J֬ KA'O9E~FpI5`G_gqb Ho5i2L3m΢[2²&M93$|/S\*Eg8h7s00EOXy4*[&[#8^{i1iQ 0Q “jn"0a޴>H9v9jpsg%2/EG5##2jc uF:BM\T;%7}~ح+)(Q1ԚSԒ٥Kaҟ#  AC⢬#ngZ|ϒZ2ՉĎ PNdRxmpw2*LI4ےDc: kJ{` ޚqZDFVC>.qKrR[bg[?b)B8"ll;H2^U}.8Y)rLI`1f Nv sWnUvr4qRW&Z8-r2ːkȂkftAP"EOSI:#blW-u,)>Mf!Sl!\}-SwU2~M"giYҦSQe=a;XK עICeduXOPA ̐ʪ1Ӛ8iۖw=ZT}2mpm)c%¶ΤeHsJ4hJSd,WCIr1zVX灝(Jc⠱;>|${T[ L%iK|Iv z9lISVswC,z>] FXۢ!U,uHz"`{7QE䷦}+TB.նdw^;0\܁bO[ %6'|7фejBmH%Je8 ԲBϼ BfqMs3+ԩ e%y$XaY9ٹLf itȒ>^y5մ@BـZ>ztFe`Tc+rGIty,;(\MZG!TtUv}:SzXzB+-M@C ԯj6@L esjnBw*KHzsҘ>@7(8LaV2Hי$NLhRGz*$,( 2K M9 J,*B;GcntS6 ڙ寕@LxpM-P3VK6xdqKN?+$'^YcRd\gvBFO&HH,@8br:bhaxۂqQ| ?zsM H8q=(RU^Ӡ1INlIM5,' bJZLsPJJZJ,bQE bJZ* HihhbRRHbRZ* ETJJZ*X ETETRRRRRT (J(J(QE,bQE,(QElaH)i*XQRIKEQR0%T9;)R⒖&.h汘i*]I~iֲ'bDb^̣4ndozʕj|<+NbM8M7IހuU 'A9'N&M>CHJŔ%-%-%飚]uAP ` DfT#4ÁQ⢛Ȓo޴-qߔrAKaVS o:l+ NZ_KiZ;ep[#ε4 i ;h.nLs e#G\05IOz[Mm}ԬNF9S[itDi#l:U ˨M59'7GWp\]tgS(=$*FSֱzF$йqeuK%daBk #K'M!*pOo,p\+j!S#l3Ң!iun<ȶ&ҴlծZYfT?z͊2)&gp=}yd-=" +6=WYNr{_Co4-R8TOҔ/#3|0+)PYt wOn=yߥz\kSRNXJZ;-z~¢[a1=Erpo-s5jڅվ{ҶL<5,Iy9m^n:i'/?kQdN*63X]cc1~^N3=ɫI{9imN OJϩ5 iznWkB#sƺ]6XWڽ TcN26<@I;dָ$^iji+|ߊЁj}S+k̒'*2jd ʉ28*k_-pۗ$U T=yYFWF5H #qHy=Wf%ɫV.f=hU|Oi*T u:uQj@J-mZL=RI4d$6vQkYōĈ s5LUJ9fcӍ*K[B\icQzw_\\B![x~hׂsֹ0UB{њ򸌐ý>6b< 9G"xWr0ɯ^gk6ROGZt_. S ?xUuP,Hf`dNTmNv1Kiϖ\Ө&pȁ8mZ7Yu mXbDM{S,, D;swѮsҒ0MT^H$ wjx-Z߫JֆXEd0eSK[h-ӃTpڧg-JvH|%{ng%x\-moG-9=SGwSt}IJ*kU%Ek̺"WOgI\~ɪJ|}ji{:{sj$o$yݴ"bHg1֝/mg>))_]RhڑtYH 2:x܅|e0Nvrj̶!(8RMjӰPC+UФ);$Lk-.lgi˦[[p;HǦ9'V>MXV$I&hU"dgcN h)X$rj%#aIF=k(וS"WlVQYjѽ P~= {u&$jIض +φ:W5~F=kH :U;\ )ʼXasy i\Z%%takhaIKIRJ(JCKEC# JZJETJ() ((1(IKEK))i*’*’RRT!BՔ1曚VM6oSDQJ*R NPz$IJNi)I=(Zm8 'QHN)3l䖂4+haI4Tvii5eDRu!n(4qIO!LQKE v(Hu4z! &blbRJ %\f( gҤhQZBrvIYKD$`j)bh;[TC*r*׏qn08hS~Ѿe^-W/IQ ԑц;X`USvnrrOz#!X7\qR4-y,僐 c旰"~)7'!A-dRs3@Ջw,cc =2Gi$,$S`q%{JndAe 2{ڥlt.;+kGZ3srG^'Y+_HB S*IW4it(`qڢy ` jW=ZL撗{WwBsBpNAS}nL󬋂T~/sUO<ӔE{'ret"Ԗda0\z})] l`3+\^.XLʅч*U{cfџ8tlUP msBm-6qfw.kUegTvá1}E\{Q]c)=Ett s'D\ݪ因0 ]BhA6͝nFp>ggc$I_U?tC fQu+eQKzEEڣ sUth&a` @@SO*F\=MV PB YBѽnviO[X0!-;Qr(zѲ*8 5 4o ]V;Y"gPbZjfkW֦8+sQ_$b:QS܌>u!{<' a*i/4V.$!MrS¯ `שR_=8l>ie{1#MC#fF](7&)kٽOpGkVyd*rMUes81Q*b y#ߵ_GN)T}O:Q⵶9ǭfHwӦ2[,sݪدUe*n+QJmS:ם)#t+N$b95 3ɧt;Ьe28qO'!_/ZVJz7I8(ZQaFp=EG#M m'"ϥ 8:ylW R.TAqMp]TJI'RGJ-UFdG95i֩"))œU֦$SB{Utp8T&V,ZM4 q޶mt;{+zUA|e1Vc׭'G I({9gRIdw&i 94/1NHP=}0GqSګ߯cgXm<.\6'QKɻ1HfsJr[DUFvcBy<ҒH8XN }Iޖ J(-IRSʂ8.7ߠΕ$RRnexEcB}IJJ'mH\ڛJsyiM&- ˜y4$)PT{ӮN|juʌ%MrnB+/QOT7Ҙ8SJV]K"P㨨Gjty'q=-*YZӝwRNyz3tӕˑKzT[W'O^S4nc$QE%n؂RRT%T%-%KlaE,aE!`)gf擰:BSKRsH,;4եR5,p³cKkpUF%֟гPB%lE孒Oumka*2ҹiyd$$O,5CV4nuYe'hfIipYqkߙԅ(d13HNm'9Ҹ.涸`81;Fj[Q}`n1M$)+ftRCJe(B,ъ0%s095'jҝK=A=i(\z/^jډE-%f0QK 6) ,ri0hZsJܯai*dK$ q뚱^ c90))mikODc`JMTRAK);8i#kW'~$isGZHGG)2HysNZ䓚oCN&iM68VbWM( 5DEiS:ӥ39:S Rʇ,4Pʖ,aV5#zqqݡԣhRQW6  !-PtJ:QE!C敘aLMd+ 1ғ:qJ%'k0 E(ќRQH4ȤZJ;Ri:@%0 (EP0((J((((((@E8LWb6XAw64Au1f-- fJVS RlM$% W"4`4Ii4i14hH..)1Ot5fIݪirxmhQ⛁ޚ] )⁌ҜLъNi XXsbIy28n)7`DI0*p.j9Ts֮A/#;dVϽw98c&];qJin&$sOc6Í=ED_mpNqNʖM+ikAm.04\1%MW$~czΤ-pUʑV(AQ#`1`9hN1Bs{\R+O*0 ҘxTw隉ǥM" 5M< K?FG'`Q'M+5>0@1iBR^=rR$la{UѼ}zKeP9ҥjdcԒ.Ȋ -e{E$bWeJY|$y$tFHc*HXƄKJϵ} ]BM?#q֥f GGj|rH#=@5u `FOer "=8ߥ4):1M0x֛F(4BJSKGjBhZkc ,bj@WAJqKJwmI2'$"4Ҵ'W&9h*>;ԭjuC ,0{S 6fS'ZHvCfk68)1N۴{&!TmFxNy5ӇvQvzT<'ҢiWtvqKKޛkɚz$)x4qK1(.x撐 ;R 4 4ғI@|SE($qvz|SqAIU9)IZz1ERHQE E!PyR҃%rh#MHhQELEQFh(((()QEQERR4Ӛ5b:QMau"@^X1EHHy74in ҚrISI6)isM*l,(4L;eKeXA9t ݩS&Fi3]4z~AZ,N[oHN W%$Ip`( qާKxT9*H늚k @FsZR LddsO} p2{ӟ0$) cךJ.M bL(5'*n`N1}*jO$ AXu1} ;F3JT/3\s =]KAF!hKcœ =6aǽ#ܶrBdI.dټ# 2ruM =|ݞ֣Q!8=A#1/pmB3XWaj[wr{uQ!k1RvI#K~?/?*;z{}2N=ՆU)p8Gp!jvi搩,2iGpdExj HZr29'NG>SleUb994 ;qJO5"94 }r*vbkQiz)8b\I@"nL<x*@zuG+zR \b m.)i)QK)@hȠJSԝ(@ (Z)QE(P0S@)HIHM!KIK@4s^4HZiY^*uHo$#\8I_>M4hJ`)mer8"H7.E]H퀡AҺkH>GcP]̬%|&:Tp"ö8#m~8gN\M'b+[ڳs#KfXcQ]QaRzgza-y?J0i6]  'ivhE=jƣm Yw7*yjɵ~qϜc ,[Nkkx$G TP玂N3')9q5f;ATV9lUԕmϩ$hm]Y&Gm#ڭv:@3a W/(@ n rkJԵ#`gZ1K515oF \܈$<$2CL6q݂x5N| nWu4nPH4^x$hPt#Gp 9W\ZֶԂ{?~’͌ MzR2J] P?g\?Z$9,zjvo1^޷RӰ:,ϻֳJ6 (TuW4g\S,}*K"o l HY?tgU)J-ާ1j9IAlU 7f(=K6:}jc \aW+,lz[f<(pw #+bÁM]M*b X6|ނBihM@фck$ +V aˆm{ԣ˂1 ʖ*ұzKMo䀫nDƧ)G=MV,CGZH'+"F-vTv3wE‘)ϭtd#CcE ְ0$wǥ: 6X]F/ sd']DU֩ʹr289Qm(|zxsWt*`jәpW)AQilwcU*\=3Z3 X?+c(Pz(M_bƲ \dPR[nmqqS;jV4[9 Dy$1M+U/i ԡ,$rMVx]9#ݷܠwϙߵZ[M֑VbSp9YZ< .z=Ca@21U+XC>쇋c=;ՉAޤ8#C4q"#\i_T_*kAaNT)&A%8j `@.]Iq.GTMCo]' 5m.۪ぎ 1sclI/=@U o!! 79aV!W1-bۅh֏18XN:,;@:m"iֻ\g5FdӁ#l]35֗PL^4}`Hu-edNhz ,g2%㨪7J լ.9'ֹ#5VW%qR5Wm|FqztƢْcg)2yWeBnAJL@Ϟxevk:j!|qP?e)'z~h:JSdW q> U- Ā;ul;io0y<{xڌ'Ts4L`8ȪrQZVrQ+28{NJЛO" q[֙|z5Ў[$ܤKitxVٸ@[;4+tCg*;tԂDawϽan-@b~* [r8j).ϵWqG+{2EVh'<գ<T9+ZJ/v(\ ,rzS#̙NۭC!+&Eh ؖ0L#bI5n^ LcUD[N"/˚8Flzz89 !n>s*J ɓM+>FF; C[4*sj2b~ќǥ6X(y4_B7>SK) 9#RxZbk*"iƘya@86(֝ɦ{T9⋌L更Noc@81SqM;i恈9<ӊ9n)hfd @49үR)&JJZ((QE JZ((b1K@ F)dQҐъSEKIJ53Fj@:\m1 ҭs4J < uI\RSLsPM$iM3q.i&<lO0M95*HaS+6<=)n:R*q="W cf#BsMFd~5`r9y ŀ8 kWI49jøl*Lw5j:*QjRS׽16i0*5E&_ )tz4+)\b3#]Fl"A#4@P>ꔖOp%c5d;*v=yJN.=XZe WӌV&.IsեxmʵГP~= o#.EBvEtRm69&BZ^Vݴq[Hh#&y/5$G&%;$g coE73HgKdWehO_zvEW V)2? z/8楦ÓiYngb 0ک ;яyp|߻RIk; [cc+Dn q{]=\[mP٬oʇ+W3KBdv9O1! jH[.rH@[f`H44Оhz˩(O~;ԒG=p [[](XCgh&H+{ϔlGQ2?ƥ*}辢{]^m< T7y>.K6i*|m3Ij[>oqT6wJ*vOVEf1Q-wW'ZDPd߽ao!8FrIgֳp>](OmKH˂r2j7YɎ:I;,qޯGl6mMSrb+n6zS%Y wU 6v$FHXzXDx-y>1n(R˜nqFgĂE?)<[GXQMv$ R` W:ᣂD)lsXRZi !- \854{٩вǸǡ)Z%I kB/nHCpA$p*ݴzЗCj5F~,LLV&icI9 |G4(wnI=꾋K%#q~L<8f4K5ø.oDF8ZHɌy?ZkIapGpܹ kmQBG)Nɺd)#*A}*I*(;0jӱi@dp2:X.2|`U"@y=N*gRY9#g)_R] >ϖ'9{Tv7 ؔf#;V^: ,|PHٙV+~|1#"HL{szךj!%XgMzWxmQ7+<ז̮:ˆ!sU5cNv= ,BZF@Y6ĺ@*Bg'f>f7q$gOJ$Qg"#=oZQ}{nX5vusW,W؂1i.&C?*bm21HA9> xUkc2pM=;䊻e MXQrzusH퐣T$6 vjGFqޣmf`~aS*݂|!85t׍%?**e)Neb Ѐɧ<Ҙ@Ȥ~$ ÑN20hpNMpb|E3UeNc0s]/,t;#RmB]38k&U'1?t7Q(sisEtɁREN#U̡ՑO,@S@!QC.HL\TG&)ُBbl唻zW=4^OZ`D8)ap0NŁM1ը%iL=i36RR%I43V9 830=*TT`p=9/[/Hܞ:T?֣AS^̤Rso#M!c..\ |@]zi@Gaj#+JdViH0[*HA ̱폹SFۜbHSrOWCLl#9$Vmp$}r^b d}iccn~SIF/K9>sQžGAN#$R7uQ٣m%܊Y*sJ895qƩ-'V-MBc~XHGF1Wb9u Bgc ''nd8bc?2YR7^kEoV}(ęer:AMToN6qt穧]L$cŽMT?ݗ,qUb%YO0)*7}sTcI ᴖL \mQV7\ :m1OgjMF3!辞Fsrj{Vb AV;8-=+`qR9u1,ީ`Ԣt_ isX^5z& [ \gjjBzJyEY6*8 \j)n ƻyMC$x8Pca>E¯ U+GT˻= EKisq+c<Ǐ%_CD%44JϹhyd#xYZڷb뮰 ngoS1櫝ݳ`G5w9PL;5v[ pqzTX22HJ2c}P8߹XU$*&.@ r* ~ܢL+ ppEw[!]x- ޺O U?.稨2;rC=ZE-.Fb#P: m#@Ьx?m5[pZmNp;#_ GkqqΖʸS$9pF?1P͂Ǧ*6bcejӤMB*홒FۀZ NIkM4=җ5' 8FVw!ǩo8nkZ)F;q+aCrq@85IXP=Gm6~O5ITmմATe=KpHFiٓװ-%ܠ:d8*FQ,"en`Lbrj(B;&: UF WIed: )c$SBd ( Em+tGF 58/cr495ra4+) zVHߏ}XHXqUNdԥ;2yjGci3HYP9#Z^؅ܱ`S#;w֬BA# Mˡ); ԮcP^6K*ĀmWclMRzVEyt.򧯭9FV\or}&=CTXom/-'l*㨮h$l>kwM5"6[pNTҳ=\B:5 ?n; }X`U>N-2ҡ$wށN7WHJ.`hև>&WQvVRe*(P:A$l!(I*#T,8M"ԭ ƛ¨(gXowFHST5Jə#f`kKfO 1:<[ 3Z}/Z9qD)W9;iN2;|zݬlV#h'N1ݤI r+}*Wᮬ̛kIICMwu<jY*_IU}9m/o lʵݎFFr+㺹I7C9khtyS~`OyDLk 38ѧ˱,8=I/UU;KcӚеt@ XVV'< MHhPIOSVӎ<`{֝dlq+)7YVnܥI,|}jfKU~v_zSlh \ڧ;ܥNC"d;A\rx`O5sVp|-N%'4W>X"~8| *K9a*HPEV@(x5NJUMn-B8GT7Jg՝5e$+8=MmjSңvsWK=RN[(]z985<xI/W=Ͷ#ޤVX|/ZQEY:΋Fv*szΘs2S˾X_|J{hb2,}^>NQeb+ Hn=>Q=i.'|I#2jXy*cY<#rҐ{ l!zKm(=%o8WPLĭOj pQ1GiQdlzzj6֡ìbpSo| o!u:a&iծk.KyKȣyyf=<oEtE ]++ГK Bkч4F8w)4'Dg@*C}j7aGJňis'~hI9~ 0=ϝʾV }iZ zX.N9Eo 0}3\ǐn +V9<ֲ>,u)|ΌdJA3-B#>65 I>r jd]Q"zY";HHPKevb"H8 w4{Z}ANvAڃZ{qDj=pލ}:LFv2;͎˴6TMZ">z♓JI"=y)6CԌJRft6QyQFA2L˥cF#*ZgȡXOCVC{vduf\5R j խEmF'-YNmD^g&̒Տ}*CQܓHJWJ-KxoDA#U=sި܃aKV⡅zrư{0I2x.8-ԚGk>VM hH<* Zֲ vUini; '$޵RpTq֩'tW!w3M6-;&u5#qާF_O984žqT2~'ҡ M='RB $*qzp,,#k5oy }n,GV`JkΡ#$<ڦRpУ%v3Q&$h װ];Ar^)6*5&'k6oDu GQfH~tb ro@yօ 2BqVGvniǍL]iUVh/*ҴZȫT}qϦjNWaÊƧ3՚DQjd7?)Z"%&#,>efC4"c`fC &| HcK6y~:_-a` 'h7meU+}3Yp`]БҜ|_2*#En!) V w\Ar{/kyFiLVw&b:SBv|Xatd\ְVX!?2GR8K!<ּjGyT Ng{J6zXS#I.TGBhb(+ŽI@vdF 59WP[vs޻xIot-%vc$uN095Xj<2;\ JsqOjWK4 @:f+*HS=h̀OfEcWD8v3Q=I‘y3e1YJh($ m]Fu6 sZ8IVBrxbXzMl`vr+-X@r֖lv3lPծȈW}+fcɭ[Ier9 kMYXs|K]b-`kXVAa PG<X[+XTƣH2i99iy(w)nB0GbGFB^Ic*&ERdDc- 5f5u-ҍ/i%&٫gen r:0B),nu);SާN,mүBX9NyvsLW}9Yf'$1G$PGRz 3H~ӊ J2x+P;vЦm\S4ޤLA ի-M;XmpAk[o.3QʙgZȥOZ>Aq1xB Ǩ ؂PΤ)\~≔SLYS#bdcӽ=$&)Ei&1WZE-@X{eZ蘖yK0\eJ1W Z{ɗy;{C^2y;o[3p3ZhNAy=rT[t1S=%T_Z6nS\u$haX~ }mtʍ˱z {0쩁(;3™XT?w?]tfȒ&Vpbz=yh/3:]Y{ 1ҫ~]F,\a&rcV PCYffj+̅J8j4krqTHqu}H#Mt+{{0՝f!8)zZ=k>I3VQψaNP3@ijpΞԎDG︕aE7p*E;bܮgEqk6Ӑ21N4=T -湹^wy( i]meU_Mo+%1Q\qK<ƥbaUS-Rr|9N\wlpYc*' @qHgQ~efE)(9̙4zq2Y-=32Z_1NJu%|"mfRQ]ϣOqoMI_5M뼹Y+u=N5dP8LUy0XP,ZGbkX1Ṇ޷>et'Ts#'҂J2ԋmCl9Rn'$oAL b% agJzu9zel  ɑQUp `;n}iPRj[j4viF0;};%iY\|r"f)avW *Z9^qtgd3!y.ϨT#E-6)NwIO\G1ڶ>Qcɓh1NO9gZzX$nRl-LL)8:}+zVp>oή)8YdSLf >ZF=3eVcLd`qVK-$"ldqX {"i |=ArVU'y~ }::evvUp5RRV$2wj` tQ%) *k*t|~*Ђ4K"r=}{[eFG!O?Ec~=ǝ28~jv>J+!S_JSU߽} ؊' 7,x])%>_ysLUW!#+9V֐[[[Y25z&)A@ޛק#wnhHm>V9IV$)|ƐqGրON) j`)ji$RsVa#SFi4j&9LSMOU#p84L&8@ QȦE! ޴&MzRRgf-74dAEH ɪ99+Qj^S|ze4!=6'#G,3dk-I5:>2اX5.kIERL=hI#*li*CĎq)Py{*y!NSM*Dӡg#Ն M$fQZ#5s;Wy^jf塢Td5r`qS#Q!^vA#5PV!i6%)T詒W-ڣf@Yٰsֹ&v:i2:u5]&7sMN%_vVBe)ɢ dEpK#*,Ȝڭjr9sPyZMVuwм]$ZY^=cw&FVbv贏8++XXis3D6QL[Յ#TґkpRB`f}J/l֪ |Zܦ#C$=ā秽T$.Wns4v?1c@m M}K;tET^]:֝*cқRpq=j;?(Z$tcvRi8H䐫ٮO-NۆyoZVRY@ Rhb7/u\MZemtQ@*+NWAYzN,Pa-Z{|zpl >"RXInfĈrg$2Mgݥ z֔<c)=ϋ|c *5i txܸXt1'szZ"[;F0;}JXmeFZѴo#8"0+{Z8 ڪV7ء\HܤJpXuofi3lzR#FAy[l p{ K#'1S#=4Os ` .x$5B]is$1W'jƱ:* 2ZgLb?m#Xikͺ!q+mKjU7I~ni5L{Y #ƫ5TfQĮU~eK)buxdz]5Oci`hJr@#[%Ȋ>EۚqkNVGV<ܼ)s_ι҉3 ͷV,țVPs74^1Ө%~mYǜJ:T*}FN*`*vYwzz"&1Mu%o\:N27TO >*NRGN* ~+m#=]~v[6ĎM囑;+Y+;#\ʢUE}?p{UYܖ_J<ހtS }jԲVFށug=T&ң7wZs=wqb k4:_˳}}{x%uYcTf<; 1*FN+uR]JQV^xSpL"xk4sQʃ. %wֶ< D&`U,ɥre{ٖ,mqv滨[?-x +;CBBLqҦo㸏[d}[X+SIK]B0eU :Plg9YDnݕүU}KR;M|$9R\0{U-1Vr[w Q3ֺ++hc Uhr›}pJWc/}ۡX44}կhȇ`rr9W`ǓTItYX~1jt$8EzӎJs2@8it8`R,5"j|R+<95p[ jMF` )H!=@%)BQKF(()HP)(QV#Qޫ)8ˋKriXUɠ{b3 ԁ9SI&1Iҝ6)ji6& fG4œѐy bHZA5 /&.jqJI0 nO;FL `V']ip*w/rH4#OHiT M,r-TE$[(8CUTYշXq1vL1WW0BֹM̌ge_J8Kc0-S1$@_nҧHs*pVF$xzV-Q#t=Sm^)*%خdѬ$'7$F!kVGf¯8Ee6{ymՁ өݏi+EnI$9K*Ǻvw r>)w7jHj*ϿXe¨L>Ԕ.iHYm1qT\*jhpsJok34Ȳ1i^01)A(kcN9sp*v]1Cҥ\OXZew;̱Md0Rˮ׬vPZA%MݞS,G>G7cY *1rX io)jz+4l ]9>='iԷM|Z n CGz.S0ֻ"(<\RjRvZnWDuv6|I1AU5/l.VCRO!رww?=30F_qkxmىS}X X54)$߰_]N&E[CafQ/SҬMJ!CmR2p-m{\&<:if'1IrQ؎\q]v9^TVV=yXƚi\ބ_[Ҵ2ʒOZf -E6uipA^UųܻNӌָZ+rZKoNuػsjk9 >8JeU9N<Zi`ԶIEܣV$v#XK3P9&Zx;}{m.K2y{#Bi;vՄ]Yn{yvS)UJidch\O5}s$Ʌu{UsUX3ZE(/m|Cm:L<X%wxPV5@zu%"q3*؊j5DtHlz3!ݞ$nH"+-N:W%AKer<>f>Y(}jg.X~׮k; W?u Wl6FkkQ)\Ƣt=l٥ H + 9S>\MČ\!{( M!LiZ& qN/*({RԄq(T+Hh tvZx @iOcf}è5A*PZ\ɱحEM=:M;+BO[i{U ަYZ/ W9X1BP{Jd9c4z-'o"r65#lۃR4AP!S)#ׁSa08⛱U9R7hJ.wܻh9w*  {lJF_1M IKlVriPsNԊЁFr*hmZS)ŹkZ 5F;lG @柹K*9"v.+.V!ltVJYҝ5n/\ZT:ץ$QS.⢺P5Ξ`AMd\l+dDxV19WDZF2NJ1l Ñhm =*8GVK,xBz8*-Mo;ŒePk@U<󽺁Z5e!٢G[szzT`5UP X+c,Ƴ/:V6] ni #ɬ9^WjnN=\) M̻vq5ee7=^Im`pI% H'Ԛ-}9PY\,ojż92sFظ (JΉcޔTQҩ{%hd0ŵ(vR[ۏ\hp _~0ݺU(ֳz4oy U\Yd Yd g+/<ڴtaboFo6z}.x"E#$W]=V6Kr(0b J'-Ń`>fSu[(r[ڶ'H LuNKETaX;ZHe/3fa\kHB-xn=)^gL@IR1I>VlkfjgTYIOzgvb#%û me$!}t>Yjs' 7 5%1tzW0peCp?kaYc`G;y`-ђ5!V.JI(wKkMn6I=Bk{R\0=+',sүiѥ1P8'4FffSe=ރky239ihV+j09ZWеHWaq]̩1 Ij^ѴS.ㅛ˕0JuΏ:iݬBASKrWI[\xq\O*q\Båݙ󍪕_- B eGZYK._,bD)Dnq֛<Is" 20{毚qw*ٽޥaNYQ]ζZL \0*>?2̱d-m#v{G0՜d*-ӽv:f8G=Gz<( L J5G$ӧ4ӌ,Z:nԾ$z oC ?.IV}kvFb]#ZF1vf8e/eGFys_3>]ZR|4!/RboqL{M PT2&@8=)ݳ] y19:eJ,;};#.LT7*<.]PwԆy.&,SICqvs!HX^Q30"ŚFdv.Uv8jNM$exſdfm:WI=.&=Բ!$v;cQljJsҼ-TbqJiiq#ȫלWY [e=EV7^IZ-ݟGb%^-\{O!S\]%R )>V^YkrH^fjӒ g|&yָ᷽vGΣzƾ5J}Rֵ$+`=k7bg.*>wqZDyD֓cUK)#j|=$'}Xm%$d[t:=YkʏG"b^e; QvEĥd (58(湤QҎ,w9kwEіZW^;TŴ6\v^\[QWn> n',2p*ޣC&֝r*3bzn]p2Ԏ;XGE ͣO1Aj8kovGeVIjRT[E`I!&+

cR{rk8ǵau ~}E\4hXɤXEn|ǜĚBxu&cތRz cG@:H0jDآ0PUGB*ǃF 2drJNHAGJTx<PY1LdL R9_\X9ajJ1>Cy*{+ݬ $LGV {5IT32Zھ~i6PMDRP<ҖiA9QFi(O**(o4Mƣ}qLU:WPbRG0.i“NQ@Zv@zا Hd,ڬ&ǞM]@ j$PG!f椊0YrǞk'b"#oP1W*e=eRi N:M`55S|)jOzϹW1I=MQ@gp}*2Mٲn=2*7fWfi!@Uub͚3K-'D\4RʊpUx]4us6{>;R Գj(mi4U hMBTX®%HʎͿO+1#!ݔajnfƲ/c`Wi9pPSB%*b9+KhlcUa*$YPZ^O&%5Uo~i2( $m/MHy'mKh}Q}o V]J/ A\Gg33>5>hlt䞥adıD6SXZ}ELvJ5LT,c~TѕFs%>dJ M6Vt;~ƮC85ʷXW ;^b8T; >qS@S+3 QVcp3t7:eX ґTJRj hRy5{(@̌CM\&P~N@ޙi(U$OJWl%H79WʒB=I<=2jɖf%@~yVmYlnkF4˞3Tn 3Hw9u{7D U,ޅ3P3R>U>@ݳ[V7]1^$U;]b{R g֪ Osl>aS+7tz4 ]yTf{x²9?皵 6g]{NV2:`H?skowDv^;o,߹z\ I!Jc8kPby s[+X|СZKRۺWyM$H0WIyGʄ;{Wgyvɸ&v;҄f^ѕy]7^ݩ2);Ҳ؆Ѥn5KE-ڹ߳%FUƬnq5?x{!Fg<]Y> [WFPXb[$@xf^E;^G,kya8'UW{H cJqu@Nz޳yQlȕG{#V['laAִ4Ykyl #=aNkм.,m+hf=߽sb6(G=U?]_A!\Y+;/`yb8ҽB500rs/ 1hVnI"#oW-6F 595|.E*Z6}}Fq@b8qJ)~PAWki)ϡR) UGjSgȼÞf!$\yC]'a 53'b,TW}HAkR91]Mv~"ul`I$D>l&!Pysں^)b>6xZ~#9Eeu1p]yg]\8X\e=m [>HbiCwj)ptzP' nShE`r+m N/5j,j(+&zYO`FR\<$fYUc*Ҷt(Kq[\l,=x}Y'u#jcqtJjuVo6W=gQF6W>;El5EԂ'tg^NM FMi~˶0_ܚ%%`u>>hqMbZ\coݮczVn>{V \lu4ɇ+܄+Umϓ[$ *}Hַ4mP~2*ՃìEUMNqi9ǥR)Tѝj^n:1b8j= 8lnztewRF6er45<6GCڀN2 i.! S1篨`zIOPWAR@>ꤱ*zJ" WU;DW;_Ɲio% 'Ҧ.,Sstz~5b[ԵʲE*v1S:0!譏lZo{@l0[C[i$r=kxRl~-E}lȑrjwpcqVt:R8<|z˚2)oD@V]׽Dc~F*Lڜ*[%FV e=iU1XO8 # `4n(6M+m-RRvr*0)ºFTb]zaɧ( fƬyR xƌ̓@hsp~"& aWH=k fV;W<-sMni j·fYE H4ZR f]g&ъʺ98'pʺ~ =\KQ]vG f$ sRg<Ԑ V [w:F7Bc'oj(r[摝bM1IsSs] VF*-X `j\SX lwXҔtN ɭ[6X⩬'7 VM&(Ŷ]l^™5JdVIKp8PDW*r+"nc"@$J:_$tAk:ɘ| x{%Q{?s|ֵa2GY֨ V ]sk`kx8"'ڑՓjBkLG2l-O5%G*4)ETI;t Ms*;zի}8n &K~NwG{ʪFmsX;[!2C{#M2Lq]4%}O_JՋöqVjt7X)%fr0&'?; `HMI ޵RUmUJ)P(CRjGqi%Iǁ&(鶳.~^yπ2k.Qvhή[exsM,rGx4KY*][[&WJ QiK +KSBV􋌅E#޺Trb~UaM'%8}Kb_ EClǵz[jv@Uo{RJ\ƲVFo.&#eIq ;q^sgi}V+L0@W T_!}4T5˪#E!aמ Aw9f-5 I 0`@ǧSjh# 6c4h䱚vd8 +H#|\uuM+GyfYsT|=k$8L 5#khGj)Rmݞt_h]#Nk96B .bP2 [Iͺd(SoMq)}5pU9zM6 1UE+;/5NXgک8|(sRk_Ց=>#'\ZnkbBbng(%" yn]G;Tn# t FHkcDszjxp517kE<sޙ-ʴ|)sk񞝧izd+ f Xvw;,yH3mvpWӽU\jմE\\늻C[FԞ:Op͙>m>l{TJՍ&MΚ$e6>vIlO.LexȌĺLW_cal~F%y#(`ӗ}Q0<۱2m:$\:Αl#?Oƨ],R+.wl+#ɥё q[^pʃЩiϥ\aDn~k2emxJBˍsI͉76akNQ0xzNUIMLqP㉇ Ov-C)'#Ub *Ogv֗X=ǭhkn0}ka5$bT)s=؞cǔ=;f0N09 =/˴S*ܞiߜ$(* ƚz]VzhKu8cD|Pn =)5'S)- iY8S&FzT}^]K ?iaN jͺSdks2R'_-kxH+LW:U/.ViZ<ȣ5z؜6;0A9tJV2QR Ta%MkTNm(ucQU<Z&ؖ;V5#R~RfpO E> d7nsvr&ӎz̒MtQB AjhPg5i ҫn`sUʦlu Ե?2KBMv*]ULEp&& NJ3&0.lR6" j[:EF#4kx5P p˜Tɵ3ڽHZڗITu` qCjesƒ% +Gt 8+ Ƶ1 'Uxur\JҀ 6ViB\ԅ?*EEژB&Pծ#r֪BVy|ȹ,O޿Nh=*dzecS T{v*p^/n䍒''<ҷa"R()^ʬ/u/i~[*eQcֹmkCfvÂJB\;ی Ҳ VfiJS}賩Ռq){*G a9nҥ@Oٮ 5YsF=5!ŵ#9{T#uklQ;Sg2:j{kfvSPa]IWKۈmN3.}f+jH"{ eC}B$'Now1Elb҅'$v6*}4:  GlԺ0uTc\=;ptz`zfS+WDI8Gҕm&ڞՌs NF*gI4bӦxzVΗ9*圍6ck;3RՂ?_ԛlxMhF:1 )OC4a/s LdXX縤m>aR[Ҭԫ12I|Th74! lQ;Ǖ8ڣE!ӯNEۑEaܤzwbL5-R`5=ʋ TG dzVXd G#ֳm& Jjh& `7VR f1V"̑h>S·̟ce{R4i4S=ǥ(kaKG&"qg0ivfƅG4֌mC ܲ}j65+ Bc 4*ii4 ZA֐m>Vu)_VVQu/*Si);6I*',rMF[5SKSrMVe`NL(4̊PجN%֗#D4! SIM!U?w4ȕJI'CYl5:oGQfwojI&2֡r8CR/*e''2C*T/XM@U8JAi0U:&KHѱVF`n0ZϱVYq],$\(Q.VfedNC5pmjq4,Y6ͬʑp)8MV2Kv,-ZˢԤd.d#³ob9ϭt2:+>D$INW"pQ$HaִBBe>Egm ֭(,jm'VVe*vF$od YV yt DNRUぃ [\2ORjd_9ڒZh28bDYYRK*֭] xXWɼ5yY"卑jY!BQyOT8Gqҟ'sv7,1\noLDT%xn^&@Qs嘈SY+Rأ)ip⣾J/ztQU&$ҩI;LۘB%E95 *!&[MJ_Z C,YXdT U=+κo;n{fk=dy\FkG4V61UTl-jɮñ[4nnrGjn$ҫ BRGSU_%s1Tz3T[;PΈ#k˜Om+tԆ3 {WjY6I+)h;7+ }U[ >O5{M{V&yJ.zm·ZK{2c ;7PKQɫvvEAS^Q=c7v2 m  ?JLlCs+ν_g3m35$Q۹fwf>MCGcq3f="TAђ*Յ8:[}̲m©X"Cӹҳk\`tjv6If]Ό9Ss$Ě%p; &If,Oc R998;N7lK."[7ɧbjR5cmxv=6Y$+5C ]KtrFL2J[߻a9S_56CsM8Νք*3 M󌚧5hqznh'o-2!]#6G]E`Q⑑\MOxXg._hRy+.#NϺO~;=!4p.C|ğNֵC R"Xx\I#0R+z{ku8d,#_L35 1GPu*;Os{BǼrۿ -0&7 SykLg@@S 58$2fѴqV2,*WJ%sl'`J7Q:cң˘`TL֧EC*[2(_?9㡮Ó-Hm*yָvT3Z6Q٢ZזjN_n&f{|3vsn0}Ԡ+Rp3zR+kJ5G 1MW%l^` 6ɕنӾ˸S=jhP,MkhLNپ RUN Cal7@ȪƢcEQº vmWN\=뚍ϯ*}W F_5*֫OJ%>lI\i%Э| -ˆu,g;V%wʏ% &/QOo"XAtC=ऍk#hZG^YFjjEZYݼ7AAsȽm6f{|i..9gp8=jRi)[V1 Isk,6& |0iڄoo84^nwY7H•\. g`Y@#W9YpvhRJzWK Vj_ L̚sWnTۓNjoz;|֔!ʌ3RQB/D=zV 'M V}jrx(C LH ZHzw[erR*[<`W=NdTKwױ@+2HUʶ$ U-SgoBkvus8=kJrn9^k"0ƯXS=U k2}Kws<֑%= ֘ȧuL$g8";MC ƥܜRliIb B=ھʫGJpg&ȉ,FZGR+ $v!"d!0mǽHɰzM#8jSw+&MVjZiؔJJb LPi@!:QJE%J{S#1HIH9$dTRM>L .*qҠVClH2iNzɎ ;INDsS@m(sINŀا& 2jp>b԰ PΡ$T449o/Z4h C*#B>wv}1LqUh1ˌTFU':Wg4s&p3T6neTK{[ֽ Q#J~k䚻[$dfܓ[VvpUI+7Si0Lv M]L{Z %NJSnAW0j ^D&Q>)%ZREE~g; )/uH"@dͫ򡫌f:H3Ҳo.jJo21ȨVj jeSb6Gܓ֪jFr tKQInY*\L1Ao e85qe$h$ {ce-j2RW%Sils9[6#6^]ݑҮ- Z' )FWbGyȥݦ:w4#mWg'==MN ,%)sHII<Kwz F% 2HX! r1 +,8UJ96Jki PN叠{w=htuGq։KOws4"Q nHRޤFFTeY45bUf(˕Y.=JtcKl x0"&'I;9 {YKjrѕ*tgBPE N;/c;A:quRE]_3ʜgJt{pf kz &m,[AY4N<ϵY%l1rGs9OGSqR&: ֤)\v؉P7+駔CGs$KC0Bzk%sFFuؘ'\p{djm-@sO46ȡ d sZ"L {3dw8+KXd < ~1F_ Y}YXRc7p,2rkm tcWU ASZv,qJ]~+X_#ے)]Ȼ_\_:/A\OU%a+q].Ve))]?HxW##쎵xĹ'\:!G.k'[y<`sDq:jI먗75w}l`/zǃ3m|'fj.;g£){XDV''ҽ*;1 _a1pOv~kG9V,rdktg1BʃIi]QAzlvyQr1S'B4sGQ:19yO+3'dvTmŠJIW֧t ҥMh%AIUWl.dM?rڵMpPT=<1YwV)/yY@~,x`s hC:wȪYcCY24(*ݚ\L`@\U{0eFkxf\ۯ#kc 6Vv0C\ck,1d>V%D%N[Rݾ;B9BBxk6+~kcEԕNO|ꯉlmg铊nQRٳu/m/b l@Fvɫ7eu ս3ˏD@oG~slO+D=l`vz,Vڀ EsoLw2(1sj(ed P-/;TIǩvNHHʁ)4xhAF=EljH{VEJA>E昪5TxR5[?gf#|7#ɨM(Pҝ8GQuͩΦS~ߣ1"BһGi 6*HC.@옰wq *'5̭7E7'|tG!p0C5v@:qYzº Yu]0x\*k OQbO{$p*}MuE(#1s=\s-&˔5\zl4J+-ܧ,Z5h&AZ}twz$&çv$sMAgL&CU yr:WH)G^Et** --tw$x 3N 8 ;ke.B˂˞k9aCԥqk߉оB+Q̍ffy$#vUcU!%V1By74 Vǁ6*`#b4徕ITazT/niw;h +nsjqJXIqc.wIۻV~4Kql*u)bsZ[*Uۚ{1fV9۱u$Vcҵ-rjK&4=64״iKE$tgҫ#61ce'*ycD~YqNJPy=hFnn"XhljAQasڀ'?3x5 lA$NSG>2ӌTbS u8ڤ[&f /4-r iHDgP˷Sϥ ܥ5)g3T@nii Zv))HaӀ(j:.EDF XbqHKu&j$Դ BJ`|g)ֵƟp20)O َҎXPUV ꌹiÕvc;$ȋNW[>ɧ|bAQ㊩auƬ^DDZ ygZR剼9wf=ڥF'T3S9U#tVTg`q& jבCիm>(j)e(bu=p:r 5F]fAh"ɧںR)lsԅF3G9f&f&qitT "qgfl*9"?d;I c/oqܱ9=WNm\{}=e4 "s֣5ԼMqrvgdJ{(?YP%dTd,qV#TT{+NrIz11X)nַ{ HesvDvd'Ƴrw>O7CbD;I {)7*Զ2DG^!~=+>Mz'ҮUd"N]fDl랞Uq; ybԂDY7]f-,;#'UOmΌ VYUsZyhd@ޘ%Qd F'x[upLb!NJ`lj|~Ά9krnR-Pl`I: r?ZijoA"9Zƚ-ѸA&i~k [jFڻJ\O@*HBD!)yxS<[߻=3u Gf_t*KgDZ$spwm/x"V`o85X4\͜ } Cֱ6{)PxrkyMFU6`61\}+o%9%!*px'U:rW3mp g6SH5-1$t$jVof8Ck)CZ(G>eMw3\[|i<Z{7Vnݺ7yJZɤ<)7?Zz%bwη,nX fODSڮOo 0 fjZ[÷<|xmù-Y، .Pѩ^i1+V_%LNe?P|&-YU6MF?Y h0~-iNTlnVl0>rb BA=kѢvFjŵ6RXHO"rWe\i]ݚ'ȶLE]JYQEu!]=ݢTlv389Ǝ #`ѡm 7{~=b_R)5u!2yJG*/{m-;u+xW]bhg,#1<>ĀDNVO,j2F2x-%F7WՍ{iXU<19p+C}iR>ժkLԵ9=$pOO[E=Pe*^7#03)a򞸪O :傻2gl(5~O8[}28_qEKqq *G'h 41 >XuMkɩTg5)^9qѥUĪ*pi@$&0aE'V(ΆU x;%A [Q*NXJr}盻yr"\fMI{t1XkyQ8׈,v%=+Vт0ai!#qT]b*Myrc>j}VdY[ zT̫%ï, %R3#ZյSy1XğZ)98{75h PTF8=pj@ޔH$*A>hi i)K*=D[sT)>n[+$AR2&xQ @aDyR۸=Qnpˎ?JRu4o% k_Χ!~1DRZ!օv\F DjW~ơ=jSRTF )cHWApzaWh}!lYSi*\+: ɕ"+{@5l_3rMy2U9iY_95֍ʲg8qqV3RzPQDմKWM,I4tMf,OW"4[n%&hK>iVlkɫltGMYƾQ*9qK[)X*4(VvҌ9}5qeO5D+HaޙfV6U~AƣR-2YW 'zΪ8KdQN{W4kUM7J)YUQPB?v*i+YKR|ёڲax:ZVz҄XWLD_-U5#]M[VnEMnr@J&ErmrCۨ qUbCp*i(@ЮdƩ<:g55܂%X33M_dIاMtI՟+,I*f3+39Pn>nM=铧EbnY߉d:a/!Mc4hLԆZڜ[Iu䱒={ֳ{P9))렡us: l{է!|T>N(9"ldӽC|})َ}+War;UucSWCNz8?6MuZHàqYtci8TrݔWEuTdgP$ =;u;0j#v3.5 ܐ$Gwv@0GVzjpAlc2̭1&'[lgҲⵒ.4pI MYtv֥Տ-{ EЂ95܏-!E;ME%dYNpV0+<[IIոO[۔`KHujkWYoir06'i#z%H1iSNY`^ԐXGm繦;d\ n=Mk\)*EJyPQ@0+G8ߥXxdSY3̻zVԠf3GXB߼Y&Ԧ?:FvD 7 Qcc S)+9B1PUuHfԞMt6x9pXo2jߓ(=+淋hF/5uRSKn_ OB aT 8{s.k6e:t=f xk'>kEu<ڴ'I5cEW';O ;TӤTH|NQGϼY%1;e ~n&ZYyEm:hK'qb$qY$';3PaRݾP8?VR~~4$%֌ 2$"rKpSŸTڕ70Bҥi3Ҏ/68{mrd{k(}+}DaA:(#M/4#5yr^]XY5sȻ8B) qYqҷED9Ӄ8HֱjJ7T2jz,WX'SZ(@4#84[&'hzrH*u+\#sޖ0UNO5̫fwm@<涧#[ғeWEr)*MBqr0-[FvAajR{hBMnQUQ@@榰ʇ昪zXeM(>݅Sސ}ku09 ˠ Tn>n*mxS5o]ҵnQ۱Esҳ., 8jT3u*m;b,mQ TOjSI}rz*xIIv~XkwvYVUjU]e8z5Eyv`٭eP}]:KS՝5)ݕ =y2nImY *A(Xt|搄'=Ovqb(lI 88>GHJT49qXaL/.m,ʧֹS Y}[|8S$z>IEFkT|̡[4,֝`IWgqjm3۱짏T$+OVkNVEv.Z5Ό8nT^ECfI$fjNNG\=#uXʲgvu=_KW'( J̷83tN4CMkP)u'pA{3p;Ջ֭({`|$]QuIJZ[cYr N~Wq0YqZ?uDqȭ$>zIPu7PwnG<\Tr2 miěqjq\ғ{Y,-,|c:̧a% CnSΜS.I=ɽ^v2.YX8%NBzLU6ؼV!\8ȭp6EItpp6QMT"ƽ*i>QXst׻!Aژ/'i"ecNTTjE#ۜ-j85:SMRs:"{5L=i{kM. author Salvo "LtWorf" Tomaselli */ import QtQuick 2.5 import QtQuick.Layouts 1.2 Background { GridLayout { columns: 2 anchors.fill: parent FormLabel { Layout.columnSpan: 2 text: 'nitroxcalc' horizontalAlignment: Text.AlignHCenter font.pointSize: 42 Layout.fillHeight: true //Layout.fillWidth: true } FormLabel { text: 'Ean:' Layout.fillHeight: true //Layout.fillWidth: true } TextInput { id: ean inputMethodHints: Qt.ImhDigitsOnly text: '21' color: 'white' font.pointSize: 28 validator: IntValidator{bottom: 21; top: 40;} Layout.fillHeight: true //Layout.fillWidth: true } FormLabel { text: 'Max depth' Layout.fillHeight: true //Layout.fillWidth: true } FormLabel { text: calc.mod(ean.text) Layout.fillHeight: true } FormLabel { text: 'Best depth' Layout.fillHeight: true //Layout.fillWidth: true } FormLabel { text: calc.bod(ean.text) Layout.fillHeight: true } FormLabel { text: 'Depth' Layout.fillHeight: true //Layout.fillWidth: true } TextInput { id: depth text: '15' color: 'white' inputMethodHints: Qt.ImhDigitsOnly font.pointSize: 28 validator: IntValidator{bottom: 5; top: 66;} Layout.fillHeight: true //Layout.fillWidth: true } FormLabel { text: 'Equiv. depth' Layout.fillHeight: true //Layout.fillWidth: true } FormLabel { text: calc.ead(ean.text, depth.text) Layout.fillHeight: true } } } nitroxcalc/src/ui/FormLabel.qml0000664000175000017500000000163014727310114016042 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ import QtQuick 2.0 Text { font.pointSize: 28 color: 'yellow' horizontalAlignment: Text.AlignRight width: parent.width height: parent.height } nitroxcalc/src/ui/main.qml0000664000175000017500000000223314727310114015123 0ustar salvosalvo/* nitroxcalc Copyright (C) 2015-2024 Salvo "LtWorf" Tomaselli This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . author Salvo "LtWorf" Tomaselli */ import QtQuick 2.5 import QtQuick.Window 2.2 import Qt.labs.settings 1.1 Window { id: main_window width: 500 height: 400 visible: true UI { anchors.fill: parent } Settings { id: settings property alias x: main_window.x property alias y: main_window.y property alias width: main_window.width property alias height: main_window.height } } nitroxcalc/src/ui/bubble.png0000664000175000017500000021277314727310114015441 0ustar salvosalvoPNG  IHDR\rfgAMA a DiCCPICC ProfilexwTl/]"e齷.H& KYe7D"V$(bh(+X "J F;'Nw>}w(!a@P"f'0D6p(h@_63u_ -Z[3C+K;?r!YLD)c#c1 ʪ2N|bO h{yIHD.VV>RV:|{ [RF ”"MF1L1[Te'Jx%C%_%RJ#4GcӸu:(G73%Ie%e{SC add1T4UT*TTTUzUUUoScemUkS{Q7UPWߣ~A}b}9Հ5L5"5iјi<9Ъ:5MvhWh~Tfz1U.椎NTgNΌ|ݵͺHz,T NI}mPw ,tӆF -5j4oL50^l\k|g24mr6u0M713fͱBZA EEŰ%2res+}VV(٬Ԗk[c{Îjgʮ=~mCNNb&q'}d]N,:+Uʺuv^|o]5˟[7wM׍mȝ}CǃQSϓY9eu빷ػ{^>*}7l6 8`k`f 7!p2)hEPW0%8*:Qi8# z<ἶ0-AQ#p5#m"GvGѢG.7xt~g|LbLCtOlyPU܊|BLB}&:$%Zh`EꋲJO$O&&N~ rRSvLrgIsKۖ6^>!` /22fLge̜͊j&d'g* 3]9Z99"3Qhh'\(wanLHyy5yoc( z.ٴdloaqu.Yf WB+SVv[UjtCkHk2zmWbuj.Y￾HH\4uލ6W|ĺ})76T}39usocٞ---zl=TX|d[ fEqūI/WWA!1TRվS疝ӫox4صin={j-n`[k k+x\S-ۆzEjpjh8qn6Ik:8w7ޜw[nn?uݼ3V/~ڟM~nr:53(ѽȳ_ry?ZrL{퓓~מ.x:LlfW_w=7~oLM˃_uNO=|zfڛCoYož_CgggI) pHYs   MIDATx}י9zAhHaHJ#˄1c#_~L8c{DI@5^kɼqUBM` IK~J9v3AIXCHR@/Idf'MNyO'EZh~0"f>uv:=~l x~ALe< F)X9 H |k0ЕC}}Ws@CԊV |9 /N@0, b/yJC&/Z1@,vYeUf, R1L]ܳ\Uta1HHǑee=+E|4ڄ$>;Sr9!)`%/yΎm t1ͲlR^ؚ务W dd ֢#@a!d8gR \4@nX9e c@P X2l`1ǰl2,U* BSb/H{V"u?}:Q(nQjgEu*C#{BF벎C8Ŷ)ޅP2AԄ# i323iIo(2p`>D<6b{5Pa5*GxmqBYh%OCMXe+Nu+Z8mܨĵJ6iI+#QDd! 9 I0DE)"(T0DsD"@E46bA8gDGu(I71KĂCXM & Xy+Xw߶nܰ[֕  c =W6Dz3YFmzj (f e$^2h!`d)ġzʻc[7J!3Xvvt gG*ئC.v]Oe99RR 0 $p$,XZur|А#q Z Br^ɤ5R ıQ+ۯz}@\N6d[n^D~6VFX"\.Nc9mjfѓ5(iuPHBG8DM.Pu+dB}DLf= HNf-'^!HDiڻEG"(ЌL5%n K@(k!>dxMƏhGY,ƃj! `E6)V6ɍ,@;yWuQUttff ap@2%hJxX%D \& `ļP#^N) I!jIb#$5%947a&8B֞LWpU c>^G\wpۀbW~i_N6wBx'ZR9|xj/G_8^{]j 7+h,mB:ND;|֏vv6XkCevycvr]pঀĝgVSr0(ʐ,:{O  lZlx`M Tkrz !ar.z[S[Z(p1OHed j] B] 20\JC"LN@9H`DQy8M4v`^nxԦ-+o{xnq%qA_eg]+0wCxzx?hEc!9ewclDqdƠ7#VhzZ_~&֚ >| S,\I)AD@q"MǟrD$/%;?7?)@7C)8 D) R4 sJaɷGmH .zw3[EůѳͭПU ~ |~oG:24̦e2곞j?b+pc@Qɲ'Ke2ktu:K] @I"aMEV .BqD. 1UaI7 !y6P"t^p-B}̔EA@H!D!b QCxCRNē\zЛ3"ia˃OGso`Ey_fJrl׏+^ ('kZ/irTjPז`uOMj@6N\y'/Э^%N%8^Bh~2-T:g@uRXT O~"!^,)O:40K$XJBAzid~wk),xO`->)蟑彼;szݸ"|]6|ǛyurLjU~?efa= G2L$}V5wp ɸ= X :hHyz73/򤁾A sISB#?3)=PC47!)t:\=1v _nQ>H|$#6yM<8WDZx'? Ykw!s(,YGcO=&ǼVohH`lg (%ЈP'A67m/<şqރ湆^D~OEl6N$` jAWv?"~D <#Ffm+?н >}5ɸc("?Mym@Obx䛕xж OA6y51}*Áo~ kpz,L;TxqySeyUFKRX^: T$݈s d %֜ BnrBB Z?tK$@_ot#)89n:;4$Xw=|NIYxvi#o?z]E`A|fL.-)jx²7$𢜜T΍0B/JC" ~k6BQ]Ք'bo1:b$`pSWV#V}Qt/o;YE98|+U=tݲs[1k#~|[oTmM~Pn3GiR[b tʾ?@ ~MҮ<6/ʹT'!YyiIǨy&T@ҩ')>nıab)Ae $>lT$\Mhii$`r Rz 7`fQrr#W\&B;mL[ϫ}~g:)t糹'D)&(som KD9o .8$rRN{ r !Tno+cԽLld0MPy+x<7V %}c>i;v%mfwEZ8KV?Y_^K06;l~oA&a O8$KIf~m])@ P}$"$ _HZ9<@jD^4C}WO}33ํGxn[- Emųy4hms_?3AlkYk[vݝzu^`EdJ7sRƁ>ۃ^M6}x&0za&W[z)Em_ R ^1tlGAϻZ"یBr$ 9LO@z2de/Xe?sl|%`"5R)tְjN .V;'|!Є݆d''oPNdu͖]Uchu[(J,r"QU_';+xOH^˜;S*(RwK}={AY|tŖH\kuϹg9sox{D}?=ww&.:-~޾y~~6t̢y^}_?_+y:O N9FSIzo DAぅZCF A6jFVmZ |i;}-A>TS!a's,$( a犸% E?\%23$ݧ}j }N_ڲ>~Wn-󛷗DF6 t}?%9&i x!>zl!Y4a4 ?8>| /eƭEo*ҏgԱksG:8 Bшamn7 %9Z sxaiB&' ҈2`-9NvC* R ֔O\Ԅ2!Y@4C}R! RYNk:6I#H` l3h298^6uk4bH?Qf-o}y'sٍ9 .疰ZTӢVs ?> Spf\8ꇋhѫ_$,SO` ȡ@0 =ȰJ$K_^z+ C>6 d9g& "X9w l(v]Zp+l > .HQGhB\g vt韕aHd aߙ },o2BR! qPAݘl̞Ȱ_64?z W-A*+]U6AqkKݻSP$(5_7N/~|H+wnWH:ON>)ԔX R">,%gDAO@VZX$"0D3U!Dp>@l)#,(p qP Pڰ7V45lZ p"[: NUMM pӃ eHL:9K .D@'9H 'd:q}^<'٠NIN+˕ܘۋ! 7! |N9}N~hɫ_s]L7-V T0I*'2@T#bx+e+ A DoR8IBn6 H(YL)vǀP㓌"8R^W:wM X*A@P2̩!G@G#hXNC `Ǡ;6]4ݾ {aKl-z.'ÐkCƖmF>,ON~n.GFn8%LVD>NQ\Q-__s> |!െUqJm(f H$"o?,*?1|,>N%Q 㐴.bz1NGҍH&A6gڃ]o"@PJ'b%mXvj!ƜU&}1,aqfИNw"x`emF $ad"AH}!>)zEddl.AR;O&l 0,!gы\ |dJ9i:g{V.Q,uW,XR-k7x ~ybc7.t? KDC'r9q,dڔ]@+.{ 4`#47ǵFeBʁ#538`xy/;Ra `[RK'88ߨTRLoӂȆBD#rmc=}Lq] :"uNbmEbO"Z6S$[Y?; ahV{6{vz:>V{u7>\^u4_=:'r|9evW]2}<G֫Bc~tu7IHCbP;ႚ9|^ |3v[kN*MCP8-Qe&$y`'fƘJ$>_CW@iI:@- v!"^9Ă6M[` H]D&l~̔5|7 ԁw@F@$5Q7,""ElzD52#tW ^{=A@bШn/H'$Xyfsn6) $z_Jmyq>ŕut\ߺ%z Fm׏[ܕǰa[#}.!{o o-#c1TDj3F. [d5EIJPB%")3}cvB7PJME-*lR1" yu8ةse㸵 2%2":`!$DZQ  r`RQaSPN#4JCBd1đ!8XOh >D<"2|h6mȴUÇg\8]Bj{}|_z"{S9yBo?FA_"E!_;< P>!fs(CvE8OonARjj*C\XLMa!eؚXe*消')$e&R$ܘ"l'hSqYLR3ͫ@X/!lf6QZIpC9t7YL ,A7sӃ $ `K LN,΀}+v~7"v$qIHf|ՀmeV)ݝ]{'肋g< zI>gΎ]_Vo\uDL?'OcHhj(tCnRrJ%85VHtC,Hp\,5k n$T#VVR"5P;R .Z˲^6uSF-3ui*n_F/MLQ $2EҠP%()CIM'Ɂq!jFSdbFp7<([ABp/4E* уp{Xus auve{.Fw849h۴9cnUM X 8AVs6M1'BωǀU$0SHb8e&=]#lL\NԐ'\=XuKm)X㧷 3 ,>BhEf3>X腜 ^E2P`Y3t <I"!)1MI1FPD@RfJJ!;?@#:PfBu$ժ)nH 5NwZ޽wt~s?&zi0> z՟ =IQ)]!g O`̌)ĚXnBQ(=FL Zu{b)ͮX,;q,}D9|,MJHN2 %[3LMS^CV,KAHTh slUT?D0͛yD6c-6 #bD*EL 2g>3th"ݽZdz (# );d"Ub@r(ZPEF@^H$i$ OOb3ޢt<$Uّ>YgI^[eY])^>7o) O}ahN,-'HP t~c(=8n.Ɨar_F'KpX>=Vsm‚\H*"jF.%H.-6A ZI)VTi* \%i `0a`6Lv2aY^ 6Z%d fxvZ@d۴f0X؍ұF##H ɍ+0(:J6ǻR $&`=u`kvz(sBz3͜$j D uDs%:b.V?O=}rg;_Z͛O4>q{io|\_tre&`?ȥ"Dy~%/Ea`VbR] c7Oʰbf䖲[2̬c6Xal%aZ2BFQKadɔZM f29o=xeM AETk0eM/4/,K @sF̢ՇFd4?y!( B&[oiߡh|OPBP&cW/ l[[Ix ŚMy$j&K5Ir\םsnUL~awIdC aO~$zՋ?#?8!Sa&AJ"9 p]tadfgWVNm{3k 'o 7jY dGdf(V"IK ΃תd69 PDtaѠ@D.$;l,R$@["I}vt%Vp?87l'/:v"UW?w?<ꏞ#7\G]}+8_?i5:9yx&ϢP";81z2s"9JMv•PFUt-iG>2=Vg3JTP-Q*FU!KR5t$Y`NZuno{7^Yֲёv`!G[d.:APzMBd3*٪gў6- 0ö4מlH9Q͜dr!(a;_0D<7~}䫫 2TC1I8{TG z0w>/Jxt@0! J0f? mRb/9 "IN~ SRf2 3rJQ 9 7V _$+3,:%T*:e9N=]1PKm=e!Ye43eU5LwWkB &doQc2Rn]U-kk8I::AyqS't9MQ $,XhAe!t`Y~L$êqMį"B0c%M.wI.s>vݙοٟ}Yw{G2W-<{p0D:f? 3|g.M؄Utw؁m&@(& G4QtAjαD%bD $<%߈*SEgY $ fA(KFQhi`Uњ`r-sH⪯k1/@j~=\pirUXƁ D,`20 alR6(DP6ɒ4ELW"- ]"lZ`.\9YU(R(br IMDAGxv/IKwV"%..umzc+Oϒ-^ _=kӯ3?:?|nxxt߿zP7 =X-#s"J I M0+[ %QTWOMJ= rNEY2 j (aȬY2]4 L3E;+f ]L{v,ʕ+5 C} ɓ/4r9L8G&w;N -F 0طFPRbUsA `#,IݲX)TB2MB:-3p:!w`@H!i6$˔2!Uh"aՄ6!,H40 D6XG w ܽ|8_~wBB~=N-w~N ˄6hrĤkL'"ŗ?lQZ'DU N Ub#ل`Pclq~VfCV2K?Tʘƛ ̼0k- cKJ:&Nٷʖ)HrH)shFxRTrlu R8ev}qs?usn`?s}$$cSreZph{܏#{ӽ/8P fCI 6pBlF%pZL_JLL4/]fIlʤh06X+\b弖߻R|} `6xņ|sh$;ͣ/Q2!ò!qï~ ELN G9L "i$tEpbN IPYre0 R2Qj2w]2C40D96tIqD  zo0mw?;Ja:qA``bGBBTN8Y ;)fYC"IV'!)$ .f'Q0R;VG ϖ Q@Y **Y X}x/`kO/4oE:Yȷva(L G+,?9OP;'?:yl{Fϯӥb{Λ7 V>sqrA&oY`}(v%/0kOJ~I/' YsrU MDBL2˪'EB||0f_~,Wy]- ;@,娥7l<.m" ?o_4}"2?י%ۢ@JS&/ 5N%M!6S&cY>8L1eVɲB,^^Wc ldH>Qocep#;\oLa8 8.^z ,㵁,y15߿|;˓-y#+e3iC0,lBX3! 'v;ƻ}@dq伞ۆȦH$ӳ?E"8ۢ&sP$O9"1 *L4`^LvӱX}S"%V4eP*]eL}DkrtEapʅvr/ zja6a=_>L~2obsZD מO9^7:xЖ{:~.|FD S4H<[5=S;qf02@^d*u ,X('l-3:<'BUDU,+.]i/:Z.fTB^G/N;o6knK C"_pU2ѭs}/3>c5u؜Ī3?wxU8Z]Ew[nQ=ox@/.f+},F-C'w3;H2NXDYěLǝ~?y¼^܃Ipwye"n1୫>3 ɾ,"cu\]U܎#mDF0"Z|оV0ZA LQ@יQ,xIYBtVAשԘ#IäY}N9k+Aƣ]ۧw_>|_ v~otoVfY"t܏_bI"@a/.LE2l۾ٰ,̖t۟?L ]?X2tUe亮i @R@,* TTJUlA+v*MqMʮpw NV}߽Ï/Z o+Xykׄ/`|791 go H鑻._J#|0aC\|0ADP­4̩ 172y1V϶Tr2s3Kj% uJie(%Kf%yHDq Y!d3`: {(s,1^4C(4lY@z6qs,yM,."QᠧY q'?M{M'81?~o?*U/tXCG<7+/l1~e$22(" +~i/ b@2Ջ/'4p- :5W$i1T)1@~ vJ$iΛ`<aP@y LUÆrGE0΀ko)`J(R%Z푦bSi&C\x_ElVjwnX{ ~g b׀۷5nvly+\FG+I?upWx `I]n~@%=!T&~ wb1.c""{qƃwZwyۇ$Դ`NT` X З S( @I9 # !% HD6A#CD ׇ'(bLE2HH ;oq Z41rYXܹ/~#H_˞/v'/ݼy'Y<u?J{=w `?o5O?^ F%W_#H;{bI awWu;"r^,xl\ߝ[Ww,`6AN r"JUJdt<#,#{BI PA|21A=a `1[K8 00cmtj! *b"Q~~RP p)Aو{krtXV vl2 @+v8yrW=tG&  ?j޿9_js%ctm}X~Xy~JtIկA,95G{D:9+tѿsVQD1jti#[m`콱j@GOoq/{pE4l$ÍF\޾͞> <.Z 蝹u;EۇSMI䔆vISS^Z0> 9-  Zdd5 I)SZ V XJ*uY{ \4R0@1<=fݹvqՠKVk޲ɇ/N/D|V/ ??lWJi>LAoMQ^~&E q!͉t SdϖLCn9~ l2.@9J@}Σ_b0h%Q7h1ON?vwn98kc?~}uqT58 aIkEY DpŪevLGܧk ` m&4 q HH '2 1dH$*JF'(=DTZQ Aj% ZX$#PrZy[,cŮ0yf)l>OX/Gx&vJ;"p)ȼczuj`XF ZoY3ூ )@+X=ɖr#\P$ 8P8IL{0 _aa)Be)F7p_6?JfyJ{lܿ48++5};n*G0^xEM?&y$ăG"8M77oczmgxb'6,&>% qlM&8)Aa-2Rgق2d(!E)eA(8 7HtK$.RTcD_QBU 4R!xf;zYҫGmJɞ<=3н7K/ >@Ih۝|s|o5B\LP%`kszrه>kd׫,49BnbZCȓP6w,_Ժuc}ғ@XМ4oXG5SoO<\T_{{Z1D`@^G}t9=9l~>QO7V*,1jy!_G/:߭{ C# `ɞޟώ EK"'OV*%X5m7cya]3yZ*[T˥RNXDr<>%yYT5Ɉ\\T0e?²Sb{)A[8# mʲuՋAPu?9r~׈m'9G?V &`onB<Ӧ?pF?I^[0D$xXџ1uO NuEIbjrj=vU}(uŽG ௒m&XE!gvUQK?GY_raRRly`Tk5D%pMRKXHU dKVk+~F~\]lD,;%4h_M%2`KP),0E \h (H*0 M@@8 ` 9ur\C*fǧK[w_ K_}ڰW,~hE4 &'YoaA BϹ񜾨Tew`$8BV_3P@b;E%b>uFnWJ= l>zkzp^j`wk@M h:Y8g&Ddrn,%Pעr%쯑_ TB TrOȀr B=(@Y~ZW0) $(BYKN,׋v_~_/BZ<}X|ԥHwrC\m@Z&I#N=FOW?F[/T`"?wcω%jGU_e_<<4)>?F ς}5k J7;#lƆ@/D%S@ntdZ.E-Md7JA*Kq`k =;áοr{{7n?у?F3 8w@"xE ?$py0WՁT:Ujq)O  C$, 촌 )h&1P< `OAʠ_%HV.ܥ?d$v_`W-&?ޫ~.Ϳvnz[.ݠ}ӵ~$ F/RVǿ_+2$(>uTOD6ZS$x1QXXIniԠG`4b.bF3si5 Ps >|^"$0p~~baݼOFX~ݒ/ܙ)yLfA=O0U@ltAD0(GTCz5C @ݱ`S$TI`@Gyw vb__nO/.qc!@O>u!97/54 kfp>k/@&I@5c,H_~fBxe3VـOB!}F"\"8KהaHhY(%$"mϚ9!F`8rrrqfP)IќQ:2Q h $xBZ*tzkIL-ִ[飋O.A^DrJ-LX pΩ)"U P@'-Y01m@H 1z\oy"SZ,)۞b~M=E~ӻƚ/y!|ɱuX5z-^~]w_͝ڊsa8z{e._pIQl?$VB+U.l/8h{*,I; Y(Ax"r 8u19*HA(Œ׃ %"ˆ$֎53I"Hz:cUcaK @MsĥEEYi6. u*$^~='6'v 7ěAf6D$tDp}oAU ϟ/p~:0t N3;Z¦<|~Htt/md:*:hr(Ȣ`LYͦ,fѯ $hD[z"C< }ے$Ǒ9YշB֨ve=G Ó@Az0!8ܺ*Ï&#<#jw1]*?h4 G^$_vW^/ &3Yیizq49HԨ/C$+%'a<j 2#4CLtQ_@VѱD~ ׭@SrOc殔vٵ ~>{1E?*= ~.T _2Ve3Yh]GL9=9'#~I@Gt[PM"g.@hiNw8U uJ , #'F'O  `i/V2LEnB'!Al|Ń? N`V![6yZAU%+ NZc\4I37I] {)u3w>joԿ&Ouq{Dߚe~|~@Iu8tvi.ʜD*Pj?,MiN\S7%[v䶛S ^ucEՈ҉^Hߥ4)1!D yPUc# ^m~;ańтUKe@<=m>G&炞 ?8 0 T{ A[Z^`(2']ejZEf]r6欽ݽ䵱 5˩;Ւ_7*ygɜ~?\C \}Pe8Ls3Q.'f4Zݻ@Y~?Rk$e//kӗ. ;{`ʔ]y`Ԣ ( \}Irs^<~R ]7\o<@r:,u[OFl1J"Ms  ^0K: :8$=4x MK<3}2:?ws#Ƴ "Pɕ$(1]y-~j*y6/@TVTٙUG@RCfdeoIR[ O] G?D@ط7y!Gx[Ӄߖ=J <~i.Mb/KR-Tιԧz!MVWMYs{if:b0G`rG0vɒE0QmNC^a[÷FFt/|c>| jwp}v' :w}@Zv$V@}m2 6pQk٤drXY'̽}_'js#1|(PڗfN"+_?іٶE QV7iCap"\k'0}(xJn({:}|ʰÑUuAsT}JStڗHE@9c1Q"䠉FwT +7T K{>|W6^ ]ndtHOl%`zod[wADeΠt"%o~]U=Ci"c.Gw%0=|3 _+guwb;H֟a|8 LszQ*0e?ֹƵo\k4 Xf 3U,)@nY%L$.rT>T@=,NI.\Lxxrxv}1h[&`Y4it|O/ "IamY(]rw|niݛw]Ub]ݨB_4w'G _(@V⌅T5(O]X 9+M7 NuM8fn^ꊫsb-?G{kPBwSs| h"HI6 kT8TGװ11mƌ]9]_|Srj쏩v= 2M] HU' "qL&J(}% PxLs^jZ@!,:QOwKyE}^u]q^烢OSw>ŇDهp*(swKeu-$w0hn5h4@tN2*挝s 3 j]Jx7aa fⳔ/?L%h2;?ُx.\IN5w* }5؜'(/>)b (+DR D#˳ :J>F9]]_r""@"oE G~jS|s6=o:kk}UaYpO4Xsmy]*;v dm@IXp+6@L<бXz1aw0OG8koWwWd{눗Q0!(@qEaB 埮~ɂZAQZd#טr&߭MK9ﴽ4sQckc?3YaӜ+,ɚ\f`)ֆR6]k>$*Nr b`xHjJ5јuH LHK&laY?HNf=9;`LP`a_`886 2 ^B ? Ey\\w+LtҨ^so|;?׻("?ZJ:E=~1Q0W1G, 4Coh-­"0W];RV]* W&ĚdT< 3"GBE  b% 9J3Ďz A#=II˿nlK:e\B3Pt t)\T8"܉5C3"RԾL3r ziY+ Mwjori啀?aѿ#ף#n?i'8biz`7`* o/6/ mUB4`\i@ߦ ȖuN ԡ>FZ Zv`[X >;.4z_وewwe=Ic.<Χ%W 42f/Z.Ye@;VÜ&2h;Y GVtBUh%j.UU=:^r7oc $Kl?DF7#[~졭F}dZZ6"^ tQLka(d>fr+kXkRtR|^%%WxX0pHPڌ/8[Q@ *%r3ݶ`[we='FKR& % CLѸJl Rp@2Q 9ITJ&aaRm~ѥ㝓ORmKW#Öq!-Rzߏ5>  hsZc,#-lZH^C7HֻeeЭߣ }$Q0-:bZ\-H"6:I K"W+uxcDiW bŁ$/·!]=APN ?Ó@FOQ!G`KQ"ʝAcdZKVA?G}JCXQGUqt}$=FLR/>fa\~/q[ab䒥*0W E;MrM;]#E!5A:du!`0=0=a4qbP$@Seu$B)hnRSR~I5BCfLR_s@>^%(c>9}0ǚ;{Yk.sV>o)4Di΁WU 50ѽ\J:,GJUPnUsXLE+Pkz##z)Dhn # I#;t1ay]7e_wԱQ @9 ŰEΩ@L];oZKIGqIkϻV=ͣ3TouџOl? g|fK_7{b4SW(6 cu]8N9Hz2Z7EJIt^G -@R``B@ .ݻd+لhksN4mU]BĹم,tB`."ٽ5/f`~@ϨY*-!X;a4]qNb,y:~E/<[[vx?{L seiΏӀM {awr'QG)ԜC>d!pֿ`5 N12Ns"$@hpL:@L۝} &zc,AdQ#f!Z``Prl'p#G's)OC*7fwm6?G??<  2| Nm*sbCi@^Ҁr_*UeAa*C7nUk}?,qOe?|iuyҀh jFpu3?|OZZ0쀐b(t|K3x*iXYi3Y\}O_\ ,gFr8"jC<$brcnhyQi< #~D U O}[Vˮ)7X(vw\S>~:1P pjp8xp/ZxW`qiWc`R]yAIE8s1J$5%E?j"YNFuZo@r vq>?^i':pFgU3(BBClIJe'<6P PAI(ZJ.6P^Ek?J5 #Prȓ[ e ǽrhBpx+Ac$7k!0@4ɣƍ al-uƌ=ĠH"4 g#t&7PO. n]HLiSD3HB,c[X"O x*dP w7:~n߮[]*V(=nk>z" 881(tR}:`>k)R:嶦IkD{{yR1(Q ۏ$(B>@;6Q6 _hsw;$.n %Ab^s[!-~rtP& Y$=$W6%68"h#/sɲU쀒9MRȘEq杀j7U `k\U?%"lp(=>Vp)r#+uNRe90ƺV75!Hs[)0Te˯ PA#{(0&֯u/V V 1 (fՆ.8ިSM6z.B}-ZW^=6IxdwyyxHT c+K^/!ߋI~,EK<ǽ1˜ǻ7ۺv8){$ )o%G{krW܅I\ݳ[KZ.uxS` o./+r=xrv}v\ڱrI" Og3~i1> ( -;Q>-tn \*[+8sͪqyt=񜿟Heue!yANn5 ~S,Q><M5|iR}ceWY9i"Pt.!O>˝>L!&8BXXN"Ai>c <8E2]SDUG3%I^iRzڬ$2 "NB#`o߇_-fvrpO[[m;Iޢv o*N RE%ђ_,;jq ``d9Ɣ!g wņo7BGX/T͇~{<›C2K:C:,vK3܋5?.m>?;W?xO+7{xŜujKb_dg嘰fBEJP^;,Vu-J=:>u3@a:* ViZqGUp _VՊH[x,vAɄQy-ƻj?Z97"#_,ǟW?+WtsS_g 0쓨9mLDŽ-㸩k>09qeQs^@ Yq* iMu}Ջ&O@i d FwH3\ } Lܤrceȭ伀>]=@G6ҬU3k .GY Gn54Z-LY| kꎂo~cޫ2s҄ ٿ;3˜VpIJ"On8@9Hhy< #RVbɖls*0 &4k┽ dz6@Uc}yb>lL!ā] @{xupfp& Z0y@r`K'oa1O}+qg sWنE(@>?/doY8T5̪ )Ya؇'=='^FH@w=3#t;-<"UM$vFd@CM4wxa\M&ό& 8;(b;mVhClS3( b/`.xPl@H Ǥ)b]F/4 X["_>wMա.^JO'R~)،Ϋ,7 ;]neqafA֙qsvF+S\/ #xGCFt[?Q*^U܍KZ HH;MNc82ux7`V^UN-#z.5[x_tw 6D r'xZO.4Hq'Єp3HBbN J x\vq^+Ϟ^}x~e1t^{<*5]6ǢO'Pj:#O7 / ೼?: :)}"u@5Nr'"A| 8QZ DrpuNr|o/8vbˈjpGAXs=.ŋuhINr{#>PI1syX RL#w:D"]Cx!{/{0zrTrC)@7wnK+~y*K:3lX{p|ٞE03C 98\$B¦ j3A-h,tEC,p*QCEPrNl[=x% '?$h;'.]sʸ㫦 $ʀdQ+K]IљtJCEɸ نċs m\j|J p.h7i 8x1I)@=@{<Ð"d-qi''c/C]n8&:`_} jz g}0B澭4[${E|6+T;otH;xK0e{ ӯm[{> -B"G%+u5'nζ햨ZC ?f#~Ɵ> ]$n[| <f>Գ ?! t&,ÖP6{J>LeWN [n\Fx~:*_K{3hPN*ȳ90y]L0xq4@|)8$u_"Nqw䙓IsmllK(C%rzPWF.kF >/#PKĐ SN.rnVk`Q9R`*'O2oKNx<#Wo<,!}l''A: c)Ug\ ["ҕ]iU`W & IɉdQ("+wWUs%@Mi7KhFe,?ވә_V@C[#Fko}94Js (W?s(>D.RAM^=xZkX>'րVʁnF7X|ϼh K_s^? t,_C=|xَ/{=S.fËPbn΅e#͝次AӉd(a5{[6̉j!L1*yq<8ѷg ϼ;ddܐ)ATe, I|hkGzMAv+)䠈H@ʙ.W# oF7 0|>_8 9D _|,/0&t`ԉH-SbX1)LSZ3=*`uAvjw/o3W#]dpC6iH&em]]h<;61P/2( j pL AB35gK EA,<(2Ś?Ivu]I5bLh.G*/ęTӻ~h!{_ {r}vȼ ^4 ]OYb覃FH9 `Lժ8Mb, DU50 Fl}:$&O=y> kkL0 "iYf{%= {Мw э{{}V 7pҁROKxԝeu^*\a3M37-9/'h ?(վv~`|O4Nc Iot\)|5}k-[I$/XAA(B>w:'Zw`xfB:Ќ~.L$Łn$}cJ@%ΐmKvtduM@;e$ʀNiu) ~-T]]9OBo烕Z0xBIsduҸX9-K"S:ۧ^u͵wgC&vߢ uv+wߎ?Lr %uhfYa Ĺ}>Zg/w f@!9`L!-;ԅrHUTzc62'8|hi@'/cOc#Ũ eNdHuh$כ;[2,tl *DD6 eIffht n/%whJE!J[P8lSoM5-,o5i:yn:6yFM=?1XDH 35߃Ni$!9SfjHl-e3.0~^wyC{ BGga#Re/_۶PgƎ='Pdߊ\CwcEȯ"a;by|ŗ 2E9ņ쬸i*܌vm7`;cPs^ok6VҐ)2EEWB@T!{]Nȇ(irAn"X`[#ccUK/9rxYi<84MފA-,ny@ c fb. +%V !"+lixek2$f7N0x;(@c/oItk7okA dSh"}@N`,䤣F(d3oWn ]rn޸\FbԮpivˁ5<c{2 \OMnyv4K_G͹s9s"lUFUTtPjxd]kQ ]SOeRX0xn~;o'@=DS8zy(!QԘGql 8J#Q6)kі<@xֆ>K84ĉ [Q?Gߗ==]P+2"OD4k0|:翓ئ`i-ǁ0LT Q.APcXM@!;횸"tsp?mg4 (d !#w(AԆ e-\8';F^cάk3nK4`E- / ^HC-=_MeeOW ?%7f]Y5Ȳ"w9(Uin*sk:_ "Mz2P9V@@d[y[?xoLCwTJ 6nF%dhM5'2nGibE$&fz̞͍ȳTSpl ~L(೯ 8$#\vP(ϥ؃=8 lS&Tznɪg,L ,Kn(J2(:\,c҄da;j0|¢@9kɯ,SgM~!+æ$ |k-yHj0Mo"ç54w8xGDAP`#? Bx[$2Ri-g`n5 Xo4G5 BlxC|$œP9\ёlug,ɢmUbeSQ":}sF.#(9g^I H@vezk/vOٚwu#t!\H@PYi (j% ( +1"D"#3n/ [JO̍bâxllH~D5 f[HCϞqJpT'zՙxF ʞ]^plٮv,:ER#<8A!ϢMGkM i =;C Ӊ3Jx&r~y81- cujefdn &!d&7 1@FY_$>hK(T"l'-# m*6Cg3#h,VgF34:d!. +5JVc*Snm"_b"0jnc9xql+pkv?PSh*Hq37j-?y뗮6OP c٨!LBpgeG|ݠaa6wC2ݬ[D `@j@t 2?tG P,@%sk?@4r iT74(吐3WĽӁ! }W"Ϲw/&7ER=*,7һ<l&en"ݍ"Į : jUMi1}{(6_JCF1/h~TlV /hD9܎D܈ %`0)Xᒼ5 |T$0N^_n{ ?Sl6ݛY:Fsgm60,P'T2fP˂-|P@DөAhO]ߞ}Dj/1gD͉{ZZ@|S6 `s -RHRpNuo"ZOM57:Q>NJh}2\6 o:];;y!k%zC̄2Kr"Eifo-V,˪*U<ޛe˖)hu , lSL(`n]и/,(O5wSON3Hw<)#fG'݈ۺmo$Pȿ'G+G2q(3*m,:XSpVZF?ZF X;`OAK<#hwRU^ > ̻ϜG#\mxI7nx^)9p2Q. A4`P+vD'CV:By5\)GhA c7T'zvnv^`+JQO=}3<||Uq70"U5[UGJj%(ٸ.lUav PXNæ9cI6Z2hÃ]adW.I:I͝*Qߜ%|k !'!9rQToL$$9!hP@a*4Km@a&[`5-$ 8;d`.D`x2p tDEh:M N3M3HK`;ͺ3)OLcOP#mK?[t;x @"ݭ:׉NmS8`5pd@`)`IvKR+B"W&)3L$ %@ɽ>tnQ HC) mn|^jKNg,EGƏj{D7n /vǣѿy.I.? +ѬD 4"wD.m]0m ½ăB\꩖cڠ ?]9KGf3r{zu߮mz-kUPY2eS7]p+N 6a_ D 9H@P -$Rh/1(,hDH3rdUXEe-\[[Wݢ,͜ [v_U'0uod8ҁ˃G6Ǎy[}>_Eٯ/G߮z$muY]@$8\oYp"=@M%6"3B&'>0P<7}5ٰ}ċo@mo,o F U?6]reJEw?=r?95$Mi rb#YO)Fd(M-g_V( ``{ӧA*K`wZpvG6+0 {f01~ܙ;?uku]7\ks|(beviI6ݢEQ4O7g致(F춊*ؖEEWs^k޽HYj/rc{.IهY P_4Q'Q 4dFRQe%jnr f`-̒ͭfp8R¬+^~@}[Ed/>r룿S}(߹\IAy_}'OqCk#D[ٟ힔yVN4 L,@"28iwռC-7JP'%]iIv{1=8Q@SjoY^[ ۯ<ɔf" DVg|ߢz;*+p36To0gr$ `yݍ X1XmH%ˠN1ì/i)w.n&?DJβ 12 C>&_ޓV+iW_LmΫL\J9쪟|:MeQ\sfa '?}* DBX$w cl`Z~9ݙ o 0\`ux ٺ G!Dn[x =WT mG*&N"bu5 (F6  PMH#=əh3e@3Y& 4 )D3 (^@p;%-̶^J"qVOz~viGG^kE*A />_BiʨF餎_hG9λ _"Σ3~W?^ %`lVݰc+v2lAn+"",$`d Pa&#d :/Sn$2z] |w5XuFyzʀTHDP |;h%2~-3@Zt( %r=In:SFhZ !0C&X5;c2HWEJ:UyZ ]/{ \W6t;`(4 gM&P<3suo.Ce/^ԣ?@s_uwVfo/*v3,=XF[NqE3q/cɺF#(h5N"q#åzMZ躥܈0%ڿV]ܾ=+P 73@H_;`eoWݹDЀX&3ĺ74UwI0<VTzRM ;E [} :~x8Ûm=Pp?;An'ݟeic0a4[/˭f|)>Yh|Q h4`٤-F2;)Ȓ7!T;|yėA9 &y>0,4UVEI/N'>?!|ި/DyJ0@Z.TՂPHZ+fL͐(&)z){H 2RΠe!eWץ9$wOc)<欴XyLI}7O]oz~b%^] \9UI/|Ap" jglx }DJҧb>Z?)87GUWMmǁl blb0=@!(#`ADTV,n1SQBtcй#:B Q ܃I(UIOR P^K=l{S~|1էfOvy$>u^-o,=\+y:c:ʁuIOkTIm&PSw`JV V R 0Umih) .`љ8@Q)ݼ?OzdEd:'#c5&VS \g?P{h, s!ÂEc&X7v?a2_UP]sC = K+ =` -n{{5`Y|7ս奼uWn-7gk)+%1gX+ (_{ʞ]L/_sdo>h~wvڑֱ W!(ΝQ@Nzq,!X#%9 H%0/A!=D~)3QC~^e)X1`s^d@@KrK_>Xu_a_tmnzR_ j, f"56>ȉbi(Gd%D2W1^<` PJaSR+<3kO0l]r>KPa W|9ԭ'aAx۫'J ].gl@vPš|?>sq fTMOR%Z},P1.ߢ~>*B5(ʡbr+^OU Lؘ!BQitj #N'\Rc$V`;)~c w_yVߝ,;O$쏾=oJa~Bw-< ^\"G谙dd93e6><n扪Õ!&cI y)2'sDhL`4g> gV+_AoݫW'6k  <,Ll h 6wOx s0V:g1~/ O~>65 &- \1a!S|AB@Oi'HHQdcģf-(,-!Rxrzy~v8X '{~^0}хAb9[SH{Ӏ`sP0lD`,$Z?4hL0W ]rshy$ B3A`5nv j{۱l]~\I9Fqf0f0@_8/?Wg]b|6-&߂@!(o?X@(YTWaQRt4_)„ܒ7o4 Oqā)`^g;/ǣ2tX}`* ՋlA}u]?,ཋQa;b]"9R3RhA` 4c If6XOADo4ȉM XJ̣)ؕ-ˤjA`U5vvs?HT֪m>zB@e$IL%ßGn^|鎾a+Vø0qYzs7әׇj7JCY߃YHV>T^BU"bE1YPV!31 f)MHZr~5g teSR4%\r?:_jFϮD)7n7?8F.~ށRﻸUMOJtj{Q`fR 5x*UCШL@P~}hh`g9c} 9P8 Х]bIF8O Zh ܵy#_gTП٬?;No*YusܠܗA]XC L? !A'B̮" " -pei&| ;O tk?"h2Ždy ؋Џ{W╠^{WVs/ċ+^}0ۯAxۗ[>Y F&03 pRfȝ@ Q OR sa<=o%n2ј -ܻʁA A ( `IO|,@e8,|x Á_?3,&rnrY?z٧SzH駀!<~zrE7 C?ˮ VhLzMgWbMO=C]";xB?_?O|u~ׯg#$_׾.7Cxsl=&᳽緬D B[ 28ia)4QN &Ha DaHM*YN 3=5y@ 猥1;RªJ"Y 0|@c:|B^ +!']gJ Wp_8 `p]KVk׽3ڪ}7 Ή=Tk-C<8決`9LkÏc+y `֧>@Y񲐳!ܮ(@[d)AjNFߺH7OHi8dE[~֨tЧ[KG>g +VG  g/J?>R@$W~tqj2EDX@3 Ak)`LpVa%,y-U7v@ ,0b.|駙[Ձ΃Wǔ5kIt60oK6exDٰN33WWJ?'QOgt~=ɽ+6һaؚ|ʾ? X@ ǟP8a 1fw-Ej}8lY pZd.6~kunb<=ӟ?5_'_/OdOLB/<a2 E{v3&"] ]p?$IH$i' pAa\(=ʪ C 1'Z Dm@NXUaCygr4 ,`8% c6h8b m>u Vׄygup(p.\h`61`#I:>޺i~ G773,'-5r~5Q|f夦eͶ+ၙ$YsXi+VaesPvbp\𳍰Jgn ގ図_5t4|/y|׏נ;W9%#@6QTjP#D#@59!W?/ Za0@bDG  ȹd:ƌ#a-q! `dfWR Xsk6^60i=}s\8 |YX!Sj<޶5?Ə/7F3{׮ݚ|,ff0»LW#wI ޖv,DcO`f\.|BwF,@)TO!RaA?+TCvډ@SKF$ IOM I8j)) X"񔀽nտ?3?'3M/ZX(Vv ^VNoK6sי(I twHڰLB+ )) U/P_Rd/ 9P; y`]r_9,V\{#(ܕO.evfnFP= lVڪYaZ?ZO`=]N>F 6SvV⛞$eݯbwxȭY?q5Բa-zJPgR_ ?5؁ZvAӐg0`r^RAgIv^k*Q̊% >]ݶ_v7h Q?|"^ywo Sfg7~W؍EƵ^x R0 X9 `i&Y]irXB-XVI0PpdMC2!e#Bdoۑ,[k8'+s̐ð%@-rl zl'A ۰dm !igUY{NDfkD8BNDs2&k#byfd̑mSOIc 2"R`1s.|x|jcVʃ6k7j:+Xqͽ^]rI>@m۷py-²֠ZdY&_H[uw'pV=.F{}UPy狷}x]ԍyx|9=}cy2`c?mPU/ZU7sev9('3© -$N(hN@PT(l:{:7Ɛ,s $B;s5q~+[  Xq~{o˙_9]X! !0׭e4xEA&8Q,Ed5M` pC ,k33eG>V̑ E $7zG7/}-ZـeK$e<2|x{f.J;An P C(1/-/'܍`9C!Q(z$7,gPvS*WvXZKynz/#xgJn稞'/׏i?w ~Q%׿U7]K~DemK,XOH͂2і˰fÒ~'~|?q'ds~taD, 8t{[{.gQ EXM"a '<A^ MZdXS-փCp30ʅn#2rpH9#Y .!Z|T0J_RO49vn5IggIsw)V]Glj0n=K=pK{ \3븾/o/w \.<9CGmxKvۄy\rCq+ |ʡ Aa&zջAe6dSct(LBo/P HQe$[ q|ҘGHJ(y"LvOuzo:}rTi@j6.;^C_3 \Kg'bP2pd! %YBY2JVڳ[A :, t\jNW ju6^lϬW'7tߠ%w/s$9] i { 'ιyymwibKBQ ƫú'4A`׿}B{KɟwΏu[Su`L"@顀Q l{P^fUQe5G10p=D(ڢy^Ayx\؀ˆ(:MhYi-N4鳚#Ơ!*;>ϋQ(@>ρ1{>+/Y뚟^~H]n;x{}t75Qv`Θ ғK=-ـΠGn*t@9Ė J%QN Z2 '>,GOAV7O΋&N_!(I@AO V$<C?9 ᧇ|{k'' |>~8…ŏ&>p6d`F,֙q$L*.t=DRs#@DdV@70/c2@`GVgT 8tdLWsJru(KBM谰1cl xtFVvpEDD|8 l gU.|O|Lѵ%t]0Rہ; / ~C`'V9VU&K6܋6R% U;o]2#7X5l߫mWU0Ҍ zS woYX&B1Vd_nb%w.SN6}[gサ e7ͦ!NݭM {ny/^i?ʁSRʦ!pR`gck6W,SCȀ 37MTX@it3a‚CT,=fT6wٌAdRtAF7T̨1Kgy%ecвjtgAP nΪ\>j?%/`'׼ NqПw{WܙMc?O&6ޟL8 <;Cr? ~MŪPFB"hA=SVl𖵊dv3}~Fzu|;j' t53cǰgfLċW$( M`4b#2ÜXCHHFHM1jb *6jt"+,(7ɈN3R0rPJ zE98]t(4)6SKY@rh̫1y>F,aUv, \ӊZڞ>%1m^E=yraϴb<Ma쵡+#4['m8 %Hfw7}9J03VcSD yy7[c##m1`Y2qeuzQAXPh0Fh;<m':KڙǟSÏe>Y˨xzW cwNpho< .x^VS [)xn7MHmނRuEa(hmA2;u\qe\(~fY1:^zB#BсyMRdG\Š:B>!7E+oQf# |vsV1]O;w'kgT+8b{< nbVAmdLdưzJ~D"nK{r1ͭifݗ1NJ #'TxLQY7 M3cRIQ\=!@Z -[4]H&@*` r]6uL0"%hQ:qX3<)3Ut J ƒUMQU=y#(˻ Z\XH'R @Hl Ok)S{n 2wW8N P2Cl{UBB'42>1[LA,Ev`e%<ՃLnpdM/rh߲WaʜV?>X#!{2oT 5Bn_2Pzysz5}ןz_*~71ʿ~kN"1TrF(Ɓ5+15 =ueQܐ4f\pd ɔ;ke6fp2SM6f WZ4^][!fӼ#X;e:;PZ4OJږ]vH4`S)V7 g<E~.hlDQR3_e|O."ecGţGÿ? fwknB{0xlmFsg7 HPT.#QfDa&|vP| @bdAdr@4s&PP, $眣Fx-J;2"%ˊ(c$cɠ !bVp"FYjg'IP' @K)SxC :!8Bh?w{<;8p+Ѿ'K  0#49]*Ha6if%2+,(/ S @!+;(GGe*1hXw=H;V\Kfk̿[)?"5=9B=233~t^z3}_Q35M(p\C~ڽ>w W>yTB}=Px(xi",'hb# ṢPBÂn6jiю'Zc^dkz@$"#TH])yO¡pyyP)H[JVلS)8~Px :ʵv]y=MD(,OuEsT.{fkB gp@h~YPX@ Yrqiun,0C*2ƃ!qz/d4^:ɺNXsN,1 պw0e<6e1M5hc&<812r=qn bl^PױQeѲ$[}0,v4YkO5Ngs;P0j%!9Mm^5z7j/-9e4h'D190"qI(Axkc.~w;=|R!ږgmY,d?t66_n lEhIT P!cF@AIA0(%%ZkҞٜ5)` !E[lrPp 衬pVOFDPY^"$SDL2WKP@ZrwmN ];oFƾ/s||[%mR}j@CP\^Ԫ cȠ,["YL )y1R +~Sr{0 Ar͚Zs@\ApL Rv;@hz =~~c;px~΋8-~|瞿c1}G=or_]) ҳ8uM< 0M o8xRi}3bP3"FB,)DuBFRVm9+̀1ZG/UK*J2sdC2Szh\ܦ?Kڿͻoϯ_yК~;ߙo6M&6gQVod7 pGuE3b S0jdQl VtlV!*J ^uLBTBxJQ<½ˁٌ*bR&EucRĔI.)Mo[㺲[knt7 XQċ4G6GCzGaDO>;f"EPJ"%6Te '+P@@fB#D#*dV5ʵk<٢KIBsg6Ǿ$ZDs+w 0Fwh rDI֟)HCDӏh%.}uuM!N8h3|mse@%drh}t'Oo{թ0})n;$/&$P Az%`/װK`[9X85dDA-Χ:&wN.ȸ W+*)u5JJلlsD>/?)83Eu[ǚGȦMnC$X/=vdԽaxqZ+47F"b7nqt RϦh@+(Sbq$E8) I&F w(D._fw8r%gvX-sR,x!A*ڳ()aILd&U_xBh5j,H@Æjo sGR$`)P2lƆ3s,Z5 Ӝ*B-Sx$P&H $ Xe0ρ'F8DO(Chovxf?5>=Fn}x޿J`;Lןȓw,8[[f9~J H{P5n(%!ma\lUYP >Xy,ؕi1e`A<%0LRWe耜$, SI 4~[$"h9()>+=M$xd$ $;"Uy$F}FS-ʬWL`_f9}٠n';{/׏4Ѻ^&͗^| `h ^y?ܺ8>lh- 3'H&[wh}p Y=+2 J$ [~C  WRٍJRvˢÍi>uP"2`'9mdCE'uA%aCf+$0K{_ L0H a$aq1N˔#$0b`V1Dp+%S%sZG7,Q9G"s@ ~+/1O9}Ytp^[G{>(:;B/`2zdك}mcF/| #>8_Cɵr`W7 yat3IU@~hH|e%ҥ> Dc4@]в*0 &`䙩PkIXp`ADAMCTz.#Q&#]\F%-EB[+VoA=="?ǯw_d$+F#M{g۶;Ob/dwڅg ]}Z|V<-X; ߛ0_dd0rI҉{ YDX7Eä$}.l$0E{D[ gjK\'TDZg(5xIR}<dLrgƊa&x6H8V씓)%yA'DP;cFJ`b\(ǍzkLjL0-=Z+ˍ ~>~k' ]%VFoa5"]}s!I*vWn8&fWUG>qK[OƵ%FOeQ}"PnoF $H2ʂ@1.| 29M59@?SN"XHA +(鬲(S0(+!|$ ^zɄ9%dH,B n Ȅ'N2D 0m(2EQ*A frS"ν\ ,e5$]\GF)z? !MtK8:%f{[ omڿ[cscWo_V,?k%bv嫹F! pkﭛ_kT4 n\! { FЂcaHy(EX".#*@V"yӫz>耗H(7Y$E~ADyDoYܹMeяsy, gPaӻ^vhRBEE. ]H2 ڣvh{? E`ρD{tU޿_jY$wH(]3~3'瑟بdٕKi> ` k:O'@n3}qB F Csj AE6( &:,A}㡰LM> pX U;2LP%Q9 DG PObhc?aT)7X{BK{d&!xB-1 fQdq[Y%7܈p @cPۿq'ibtdDӥOq:.;O};2@:/mw8 8[uYPF WtK(.*DBP@(HAd&ԊZ䘅T@N+i%x|5֢9,0ad"/In.*?TzD{R"`^ 5g 2- ݕ[|t_OCuj;ݍΞxɠ7fn4kpoۉ866͎q'v}7z-g6;e 0QjA%,#[Hڰ岈4[IeNdDp kI܋-J|%<.w9Lʡ2$:艂rjWO: pZ:X.&dI 140`@gN %7_OJ0[KA+] ЃY"AbWBӭ{deA">wQQ8{K^|)ѥw2LҚȏupW7پ(ݮ.~ؙ]ArZ/.,w$xbqh?jw ktV? *6\S!x[L}>-Q"dP.1RI /YKS)Iqzx ~"E@q~e*",rZt{FEn fLy$eNc +(fՒ`z&:D"h0;H ,5 ў6X/}_| ;094͙Z^ZRڇ&Rzq~9AӁ~?=Ic{ڙYN_Σof{. <4"~|l쯘iҚ04r&d^4$lD!Vf1'Af[,YlfDg9 O[Fju/K1=n O nqNe|sᇨlP-.$7X[ ̐)2YMWFP bL@]r*s -%td2%E!C0Y~XR>üh,_Z翈e(/lsp3{uom~K]">">77sz> Ik:wג_8vWl Ĉ.Kw X8ܼ ,@^%܂4|HB bna Eߓg30D?U IrUoEu0`w' S6z*l $Ts2y{.#BCԧqQ9Cv4;;~;i!]Q(Φ<}.}g1Hŗ^;k 'G6Ow=}=s :@7ﵤ'Sp|r/@@ؖ/*0 Rp_JL(8|^Σ8)A0%׋K$X^џAm`pyn߁8@$# EV4H@^ ]t,5σwi}_-Yԍ+x6:5ʯm\övaC%7{Vv}qM>+q 'hؙPWeuD)qc,Q` $(%bԛ.sOQl g"{ 9qQ@ ",JDjiY$9Q0䴾n(XCr@2?H{~?qĨ(^ (n G8 sަw3&`%7~qx766}\ H`chHx {rG_/vS;1Z¶Gа_ Tk߄`/FX#J6+aH p8-^U88Љ@,EAPm3P*j Cpôb~ C2H4kA0j(u:kr*!)P۶lG+ `+Oכ494[ggT h|ߵ>۴0?<:[]̧xqua-j-Mft`m; (D) $D介\KlIj?`%ZH9İdg?hP3/HH[$u$jwH)@-Mne=Ehi.#ԟ5 *|"g9MIrZ% J 3>ٿ͍fB<6]ёtٛI֧+;cϽr7|pCG OJ<6GɞK Z{z*N=NU.*C )E@A2i5._м\n } )VV$&!Z3wk?j5L^|~k'?q$( wU գ JZ\%j1G((JEk9@QBc[4z 79s[~6 ī[Yή FNJGӜͣozzf''p qI[$OnFU:q92$ n,ZPado9h*a>$ Ig]Ȝ0T{ ѷY"Uc,{#pya d+О4 D tby3 ~ƜfNI"݊JT+0w־4p-Rͤ&gMwQ~ 8?+C=u;SCޮ?rr賻]zzS{F$>Fkq 'ѺHom5B;ڻr ;.õ?*nW [C3;n;>)%lh盖<1]c7H A`E,qe|n$GPdX.fX;T=([C<@LYAh0JFR&#,8FIJC's W*D̲dkY뺮ks@/-8W*Ck*g_oP qUfI*MI$@q+ &E'r%NlO%hka5%T$^TA1֋5_xgoo__j ' @r8$Q\\ͳ/_'Ksg"~"KR[ N/?c~ Q=HZy_P ?ߞݰ9w\SL<&n7kn:PYE|p trQM,ƠTD@a cU, e">^eB4* iMy-ަ Xʄyv2A(ej ;D;ӌ|1hx֥?\A:h9?7×{鍵3y_X |_:N:7:֛zhyu4Tī6!n9M "= f>uI%E  * )ưQBq+'ˀZi@.aZ$(Q1xZOQ{A#D@E Lʮ~ P K,2 Je#G8Z#q&$PG+{1ߏ||U;8N'k~v_+ ЭbacSS޹& % i&W)=8s<0wpSw,TApU% (QtA醋#R}ۑs3%KO%!ʑ[g EK|H1\MR ,9oOC ȥxûtq=2Cǵ<_}k>e7Ig]+ >{ '0l4uܜ*{gd}h7]8 O zp!1ȡ*AQKRXIDO )")JFmMRs}F2Pyul\I:e,':)HF4pƹ>v W#GZЃ 5ʚ N6F{7- W w0m6swSۣy=nL2v)`qM;4qEL&=-QYR3AA2̥ SdM-KcZ3q!"_@zm[Z<H2,;JV>h-n@"I&'8O$ɰIMZGŎoxfW*LxPW~ᗿEWGc?(vA{;|'3)>sԹ'auNa G,=2C37iAF: ;y*Jsrǎ oHv"B<tlaǴ z<1S}043g{+UATg+wÍGגpŝ 7 vW#qYm8yjw(*f1+ U !([e#  U I }qFKZ'#@&DNLbq큼&a˅e OGegU/{wau ހݰѠkµBȸ:p% [ ݵ&gP%JS8tB1,P67i=0=4, -w s )uSJ|qk%NAa)hH]=A}&( 3 w_t_DB/e4>wڳ;Hd҆޵ӈ:; A{\vvT$lO/ ];P@4 T_O `Lo<]T E3b*.( " dZ]@:fg?}E3~"jM^yrp0e>"p"0/pVY~i_VeTrn5(\:$c+ֳcC=@]5De ʼn9" HDa5o(Am~*` Y@@<F&4ȇUEM ^V򗤎6Ӫ_|`G  +"z f3ep?wn4(wTbtfm֓s]dߡ^r$tԸh@p(&*_C~lS~PK@:Ѷ$K;, AN 91ȠQ-hX5y㫞ɏ|ܩqSpq">y4 ;Ad=IdZL5 2ga, J2XI EQB@ (Y\_Z|  06ǔiTΪg+f>5h0ή ?>'q&O<ݜCec"F[G?]{x]f5+O:(O{ɪ1tsGl$uvGZ@rX 2|DKI%r2 d Ӏe|b8#*+y`>'pN.<(͘E6I=U?ܾﳄUnEΫHufk~O`4- RU[J u2TPV#Tu#.-T\/fHLេ&R. t; SܘR`eM >}ڭm⎆MzlRwS|?{ Ъe"| Yu>|N;vM!c'0B,sr27cL Q+b|,٣E- $OR'sw:xO׎իpgr^WuVà#̯Y xA3kklq:f2&;Ɇjc6Oю{=4 ̤5 E>;Z+X9+XGr(kAM^7V Vb+yIENDB`nitroxcalc/src/nitroxcalc.pro0000664000175000017500000000223414727310114015740 0ustar salvosalvo#------------------------------------------------- # # Project created by QtCreator 2015-09-10T11:34:01 # #------------------------------------------------- VERSION = 1.0 QT += qml quick CONFIG += c++11 strict_c++ TARGET = nitroxcalc TEMPLATE = app SOURCES += main.cpp\ calc.cpp \ calcwrapper.cpp HEADERS += calc.h \ calcwrapper.h CONFIG += mobility MOBILITY = RESOURCES += \ ui.qrc # Additional import path used to resolve QML modules in Qt Creator's code model QML_IMPORT_PATH = # Default rules for deployment. #include(deployment.pri) DISTFILES += isEmpty(target.path) { target.path = $${DESTDIR}/usr/bin export(target.path) } INSTALLS += target launcher.path = $${DESTDIR}/usr/share/applications/ launcher.files = ../extras/nitroxcalc.desktop INSTALLS += launcher manpage.path = $${DESTDIR}/usr/share/man/man1/ manpage.files = ../extras/nitroxcalc.1 INSTALLS += manpage icon.path = $${DESTDIR}/usr/share/icons/hicolor/512x512/apps icon.files = ../extras/nitroxcalc.png INSTALLS += icon appstream.path = $${DESTDIR}/usr/share/metainfo/ appstream.files = ../extras/nitroxcalc.metainfo.xml INSTALLS += appstream export(INSTALLS) nitroxcalc/LICENSE0000664000175000017500000012436014727310114013273 0ustar salvosalvoThis software is released under the GNU General Public License 3. An exception to this is granted to Appgate Cybersecurity, Inc., which is allowed to use this software under the GNU Lesser General Public License 3. Because the author works there. Verbatim text of GNU GPL 3 and GNU LGPL 3 follows. ===================================================================== GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ============================================================================ GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. nitroxcalc/README.md0000664000175000017500000000050414727310114013536 0ustar salvosalvonitroxcalc ========== Graphical nitrox calculator Nitrox is an oxygen enriched mixture used by SCUBA divers. When using it, the maximum reacheable depth decreases and the equivalent depth changes, increasing the bottom time. This tool is used to quickly calculate those values, depending on the nitrogen mixsture used. nitroxcalc/CHANGELOG.md0000664000175000017500000000002414727310114014065 0ustar salvosalvo1.0 Initial release nitroxcalc/CODE_OF_CONDUCT.md0000664000175000017500000000634414727310114015066 0ustar salvosalvoInternational code of conduct ============================= No USA cultural imperialism allowed ----------------------------------- This project welcomes every contributor from any background. For this reason we can't let the USA and USA influenced politically correct culture dictate conduct for everyone. Diversity is beautiful, let's not ask of people to forgo their culture to contribute. Achieving social justice is important. Being superficial about it only to feel morally superior is not the way to achieve it and is not tolerated here. The code of conduct only pertains this project ---------------------------------------------- This document only applies to the project and the communication channels. It does not apply to anything any contributor might say or do outside of project channels. It only applies to contributors. People whose only contribution is a code of conduct complaint are not contributors. Language -------- Try to be nice and constructive. Harassing and intentionally offending other people is not allowed. Foul language is allowed. People often contribute to this project in their own time and are not paid, for this reason asking contributors to behave "professionally" makes no sense. Hobbies do not require professionality. Jokes are allowed. It can happen to unintentionally offend someone. Do not reiterate the offensive behaviour, provided that the request is reasonable. People who are easily offended by things not intended to be offensive must try to become more tolerant towards other people, other cultures and their ways of expressing themselves. For example, a person might consider offensive the sight of a woman with or without a headscarf. This person needs to try to become more tolerant to other people's culture. It is not allowed to be offended on behalf of others. Please do not presume to know what others are thinking. Examples of allowed language: * This software is retarded * This program runs like shit * This bug is annoying Examples of disallowed language: * You are retarded * You are shitty and so is your program Skill discrimination is absolutely fine --------------------------------------- Unlike other code of conducts, this allows skill discrimination. Everyone is welcome to contribute according to their skill level and more experienced contributors are encouraged to act as mentors. It is nice if they have time and patience to mentor potential contributors, but since time is a limited resource, it is also fine to turn down low quality and low effort contributions with little explaination. New contributors are expected to respond to comments and be willing to improve the quality of their contribution. Conflict resolution ------------------- This code of conduct is inevitably vague. Follow the intention rather than the letter. The final word rests with the project owners or their delegates. Changes to license ------------------ It is not allowed to ask for license change and complain about copyleft. If you disagree with the license, feel free to start your own project from scratch without getting in touch and never look at the source code, to avoid copyright issues. See also -------- * [International code of conduct](https://github.com/ltworf/international_code_of_conduct) nitroxcalc/extras/0000755000175000017500000000000014727310114013564 5ustar salvosalvonitroxcalc/extras/nitroxcalc.metainfo.xml0000644000175000017500000000341214727310114020255 0ustar salvosalvo org.ltworf.nitroxcalc AGPL-3+ AGPL-3+ nitroxcalc nitroxcalc nitroxcalc

Graphical nitrox calculator

Nitrox is an oxygen enriched mixture used by SCUBA divers.

When using it, the maximum reacheable depth decreases and the equivalent depth changes, increasing the bottom time.

This tool is used to quickly calculate those values, depending on the nitrogen mixsture used.

nitroxcalc nitroxcalc.desktop tiposchi@tiscali.it Salvo 'LtWorf' Tomaselli https://codeberg.org/ltworf/nitroxcalc https://codeberg.org/ltworf/nitroxcalc/issues https://codeberg.org/ltworf/nitroxcalc https://liberapay.com/ltworf https://camo.githubusercontent.com/d7a778d1e0fdbb269e9b0157e243a35438fc1573691dd8128ed29210ef7b3f58/687474703a2f2f692e696d6775722e636f6d2f736831363661532e6a7067 Utility Qt nitrox scuba calculator diving nitroxcalc/extras/nitroxcalc.desktop0000640000175000017500000000033014727310114017315 0ustar salvosalvo[Desktop Entry] Name=nitroxcalc GenericName=nitrox calculator Comment=Graphical nitrox calculator for SCUBA divers Exec=nitroxcalc Icon=nitroxcalc Terminal=0 Type=Application Categories=Utility; Keywords=application nitroxcalc/extras/nitroxcalc.png0000640000175000017500000000457614727310114016450 0ustar salvosalvoPNG  IHDRx pHYs+ 0IDATxAn0EAнe\]eaEЄ et؆?~;?~ p} $ H@ A $ H@ A $ H@ Ay>=VOn H@ A w>sw*hzo׸ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@}[_$ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A0y>|6? $ H@ms3>  $ H@ A $ H@ A $ H@}|6T A $ e=Vx>gc;7$ H@ A $ H@ A $ h_}8'16~fl<ߌy=n H@ A z|u6٘"7$ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A W`X}gl<)rA $ H@69Pv{ $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ A $ H@ AM\ DIENDB`nitroxcalc/extras/nitroxcalc.10000640000175000017500000000040414727310114016006 0ustar salvosalvo.TH "nitroxcalc" "1" .SH "NAME" nitroxcalc \(em Nitrox calculator. .SH "SYNOPSIS" .PP \fBnitroxcalc\fR .SH "DESCRIPTION" .PP This can be used by SCUBA divers to calculate the maximum and equivalent depth for a dive with nitrox gas (air enriched with oxygen).