oddb2xml 1.8.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/Gemfile.lock +4 -1
- data/History.txt +22 -0
- data/Rakefile +3 -0
- data/lib/oddb2xml/builder.rb +6 -4
- data/lib/oddb2xml/downloader.rb +9 -2
- data/lib/oddb2xml/extractor.rb +100 -78
- data/lib/oddb2xml/version.rb +1 -1
- data/lib/oddb2xml/xml_definitions.rb +250 -0
- data/oddb2xml.gemspec +1 -1
- data/spec/builder_spec.rb +64 -34
- data/spec/data/Preparation.xml +642 -225
- data/spec/data/Preparations.xml +641 -98
- data/spec/data/XMLPublications.zip +0 -0
- data/spec/data/epha_interactions.csv +3 -3
- data/spec/extractor_spec.rb +1 -1
- data/spec/spec_helper.rb +2 -2
- metadata +20 -31
    
        data/oddb2xml.gemspec
    CHANGED
    
    | @@ -24,7 +24,7 @@ Gem::Specification.new do |spec| | |
| 24 24 | 
             
              spec.add_dependency 'savon', '~> 2.0'
         | 
| 25 25 | 
             
              spec.add_dependency 'spreadsheet'
         | 
| 26 26 | 
             
              spec.add_dependency 'rubyXL', '~> 2.5'
         | 
| 27 | 
            -
              
         | 
| 27 | 
            +
              spec.add_dependency 'sax-machine'
         | 
| 28 28 |  | 
| 29 29 | 
             
              spec.add_development_dependency "bundler"
         | 
| 30 30 | 
             
              spec.add_development_dependency "rake"
         | 
    
        data/spec/builder_spec.rb
    CHANGED
    
    | @@ -29,13 +29,12 @@ describe Oddb2xml::Builder do | |
| 29 29 | 
             
                setup_server_mocks
         | 
| 30 30 | 
             
                setup_swiss_index_server_mock(types =  ['NonPharma', 'Pharma'])
         | 
| 31 31 | 
             
              end
         | 
| 32 | 
            -
              if true
         | 
| 33 32 | 
             
              context 'should handle BAG-articles with and without pharmacode' do
         | 
| 34 33 | 
             
                it {
         | 
| 35 34 | 
             
                  dat = File.read(File.expand_path('../data/Preparation.xml', __FILE__))
         | 
| 36 35 | 
             
                  @items = Oddb2xml::BagXmlExtractor.new(dat).to_hash
         | 
| 37 36 | 
             
                  saved =  @items.clone
         | 
| 38 | 
            -
                  expect(@items.size).to eq( | 
| 37 | 
            +
                  expect(@items.size).to eq(5)
         | 
| 39 38 | 
             
                  expect(saved).to eq(@items)
         | 
| 40 39 | 
             
                }
         | 
| 41 40 | 
             
              end
         | 
| @@ -81,7 +80,7 @@ describe Oddb2xml::Builder do | |
| 81 80 | 
             
                  end
         | 
| 82 81 | 
             
                end
         | 
| 83 82 | 
             
              end
         | 
| 84 | 
            -
             | 
| 83 | 
            +
             | 
| 85 84 | 
             
              context 'when -a nonpharma -f dat is given' do
         | 
| 86 85 | 
             
                let(:cli) do
         | 
| 87 86 | 
             
                  opts = {
         | 
| @@ -100,8 +99,6 @@ describe Oddb2xml::Builder do | |
| 100 99 | 
             
                  # oddb_dat.should match(/001349002780100B010710076806206900842/), "should match EAN of Desitin"
         | 
| 101 100 | 
             
                end
         | 
| 102 101 | 
             
                it "pending should match EAN of Desitin. returns 0 at the moment" 
         | 
| 103 | 
            -
             | 
| 104 | 
            -
              end
         | 
| 105 102 | 
             
              end
         | 
| 106 103 | 
             
              context 'when option -e is given' do
         | 
| 107 104 | 
             
                let(:cli) do
         | 
| @@ -113,34 +110,39 @@ describe Oddb2xml::Builder do | |
| 113 110 | 
             
                  Oddb2xml::Cli.new(opts)
         | 
| 114 111 | 
             
                end
         | 
| 115 112 |  | 
| 116 | 
            -
                it 'should  | 
| 113 | 
            +
                it 'should load correct number of nonpharma' do
         | 
| 114 | 
            +
                  res = capture(:stdout){ cli.run }
         | 
| 115 | 
            +
                  res.should match(/NonPharma/i)
         | 
| 116 | 
            +
                  res.should match(/NonPharma products: 60/)
         | 
| 117 | 
            +
                end
         | 
| 118 | 
            +
             | 
| 119 | 
            +
                it 'should emit a correct oddb_limitation.xml' do
         | 
| 120 | 
            +
                  res = capture(:stdout){ cli.run }
         | 
| 121 | 
            +
                  # check limitations
         | 
| 122 | 
            +
                  limitation_filename = File.expand_path(File.join(File.dirname(__FILE__), '..', 'oddb_limitation.xml'))
         | 
| 123 | 
            +
                  File.exists?(limitation_filename).should be_true
         | 
| 124 | 
            +
                  limitation_xml = IO.read(limitation_filename)
         | 
| 125 | 
            +
                  doc = REXML::Document.new File.new(limitation_filename)
         | 
| 126 | 
            +
                  limitations = XPath.match( doc, "//LIM" )
         | 
| 127 | 
            +
                  limitations.size.should == 4
         | 
| 128 | 
            +
                  XPath.match( doc, "//SwissmedicNo5" ).find_all{|x| x.text.match('28486') }.size.should == 1
         | 
| 129 | 
            +
                  XPath.match( doc, "//Pharmacode" ).find_all{|x| x.text.match('3817150') }.size.should == 2
         | 
| 130 | 
            +
                  XPath.match( doc, "//LIMNAMEBAG" ).find_all{|x| x.text.match('ALFARÉ') }.size.should == 1
         | 
| 131 | 
            +
                  XPath.match( doc, "//LIMNAMEBAG" ).find_all{|x| x.text.match('070110') }.size.should == 1
         | 
| 132 | 
            +
                end
         | 
| 133 | 
            +
             | 
| 134 | 
            +
                it 'should emit a correct oddb_article.xml' do
         | 
| 117 135 | 
             
                  res = capture(:stdout){ cli.run }
         | 
| 118 | 
            -
                  res.should match(/products/)
         | 
| 119 136 | 
             
                  article_filename = File.expand_path(File.join(File.dirname(__FILE__), '..', 'oddb_article.xml'))
         | 
| 120 137 | 
             
                  File.exists?(article_filename).should be_true
         | 
| 121 138 | 
             
                  article_xml = IO.read(article_filename)
         | 
| 122 | 
            -
                   | 
| 123 | 
            -
                  File.exists?(product_filename).should be_true
         | 
| 124 | 
            -
             | 
| 125 | 
            -
                  # check substances
         | 
| 126 | 
            -
                  doc = REXML::Document.new File.new(File.join(File.dirname(__FILE__), '..', 'oddb_substance.xml'))
         | 
| 127 | 
            -
                  names = XPath.match( doc, "//NAML" )
         | 
| 128 | 
            -
                  names.size.should == 2
         | 
| 129 | 
            -
                  names.find_all{|x| x.text.match('Lamivudinum') }.size.should == 1
         | 
| 130 | 
            -
             | 
| 131 | 
            -
                  # check interactions
         | 
| 132 | 
            -
                  doc = REXML::Document.new File.new(File.join(File.dirname(__FILE__), '..', 'oddb_interaction.xml'))
         | 
| 133 | 
            -
                  titles = XPath.match( doc, "//TITD" )
         | 
| 134 | 
            -
                  titles.size.should == 2
         | 
| 135 | 
            -
                  titles.find_all{|x| x.text.match('Keine Interaktion') }.size.should == 1
         | 
| 136 | 
            -
                  titles.find_all{|x| x.text.match('Erhöhtes Risiko für Myopathie und Rhabdomyolyse') }.size.should == 1
         | 
| 137 | 
            -
             | 
| 139 | 
            +
                  doc = REXML::Document.new File.new(article_filename)
         | 
| 138 140 | 
             
                  unless /1\.8\.7/.match(RUBY_VERSION)
         | 
| 139 141 | 
             
                    # check articles
         | 
| 140 142 | 
             
                    article_xml.should match(/3TC/)
         | 
| 141 143 | 
             
                    article_xml.should match(/<PHAR>1699947</)
         | 
| 142 | 
            -
             | 
| 143 | 
            -
             | 
| 144 | 
            +
                    article_xml.should match(/<SMNO>53662013</)
         | 
| 145 | 
            +
                    article_xml.should match(/<DSCRD>3TC Filmtabl 150 mg</)
         | 
| 144 146 | 
             
                    article_xml.should match(/<COMPNO>7601001392175</)
         | 
| 145 147 | 
             
                    article_xml.should match(/<BC>7680536620137</)
         | 
| 146 148 | 
             
                    article_xml.should match(/<VDAT>01.10.2011</)
         | 
| @@ -148,7 +150,6 @@ describe Oddb2xml::Builder do | |
| 148 150 | 
             
                    article_xml.should match(/<PRICE>164.55</)
         | 
| 149 151 | 
             
                    article_xml.should match(/<PTYP>PPUB</)
         | 
| 150 152 | 
             
                    article_xml.should match(/<PRICE>205.3</)
         | 
| 151 | 
            -
             | 
| 152 153 | 
             
                    article_xml.should match(/Levetiracetam DESITIN/i) #
         | 
| 153 154 | 
             
                    article_xml.should match(/7680536620137/) # Pharmacode
         | 
| 154 155 | 
             
                    article_xml.should match(/<PRICE>13.49</)
         | 
| @@ -157,23 +158,52 @@ describe Oddb2xml::Builder do | |
| 157 158 | 
             
                    article_xml.should match(/<PHAR>5819012</)
         | 
| 158 159 | 
             
                    article_xml.should match(/<DSCRD>LEVETIRACETAM DESITIN Filmtabl 250 mg/)
         | 
| 159 160 | 
             
                    article_xml.should match(/<COMPNO>7601001320451</)
         | 
| 161 | 
            +
                    # check ZYVOXID in article
         | 
| 162 | 
            +
                    article_xml.should match(/7680555580054/) # ZYVOXID
         | 
| 163 | 
            +
                    article_xml.should match(/ZYVOXID/i)
         | 
| 164 | 
            +
                    
         | 
| 165 | 
            +
                    doc = REXML::Document.new File.new article_filename
         | 
| 166 | 
            +
                    dscrds = XPath.match( doc, "//DSCRD" )
         | 
| 167 | 
            +
                    dscrds.find_all{|x| x.text.match('ZYVOXID Filmtabl 600 mg') }.size.should == 1
         | 
| 168 | 
            +
                    
         | 
| 169 | 
            +
                  end
         | 
| 170 | 
            +
                  pending 'Checking for LIMPTS' # XPath.match( doc, "//LIMPTS" ).size.should == 1
         | 
| 171 | 
            +
                end
         | 
| 172 | 
            +
                it 'should emit a correct oddb_substance.xml' do
         | 
| 173 | 
            +
                  res = capture(:stdout){ cli.run }
         | 
| 174 | 
            +
                  doc = REXML::Document.new File.new(File.join(File.dirname(__FILE__), '..', 'oddb_substance.xml'))
         | 
| 175 | 
            +
                  names = XPath.match( doc, "//NAML" )
         | 
| 176 | 
            +
                  names.size.should == 10
         | 
| 177 | 
            +
                  names.find_all{|x| x.text.match('Lamivudinum') }.size.should == 1
         | 
| 178 | 
            +
                end
         | 
| 179 | 
            +
             | 
| 180 | 
            +
                it 'should emit a correct oddb_interaction.xml' do
         | 
| 181 | 
            +
                  res = capture(:stdout){ cli.run }
         | 
| 182 | 
            +
                  doc = REXML::Document.new File.new(File.join(File.dirname(__FILE__), '..', 'oddb_interaction.xml'))
         | 
| 183 | 
            +
                  titles = XPath.match( doc, "//TITD" )
         | 
| 184 | 
            +
                  titles.size.should == 2
         | 
| 185 | 
            +
                  titles.find_all{|x| x.text.match('Keine Interaktion') }.size.should == 1
         | 
| 186 | 
            +
                  titles.find_all{|x| x.text.match('Erhöhtes Risiko für Myopathie und Rhabdomyolyse') }.size.should == 1      
         | 
| 187 | 
            +
                end
         | 
| 188 | 
            +
             | 
| 189 | 
            +
                it 'should emit a correct oddb_product.xml' do
         | 
| 190 | 
            +
                  res = capture(:stdout){ cli.run }
         | 
| 191 | 
            +
                  
         | 
| 192 | 
            +
                  res.should match(/products/)
         | 
| 193 | 
            +
                  product_filename = File.expand_path(File.join(File.dirname(__FILE__), '..', 'oddb_product.xml'))
         | 
| 194 | 
            +
                  File.exists?(product_filename).should be_true
         | 
| 195 | 
            +
             | 
| 196 | 
            +
                  unless /1\.8\.7/.match(RUBY_VERSION)
         | 
| 197 | 
            +
                    # check articles
         | 
| 160 198 |  | 
| 161 199 | 
             
                    # check products
         | 
| 162 200 | 
             
                    product_xml = IO.read(product_filename)
         | 
| 163 201 | 
             
                    product_xml.should match(/3TC/)
         | 
| 164 202 | 
             
                    product_xml.should match(/7680620690084/) # Levetiracetam DESITIN
         | 
| 165 203 |  | 
| 166 | 
            -
                    # check ZYVOXID in article
         | 
| 167 | 
            -
                    article_xml.should match(/7680555580054/) # ZYVOXID
         | 
| 168 | 
            -
                    article_xml.should match(/ZYVOXID/i)
         | 
| 169 | 
            -
             | 
| 170 204 | 
             
                    product_xml.should match(/7680555580054/) # ZYVOXID
         | 
| 171 205 | 
             
                    product_xml.should_not match(/ZYVOXID/i)
         | 
| 172 | 
            -
                    doc = REXML::Document.new File.new article_filename
         | 
| 173 | 
            -
                    dscrds = XPath.match( doc, "//DSCRD" )
         | 
| 174 | 
            -
                    dscrds.find_all{|x| x.text.match('ZYVOXID Filmtabl 600 mg') }.size.should == 1
         | 
| 175 206 | 
             
                  end
         | 
| 176 207 | 
             
                end
         | 
| 177 208 | 
             
              end
         | 
| 178 209 | 
             
            end
         | 
| 179 | 
            -
             | 
    
        data/spec/data/Preparation.xml
    CHANGED
    
    | @@ -1,225 +1,642 @@ | |
| 1 | 
            -
            <?xml version="1.0" encoding="utf-8" standalone="yes"?>
         | 
| 2 | 
            -
            <Preparations ReleaseDate="01.12.2013">
         | 
| 3 | 
            -
              <Preparation ProductCommercial=" | 
| 4 | 
            -
                <NameDe> | 
| 5 | 
            -
                <NameFr> | 
| 6 | 
            -
                <NameIt> | 
| 7 | 
            -
                <DescriptionDe> | 
| 8 | 
            -
                <DescriptionFr> | 
| 9 | 
            -
                <DescriptionIt> | 
| 10 | 
            -
                <AtcCode> | 
| 11 | 
            -
                <SwissmedicNo5> | 
| 12 | 
            -
                <FlagItLimitation>Y</FlagItLimitation>
         | 
| 13 | 
            -
                <OrgGenCode | 
| 14 | 
            -
                <FlagSB20>N</FlagSB20>
         | 
| 15 | 
            -
                <CommentDe />
         | 
| 16 | 
            -
                <CommentFr />
         | 
| 17 | 
            -
                <CommentIt />
         | 
| 18 | 
            -
                <VatInEXF>N</VatInEXF>
         | 
| 19 | 
            -
                <Packs>
         | 
| 20 | 
            -
                  <Pack ProductKey=" | 
| 21 | 
            -
                    <DescriptionDe> | 
| 22 | 
            -
                    <DescriptionFr> | 
| 23 | 
            -
                    <DescriptionIt> | 
| 24 | 
            -
                    <SwissmedicCategory> | 
| 25 | 
            -
                    <SwissmedicNo8> | 
| 26 | 
            -
                    <FlagNarcosis>N</FlagNarcosis>
         | 
| 27 | 
            -
                    <FlagModal>Y</FlagModal>
         | 
| 28 | 
            -
                    <BagDossierNo> | 
| 29 | 
            -
                    <GTIN> | 
| 30 | 
            -
                    <Limitations />
         | 
| 31 | 
            -
                    <PointLimitations | 
| 32 | 
            -
             | 
| 33 | 
            -
             | 
| 34 | 
            -
                        < | 
| 35 | 
            -
                        <ValidFromDate>01. | 
| 36 | 
            -
                        < | 
| 37 | 
            -
             | 
| 38 | 
            -
             | 
| 39 | 
            -
             | 
| 40 | 
            -
             | 
| 41 | 
            -
                        < | 
| 42 | 
            -
                        < | 
| 43 | 
            -
                        < | 
| 44 | 
            -
                        < | 
| 45 | 
            -
             | 
| 46 | 
            -
             | 
| 47 | 
            -
                        < | 
| 48 | 
            -
                        < | 
| 49 | 
            -
                        < | 
| 50 | 
            -
                        < | 
| 51 | 
            -
                        < | 
| 52 | 
            -
             | 
| 53 | 
            -
             | 
| 54 | 
            -
                        < | 
| 55 | 
            -
                        < | 
| 56 | 
            -
                        < | 
| 57 | 
            -
                        < | 
| 58 | 
            -
             | 
| 59 | 
            -
             | 
| 60 | 
            -
             | 
| 61 | 
            -
             | 
| 62 | 
            -
                        < | 
| 63 | 
            -
                        < | 
| 64 | 
            -
                        < | 
| 65 | 
            -
             | 
| 66 | 
            -
             | 
| 67 | 
            -
             | 
| 68 | 
            -
                       | 
| 69 | 
            -
             | 
| 70 | 
            -
             | 
| 71 | 
            -
             | 
| 72 | 
            -
             | 
| 73 | 
            -
             | 
| 74 | 
            -
             | 
| 75 | 
            -
                       | 
| 76 | 
            -
             | 
| 77 | 
            -
                     | 
| 78 | 
            -
             | 
| 79 | 
            -
             | 
| 80 | 
            -
             | 
| 81 | 
            -
             | 
| 82 | 
            -
             | 
| 83 | 
            -
             | 
| 84 | 
            -
                     | 
| 85 | 
            -
                  </ | 
| 86 | 
            -
                </ | 
| 87 | 
            -
                < | 
| 88 | 
            -
             | 
| 89 | 
            -
             | 
| 90 | 
            -
                    < | 
| 91 | 
            -
                    < | 
| 92 | 
            -
             | 
| 93 | 
            -
             | 
| 94 | 
            -
             | 
| 95 | 
            -
             | 
| 96 | 
            -
                    < | 
| 97 | 
            -
             | 
| 98 | 
            -
             | 
| 99 | 
            -
                    < | 
| 100 | 
            -
             | 
| 101 | 
            -
             | 
| 102 | 
            -
             | 
| 103 | 
            -
                  < | 
| 104 | 
            -
             | 
| 105 | 
            -
             | 
| 106 | 
            -
             | 
| 107 | 
            -
                   | 
| 108 | 
            -
             | 
| 109 | 
            -
                 | 
| 110 | 
            -
             | 
| 111 | 
            -
             | 
| 112 | 
            -
             | 
| 113 | 
            -
             | 
| 114 | 
            -
             | 
| 115 | 
            -
             | 
| 116 | 
            -
             | 
| 117 | 
            -
             | 
| 118 | 
            -
             | 
| 119 | 
            -
             | 
| 120 | 
            -
             | 
| 121 | 
            -
             | 
| 122 | 
            -
             | 
| 123 | 
            -
             | 
| 124 | 
            -
             | 
| 125 | 
            -
             | 
| 126 | 
            -
             | 
| 127 | 
            -
             | 
| 128 | 
            -
             | 
| 129 | 
            -
             | 
| 130 | 
            -
             | 
| 131 | 
            -
             | 
| 132 | 
            -
             | 
| 133 | 
            -
             | 
| 134 | 
            -
             | 
| 135 | 
            -
             | 
| 136 | 
            -
             | 
| 137 | 
            -
             | 
| 138 | 
            -
             | 
| 139 | 
            -
                     | 
| 140 | 
            -
             | 
| 141 | 
            -
             | 
| 142 | 
            -
             | 
| 143 | 
            -
             | 
| 144 | 
            -
             | 
| 145 | 
            -
             | 
| 146 | 
            -
             | 
| 147 | 
            -
             | 
| 148 | 
            -
             | 
| 149 | 
            -
             | 
| 150 | 
            -
             | 
| 151 | 
            -
             | 
| 152 | 
            -
             | 
| 153 | 
            -
             | 
| 154 | 
            -
             | 
| 155 | 
            -
             | 
| 156 | 
            -
             | 
| 157 | 
            -
             | 
| 158 | 
            -
             | 
| 159 | 
            -
             | 
| 160 | 
            -
             | 
| 161 | 
            -
             | 
| 162 | 
            -
             | 
| 163 | 
            -
             | 
| 164 | 
            -
             | 
| 165 | 
            -
             | 
| 166 | 
            -
             | 
| 167 | 
            -
             | 
| 168 | 
            -
                    < | 
| 169 | 
            -
             | 
| 170 | 
            -
             | 
| 171 | 
            -
             | 
| 172 | 
            -
             | 
| 173 | 
            -
             | 
| 174 | 
            -
             | 
| 175 | 
            -
             | 
| 176 | 
            -
             | 
| 177 | 
            -
                     | 
| 178 | 
            -
                    < | 
| 179 | 
            -
                      < | 
| 180 | 
            -
             | 
| 181 | 
            -
             | 
| 182 | 
            -
             | 
| 183 | 
            -
             | 
| 184 | 
            -
             | 
| 185 | 
            -
             | 
| 186 | 
            -
             | 
| 187 | 
            -
             | 
| 188 | 
            -
             | 
| 189 | 
            -
             | 
| 190 | 
            -
             | 
| 191 | 
            -
             | 
| 192 | 
            -
             | 
| 193 | 
            -
             | 
| 194 | 
            -
             | 
| 195 | 
            -
             | 
| 196 | 
            -
             | 
| 197 | 
            -
             | 
| 198 | 
            -
             | 
| 199 | 
            -
             | 
| 200 | 
            -
             | 
| 201 | 
            -
             | 
| 202 | 
            -
             | 
| 203 | 
            -
             | 
| 204 | 
            -
             | 
| 205 | 
            -
                     | 
| 206 | 
            -
                    < | 
| 207 | 
            -
             | 
| 208 | 
            -
             | 
| 209 | 
            -
             | 
| 210 | 
            -
             | 
| 211 | 
            -
             | 
| 212 | 
            -
             | 
| 213 | 
            -
             | 
| 214 | 
            -
             | 
| 215 | 
            -
             | 
| 216 | 
            -
             | 
| 217 | 
            -
             | 
| 218 | 
            -
             | 
| 219 | 
            -
             | 
| 220 | 
            -
             | 
| 221 | 
            -
             | 
| 222 | 
            -
             | 
| 223 | 
            -
             | 
| 224 | 
            -
             | 
| 225 | 
            -
            </ | 
| 1 | 
            +
            <?xml version="1.0" encoding="utf-8" standalone="yes"?>
         | 
| 2 | 
            +
            <Preparations ReleaseDate="01.12.2013">
         | 
| 3 | 
            +
              <Preparation ProductCommercial="394">
         | 
| 4 | 
            +
                <NameDe>Ancopir</NameDe>
         | 
| 5 | 
            +
                <NameFr>Ancopir</NameFr>
         | 
| 6 | 
            +
                <NameIt>Ancopir</NameIt>
         | 
| 7 | 
            +
                <DescriptionDe>Inj Lös </DescriptionDe>
         | 
| 8 | 
            +
                <DescriptionFr>sol inj </DescriptionFr>
         | 
| 9 | 
            +
                <DescriptionIt>sol inj </DescriptionIt>
         | 
| 10 | 
            +
                <AtcCode>A11DB</AtcCode>
         | 
| 11 | 
            +
                <SwissmedicNo5>28486</SwissmedicNo5>
         | 
| 12 | 
            +
                <FlagItLimitation>Y</FlagItLimitation>
         | 
| 13 | 
            +
                <OrgGenCode />
         | 
| 14 | 
            +
                <FlagSB20>N</FlagSB20>
         | 
| 15 | 
            +
                <CommentDe />
         | 
| 16 | 
            +
                <CommentFr />
         | 
| 17 | 
            +
                <CommentIt />
         | 
| 18 | 
            +
                <VatInEXF>N</VatInEXF>
         | 
| 19 | 
            +
                <Packs>
         | 
| 20 | 
            +
                  <Pack ProductKey="394" Pharmacode="177804" PackId="570">
         | 
| 21 | 
            +
                    <DescriptionDe>5 Amp 2 ml</DescriptionDe>
         | 
| 22 | 
            +
                    <DescriptionFr>5 amp 2 ml</DescriptionFr>
         | 
| 23 | 
            +
                    <DescriptionIt>5 amp 2 ml</DescriptionIt>
         | 
| 24 | 
            +
                    <SwissmedicCategory>B</SwissmedicCategory>
         | 
| 25 | 
            +
                    <SwissmedicNo8>28486014</SwissmedicNo8>
         | 
| 26 | 
            +
                    <FlagNarcosis>N</FlagNarcosis>
         | 
| 27 | 
            +
                    <FlagModal>Y</FlagModal>
         | 
| 28 | 
            +
                    <BagDossierNo>12101</BagDossierNo>
         | 
| 29 | 
            +
                    <GTIN>7680284860144</GTIN>
         | 
| 30 | 
            +
                    <Limitations />
         | 
| 31 | 
            +
                    <PointLimitations>
         | 
| 32 | 
            +
                      <PointLimitation>
         | 
| 33 | 
            +
                        <Points>20</Points>
         | 
| 34 | 
            +
                        <Packs>0</Packs>
         | 
| 35 | 
            +
                        <ValidFromDate>01.01.1955</ValidFromDate>
         | 
| 36 | 
            +
                        <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 37 | 
            +
                      </PointLimitation>
         | 
| 38 | 
            +
                    </PointLimitations>
         | 
| 39 | 
            +
                    <Prices>
         | 
| 40 | 
            +
                      <PublicPrice>
         | 
| 41 | 
            +
                        <Price>8.55</Price>
         | 
| 42 | 
            +
                        <ValidFromDate>01.03.2010</ValidFromDate>
         | 
| 43 | 
            +
                        <DivisionDescription />
         | 
| 44 | 
            +
                        <PriceTypeCode>PPUB</PriceTypeCode>
         | 
| 45 | 
            +
                        <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
         | 
| 46 | 
            +
                        <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
         | 
| 47 | 
            +
                        <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
         | 
| 48 | 
            +
                        <PriceChangeTypeCode>EXTRAORDMUT</PriceChangeTypeCode>
         | 
| 49 | 
            +
                        <PriceChangeTypeDescriptionDe>Ausserordentliche Preismutation</PriceChangeTypeDescriptionDe>
         | 
| 50 | 
            +
                        <PriceChangeTypeDescriptionFr>Ausserordentliche Preismutation</PriceChangeTypeDescriptionFr>
         | 
| 51 | 
            +
                        <PriceChangeTypeDescriptionIt>Ausserordentliche Preismutation</PriceChangeTypeDescriptionIt>
         | 
| 52 | 
            +
                      </PublicPrice>
         | 
| 53 | 
            +
                      <ExFactoryPrice>
         | 
| 54 | 
            +
                        <Price>3.89</Price>
         | 
| 55 | 
            +
                        <ValidFromDate>01.07.2001</ValidFromDate>
         | 
| 56 | 
            +
                        <DivisionDescription />
         | 
| 57 | 
            +
                        <PriceTypeCode>PEXF</PriceTypeCode>
         | 
| 58 | 
            +
                        <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
         | 
| 59 | 
            +
                        <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
         | 
| 60 | 
            +
                        <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
         | 
| 61 | 
            +
                        <PriceChangeTypeCode>NORMAL</PriceChangeTypeCode>
         | 
| 62 | 
            +
                        <PriceChangeTypeDescriptionDe>Normale Preismutation</PriceChangeTypeDescriptionDe>
         | 
| 63 | 
            +
                        <PriceChangeTypeDescriptionFr>Mutation de prix normale</PriceChangeTypeDescriptionFr>
         | 
| 64 | 
            +
                        <PriceChangeTypeDescriptionIt>Mutation de prix normale</PriceChangeTypeDescriptionIt>
         | 
| 65 | 
            +
                      </ExFactoryPrice>
         | 
| 66 | 
            +
                    </Prices>
         | 
| 67 | 
            +
                    <Partners>
         | 
| 68 | 
            +
                      <Partner>
         | 
| 69 | 
            +
                        <PartnerType>V</PartnerType>
         | 
| 70 | 
            +
                        <Description>Dr. Grossmann AG Pharmaca</Description>
         | 
| 71 | 
            +
                        <Street>Hardstrasse 25</Street>
         | 
| 72 | 
            +
                        <ZipCode>4127</ZipCode>
         | 
| 73 | 
            +
                        <Place>Birsfelden</Place>
         | 
| 74 | 
            +
                        <Phone>+41613775000</Phone>
         | 
| 75 | 
            +
                      </Partner>
         | 
| 76 | 
            +
                    </Partners>
         | 
| 77 | 
            +
                    <Status>
         | 
| 78 | 
            +
                      <IntegrationDate>15.03.1975</IntegrationDate>
         | 
| 79 | 
            +
                      <ValidFromDate>15.03.1975</ValidFromDate>
         | 
| 80 | 
            +
                      <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 81 | 
            +
                      <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 82 | 
            +
                      <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 83 | 
            +
                      <FlagApd>N</FlagApd>
         | 
| 84 | 
            +
                    </Status>
         | 
| 85 | 
            +
                  </Pack>
         | 
| 86 | 
            +
                </Packs>
         | 
| 87 | 
            +
                <Substances>
         | 
| 88 | 
            +
                  <Substance>
         | 
| 89 | 
            +
                    <DescriptionLa>Cyanocobalaminum (Vitamin B12)</DescriptionLa>
         | 
| 90 | 
            +
                    <Quantity>1</Quantity>
         | 
| 91 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 92 | 
            +
                  </Substance>
         | 
| 93 | 
            +
                  <Substance>
         | 
| 94 | 
            +
                    <DescriptionLa>Pyridoxini hydrochloridum</DescriptionLa>
         | 
| 95 | 
            +
                    <Quantity>50</Quantity>
         | 
| 96 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 97 | 
            +
                  </Substance>
         | 
| 98 | 
            +
                  <Substance>
         | 
| 99 | 
            +
                    <DescriptionLa>Thiamini hydrochloridum</DescriptionLa>
         | 
| 100 | 
            +
                    <Quantity>200</Quantity>
         | 
| 101 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 102 | 
            +
                  </Substance>
         | 
| 103 | 
            +
                  <Substance>
         | 
| 104 | 
            +
                    <DescriptionLa>Lidocaini hydrochloridum</DescriptionLa>
         | 
| 105 | 
            +
                    <Quantity>10</Quantity>
         | 
| 106 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 107 | 
            +
                  </Substance>
         | 
| 108 | 
            +
                </Substances>
         | 
| 109 | 
            +
                <Limitations />
         | 
| 110 | 
            +
                <ItCodes>
         | 
| 111 | 
            +
                  <ItCode Code="07.">
         | 
| 112 | 
            +
                    <DescriptionDe>STOFFWECHSEL</DescriptionDe>
         | 
| 113 | 
            +
                    <DescriptionFr>METABOLISME</DescriptionFr>
         | 
| 114 | 
            +
                    <DescriptionIt>METABOLISMO</DescriptionIt>
         | 
| 115 | 
            +
                    <Limitations />
         | 
| 116 | 
            +
                  </ItCode>
         | 
| 117 | 
            +
                  <ItCode Code="07.02.">
         | 
| 118 | 
            +
                    <DescriptionDe>Mineralia et Vitamina</DescriptionDe>
         | 
| 119 | 
            +
                    <DescriptionFr>Mineralia et Vitamina</DescriptionFr>
         | 
| 120 | 
            +
                    <DescriptionIt>Minerali e vitamine</DescriptionIt>
         | 
| 121 | 
            +
                    <Limitations />
         | 
| 122 | 
            +
                  </ItCode>
         | 
| 123 | 
            +
                  <ItCode Code="07.02.40.">
         | 
| 124 | 
            +
                    <DescriptionDe>Kombinierte Vitamine</DescriptionDe>
         | 
| 125 | 
            +
                    <DescriptionFr>Vitamines composées</DescriptionFr>
         | 
| 126 | 
            +
                    <DescriptionIt>Vitamine combinate</DescriptionIt>
         | 
| 127 | 
            +
                    <Limitations>
         | 
| 128 | 
            +
                      <Limitation>
         | 
| 129 | 
            +
                        <LimitationCode>070240</LimitationCode>
         | 
| 130 | 
            +
                        <LimitationType>PKT</LimitationType>
         | 
| 131 | 
            +
                        <LimitationNiveau>IP</LimitationNiveau>
         | 
| 132 | 
            +
                        <LimitationValue>40</LimitationValue>
         | 
| 133 | 
            +
                        <DescriptionDe>Gesamthaft zugelassen: <b>40</b> Punkte</DescriptionDe>
         | 
| 134 | 
            +
                        <DescriptionFr>Prescription limitée au maximum à: <b>40</b> points</DescriptionFr>
         | 
| 135 | 
            +
                        <DescriptionIt>Ammessi in totale: <b>40</b> punti</DescriptionIt>
         | 
| 136 | 
            +
                        <ValidFromDate>01.01.2000</ValidFromDate>
         | 
| 137 | 
            +
                        <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 138 | 
            +
                      </Limitation>
         | 
| 139 | 
            +
                    </Limitations>
         | 
| 140 | 
            +
                  </ItCode>
         | 
| 141 | 
            +
                </ItCodes>
         | 
| 142 | 
            +
                <Status>
         | 
| 143 | 
            +
                  <IntegrationDate>15.03.1975</IntegrationDate>
         | 
| 144 | 
            +
                  <ValidFromDate>15.03.1975</ValidFromDate>
         | 
| 145 | 
            +
                  <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 146 | 
            +
                  <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 147 | 
            +
                  <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 148 | 
            +
                  <FlagApd>N</FlagApd>
         | 
| 149 | 
            +
                </Status>
         | 
| 150 | 
            +
              </Preparation>
         | 
| 151 | 
            +
              <Preparation ProductCommercial="19736">
         | 
| 152 | 
            +
                <NameDe>Althéra</NameDe>
         | 
| 153 | 
            +
                <NameFr>Althéra</NameFr>
         | 
| 154 | 
            +
                <NameIt>Althéra</NameIt>
         | 
| 155 | 
            +
                <DescriptionDe>Plv </DescriptionDe>
         | 
| 156 | 
            +
                <DescriptionFr>pdr </DescriptionFr>
         | 
| 157 | 
            +
                <DescriptionIt>pdr </DescriptionIt>
         | 
| 158 | 
            +
                <AtcCode>V06DF</AtcCode>
         | 
| 159 | 
            +
                <FlagItLimitation>Y</FlagItLimitation>
         | 
| 160 | 
            +
                <OrgGenCode />
         | 
| 161 | 
            +
                <FlagSB20>N</FlagSB20>
         | 
| 162 | 
            +
                <CommentDe />
         | 
| 163 | 
            +
                <CommentFr />
         | 
| 164 | 
            +
                <CommentIt />
         | 
| 165 | 
            +
                <VatInEXF>N</VatInEXF>
         | 
| 166 | 
            +
                <Packs>
         | 
| 167 | 
            +
                  <Pack ProductKey="19736" Pharmacode="3817150" PackId="23217">
         | 
| 168 | 
            +
                    <DescriptionDe>450 g</DescriptionDe>
         | 
| 169 | 
            +
                    <DescriptionFr>450 g</DescriptionFr>
         | 
| 170 | 
            +
                    <DescriptionIt>450 g</DescriptionIt>
         | 
| 171 | 
            +
                    <SwissmedicCategory />
         | 
| 172 | 
            +
                    <FlagNarcosis>N</FlagNarcosis>
         | 
| 173 | 
            +
                    <FlagModal>Y</FlagModal>
         | 
| 174 | 
            +
                    <BagDossierNo>18943</BagDossierNo>
         | 
| 175 | 
            +
                    <GTIN />
         | 
| 176 | 
            +
                    <Limitations />
         | 
| 177 | 
            +
                    <PointLimitations />
         | 
| 178 | 
            +
                    <Prices>
         | 
| 179 | 
            +
                      <ExFactoryPrice>
         | 
| 180 | 
            +
                        <Price>16.3</Price>
         | 
| 181 | 
            +
                        <ValidFromDate>01.08.2011</ValidFromDate>
         | 
| 182 | 
            +
                        <DivisionDescription />
         | 
| 183 | 
            +
                        <PriceTypeCode>PEXF</PriceTypeCode>
         | 
| 184 | 
            +
                        <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
         | 
| 185 | 
            +
                        <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
         | 
| 186 | 
            +
                        <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
         | 
| 187 | 
            +
                        <PriceChangeTypeCode>NORMAL</PriceChangeTypeCode>
         | 
| 188 | 
            +
                        <PriceChangeTypeDescriptionDe>Normale Preismutation</PriceChangeTypeDescriptionDe>
         | 
| 189 | 
            +
                        <PriceChangeTypeDescriptionFr>Mutation de prix normale</PriceChangeTypeDescriptionFr>
         | 
| 190 | 
            +
                        <PriceChangeTypeDescriptionIt>Mutation de prix normale</PriceChangeTypeDescriptionIt>
         | 
| 191 | 
            +
                      </ExFactoryPrice>
         | 
| 192 | 
            +
                      <PublicPrice>
         | 
| 193 | 
            +
                        <Price>30.05</Price>
         | 
| 194 | 
            +
                        <ValidFromDate>01.08.2011</ValidFromDate>
         | 
| 195 | 
            +
                        <DivisionDescription />
         | 
| 196 | 
            +
                        <PriceTypeCode>PPUB</PriceTypeCode>
         | 
| 197 | 
            +
                        <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
         | 
| 198 | 
            +
                        <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
         | 
| 199 | 
            +
                        <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
         | 
| 200 | 
            +
                        <PriceChangeTypeCode>NORMAL</PriceChangeTypeCode>
         | 
| 201 | 
            +
                        <PriceChangeTypeDescriptionDe>Normale Preismutation</PriceChangeTypeDescriptionDe>
         | 
| 202 | 
            +
                        <PriceChangeTypeDescriptionFr>Mutation de prix normale</PriceChangeTypeDescriptionFr>
         | 
| 203 | 
            +
                        <PriceChangeTypeDescriptionIt>Mutation de prix normale</PriceChangeTypeDescriptionIt>
         | 
| 204 | 
            +
                      </PublicPrice>
         | 
| 205 | 
            +
                    </Prices>
         | 
| 206 | 
            +
                    <Partners>
         | 
| 207 | 
            +
                      <Partner>
         | 
| 208 | 
            +
                        <PartnerType>V</PartnerType>
         | 
| 209 | 
            +
                        <Description>Nestlé Suisse SA Health Care Nutrition</Description>
         | 
| 210 | 
            +
                        <Street>Entre-Deux-Villes</Street>
         | 
| 211 | 
            +
                        <ZipCode>1800</ZipCode>
         | 
| 212 | 
            +
                        <Place>Vevey</Place>
         | 
| 213 | 
            +
                        <Phone>0800 860 095</Phone>
         | 
| 214 | 
            +
                      </Partner>
         | 
| 215 | 
            +
                    </Partners>
         | 
| 216 | 
            +
                    <Status>
         | 
| 217 | 
            +
                      <IntegrationDate>01.01.2009</IntegrationDate>
         | 
| 218 | 
            +
                      <ValidFromDate>01.01.2009</ValidFromDate>
         | 
| 219 | 
            +
                      <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 220 | 
            +
                      <StatusTypeCodeSl>2</StatusTypeCodeSl>
         | 
| 221 | 
            +
                      <StatusTypeDescriptionSl>Neuaufnahme</StatusTypeDescriptionSl>
         | 
| 222 | 
            +
                      <FlagApd>N</FlagApd>
         | 
| 223 | 
            +
                    </Status>
         | 
| 224 | 
            +
                  </Pack>
         | 
| 225 | 
            +
                </Packs>
         | 
| 226 | 
            +
                <Substances>
         | 
| 227 | 
            +
                  <Substance>
         | 
| 228 | 
            +
                    <DescriptionLa>Proteinum animale hydrolysatum</DescriptionLa>
         | 
| 229 | 
            +
                    <Quantity />
         | 
| 230 | 
            +
                    <QuantityUnit />
         | 
| 231 | 
            +
                  </Substance>
         | 
| 232 | 
            +
                  <Substance>
         | 
| 233 | 
            +
                    <DescriptionLa>LC-PUFA</DescriptionLa>
         | 
| 234 | 
            +
                    <Quantity />
         | 
| 235 | 
            +
                    <QuantityUnit />
         | 
| 236 | 
            +
                  </Substance>
         | 
| 237 | 
            +
                  <Substance>
         | 
| 238 | 
            +
                    <DescriptionLa>Lactosum</DescriptionLa>
         | 
| 239 | 
            +
                    <Quantity />
         | 
| 240 | 
            +
                    <QuantityUnit />
         | 
| 241 | 
            +
                  </Substance>
         | 
| 242 | 
            +
                </Substances>
         | 
| 243 | 
            +
                <Limitations>
         | 
| 244 | 
            +
                  <Limitation>
         | 
| 245 | 
            +
                    <LimitationCode>ALFARÉ</LimitationCode>
         | 
| 246 | 
            +
                    <LimitationType>DIA</LimitationType>
         | 
| 247 | 
            +
                    <LimitationNiveau>P</LimitationNiveau>
         | 
| 248 | 
            +
                    <DescriptionDe>Kostenübernahme für 6 Monate bei Säuglingen mit Kuhmilchproteinintoleranz. In begründeten Fällen und nach vorgängiger Kostengutsprache durch den Vertrauensarzt des Krankenversicherers Verlängerung für 3 bis maximal 6 Monate.</DescriptionDe>
         | 
| 249 | 
            +
                    <DescriptionFr>Prise en charge des coûts pour une durée de 6 mois chez les nourrissons souffrant d'une intolérance aux protéines de lait de vache. Prolongation de 3 jusqu'à 6 mois maximum dans des cas motivés et après approbation préalable par le médecin-conseil de l'assureur.</DescriptionFr>
         | 
| 250 | 
            +
                    <DescriptionIt>Copertura dei costi durante 6 mesi per i lattanti affetti da intolleranza alle proteine del latte di mucca. In casi motivati, e previa garanzia dei costi precedentemente rilasciata dal medico di fiducia dell'assicuratore malattie, possibile proroga di 3 fino a un massimo di 6 mesi.</DescriptionIt>
         | 
| 251 | 
            +
                    <ValidFromDate>01.01.2009</ValidFromDate>
         | 
| 252 | 
            +
                    <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 253 | 
            +
                  </Limitation>
         | 
| 254 | 
            +
                </Limitations>
         | 
| 255 | 
            +
                <ItCodes>
         | 
| 256 | 
            +
                  <ItCode Code="07.">
         | 
| 257 | 
            +
                    <DescriptionDe>STOFFWECHSEL</DescriptionDe>
         | 
| 258 | 
            +
                    <DescriptionFr>METABOLISME</DescriptionFr>
         | 
| 259 | 
            +
                    <DescriptionIt>METABOLISMO</DescriptionIt>
         | 
| 260 | 
            +
                    <Limitations />
         | 
| 261 | 
            +
                  </ItCode>
         | 
| 262 | 
            +
                  <ItCode Code="07.01.">
         | 
| 263 | 
            +
                    <DescriptionDe>Diaetetica</DescriptionDe>
         | 
| 264 | 
            +
                    <DescriptionFr>Produits diététiques</DescriptionFr>
         | 
| 265 | 
            +
                    <DescriptionIt>Agenti nutrizionali</DescriptionIt>
         | 
| 266 | 
            +
                    <Limitations />
         | 
| 267 | 
            +
                  </ItCode>
         | 
| 268 | 
            +
                  <ItCode Code="07.01.10.">
         | 
| 269 | 
            +
                    <DescriptionDe>Ernährungsstörungen im Säuglingsalter</DescriptionDe>
         | 
| 270 | 
            +
                    <DescriptionFr>Dyspepsies du nourrissons</DescriptionFr>
         | 
| 271 | 
            +
                    <DescriptionIt>Disturbi dell'alimentazione nel lattante</DescriptionIt>
         | 
| 272 | 
            +
                    <Limitations>
         | 
| 273 | 
            +
                      <Limitation>
         | 
| 274 | 
            +
                        <LimitationCode>070110</LimitationCode>
         | 
| 275 | 
            +
                        <LimitationType>DIA</LimitationType>
         | 
| 276 | 
            +
                        <LimitationNiveau>IP</LimitationNiveau>
         | 
| 277 | 
            +
                        <DescriptionDe>Die aufgeführten Präparate dürfen nur für Säuglinge bis zu 12 Monaten verordnet werden.</DescriptionDe>
         | 
| 278 | 
            +
                        <DescriptionFr>Les préparations mentionnées ne doivent être prescrites que pour des nourrissons jusqu'à 12 mois.</DescriptionFr>
         | 
| 279 | 
            +
                        <DescriptionIt>I preparati elencati possono essere prescritti unicamente per i lattanti di età minore ai 12 mesi.</DescriptionIt>
         | 
| 280 | 
            +
                        <ValidFromDate>01.01.2000</ValidFromDate>
         | 
| 281 | 
            +
                        <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 282 | 
            +
                      </Limitation>
         | 
| 283 | 
            +
                    </Limitations>
         | 
| 284 | 
            +
                  </ItCode>
         | 
| 285 | 
            +
                </ItCodes>
         | 
| 286 | 
            +
                <Status>
         | 
| 287 | 
            +
                  <IntegrationDate>01.01.2009</IntegrationDate>
         | 
| 288 | 
            +
                  <ValidFromDate>01.01.2009</ValidFromDate>
         | 
| 289 | 
            +
                  <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 290 | 
            +
                  <StatusTypeCodeSl>2</StatusTypeCodeSl>
         | 
| 291 | 
            +
                  <StatusTypeDescriptionSl>Neuaufnahme</StatusTypeDescriptionSl>
         | 
| 292 | 
            +
                  <FlagApd>N</FlagApd>
         | 
| 293 | 
            +
                </Status>
         | 
| 294 | 
            +
              </Preparation>
         | 
| 295 | 
            +
              <Preparation ProductCommercial="8620">
         | 
| 296 | 
            +
                <NameDe>3TC</NameDe>
         | 
| 297 | 
            +
                <NameFr>3TC</NameFr>
         | 
| 298 | 
            +
                <NameIt>3TC</NameIt>
         | 
| 299 | 
            +
                <DescriptionDe>Filmtabl 150 mg </DescriptionDe>
         | 
| 300 | 
            +
                <DescriptionFr>cpr pell 150 mg </DescriptionFr>
         | 
| 301 | 
            +
                <DescriptionIt>cpr pell 150 mg </DescriptionIt>
         | 
| 302 | 
            +
                <AtcCode>J05AF05</AtcCode>
         | 
| 303 | 
            +
                <SwissmedicNo5>53662</SwissmedicNo5>
         | 
| 304 | 
            +
                <FlagItLimitation>Y</FlagItLimitation>
         | 
| 305 | 
            +
                <OrgGenCode>O</OrgGenCode>
         | 
| 306 | 
            +
                <FlagSB20>N</FlagSB20>
         | 
| 307 | 
            +
                <CommentDe />
         | 
| 308 | 
            +
                <CommentFr />
         | 
| 309 | 
            +
                <CommentIt />
         | 
| 310 | 
            +
                <VatInEXF>N</VatInEXF>
         | 
| 311 | 
            +
                <Packs>
         | 
| 312 | 
            +
                  <Pack ProductKey="8620" Pharmacode="1699947" PackId="12442">
         | 
| 313 | 
            +
                    <DescriptionDe>60 Stk</DescriptionDe>
         | 
| 314 | 
            +
                    <DescriptionFr>60 pce</DescriptionFr>
         | 
| 315 | 
            +
                    <DescriptionIt>60 pce</DescriptionIt>
         | 
| 316 | 
            +
                    <SwissmedicCategory>A</SwissmedicCategory>
         | 
| 317 | 
            +
                    <SwissmedicNo8>53662013</SwissmedicNo8>
         | 
| 318 | 
            +
                    <FlagNarcosis>N</FlagNarcosis>
         | 
| 319 | 
            +
                    <FlagModal>Y</FlagModal>
         | 
| 320 | 
            +
                    <BagDossierNo>16577</BagDossierNo>
         | 
| 321 | 
            +
                    <GTIN>7680536620137</GTIN>
         | 
| 322 | 
            +
                    <Limitations />
         | 
| 323 | 
            +
                    <PointLimitations />
         | 
| 324 | 
            +
                    <Prices>
         | 
| 325 | 
            +
                      <ExFactoryPrice>
         | 
| 326 | 
            +
                        <Price>164.55</Price>
         | 
| 327 | 
            +
                        <ValidFromDate>01.10.2011</ValidFromDate>
         | 
| 328 | 
            +
                        <DivisionDescription />
         | 
| 329 | 
            +
                        <PriceTypeCode>PEXF</PriceTypeCode>
         | 
| 330 | 
            +
                        <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
         | 
| 331 | 
            +
                        <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
         | 
| 332 | 
            +
                        <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
         | 
| 333 | 
            +
                        <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
         | 
| 334 | 
            +
                        <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
         | 
| 335 | 
            +
                        <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
         | 
| 336 | 
            +
                        <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
         | 
| 337 | 
            +
                      </ExFactoryPrice>
         | 
| 338 | 
            +
                      <PublicPrice>
         | 
| 339 | 
            +
                        <Price>205.3</Price>
         | 
| 340 | 
            +
                        <ValidFromDate>01.10.2011</ValidFromDate>
         | 
| 341 | 
            +
                        <DivisionDescription />
         | 
| 342 | 
            +
                        <PriceTypeCode>PPUB</PriceTypeCode>
         | 
| 343 | 
            +
                        <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
         | 
| 344 | 
            +
                        <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
         | 
| 345 | 
            +
                        <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
         | 
| 346 | 
            +
                        <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
         | 
| 347 | 
            +
                        <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
         | 
| 348 | 
            +
                        <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
         | 
| 349 | 
            +
                        <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
         | 
| 350 | 
            +
                      </PublicPrice>
         | 
| 351 | 
            +
                    </Prices>
         | 
| 352 | 
            +
                    <Partners>
         | 
| 353 | 
            +
                      <Partner>
         | 
| 354 | 
            +
                        <PartnerType>V</PartnerType>
         | 
| 355 | 
            +
                        <Description>ViiV Healthcare GmbH</Description>
         | 
| 356 | 
            +
                        <Street>Talstrasse 3-5</Street>
         | 
| 357 | 
            +
                        <ZipCode>3053</ZipCode>
         | 
| 358 | 
            +
                        <Place>Münchenbuchsee</Place>
         | 
| 359 | 
            +
                        <Phone>+41315607670</Phone>
         | 
| 360 | 
            +
                      </Partner>
         | 
| 361 | 
            +
                    </Partners>
         | 
| 362 | 
            +
                    <Status>
         | 
| 363 | 
            +
                      <IntegrationDate>15.03.1996</IntegrationDate>
         | 
| 364 | 
            +
                      <ValidFromDate>15.03.1996</ValidFromDate>
         | 
| 365 | 
            +
                      <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 366 | 
            +
                      <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 367 | 
            +
                      <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 368 | 
            +
                      <FlagApd>N</FlagApd>
         | 
| 369 | 
            +
                    </Status>
         | 
| 370 | 
            +
                  </Pack>
         | 
| 371 | 
            +
                </Packs>
         | 
| 372 | 
            +
                <Substances>
         | 
| 373 | 
            +
                  <Substance>
         | 
| 374 | 
            +
                    <DescriptionLa>Lamivudinum</DescriptionLa>
         | 
| 375 | 
            +
                    <Quantity>150</Quantity>
         | 
| 376 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 377 | 
            +
                  </Substance>
         | 
| 378 | 
            +
                </Substances>
         | 
| 379 | 
            +
                <Limitations />
         | 
| 380 | 
            +
                <ItCodes>
         | 
| 381 | 
            +
                  <ItCode Code="08.">
         | 
| 382 | 
            +
                    <DescriptionDe>INFEKTIONSKRANKHEITEN</DescriptionDe>
         | 
| 383 | 
            +
                    <DescriptionFr>MALADIES INFECTIEUSES</DescriptionFr>
         | 
| 384 | 
            +
                    <DescriptionIt>MALADIES INFECTIEUSES</DescriptionIt>
         | 
| 385 | 
            +
                    <Limitations />
         | 
| 386 | 
            +
                  </ItCode>
         | 
| 387 | 
            +
                  <ItCode Code="08.03.">
         | 
| 388 | 
            +
                    <DescriptionDe>Mittel gegen Viren</DescriptionDe>
         | 
| 389 | 
            +
                    <DescriptionFr>Préparations antivirales</DescriptionFr>
         | 
| 390 | 
            +
                    <DescriptionIt>Préparations antivirales</DescriptionIt>
         | 
| 391 | 
            +
                    <Limitations />
         | 
| 392 | 
            +
                  </ItCode>
         | 
| 393 | 
            +
                </ItCodes>
         | 
| 394 | 
            +
                <Status>
         | 
| 395 | 
            +
                  <IntegrationDate>15.03.1996</IntegrationDate>
         | 
| 396 | 
            +
                  <ValidFromDate>15.03.1996</ValidFromDate>
         | 
| 397 | 
            +
                  <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 398 | 
            +
                  <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 399 | 
            +
                  <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 400 | 
            +
                  <FlagApd>N</FlagApd>
         | 
| 401 | 
            +
                </Status>
         | 
| 402 | 
            +
              </Preparation>
         | 
| 403 | 
            +
              <Preparation ProductCommercial="26257">
         | 
| 404 | 
            +
                <NameDe>Levetiracetam DESITIN</NameDe>
         | 
| 405 | 
            +
                <NameFr>Levetiracetam DESITIN</NameFr>
         | 
| 406 | 
            +
                <NameIt>Levetiracetam DESITIN</NameIt>
         | 
| 407 | 
            +
                <DescriptionDe>Filmtabl 250 mg </DescriptionDe>
         | 
| 408 | 
            +
                <DescriptionFr>cpr pell 250 mg </DescriptionFr>
         | 
| 409 | 
            +
                <DescriptionIt>cpr pell 250 mg </DescriptionIt>
         | 
| 410 | 
            +
                <AtcCode>N03AX14</AtcCode>
         | 
| 411 | 
            +
                <SwissmedicNo5>62069</SwissmedicNo5>
         | 
| 412 | 
            +
                <FlagItLimitation>Y</FlagItLimitation>
         | 
| 413 | 
            +
                <OrgGenCode />
         | 
| 414 | 
            +
                <FlagSB20>N</FlagSB20>
         | 
| 415 | 
            +
                <CommentDe />
         | 
| 416 | 
            +
                <CommentFr />
         | 
| 417 | 
            +
                <CommentIt />
         | 
| 418 | 
            +
                <VatInEXF>N</VatInEXF>
         | 
| 419 | 
            +
                <Packs>
         | 
| 420 | 
            +
                  <Pack ProductKey="26257" PackId="32894">
         | 
| 421 | 
            +
                    <DescriptionDe>30 Stk</DescriptionDe>
         | 
| 422 | 
            +
                    <DescriptionFr>30 pce</DescriptionFr>
         | 
| 423 | 
            +
                    <DescriptionIt>30 pce</DescriptionIt>
         | 
| 424 | 
            +
                    <SwissmedicCategory>B</SwissmedicCategory>
         | 
| 425 | 
            +
                    <SwissmedicNo8>62069008</SwissmedicNo8>
         | 
| 426 | 
            +
                    <FlagNarcosis>N</FlagNarcosis>
         | 
| 427 | 
            +
                    <FlagModal>Y</FlagModal>
         | 
| 428 | 
            +
                    <BagDossierNo>19417</BagDossierNo>
         | 
| 429 | 
            +
                    <GTIN>7680620690084</GTIN>
         | 
| 430 | 
            +
                    <Limitations />
         | 
| 431 | 
            +
                    <PointLimitations />
         | 
| 432 | 
            +
                    <Prices>
         | 
| 433 | 
            +
                      <ExFactoryPrice>
         | 
| 434 | 
            +
                        <Price>13.49</Price>
         | 
| 435 | 
            +
                        <ValidFromDate>01.09.2013</ValidFromDate>
         | 
| 436 | 
            +
                        <DivisionDescription />
         | 
| 437 | 
            +
                        <PriceTypeCode>PEXF</PriceTypeCode>
         | 
| 438 | 
            +
                        <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
         | 
| 439 | 
            +
                        <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
         | 
| 440 | 
            +
                        <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
         | 
| 441 | 
            +
                        <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
         | 
| 442 | 
            +
                        <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
         | 
| 443 | 
            +
                        <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
         | 
| 444 | 
            +
                        <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
         | 
| 445 | 
            +
                      </ExFactoryPrice>
         | 
| 446 | 
            +
                      <PublicPrice>
         | 
| 447 | 
            +
                        <Price>27.8</Price>
         | 
| 448 | 
            +
                        <ValidFromDate>01.09.2013</ValidFromDate>
         | 
| 449 | 
            +
                        <DivisionDescription />
         | 
| 450 | 
            +
                        <PriceTypeCode>PPUB</PriceTypeCode>
         | 
| 451 | 
            +
                        <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
         | 
| 452 | 
            +
                        <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
         | 
| 453 | 
            +
                        <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
         | 
| 454 | 
            +
                        <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
         | 
| 455 | 
            +
                        <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
         | 
| 456 | 
            +
                        <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
         | 
| 457 | 
            +
                        <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
         | 
| 458 | 
            +
                      </PublicPrice>
         | 
| 459 | 
            +
                    </Prices>
         | 
| 460 | 
            +
                    <Partners>
         | 
| 461 | 
            +
                      <Partner>
         | 
| 462 | 
            +
                        <PartnerType>V</PartnerType>
         | 
| 463 | 
            +
                        <Description>Desitin Pharma GmbH</Description>
         | 
| 464 | 
            +
                        <Street>Hammerstrasse 47</Street>
         | 
| 465 | 
            +
                        <ZipCode>4410</ZipCode>
         | 
| 466 | 
            +
                        <Place>Liestal</Place>
         | 
| 467 | 
            +
                        <Phone>+41619266010</Phone>
         | 
| 468 | 
            +
                      </Partner>
         | 
| 469 | 
            +
                    </Partners>
         | 
| 470 | 
            +
                    <Status>
         | 
| 471 | 
            +
                      <IntegrationDate>01.05.2011</IntegrationDate>
         | 
| 472 | 
            +
                      <ValidFromDate>01.05.2011</ValidFromDate>
         | 
| 473 | 
            +
                      <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 474 | 
            +
                      <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 475 | 
            +
                      <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 476 | 
            +
                      <FlagApd>N</FlagApd>
         | 
| 477 | 
            +
                    </Status>
         | 
| 478 | 
            +
                  </Pack>
         | 
| 479 | 
            +
                </Packs>
         | 
| 480 | 
            +
                <Substances>
         | 
| 481 | 
            +
                  <Substance>
         | 
| 482 | 
            +
                    <DescriptionLa>Levetiracetamum</DescriptionLa>
         | 
| 483 | 
            +
                    <Quantity>250</Quantity>
         | 
| 484 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 485 | 
            +
                  </Substance>
         | 
| 486 | 
            +
                </Substances>
         | 
| 487 | 
            +
                <Limitations />
         | 
| 488 | 
            +
                <ItCodes>
         | 
| 489 | 
            +
                  <ItCode Code="01.">
         | 
| 490 | 
            +
                    <DescriptionDe>NERVENSYSTEM</DescriptionDe>
         | 
| 491 | 
            +
                    <DescriptionFr>SYSTEME NERVEUX</DescriptionFr>
         | 
| 492 | 
            +
                    <DescriptionIt>SYSTEME NERVEUX</DescriptionIt>
         | 
| 493 | 
            +
                    <Limitations />
         | 
| 494 | 
            +
                  </ItCode>
         | 
| 495 | 
            +
                  <ItCode Code="01.07.">
         | 
| 496 | 
            +
                    <DescriptionDe>Antiepileptica</DescriptionDe>
         | 
| 497 | 
            +
                    <DescriptionFr>Antiepileptica</DescriptionFr>
         | 
| 498 | 
            +
                    <DescriptionIt>Antiepileptica</DescriptionIt>
         | 
| 499 | 
            +
                    <Limitations />
         | 
| 500 | 
            +
                  </ItCode>
         | 
| 501 | 
            +
                  <ItCode Code="01.07.10.">
         | 
| 502 | 
            +
                    <DescriptionDe>Einfache Antiepileptica</DescriptionDe>
         | 
| 503 | 
            +
                    <DescriptionFr>Antiépileptiques simples</DescriptionFr>
         | 
| 504 | 
            +
                    <DescriptionIt>Antiépileptiques simples</DescriptionIt>
         | 
| 505 | 
            +
                    <Limitations />
         | 
| 506 | 
            +
                  </ItCode>
         | 
| 507 | 
            +
                </ItCodes>
         | 
| 508 | 
            +
                <Status>
         | 
| 509 | 
            +
                  <IntegrationDate>01.05.2011</IntegrationDate>
         | 
| 510 | 
            +
                  <ValidFromDate>01.05.2011</ValidFromDate>
         | 
| 511 | 
            +
                  <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 512 | 
            +
                  <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 513 | 
            +
                  <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 514 | 
            +
                  <FlagApd>N</FlagApd>
         | 
| 515 | 
            +
                </Status>
         | 
| 516 | 
            +
              </Preparation>
         | 
| 517 | 
            +
              <Preparation ProductCommercial="1208">
         | 
| 518 | 
            +
                <NameDe>Carbaderm</NameDe>
         | 
| 519 | 
            +
                <NameFr>Carbaderm</NameFr>
         | 
| 520 | 
            +
                <NameIt>Carbaderm</NameIt>
         | 
| 521 | 
            +
                <DescriptionDe>Creme </DescriptionDe>
         | 
| 522 | 
            +
                <DescriptionFr>crème </DescriptionFr>
         | 
| 523 | 
            +
                <DescriptionIt>crème </DescriptionIt>
         | 
| 524 | 
            +
                <AtcCode>D02AE01</AtcCode>
         | 
| 525 | 
            +
                <SwissmedicNo5>40333</SwissmedicNo5>
         | 
| 526 | 
            +
                <FlagItLimitation>Y</FlagItLimitation>
         | 
| 527 | 
            +
                <OrgGenCode />
         | 
| 528 | 
            +
                <FlagSB20>N</FlagSB20>
         | 
| 529 | 
            +
                <CommentDe />
         | 
| 530 | 
            +
                <CommentFr />
         | 
| 531 | 
            +
                <CommentIt />
         | 
| 532 | 
            +
                <VatInEXF>N</VatInEXF>
         | 
| 533 | 
            +
                <Packs>
         | 
| 534 | 
            +
                  <Pack ProductKey="1208" Pharmacode="3603779" PackId="16527">
         | 
| 535 | 
            +
                    <DescriptionDe>Tb 300 ml</DescriptionDe>
         | 
| 536 | 
            +
                    <DescriptionFr>tb 300 ml</DescriptionFr>
         | 
| 537 | 
            +
                    <DescriptionIt>tb 300 ml</DescriptionIt>
         | 
| 538 | 
            +
                    <SwissmedicCategory>D</SwissmedicCategory>
         | 
| 539 | 
            +
                    <SwissmedicNo8>40333045</SwissmedicNo8>
         | 
| 540 | 
            +
                    <FlagNarcosis>N</FlagNarcosis>
         | 
| 541 | 
            +
                    <FlagModal>Y</FlagModal>
         | 
| 542 | 
            +
                    <BagDossierNo>15482</BagDossierNo>
         | 
| 543 | 
            +
                    <GTIN>7680403330459</GTIN>
         | 
| 544 | 
            +
                    <Limitations>
         | 
| 545 | 
            +
                      <Limitation>
         | 
| 546 | 
            +
                        <LimitationCode>60 PUNKTE</LimitationCode>
         | 
| 547 | 
            +
                        <LimitationType>PKT</LimitationType>
         | 
| 548 | 
            +
                        <LimitationNiveau>P</LimitationNiveau>
         | 
| 549 | 
            +
                        <DescriptionDe>Gesamthaft zugelassen: 60 Punkte.</DescriptionDe>
         | 
| 550 | 
            +
                        <DescriptionFr>Prescription limitée au maximum à: 60 points.</DescriptionFr>
         | 
| 551 | 
            +
                        <DescriptionIt>Ammessi in totale: 60 punti.</DescriptionIt>
         | 
| 552 | 
            +
                        <ValidFromDate>01.09.2007</ValidFromDate>
         | 
| 553 | 
            +
                        <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 554 | 
            +
                      </Limitation>
         | 
| 555 | 
            +
                    </Limitations>
         | 
| 556 | 
            +
                    <PointLimitations>
         | 
| 557 | 
            +
                      <PointLimitation>
         | 
| 558 | 
            +
                        <Points>50</Points>
         | 
| 559 | 
            +
                        <ValidFromDate>01.01.1955</ValidFromDate>
         | 
| 560 | 
            +
                        <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 561 | 
            +
                      </PointLimitation>
         | 
| 562 | 
            +
                    </PointLimitations>
         | 
| 563 | 
            +
                    <Prices>
         | 
| 564 | 
            +
                      <ExFactoryPrice>
         | 
| 565 | 
            +
                        <Price>14.61</Price>
         | 
| 566 | 
            +
                        <ValidFromDate>01.11.2013</ValidFromDate>
         | 
| 567 | 
            +
                        <DivisionDescription />
         | 
| 568 | 
            +
                        <PriceTypeCode>PEXF</PriceTypeCode>
         | 
| 569 | 
            +
                        <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
         | 
| 570 | 
            +
                        <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
         | 
| 571 | 
            +
                        <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
         | 
| 572 | 
            +
                        <PriceChangeTypeCode>AUSLANDPV</PriceChangeTypeCode>
         | 
| 573 | 
            +
                        <PriceChangeTypeDescriptionDe>Auslandspreisvergleich</PriceChangeTypeDescriptionDe>
         | 
| 574 | 
            +
                        <PriceChangeTypeDescriptionFr>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionFr>
         | 
| 575 | 
            +
                        <PriceChangeTypeDescriptionIt>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionIt>
         | 
| 576 | 
            +
                      </ExFactoryPrice>
         | 
| 577 | 
            +
                      <PublicPrice>
         | 
| 578 | 
            +
                        <Price>26.95</Price>
         | 
| 579 | 
            +
                        <ValidFromDate>01.11.2013</ValidFromDate>
         | 
| 580 | 
            +
                        <DivisionDescription />
         | 
| 581 | 
            +
                        <PriceTypeCode>PPUB</PriceTypeCode>
         | 
| 582 | 
            +
                        <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
         | 
| 583 | 
            +
                        <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
         | 
| 584 | 
            +
                        <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
         | 
| 585 | 
            +
                        <PriceChangeTypeCode>AUSLANDPV</PriceChangeTypeCode>
         | 
| 586 | 
            +
                        <PriceChangeTypeDescriptionDe>Auslandspreisvergleich</PriceChangeTypeDescriptionDe>
         | 
| 587 | 
            +
                        <PriceChangeTypeDescriptionFr>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionFr>
         | 
| 588 | 
            +
                        <PriceChangeTypeDescriptionIt>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionIt>
         | 
| 589 | 
            +
                      </PublicPrice>
         | 
| 590 | 
            +
                    </Prices>
         | 
| 591 | 
            +
                    <Partners>
         | 
| 592 | 
            +
                      <Partner>
         | 
| 593 | 
            +
                        <PartnerType>V</PartnerType>
         | 
| 594 | 
            +
                        <Description>Gebro Pharma AG</Description>
         | 
| 595 | 
            +
                        <Street>Gestadeckplatz 2</Street>
         | 
| 596 | 
            +
                        <ZipCode>4410</ZipCode>
         | 
| 597 | 
            +
                        <Place>Liestal</Place>
         | 
| 598 | 
            +
                        <Phone>+41619268833</Phone>
         | 
| 599 | 
            +
                      </Partner>
         | 
| 600 | 
            +
                    </Partners>
         | 
| 601 | 
            +
                    <Status>
         | 
| 602 | 
            +
                      <IntegrationDate>15.03.1989</IntegrationDate>
         | 
| 603 | 
            +
                      <ValidFromDate>15.03.1989</ValidFromDate>
         | 
| 604 | 
            +
                      <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 605 | 
            +
                      <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 606 | 
            +
                      <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 607 | 
            +
                      <FlagApd>N</FlagApd>
         | 
| 608 | 
            +
                    </Status>
         | 
| 609 | 
            +
                  </Pack>
         | 
| 610 | 
            +
                </Packs>
         | 
| 611 | 
            +
                <Substances>
         | 
| 612 | 
            +
                  <Substance>
         | 
| 613 | 
            +
                    <DescriptionLa>Ureum</DescriptionLa>
         | 
| 614 | 
            +
                    <Quantity>100</Quantity>
         | 
| 615 | 
            +
                    <QuantityUnit>mg</QuantityUnit>
         | 
| 616 | 
            +
                  </Substance>
         | 
| 617 | 
            +
                </Substances>
         | 
| 618 | 
            +
                <Limitations />
         | 
| 619 | 
            +
                <ItCodes>
         | 
| 620 | 
            +
                  <ItCode Code="10.">
         | 
| 621 | 
            +
                    <DescriptionDe>DERMATOLOGICA</DescriptionDe>
         | 
| 622 | 
            +
                    <DescriptionFr>DERMATOLOGICA</DescriptionFr>
         | 
| 623 | 
            +
                    <DescriptionIt>DERMATOLOGICI </DescriptionIt>
         | 
| 624 | 
            +
                    <Limitations />
         | 
| 625 | 
            +
                  </ItCode>
         | 
| 626 | 
            +
                  <ItCode Code="10.07.">
         | 
| 627 | 
            +
                    <DescriptionDe>Keratolytica</DescriptionDe>
         | 
| 628 | 
            +
                    <DescriptionFr>Keratolytica</DescriptionFr>
         | 
| 629 | 
            +
                    <DescriptionIt>Cheratolitici</DescriptionIt>
         | 
| 630 | 
            +
                    <Limitations />
         | 
| 631 | 
            +
                  </ItCode>
         | 
| 632 | 
            +
                </ItCodes>
         | 
| 633 | 
            +
                <Status>
         | 
| 634 | 
            +
                  <IntegrationDate>15.03.1989</IntegrationDate>
         | 
| 635 | 
            +
                  <ValidFromDate>15.03.1989</ValidFromDate>
         | 
| 636 | 
            +
                  <ValidThruDate>31.12.9999</ValidThruDate>
         | 
| 637 | 
            +
                  <StatusTypeCodeSl>0</StatusTypeCodeSl>
         | 
| 638 | 
            +
                  <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
         | 
| 639 | 
            +
                  <FlagApd>N</FlagApd>
         | 
| 640 | 
            +
                </Status>
         | 
| 641 | 
            +
              </Preparation>
         | 
| 642 | 
            +
            </Preparations>
         |