What flavor of zksnark in tezos

Build a scale without computer

How do credit card companies know what type of business I'm paying for?

Who was the youngest Executive Producer?

How do I become a better writer when I hate reading?

Do my partner and son need an SSN to be dependents on my taxes?

You may find me... puzzling

How do I correctly reduce geometry on part of a mesh?

When is the phrase "j'ai bon" used?

I have found ports on my Samsung smart tv running a display service. What can I do with it?

What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?

Expand command in an argument before the main command

What is the context for Napoleon's quote "[the Austrians] did not know the value of five minutes"?

My student in one course asks for paid tutoring in another course. Appropriate?

Fill the maze with a wall-following Snake until it gets stuck

How can I maintain game balance while allowing my player to craft genuinely useful items?

Co-worker is now managing my team. Does this mean that I'm being demoted?

Is it possible to use just one shared folder for log shipping?

Can a character with the Polearm Master feat make an opportunity attack against an invisible creature that enters their reach?

How can I prevent a user from copying files on another hard drive?

If the mass of the Earth is decreasing by sending debris in space, does its angular momentum also decrease?

Using roof rails to set up hammock

Is this broken pipe the reason my freezer is not working? Can it be fixed?

Fibonacci sequence and other metallic sequences emerged in the form of fractions

How can I detect if I'm in a subshell?



What flavor of zksnark in tezos







.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








8















I have read that Nomadic Labs is working on incorporating some flavor of zksnarks into tezos for future amendment proposal (presumably in 2019).



Looking at the literature i see there are many flavors of zero-knowledge which are being either already implemented in other blockchains (zcash, ethereum) or being studied in the academic literature including some without trusted setup.



Given that all these implementations have relative advantages (see this question for great resources) i would like to know what are the technical assumptions/requests/constraints that drive the design choice of the one or multiple implementation of zkp in tezos:



  1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?

  2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?

  3. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be “ported” to a new scheme ?








share






























    8















    I have read that Nomadic Labs is working on incorporating some flavor of zksnarks into tezos for future amendment proposal (presumably in 2019).



    Looking at the literature i see there are many flavors of zero-knowledge which are being either already implemented in other blockchains (zcash, ethereum) or being studied in the academic literature including some without trusted setup.



    Given that all these implementations have relative advantages (see this question for great resources) i would like to know what are the technical assumptions/requests/constraints that drive the design choice of the one or multiple implementation of zkp in tezos:



    1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?

    2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?

    3. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be “ported” to a new scheme ?








    share


























      8












      8








      8








      I have read that Nomadic Labs is working on incorporating some flavor of zksnarks into tezos for future amendment proposal (presumably in 2019).



      Looking at the literature i see there are many flavors of zero-knowledge which are being either already implemented in other blockchains (zcash, ethereum) or being studied in the academic literature including some without trusted setup.



      Given that all these implementations have relative advantages (see this question for great resources) i would like to know what are the technical assumptions/requests/constraints that drive the design choice of the one or multiple implementation of zkp in tezos:



      1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?

      2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?

      3. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be “ported” to a new scheme ?








      share
















      I have read that Nomadic Labs is working on incorporating some flavor of zksnarks into tezos for future amendment proposal (presumably in 2019).



      Looking at the literature i see there are many flavors of zero-knowledge which are being either already implemented in other blockchains (zcash, ethereum) or being studied in the academic literature including some without trusted setup.



      Given that all these implementations have relative advantages (see this question for great resources) i would like to know what are the technical assumptions/requests/constraints that drive the design choice of the one or multiple implementation of zkp in tezos:



      1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?

      2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?

      3. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be “ported” to a new scheme ?






      protocol zero-knowledge





      share














      share












      share



      share








      edited May 31 at 11:34







      Ezy

















      asked May 31 at 9:03









      EzyEzy

      3,588640




      3,588640




















          1 Answer
          1






          active

          oldest

          votes


















          15














          I am one of the developper working on the integration of some privacy features based on ZKP at Tezos.



          Yes there are many trade off in ZKP.
          I can try to sum up some them and explain our choices.



          The first is interactive vs non interactive (ie. the prover and verifier exchange several messages).



          In a blockchain context since people can go on and offline, non interactive is much easier to handle, thus we are not looking at any interactive schemes (altough they could theoretically be implemented, every round of communicaiton being in a different block).



          Second tradeoff is what is called trusted setup (ie. dishonest generation of the initial parameters could result in the possibility for the dishonest generators to produce false proofs) vs not trusted setup.



          However, making a big multi party ceremony offers really good resilience since you can allow a big number of participant (whoever wants to join actually) and if they don't ALL decide to be dishonnest TOGETHER, everything is fine. See for example the Zcash ceremony : https://z.cash/fr/blog/completion-of-the-sapling-mpc/



          The other trades offs are verifier complexity, prover complexity and size of the proofs.



          For a blockchain context we want to minimize the verifier complexity and size of the proofs, since this is what will be on chain and therefore executed/stored by the whole network (and payed for in gas and tez).



          For more see : https://eprint.iacr.org/2019/550.pdf
          (Page 4 figure 1 contains an interesting summary of the different trade offs.)
          The one used in Zcash and that we will use in tezos belongs to the first line denoted [GGPR] based (reference [57]).



          Now to answer the questions :




          1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?



            Yes it can, and most probably will in the future. However this is not an issue of performances vs security, but will probably be more about composability (eg. https://eprint.iacr.org/2017/1066.pdf), untrutested setup (eg. https://eprint.iacr.org/2018/046.pdf) (or updatable setup : https://eprint.iacr.org/2018/280.pdf). No choice have been made yet for another system than Groth's one which we will use for private transactions (http://www0.cs.ucl.ac.uk/staff/J.Groth/ShortNIZK.pdf), but investigations have begun.



          2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?


          Of course it can for the collection of private transaction, in the same way than an error in a signature scheme for example could allow to steal money in a regular blockchain.



          In our case, an error in the prover would not matter too much since it would only block people for some time until a fix is released (the prover is in the client so no vote is needed to fix).



          If the verifier accepts incorrect proofs, we could create fake private money, which in turn would result in stealing from honest user who created real private money.



          If the verifier rejects correct proofs, this would freeze the assets of honest users of ZKP.



          However there will be no possibility of infinite real money (tez) creation, and everyone NOT using ZKP could NOT be affected by a bug in ZKP.




          1. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be "ported" to a new schema



            The self amendement could allow to port from one system from another for the implementation of private transactions we are working on now. In general it is not possible to answer since it does not only depends on the ZKP system but also on what you are doing with it.



          Hope this clarify a bit the choices we made and their implication. We will shortly post a detailed explanation of all this.



          PS : For those interested in the topic I would highly recommend this more historical paper which is the first system allowing ZKP for all NP languages : https://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Zero%20Knowledge/Proofs_That_Yield_Nothing_But_Their_Validity_or_All_Languages_in_NP_Have_Zero-Knowledge_Proof_Systems.pdf






          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "698"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f1286%2fwhat-flavor-of-zksnark-in-tezos%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            15














            I am one of the developper working on the integration of some privacy features based on ZKP at Tezos.



            Yes there are many trade off in ZKP.
            I can try to sum up some them and explain our choices.



            The first is interactive vs non interactive (ie. the prover and verifier exchange several messages).



            In a blockchain context since people can go on and offline, non interactive is much easier to handle, thus we are not looking at any interactive schemes (altough they could theoretically be implemented, every round of communicaiton being in a different block).



            Second tradeoff is what is called trusted setup (ie. dishonest generation of the initial parameters could result in the possibility for the dishonest generators to produce false proofs) vs not trusted setup.



            However, making a big multi party ceremony offers really good resilience since you can allow a big number of participant (whoever wants to join actually) and if they don't ALL decide to be dishonnest TOGETHER, everything is fine. See for example the Zcash ceremony : https://z.cash/fr/blog/completion-of-the-sapling-mpc/



            The other trades offs are verifier complexity, prover complexity and size of the proofs.



            For a blockchain context we want to minimize the verifier complexity and size of the proofs, since this is what will be on chain and therefore executed/stored by the whole network (and payed for in gas and tez).



            For more see : https://eprint.iacr.org/2019/550.pdf
            (Page 4 figure 1 contains an interesting summary of the different trade offs.)
            The one used in Zcash and that we will use in tezos belongs to the first line denoted [GGPR] based (reference [57]).



            Now to answer the questions :




            1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?



              Yes it can, and most probably will in the future. However this is not an issue of performances vs security, but will probably be more about composability (eg. https://eprint.iacr.org/2017/1066.pdf), untrutested setup (eg. https://eprint.iacr.org/2018/046.pdf) (or updatable setup : https://eprint.iacr.org/2018/280.pdf). No choice have been made yet for another system than Groth's one which we will use for private transactions (http://www0.cs.ucl.ac.uk/staff/J.Groth/ShortNIZK.pdf), but investigations have begun.



            2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?


            Of course it can for the collection of private transaction, in the same way than an error in a signature scheme for example could allow to steal money in a regular blockchain.



            In our case, an error in the prover would not matter too much since it would only block people for some time until a fix is released (the prover is in the client so no vote is needed to fix).



            If the verifier accepts incorrect proofs, we could create fake private money, which in turn would result in stealing from honest user who created real private money.



            If the verifier rejects correct proofs, this would freeze the assets of honest users of ZKP.



            However there will be no possibility of infinite real money (tez) creation, and everyone NOT using ZKP could NOT be affected by a bug in ZKP.




            1. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be "ported" to a new schema



              The self amendement could allow to port from one system from another for the implementation of private transactions we are working on now. In general it is not possible to answer since it does not only depends on the ZKP system but also on what you are doing with it.



            Hope this clarify a bit the choices we made and their implication. We will shortly post a detailed explanation of all this.



            PS : For those interested in the topic I would highly recommend this more historical paper which is the first system allowing ZKP for all NP languages : https://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Zero%20Knowledge/Proofs_That_Yield_Nothing_But_Their_Validity_or_All_Languages_in_NP_Have_Zero-Knowledge_Proof_Systems.pdf






            share|improve this answer



























              15














              I am one of the developper working on the integration of some privacy features based on ZKP at Tezos.



              Yes there are many trade off in ZKP.
              I can try to sum up some them and explain our choices.



              The first is interactive vs non interactive (ie. the prover and verifier exchange several messages).



              In a blockchain context since people can go on and offline, non interactive is much easier to handle, thus we are not looking at any interactive schemes (altough they could theoretically be implemented, every round of communicaiton being in a different block).



              Second tradeoff is what is called trusted setup (ie. dishonest generation of the initial parameters could result in the possibility for the dishonest generators to produce false proofs) vs not trusted setup.



              However, making a big multi party ceremony offers really good resilience since you can allow a big number of participant (whoever wants to join actually) and if they don't ALL decide to be dishonnest TOGETHER, everything is fine. See for example the Zcash ceremony : https://z.cash/fr/blog/completion-of-the-sapling-mpc/



              The other trades offs are verifier complexity, prover complexity and size of the proofs.



              For a blockchain context we want to minimize the verifier complexity and size of the proofs, since this is what will be on chain and therefore executed/stored by the whole network (and payed for in gas and tez).



              For more see : https://eprint.iacr.org/2019/550.pdf
              (Page 4 figure 1 contains an interesting summary of the different trade offs.)
              The one used in Zcash and that we will use in tezos belongs to the first line denoted [GGPR] based (reference [57]).



              Now to answer the questions :




              1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?



                Yes it can, and most probably will in the future. However this is not an issue of performances vs security, but will probably be more about composability (eg. https://eprint.iacr.org/2017/1066.pdf), untrutested setup (eg. https://eprint.iacr.org/2018/046.pdf) (or updatable setup : https://eprint.iacr.org/2018/280.pdf). No choice have been made yet for another system than Groth's one which we will use for private transactions (http://www0.cs.ucl.ac.uk/staff/J.Groth/ShortNIZK.pdf), but investigations have begun.



              2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?


              Of course it can for the collection of private transaction, in the same way than an error in a signature scheme for example could allow to steal money in a regular blockchain.



              In our case, an error in the prover would not matter too much since it would only block people for some time until a fix is released (the prover is in the client so no vote is needed to fix).



              If the verifier accepts incorrect proofs, we could create fake private money, which in turn would result in stealing from honest user who created real private money.



              If the verifier rejects correct proofs, this would freeze the assets of honest users of ZKP.



              However there will be no possibility of infinite real money (tez) creation, and everyone NOT using ZKP could NOT be affected by a bug in ZKP.




              1. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be "ported" to a new schema



                The self amendement could allow to port from one system from another for the implementation of private transactions we are working on now. In general it is not possible to answer since it does not only depends on the ZKP system but also on what you are doing with it.



              Hope this clarify a bit the choices we made and their implication. We will shortly post a detailed explanation of all this.



              PS : For those interested in the topic I would highly recommend this more historical paper which is the first system allowing ZKP for all NP languages : https://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Zero%20Knowledge/Proofs_That_Yield_Nothing_But_Their_Validity_or_All_Languages_in_NP_Have_Zero-Knowledge_Proof_Systems.pdf






              share|improve this answer

























                15












                15








                15







                I am one of the developper working on the integration of some privacy features based on ZKP at Tezos.



                Yes there are many trade off in ZKP.
                I can try to sum up some them and explain our choices.



                The first is interactive vs non interactive (ie. the prover and verifier exchange several messages).



                In a blockchain context since people can go on and offline, non interactive is much easier to handle, thus we are not looking at any interactive schemes (altough they could theoretically be implemented, every round of communicaiton being in a different block).



                Second tradeoff is what is called trusted setup (ie. dishonest generation of the initial parameters could result in the possibility for the dishonest generators to produce false proofs) vs not trusted setup.



                However, making a big multi party ceremony offers really good resilience since you can allow a big number of participant (whoever wants to join actually) and if they don't ALL decide to be dishonnest TOGETHER, everything is fine. See for example the Zcash ceremony : https://z.cash/fr/blog/completion-of-the-sapling-mpc/



                The other trades offs are verifier complexity, prover complexity and size of the proofs.



                For a blockchain context we want to minimize the verifier complexity and size of the proofs, since this is what will be on chain and therefore executed/stored by the whole network (and payed for in gas and tez).



                For more see : https://eprint.iacr.org/2019/550.pdf
                (Page 4 figure 1 contains an interesting summary of the different trade offs.)
                The one used in Zcash and that we will use in tezos belongs to the first line denoted [GGPR] based (reference [57]).



                Now to answer the questions :




                1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?



                  Yes it can, and most probably will in the future. However this is not an issue of performances vs security, but will probably be more about composability (eg. https://eprint.iacr.org/2017/1066.pdf), untrutested setup (eg. https://eprint.iacr.org/2018/046.pdf) (or updatable setup : https://eprint.iacr.org/2018/280.pdf). No choice have been made yet for another system than Groth's one which we will use for private transactions (http://www0.cs.ucl.ac.uk/staff/J.Groth/ShortNIZK.pdf), but investigations have begun.



                2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?


                Of course it can for the collection of private transaction, in the same way than an error in a signature scheme for example could allow to steal money in a regular blockchain.



                In our case, an error in the prover would not matter too much since it would only block people for some time until a fix is released (the prover is in the client so no vote is needed to fix).



                If the verifier accepts incorrect proofs, we could create fake private money, which in turn would result in stealing from honest user who created real private money.



                If the verifier rejects correct proofs, this would freeze the assets of honest users of ZKP.



                However there will be no possibility of infinite real money (tez) creation, and everyone NOT using ZKP could NOT be affected by a bug in ZKP.




                1. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be "ported" to a new schema



                  The self amendement could allow to port from one system from another for the implementation of private transactions we are working on now. In general it is not possible to answer since it does not only depends on the ZKP system but also on what you are doing with it.



                Hope this clarify a bit the choices we made and their implication. We will shortly post a detailed explanation of all this.



                PS : For those interested in the topic I would highly recommend this more historical paper which is the first system allowing ZKP for all NP languages : https://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Zero%20Knowledge/Proofs_That_Yield_Nothing_But_Their_Validity_or_All_Languages_in_NP_Have_Zero-Knowledge_Proof_Systems.pdf






                share|improve this answer













                I am one of the developper working on the integration of some privacy features based on ZKP at Tezos.



                Yes there are many trade off in ZKP.
                I can try to sum up some them and explain our choices.



                The first is interactive vs non interactive (ie. the prover and verifier exchange several messages).



                In a blockchain context since people can go on and offline, non interactive is much easier to handle, thus we are not looking at any interactive schemes (altough they could theoretically be implemented, every round of communicaiton being in a different block).



                Second tradeoff is what is called trusted setup (ie. dishonest generation of the initial parameters could result in the possibility for the dishonest generators to produce false proofs) vs not trusted setup.



                However, making a big multi party ceremony offers really good resilience since you can allow a big number of participant (whoever wants to join actually) and if they don't ALL decide to be dishonnest TOGETHER, everything is fine. See for example the Zcash ceremony : https://z.cash/fr/blog/completion-of-the-sapling-mpc/



                The other trades offs are verifier complexity, prover complexity and size of the proofs.



                For a blockchain context we want to minimize the verifier complexity and size of the proofs, since this is what will be on chain and therefore executed/stored by the whole network (and payed for in gas and tez).



                For more see : https://eprint.iacr.org/2019/550.pdf
                (Page 4 figure 1 contains an interesting summary of the different trade offs.)
                The one used in Zcash and that we will use in tezos belongs to the first line denoted [GGPR] based (reference [57]).



                Now to answer the questions :




                1. Can tezos benefit from having multiple schemas available (some being geared to more security others geared to better performance) ?



                  Yes it can, and most probably will in the future. However this is not an issue of performances vs security, but will probably be more about composability (eg. https://eprint.iacr.org/2017/1066.pdf), untrutested setup (eg. https://eprint.iacr.org/2018/046.pdf) (or updatable setup : https://eprint.iacr.org/2018/280.pdf). No choice have been made yet for another system than Groth's one which we will use for private transactions (http://www0.cs.ucl.ac.uk/staff/J.Groth/ShortNIZK.pdf), but investigations have begun.



                2. Would potential implementation issue cause an integrity problem for the entire chain or only the collection of private transactions ?


                Of course it can for the collection of private transaction, in the same way than an error in a signature scheme for example could allow to steal money in a regular blockchain.



                In our case, an error in the prover would not matter too much since it would only block people for some time until a fix is released (the prover is in the client so no vote is needed to fix).



                If the verifier accepts incorrect proofs, we could create fake private money, which in turn would result in stealing from honest user who created real private money.



                If the verifier rejects correct proofs, this would freeze the assets of honest users of ZKP.



                However there will be no possibility of infinite real money (tez) creation, and everyone NOT using ZKP could NOT be affected by a bug in ZKP.




                1. Tezos is meant to self-amend so if one schema is chosen and down the road a new schema is found superior, do certain kinds of zk proofs allow themselves to be "ported" to a new schema



                  The self amendement could allow to port from one system from another for the implementation of private transactions we are working on now. In general it is not possible to answer since it does not only depends on the ZKP system but also on what you are doing with it.



                Hope this clarify a bit the choices we made and their implication. We will shortly post a detailed explanation of all this.



                PS : For those interested in the topic I would highly recommend this more historical paper which is the first system allowing ZKP for all NP languages : https://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Zero%20Knowledge/Proofs_That_Yield_Nothing_But_Their_Validity_or_All_Languages_in_NP_Have_Zero-Knowledge_Proof_Systems.pdf







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 31 at 13:20









                MarcMarc

                16612




                16612



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Tezos Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f1286%2fwhat-flavor-of-zksnark-in-tezos%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                    Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                    Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020