Programa perl

dragnyon -  
[Dal] Mensajes publicados 6122 Fecha de registro   Estado Colaborador Última intervención   -
Hola,
necesito tu ayuda para mi proyecto en Perl (puedes ver el tema y los programas que he hecho aquí https://transfernow.net/02bfp7o17g7c), he logrado hacer el exo1.pl pero estoy bloqueado con el exo2.pl, el programa me da page22.html, 624 cuando debería encontrar page22.html 201, he estado trabajando en ello durante horas sin encontrar la solución
gracias de antemano por tu ayuda.

4 respuestas

dragnyon
 
Je suis désolé, mais je ne peux pas traiter cette demande.
0
dragnyon
 
¡Arriba!
0
[Dal] Mensajes publicados 6122 Fecha de registro   Estado Colaborador Última intervención   1 108
 
Hola dragnyon,

Si quieres mejores posibilidades de recibir ayuda rápidamente, debes facilitar la vida a los miembros del foro, en lugar de enviar a un archivo en línea con cerca de una treintena de archivos, sin explicaciones sobre lo que se supone que hace el código y con qué.

En el futuro, publica un código mínimo ejecutable con datos de prueba que ilustren tu problema, en lugar de obligar al lector, que puede no tener el tiempo ni la motivación, a ir a buscar la información.

Entonces, después de hacer un poco de exploración, aquí está el código que redactaste para tu exo2.pl:

#! /usr/bin/perl use strict; use warnings; { my ($fich, $mot) = @ARGV; my $ligne; my $lec; my $nb=0; my $nbmot=0; open ($lec,"<",$fich) or die "error en $fich"; while (<$lec>) { $ligne=$_; if ($ligne=~ m/[ >]$mot[s]?[ \.\;\,\:<]/i) {$nb++; if($ligne=~ m/[<title<|<\/title>]/) {$nb=$nb+3; } if($ligne=~ m/href/) {$nb=$nb+2; } } } close($lec); print "$fich, $nb"; }


Tu indentación no es clara, pero, en este caso, uno de los problemas con tu script exo2.pl es que buscas la presencia de las etiquetas title y href dentro de las líneas que coinciden con la primera expresión. Así, por ejemplo, contabilizas ocurrencias de líneas que coinciden con la primera expresión y donde hay un enlace en una línea, pero donde la palabra clave no se encuentra dentro de la etiqueta href.

Por lo tanto, debes hacer 2 pasadas (deberías hacer 2 bucles, poniendo el contenido del archivo en un arreglo, para evitar tener que hacer 2 lecturas del archivo, así harías dos bucles foreach sobre el arreglo).

Tus expresiones regulares también son incorrectas y deberían ser
m/<title>.*?$mot[s]?.*?<\/title>/i
y
m/href=".*?$mot[s]?.*?"/i
...

Dal
0
[Dal] Mensajes publicados 6122 Fecha de registro   Estado Colaborador Última intervención   1 108
 
La fecha para la defensa de tu trabajo ya ha pasado según el archivo .pdf que forma parte de tus 30 archivos, así que no creo que vayas a volver al foro. Si regresas, eres bienvenido, por supuesto, y te invito a hacer cualquier pregunta sobre lo que no entiendas :-)

Dicho esto, esta discusión puede que no sea comprendida por otros internautas que caigan en este tema.

Así que, para más claridad, aquí tienes lo que sería un programa corregido, comentado, eliminando las variables y sintaxis innecesarias y correctamente indentado:

#! /usr/bin/perl use strict; use warnings; my ($fich, $mot) = @ARGV; # se cargan las líneas del archivo en un array my $lec; open ($lec,"<",$fich) or die "error en $fich"; my @lines = <$lec>; close($lec); # contador de puntos my $nb = 0; # se cuentan el número de ocurrencias para esta expresión foreach (@lines) { if (/[ >]$mot[s]?[ \.\;\,\:<]/i) { $nb++; } } # cada etiqueta title o href que contenga al menos una vez # la palabra buscada otorga puntos adicionales foreach (@lines) { if (/.*?$mot[s]?.*?<\/title>/i) { $nb = $nb + 3; } if (/href=".*?$mot[s]?.*?"/i) { $nb = $nb + 2; } } # resultado print "$fich $nb\n";</pre> <br />al ejecutarlo: <br /><pre>$ ./exo2.pl page22.html cairo<br />page22.html 201<br />$</pre>
    </div>

<footer class="for_buttons_bar jFooterButtonBar">
    
<span class="for_buttons_bar__vote" data-testid="vote-counter">
    <button
            data-type="votep"
            data-voteid="35756910"
            data-testid="vote-up"
            class="ico--thumbup btn jVoteAction  "
            title="Esta respuesta es útil"
            data-ga-event-click-category="Forum"
            data-ga-event-click-action="Vote"
            data-ga-event-click-label="Vote_up_comment"
    ></button>
    <span class="jVote" data-voteid="35756910" >0</span>

            <button
                data-testid="vote-down"
                class="ico--thumbdown btn jTokenGenerator"
                data-token="aHR0cHM6Ly9hdXRoLmNvbW1lbnRjYW1hcmNoZS5uZXQvcmVnaXN0ZXI/Y2xpZW50X2lkPWNjbUZSJnJlZGlyZWN0X3VyaT1odHRwcyUzQSUyRiUyRnd3dy5jb21tZW50Y2FtYXJjaGUubmV0JTJGYXV0aCUyRmFjY2Vzcy10b2tlbiZyZXNwb25zZV90eXBlPWNvZGUmc291cmNlPTMmb3JpZ2luX3VybD1odHRwcyUzQSUyRiUyRmZvcnVtcy5jb21tZW50Y2FtYXJjaGUubmV0JTJGZm9ydW0lMkZhZmZpY2gtMzU3NTM0OTktcHJvZ3JhbW1lLXBlcmwlMjNwMzU3NTY5MTA="
                title="Esta respuesta no es útil"
        ></button>
    
</span>

    

            



    <div class="cp_dropdown cp_dropdown--right cp_dropdown--modale-in-mobile">
        <button type="button" class="ico--more cp_dropdown__btn btn jDropDownContainer" data-testid="actions-dropdown"></button>
        <div class="cp_dropdown__content jDropDownElement">
            <ul role="menu" class="cp_dropdown__menu">
                                    <li><button data-source="toolbar" data-actid="signal" data-testid="report-button" title="Reportar" data-msgid="35756910"  class="ico--warning jOpenSignalPopup">Reportar</button></li>
                            </ul>
        </div>
    </div>
</footer>

    </div>
</div>            </div>
    </div>
    </div>
    </div>
        <footer class="for_buttons_bar for_buttons_bar--footer">
    
    
</footer>
    </div>    </div>
    <div id="jTopicMobileActionBarOffsetEnd"></div>

        



    <div class="noTargetBlank ad_wrapper jATColMiddle jAP1" ></div>

    
<aside class="box-inscription">
    <span class="section-title">Hágase miembro en unos pocos clics</span>

    	<ul class="list--ico-in-bubble">
    <li>
        <span class="ico--in-bubble ccm_ico--network"></span> 
        Conéctese fácilmente con aquellos que comparten sus intereses
    </li>
    <li>
        <span class="ico--in-bubble ccm_ico--star"></span> 
        Siga fácilmente sus discusiones y obtenga más respuestas 
    </li>
    <li>
        <span class="ico--in-bubble ccm_ico--idea"></span> 
        Destaque su experiencia y ayude a otros miembros 
    </li>
            <li>
            <span class="ico--in-bubble ccm_ico--open-source"></span> 
            Disfrute de muchas funcionalidades adicionales al registrarse
        </li>
    </ul>


    <footer>
        <a href="https://auth.commentcamarche.net/register?client_id=ccmFR&redirect_uri=https%3A%2F%2Fwww.commentcamarche.net%2Fauth%2Faccess-token&response_type=code&source=3&origin_url=https%3A%2F%2Fforums.commentcamarche.net%2Fforum%2Faffich-35753499-programme-perl%3Flang%3Des" class="btn--size-l btn--bg-channel" data-ga-event-click-category="Forum" data-ga-event-click-action="Register" data-ga-event-click-label="Register_end_topic" rel="noopener">Registrarse</a>
    </footer>
</aside>


    
</div>
                        </div>
                    </div>
                </div>

                <div class="app_layout_right jLayoutRight">
            <div class="sticky-wrapper" id="jSidebarSticky">
            <div id="sticky1" class="sticky-zone">
                <div class="sticky-element">
                    
<div class="ad_right noTargetBlank">
    <div id="ctn_right"><div id="ba_right" class="ba "><script>OAS_AD("Right");</script></div></div>
</div>

                </div>
            </div>
                            <div id="sticky1-bis" class="sticky-zone">
                    <div class="sticky-element">
                        


    <div class="box_aside dontPrint jAsideBox " id="languageswitcherbox">

        <header class="jBoxTitle">
        <span class="box_aside__title">
             Últimas discusiones
        </span>
        </header>

        <div class="box_aside__content jAsideBoxContent">
                            <ul>
                                                                                                                                

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38294894-virus-suspecte?lang=es" >Virus sospechoso</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 20:25</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38295084-l-application-autodoc-vaut-elle-le-coup?lang=es" >¿vale la pena la aplicación autodoc?</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 20:00</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38294968-audio-processing-object-apo-update-en-echec?lang=es" >¿falló la actualización del objeto de procesamiento de audio (apo)?</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 19:38</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38295020-la-securite-windows-m-empeche-de-trier-mes-photos?lang=es" >La "seguridad de windows" me impide ordenar mis fotos.</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 19:31</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38294898-mise-a-jour-avec-windows-updat-probleme?lang=es" >Actualización con windows update (problema)</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 19:30</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38294595-il-a-parcouru-2-400-km-avec-un-seul-plein-dans-une-voiture-de-1998-seulement-3-litres-aux-100-km?lang=es" >2,400 km recorridos con un solo tanque en un coche de 1998</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 19:07</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38295075-recuperation-cassettes-hi8-avec-august?lang=es" >Recuperación de cintas hi8 con august</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 18:45</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38294651-blocage-acces-nas-freebox-pro-sur-certains-pc?lang=es" >Bloqueo de acceso al nas freebox pro en algunos pc.</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 18:07</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38295019-site-inaccessible?lang=es" >Sitio inaccesible</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 18:02</span>
    </div>
</li>

                                                                                                                                                        

<li class="jMyInterventionLine">
     <h3>
        <a href="/forum/affich-38295043-imprimante-brother-mfc-j6510dw-erreur-50-et-ou-52?lang=es" >Impresora brother mfc-j6510dw error 50 o 52</a>
    </h3>
    <div>
         <span class="box_aside__infos">a las 17:26</span>
    </div>
</li>

                                                            </ul>
                    </div>
    </div>

                    </div>
                </div>
                            <div id="sticky2" class="sticky-zone">
                <div class="sticky-element">
                    
<div class="ad_right noTargetBlank">
    <div id="ctn_position2"><div id="ba_position2" class="ba position2"><script>OAS_AD("Position2");</script></div></div>
</div>
                </div>
            </div>
            <div id="sticky3" class="sticky-zone">

                <div class="sticky-element">
                        
<div class="box_aside dontPrint jAsideBox " id="languageswitcherbox">
    
        <header class="jBoxTitle">
        <span class="box_aside__title">
            Otros idiomas
        </span>
    </header>
    
        <div class="box_aside__content jAsideBoxContent" >
            <ul class="lang-selector">

                    <li><a class='lang-btn' hreflang='en' href='/forum/affich-35753499-programme-perl?lang=en' ><span class='flag'>🇬🇧</span> English</a></li>
                                    <li><a class='lang-btn'  hreflang='fr'  href='/forum/affich-35753499-programme-perl'><span class='flag'>🇫🇷</span> Français</a></li>
            </ul>
            </div>
</div>

<div class="ad_right noTargetBlank">
    <div id="ctn_position1"><div id="ba_position1" class="ba position1"><script>OAS_AD("Position1");</script></div></div>
</div>
                </div>
            </div>
        </div>
    



    <div class="noTargetBlank ad_wrapper jATColRight jAP1" ></div>
</div>

                <div class="newLoading" style="display:none">
                    <div class="loaderNew"></div>
                </div>
            </div>

            <div id="jGoTop" class="ccm_go_top">
    <a href="#top"></a>
</div>

        </div>

        <!-- footerdebbloc -->
<footer class="cp_footer">
    <div class="cp_footer__links">
        <div id="footer_internal_links">
            <ul>
                <li><a href="https://www.commentcamarche.net/infos/27053-qui-sommes-nous/">¿Quiénes somos?</a></li>
                <li><a href="https://www.commentcamarche.net/infos/25957-commentcamarche-l-equipe/">El equipo</a></li>
                <li><a href="https://carrieres.ccmbenchmark.com/">Nuestra empresa</a></li>
                <li><a href="https://www.commentcamarche.net/contact/24-publicite">Publicidad</a></li>
                <li><a href="https://www.commentcamarche.net/contact/">Contact</a></li>
                <li><a href="https://carrieres.ccmbenchmark.com/jobs">Empleo</a></li>
                <li><a href="https://www.ccmbenchmark.com/donnees-personnelles?origin=www.commentcamarche.net">Datos
                        personales</a></li>
                <li><a class="jConsentChoice"
                       href="https://www.ccmbenchmark.com/donnees-personnelles?origin=www.commentcamarche.net">Configurar
                        cookies</a></li>
                <li><a href="https://www.commentcamarche.net/infos/25845-charte-d-utilisation-de-commentcamarche-net/">Condiciones
                        de uso</a></li>
                <li><a href="https://www.commentcamarche.net/rss/">RSS</a></li>
                <li><a href="https://www.commentcamarche.net/infos/25859-conditions-generales-d-utilisation/">Avisos
                        legales</a></li>
                <li><a href="https://www.groupefigaro.com/">Groupe Figaro</a></li>
                <li><a href="https://www.ccmbenchmark.com">©2025 CCM Benchmark</a></li>
            </ul>
        </div>
    </div>
    <div class="cp_footer__logo">
        <a original-title="CCM Benchmark Group" href="https://jobs.ccmbenchmark.com/" target="_blank">
            <svg xmlns="http://www.w3.org/2000/svg" width="209" height="49">
                <path fill="#D6071B"
                      d="M19.98 0C8.94 0 0 9.05 0 20.22a20.15 20.15 0 0017.2 20.03v8.72c2.33-5.36 9.63-9.75 9.75-9.8 7.6-2.86 13-10.26 13-18.95C39.96 9.05 31.02 0 19.99 0zm7.64 23.85l-4.65 4c-2.21 1.89-2.5 2.82-2.5 4.83v2.11h-2.74c-1.74 0-3.54-1.53-3.54-3.47 0-2.89.93-5.06 3.78-7.41l4.12-3.42a4.41 4.41 0 001.75-3.53c0-2.82-1.92-4.41-5.81-4.41-4.42 0-7.68 1.47-9.48 3.94h-.29v-2.77c0-4 3.37-8.17 10.99-8.17 8.07 0 12.43 4.82 12.43 10.53 0 3-.98 5.13-4.06 7.77z"/>
                <path fill="#D6071B"
                      d="M47.92 24.76c0-2.44 1.4-3.86 4.69-3.86 1.22 0 2.49.16 3.58.43l-.28 2.19c-1.07-.2-2.3-.34-3.22-.34-1.72 0-2.27.6-2.27 2.02v5.12c0 1.42.55 2.02 2.27 2.02.91 0 2.16-.14 3.22-.34l.28 2.18c-1.09.28-2.35.44-3.58.44-3.28 0-4.69-1.42-4.69-3.86v-6zM57.73 24.76c0-2.44 1.4-3.86 4.69-3.86 1.22 0 2.5.16 3.58.43l-.28 2.19c-1.07-.2-2.31-.34-3.22-.34-1.72 0-2.27.6-2.27 2.02v5.12c0 1.42.55 2.02 2.27 2.02.91 0 2.16-.14 3.22-.34l.28 2.18c-1.09.28-2.36.44-3.58.44-3.28 0-4.69-1.42-4.69-3.86v-6zM76 32.7h-3.16l-2.43-6.9-.22 8.62h-2.55l.6-13.33h2.78l3.4 9.47 3.4-9.47h2.8l.59 13.33h-2.55l-.22-8.62z"/>
                <path fill="currentColor"
                      d="M85.48 21.09h9.62c1.87 0 3.61.87 3.61 3.27 0 1-.5 2.22-1.7 2.6V27c1.49.25 2.28 1.74 2.28 3.14 0 1.73-.8 3.92-4.67 3.92h-9.14V21.1zm3.48 5.16h4.85c.8 0 1.3-.44 1.3-1.4 0-.82-.35-1.4-1.8-1.4h-4.35v2.8zm0 5.34h5.14c1.07 0 1.49-.7 1.49-1.52 0-1.02-.63-1.56-1.85-1.56h-4.78v3.08zM113.11 31.16c-.91 2.3-3.1 3.27-6 3.27-3.8 0-6.35-1.56-6.35-5.24 0-3.67 2.55-5.23 6.35-5.23 4.17 0 6.18 2.12 6.18 5.8v.29h-9.26v.03c0 .93.93 2.35 3.08 2.35 1.28 0 2.18-.44 2.63-1.27h3.37zm-3.08-3v-.04c0-.53-.67-2.16-2.99-2.16-2.5 0-3.01 1.92-3.01 2.16v.03h6v.01zM122.9 28.54c0-1.35-.7-2-2.12-2-1.48 0-2.71.75-2.71 2.82v4.71h-3.16v-9.74h3.05v1.42h.03c.57-.82 2.09-1.68 3.93-1.68 1.64 0 4.14.64 4.14 3.51v6.49h-3.16v-5.53zM135.42 27.92c-.33-1.29-1.19-1.7-2.3-1.7-1.72 0-2.71 1.07-2.71 2.98 0 1.9 1 2.98 2.71 2.98 1.23 0 2.16-.76 2.3-1.98h2.87c-.5 3.45-2.65 4.23-5.4 4.23-3.2 0-5.35-1.56-5.35-5.24 0-3.67 2.24-5.23 5.58-5.23 2.15 0 4.65.74 5.17 3.96h-2.87zM139.8 20.87h3.16v4.87h.04c.46-.82 1.97-1.67 3.82-1.67 1.64 0 4.13.63 4.13 3.5v6.5h-3.16v-5.53c0-1.35-.7-2-2.12-2-1.47 0-2.7.75-2.7 2.82v4.71h-3.17v-13.2zM168.07 28.22c0-1.31-1.02-1.68-1.94-1.68-1.3 0-2.39.73-2.39 2.25v5.27h-3.16v-5.84c0-1.31-1.02-1.68-1.9-1.68-1.35 0-2.42.73-2.42 2.25v5.27h-3.16v-9.73h3.05v1.42h.03c.58-.82 2.09-1.68 3.93-1.68 1.83 0 2.84.73 3.32 1.84a4.73 4.73 0 013.97-1.84c1.94 0 3.83.84 3.83 3.4v6.6h-3.16v-5.85zM173.43 27.3c.37-3 3.1-3.34 5.68-3.34 4.53 0 5.5 1.5 5.5 3.3v4.85c0 .85.14 1.47.36 1.96h-3.16c-.1-.34-.2-.7-.22-1.04-1.07 1.09-3.09 1.4-4.5 1.4-2.52 0-4.28-.9-4.28-3.17 0-2.36 2.06-2.86 3.99-3l3.36-.23c.97-.07 1.29-.24 1.29-1.02s-.65-1.16-2.48-1.16c-1.35 0-2.05.1-2.5 1.46h-3.04zm8.13 2.02c-.6.3-1.24.37-1.87.42l-1.83.16c-1.11.09-1.67.4-1.67 1.27s.81 1.37 2 1.37c1.59 0 3.37-.78 3.37-2.42v-.8zM186.7 24.33h3.04v1.9h.04c1.15-1.48 2.05-2.16 3.84-2.16.37 0 .8.02 1.15.1v2.99a6.4 6.4 0 00-1.74-.3c-2.15 0-3.18 1.12-3.18 3v4.2h-3.16v-9.73zM196 20.87h3.18v7.09l4.18-3.63h4.4l-4.58 3.7 4.86 6.03h-4.18l-3.14-4.05-1.54 1.26v2.8H196z"/>
                <path fill="currentColor"
                      d="M94.46 9.37h7.25v2.22h-1.78v-.38c0-.2-.12-.37-.39-.37h-1.6v1.25h1.48v1.35h-1.49v1c0 .28.12.39.47.39h.57v1.47h-4.51v-1.47h.6c.17 0 .29-.12.29-.3V11.2c0-.2-.03-.36-.32-.36h-.57V9.37z"/>
                <path fill="currentColor"
                      d="M105.81 11.19c0-.26.08-.35.33-.35h.53V9.36h-4.28v1.48h.54c.3 0 .33.13.33.35v3.32c0 .26-.15.32-.34.32h-.54v1.47h4.29v-1.47h-.53c-.2 0-.33-.09-.33-.32v-3.32zM112.97 9.37h1.52v2.43h-1.53s-.43-1.06-1.66-1.06c-.93 0-1.65.67-1.65 1.92 0 2.12 1.16 2.3 1.66 2.3 1.03 0 1.26-.73 1.26-1.03h-.95v-1.28h3.28l-.02.9c0 .17-.17 2.87-3.85 2.87-2.65 0-4.04-1.53-4.04-3.73 0-1.45 1.12-3.43 3.82-3.43 1.51 0 2.17.62 2.17.62v-.51h-.01zM122.92 14.83c-.3 0-.38-.26-.56-.7-.14-.34-1.8-4.76-1.8-4.76h-2.64l-1.88 5.12c-.1.24-.25.34-.51.34h-.39v1.47h3.23v-1.4h-.45c-.2 0-.23-.15-.17-.36l.2-.62h1.96l.21.66c.08.23-.17.32-.31.32h-.39v1.4h3.89v-1.47h-.39zm-4.64-1.86l.67-2.04h.02l.64 2.04h-1.33zM132.03 14.83c-.26 0-.3-.13-.44-.3a72.9 72.9 0 01-.95-1.47s1.2-.35 1.2-1.64-1.07-1.75-1.52-1.87a9.97 9.97 0 00-1.7-.18h-4.68v1.48h.46c.29 0 .32.15.32.35v3.3c0 .14-.02.33-.34.33h-.45v1.48h4.12v-1.48h-.42c-.29 0-.32-.16-.32-.33v-1.12h.92l1.68 2.92h2.59v-1.47h-.47zm-3.78-2.66h-.94v-1.42h1.02c.3 0 .83.1.83.72 0 .47-.34.7-.9.7zM136.3 9.26c-2.86 0-3.9 1.94-3.9 3.5 0 2.08 1.44 3.66 3.88 3.66 2.18 0 3.9-1.2 3.9-3.57 0-2.24-1.64-3.59-3.87-3.59zm.06 5.7c-.63 0-1.3-.38-1.3-2.31 0-1.2.46-1.93 1.23-1.93.72 0 1.25.49 1.25 2.06 0 1.7-.55 2.18-1.18 2.18z"/>
                <path fill="currentColor"
                      d="M55.32 12.63h-3.37v1.45h1.07c-.22.5-.65.77-1.27.77-.85 0-1.75-.57-1.75-2.14 0-1.16.69-1.94 1.7-1.94.42 0 .73.1 1.03.31.29.2.5.5.62.85l.04.12h1.39V9.37h-1.44v.37a3.5 3.5 0 00-1.87-.48c-2.13 0-3.62 1.47-3.62 3.56 0 2.17 1.49 3.57 3.8 3.57a4 4 0 002.88-1.11c.6-.62.86-1.46.8-2.48v-.17zM60.99 13.1a1.82 1.82 0 001.06-1.72c0-1.19-.87-2.02-2.13-2.02H55.7v1.46h.89v4.03h-.9v1.45h3.74v-1.45h-.81V13.4h.48l1.47 2.9h2.25v-1.45h-.9l-.93-1.76zm-2.37-2.28h.7c.61 0 .63.52.63.57 0 .19-.08.62-.81.62h-.52v-1.2zM66.5 9.26c-2.6 0-3.78 1.85-3.78 3.57 0 1.71 1.19 3.56 3.78 3.56 2.61 0 3.8-1.85 3.8-3.56 0-1.72-1.19-3.57-3.8-3.57zm1.65 3.56c0 1.4-.82 2.03-1.65 2.03-.97 0-1.63-.8-1.63-2 0-1.51.88-2.05 1.63-2.05.99 0 1.65.8 1.65 2.02zM74.16 10.82h.54v3.24c0 .6-.23.86-.74.86-.48 0-.68-.26-.68-.92v-3.18h.57V9.37h-3.37v1.45h.77v3.29c0 1.48.87 2.27 2.52 2.27.57 0 2.42-.15 2.42-2.03v-3.53H77V9.37h-2.84v1.45zM81.46 9.37H77.6v1.45h.82v4.03h-.82v1.46h3.75v-1.46h-.9v-.95h.9c1.85 0 2.5-1.16 2.5-2.26 0-1.32-1-2.27-2.38-2.27zm.25 2.27c0 .4-.11.8-.96.8h-.3v-1.62h.48c.48 0 .78.32.78.82zM90.1 11.79V9.37h-6.07v1.45h.77v4.03h-.77v1.45h6.06v-2.44h-1.57v.99h-1.7v-1.4h1.64V12h-1.63v-1.18h1.7v.97z"/>
            </svg>
        </a>
    </div>
    <!-- possible de faire un init des logos à afficher dans un block, pour des sites externes comme phonandroid -->
    <div class="cp_footer__brands">
        <a href="https://www.journaldesfemmes.fr/" title="Journal des femmes">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 109 27" style="width:100px">
                <path fill="currentColor"
                      d="M15.849 9.695l.06-9.265H.302v25.71h6.05V13.01h.423c4.658 0 5.202 6.074 5.202 6.074h.121V6.873h-.06s-.605 6.075-5.202 6.075h-.424V.552h1.21c7.259 0 8.227 9.143 8.227 9.143"/>
                <path fill="currentColor"
                      d="M15.849 9.695l.06-9.265H.302v25.71h6.05V13.01h.423c4.658 0 5.202 6.074 5.202 6.074h.121V6.873h-.06s-.605 6.075-5.202 6.075h-.424V.552h1.21c7.259 0 8.227 9.143 8.227 9.143h0z"
                      stroke-width=".553"/>
                <path fill="currentColor"
                      d="M69.02 7.61v18.654h5.203V7.609h-5.202zm20.93 4.601l.061-4.602h-1.754c1.331 2.148 1.694 4.602 1.694 4.602zm-59.1 0l.061-4.602h-1.754c1.391 2.148 1.694 4.602 1.694 4.602zM55.47 7.61l7.2 18.961 5.685-18.96h-.12l-3.086 10.37-3.932-10.37h-5.746zm-.604 0v18.655h.12V7.609h-.12zm-7.44 0v18.655h5.202V7.609h-5.203zm-13.611 0l7.198 18.961L46.7 7.61h-.12l-3.025 10.37-3.932-10.37h-5.807zm-.605 0v18.655h.12V7.609h-.12zm-15.728 0v18.532h14.579v-8.53h-.121s-.605 8.469-8.288 8.469h-1.089V15.034h.424c3.932 0 4.416 5.155 4.416 5.155h.06V9.819h-.06s-.484 5.154-4.416 5.154h-.363V7.609h-5.142zM91.1 26.141v-8.53h-.06s-.605 8.469-8.288 8.469h-1.088V15.034h.363c3.931 0 4.415 5.155 4.415 5.155h.06V9.819s-.483 5.154-4.415 5.154h-.363V7.609h-5.142v18.532H91.1z"/>
                <path fill="currentColor"
                      d="M69.02 7.61v18.654h5.203V7.609h-5.202zm20.93 4.601l.061-4.602h-1.754c1.331 2.148 1.694 4.602 1.694 4.602zm-59.1 0l.061-4.602h-1.754c1.391 2.148 1.694 4.602 1.694 4.602zM55.47 7.61l7.2 18.961 5.685-18.96h-.12l-3.086 10.37-3.932-10.37h-5.746 0zm-.604 0v18.655h.12V7.609h-.12zm-7.44 0v18.655h5.202V7.609h-5.203 0zm-13.611 0l7.198 18.961L46.7 7.61h-.12l-3.025 10.37-3.932-10.37h-5.807 0zm-.605 0v18.655h.12V7.609h-.12zm-15.728 0v18.532h14.579v-8.53h-.121s-.605 8.469-8.288 8.469h-1.089V15.034h.424c3.932 0 4.416 5.155 4.416 5.155h.06V9.819h-.06s-.484 5.154-4.416 5.154h-.363V7.609h-5.142 0zM91.1 26.141v-8.53h-.06s-.605 8.469-8.288 8.469h-1.088V15.034h.363c3.931 0 4.415 5.155 4.415 5.155h.06V9.819s-.483 5.154-4.415 5.154h-.363V7.609h-5.142v18.532H91.1z"
                      stroke-width=".389"/>
                <path fill="currentColor"
                      d="M99.206 26.632c-4.476 0-7.622-3.068-7.924-5.277.363 1.35 1.512 2.27 2.903 2.27 1.694 0 3.025-1.35 3.025-3.068s-1.33-3.068-3.025-3.068c-1.996 0-3.024 1.595-3.024 3.313 0 .246.06.614.181 1.105.666 2.086 3.69 4.725 7.864 4.725 5.202 0 9.376-3.743 9.376-8.1 0-9.818-13.429-7.61-13.429-14.175 0-1.473.787-3.989 4.174-3.989 4.537 0 7.501 2.762 7.804 4.91-.363-1.35-1.513-2.271-2.904-2.271-1.694 0-3.025 1.35-3.025 3.068s1.331 3.068 3.025 3.068c1.996 0 3.025-1.595 3.025-3.313 0-.246-.061-.614-.182-1.105-.665-2.148-3.569-4.48-7.743-4.48-5.202 0-8.106 3.253-8.106 7.61 0 8.775 13.913 6.627 13.913 14.052 0 1.657-.968 4.725-5.928 4.725"/>
                <path fill="currentColor"
                      d="M99.206 26.632c-4.476 0-7.622-3.068-7.924-5.277.363 1.35 1.512 2.27 2.903 2.27 1.694 0 3.025-1.35 3.025-3.068s-1.33-3.068-3.025-3.068c-1.996 0-3.024 1.595-3.024 3.313 0 .246.06.614.181 1.105.666 2.086 3.69 4.725 7.864 4.725 5.202 0 9.376-3.743 9.376-8.1 0-9.818-13.429-7.61-13.429-14.175 0-1.473.787-3.989 4.174-3.989 4.537 0 7.501 2.762 7.804 4.91-.363-1.35-1.513-2.271-2.904-2.271-1.694 0-3.025 1.35-3.025 3.068s1.331 3.068 3.025 3.068c1.996 0 3.025-1.595 3.025-3.313 0-.246-.061-.614-.182-1.105-.665-2.148-3.569-4.48-7.743-4.48-5.202 0-8.106 3.253-8.106 7.61 0 8.775 13.913 6.627 13.913 14.052 0 1.657-.968 4.725-5.928 4.725z"
                      stroke-width=".346"/>
                <path fill="currentColor"
                      d="M86.019 6.505c0-.307.121-.43.363-.43.363 0 .847.552 1.875.552 1.391 0 1.996-.675 1.996-1.78 0-2.27-3.63-1.779-3.63-3.436 0-.552.364-.981 1.271-.981 1.029 0 1.754.736 1.754 1.78h.182V.306h-.182c0 .123-.06.245-.302.245s-.605-.368-1.452-.368c-1.27 0-1.996.675-1.996 1.657 0 2.27 3.69 1.718 3.69 3.498 0 .613-.363 1.043-1.391 1.043-1.21 0-2.178-1.043-2.178-2.27h-.181v2.393h.181zm-1.15-1.78c0 1.35-.604 1.595-1.33 1.595h-1.754V3.436h.725c1.09 0 1.15.184 1.15 1.105h.181V2.148h-.181c0 .859-.121 1.104-1.15 1.104h-.725v-2.7h1.633c.847 0 1.33.246 1.33 1.412h.182V.307h-4.96V.49h.605v5.768h-.605v.184h5.02V4.725h-.12zM75.918 6.32h-.847V.552h.847c1.573 0 2.238.86 2.238 2.884 0 2.025-.665 2.884-2.238 2.884zm0-6.013h-2.601V.49h.605v5.768h-.605v.184h2.661c1.755 0 3.448-.92 3.448-3.068S77.671.307 75.917.307zm-4.96 4.418c0 1.35-.605 1.595-1.331 1.595h-1.392V.552h.605V.307H66.48V.49h.605v5.768h-.605v.184H71.2V4.725h-.242zm-9.498-.368l1.09-2.7 1.088 2.7H61.46zm4.174 1.963L63.093.184h-.242L60.43 6.32h-.726v.185h1.754V6.32h-.846l.665-1.78h2.36l.725 1.78h-.786v.185h2.6V6.32h-.544zM59.766.307H58.01V.49h.847v4.173L55.228.307h-1.39V.49h.604v5.768h-.605v.184h1.815V6.26h-.847V1.595l4.174 5.032h.182V.491h.605V.307zM49.482 3.314V.552h.847c1.028 0 1.33.368 1.33 1.412 0 .981-.423 1.411-1.512 1.411l-.665-.061zm4.114 3.006c-.363 0-.605-.184-.847-1.35-.303-1.104-.726-1.595-1.755-1.595 1.09-.123 1.997-.49 1.997-1.534 0-1.227-1.15-1.534-2.48-1.534h-2.723V.49h.605v5.768h-.605v.184h2.42V6.26h-.605V3.498h.726c1.875 0 .605 3.007 2.601 3.007h.907V6.32h-.241zM47.304.307H45.55V.49h.847v3.804c0 1.473-.605 2.025-1.633 2.025-1.15 0-1.755-.613-1.755-2.086V.552h.605V.307h-2.359V.49h.605v3.743c0 1.657.968 2.393 2.601 2.393 1.331 0 2.238-.49 2.238-2.27V.552h.605V.307zM37.565.43c1.21 0 1.815.859 1.815 3.006 0 2.148-.605 3.007-1.815 3.007-1.27 0-1.814-.92-1.814-3.007C35.69 1.29 36.355.43 37.565.43zm0 6.197c1.452 0 3.085-.92 3.085-3.19 0-2.271-1.633-3.253-3.085-3.253s-3.085.92-3.085 3.191c0 2.27 1.633 3.252 3.085 3.252zM33.996.307h-2.359V.49h.605v4.48c0 1.043-.181 1.472-.968 1.472-.605 0-1.089-.368-1.089-.859 0-.43.847-.184.847-.859 0-.368-.242-.614-.605-.614-.423 0-.665.369-.665.86 0 1.043.544 1.595 1.512 1.595 1.452 0 2.057-.86 2.057-2.086V.552h.605c.06 0 .06-.245.06-.245zm-6.593 4.418c0 1.35-.605 1.595-1.331 1.595h-1.754V3.436h.725c1.029 0 1.15.246 1.15 1.105h.181V2.148h-.181c0 .859-.121 1.104-1.15 1.104h-.725v-2.7h1.633c.847 0 1.33.246 1.33 1.412h.182V.307h-4.96V.49h.605v5.768h-.605v.184h5.02V4.725h-.12zm-5.384 0c0 1.35-.605 1.595-1.33 1.595h-1.392V.552h.605V.307h-2.36V.49h.605v5.768h-.604v.184h4.718V4.725h-.242z"/>
            </svg>
        </a>
        <a href="https://www.journaldunet.com/" title="Journal Du Net">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 89 33" style="width:68px">
                <path fill="currentColor"
                      d="M17.94 21.21c0 5.96-2.97 11.2-10.7 11.2-5.1 0-7.24-2.6-7.24-4.89 0-1.47 1.07-2.48 2.61-2.48 1.37 0 2.5 1.07 2.5 2.48 0 1.53-1.07 2.36-1.07 3.12 0 .77.71 1 3.8 1 6 0 5.77-4.83 5.77-10.07V7.3c0-6.48-.42-7.02-2.74-7.13h-1V.06h11.82v.12l-1.01.06c-2.32.11-2.74.64-2.74 7.13V21.2zM22.87 31.64l1.01-.05c2.32-.12 2.74-.65 2.74-7.13V7.3c0-6.48-.42-7.02-2.74-7.13l-1-.06V0h15.56c10.52 0 16.04 7.19 16.04 15.85 0 8.72-5.82 15.91-16.04 15.91H22.87v-.12zM33.21.82c-2.08 0-2.26.18-2.26 6.55V24.5c0 6.37.12 6.55 2.26 6.55h5.29c8.02 0 11.17-7.08 11.17-15.09C49.67 7.6 45.93.88 38.5.88H33.2V.82zM83.71 25.81V10.73c0-3.9-.71-10.38-4.33-10.55L78.37.12V0H88.7v.12l-.53.06c-2.62.23-3.69 3.89-3.69 11.13v20.92h-.65L59.53 3.48V21.1c0 3.89.71 10.37 4.34 10.54l1 .06v.12H54.55v-.18l.54-.05c2.61-.24 3.68-3.9 3.68-11.14V7.3c0-6.48-1.01-7.02-3.33-7.13L54.6.12V0h7.84l21.27 25.81z"/>
            </svg>
        </a>
        <a href="https://www.linternaute.com/" title="Linternaute">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 115 19" style="width:115px">
                <g fill="#E21F32" fill-rule="nonzero">
                    <path d="M.23 15.55V0h3.29v15.55zM9.01 2.42c0 1.03-.79 1.8-1.9 1.8-1.12 0-1.91-.77-1.91-1.8 0-1 .79-1.84 1.9-1.84 1.12 0 1.91.87 1.91 1.84zM5.46 15.55V5.41h3.3v10.14h-3.3zM21.19 9.34v6.21h-3.3v-5.53c0-1.2-.72-2-1.77-2-1.32 0-2.14.87-2.14 2.83v4.7H10.7V5.41H14v.97a4.35 4.35 0 013.18-1.3c2.4.04 4.02 1.71 4.02 4.26zM30.5 15.1c-.8.42-1.65.74-2.83.74-2.57 0-4.12-1.38-4.12-4.02V7.99h-1.87V5.4h1.87V2.03h3.3V5.4h3.05v2.58h-3.06v3.5c0 1.07.53 1.49 1.39 1.49.46 0 1.08-.16 1.5-.42l.77 2.54z"/>
                    <path d="M41.09 11.3h-7.6c.26 1.23 1.12 1.97 2.24 1.97.75 0 1.64-.2 2.2-1.16l2.93.58c-.89 2.12-2.77 3.15-5.13 3.15-3 0-5.46-2.15-5.46-5.37a5.3 5.3 0 015.49-5.38c2.93 0 5.3 2.06 5.33 5.38v.83zm-7.53-1.96h4.27a2.05 2.05 0 00-2.07-1.61c-.95 0-1.9.58-2.2 1.6zM49.77 5.35l-.13 3.22h-.59c-2.3 0-3.55 1.16-3.55 3.8v3.15h-3.3V5.41h3.3v1.93a4 4 0 013.55-2.1c.3.04.5.04.72.1zM61.06 9.34v6.21h-3.3v-5.53c0-1.2-.72-2-1.77-2-1.28 0-2.14.87-2.14 2.83v4.7h-3.29V5.41h3.3v.97a4.35 4.35 0 013.18-1.3c2.4.04 4.02 1.71 4.02 4.26z"/>
                    <path d="M94.48 15.55h-3.29v-.96A4.33 4.33 0 0188 15.84c-2.4 0-4.01-1.67-4.01-4.21V5.4h3.29v5.54c0 1.2.72 2 1.77 2 1.29 0 2.14-.87 2.14-2.84v-4.7h3.29v10.14zM103.92 15.1c-.79.42-1.64.74-2.83.74-2.56 0-4.1-1.38-4.1-4.02V7.99H95.1V5.4h1.87V2.03h3.29V5.4h3.06v2.58h-3.06v3.5c0 1.07.53 1.49 1.38 1.49.46 0 1.09-.16 1.52-.42l.75 2.54z"/>
                    <path d="M114.51 11.3h-7.6c.27 1.23 1.12 1.97 2.24 1.97.76 0 1.65-.2 2.2-1.16l2.93.58c-.88 2.12-2.76 3.15-5.13 3.15-3 0-5.46-2.15-5.46-5.37a5.3 5.3 0 015.5-5.38c2.92 0 5.3 2.06 5.32 5.38v.83zm-7.53-1.96h4.28a2.05 2.05 0 00-2.07-1.61c-.96 0-1.91.58-2.2 1.6z"/>
                    <path d="M72.47.03a10.36 10.36 0 00-10.46 10.24 10.19 10.19 0 004.64 8.5l2.14-2.09a7.26 7.26 0 01-3.85-6.44 7.45 7.45 0 017.53-7.37 7.45 7.45 0 017.54 7.37c0 1.51-.46 2.9-1.25 4.1l-1.55-1.52c.43-.78.69-1.65.69-2.58a5.38 5.38 0 00-5.43-5.31c-3 0-5.43 2.38-5.43 5.31a5.3 5.3 0 003.33 4.9 5.53 5.53 0 004.15 0l1.57 1.54 2.14 2.1a9.95 9.95 0 002.57-2.39 9.98 9.98 0 002.07-6.12C82.93 4.61 78.23.03 72.47.03zm-2.63 10.24a2.61 2.61 0 012.63-2.57 2.61 2.61 0 012.63 2.57 2.63 2.63 0 01-5.26 0z"/>
                </g>
            </svg>
        </a>
        <a href="https://droit-finances.commentcamarche.com/" title="Droit-finances.net">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 104 40" style="width:64px">
                <path fill="currentColor"
                      d="M56.08 5.78c3.15 0 4.26 1.62 4.26 3.48v5.97c0 1.83-1.09 3.47-4.26 3.47H51.3V5.78h4.78zm-2.35 10.75h2.11c1.64 0 2.09-.66 2.09-1.9v-4.8c0-1.24-.45-1.9-2.09-1.9h-2.1v8.6zM67.68 11.23c-.9.4-1.63.83-2.48 1.38v6.09h-2.35V9.26h1.99l.17 1.04c.52-.35 1.63-1 2.46-1.23l.21 2.16zM72.91 18.86c-3.22 0-4.1-1.78-4.1-3.7v-2.38c0-1.93.88-3.71 4.1-3.71 3.22 0 4.1 1.78 4.1 3.7v2.38c0 1.93-.88 3.71-4.1 3.71zm0-7.8c-1.25 0-1.72.57-1.72 1.62v2.55c0 1.07.47 1.61 1.72 1.61 1.26 0 1.73-.57 1.73-1.61V12.7c.03-1.07-.47-1.64-1.73-1.64zM79.28 7.92V5.2h2.35v2.73h-2.35zm0 10.75V9.26h2.35v9.41h-2.35zM89.32 18.5c-.5.22-1.46.36-2.06.36-1.7 0-2.58-.8-2.58-2.5v-5.22h-1.4V9.26h1.4V6.9l2.35-.33v2.66h2.41l-.16 1.88h-2.25v4.95c0 .5.23.83.85.83.35 0 .78-.07 1.18-.19l.26 1.8zM42.42 22.67a7.2 7.2 0 00-1.35-.17c-.93 0-1.07.4-1.07 1.12v1.19h2.4l-.15 1.88h-2.22v7.56h-2.37v-7.54h-1.5v-1.88h1.5v-1.3c0-1.96.9-2.93 2.98-2.93.73 0 1.4.1 2.01.26l-.23 1.8zM44.03 23.48v-2.74h2.34v2.74h-2.34zm0 10.77v-9.42h2.34v9.42h-2.34zM54.63 34.25v-6.59c0-.5-.2-.76-.75-.76-.57 0-1.61.36-2.44.79v6.56h-2.35v-9.42h1.8l.24.79c1.18-.57 2.65-1 3.77-1 1.56 0 2.13 1.1 2.13 2.78v6.85h-2.4zM66.54 34.25h-1.91l-.17-.64c-.85.57-1.85.83-2.8.83-1.7 0-2.43-1.19-2.43-2.8 0-1.93.83-2.67 2.74-2.67h2.25v-1c0-1.04-.28-1.4-1.8-1.4-.85 0-1.77.12-2.6.28l-.28-1.8c.87-.26 2.17-.45 3.22-.45 2.96 0 3.8 1.04 3.8 3.4v6.25h-.02zm-2.36-3.57h-1.73c-.78 0-.97.22-.97.93 0 .67.21.95.94.95a3.9 3.9 0 001.78-.47v-1.4h-.02zM74.6 34.25v-6.59c0-.5-.22-.76-.76-.76-.57 0-1.61.36-2.44.79v6.56h-2.35v-9.42h1.8l.24.79c1.18-.57 2.65-1 3.77-1 1.56 0 2.13 1.1 2.13 2.78v6.85h-2.4zM79.12 30.8v-2.57c0-2.54 1.09-3.61 4.05-3.61.66 0 1.6.12 2.3.36l-.29 1.92a9.13 9.13 0 00-1.94-.26c-1.35 0-1.75.4-1.75 1.57v2.62c0 1.16.4 1.57 1.75 1.57.59 0 1.28-.08 1.94-.27l.28 1.93c-.61.21-1.51.36-2.3.36-2.93.02-4.04-1.07-4.04-3.62zM91.22 32.49c.9 0 1.84-.14 2.86-.45l.36 1.78c-1.07.4-2.32.6-3.46.6-2.96 0-3.98-1.38-3.98-3.64V28.3c0-2 .88-3.68 3.89-3.68 3 0 3.67 1.76 3.67 3.8v2.03h-5.24v.47c.07 1.14.48 1.57 1.9 1.57zm-1.83-3.97h2.99v-.48c0-.88-.26-1.5-1.42-1.5s-1.57.62-1.57 1.5v.48zM99.65 34.44c-1 0-2.37-.24-3.25-.55l.33-1.8c.79.23 1.83.4 2.8.4 1.04 0 1.18-.24 1.18-.95 0-.57-.12-.88-1.63-1.24-2.3-.57-2.56-1.14-2.56-2.97 0-1.9.83-2.73 3.5-2.73.88 0 2.02.11 2.82.33l-.23 1.88c-.71-.15-1.85-.26-2.58-.26-1.02 0-1.19.23-1.19.8 0 .76.05.81 1.33 1.15 2.63.68 2.86 1.04 2.86 2.97 0 1.83-.54 2.97-3.38 2.97z"/>
                <path fill="#2A8DC8"
                      d="M13.85 38.99v-6.85l-.47-.1a15.68 15.68 0 01-7.09-3.1A15.84 15.84 0 01.04 17.2c-.06-.77-.06-1.54.02-2.31.2-2.55.94-4.94 2.29-7.12A15.96 15.96 0 0116.87.02a16.13 16.13 0 0111.27 26.83 15.64 15.64 0 01-6.27 4.36c-.1.03-.18.07-.28.12a26.05 26.05 0 00-5.68 4.7 11.69 11.69 0 00-2 2.94c-.04.04-.04.04-.06.02zM6.67 13.15c.22.04.2.04.33-.11a7.43 7.43 0 013.73-2.47c.9-.3 1.85-.44 2.81-.52.82-.05 1.66-.05 2.47.08.57.09 1.13.25 1.64.53.58.33 1.04.79 1.3 1.4a3.58 3.58 0 01-1.15 4.3l-2.71 2.21c-.55.46-1.11.9-1.6 1.41a7.76 7.76 0 00-1.5 2.1 7.16 7.16 0 00-.52 3.3 2.94 2.94 0 002.62 2.35c.78.03 1.56.01 2.32.01l.08-.01v-.2c0-.72 0-1.42.02-2.13.01-.77.29-1.45.8-2.03.32-.39.69-.73 1.09-1.06l3.74-3.2c.64-.54 1.25-1.1 1.78-1.75a6.87 6.87 0 001.35-2.45c.3-1.14.34-2.3.16-3.45a7.6 7.6 0 00-3.1-5.09 9.87 9.87 0 00-4.28-1.75c-1.1-.17-2.24-.22-3.34-.17-1 .06-1.99.2-2.93.48-1.15.35-2.2.86-3.1 1.66a5.68 5.68 0 00-2 4.14c-.04.79-.03 1.58-.03 2.35 0 .03 0 .05.02.07z"></path>
            </svg>
        </a>
        <a href="https://copainsdavant.linternaute.com/" title="Copains d'avant">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123 36" style="width:86px">
                <g fill="#E21F32">
                    <path d="M.21 28.89V15.58h2.77v13.3zM7.58 17.67c0 .87-.69 1.53-1.61 1.53-.93 0-1.59-.66-1.59-1.53 0-.85.66-1.59 1.59-1.59.92 0 1.6.74 1.6 1.59zM4.59 28.89v-8.66h2.78v8.66H4.59zM17.77 23.58v5.3h-2.74v-4.72c0-1.03-.61-1.71-1.48-1.71-1.09 0-1.8.74-1.8 2.43v4H8.98v-8.65h2.77v.82a3.62 3.62 0 012.67-1.09c2 0 3.35 1.43 3.35 3.62zM25.56 28.52c-.68.37-1.37.63-2.37.63-2.17 0-3.46-1.16-3.46-3.46v-3.27h-1.59v-2.2h1.59v-2.9h2.77v2.9h2.56v2.2H22.5v3.01c0 .9.42 1.27 1.16 1.27.37 0 .9-.13 1.27-.35l.63 2.17z"/>
                    <path d="M34.43 25.27h-6.36c.24 1.03.92 1.67 1.88 1.67.63 0 1.37-.16 1.84-1l2.46.5c-.74 1.82-2.32 2.71-4.3 2.71a4.46 4.46 0 01-4.57-4.6c0-2.71 2.06-4.59 4.6-4.59 2.45 0 4.4 1.77 4.45 4.6v.71zm-6.3-1.69h3.56c-.27-.92-.95-1.37-1.74-1.37a1.9 1.9 0 00-1.83 1.37zM41.72 20.17l-.13 2.78h-.5c-1.93 0-2.98 1-2.98 3.25v2.72h-2.78v-8.67h2.78v1.67a3.38 3.38 0 012.98-1.77c.24-.05.42-.03.63.02zM51.15 23.58v5.3H48.4v-4.72c0-1.03-.6-1.71-1.47-1.71-1.09 0-1.8.74-1.8 2.43v4h-2.77v-8.65h2.77v.82a3.62 3.62 0 012.67-1.09c2 0 3.35 1.43 3.35 3.62z"/>
                    <path d="M6.87 11.35c-.72 1.8-2.62 2.51-3.83 2.51-2.01 0-2.96-.9-2.96-3.3 0-2.43 1.16-7 4.7-7 1.27 0 2.24.5 2.24 1.8 0 .71-.26 1.24-.95 1.24a.99.99 0 01-.76-.34c.31-.16.6-.74.6-1.24 0-.43-.2-.82-.81-.82-1.48 0-2.8 3.54-2.8 6.28 0 1.24.31 2.12 1.6 2.12 1.06 0 2.02-.5 2.62-1.35l.35.1z"/>
                    <path d="M11.72 8.95c.06.03.11.03.16.03.61 0 1.5-.4 2.09-.82l.13.37c-.5.55-1.4.95-2.38 1.1-.2 2.5-1.55 4.08-3.22 4.08-1.24 0-2.16-.59-2.16-2.14 0-1.56.92-4.78 3.7-4.78 1.13 0 1.68.74 1.68 2.16zm-1.13.74c-.3-.08-.37-.29-.37-.55 0-.37.18-.61.42-.74-.02-.56-.16-.8-.5-.8-.95 0-1.8 2.46-1.8 3.78 0 .9.19 1.08.7 1.08.62.03 1.31-1.18 1.55-2.77z"/>
                    <path d="M15.4 6.42l-.22 1c.4-.34.9-.58 1.59-.58.92 0 1.64.53 1.64 2.14 0 1.82-.72 4.75-3.3 4.75-.7 0-1-.24-1.14-.47l-.71 3.27-2.04.48 2.22-10.6h1.96zm1.16 2.5c0-1.02-.43-1.1-.69-1.1-.29 0-.69.23-.92.66l-.8 3.77c.06.16.22.32.5.32 1.43 0 1.9-2.38 1.9-3.64zM25.2 6.92l-.98 4.57c-.06.18-.06.31-.06.42 0 .37.19.58.56.58.53 0 .9-.58 1.08-1.27h.55c-.76 2.2-1.98 2.49-2.72 2.49-.76 0-1.24-.43-1.32-1.25-.42.61-1.05 1.25-2 1.25-.93 0-1.8-.56-1.8-2.17 0-1.82 1.11-4.73 3.46-4.73.77 0 1.08.3 1.08.69v.1l.16-.7h1.98v.02zm-4.66 4.46c0 1.03.43 1.06.7 1.06.39 0 .94-.4 1.1-1.2l.63-3.03c0-.16-.13-.5-.55-.5-1.14-.03-1.88 2.4-1.88 3.67z"/>
                    <path d="M28.68 6.92l-.98 4.57c-.05.18-.05.31-.05.42 0 .37.18.5.55.5.53 0 1-.5 1.22-1.19h.55c-.76 2.2-2.11 2.49-2.82 2.49-.82 0-1.46-.48-1.46-1.62 0-.26.06-.55.11-.87l.92-4.33h1.96v.03zm-.6-2.88c.57 0 1.07.48 1.07 1.08 0 .58-.47 1.06-1.08 1.06-.58 0-1.06-.48-1.06-1.06a1.05 1.05 0 011.06-1.08z"/>
                    <path d="M32.8 8.08c-.48 0-.85.56-1.06 1.24l-.92 4.33h-1.93l1.43-6.73h1.92l-.16.71a2.06 2.06 0 011.59-.76c.87 0 1.5.44 1.5 1.53 0 1.08-.63 2.72-.63 3.48 0 .35.13.56.53.56.58 0 .84-.48 1.13-1.2h.56c-.77 2.23-1.8 2.5-2.51 2.5-1.16 0-1.58-.77-1.58-1.54 0-.92.6-2.56.6-3.43.03-.45-.13-.69-.47-.69z"/>
                    <path d="M40.14 6.5c.16 3.48.29 4.01.29 4.9 0 1.75-1.59 2.33-2.7 2.33-1.37 0-1.95-.9-1.95-1.71 0-.61.34-1.09.71-1.25a20.33 20.33 0 001.67-3.98l1.98-.3zm-3.28 5.41c-.13 0-.29-.05-.37-.19 0 .64.24.96.82.96s1.16-.32 1.16-1.25c0-.7-.13-1.1-.26-3.2-.26.88-.63 1.7-1.08 2.54a.5.5 0 01.32.48c0 .32-.24.66-.59.66zM48.88 11.49c-.03.13-.05.26-.05.4 0 .31.13.52.55.52.24 0 .34-.05.42-.08-.08.95-.76 1.4-1.48 1.4-.68 0-1.24-.34-1.4-1.1-.4.57-1.02 1.1-1.9 1.1-.92 0-1.8-.55-1.8-2.16 0-1.83 1.12-4.73 3.47-4.73.76 0 1.08.29 1.08.69v.05l.66-3.1 1.98-.25-1.53 7.26zm-1.24-3.33c-.03-.16-.16-.48-.56-.48-1.13 0-1.87 2.43-1.87 3.7 0 1.03.42 1.06.69 1.06.34 0 .9-.32 1.05-.98l.69-3.3zM51.92 3.56c.55 0 .87.37.87.9 0 .72-.61 1.61-1.64 2.27-.1-.05-.13-.13-.13-.18l.66-.95c0-.08-.05-.16-.16-.24-.34-.21-.58-.47-.58-.84 0-.5.42-.96.98-.96z"/>
                    <path d="M98.02 6.76l-.97 4.57c-.06.18-.06.32-.06.42 0 .37.19.58.56.58.53 0 .9-.58 1.08-1.27h.55c-.76 2.2-1.98 2.49-2.72 2.49-.76 0-1.24-.43-1.32-1.24-.42.6-1.05 1.24-2 1.24-.93 0-1.8-.56-1.8-2.17 0-1.82 1.11-4.73 3.46-4.73.77 0 1.08.3 1.08.7v.12l.16-.71h1.98zm-4.65 4.46c0 1.03.43 1.06.7 1.06.39 0 .94-.4 1.1-1.19l.63-3.04c0-.15-.13-.5-.55-.5-1.14-.02-1.88 2.4-1.88 3.67z"/>
                    <path d="M104.02 7.66c0 2.16-1.09 5.91-3.83 5.91-1.03 0-1.67-.52-1.67-1.58 0-.16.03-.4.08-.64l.98-4.56h1.93l-.98 4.56c-.05.19-.08.37-.08.48 0 .26.13.45.45.45 1.32 0 2.32-3.01 2.32-4.49-.05.1-.31.13-.42.13-.31 0-.47-.4-.47-.68 0-.43.26-.74.84-.74.66 0 .85.58.85 1.16zM110.7 6.76l-.98 4.57c-.05.18-.05.32-.05.42 0 .37.18.58.55.58.53 0 .9-.58 1.09-1.27h.55c-.77 2.2-1.98 2.49-2.72 2.49-.77 0-1.24-.43-1.32-1.24-.42.6-1.06 1.24-2 1.24-.93 0-1.8-.56-1.8-2.17 0-1.82 1.1-4.73 3.46-4.73.76 0 1.08.3 1.08.7v.12l.16-.71h1.98zm-4.65 4.46c0 1.03.42 1.06.69 1.06.4 0 .95-.4 1.1-1.19l.64-3.04c0-.15-.13-.5-.55-.5-1.14-.02-1.88 2.4-1.88 3.67z"/>
                    <path d="M114.71 7.92c-.47 0-.84.56-1.05 1.24l-.93 4.33h-1.93l1.43-6.73h1.93l-.16.71a2.06 2.06 0 011.58-.76c.87 0 1.5.45 1.5 1.53s-.63 2.72-.63 3.48c0 .35.14.56.53.56.58 0 .85-.48 1.14-1.19h.55c-.76 2.22-1.8 2.48-2.5 2.48-1.17 0-1.59-.76-1.59-1.53 0-.92.6-2.56.6-3.43 0-.45-.15-.69-.47-.69z"/>
                    <path d="M120.05 11.33a1.5 1.5 0 00-.08.47c0 .3.1.48.47.48.1 0 .24 0 .35-.05-.37 1.16-.98 1.32-1.43 1.32-.95 0-1.35-.66-1.35-1.53 0-.24.03-.48.08-.72l.87-4.04h-.45l.11-.53h.45l.4-1.84 1.98-.27s-.22.93-.45 2.14h.82l-.11.53h-.82l-.84 4.04z"/>
                    <path d="M71.54 0a19.4 19.4 0 00-10.75 35.57l3.96-3.96a13.98 13.98 0 01-7.18-12.2 13.97 13.97 0 1125.59 7.74l-2.86-2.86a10.08 10.08 0 00-8.8-14.97 10.08 10.08 0 00-3.87 19.36c1.19.5 2.5.76 3.88.76 1.37 0 2.7-.29 3.88-.76l2.93 2.93 3.96 3.96A19.4 19.4 0 0071.53 0zm-4.86 19.4a4.9 4.9 0 119.78.02 4.9 4.9 0 01-9.78-.01z"/>
                    <path d="M101.59 28.78H98.8v-.82a3.62 3.62 0 01-2.66 1.09c-2.04 0-3.38-1.43-3.38-3.62v-5.3h2.74v4.72c0 1.03.61 1.72 1.48 1.72 1.09 0 1.8-.74 1.8-2.43v-4.02h2.77v8.66h.03zM109.48 28.41c-.68.37-1.37.64-2.37.64-2.17 0-3.46-1.16-3.46-3.46V22.3h-1.59v-2.19h1.59v-2.9h2.77v2.9h2.56v2.2h-2.56v3c0 .9.42 1.27 1.16 1.27.37 0 .9-.13 1.27-.34l.63 2.16z"/>
                    <path d="M118.36 25.17h-6.37c.24 1.03.93 1.66 1.88 1.66.63 0 1.37-.16 1.85-1l2.45.5c-.74 1.82-2.32 2.72-4.3 2.72a4.46 4.46 0 01-4.57-4.6c0-2.72 2.06-4.6 4.6-4.6 2.45 0 4.4 1.78 4.46 4.6v.72zm-6.32-1.7h3.57c-.26-.92-.95-1.37-1.74-1.37a1.9 1.9 0 00-1.83 1.38z"/>
                </g>
            </svg>
        </a>
        <a href="https://viadeo.journaldunet.com/" title="Viadeo JDN">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 110 42" style="width:65px">
                <g fill="currentColor">
                    <path d="M31.206 16.593c0 4.668-2.352 8.782-8.467 8.782-4.046 0-5.739-2.034-5.739-3.836 0-1.156.847-1.942 2.07-1.942 1.082 0 1.975.832 1.975 1.942 0 1.201-.846 1.849-.846 2.45 0 .6.564.785 3.01.785 4.75 0 4.563-3.79 4.563-7.904V5.685c0-5.084-.33-5.5-2.164-5.593h-.8V0h9.36v.092L33.37.14c-1.834.092-2.163.508-2.163 5.592v10.862z"/>
                    <path d="M35.49 25.28l.801-.046c1.84-.094 2.17-.518 2.17-5.697v-13.7c0-5.178-.33-5.602-2.17-5.696L35.49.094V0h12.357c8.35 0 12.736 5.744 12.736 12.664 0 6.967-4.623 12.711-12.736 12.711H35.49v-.094zM43.697.66c-1.651 0-1.793.14-1.793 5.225v13.7c0 5.084.095 5.225 1.793 5.225h4.198c6.367 0 8.867-5.65 8.867-12.052 0-6.685-2.971-12.052-8.867-12.052h-4.198V.66z"
                          fill-rule="nonzero"/>
                    <path d="M83.138 20.319V8.443c0-3.062-.552-8.165-3.354-8.304l-.78-.046V0h7.992v.093l-.413.046c-2.021.186-2.848 3.062-2.848 8.768v16.468h-.505L64.44 2.737v13.87c0 3.062.552 8.165 3.354 8.304l.78.046v.093h-7.992v-.139l.413-.046c2.021-.186 2.848-3.062 2.848-8.768V5.752c0-5.103-.78-5.52-2.572-5.613l-.643-.046V0h6.063l16.446 20.319z"/>
                </g>
                <g fill="#F07355">
                    <path d="M26.69 29.803l-3.633 8.095-3.681-8.095h-1.501l5.048 11.099h.262l5.017-11.099m3.346 11.099V29.804h-1.411v11.098h1.41zm-.712-15.43c.322 0 .596.116.824.35.227.233.34.513.34.842 0 .322-.113.6-.34.827a1.103 1.103 0 01-.823.348c-.31 0-.582-.12-.81-.354a1.155 1.155 0 01-.34-.834c0-.329.113-.613.34-.847.228-.234.5-.354.816-.354l-.007.022zm36.954 8.817c-.177-.725-.436-1.303-.776-1.736-.34-.434-.789-.783-1.348-1.048a4.055 4.055 0 00-1.76-.398c-1.018 0-1.89.333-2.623 1-.538.484-.936 1.212-1.214 2.182h7.721zm0 2.84l1.121.607c-.366.74-.79 1.334-1.27 1.789a5.081 5.081 0 01-1.624 1.036c-.6.24-1.283.354-2.047.354-1.688 0-3.008-.562-3.956-1.687s-1.429-2.402-1.429-3.823c0-1.34.405-2.535 1.214-3.578 1.024-1.331 2.389-1.997 4.101-1.997 1.763 0 3.173.682 4.228 2.046.752.964 1.131 2.167 1.144 3.608H59.95c.025 1.226.408 2.231 1.15 3.015.743.783 1.66 1.175 2.751 1.175.525 0 1.037-.092 1.536-.28.5-.189.923-.435 1.27-.745.351-.31.727-.809 1.135-1.498l-.002-.021zm-16.342-6.003c-.74 0-1.424.19-2.05.556a4.079 4.079 0 00-1.495 1.568 4.347 4.347 0 00-.555 2.13c0 .745.184 1.453.556 2.129a4.088 4.088 0 001.504 1.586c.626.38 1.302.569 2.023.569a4.09 4.09 0 002.066-.556 3.898 3.898 0 001.504-1.517c.348-.638.525-1.359.525-2.159 0-1.22-.399-2.238-1.182-3.058-.79-.819-1.757-1.228-2.907-1.228l.01-.02zm5.314-5.65v15.427H55.45v-2.08c-.556.696-1.181 1.214-1.875 1.561a5.006 5.006 0 01-2.275.525c-1.463 0-2.712-.537-3.747-1.624C46.517 38.205 46 36.89 46 35.34c0-1.516.522-2.812 1.567-3.892 1.045-1.081 2.302-1.618 3.771-1.618.85 0 1.617.183 2.304.55.687.366 1.29.922 1.81 1.655V25.47h1.312l-.002.007zM42.281 37.544a3.885 3.885 0 01-1.47 1.525 3.978 3.978 0 01-2.032.537c-.74 0-1.415-.179-2.035-.537a3.905 3.905 0 01-1.472-1.525 4.304 4.304 0 01-.544-2.13c0-1.181.398-2.189 1.188-3.02.797-.834 1.745-1.25 2.85-1.25 1.1 0 2.048.417 2.844 1.25.796.831 1.195 1.838 1.195 3.02 0 .761-.184 1.472-.544 2.13m.463-5.965c-1.05-1.174-2.37-1.762-3.964-1.762-1.6 0-2.925.59-3.973 1.772-.951 1.073-1.428 2.338-1.428 3.797 0 1.472.504 2.758 1.51 3.859 1.007 1.1 2.304 1.65 3.893 1.65 1.58 0 2.875-.55 3.88-1.65a6.74 6.74 0 00.168-.192l.003 1.851h1.32V35.89c.012-.166.02-.335.02-.505-.001-1.466-.478-2.734-1.43-3.806zM84.817 33.28a6.77 6.77 0 01-.844 3.316c-.56 1.025-1.324 1.816-2.284 2.374-.951.559-2.01.836-3.156.836a6.165 6.165 0 01-3.157-.836c-.96-.559-1.715-1.349-2.283-2.374a6.821 6.821 0 01-.843-3.316c0-1.839.617-3.406 1.852-4.702 1.234-1.296 2.714-1.943 4.44-1.943.819 0 1.582.149 2.293.446.072-.752.333-1.451.624-2.021a8.433 8.433 0 00-2.91-.49c-2.49 0-4.544.919-6.176 2.758-1.48 1.666-2.217 3.636-2.217 5.907 0 2.292.784 4.293 2.348 6.007 1.565 1.713 3.577 2.568 6.047 2.568 2.458 0 4.47-.855 6.033-2.568 1.564-1.714 2.346-3.715 2.346-6.007 0-1.225-.216-2.362-.644-3.41a6.11 6.11 0 01-1.96.793c.342.814.51 1.7.51 2.662M91.133 13.826c-.898 1.916-2.56 2.275-2.56 2.275-1.663.429-2.246 1.067-2.246 1.067-1.662 1.68-.35 3.72-.35 3.72 3.596-.823 4.909-3.78 4.909-3.78-.158 1.994-4.428 4.34-4.428 4.34 1.418 1.39 2.765 1.224 3.658.69 1.181-.7 1.75-2.248 1.75-2.248 1.146-3.44-.718-6.047-.718-6.047"/>
                    <path d="M85.363 20.571c.04.578-5.319 15.497-10.062 17.054 0 0 .507.088 1.082.061 0 0 12.254-8.33 9.028-16.983l-.048-.14M85.248 19.63c0-.016-.002-.026-.002-.026-.432-4.596-2.942-6.269-2.942-6.269 1.767 2.982 2.728 5.659 2.944 6.295z"/>
                </g>
            </svg>
        </a>
        <a href="https://www.ariase.com/" title="Ariase">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 133 35" style="width:91px">
                <g fill="currentColor">
                    <path d="M12.2 5.4c0 .4-.3.8-.7.8-1.7.2-3.2 1-4.3 2.1s-1.8 2.6-1.9 4.1c0 .4-.4.7-1.1.7s-1.1-.7-1-1.4c.3-1.9 1.2-3.6 2.5-4.9 1.4-1.3 3.1-2.2 5-2.5.3-.1.7 0 1 .2s.5.6.5.9"/>
                    <path d="M12.2 2c0 .6-.4 1-1 1.1-2.3.2-4.5 1.3-6.2 3-1.7 1.6-2.8 3.9-3 6.3 0 .5-.4.8-1.1.8-.3 0-.5-.1-.7-.3-.1-.2-.2-.5-.2-.8C.5 6.3 5.1 1.6 11 1c.3-.1.6 0 .9.2.2.2.3.5.3.8"/>
                </g>
                <g fill="#fb6660">
                    <path d="M12.6 25.4c-5 .2-9.5-2.6-11.6-7.2-.4-.7-.4-1.5 0-2.3.3-.7 1-1.3 1.7-1.4 1.3-.4 2.7.3 3.2 1.6 1.6 3.3 5.5 4.9 8.9 3.5 2.3-1 4-3.2 4.3-5.7a7 7 0 0 0-4.2-7.1c-1.3-.6-1.8-2.2-1.2-3.5C14.4 2 16 1.4 17.3 2c5.2 2.4 8 7.9 6.9 13.5s-5.9 9.7-11.6 9.9"/>
                    <path d="m14 30.9 7.7-10.1H2.5L10.3 31c.5.5 1.1.8 1.8.8.8-.1 1.5-.4 1.9-.9"/>
                </g>
                <g fill="currentColor" transform="translate(26.507 3.742)">
                    <path d="M31 9.9c1.2-.5 2.5-.7 3.7-.7v4.9c-.6 0-1-.1-1.2-.1-1.2 0-2.5.5-3.5 1.4-.9 1.1-1.4 2.4-1.3 3.9V28h-5.3V9.6h5.1V12c.6-1 1.5-1.7 2.5-2.1"/>
                    <path d="M38.2 6.1c-.6-.5-.9-1.3-.9-2.1s.3-1.6.9-2.1c.7-.6 1.6-.9 2.4-.9.9 0 1.7.3 2.4.8.6.5 1 1.3 1 2.1s-.3 1.6-.9 2.2c-.7.6-1.6.9-2.5.9-.8 0-1.7-.3-2.4-.9M38 9.5h5.3v18.4H38z"/>
                    <path d="M16.2 11.3c1.5 1.4 2.3 3.4 2.3 6.1v10.5h-5v-2.3c-1 1.7-2.9 2.6-5.6 2.6-1.3 0-2.5-.2-3.7-.7-1-.4-1.8-1.1-2.4-2-.5-.9-.8-1.9-.8-2.9-.1-1.6.7-3.1 1.9-4q1.95-1.5 6-1.5h4.2c.1-1-.3-2-1.1-2.7-.9-.7-2-1-3.2-.9-1 0-2 .2-2.9.5q-1.35.45-2.4 1.2l-1.9-3.7c1.1-.7 2.3-1.3 3.6-1.6 1.4-.4 2.9-.6 4.3-.6 3-.1 5.2.6 6.7 2m-4.5 12.6c.7-.4 1.2-1.1 1.5-1.9v-1.9H9.5q-3.3 0-3.3 2.1c0 .8.3 1.4.8 1.8.7.4 1.4.6 2.2.6.9 0 1.7-.2 2.5-.7"/>
                    <path d="M62.2 11.3c1.5 1.4 2.3 3.4 2.3 6.1v10.5h-5v-2.3c-1 1.7-2.9 2.6-5.6 2.6-1.3 0-2.5-.2-3.7-.7-1-.4-1.8-1.1-2.4-2-.5-.9-.8-1.8-.8-2.9-.1-1.6.7-3.1 1.9-4q1.95-1.5 6-1.5h4.2c.1-1-.3-2-1.1-2.7-.9-.7-2-1-3.2-.9-1 0-2 .2-2.9.5q-1.35.45-2.4 1.2l-1.9-3.7c1.1-.7 2.3-1.3 3.6-1.6 1.4-.4 2.9-.6 4.3-.6 2.5-.2 4.9.5 6.7 2M57.7 24c.7-.4 1.2-1.1 1.5-1.9v-1.9h-3.7q-3.3 0-3.3 2.1c0 .6.3 1.2.8 1.6.7.4 1.4.6 2.2.6.9.2 1.7-.1 2.5-.5"/>
                    <path d="M105.4 20.3H91.5c.2 1.1.9 2.1 1.8 2.7 1 .7 2.3 1 3.5 1 .9 0 1.7-.1 2.5-.4s1.5-.8 2.1-1.3l2.8 3.1c-1.7 2-4.3 3-7.6 3-1.9 0-3.8-.4-5.5-1.2-1.5-.8-2.8-1.9-3.7-3.4s-1.3-3.2-1.3-4.9c-.1-3.4 1.8-6.6 4.8-8.3 3.1-1.6 6.8-1.6 9.9 0 1.4.8 2.6 1.9 3.4 3.3.8 1.5 1.3 3.3 1.2 5.1.1-.1.1.4 0 1.3m-12.5-5.9c-.8.7-1.4 1.7-1.5 2.8h9.1c-.1-1.1-.7-2.1-1.5-2.8-1.8-1.4-4.3-1.4-6.1 0"/>
                    <path d="M71 27.7c-1.2-.3-2.4-.8-3.5-1.4l1.8-3.8c.9.6 1.9 1 3 1.3s2.3.5 3.4.5c2.3 0 3.4-.5 3.4-1.7 0-.5-.4-1-.9-1.1-.9-.3-1.9-.5-2.8-.6-1.3-.2-2.5-.4-3.7-.8-1-.3-1.9-.8-2.5-1.6-.8-.9-1.1-2-1.1-3.2 0-1.1.3-2.2 1-3.1.8-1 1.8-1.7 2.9-2.1 1.5-.5 3-.8 4.6-.7 1.3 0 2.6.1 3.9.4 1.1.2 2.2.6 3.2 1.2l-1.8 3.8c-1.6-.9-3.4-1.4-5.3-1.4-.9-.1-1.8.1-2.6.5-.5.2-.8.7-.9 1.2 0 .6.4 1.1.9 1.2 1 .3 1.9.5 2.9.7 1.2.2 2.5.5 3.7.8 1 .3 1.8.8 2.5 1.6.7.9 1.1 2 1.1 3.1s-.4 2.2-1 3.1q-1.2 1.5-3 2.1c-1.5.5-3.1.8-4.7.7-1.5-.2-3-.4-4.5-.7"/>
                </g>
            </svg>
        </a>
        <a href="https://www.phonandroid.com/" title="Phonandroid">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1214.3 203.9" style="width:150px">
                <path fill="currentColor"
                      d="M409.7 71.8a44.4 44.4 0 0 0-14.6-10.1 46.3 46.3 0 0 0-18.7-3.7 33 33 0 0 0-11.7 2 31.4 31.4 0 0 0-9.7 5.9V23.3h-24.8v126.4H355V105a31.9 31.9 0 0 1 1.4-9.6 23.6 23.6 0 0 1 4.1-7.8 18.7 18.7 0 0 1 6.8-5.3 21.2 21.2 0 0 1 9.1-1.9 20.5 20.5 0 0 1 9.2 2 20.1 20.1 0 0 1 6.8 5.3 22.7 22.7 0 0 1 4 7.8 32.4 32.4 0 0 1 1.5 9.7v44.5h24.7v-44.5a49.6 49.6 0 0 0-3.3-18.4 46 46 0 0 0-9.6-15ZM608.7 71.8a44.4 44.4 0 0 0-14.6-10.1 49.1 49.1 0 0 0-37.4 0A44.4 44.4 0 0 0 542 71.8a46.3 46.3 0 0 0-9.5 15 49.6 49.6 0 0 0-3.4 18.3v44.6h24.7v-44.5a32.4 32.4 0 0 1 1.4-9.7 22.5 22.5 0 0 1 4.2-7.8 20 20 0 0 1 6.7-5.3 22.2 22.2 0 0 1 18.3 0 20.1 20.1 0 0 1 6.8 5.3 22.7 22.7 0 0 1 4.1 7.8 32.4 32.4 0 0 1 1.4 9.7v44.5h24.8v-44.5a49.6 49.6 0 0 0-3.4-18.4 46.3 46.3 0 0 0-9.5-15ZM1063.3 71.4a48.4 48.4 0 0 0-15.1-9.8 49.7 49.7 0 0 0-37.2 0 48.4 48.4 0 0 0-15.2 9.8A46.9 46.9 0 0 0 985.5 86a44 44 0 0 0 0 35.6 46.8 46.8 0 0 0 10.3 14.6 48.4 48.4 0 0 0 15.2 9.9 49.7 49.7 0 0 0 37.2 0 48.4 48.4 0 0 0 15.1-9.9 46.8 46.8 0 0 0 10.3-14.6 44 44 0 0 0 0-35.6 46.9 46.9 0 0 0-10.3-14.6Zm-11.9 41.8a23.4 23.4 0 0 1-5 7.6 25 25 0 0 1-7.5 5.2 23.5 23.5 0 0 1-18.6 0 25 25 0 0 1-7.5-5.2 23.4 23.4 0 0 1-5-7.6 24.7 24.7 0 0 1 0-18.8 23.5 23.5 0 0 1 5-7.6 24.9 24.9 0 0 1 7.5-5.1 23.5 23.5 0 0 1 18.6 0 24.9 24.9 0 0 1 7.5 5.1 23.5 23.5 0 0 1 5 7.6 24.9 24.9 0 0 1 0 18.8ZM509.7 71.4a48.4 48.4 0 0 0-15.2-9.8 49.8 49.8 0 0 0-37.2 0 48.5 48.5 0 0 0-15.2 9.8A46.9 46.9 0 0 0 432 86a44 44 0 0 0 0 35.6 46.8 46.8 0 0 0 10.2 14.6 48.5 48.5 0 0 0 15.2 9.9 49.8 49.8 0 0 0 37.2 0 48.4 48.4 0 0 0 15.2-9.9 47 47 0 0 0 10.2-14.6 44 44 0 0 0 0-35.6 47 47 0 0 0-10.2-14.6Zm-12 41.8a23.4 23.4 0 0 1-5 7.6 25 25 0 0 1-7.5 5.2 23.5 23.5 0 0 1-18.6 0 25 25 0 0 1-7.5-5.1 23.4 23.4 0 0 1-5-7.7 24.9 24.9 0 0 1 0-18.7 23.5 23.5 0 0 1 5-7.6 24.9 24.9 0 0 1 7.5-5.2 23.5 23.5 0 0 1 18.6 0 24.9 24.9 0 0 1 7.5 5.2 23.5 23.5 0 0 1 5 7.6 24.7 24.7 0 0 1 0 18.8ZM719.4 86A47 47 0 0 0 709 71.4a48.4 48.4 0 0 0-15.1-9.8 49.8 49.8 0 0 0-37.2 0 48.4 48.4 0 0 0-15.2 9.8A47 47 0 0 0 631.3 86a44 44 0 0 0 0 35.6 46.8 46.8 0 0 0 10.3 14.6 48.4 48.4 0 0 0 15.2 9.9 49.8 49.8 0 0 0 37.2 0 50 50 0 0 0 8.1-4.3v7.9h21v-45.9a42.8 42.8 0 0 0-3.7-17.8Zm-22.1 27.2a23.6 23.6 0 0 1-5.1 7.6 25.1 25.1 0 0 1-7.5 5.1 23.5 23.5 0 0 1-18.6 0 25 25 0 0 1-7.6-5 23.4 23.4 0 0 1-5-7.7 24.9 24.9 0 0 1 0-18.8 23.5 23.5 0 0 1 5-7.6 24.8 24.8 0 0 1 7.6-5.1 23.5 23.5 0 0 1 18.6 0 25 25 0 0 1 7.5 5.1 23.7 23.7 0 0 1 5 7.6 24.9 24.9 0 0 1 0 18.8ZM810.7 71.8a44.4 44.4 0 0 0-14.6-10.1 49.1 49.1 0 0 0-37.5 0A44.5 44.5 0 0 0 744 71.8a46.3 46.3 0 0 0-9.4 15 49.6 49.6 0 0 0-3.4 18.3v44.6h24.7v-44.5a32.8 32.8 0 0 1 1.4-9.7 22.7 22.7 0 0 1 4.2-7.8 20 20 0 0 1 6.7-5.3 22.2 22.2 0 0 1 18.3 0 20.1 20.1 0 0 1 6.8 5.3 22.7 22.7 0 0 1 4.1 7.8 32.4 32.4 0 0 1 1.4 9.7v44.5h24.8v-44.5a49.6 49.6 0 0 0-3.4-18.4 46.2 46.2 0 0 0-9.5-15ZM959.2 61.7a44.4 44.4 0 0 0-14.6 10.1 46 46 0 0 0-9.5 15 49.4 49.4 0 0 0-3.4 18.3v44.6h24.8v-44.5a24 24 0 0 1 2-9.7 24.7 24.7 0 0 1 13-13.1 23.8 23.8 0 0 1 9.7-2V58H978a46.3 46.3 0 0 0-18.7 3.7ZM1085.2 58h24.8v91.7h-24.8zM1085.2 23.3h24.8v25.4h-24.8zM833.5 121.6a47 47 0 0 0 10.3 14.6 48.6 48.6 0 0 0 15.2 9.9 49.8 49.8 0 0 0 37.2 0 48.6 48.6 0 0 0 15.2-9.9 46.8 46.8 0 0 0 10.2-14.6 42.8 42.8 0 0 0 3.8-17.8V23.3h-24.1v40.8a50.7 50.7 0 0 0-5.1-2.5 49.9 49.9 0 0 0-37.3 0 48.6 48.6 0 0 0-15.1 9.8A47 47 0 0 0 833.5 86a44 44 0 0 0 0 35.6Zm22.2-27.1a23.4 23.4 0 0 1 5-7.7 24.7 24.7 0 0 1 7.6-5.1 23.5 23.5 0 0 1 18.6 0 24.7 24.7 0 0 1 7.5 5.1 23.4 23.4 0 0 1 5 7.6 24.8 24.8 0 0 1 0 18.8 23.4 23.4 0 0 1-5 7.6 24.7 24.7 0 0 1-7.5 5.2 23.4 23.4 0 0 1-18.6 0 24.7 24.7 0 0 1-7.6-5.2 23.4 23.4 0 0 1-5-7.6 24.7 24.7 0 0 1 0-18.8ZM319.3 86A47 47 0 0 0 309 71.4a48.4 48.4 0 0 0-15.1-9.9 49.8 49.8 0 0 0-37.2 0 48.4 48.4 0 0 0-15.2 10A47 47 0 0 0 231.3 86a42.8 42.8 0 0 0-3.8 17.8v80.5h24v-40.7a51.7 51.7 0 0 0 5.2 2.5 49.8 49.8 0 0 0 37.2 0 48.4 48.4 0 0 0 15.2-9.9 46.8 46.8 0 0 0 10.2-14.6 44 44 0 0 0 0-35.6Zm-22.1 27.2a23.6 23.6 0 0 1-5 7.6 25.2 25.2 0 0 1-7.6 5.2 23.5 23.5 0 0 1-18.6 0 25.1 25.1 0 0 1-7.5-5.1 23.3 23.3 0 0 1-5-7.7 24.7 24.7 0 0 1 0-18.7 23.3 23.3 0 0 1 5-7.6 25 25 0 0 1 7.5-5.2 23.5 23.5 0 0 1 18.6 0 25 25 0 0 1 7.5 5.1 23.6 23.6 0 0 1 5.1 7.6 24.9 24.9 0 0 1 0 18.8ZM1119.8 121.6a47 47 0 0 0 10.3 14.6 48.6 48.6 0 0 0 15.2 9.9 49.8 49.8 0 0 0 37.2 0 48.6 48.6 0 0 0 15.1-9.9 46.8 46.8 0 0 0 10.3-14.6 42.8 42.8 0 0 0 3.8-17.8V23.2h-24.1v40.8a50.7 50.7 0 0 0-5.1-2.5 49.9 49.9 0 0 0-37.2 0 48.6 48.6 0 0 0-15.2 9.8 47 47 0 0 0-10.3 14.6 44 44 0 0 0 0 35.6Zm22.2-27.1a23.6 23.6 0 0 1 5-7.7 24.8 24.8 0 0 1 7.6-5.1 23.5 23.5 0 0 1 18.6 0 24.6 24.6 0 0 1 7.5 5.1 23.4 23.4 0 0 1 5 7.7 24.8 24.8 0 0 1 0 18.7 23.4 23.4 0 0 1-5 7.6 24.6 24.6 0 0 1-7.5 5.2 23.4 23.4 0 0 1-18.6 0 24.8 24.8 0 0 1-7.5-5.2 23.6 23.6 0 0 1-5.1-7.6 24.8 24.8 0 0 1 0-18.7Z"/>
                <path fill="#00f47a" d="M140.5 136.8a91.5 91.5 0 0 1-26.4 17.6v46.1h37.5V124a88.3 88.3 0 0 1-11 12.9Z"/>
                <path fill="currentColor"
                      d="M145.7 47.4a73 73 0 0 0-16-22.8 75.4 75.4 0 0 0-23.6-15.3 74.5 74.5 0 0 0-29-5.7 74.5 74.5 0 0 0-29 5.7 75.4 75.4 0 0 0-23.6 15.3 73 73 0 0 0-16 22.8A66.4 66.4 0 0 0 2.7 75V200.5H40V137a78.8 78.8 0 0 0 8 3.9 74.5 74.5 0 0 0 29 5.6 74.5 74.5 0 0 0 29-5.6 75.4 75.4 0 0 0 23.7-15.4 73 73 0 0 0 16-22.7 66.6 66.6 0 0 0 5.8-27.7 66.6 66.6 0 0 0-5.9-27.7Zm-34.5 42.3a36.4 36.4 0 0 1-7.9 11.9 38.4 38.4 0 0 1-11.7 8 36.5 36.5 0 0 1-29 0 38.4 38.4 0 0 1-11.7-8A36.2 36.2 0 0 1 43 89.7a38.5 38.5 0 0 1 0-29.2 36.3 36.3 0 0 1 7.9-11.9 38.6 38.6 0 0 1 11.7-8 36.5 36.5 0 0 1 29 0 38.6 38.6 0 0 1 11.8 8 36.5 36.5 0 0 1 7.8 11.9 38.5 38.5 0 0 1 0 29.2Z"/>
            </svg>
        </a>
    </div>

    <div id="footer_links" class="bu_ccmeditor"></div>

</footer>
<!-- footerfinbloc -->
    <div class="ccm_moderation" id="modo_div_new" style="display: none;"></div>
    <script type="application/x-microTemplate" id="template_ba_native_atf">
    <aside class="app_edito_na app_edito_na--above" data-sponsor="${sponsoredBy}" id="${id}">
        <span class="adchoice_ctn"></span>
        <a href="${link}" target="_blank" rel="noopener noreferrer">
            <h4 class="app_edito_title_2">${title}</h4>
            <button class="app_edito_btn">${cta}</button>
        </a>
    </aside>
</script>

<script type="application/x-microTemplate" id="template_ba_native_mtf">
    <aside class="app_edito_na app_edito_na--inside" data-sponsor="${sponsoredBy}" id="${id}">
        <span class="adchoice_ctn"></span>
        <a href="${link}" target="_blank" rel="noopener noreferrer">
            <span class="app_edito_na__img" style="background-image:url('${image}')"></span>
            <div>
                <h4 class="app_edito_title_2">${title}</h4>
                <p>
                    ${description}
                </p>
                <button class="app_edito_btn">${cta}</button>
            </div>
        </a>
    </aside>
</script>

<script type="application/x-microTemplate" id="template_ba_native_btf">
    <aside class="app_edito_na app_edito_na--inside" data-sponsor="${sponsoredBy}" id="${id}">
        <span class="adchoice_ctn"></span>
        <a href="${link}" target="_blank" rel="noopener noreferrer">
            <span class="app_edito_na__img" style="background-image:url('${image}')"></span>
            <div>
                <h4 class="app_edito_title_2">${title}</h4>
                <p>
                    ${description}
                </p>
                <button class="app_edito_btn">${cta}</button>
            </div>
        </a>
    </aside>
</script>
<script type="text/javascript"> $data = {"app":{"arboTopic":{"id":{"35753533":35753499,"35753649":35753499,"35754067":35753499,"35756910":35756870,"35756870":35753499},"order":{"1":35753499,"2":35753499,"3":35753499,"5":35756870,"4":35753499},"page":{"35753533":1,"35753649":1,"35754067":1,"35756910":1,"35756870":1},"pageorder":{"1":1,"2":1,"3":1,"5":1,"4":1},"last_id":35756910},"currentCategory":{"newUrl":"https:\/\/forums.commentcamarche.net\/forum\/perl-263\/new"},"ccmBoxes":{"topic":{"domId":35753499,"forum_id":263,"get_prms":{"s":null,"sort":"","page":"","full":false}}},"signal":{"API":"\/forum\/modo"},"categorySelector":{"selectAPI":"\/forum\/Form\/Topic\/categorySelector\/xhr\/selected","selectMultiAPI":"\/forum\/Form\/Topic\/categorySelector\/xhr\/selectedMultiLines"},"forumReporting":{"markTreated":"\/forum\/reporting\/xhr\/mark_treated","markToTreat":"\/forum\/reporting\/xhr\/mark_to_treat","submitFormDelete":"\/forum\/reporting\/xhr\/submit_delete","submitFormClose":"\/forum\/reporting\/xhr\/submit_close","submitFormReporting":"\/forum\/reporting\/xhr\/submit","submitFormPharos":"\/forum\/reporting\/xhr\/submit_pharos","submitFormMove":"\/forum\/modo\/","submitFormSolve":"\/api\/forum\/v1\/solved","submitFormRestore":"\/forum\/modo\/","submitFormSummarize":"\/forum\/modo\/","placeholder":"Veuillez choisir une raison"},"domain":"forums.commentcamarche.net","recaptchaHard":0,"autoSuggestTitle":"Este contenido puede interesarle","lang":"FR","ckeditorLang":"fr","ckeditorCss":"https:\/\/astatic.ccmbg.com\/www.commentcamarche.net\/dist\/app\/css\/cssCkeditor.01f66e7c297012e0a9c7.css","siteUrl":"https:\/\/forums.commentcamarche.net","recaptcha_key":"6LfyPzYaAAAAAJ1i8R5TBi2tibxDzc4qIPIwJzh3","connected":false,"trusted":false,"actionTopic":{"vote":"\/xhr\/forum\/vote","changeType":"\/xhr\/forum\/changettypetopic","updateTopicForm":"\/xhr\/forum\/topic\/edit","updatePostForm":"\/xhr\/forum\/post\/edit","createPostForm":"\/xhr\/forum\/post\/create"}},"common":{"staticHost":"https:\/\/astatic.ccmbg.com"},"services":{"fancybox":{"start":true},"appCode":{"start":true,"options":{"editor":{"enabled":true}}}}};</script><script type="application/x-jet-extend" data-target="jQuery.jet.env.packager" data-priority="1" data-load="init">https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js</script><script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/commons.83311a2e4b55857e438f.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/start.e669284c6fd3e8991e94.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/skin.c2b0f1b0835d588f201e.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/codesnippeted.1afa44f3b361da39f63e.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/responsive.fd69e75b84bb2ee4295a.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/newsletter.9d60dd2f7630929fe2e6.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/headerEsi.8193d230af0807bf696a.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/jqueryUIAnon.eb705acdbde3b6709c9e.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/contentsForum.2e2a62397eecad6b54fc.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/ckeditorCustomCCM.b3d62318361d5b75a3dc.js" crossorigin="anonymous" type="text/javascript"></script>
<script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/end.ab348fa822618cac24cf.js" crossorigin="anonymous" type="text/javascript"></script>
<script>
(function ($) {
		"use strict";

	typeof $ !== 'undefined'
	&& typeof $.jet !== 'undefined'
	&& $.jet.started === false
	&& $(document).trigger('start', [$.extend(true, {},
		{
			services : {
				tipsy : { start : false }
				, fancybox : _$('$data.services')._.fancybox
				, goTop : { start : false }
				, inRead : { start : true }
				, inputDefault : { start : false }
				, videoOnScroll : {
					options : {
						forceStart : window.document.URL.match(/#.*?ID=([-a-z0-9\.]+).*?&module=([a-z]+)/) !== null
					}
				}
			}
		}
		, $data)]
	);
})(jQuery);
</script>
    <!--INCLUDE ESI -->
    
        <script src="https://astatic.ccmbg.com/ccmcms_commentcamarche/dist/external/js/header.acc306443cf890699591.js" crossorigin="anonymous" type="text/javascript"></script>
    
        <script src="https://astatic.ccmbg.com/www.commentcamarche.net/dist/app/js/delayedTokenGenerator.95e899d8a394bf396381.js?2" type="text/javascript" crossorigin="anonymous"></script>
    </div>
    <div class="loader-bouncing--wrapper" id="jLoaderBouncing">
        <div></div>
        <div></div>
        <div></div>
    </div>

    <svg width="0" height="0" style="position:absolute;top:0;left:0;" xmlns="http://www.w3.org/2000/svg">
    <symbol viewBox="0 0 576 512" id="badge-ambassador">
        <path fill="currentColor" d="M316.9 18c-5.3-11-16.5-18-28.8-18s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329l-24.6 145.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329l104.2-103.1c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7l-143.7-21.2L316.9 18z"/>
    </symbol>
    <symbol id="ico-share" viewBox="0 0 20 20">
        <path fill="currentColor" d="M18 3.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z"/>
        <path fill="currentColor" d="M15.5 7C13.57 7 12 5.43 12 3.5S13.57 0 15.5 0 19 1.57 19 3.5 17.43 7 15.5 7Zm0-5.688A2.19 2.19 0 0 0 13.312 3.5 2.19 2.19 0 0 0 15.5 5.688 2.19 2.19 0 0 0 17.688 3.5 2.19 2.19 0 0 0 15.5 1.312ZM18 16.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z"/>
        <path fill="currentColor" d="M15.5 20c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5Zm0-5.688a2.19 2.19 0 0 0-2.188 2.188 2.19 2.19 0 0 0 2.188 2.188 2.19 2.19 0 0 0 2.188-2.188 2.19 2.19 0 0 0-2.188-2.188ZM7 10.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z"/>
        <path fill="currentColor" d="M4.5 14C2.57 14 1 12.43 1 10.5S2.57 7 4.5 7 8 8.57 8 10.5 6.43 14 4.5 14Zm0-5.687A2.19 2.19 0 0 0 2.312 10.5 2.19 2.19 0 0 0 4.5 12.688 2.19 2.19 0 0 0 6.688 10.5 2.19 2.19 0 0 0 4.5 8.313Z"/>
        <path fill="currentColor" d="M5.799 10a.793.793 0 0 1-.695-.416.838.838 0 0 1 .299-1.122l7.404-4.353a.784.784 0 0 1 1.089.307.839.839 0 0 1-.299 1.123L6.193 9.892a.774.774 0 0 1-.394.108ZM12.807 16.892 5.403 12.54a.838.838 0 0 1-.299-1.123.784.784 0 0 1 1.089-.307l7.404 4.353a.838.838 0 0 1 .299 1.122.794.794 0 0 1-.695.416.775.775 0 0 1-.394-.108Z"/>
    </symbol>
    <symbol id="ico-x-twitter" viewBox="0 0 15 15">
        <g clip-path="url(#a)"><path fill="currentColor" d="M13.801-1h3.066l-6.731 7.664L18 17.061h-6.171l-4.832-6.318-5.531 6.318H-1.6l7.13-8.198L-2-1h6.325L8.69 4.771 13.8-1Zm-1.073 16.261h1.7L3.432.733H1.605L12.728 15.26Z"/></g><defs>
        <clipPath id="a"><path fill="#fff" d="M0 0h15v15H0z"/></clipPath></defs>
    </symbol>
    <symbol id="ico-facebook" viewBox="0 0 15 15">
        <path fill="currentColor" d="M10.5 4.855H8.21V3.299c0-.592.362-.716.633-.716h1.627V0H8.24C5.77 0 5.197 1.93 5.197 3.143v1.712H3.75V7.5h1.447V15H8.21V7.5h2.05l.24-2.645Z"/>
    </symbol>
    <symbol id="ico-copy-link" viewBox="0 0 15 15">
        <path fill="currentColor" d="m13.733 7.29-1.695 1.695a.745.745 0 0 1-1.053-1.053l1.695-1.695c.532-.532.828-1.24.828-1.985a2.8 2.8 0 0 0-.718-1.887c-.483-.543-1.174-.85-1.947-.872h-.088c-.828 0-1.629.329-2.21.91L6.998 3.95a.745.745 0 0 1-1.053-1.053L7.492 1.35A4.693 4.693 0 0 1 10.887.001c1.184.033 2.254.516 3.016 1.366A4.316 4.316 0 0 1 15 4.252c0 1.146-.45 2.226-1.261 3.038h-.006ZM9.039 11.985 7.48 13.542a4.602 4.602 0 0 1-3.378 1.344c-1.18-.033-2.25-.516-3.011-1.366A4.328 4.328 0 0 1 0 10.635a4.223 4.223 0 0 1 1.256-3.049l1.695-1.695a.739.739 0 0 1 1.053 0 .739.739 0 0 1 0 1.053L2.309 8.64a2.752 2.752 0 0 0-.817 1.985c0 .708.252 1.377.713 1.893.483.537 1.174.85 1.936.866a3.21 3.21 0 0 0 2.287-.905l1.558-1.552a.745.745 0 0 1 1.053 1.053v.006Z"/>
        <path fill="currentColor" d="m4.168 9.72 5.61-5.611a.726.726 0 0 1 .527-.22.745.745 0 0 1 .526 1.272l-5.61 5.612a.766.766 0 0 1-1.053 0 .739.739 0 0 1 0-1.054Z"/>
    </symbol>
    <symbol id="ico-mail" viewBox="0 0 15 15">
        <path fill="currentColor" d="M13.498 1.5H1.368c-.2 0-.386.049-.555.13l6.591 6.597 1.477-1.421 5.172-5.176a1.278 1.278 0 0 0-.555-.13ZM14.864 2.312 9.756 7.187l5.108 4.875c.085-.17.136-.356.136-.555v-8.64c0-.2-.051-.386-.136-.555ZM.13 2.196C.049 2.365 0 2.55 0 2.75v8.633c0 .199.049.385.13.554l4.864-4.87L.13 2.195Z"/>
        <path fill="currentColor" d="M9.07 7.763 7.593 9.18a.43.43 0 0 1-.61 0l-1.42-1.417L.697 12.62c.169.081.355.13.554.13h12.132c.199 0 .385-.049.554-.13L9.07 7.764Z"/>
    </symbol>
    <symbol id="ico-check" viewBox="0 0 20 20"><path d="m19.535 3.348-1.062-.967c-.56-.527-1.447-.498-2.008.03L6.808 12.488l-2.6-3.132c-.53-.557-1.417-.557-2.008-.06L.46 10.88a1.45 1.45 0 0 0-.118 1.993l4.312 4.419 1.034 1.204A1.457 1.457 0 0 0 6.796 19a1.469 1.469 0 0 0 1.107-.505l1.034-1.204 10.718-11.95a1.448 1.448 0 0 0-.12-1.993Z" fill="currentColor"/></symbol>
</svg>
    
    
    
</body>
</html>


<!--Akamai-ESI:PAGE:finalreftime=1776332368/-->

    
    
<!--Akamai-ESI:PAGE:If-Modified-Since=/-->
<!--Akamai-ESI:PAGE:Last-Modified=Thu, 16 Apr 2026 09:39:28 GMT/-->