The following has evaluated to null or missing: ==> dms [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 330, column 22] ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #if dms.getData()?has_content [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 330, column 17] ----
1<#include d3_macros/>
2<#assign JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")>
3<#assign d3DonorCompensationLocalService = serviceLocator.findService("com.grifols.d3.donor.compensation.service.DonorCompensationLocalService") />
4<#assign portalURL=themeDisplay.getPortalURL()>
5<#assign portalLanguage=themeDisplay.getLanguageId()[0..1]>
6
7<#assign centerImage="">
8<#assign centerImageAltText="">
9<#assign centerInformationDescription = ""/>
10
11<#assign sharedDescriptionContent="">
12<#assign sharedDescriptionArticle = JournalArticleLocalService.getLatestArticleByUrlTitle(scopeGroupId, "center-details-shared-description", 0)>
13
14<#if sharedDescriptionArticle??>
15 <#assign sharedDescriptionContent = JournalArticleLocalService.getArticleContent(scopeGroupId, sharedDescriptionArticle.getArticleId(), "", locale, objThemeDisplay)>
16
17 <#if sharedDescriptionContent?has_content && sharedDescriptionContent?trim?index_of("{") == 0>
18 <#assign shared_description = jsonFactoryUtil.createJSONObject(sharedDescriptionContent?trim)>
19
20 <#if shared_description??>
21 <#if shared_description.getJSONObject("center_image")?has_content>
22 <#assign centerImageContent = shared_description.getJSONObject("center_image")>
23 <#if centerImageContent.getString("content")?has_content >
24 <#assign centerImage = centerImageContent.getString("content")>
25 </#if>
26
27 <#if centerImageContent.getString("alt_text")?has_content >
28 <#assign centerImageAltText = centerImageContent.getString("alt_text")>
29 </#if>
30 </#if>
31
32 <#if shared_description.getJSONObject("center_ammenities")?has_content>
33 <#assign centerAmmenitiesContent = shared_description.getJSONObject("center_ammenities")>
34 <#if centerAmmenitiesContent.getString("title")?has_content >
35 <#assign centerAmmenitiesTitle = centerAmmenitiesContent.getString("title")>
36 </#if>
37
38 <#if centerAmmenitiesContent.getString("description")?has_content >
39 <#assign centerAmmenitiesDescription = centerAmmenitiesContent.getString("description")>
40 </#if>
41
42 <#if centerAmmenitiesContent.getJSONArray("ammenities")?has_content && centerAmmenitiesContent.getJSONArray("ammenities")?is_hash>
43 <#assign centerAmmenitiesList = centerAmmenitiesContent.getJSONArray("ammenities")>
44 </#if>
45 </#if>
46
47 <#if shared_description.getJSONObject("donation_requirements")?has_content>
48 <#assign donationRequirementsContent = shared_description.getJSONObject("donation_requirements")>
49 <#if donationRequirementsContent.getString("title")?has_content >
50 <#assign donationRequirementsTitle = donationRequirementsContent.getString("title")>
51 </#if>
52
53 <#if donationRequirementsContent.getJSONArray("requirements")?has_content && donationRequirementsContent.getJSONArray("requirements")?is_hash>
54 <#assign donationRequirementsList = donationRequirementsContent.getJSONArray("requirements")>
55 </#if>
56 </#if>
57
58 <#if shared_description.getJSONObject("steps_to_donate")?has_content>
59 <#assign stepsToDonateContent = shared_description.getJSONObject("steps_to_donate")>
60 <#if stepsToDonateContent.getString("title")?has_content >
61 <#assign stepsToDonateTitle = stepsToDonateContent.getString("title")>
62 </#if>
63
64 <#if stepsToDonateContent.getJSONArray("steps")?has_content && stepsToDonateContent.getJSONArray("steps")?is_hash>
65 <#assign stepsToDonateList = stepsToDonateContent.getJSONArray("steps")>
66 </#if>
67 </#if>
68
69 <#if shared_description.getJSONObject("center_information")?has_content>
70 <#assign centerInformationContent = shared_description.getJSONObject("center_information")>
71 <#if centerInformationContent.getString("title")?has_content >
72 <#assign centerInformationTitle = centerInformationContent.getString("title")>
73 </#if>
74
75 <#if centerInformationContent.getString("default_description")?has_content >
76 <#assign centerInformationDescription = centerInformationContent.getString("default_description")>
77 </#if>
78 </#if>
79
80 <#if shared_description.getJSONObject("specialty_programs")?has_content>
81 <#assign specialtyProgramsContent = shared_description.getJSONObject("specialty_programs")>
82 <#if specialtyProgramsContent.getString("title")?has_content >
83 <#assign specialtyProgramsTitle = specialtyProgramsContent.getString("title")>
84 </#if>
85
86 <#if specialtyProgramsContent.getString("description")?has_content >
87 <#assign specialtyProgramsDescription = specialtyProgramsContent.getString("description")>
88 </#if>
89
90 <#if specialtyProgramsContent.getJSONArray("programs")?has_content && specialtyProgramsContent.getJSONArray("programs")?is_hash>
91 <#assign specialtyProgramsList = specialtyProgramsContent.getJSONArray("programs")>
92 </#if>
93 </#if>
94
95 <#if shared_description.getJSONObject("refer_friend")?has_content>
96 <#assign referAFriendContent = shared_description.getJSONObject("refer_friend")>
97 <#if referAFriendContent.getString("title")?has_content >
98 <#assign referFriendTitle = referAFriendContent.getString("title")>
99 </#if>
100 <#if referAFriendContent.getString("image")?has_content >
101 <#assign referAFriendImage = referAFriendContent.getString("image")>
102 </#if>
103 </#if>
104
105 <#if shared_description.getJSONObject("refer_friend")?has_content>
106 <#assign referAFriendContent = shared_description.getJSONObject("refer_friend")>
107 <#if referAFriendContent.getString("title")?has_content >
108 <#assign referFriendTitle = referAFriendContent.getString("title")>
109 </#if>
110 <#if referAFriendContent.getString("image")?has_content >
111 <#assign referAFriendImage = referAFriendContent.getString("image")>
112 </#if>
113 </#if>
114
115 <#if shared_description.getString("donor_compensation_icon")?has_content>
116 <#assign donorCompensationImage = shared_description.getString("donor_compensation_icon")>
117 </#if>
118 </#if>
119 </#if>
120</#if>
121
122
123<#assign centerName = ""/>
124<#if main_title?? && main_title.getData()?has_content>
125 <#assign centerName = main_title.getData()/>
126</#if>
127
128<#if center_name?? && center_name.getData()?has_content>
129 <#assign centerName = center_name.getData()/>
130</#if>
131
132<#assign centerLogo = ""/>
133<#if picture?? && picture.getData()?has_content>
134 <#assign centerLogo = picture.getData()/>
135</#if>
136
137<#assign centerState = ""/>
138<#if state?? && state.getData()?has_content>
139 <#assign centerState = state.getData()/>
140</#if>
141
142<#assign centerAddress = ""/>
143<#if address?? && address.getData()?has_content>
144 <#assign centerAddress = address.getData()/>
145</#if>
146
147<#assign centerCity = ""/>
148<#if city?? && city.getData()?has_content>
149 <#assign centerCity = city.getData()/>
150</#if>
151
152<#assign centerZipCode = ""/>
153<#if zipcode?? && zipcode.getData()?has_content>
154 <#assign centerZipCode = zipcode.getData()/>
155</#if>
156
157<#assign centerPhone = ""/>
158<#if phone?? && phone.getData()?has_content>
159 <#assign centerPhone = phone.getData()/>
160</#if>
161
162<#if center_image?? && center_image.getData()?has_content>
163 <#assign centerImage = center_image.getData()/>
164</#if>
165
166<#if information?? && information.getData()?has_content>
167 <#assign centerInformationDescription = information.getData()/>
168</#if>
169
170<#assign centerAddress = ""/>
171<#if address?? && address.getData()?has_content>
172 <#assign centerAddress = address.getData()/>
173</#if>
174
175
176<#assign centerDMS = ""/>
177<#if dms?? && dms.getData()!=''>
178 <#assign centerDMS = dms.getData()>
179</#if>
180
181<#assign hoursMicrodata = "" />
182
183<div class="d3-detail-page" style="padding: 0">
184 <div class="d3-promotional-block">
185 <div class="promotional-text on-left">
186 <div class="container">
187 <div class="d3-col-xs-6 d3-col-md-10">
188 <#if centerLogo != "">
189 <img
190 alt="Grifols Center Logo"
191 src="${centerLogo}"
192 />
193 </#if>
194
195 <#assign centerNameState = ""/>
196 <#if centerName != "">
197 <#assign centerNameState = centerName/>
198
199 <#if centerState != "">
200 <#assign centerNameState += (", " + centerState)/>
201 </#if>
202 </#if>
203
204 <#if centerNameState != "">
205 <h1>
206 ${centerNameState}
207 </h1>
208 </#if>
209
210 <#if centerAddress != "" || centerPhone != "" >
211 <p>
212 <#if centerAddress != "">
213 ${centerAddress} <br />
214
215 <#if centerCity != "">
216 ${centerCity}
217 </#if>
218
219 <#if centerState != "">
220 ${centerState}
221 </#if>
222
223 <#if centerZipCode != "">
224 ${centerZipCode}
225 </#if>
226 </#if>
227
228 <#if centerPhone != "">
229 <br />${centerPhone}
230 </#if>
231 </p>
232 </#if>
233
234 <div class="button-row">
235 <#if schedule_a_visit?? && schedule_a_visit.getData()?has_content>
236 <#if centerDMS != "" && portalLanguage?? && portalLanguage?has_content>
237 <#assign appointmentURL = "https://new.grifolsplasmadonorhub.com/guest/schedule-donation?centerCode=" + centerDMS + "&lang=" + portalLanguage />
238 </#if>
239
240 <#if appointmentURL?? && appointmentURL?has_content>
241 <a
242 class="btn btn-primary btn-icon--left"
243 href="${appointmentURL}"
244 target="_blank"
245 >
246 <i class="ph-bold ph-calendar"></i>
247 <@liferay.language key="com.grifols.d3.schedule-appointment"/>
248 </a>
249 </#if>
250 </#if>
251
252 <#assign googleMapsURL = ""/>
253 <#if driving_directions?? && driving_directions.getData()?has_content>
254 <#assign googleMapsURL = driving_directions.getData()/>
255 <#else>
256 <#if centerAddress != "" && centerCity != "" && centerState != "" && centerZipCode != "" >
257 <#assign googleMapsURL = centerAddress + "," + centerCity + "," + centerState + "," + centerZipCode/>
258 <#assign googleMapsURL = htmlUtil.escapeURL( googleMapsURL)/>
259 <#assign googleMapsURL = "http://maps.google.com?q=" + googleMapsURL/>
260 </#if>
261 </#if>
262
263 <#if googleMapsURL != "">
264 <a
265 class="btn btn-secondary btn-icon--left"
266 href="${googleMapsURL}"
267 target="_blank"
268 >
269 <i class="ph-bold ph-traffic-sign"></i>
270 <@liferay.language key="com.grifols.d3.driving-directions"/>
271 </a>
272 </#if>
273 </div>
274 </div>
275 </div>
276 </div>
277
278
279 <div class="promotional-image aspect-ratio-bg-center aspect-ratio-bg-cover d3-xs-hide" title="${centerName}"> </div>
280 <div class="promotional-image aspect-ratio aspect-ratio-8-to-5 aspect-ratio-bg-center aspect-ratio-bg-cover d3-md-hide" title="${centerName}"> </div>
281 </div>
282
283 <div class="d3-component container">
284 <div class="row">
285 <div class="d3-col-xs-6 d3-col-md-6">
286 <#if centerDMS != "">
287 <#assign curDonorCompensation = d3DonorCompensationLocalService.getDonorCompensationByDMS(centerDMS)/>
288
289 <#assign dcTextModel = ""/>
290 <#if locale = "en_US">
291 <#assign dcTextModel = curDonorCompensation.compensationMessageEN/>
292 <#elseif locale = "es_ES">
293 <#assign dcTextModel = curDonorCompensation.compensationMessageES/>
294 </#if>
295
296 <#if dcTextModel != "">
297 <div class="d3-description">
298 <h3><@liferay.language key='com.grifols.d3.new-donor-compensation' />*</h3>
299 <div class="donor-compensation-icons">
300 <#if referAFriendImage??>
301 <img
302 alt="${referFriendTitle}"
303 src="${referAFriendImage}"
304 />
305 </#if>
306 <div>
307 <p>${dcTextModel}</p>
308 <p class="text-caption">*<@liferay.language key='com.grifols.d3.compensation-amounts-subject-change' /></p>
309 </div>
310 </div>
311 </div>
312 </#if>
313
314 <#if referFriendTitle??>
315 <div class="donor-compensation-icons">
316 <#if donorCompensationImage??>
317 <img
318 alt="${donorCompensationIcon}"
319 src="${donorCompensationImage}"
320 />
321 </#if>
322 <div>
323 <p class="text-bold">${referFriendTitle}</p>
324 <p class="text-caption">*<@liferay.language key='com.grifols.d3.compensation-amounts-subject-change' /></p>
325 </div>
326 </div>
327 </#if>
328 </#if>
329
330 <#if dms.getData()?has_content >
331 <#if themeDisplay.getPortletDisplay().getPortletName() == "preview" >
332 <#assign centerOperationHours = plasmaUtils.getHoursToShow( locale, dms.getData(), true)/>
333 <#else>
334 <#assign centerOperationHours = plasmaUtils.getHoursToShow( locale, dms.getData(), false)/>
335 </#if>
336
337 <#if centerOperationHours != "" >
338 <#assign hoursMicrodata = plasmaUtils.getHoursMicrodata(dms.getData()) />
339 <div class="d3-description">
340 <h3><@liferay.language key='com.grifols.plasma.hours' /></h3>
341 ${centerOperationHours}
342 </div>
343 </#if>
344 </#if>
345 </div>
346 <div class="d3-col-xs-6 d3-col-md-6">
347 <#if (covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true')
348 || (childcare?? && childcare.getData()?? && childcare.getData() == 'true')
349 || (appointments?? && appointments.getData()?? && appointments.getData() == 'true')
350 || (ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true')
351 || (inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true')
352 || (bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true')
353 || (paysign?? && paysign.getData()?? && paysign.getData() == 'true')
354 || (donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true')
355 >
356
357 <div class="d3-description">
358 <#if centerAmmenitiesTitle??>
359 <h3>${centerAmmenitiesTitle}</h3>
360 </#if>
361
362 <div class="center-ammenities-container">
363 <#list 0..<centerAmmenitiesList.length() as center_ammenities_index>
364 <#if centerAmmenitiesList.getJSONObject(center_ammenities_index)??>
365 <#assign cur_ammenity = centerAmmenitiesList.getJSONObject(center_ammenities_index)>
366 <#if cur_ammenity.getString("id_name")?? && cur_ammenity.getString("id_name")?has_content>
367 <#assign cur_ammenity_id_name = cur_ammenity.getString("id_name")>
368
369 <#if (cur_ammenity_id_name = 'covid-convalescent' && covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true')
370 || (cur_ammenity_id_name = 'childcare' && childcare?? && childcare.getData()?? && childcare.getData() == 'true')
371 || (cur_ammenity_id_name = 'appointments' && appointments?? && appointments.getData()?? && appointments.getData() == 'true')
372 || (cur_ammenity_id_name = 'own-building' && ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true')
373 || (cur_ammenity_id_name = 'in-shopping-center' && inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true')
374 || (cur_ammenity_id_name = 'bank-of-america' && bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true')
375 || (cur_ammenity_id_name = 'paysign' && paysign?? && paysign.getData()?? && paysign.getData() == 'true')
376 || (cur_ammenity_id_name = 'donorhub' && donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true')
377 >
378 <div class="specialty-programs-icons">
379 <#assign cur_ammenity_name = cur_ammenity.getString("name")>
380
381 <#if cur_ammenity.getString("icon")?? && cur_ammenity.getString("icon")?has_content && cur_ammenity_id_name != 'donorhub'>
382 <#assign card_icon = getPhosphorIcon(cur_ammenity.getString("icon")) />
383 <div class="circle">
384 <i class="d3-icon ${card_icon}"></i>
385 </div>
386 </#if>
387
388 <#if cur_ammenity_id_name = 'donorhub'>
389 <img
390 alt="${cur_ammenity_id_name}"
391 src="${portalURL}/documents/1088990/1092005/donorhub-avatar.png/c2cbf871-138e-495c-bda4-24ba8852036a?t=1719494894109"
392 />
393
394
395 <#assign donorhubURL = "https://new.grifolsplasmadonorhub.com" />
396 <a
397 href="${donorhubURL}" target="_blank"
398 >
399 ${cur_ammenity_name}
400 </a>
401 <#else>
402 <p>${cur_ammenity_name}</p>
403 </#if>
404
405 </div>
406 </#if>
407 </#if>
408 </#if>
409 </#list>
410
411 <#if (antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true')
412 || (rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true')
413 || (tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true')
414 || (hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true')
415 || (rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true')
416 || (male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true')
417 >
418 <#list 0..<specialtyProgramsList.length() as specialty_programs_index>
419 <#if specialtyProgramsList.getJSONObject(specialty_programs_index)??>
420 <#assign cur_specialty_program = specialtyProgramsList.getJSONObject(specialty_programs_index)>
421 <#if cur_specialty_program.getString("id_name")?? && cur_specialty_program.getString("id_name")?has_content>
422 <#assign cur_specialty_program_id_name = cur_specialty_program.getString("id_name")>
423
424 <#if (cur_specialty_program_id_name == 'anti-d-program' && antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true')
425 || (cur_specialty_program_id_name == 'anti-rabies-program' && rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true')
426 || (cur_specialty_program_id_name == 'anti-tetanus-program' && tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true')
427 || (cur_specialty_program_id_name == 'anti-hepatitis-B-program' && hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true')
428 || (cur_specialty_program_id_name == 'anti-rsv-program' && rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true')
429 || (cur_specialty_program_id_name == 'male-ab-program' && male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true')
430 >
431 <div class="specialty-programs-icons">
432 <#assign cur_specialty_program_id = cur_specialty_program.getString("id_name")>
433 <#assign cur_specialty_program_name = cur_specialty_program.getString("name")>
434
435 <#if cur_specialty_program.getString("icon")?? && cur_specialty_program.getString("icon")?has_content>
436 <#assign cur_specialty_program_icon = cur_specialty_program.getString("icon")>
437 <img
438 alt="${cur_specialty_program_name}"
439 src="${cur_specialty_program_icon}"
440 />
441 </#if>
442
443 <#assign cur_specialty_url = "/en/experienced-donor/specialty-plasma-programs">
444
445 <#if cur_specialty_program_id = "anti-d-program" || cur_specialty_program_id = "anti-hepatitis-B-program" >
446 <#assign cur_specialty_url = cur_specialty_url + "#anti-B-D">
447 <#elseif cur_specialty_program_id = "anti-tetanus-program" || cur_specialty_program_id = "anti-rabies-program" >
448 <#assign cur_specialty_url = cur_specialty_url + "#anti-tetanus-rabies">
449 <#elseif cur_specialty_program_id = "anti-rsv-program" || cur_specialty_program_id = "male-ab-program" >
450 <#assign cur_specialty_url = cur_specialty_url + "#anti-rsv-ab">
451 </#if>
452
453 <a href="${cur_specialty_url}">${cur_specialty_program_name}</a>
454 </div>
455 </#if>
456 </#if>
457 </#if>
458 </#list>
459 </#if>
460 </div>
461 </div>
462 </#if>
463
464 <#if donationRequirementsList??>
465 <div class="d3-description">
466 <#if donationRequirementsTitle??>
467 <h3>${donationRequirementsTitle}</h3>
468 </#if>
469
470 <p>
471 <#list 0..<donationRequirementsList.length() as donation_requirements_index>
472 <#if donationRequirementsList.getJSONObject(donation_requirements_index)??>
473 <#assign cur_requirement = donationRequirementsList.getJSONObject(donation_requirements_index)>
474 <#if cur_requirement.getString("description")?? && cur_requirement.getString("description")?has_content>
475 <strong>${donation_requirements_index + 1}. </strong>${cur_requirement.getString("description")}<br/>
476 </#if>
477 </#if>
478 </#list>
479 </p>
480 </div>
481 </#if>
482 </div>
483 </div>
484 </div>
485
486 <#if stepsToDonateList??>
487 <div style="text-align: center">
488 <div class="d3-info-card row-4">
489 <div class="container">
490 <#if stepsToDonateTitle??>
491 <div class="d3-row text-content d3-introduction align-center">
492 <h2>${stepsToDonateTitle}</h2>
493 </div>
494 </#if>
495
496 <div class="d3-content-grid" style="justify-content: center">
497 <#list 0..<stepsToDonateList.length() as steps_to_donate_index>
498 <#if stepsToDonateList.getJSONObject(steps_to_donate_index)??>
499 <#assign cur_step = stepsToDonateList.getJSONObject(steps_to_donate_index)>
500 <#if (cur_step.getString("description")?? && cur_step.getString("description")?has_content)
501 || cur_step.getString("image")?? && cur_step.getString("image")?has_content>
502 <div class="d3-col-xs-6 d3-col-sm-3 d3-col-md-2">
503 <div class="d3-card-ghost item-1">
504 <div class="card-content">
505 <#if cur_step.getString("image")?? && cur_step.getString("image")?has_content>
506 <img
507 src="${cur_step.getString("image")}"
508 />
509 </#if>
510
511 <#if cur_step.getString("description")?? && cur_step.getString("description")?has_content>
512 <strong class="text-lg">
513 ${steps_to_donate_index + 1}. ${cur_step.getString("description")}
514 </strong>
515 </#if>
516 </div>
517 </div>
518 </div>
519 </#if>
520 </#if>
521 </#list>
522 </div>
523 </div>
524 </div>
525 </div>
526 </#if>
527
528
529 <#if centerInformationDescription??>
530 <div class="d3-component">
531 <div class="container">
532 <div class="d3-col-xs-6 d3-col-md-10 d3-offset-md-1">
533 <#if centerInformationTitle??>
534 <h3>${centerInformationTitle}</h3>
535 </#if>
536 <div>${centerInformationDescription
537 ?replace("CENTER_COMPANY","${centerName}")
538 ?replace("CENTER_CITY","${centerCity}")
539 ?replace("CENTER_STATE","${centerState}")}</div>
540 </div>
541 </div>
542 </div>
543 </#if>
544</div>
545
546<style>
547 .journal-content-article .promotional-image {
548 background-image: url("${centerImage}");
549 }
550
551 .d3-description .hours {
552 display: flex;
553 }
554
555 .d3-description .hours .day-name{
556 width: 50%;
557 }
558
559 .center-ammenities-container {
560 display: flex;
561 flex-wrap: wrap;
562 }
563
564 .specialty-programs-icons {
565 display: flex;
566 flex-direction: row;
567 align-items: center;
568 gap: 16px;
569 padding-bottom: 16px;
570 width: 100%;
571 }
572
573 .donor-compensation-icons img {
574 height: 40px;
575 }
576
577 .donor-compensation-icons {
578 display: flex;
579 flex-direction: row;
580 align-items: center;
581 gap: 16px;
582 padding-bottom: 16px;
583 width: 100%;
584 }
585
586 .specialty-programs-icons img {
587 height: 32px;
588 }
589
590 .specialty-programs-icons .circle {
591 display: flex;
592 align-items: center;
593 background-color: #d4e4f4;
594 color: #002969;
595 border-radius: 100%;
596 justify-content: center;
597 width: 32px;
598 height: 32px;
599 }
600
601 .specialty-programs-icons .circle .d3-icon {
602 font-size: 16px;
603 }
604
605 @media screen and ( min-width: 600px )
606 {
607 .specialty-programs-icons {
608 width: 50%;
609 }
610
611
612</style>
613
614<script type="application/ld+json">
615 <#assign portalURL=themeDisplay.getPortalURL()>
616
617 {
618 "@context": "https://schema.org",
619 "@type": "LocalBusiness",
620 "logo": "${portalURL}${centerLogo}",
621 "name": "${centerName}",
622 "photo": "${portalURL}${centerImage}",
623 "address": {
624 "@type": "PostalAddress",
625 "addressLocality": "${centerCity}",
626 "addressRegion": "${centerState}",
627 "postalCode": "${centerZipCode}",
628 "streetAddress": "${address.getData()}",
629 "addressCountry": "US"
630 },
631 "telephone": "${centerPhone}",
632 "description": "${centerInformationDescription?json_string}",
633 "hasMap": "${googleMapsURL}",
634
635 <#if x_coordinate?? && x_coordinate.getData()?has_content && y_coordinate??
636 && y_coordinate.getData()?has_content>
637 "geo": {
638 "@type": "GeoCoordinates",
639 "latitude": "${x_coordinate.getData()}",
640 "longitude": "${y_coordinate.getData()}"
641 },
642 </#if>
643 <#if hoursMicrodata != "">
644 ${hoursMicrodata?remove_beginning("{")?remove_ending("}")}
645 </#if>
646 }
647</script>

Biomat USA, Inc.
Lewiston, ME 04240
207-783-3230

Biomat USA, Inc.
Fall River, MA 02721
508-675-4945

Biomat USA, Inc.
Cranston, RI 02920
401-944-2523

Biomat USA, Inc.
Worcester, MA 01604
508-793-2905

Biomat USA, Inc.
Stamford, CT 06906
(475) 292-1823

Biomat USA, Inc.
Fairless Hills, PA 19030
215-945-3250

Biomat USA, Inc.
Norfolk, VA 23502
757-455-6409

Grifols
Allentown, PA 18103
610-798-4887

PlasmaCare, Inc.
Portsmouth, VA 23704
757-393-1200

Biomat USA, Inc.
Hampton, VA 23666
757-726-0501

Biomat USA, Inc.
Dickson City, PA 18519
570-383-5341

Biomat USA, Inc.
Newport News, VA 23608
757-989-5209

Biomat USA, Inc.
Reading, PA 19601
610-685-5060

Interstate Blood Bank, Inc.
Wilkes Barre, PA 18706
570-823-4119

Grifols
Lancaster, PA 17601
717-553-1489

Biomat USA, Inc.
Jacksonville, NC 28546
910-353-4888

Biomat USA, Inc.
Jacksonville, NC 28540
910-463-2603

Biomat USA, Inc.
Greenville, NC 27834
252-214-6646

Biomat USA, Inc.
Wilmington, NC 28404
910-632-2863

Biomat USA, Inc.
Richmond, VA 23231
804-236-2301

Grifols
Goldsboro, NC 27534
919-751-4730

Grifols
Williamsport, PA 17701
570-666-9290

Biomat USA, Inc.
Frederick, MD 21702
301-360-2400

Grifols
Myrtle Beach, SC 29577
843-445-2579

Talecris Plasma Resources, Inc.
Raleigh, NC 27603
919-779-4749

Talecris Plasma Resources, Inc.
Fayetteville, NC 28303
910-323-4154

Talecris Plasma Resources, Inc.
Fayetteville, NC 28303
910-867-9915

Grifols
Fayetteville, NC 28306
910-221-0075

Talecris Plasma Resources, Inc.
Fayetteville, NC 28314
910-867-4431

Biomat USA, Inc.
Hollywood, FL 33024
954-987-6240

Biomat USA, Inc.
Royal Palm Beach, FL 33411
561-791-9122

Biomat USA, Inc.
Danville, VA 24541
434-791-0326

Biomat USA, Inc.
Melbourne, FL 32934
321-255-7466

Grifols
Sumter, SC 29150
803-305-4162

Talecris Plasma Resources, Inc.
Roanoke, VA 24014
540-344-3247

Biomat USA, Inc.
Winston-Salem, NC 27127
(336) 722-8206

Biomat USA, Inc.
Pittsburgh, PA 15235
412-793-0150

Biomat USA, Inc.
Orlando, FL 32826
407-207-1932

Talecris Plasma Resources, Inc.
Kannapolis, NC 28083
704-933-1300

Biomat USA, Inc.
DeLand, FL 32724
386 736-3385

Grifols
Pittsburgh, PA 15233
412-322-1909

Biomat USA, Inc.
Kissimmee, FL 34744
321-337-0500

Biomat USA, Inc.
Altamonte Springs, FL 32701
407-628-4248

Biomat USA, Inc.
Orlando, FL 32809
407-816-8378

Biomat USA, Inc.
Savannah, GA 31406
912-927-4005

Talecris Plasma Resources, Inc.
Charlotte, NC 28204
704-372-1644

Talecris Plasma Resources, Inc.
Charlotte, NC 28208
704-392-6500

Talecris Plasma Resources, Inc.
Jacksonville, FL 32233
904-241-6376

Grifols
Rock Hill, SC 29732
(803) 526-7300

Biomat USA, Inc.
Erie, PA 16506
814-835-6826

Biomat USA, Inc.
Fort Myers, FL 33966
239-332-0500

Grifols
Winter Haven, FL 33880
863-656-7626

Grifols
Gastonia, NC 28054
(704) 691-3287

Biomat USA, Inc.
Jacksonville, FL 32218
904-652-0586

Biomat USA, Inc.
Hinesville, GA 31313
912-255-6150

Biomat USA, Inc.
Jacksonville, FL 32210
904-771-6256

Grifols
Statesboro, GA 30458
912-623-0301

Biomat USA, Inc.
Austintown, OH 44515
330-743-1317

Biomat USA, Inc.
Statesboro, GA 30458
912-259-9902

Biomat USA, Inc.
Ocala, FL 34470
352-877-4000

Biomat USA, Inc.
Augusta, GA 30906
706-798-3061

Grifols
Sarasota, FL 34234
941-358-7668

Biomat USA, Inc.
Gainesville, FL 32609
352-378-9431

Talecris Plasma Resources, Inc.
Canton, OH 44709
330-493-1434

Grifols
Greenwood, SC 29646
864-377-8115

Grifols
St. Petersburg, FL 33710
727-284-3500

Biomat USA, Inc.
Clearwater, FL 33764
727-519-0318

Grifols
Cleveland, OH 44110
216-258-0249

PlasmaCare, Inc.
Cleveland, OH 44120
216-258-0249

Grifols
Greenville, SC 29615
864-252-9625

Grifols
Bristol, VA 24201
276-645-6035

Interstate Blood Bank, Inc.
Johnson CIty, TN 37604
423-926-3169

Interstate Blood Bank, Inc.
Asheville, NC 28805
828-252-9967

Grifols
Kingsport, TN 37664
423-246-6035

Biomat USA, Inc.
Clemson, SC 29631
864-633-5023

Biomat USA, Inc.
Lorain, OH 44052
440-282-1081

Biomat USA, Inc.
Valdosta, GA 31601
229-337-8558

Grifols
Mansfield, OH 44906
419-520-9523

Talecris Plasma Resources, Inc.
Port Huron, MI 48060
810-985-5834

Biomat USA, Inc.
Athens, GA 30601
706-354-3898

Biomat USA, Inc.
Whitehall, OH 43213
614-231-5322

Biomat USA, Inc.
Athens, GA 30606
706-715-6628

Biomat USA, Inc.
Macon, GA 31211
478-745-7626

Talecris Plasma Resources, Inc.
Columbus, OH 43204
614-308-7974

Talecris Plasma Resources, Inc.
Albany, GA 31705
229-420-8456

Biomat USA, Inc.
Inkster, MI 48141
313-565-5221

PlasmaCare, Inc.
Farmington Hills, MI 48336
248-957-2227

Grifols
Stonecrest, GA 30038
470-283-1825

Biomat USA, Inc.
Tallahassee, FL 32304
850-222-0195

Interstate Blood Bank, Inc.
Knoxville, TN 37921
865-637-1497

Grifols
Toledo, OH 43605
573-686-0574

Talecris Plasma Resources, Inc.
Toledo, OH 43604
419-244-3910

Biomat USA, Inc.
Norcross, GA 30071
678-495-5801

Biomat USA, Inc.
Bowling Green, OH 43402
419-819-3068

Biomat USA, Inc.
Toledo, OH 43607
419-531-3332

Talecris Plasma Resources, Inc.
Flint, MI 48507
810-743-2025

Talecris Plasma Resources, Inc.
Flint, MI 48507
810-237-1041

Biomat USA, Inc.
Marietta, GA 30067
678-504-7333

Talecris Plasma Resources, Inc.
Flint, MI 48504
810-787-3982

Talecris Plasma Resources, Inc.
Saginaw, MI 48601
989-746-9447

PlasmaCare, Inc.
Cincinnati, OH 45237
513-618-7999

Talecris Plasma Resources, Inc.
Columbus, GA 31903
706-687-1071

Talecris Plasma Resources, Inc.
Phenix City, AL 36867
334-297-5711

Talecris Plasma Resources, Inc.
Lansing, MI 48910
517-272-9044

Grifols
Chattanooga, TN 37411
423-855-1085

Grifols
Dothan, AL 36301
334-651-8000

Talecris Plasma Resources, Inc.
Opelika, AL 36801
334-737-0090

Biomat USA, Inc.
Panama City, FL 32401
850-913-6216

Biomat USA, Inc.
Cookeville, TN 38501
931-854-9454

Biomat USA, Inc.
Battle Creek, MI 49015
269-753-0150

Grifols
Louisville, KY 40219
502-212-2230

Talecris Plasma Resources, Inc.
Louisville, KY 40213
502-968-9264

Talecris Plasma Resources, Inc.
Anderson, IN 46013
765-649-3900

Biomat USA, Inc.
Kalamazoo, MI 49007
269-344-8260

Biomat USA, Inc.
Indianapolis, IN 46226
317-890-8997

Grifols
Indianapolis, IN 46237
317-974-9494

Biomat USA, Inc.
Fort Walton Beach, FL 32547
850-863-1291

Biomat USA, Inc.
Murfreesboro, TN 37129
615-895-2991

Talecris Plasma Resources, Inc.
Indianapolis, IN 46254
317-293-3100

Biomat USA, Inc.
South Bend, IN 46619
574-234-6010

Talecris Plasma Resources, Inc.
Huntsville, AL 35816
256-217-0345

Interstate Blood Bank, Inc.
Muskegon, MI 49441
231-755-0389

Biomat USA, Inc.
Birmingham, AL 35203
205-583-4744

Biomat USA, Inc.
Nashville, TN 37211
615-837-0691

Grifols
Hueytown, AL 35023
205-267-0404

Grifols
Decatur, AL 35601
256-584-9545

Talecris Plasma Resources, Inc.
Pensacola, FL 32507
850-456-0975

Interstate Blood Bank, Inc.
Owensboro, KY 42301
270-685-0068

Biomat USA, Inc.
Clarksville, TN 37042
931-647-5555

Talecris Plasma Resources, Inc.
Tuscaloosa, AL 35401
205-752-1547

PlasmaCare, Inc.
Terre Haute, IN 47807
812-645-0016

Biomat USA, Inc.
Merrillville, IN 46410
219-769-7705

Interstate Blood Bank, Inc.
Griffith, IN 46319
219-513-4222

Biomat USA, Inc.
Chicago, IL 60617
773-374-2449

PlasmaCare, Inc.
Chicago, IL 60652
708-459-9888

Interstate Blood Bank, Inc.
Chicago, IL 60625
773-478-2989

Grifols
Chicago, IL 60634
773-685-2212

Biomat USA, Inc.
Maywood, IL 60153-2257
708-865-1235

Biomat USA, Inc.
Mobile, AL 36693
251-666-3155

Talecris Plasma Resources, Inc.
Waukegan, IL 60085
847-599-9600

PlasmaCare, Inc.
Milwaukee, WI 53233
414-344-2100

Talecris Plasma Resources, Inc.
Milwaukee, WI 53223
414-760-6105

Talecris Plasma Resources, Inc.
Champaign, IL 61821
217-355-9703

Interstate Blood Bank, Inc.
Elgin, IL 60123
847-531-8185

Biomat USA, Inc.
Menasha, WI 54952
920-729-0732

Grifols
Meridian, MS 39301
601-693-5070

Talecris Plasma Resources, Inc.
Rockford, IL 61103
815-633-7125

Biomat USA, Inc.
Carbondale, IL 62901
618-529-3241

Grifols
Hattiesburg, MS 39401
601-620-0908

Interstate Blood Bank, Inc.
Madison, WI 53704
608-240-2785

Interstate Blood Bank, Inc.
Madison, WI 53711
608-416-8131

Grifols
Cape Girardeau, MO 63703

Talecris Plasma Resources, Inc.
Peoria, IL 61604
309-686-0173

Grifols
Memphis, TN 38119
901-560-2750

Interstate Blood Bank, Inc.
Memphis, TN 38122
901-842-5500

Biomat USA, Inc.
New Orleans, LA 70128
504-246-1135

Grifols
Wood River, IL 62095
618-216-7321

Interstate Blood Bank, Inc.
Saint Louis, MO 63108
314-367-5200

Biomat USA, Inc.
Houma, LA 70360
985-868-0319

Biomat USA, Inc.
Baton Rouge, LA 70805
225-354-0965

Biomat USA, Inc.
Iowa City, IA 52240
319-341-8000

Talecris Plasma Resources, Inc.
Lafayette, LA 70501
337-233-6602

Talecris Plasma Resources, Inc.
Monroe, LA 71203
318-345-0051

Interstate Blood Bank, Inc.
Columbia, MO 65201
573-449-3961

Talecris Plasma Resources, Inc.
Little Rock, AR 72204
501-565-6275

Biomat USA, Inc.
Conway, AR 72034
501-499-8698

Talecris Plasma Resources, Inc.
Alexandria, LA 71301
318-484-2029

Talecris Plasma Resources, Inc.
Saint Paul, MN 55119
651-501-0800

Talecris Plasma Resources, Inc.
West Saint Paul, MN 55118
651-455-6111
Biomat USA, Inc.
Russellville, AR 72801
(479) 858-6150

Biomat USA, Inc.
Ames, IA 50010
515-337-1728

Biomat USA, Inc.
Des Moines, IA 50314
515-244-0771

Talecris Plasma Resources, Inc.
Lake Charles, LA 70601
337-491-9475

Talecris Plasma Resources, Inc.
Shreveport, LA 71105
318-861-1466

Biomat USA, Inc.
Bentonville, AR 72712
479-464-0650

Biomat USA, Inc.
Texarkana, TX 75501
903-832-0452.

Biomat USA, Inc.
Independence, MO 64050
816-252-0932

Biomat USA, Inc.
Kansas City, MO 64110
816-361-0612

Biomat USA, Inc.
Fort Smith, AR 72903
479-782-0197

Biomat USA, Inc.
Beaumont, TX 77708
409-291-7753

Interstate Blood Bank, Inc.
Saint Joseph, MO 64506
816-901-9770

Grifols
Nacogdoches, TX 75965
936-585-8819

Grifols
Longview, TX 75602
903-238-8959

Biomat USA, Inc.
Lufkin, TX 75904
936-570-0640

Biomat USA, Inc.
Council Bluffs, IA 51503
712-352-1218

Biomat USA, Inc.
Channelview, TX 77530
281-402-1944

Biomat USA, Inc.
Topeka, KS 66614
785-273-3659

Biomat USA, Inc.
Humble, TX 77338
281-713-5578

Biomat USA, Inc.
Houston, TX 77017
713-943-8828

Talecris Plasma Resources, Inc.
Moorhead, MN 56560
218-287-2700

Biomat USA, Inc.
Houston, TX 77076
281-999-7970

Biomat USA, Inc.
Houston, TX 77018
713-688-3288

Biomat USA, Inc.
Houston, TX 77031
713-484-6899

Biomat USA, Inc.
Brookings, SD 57006
605-691-6214

Talecris Plasma Resources, Inc.
Sioux Falls, SD 57104
605-271-6090

Biomat USA, Inc.
Lincoln, NE 68508
402-474-2335

Biomat USA, Inc.
Vermillion, SD 57069
605-277-1434

Biomat USA, Inc.
College Station, TX 77840
979-268-6050

Biomat USA, Inc.
Bryan, TX 77801
979-846-8855

Biomat USA, Inc.
Dallas, TX 75228
214-321-6777

Biomat USA, Inc.
Garland, TX 75042
972 272-0501

Biomat USA, Inc.
Stillwater, OK 74074
405-743-3012

Biomat USA, Inc.
Lancaster, TX 75146
972-275-0570

Biomat USA, Inc.
Wichita, KS 67202
316-685-5531

Grifols
Wichita, KS 67218
316-201-3449

Biomat USA, Inc.
Carrollton, TX 75006
214-390-0836

Talecris Plasma Resources, Inc.
Dallas, TX 75237
972-572-0334

Biomat USA, Inc.
Arlington, TX 76010
817-461-4764

Biomat USA, Inc.
Midwest City, OK 73110
405-737-2447

Biomat USA, Inc.
Edmond, OK 73034
405-330-7851

Biomat USA, Inc.
Victoria, TX 77901
361-576-9519

Talecris Plasma Resources, Inc.
Oklahoma City, OK 73139
405-634-0220

Biomat USA, Inc.
Fort Worth, TX 76114
817-625-4500

Biomat USA, Inc.
Fort Worth, TX 76107
817-570-9212

Grifols
White Settlement, TX 76108
682-200-4201

Talecris Plasma Resources, Inc.
Corpus Christi, TX 78415
361-855-0310

Grifols
Killeen, TX 76542
254-312-6066

Talecris Plasma Resources, Inc.
Killeen, TX 76541
254-200-1121

Biomat USA, Inc.
Austin, TX 78752
512-371-8892

Grifols
Brownsville, TX 78520
956-574-3200

Biomat USA, Inc.
Austin, TX 78748
512-865-4200

Biomat USA, Inc.
Kearney, NE 68847
308-624-2634

Biomat USA, Inc.
San Marcos, TX 78666
512-392-7570

Biomat USA, Inc.
Lawton, OK 73505
580-248-9769

Biomat USA, Inc.
Wichita Falls, TX 76301
940-763-0300

Grifols
Edinburg, TX 78539
956-380-5036

Biomat USA, Inc.
Edinburg, TX 78539
956-287-0365

Biomat USA, Inc.
Bismarck, ND 58503
701-258-3895

Biomat USA, Inc.
McAllen, TX 78501
956-686-0042

Talecris Plasma Resources, Inc.
McAllen, TX 78501
956-683-1656

Biomat USA, Inc.
San Antonio, TX 78205
210-212-7304

Biomat USA, Inc.
San Antonio, TX 78216
210-224-1749

Talecris Plasma Resources, Inc.
San Antonio, TX 78207
210-212-6226

Biomat USA, Inc.
Mission, TX 78572
956-584-5886

Biomat USA, Inc.
Laredo, TX 78041
956-791-0127

Grifols
Laredo, TX 78040
956-729-7677

Biomat USA, Inc.
Laredo, TX 78040
956-796-0222

Biomat USA, Inc.
San Angelo, TX 76904
325-223-5076

Grifols
Eagle Pass, TX 78852
830-752-6286

Talecris Plasma Resources, Inc.
Eagle Pass, TX 78852
830-757-3010

Talecris Plasma Resources, Inc.
Del Rio, TX 78840
830-775-1663

Talecris Plasma Resources, Inc.
Amarillo, TX 79106
806-355-7373

Grifols
Odessa, TX 79764
432-332-0377

Biomat USA, Inc.
Aurora, CO 80011
303-367-9660

Biomat USA, Inc.
Colorado Springs, CO 80910
719-380-6991

Talecris Plasma Resources, Inc.
Pueblo, CO 81005
719-544-3009

Talecris Plasma Resources, Inc.
Colorado Springs, CO 80909
719-635-5926

Biomat USA, Inc.
Denver, CO 80221
303-427-4059

Talecris Plasma Resources, Inc.
Lakewood, CO 80226
303-238-0363

Biomat USA, Inc.
Lakewood, CO 80215
303-620-4655

Biomat USA, Inc.
Billings, MT 59105
406-259-7459

Talecris Plasma Resources, Inc.
El Paso, TX 79907
915-860-7323

Talecris Plasma Resources, Inc.
El Paso, TX 79915
915-859-6855

Talecris Plasma Resources, Inc.
El Paso, TX 79904
915-757-2735

Talecris Plasma Resources, Inc.
El Paso, TX 79905
915-351-0920

Talecris Plasma Resources, Inc.
El Paso, TX 79901
915-532-5322

Biomat USA, Inc.
Las Cruces, NM 88001
575-524-2262

Biomat USA, Inc.
Bozeman, MT 59715
406-586-0309

Biomat USA, Inc.
Rexburg, ID 83440
208-359-1800

Biomat USA, Inc.
Rexburg, ID 83440
208-356-9101

Biomat USA, Inc.
Logan, UT 84341
435-753-7802

Biomat USA, Inc.
Pocatello, ID 83201
208-233-3888

Biomat USA, Inc.
Ogden, UT 84403
801-392-2296

Biomat USA, Inc.
Provo, UT 84606
801 375-2279

Talecris Plasma Resources, Inc.
Provo, UT 84604
801-377-1243

Biomat USA, Inc.
Orem, UT 84058
801-235-9800

Biomat USA, Inc.
Spanish Fork, UT 84660
801-798-7451

Biomat USA, Inc.
Roy, UT 84067
801-825-0111

Biomat USA, Inc.
Salt Lake City, UT 84111
801-363-7697

Biomat USA, Inc.
Salt Lake City, UT 84116
801-531-1279

Biomat USA, Inc.
Sandy, UT 84094
(801) 566-2534

Biomat USA, Inc.
Taylorsville, UT 84129
801-965-9160

Grifols
Twin Falls, ID 83301
(208) 733-5027

Grifols
Cedar City, UT 84720
435-867-8554

Biomat USA, Inc.
Casa Grande, AZ 85122
520-371-5702

Biomat USA, Inc.
Mesa, AZ 85202
480-833-1598

Biomat USA, Inc.
Phoenix, AZ 85015
602-266-1616

Talecris Plasma Resources, Inc.
Glendale, AZ 85301
623-939-0441

Biomat USA, Inc.
Glendale, AZ 85301
602-272-3224

Grifols
Surprise, AZ 85379
623-231-5383

Biomat USA, Inc.
Boise, ID 83705
208-338-8417

Biomat USA, Inc.
Kennewick, WA 99336
509-737-9000

Talecris Plasma Resources, Inc.
North Las Vegas, NV 89030
702-642-4037

Biomat USA, Inc.
Las Vegas, NV 89103
702-875-4550

Talecris Plasma Resources, Inc.
Yuma, AZ 85364
928-782-2101

Biomat USA, Inc.
Everett, WA 98208
425-267-9800

Grifols
Calexico, CA 92231
760 357-2232

Grifols
Calexico, CA 92231
760-768-2066

Biomat USA, Inc.
Tacoma, WA 98409
253-473-7021

Talecris Plasma Resources, Inc.
Portland, OR 97216
503-252-5308

Biomat USA, Inc.
Portland, OR 97206
503-777-5320

Grifols
Moreno Valley, CA 92553
951-243-2445

Biomat USA, Inc.
San Diego, CA 92115
619-521-5850

Biomat USA, Inc.
Sparks, NV 89431
775-351-1505

Biomat USA, Inc.
Reno, NV 89501
775-324-5600

Biomat USA, Inc.
Chula Vista, CA 91911
619-691-9001

Biomat USA, Inc.
Upland, CA 91786
909-608-0022

Biomat USA, Inc.
Carson City, NV 89705
775-267-0353

Talecris Plasma Resources, Inc.
Salem, OR 97301
503-364-8946

Biomat USA, Inc.
Lancaster, CA 93534
661-723-7597

Biomat USA, Inc.
Orange, CA 92867
714-639-2323

Biomat USA, Inc.
Bellflower, CA 90706
562-602-2004

Talecris Plasma Resources, Inc.
Eugene, OR 97402
541-683-9430

Biomat USA, Inc.
Van Nuys, CA 91406
818-344-0204

Biomat USA, Inc.
Bakersfield, CA 93305
661-863-0621

Grifols
Reseda, CA 91335
818-201-3800

Biomat USA, Inc.
Bakersfield, CA 93309
661-833-2379

Biomat USA, Inc.
Fresno, CA 93726
(559) 221-0040