[CWB] CWB Digest, Vol 181, Issue 25

raisi aliraisi807 at gmail.com
Tue Apr 26 11:40:24 CEST 2022


Hi Andrew
I did the changes you suggested but it did not work .

B&R
RAISI

On Tue, Apr 26, 2022 at 8:42 AM raisi <aliraisi807 at gmail.com> wrote:

> Dear All,
> good morning,
> I attached the screenshot of the problem that I want to resolve
> it, from the screenshot you can see when I click on "Generate new Lexical
> Growth Curve data" it won't generate any graph.
>
> B&R
> Ali RAISI
> [image: image.png]
>
> On Tue, Apr 26, 2022 at 3:47 AM <cwb-request at sslmit.unibo.it> wrote:
>
>> Send CWB mailing list submissions to
>>         cwb at sslmit.unibo.it
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>>         http://liste.sslmit.unibo.it/mailman/listinfo/cwb
>> or, via email, send a message with subject or body 'help' to
>>         cwb-request at sslmit.unibo.it
>>
>> You can reach the person managing the list at
>>         cwb-owner at sslmit.unibo.it
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of CWB digest..."
>>
>>
>> Today's Topics:
>>
>>    1. Re: Where to start looking for the problem? (Hardie, Andrew)
>>
>>
>> ----------------------------------------------------------------------
>>
>> Message: 1
>> Date: Tue, 26 Apr 2022 01:46:49 +0000
>> From: "Hardie, Andrew" <a.hardie at lancaster.ac.uk>
>> To: Open source development of the Corpus WorkBench
>>         <cwb at sslmit.unibo.it>
>> Subject: Re: [CWB] Where to start looking for the problem?
>> Message-ID:
>>         <
>> LO4P265MB3485F7F884E04993A3A4B748CBFB9 at LO4P265MB3485.GBRP265.PROD.OUTLOOK.COM
>> >
>>
>> Content-Type: text/plain; charset="utf-8"
>>
>> No, it couldn?t.
>>
>> That is a bug, which I?ve now fixed, but it hasn?t got anything to do
>> with the problems you?ve been having.
>>
>> best
>>
>> Andrew.
>>
>> From: cwb-bounces at sslmit.unibo.it <cwb-bounces at sslmit.unibo.it> On
>> Behalf Of "Andr?s Chand?a"
>> Sent: 25 April 2022 16:09
>> To: Open source development of the Corpus WorkBench <cwb at sslmit.unibo.it>
>> Subject: Re: [CWB] Where to start looking for the problem?
>>
>> Hi Andrew, thanks for your suggestions...
>>
>> I have realised that in...
>> Corpus Settings ? Displays settings ? Word annotation to make available
>> as alternative view in extended context:
>> pos it is set, I don't know if it's due to this, but it is impossible to
>> change it to: "Do not make alternative view available", I can only change
>> it to "lemma" or back to "pos"
>>
>> could this be the issue?
>>
>>
>>
>>
>> El Lun, 25 de Abril de 2022, 2:41, Hardie, Andrew escribi?:
>>
>> This line in your output:
>> show +word + ;
>> ought to look like this:
>> show +word +pos ;
>> (assuming that pos is set as your primary annotation.)
>> The missing ?pos? is a CQP syntax error, which is what is causing your
>> issues.
>> I can?t reproduce this problem. If I could, I?d address it by tracing the
>> variable back through the code and using the var_dump() function to
>> announce its value at different stages to work out where it went wrong.
>> You are welcome to have a try at this if you wish. The file where it
>> happens is concordance-ui.php . Line 772 is where the ?show +word +??
>> command is sent to the CQP process . As you can see, it uses the variable
>> $Corpus->primary_annotation, which comes straight from the
>> primary_annotation column of the corpus_info table (the global $Corpus
>> object is created during startup).
>>
>> https://sourceforge.net/p/cwb/code/HEAD/tree/gui/cqpweb/branches/3.2-latest/lib/concordance-ui.php#l772
>> <
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsourceforge.net%2Fp%2Fcwb%2Fcode%2FHEAD%2Ftree%2Fgui%2Fcqpweb%2Fbranches%2F3.2-latest%2Flib%2Fconcordance-ui.php%23l772&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=I1AO5niP895pkkYflWQaOunmA2t%2BFMoiWMXkDVdTLxk%3D&reserved=0
>> >
>> You might also check whether the visualise_gloss_in_conconcordance field
>> in corpus_info has become set to true for some reason. This should be
>> switched off for a corpus of the sort you?ve described. As you can see from
>> line 769, this variable pre-empts the use of the primary annotation.
>> best
>> Andrew.
>> From: cwb-bounces at sslmit.unibo.it On Behalf Of "Andr?s Chand?a"
>> Sent: 24 April 2022 14:59
>> To: Open source development of the Corpus WorkBench
>> Subject: Re: [CWB] Where to start looking for the problem?
>> At Annotation metadata there are only: lemma and pos
>> they were without description so I added lemma for lemma and pos for pos,
>> then I tried next combinations in "CEQL (simple query) syntax bindings for
>> token-level annotation in coca" without success, I mean, always the same
>> result:
>> Primary annotation
>> Secondary annotation
>> 1.
>> pos
>> lemma
>> 2.
>> lemma
>> pos
>> 3.
>> pos
>> x
>> 4.
>> lemma
>> x
>> 5.
>> x
>> pos
>> 6.
>> x
>> lemma
>> CQP reports an error! The CQP program sent back these error messages:
>> **** CQP ERROR ****
>> CQP Error:
>> CQP Syntax Error: syntax error, unexpected ';', expecting ID
>> show +word + ;
>> Ignoring subsequent input until next ';'...
>> PARSE ERROR
>>
>> El Dom, 24 de Abril de 2022, 15:34, Hardie, Andrew escribi?:
>> The problem is here:
>> show +word + ;
>> It indicates that you have the primary annotation set to an empty string.
>> That won?t work!
>> Try resetting the primary annotation using the ?CEQL bindings? under
>> ?Manage annotation?.
>> best
>> Andrew.
>> From: cwb-bounces at sslmit.unibo.it On Behalf Of "Andr?s Chand?a"
>> Sent: 23 April 2022 17:25
>> To: Stephanie Evert
>> Cc: CWBdev Mailing List
>> Subject: Re: [CWB] Where to start looking for the problem?
>>
>> Ok, eventhough the previous time I have changed platform in th config.mk
>> file,
>>
>> something
>>
>> should have gone wrong...
>>
>> now I did it the way you suggested:
>>
>> cd
>>
>> cwb-3.4.33-src
>> make clean PLATFORM=linux-64 SITE=standard
>> make depend
>>
>> PLATFORM=linux-64
>>
>>  SITE=standard
>> make all PLATFORM=linux-64 SITE=standard
>> make install
>>
>> PLATFORM=linux-64 SITE=standard
>> --------------------------------- INSTALLING
>>
>> CORPUS
>>
>> WORKBENCH
>> .... install the CL static library file
>> .... install cwb/cl.h
>>
>> header
>>
>> file
>> ....
>>
>>  install the CQP programs
>> .... install the CQi/cqi.h header file
>> ....
>>
>> install
>>
>> the CWB utility programs
>> .... install all manual files
>>
>> and now is
>>
>> correct....
>>
>> /usr/local/bin/cqp -v
>>
>> The IMS Open Corpus Workbench
>>
>> (CWB)
>>
>> Copyright
>>
>>  (C) 1993-2006 by IMS, University of Stuttgart
>> Original developer: Oliver Christ
>> with contributions by Bruno Maximilian Schulze
>> Version 3.0 developed by: Stefan
>>
>> Evert
>> with contributions by Arne Fitschen
>>
>> Copyright (C) 2007-today by
>>
>> the
>>
>> CWB
>>
>>  open-source community
>> individual contributors are listed in source file AUTHORS
>>
>> Download and contact: http://cwb.sourceforge.net/<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcwb.sourceforge.net%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=QxUeoB0fChmhpMfCxqqr39f1d3Gr6ouixq3REZguKXk%3D&reserved=0
>> >
>>
>> Compiled: s?b 23 abr 2022
>>
>> 18:16:17 CEST
>> Version: 3.4.33
>>
>>
>> but still on the web interface, on
>>
>> querying
>>
>>  the coca corpus I get
>>
>> CQP reports an error! The CQP program sent back
>>
>> these
>>
>> error messages:
>>
>> **** CQP ERROR ****
>>
>> CQP Error:
>>
>> CQP
>>
>> Syntax
>>
>> Error: syntax error, unexpected ';', expecting ID
>>
>> show +word + ;
>> Ignoring
>>
>> subsequent
>>
>>  input until next ';'...
>>
>> PARSE ERROR
>> PHP debugging backtrace
>>
>> array(6) {
>> [1]=>
>> array(4) {
>> ["file"]=>
>> string(55)
>>
>> "/mnt/vmdata/corptedig-glif/cqpweb/lib/exiterror-lib.php"
>> ["line"]=>
>> int(380)
>> ["function"]=>
>> string(9)
>>
>> "exiterror"
>> ["args"]=>
>> array(1)
>>
>>  {
>> [0]=>
>> array(7) {
>> [0]=>
>> string(69) "CQP reports an
>>
>> error! The CQP program sent back these error messages:"
>> [1]=>
>> string(19)
>>
>> "**** CQP ERROR ****"
>> [2]=>
>> string(10) "CQP Error:"
>> [3]=>
>> string(60) "CQP Syntax Error: syntax error,
>>
>>  unexpected ';', expecting ID"
>> [4]=>
>> string(18) "show +word + ;
>>
>> [5]=>
>> string(43) "Ignoring subsequent input until next ';'..."
>> [6]=>
>> string(11) "PARSE ERROR"
>> }
>> }
>> }
>> [2]=>
>> array(4) {
>> ["file"]=>
>> string(45)
>>
>> "/mnt/vmdata/corptedig-glif/cqpweb/lib/cqp.php"
>> ["line"]=>
>> int(1798)
>> ["function"]=>
>> string(13)
>>
>>  "exiterror_cqp"
>> ["args"]=>
>> array(1) {
>> [0]=>
>> array(6) {
>> [0]=>
>> string(19) "**** CQP ERROR ****"
>> [1]=>
>> string(10) "CQP Error:"
>> [2]=>
>> string(60) "CQP Syntax
>>
>> Error:
>>
>> syntax error, unexpected ';', expecting ID"
>> [3]=>
>> string(18)
>>
>>  "show +word + ; [4]=>
>> string(43) "Ignoring subsequent input until
>>
>> next
>>
>> ';'..."
>> [5]=>
>> string(11) "PARSE ERROR"
>> }
>> }
>> }
>> [3]=>
>> array(7) {
>> ["file"]=>
>> string(45)
>>
>> "/mnt/vmdata/corptedig-glif/cqpweb/lib/cqp.php"
>> ["line"]=>
>> int(1850)
>> ["function"]=>
>> string(11)
>>
>>  "shout_error"
>> ["class"]=>
>> string(3) "CQP"
>> ["object"]=>
>> object(CQP)#67 (21) {
>> ["has_been_disconnected":"CQP":private]=>
>> bool(false)
>> ["process":"CQP":private]=>
>> resource(4) of type (process)
>> ["pipe":"CQP":private]=>
>> array(3) {
>> [0]=>
>> resource(1)
>>
>>  of type (stream)
>> [1]=>
>> resource(2) of type (stream)
>> [2]=>
>> resource(3) of type (stream)
>> }
>> ["last_registry_invoked":"CQP":private]=>
>> string(48)
>>
>> "/mnt/vmdata/corptedig-glif/corpora/cqp/registry/"
>> ["major_version"]=>
>> int(3)
>> ["minor_version"]=>
>> int(4)
>> ["revision_version"]=>
>> int(33)
>> ["revision_version_flagged_beta":"CQP":private]=>
>> bool(false)
>> ["compile_date"]=>
>> NULL
>> ["version_string"]=>
>> string(18)
>>
>>  "CQP version 3.4.33"
>> ["status":"CQP":private]=>
>> int(1)
>> ["error_handler":"CQP":private]=>
>> string(13)
>>
>> "exiterror_cqp"
>> ["error_message":"CQP":private]=>
>> array(6) {
>> [0]=>
>> string(19) "**** CQP ERROR ****"
>> [1]=>
>> string(10) "CQP
>>
>> Error:"
>> [2]=>
>> string(60)
>>
>>  "CQP Syntax Error: syntax error, unexpected ';', expecting ID"
>> [3]=>
>> string(18) "show +word + ; [4]=>
>> string(43) "Ignoring
>>
>> subsequent input until next ';'..."
>> [5]=>
>> string(11) "PARSE
>>
>> ERROR"
>> }
>> ["EOL":"CQP":private]=>
>> string(1)
>>
>>  "
>> "
>> ["progress_handler":"CQP":private]=>
>> bool(false)
>> ["gzip_path":"CQP":private]=>
>> string(0)
>>
>> ""
>> ["debug_mode":"CQP":private]=>
>> bool(false)
>> ["unbuffered_output_pending":"CQP":private]=>
>> bool(false)
>> ["pretty_suspended":"CQP":private]=>
>> bool(false)
>> ["corpus_charset":"CQP":private]=>
>> int(0)
>> ["last_set_corpus":"CQP":private]=>
>> string(4)
>>
>>  "COCA"
>> }
>> ["type"]=>
>> string(2) "->"
>> ["args"]=>
>> array(0) {
>> }
>> }
>> [4]=>
>> array(7) {
>> ["file"]=>
>> string(45)
>>
>> "/mnt/vmdata/corptedig-glif/cqpweb/lib/cqp.php"
>> ["line"]=>
>> int(1143)
>> ["function"]=>
>> string(20)
>>
>> "check_pipe_for_error"
>> ["class"]=>
>> string(3)
>>
>>  "CQP"
>> ["object"]=>
>> object(CQP)#67 (21) {
>> ["has_been_disconnected":"CQP":private]=>
>> bool(false)
>> ["process":"CQP":private]=>
>> resource(4) of type (process)
>> ["pipe":"CQP":private]=>
>> array(3) {
>> [0]=>
>> resource(1) of type (stream)
>> [1]=>
>> resource(2)
>>
>>  of type (stream)
>> [2]=>
>> resource(3) of type (stream)
>> }
>> ["last_registry_invoked":"CQP":private]=>
>> string(48)
>>
>> "/mnt/vmdata/corptedig-glif/corpora/cqp/registry/"
>> ["major_version"]=>
>> int(3)
>> ["minor_version"]=>
>> int(4)
>> ["revision_version"]=>
>> int(33)
>> ["revision_version_flagged_beta":"CQP":private]=>
>> bool(false)
>> ["compile_date"]=>
>> NULL
>> ["version_string"]=>
>> string(18)
>>
>>  "CQP version 3.4.33"
>> ["status":"CQP":private]=>
>> int(1)
>> ["error_handler":"CQP":private]=>
>> string(13)
>>
>> "exiterror_cqp"
>> ["error_message":"CQP":private]=>
>> array(6) {
>> [0]=>
>> string(19) "**** CQP ERROR ****"
>> [1]=>
>> string(10) "CQP
>>
>> Error:"
>> [2]=>
>> string(60)
>>
>>  "CQP Syntax Error: syntax error, unexpected ';', expecting ID"
>> [3]=>
>> string(18) "show +word + ; [4]=>
>> string(43) "Ignoring
>>
>> subsequent input until next ';'..."
>> [5]=>
>> string(11) "PARSE
>>
>> ERROR"
>> }
>> ["EOL":"CQP":private]=>
>> string(1)
>>
>>  "
>> "
>> ["progress_handler":"CQP":private]=>
>> bool(false)
>> ["gzip_path":"CQP":private]=>
>> string(0)
>>
>> ""
>> ["debug_mode":"CQP":private]=>
>> bool(false)
>> ["unbuffered_output_pending":"CQP":private]=>
>> bool(false)
>> ["pretty_suspended":"CQP":private]=>
>> bool(false)
>> ["corpus_charset":"CQP":private]=>
>> int(0)
>> ["last_set_corpus":"CQP":private]=>
>> string(4)
>>
>>  "COCA"
>> }
>> ["type"]=>
>> string(2) "->"
>> ["args"]=>
>> array(0) {
>> }
>> }
>> [5]=>
>> array(7) {
>> ["file"]=>
>> string(56)
>>
>> "/mnt/vmdata/corptedig-glif/cqpweb/lib/concordance-ui.php"
>> ["line"]=>
>> int(770)
>> ["function"]=>
>> string(7)
>>
>> "execute"
>> ["class"]=>
>> string(3)
>>
>>  "CQP"
>> ["object"]=>
>> object(CQP)#67 (21) {
>> ["has_been_disconnected":"CQP":private]=>
>> bool(false)
>> ["process":"CQP":private]=>
>> resource(4) of type (process)
>> ["pipe":"CQP":private]=>
>> array(3) {
>> [0]=>
>> resource(1) of type (stream)
>> [1]=>
>> resource(2)
>>
>>  of type (stream)
>> [2]=>
>> resource(3) of type (stream)
>> }
>> ["last_registry_invoked":"CQP":private]=>
>> string(48)
>>
>> "/mnt/vmdata/corptedig-glif/corpora/cqp/registry/"
>> ["major_version"]=>
>> int(3)
>> ["minor_version"]=>
>> int(4)
>> ["revision_version"]=>
>> int(33)
>> ["revision_version_flagged_beta":"CQP":private]=>
>> bool(false)
>> ["compile_date"]=>
>> NULL
>> ["version_string"]=>
>> string(18)
>>
>>  "CQP version 3.4.33"
>> ["status":"CQP":private]=>
>> int(1)
>> ["error_handler":"CQP":private]=>
>> string(13)
>>
>> "exiterror_cqp"
>> ["error_message":"CQP":private]=>
>> array(6) {
>> [0]=>
>> string(19) "**** CQP ERROR ****"
>> [1]=>
>> string(10) "CQP
>>
>> Error:"
>> [2]=>
>> string(60)
>>
>>  "CQP Syntax Error: syntax error, unexpected ';', expecting ID"
>> [3]=>
>> string(18) "show +word + ; [4]=>
>> string(43) "Ignoring
>>
>> subsequent input until next ';'..."
>> [5]=>
>> string(11) "PARSE
>>
>> ERROR"
>> }
>> ["EOL":"CQP":private]=>
>> string(1)
>>
>>  "
>> "
>> ["progress_handler":"CQP":private]=>
>> bool(false)
>> ["gzip_path":"CQP":private]=>
>> string(0)
>>
>> ""
>> ["debug_mode":"CQP":private]=>
>> bool(false)
>> ["unbuffered_output_pending":"CQP":private]=>
>> bool(false)
>> ["pretty_suspended":"CQP":private]=>
>> bool(false)
>> ["corpus_charset":"CQP":private]=>
>> int(0)
>> ["last_set_corpus":"CQP":private]=>
>> string(4)
>>
>>  "COCA"
>> }
>> ["type"]=>
>> string(2) "->"
>> ["args"]=>
>> array(1) {
>> [0]=>
>> string(13) "show +word
>>
>> +
>>
>> "
>> }
>> }
>> [6]=>
>> array(4) {
>> ["file"]=>
>> string(53) "/mnt/vmdata/corptedig-glif/cqpweb/exe/concordance.php"
>> ["line"]=>
>> int(1)
>> ["args"]=>
>> array(1)
>>
>>  {
>> [0]=>
>> string(56)
>>
>> "/mnt/vmdata/corptedig-glif/cqpweb/lib/concordance-ui.php"
>> }
>> ["function"]=>
>> string(7) "require"
>> }
>> }
>>
>> Thanks, and sorry for all the trouble...
>>
>>
>>
>>
>>
>> That's still
>>
>> a
>>
>> fairly old version, most current
>>
>>  release is here:
>> https://sourceforge.net/projects/cwb/files/cwb/cwb-3.5-RC/cwb-3.4.33-src.tar.gz/download
>> <
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fcwb%2Ffiles%2Fcwb%2Fcwb-3.5-RC%2Fcwb-3.4.33-src.tar.gz%2Fdownload&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=npa7dOy47YUb%2BNWEqRx3DYF1euyfivg4MwsNxEGaZ6Q%3D&reserved=0
>> >
>>
>> Your newly compiled version was
>>
>>  probably installed into /usr/local/cwb-3.4.22/bin because you failed to
>> set PLATFORM
>>
>> and
>>
>> SITE configuration flags. Andrew Hardie recommends the auto-install
>> script, but you can
>>
>> also
>>
>> just append PLATFORM=linux-64 SITE=standard to _every_ make command. See
>> file
>>
>>  INSTALL for detailed instructions. Links and guidance on the Web page
>> will be update
>>
>> when I finally have some spare time. Best, Steph
>>
>>
>>
>>
>>
>> _______________________
>> andr?s chand?a
>> [IMAGE REMOVED]<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.chandia.net%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=43J4CfOCNtIrIYCS2mSr0p%2BSHVZEuxaRjfvjx4I%2Bry0%3D&reserved=0
>> >
>> D?ngupeyem<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fdungupeyem&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=rSx%2BihKEXArdHjCoMY0l3nqx83kIxOzBpI3xYzWn1z4%3D&reserved=0>
>> | IECMap<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fiecmap&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=1Xu280Pmbk7aFPEe3ymi4grsJ8kB7KOlmK%2F6o7C53Qs%3D&reserved=0>
>> | ISECMap<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fisecmap&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99
>>  b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=169Pa3F%2FaRKhJuzCcwiBkzqSrGbjtnUGM1%2FVyMv%2BoYw%3D&reserved=0>
>> | NMT<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fnmt-norwirin-mapudungun-trapumwe&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=TSDHkfQJ1MNB75oLbwO17uB8GO4bp9odfEnkTmAFLps%3D&reserved=0>
>> | Corlexim<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcorlexim.cl%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D
>>
>>  %7C3000%7C%7C%7C&sdata=NO23I8YtlaKpXvoy6ABeYdoXLK5T3jyxXbyPq%2BGl3EI%3D&reserved=0>
>>
>> Desarrollador de:
>> Parles.upf<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fparles.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=HcurU4SnJxg%2BUooxzV0%2BeT8GzIooCYoj0nD42z%2B7ZnQ%3D&reserved=0>
>> | IWCH<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiwch.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=jKqPMdF%2F2xWtBly%2B4yxKGJ%2Fpqj%2BZs%2FaOSVLsmX0aMxA%3D&reserved=0>
>> | Amind terapia<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Famindterapia.com%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26c
>>  ea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=xndYxUlaIKFjXn2qGecHqgSw03%2FIGrcbBrg%2B8YagUso%3D&reserved=0>
>> | Nocando<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fparles.upf.edu%2Fllocs%2Fnocando&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=zVseYEnStqxmTRH%2FjM2Nf4kkt0ytAsnN8XKh5sUoSyI%3D&reserved=0>
>> | IAC<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7
>>  C%7C%7C&sdata=l3Dbjn0FMN%2B7HnTLYUi1X%2B3AZ0%2B14kTBJn6yBHjkxl8%3D&reserved=0>
>> | CddZ<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2Fcddz&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=hI1S%2FEkzLJvMnM6LXTv5XyED1EnLSEGoVMCaFAURt8o%3D&reserved=0>
>> | ISAC<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2Fisac&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=cpc8Wx5YuLxwjR5mgmOPBlSOzDXEhMAnEQo1hZziv6I%3D&reserved=0>
>> | CatCg<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcatcg.upf.edu%2F&data=05%7C01%7Ch
>>  ardiea%40live.lancs.ac.uk
>> %7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=KGWfkHRGX8Nu6Fn7QP10%2BYWjMlCKT%2BEVNXOuuFyLBFQ%3D&reserved=0>
>> P No imprima innecesariamente. ?Cuide el medio ambiente!
>>
>>
>>
>> _______________________
>> andr?s chand?a
>> [Image removed by sender. chandia.net]<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.chandia.net%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967049952772%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=43J4CfOCNtIrIYCS2mSr0p%2BSHVZEuxaRjfvjx4I%2Bry0%3D&reserved=0>[Image
>> removed by sender.]<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftwitter.com%2Fchandianet&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=LDXE9Bd%2FagR8lCubIPjunpM1qavqnvxkt0zP7GCOPn0%3D&reserved=0
>> >
>> D?ngupeyem<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fdungupeyem&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=UIyGcmz27ylA5DzpwuFbveJOslS9hYDlZQv2CCIhQ4c%3D&reserved=0>
>> | IECMap<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fiecmap&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=nxO3KjbJft0Eo6kT90Al5tXi%2BFdcRBo6upeiF8oJlHU%3D&reserved=0>
>> | ISECMap<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fisecmap&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%
>>  7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=3kg8xDe54oQwMAsNA%2FSaGPH8tFzNrQfDJ3OQNTJNVas%3D&reserved=0>
>> | NMT<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fnmt-norwirin-mapudungun-trapumwe&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=CPOnPmJS79ryIJSlN%2BPydGpgcgDiyBSOKP%2B6XqeP5do%3D&reserved=0>
>> | Corlexim<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcorlexim.cl%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7
>>
>>  C3000%7C%7C%7C&sdata=Tn9W9Jp0sMWx7lmV3SGda%2BrW%2BnPef2q7zr5tidWmEpk%3D&reserved=0>
>>
>> Desarrollador de:
>> Parles.upf<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fparles.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=ZYzKPOv6dbvOmGKYscSicfIHcqXi0XVHmkzLGIqglVw%3D&reserved=0>
>> | IWCH<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiwch.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=lR7w5a6%2Fi%2FBL8Zmyyy55thmsXsVmtAC4AvuDBGvxFyo%3D&reserved=0>
>> | Amind terapia<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Famindterapia.com%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9b
>>  cd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=8xN4C3dKz7B1D1iBNChPRw9Sw%2Bunp2YY96YGmAQnNoI%3D&reserved=0>
>> | Nocando<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fparles.upf.edu%2Fllocs%2Fnocando&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pNJf6zF3Re8pBV8ik1nkq0BvaUhKX%2FR0rkPZX3goVVY%3D&reserved=0>
>> | IAC<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=
>>  XVc3jZuXIUDN06qsOIA8XVjUhuVZXICAgcBxvg3HDN0%3D&reserved=0> | CddZ<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2Fcddz&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=ixuW0RtHKPC4%2FFHA3m0GPv072fInCoaxWym95v85GBA%3D&reserved=0>
>> | ISAC<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2Fisac&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=7ozjOTT00lEaMIUjdvu45tCvi%2Fd5dxWDtXoRP0yuEF0%3D&reserved=0>
>> | CatCg<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcatcg.upf.edu%2F&data=05%7C01%7Chardiea%40live.lanc
>>  s.ac.uk
>> %7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=zfMYA9F9zvqd1aOa720a%2B2FPByEEWaHTGdSsHNZ1OLM%3D&reserved=0>
>> P No imprima innecesariamente. ?Cuide el medio ambiente!
>>
>>
>>
>> _______________________
>>             andr?s chand?a
>> [chandia.net]<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.chandia.net%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Nti0CDA8gSQUOW1EB8ud9pmjaDbfUGWgkWgGovf75fU%3D&reserved=0
>> >[http://mail.chandia.net/images/ico_tw.png]<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftwitter.com%2Fchandianet&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=LDXE9Bd%2FagR8lCubIPjunpM1qavqnvxkt0zP7GCOPn0%3D&reserved=0
>> >
>> D?ngupeyem<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fdungupeyem&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=UIyGcmz27ylA5DzpwuFbveJOslS9hYDlZQv2CCIhQ4c%3D&reserved=0>
>> | IECMap<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fiecmap&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=nxO3KjbJft0Eo6kT90Al5tXi%2BFdcRBo6upeiF8oJlHU%3D&reserved=0>
>> | ISECMap<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fisecmap&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%
>>  7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=3kg8xDe54oQwMAsNA%2FSaGPH8tFzNrQfDJ3OQNTJNVas%3D&reserved=0>
>> | NMT<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fchandia.net%2Fnmt-norwirin-mapudungun-trapumwe&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=CPOnPmJS79ryIJSlN%2BPydGpgcgDiyBSOKP%2B6XqeP5do%3D&reserved=0>
>> | Corlexim<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcorlexim.cl%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7
>>
>>  C3000%7C%7C%7C&sdata=Tn9W9Jp0sMWx7lmV3SGda%2BrW%2BnPef2q7zr5tidWmEpk%3D&reserved=0>
>>
>> Desarrollador de:
>> Parles.upf<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fparles.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=ZYzKPOv6dbvOmGKYscSicfIHcqXi0XVHmkzLGIqglVw%3D&reserved=0>
>> | IWCH<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiwch.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=lR7w5a6%2Fi%2FBL8Zmyyy55thmsXsVmtAC4AvuDBGvxFyo%3D&reserved=0>
>> | Amind terapia<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Famindterapia.com%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9b
>>  cd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=8xN4C3dKz7B1D1iBNChPRw9Sw%2Bunp2YY96YGmAQnNoI%3D&reserved=0>
>> | Nocando<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fparles.upf.edu%2Fllocs%2Fnocando&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pNJf6zF3Re8pBV8ik1nkq0BvaUhKX%2FR0rkPZX3goVVY%3D&reserved=0>
>> | IAC<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2F&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=
>>  XVc3jZuXIUDN06qsOIA8XVjUhuVZXICAgcBxvg3HDN0%3D&reserved=0> | CddZ<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2Fcddz&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=ixuW0RtHKPC4%2FFHA3m0GPv072fInCoaxWym95v85GBA%3D&reserved=0>
>> | ISAC<
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fiac.upf.edu%2Fisac&data=05%7C01%7Chardiea%40live.lancs.ac.uk%7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=7ozjOTT00lEaMIUjdvu45tCvi%2Fd5dxWDtXoRP0yuEF0%3D&reserved=0>
>> | CatCg<
>> https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcatcg.upf.edu%2F&data=05%7C01%7Chardiea%40live.lanc
>>  s.ac.uk
>> %7Ce80f2f0cfd064a019a4e08da26cea99b%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C637864967050109023%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=zfMYA9F9zvqd1aOa720a%2B2FPByEEWaHTGdSsHNZ1OLM%3D&reserved=0>
>> P No imprima innecesariamente. ?Cuide el medio ambiente!
>> -------------- next part --------------
>> An HTML attachment was scrubbed...
>> URL: <
>> http://liste.sslmit.unibo.it/pipermail/cwb/attachments/20220426/473ae3ed/attachment.html
>> >
>> -------------- next part --------------
>> A non-text attachment was scrubbed...
>> Name: ~WRD0005.jpg
>> Type: image/jpeg
>> Size: 823 bytes
>> Desc: ~WRD0005.jpg
>> URL: <
>> http://liste.sslmit.unibo.it/pipermail/cwb/attachments/20220426/473ae3ed/attachment.jpg
>> >
>>
>> ------------------------------
>>
>> _______________________________________________
>> CWB mailing list
>> CWB at sslmit.unibo.it
>> http://liste.sslmit.unibo.it/mailman/listinfo/cwb
>>
>>
>> End of CWB Digest, Vol 181, Issue 25
>> ************************************
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://liste.sslmit.unibo.it/pipermail/cwb/attachments/20220426/032ccdb7/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 159717 bytes
Desc: not available
URL: <http://liste.sslmit.unibo.it/pipermail/cwb/attachments/20220426/032ccdb7/attachment-0001.png>


More information about the CWB mailing list