Tài liệu Sams Teach Yourself CSS in 24 Hours- P10 ppt

50 638 0
Tài liệu Sams Teach Yourself CSS in 24 Hours- P10 ppt

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

<author> <name>Kynn Bartlett</name> <email>&lt;kynn@idyllmtn.com&gt;</email> </author> <tipbody> <para> When a blind user accesses a Web page using a screenreader, the screenreader uses a specific language dictionary to know how words should be pronounced, based on the language of the page. If the wrong dictionary is used, the speech will be very difficult to understand. </para> <para> If the language changes in the middle of the Web page, you need to mark that change with the <code>lang</code> attribute, which can be set on any HTML tag but is usually set on the <code>&lt;span&gt;</code> element. This will let the screenreader know which language dictionary to use when synthesizing speech. </para> <para paratype=”note”> The XML equivalent of the <code>lang</code> attribute is <code>xml:lang</code>. </para> </tipbody> <tipexample> &lt;p&gt; &lt;span lang=”de”&gt; Ich bin Berliner. &lt;/span&gt; (I am a resident of Berlin) &lt;/p&gt; </tipexample> </accesstip> </tippage> Notice that in the listing, the <tipexample> element contains HTML code, but the angle brackets have been converted to character entities using &lt; and &gt;. Also notice that this document says absolutely nothing about how to display the content; it just defines the information and leaves it at that. This is one of the primary uses of XML—completely separating presentation from content. Later this hour you’ll see how CSS can be used to define that presentation. 432 Hour 24 LISTING 24.1 Continued 30 0672324091 ch24 6/13/02 10:34 AM Page 432 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. DTDs and Schemas To make the jump from an XML document to an XML-based language, you need to have a formal definition for a language. An XML document is not required to be part of an XML- based language, though! An XML document without a formal definition basically creates an ad hoc language as it goes along, and by the rules of XML, that’s perfectly valid. However, if you’re writing an application that you mean for others to use, you may need to have the syntax of your XML document written down. There are two primary ways to do this: XML Document Type Definitions (DTDs) and XML Schemas. DTDs are the original way to define an XML-based language and are based on the way SGML languages are defined. Schemas are a newer development and allow for types of values to be defined in a broader fashion than DTDs allow. Schema support is still under development, however, and DTDs are currently more widely used. A DTD’s purpose is to define exactly what types of elements and attributes can be used in a document and in which combination and structure they may be arranged. A DTD file looks somewhat similar to an XML or HTML file, but technically speaking, it’s not XML because it doesn’t follow the rules for XML; schemas, on the other hand, do fol- low the XML rules because XML Schema Language is also an XML-based language. An example of an XML DTD for our simple accessibility tip language is shown in Listing 24.2. You probably won’t be able to understand everything unless you’ve worked with XML DTDs before, but the effect of this file is to determine what is allowable within the context of our XML-based language. LISTING 24.2 A Simple DTD for Our XML-based Language <! DTD for accessibility tip pages > <!ELEMENT tippage (accesstip)+> <!ATTLIST tippage revision CDATA #REQUIRED xml:lang CDATA #REQUIRED > <!ELEMENT accesstip (headline, author, tipbody, tipexample*)> <!ELEMENT headline (#PCDATA)*> <!ELEMENT author (name, email?)> <!ELEMENT name (#PCDATA)*> <!ELEMENT email (#PCDATA)*> <!ELEMENT tipbody (para+)> <!ELEMENT para (#PCDATA | code)*> <!ATTLIST para paratype (normal|note|warning|tip) #IMPLIED > <!ELEMENT code (#PCDATA)*> <!ELEMENT tipexample (#PCDATA)*> CSS and XML 433 24 30 0672324091 ch24 6/13/02 10:34 AM Page 433 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. What does that mean? Here’s some of what you can glean from the DTD about the struc- ture of the document. This DTD defines a <tippage> element as consisting of one or more <accesstip> elements and requires that the revision and xml:lang attributes be set on <tippage>. Each <accesstip> contains a <headline>,an<author>,a <tipbody>, and zero or more <tipexample> elements. A <tipbody> holds one or more <para> tags, which themselves contain either normal text (#PCDATA in DTD terminology) or <code> elements. A <para> tag can optionally have a paratype attribute set, which can take one of four values. XLink As I noted before, there’s no intrinsic meaning to XML tags, which means there’s no default presentation or behavior connected with them. In HTML, the <a> link means both “use the default presentation, usually blue underlined text” and “when this link is clicked on, go to the address in the href attribute.” In XML, we’ll use CSS to provide the pre- sentation, but the ability to define behaviors isn’t part of the CSS language. To address this need in XML, several additional specifications have been developed that create special tags and attributes, defining specific behavior or meaning in XML. To dis- tinguish these from other tags or attributes you might create in your own language, they are created using namespaces and namespace prefixes. A namespace is a unique URL that is associated with the specification, and a prefix is associated with that URL and appended on the front of the tag or attribute. The way to represent hypertext links and other types of document relationships in XML is to use XLink. The XLink specification defines several attributes related to the XLink namespace; these attributes are used to define relationships among data in XML. We can use XLink to create a navigation bar for our content, allowing us to link to related resources. XLink allows for simple and complex links; in this case, all we need are simple XLinks. 434 Hour 24 Listing 24.3 is a revision of the previous XML file with a navigator bar added, complete with simple XLink attributes. Warning for Internet Explorer (Windows, Macintosh) and Opera Only Netscape 6 supports the simple XLink language; the other browsers that display XML do not understand XLink at all. This means that you are unable to create hypertext links in XML that function like the HTML <a> tag for users of other browsers. 30 0672324091 ch24 6/13/02 10:34 AM Page 434 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. LISTING 24.3 An XML Document with XLinks <?xml version=”1.0”?> <tippage xmlns:xlink=”http://www.w3.org/1999/xlink” revision=”2002-06-13” xml:lang=”en”> <accesstip> <headline> Accessibility Tip: Identify Language Changes </headline> <author> <name>Kynn Bartlett</name> <email>&lt;kynn@idyllmtn.com&gt;</email> </author> <tipbody> <para> When a blind user accesses a Web page using a screenreader, the screenreader uses a specific language dictionary to know how words should be pronounced, based on the language of the page. If the wrong dictionary is used, the speech will be very difficult to understand. </para> <para> If the language changes in the middle of the Web page, you need to mark that change with the <code>lang</code> attribute, which can be set on any HTML tag but is usually set on the <code>&lt;span&gt;</code> element. This will let the screenreader know which language dictionary to use when synthesizing speech. </para> <para paratype=”note”> The XML equivalent of the <code>lang</code> attribute is <code>xml:lang</code>. </para> </tipbody> <tipexample> &lt;p&gt; &lt;span lang=”de”&gt; Ich bin Berliner. &lt;/span&gt; (I am a resident of Berlin.) &lt;/p&gt; </tipexample> </accesstip> <navbar> <navlink xlink:type=”simple” xlink:href=”http://kynn.com”> Kynn’s Home Page </navlink> CSS and XML 435 24 continues 30 0672324091 ch24 6/13/02 10:34 AM Page 435 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. <navlink xlink:type=”simple” xlink:href=”http://cssin24hours.com”> CSS in 24 Hours </navlink> <navlink xlink:type=”simple” xlink:href=”http://www.w3.org/WAI/”> Web Accessibility Initiative </navlink> <navlink xlink:type=”simple” xlink:href=”http://www.webaim.org”> WebAIM </navlink> </navbar> </tippage> The effect of the xlink:type attribute is to declare the <navlink> elements to be part of a relationship link. In this case, they are a simple link that goes from the <navlink> to an external resource indicated by an xlink:href attribute. The end result is a link that is functionally the same as an <a href> link in HTML. Browsers that understand XLink should treat a <navlink> the same as an <a> link. Styles can be added to display this link in various ways, as well. Displaying XML XML is quite useful for direct computer-to-computer communication. Using an agreed- upon common data format, a corporate Web site can communicate automatically with a partner company’s site to exchange information. Instant messages can be marked up in an XML-based language for interoperability among messaging systems. However, all of those aren’t really of interest to us when we’re talking about XML and CSS. More relevant to this book is the ability of Cascading Style Sheets to provide XML with the presentation layer that it lacks. HTML tags have built-in meaning and presenta- tion styles, but XML tags don’t, and that’s where CSS styles come in handy. Default Browser Display If a browser understands the XML format, it will display an XML page as it displays an HTML page, except that it has no idea what the tags are, so the content alone is shown. Figure 24.1 shows how Netscape 6 displays the XML file from Listing 24.1. 436 Hour 24 LISTING 24.3 Continued 30 0672324091 ch24 6/13/02 10:34 AM Page 436 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Internet Explorer does something a little more clever with default XML display. Recognizing that XML documents describe a hierarchical tree, Internet Explorer shows unstyled XML files in a clickable tree structure. This is shown in Figure 24.2. You can click on a minus to close one branch of the tree or on a plus to open it up again. CSS and XML 437 24 FIGURE 24.1 An XML file displayed by Netscape 6. FIGURE 24.2 An XML file displayed by Internet Explorer. 30 0672324091 ch24 6/13/02 10:34 AM Page 437 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Linking Style Sheets in XML Now, what you’d probably like to be able to do is apply a style sheet to the XML file and use that to create a better presentation than the Netscape 6 or Internet Explorer default views. In HTML, we have three ways of associating CSS styles with content: linked style sheets (using the <link> tag), embedded style sheets (using the <style> element), and inline styles (using the style attribute). All of those depend on the fact that a tag or attribute has specific meaning in HTML. XML doesn’t provide any inherent meaning for any tags or attributes, so the HTML approach won’t necessarily work for any generic XML document. Specific XML-based languages can be designed to have the equivalent of <link>, <style>,orstyle,but XML is meant to work with CSS even if the browser doesn’t know what the specific tags and attributes represent. The problem of linking CSS to XML is solved by using an XML processing instruction (PI for short). Processing instructions are, as the name implies, instructions to whatever program is processing the document and aren’t actually part of the content itself. A pro- cessing instruction looks similar to an XML tag, but it has question marks directly inside the angle brackets. Processing instructions are not tags, which means that they don’t ever have closing tags, although they have something similar to attributes to provide addi- tional parameters. The processing instruction for linking an external style sheet is called xml-stylesheet, and you write it like this: <?xml-stylesheet type=”text/css” href=”filename”?> As you can see, this parallels the <link> element of HTML in syntax and function. The <?xml-stylesheet?> processing instruction should be placed before your first element of the document, and you can have multiple style sheets if needed. 438 Hour 24 Styles for XML CSS rules for XML elements are written just like the rules for HTML elements. The selector indicates what part of the file the rule applies to, and the declarations give values to properties. Workaround for Internet Explorer (Mac) Internet Explorer for Mac recognizes only one style sheet per document. Therefore, you will need to use either a single style sheet for each file or an @import rule within the first style sheet to apply additional style sheets. 30 0672324091 ch24 6/13/02 10:34 AM Page 438 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Selectors for XML are the same as selectors for HTML; element names, attribute values, pseudo-classes, and relationship selectors can all be used in an XML rule. Property val- ues, likewise, are the same as for HTML; you just have to remember that there are no default values already assigned to them. As an example, if you want a <notice> element to be styled as bold, red text in a block box, you simply write a rule like this: notice { display: block; font-weight: bold; color: red; } Although any CSS property and value can be used with XML, there are a number of properties that are especially useful when designing style sheets for XML display, and later in this hour, we’ll discuss how to use them most effectively. A longer example of styles for XML is shown in Listing 24.4, which is a style sheet for displaying the simple version of the accessibility tip XML document from Listing 24.1 (without XLinks). LISTING 24.4 A Style Sheet for Our Accessibility Tips /* tip-24.4.css */ tippage { display: block; font-size: medium; background-color: white; color: navy; font-family: sans-serif; } accesstip { display: block; margin: 1em; padding: 1em; border: 2px solid black; background-color: #CCCCFF; } headline { display: block; margin-bottom: 0.75em; font-size: x-large; font-weight: bold; font-family: Verdana, sans-serif; } author { display: block; margin-bottom: 0.75em; font-size: large; font-weight: bold; } name { display: inline; margin-right: 0.5em; } email { display: inline; margin-right: 0.5em; } tipbody { display: block; border: 2px solid white; padding: 0.5em; margin-bottom: 0.75em; } para { display: block; margin-bottom: 0.65em; margin-top: 0.65em; } para[paratype=”note”] { border: 1px solid black; padding: 1em; } code { display: inline; font-family: monospace; color: black; font-weight: bold; } tipexample { display: block; padding: 0.5em; border: 2px solid white; margin-bottom: 0.75em; font-family: monospace; white-space: pre; } CSS and XML 439 24 30 0672324091 ch24 6/13/02 10:34 AM Page 439 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. To use this style sheet with the XML file in Listing 24.1, we simply need to add the fol- lowing line before the <tippage> tag: <?xml-stylesheet type=”text/css” href=”tip-24.4.css”?> To see how the browser shows this file, look at Figure 24.3; it’s come a long way from the plain inline look of Figure 24.1! 440 Hour 24 FIGURE 24.3 An XML file with a style sheet, displayed by Netscape 6. Using display to Control Presentation The display property is your biggest friend when using Cascading Style Sheets with XML because it’s how you create block boxes. As a default, all elements are displayed as inline boxes, and they flow together into a mess, as seen in Figure 24.1. Using display,you can change these to the block value. You can also use the display property to create lists, as covered in Hour 14, “Lists,” by using the display: list-item value. This allows the list style properties to be applied to those elements. Data tables can be displayed as HTML tables by using the display values for tables, as discussed in Hour 15, “Styling Tables.” This allows you the full range of columnar pre- sentation supported by CSS in HTML. 30 0672324091 ch24 6/13/02 10:34 AM Page 440 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Generating Content for XML Display Because the raw content represented by XML files is often lacking in basic user interface clues, the ability to generate content is crucial when applying CSS directly to XML. The :before and :after pseudo-selectors and the content property—all introduced in Hour 22, “User Interface and Generated Content”—are extremely useful when working with XML. Listing 24.5 is an additional style sheet to be added to the one in Listing 24.4 and applied to the accessibility tip XML document. The easiest way to do this is simply by adding a second processing instruction after the first, as follows: <?xml-stylesheet type=”text/css” href=”tip-24.5.css”?> Alternately, an @import rule could be added to the beginning of the tip-24.4.css style sheet. LISTING 24.5 Additional Style Sheet with Generated Content /* tip-24.5.css */ author:before { content: “Written by “; } tipbody:before { content: “Tip: “; font-family: Verdana, sans-serif; font-size: large; } tipexample:before { content: “Example: “; font-family: Verdana, sans-serif; font-size: large; } para[paratype=”note”] { content: “Note: “; font-weight: bold; } These will add various bits of text content to the XML, so that the presentation makes a little more sense. Compare Figure 24.4 with Figure 24.3; it’s much clearer, in respect to the generated content, what each section is meant to represent. CSS and XML 441 24 You’ll want to use only table display values for actual data tables, though; for layout, you should use positioning CSS, covered in Hours 16, “Page Layout in CSS,” and 17, “Advanced CSS Layout.” 30 0672324091 ch24 6/13/02 10:34 AM Page 441 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. [...]... navlink:link or navlink:active Listing 24. 6 is a style sheet that is designed to be applied to the extended version of our accessibility tip XML, along with the tip -24. 4 .css and tip -24. 5 .css style sheets To use these, we’ll add three processing instruction lines to the XML document shown in Listing 24. 3, which is the longer tip file with the navigation bar Those lines are: LISTING 24. 6 Style Sheet for XLink Navigation Bar /* tip -24. 6 .css */ accesstip { position: absolute; left: 200px; top: 0px; } navbar { display: block; position: absolute; left: 0px; top: 0px; width: 150px; margin: 1em; border: 2px solid black; padding: 0.5em; background-color:... CSS properties to force a value to be inherited from the containing box Inline Element A markup element that appears within the flow of text across the page, rather than within a separate block box as block elements do One example of an inline element is the HTML tag Inline Style Rule A CSS rule set by using the HTML style attribute on any element The inline style rule has only a declaration... user but instead serves as notes or reminders to the Web developer In CSS, comments are indicated by /* slashes and asterisks */ Containing Box The box that contains an element and from which certain properties may be inherited For example, in the HTML markup , the element is the containing box around the element Content Generically, any information... up on If you’re interested in learning more, here are some resources to get you started: • Learn more about XML by visiting the W3C’s XML pages at http://www.w3.org/XML/ or by reading Sams Teach Yourself XML in 24 Hours • XHTML is covered in Sams Teach Yourself HTML and XHTML in 24 Hours, or you can learn more from the W3C’s XHTML page at http://www.w3.org/Markup/ Be sure to check out the free HTML... be unique within a Web page id Importing The process of loading style rules from an outside file The @import rule in CSS allows for style sheets to be imported Inheritance The method by which elements take on the property values of their containing boxes Properties in CSS are of two types: those that are inherited and those that are not The inherit property value can be used with most CSS properties... and you can also read about them in Sams Teach Yourself SVG in 24 Hours • The definitive source for XUL information is the Mozilla Web site at http://www.mozilla.org/ • Information on XSL, XSL-FO, and XSLT can be found at http://www.xslinfo.com/ as well as on the W3C’s site 24 PART V Appendices A How to Read W3C Recommendations B Replacing Presentational HTML with CSS C Glossary APPENDIX A How to Read... HTML elements CSS Level 3 The next stage of development for the Cascading Style Sheets is embodied in the CSS Level 3 project Rather than simply adding additional properties to expand the language, the CSS working groups have split the specification into a number of modules, in a process called modularization (The same process has been applied to XHTML as well, as discussed in Hour 24, CSS and XML.”)... #FFFFCC; } CSS and XML LISTING 24. 6 443 Continued navbar:before { font-size: large; content: “Links: “; font-weight: bold; font-family: Verdana, sans-serif; } navlink { display: block; font-size: small; font-weight: bold; text-align: center; margin: 0em 0.4em; font-family: Verdana, sans-serif; } navlink:link { color: blue; } navlink:visited { color: purple; } navlink:hover { color: red; } navlink:active... specification Older versions may have included these obsolete items, but their functions have been replaced by newer elements or by CSS properties Display Box A box, either visible or not, corresponding to an element in the markup Boxes can be either inline or block and can contain text content or other boxes Everything in CSS is conceptualized and displayed as a box according to the CSS box model Glossary 465 . watermark. <navlink xlink:type=”simple” xlink:href=”http://cssin24hours.com”> CSS in 24 Hours </navlink> <navlink xlink:type=”simple” xlink:href=”http://www.w3.org/WAI/”> Web. by visiting the W3C’s XML pages at http://www.w3.org/XML/ or by reading Sams Teach Yourself XML in 24 Hours. • XHTML is covered in Sams Teach Yourself

Ngày đăng: 26/01/2014, 14:20

Từ khóa liên quan

Mục lục

  • 00000___3122f891ef5069322666983e28e49ca1

  • 00001___0c78dd21d965383a9ed7fae671092bc6

  • 00002___e23d319e06ca8013f2cb48fb1cfaece0

  • 00003___c596d06aaf1b6f23295b1fefacd296df

  • 00004___715a8991afb5def66b4c5e9bfe5fa599

  • 00005___ab525712912a666e9d3c7e36c2e641a5

  • 00006___5fd9f3984178ff6dc55fb3c0ff29a287

  • 00007___af82991509526e899d26c8c57e1daaed

  • 00008___0557b9b9058b26931af672e8764b6b18

  • 00009___01380e8a9f0e5b23fd70b3f1099ee9f0

  • 00010___cb61561a40517cd8242f5b114f9a6d5b

  • 00011___94eb4bced0e6919b55b9d71a792cb536

  • 00012___d6f16d22f419ba4fe55a8446d40c312a

  • 00013___a9b171dd4068ae375a5821c6c1a2bd82

  • 00014___6a2b08546c0a55279abbd7773d22f475

  • 00015___ffb349efc142e7b5647a816f657d30eb

  • 00016___42076a7aaef2afcd7e7301c3cfc535ce

  • 00017___ca162f01ffa2797757324741531cbda7

  • 00018___2dbebd2d990ac93a9b8f67776fd33fa8

  • 00019___4e839927eb67db59175530d5297fd2e2

  • 00020___c3534880db68df776ac077412c7593de

  • 00021___d853535bc3b87ee547dfd77da32c7507

  • 00022___9b2e3983a880fc66003a0d85ec420e79

  • 00023___1fdd832625c0eb38028a0de3edbab1fc

  • 00024___029abd3a2f4dbe687a4410aea50ad17d

  • 00025___c7585d254a809b79c5ccbd9b2cababb1

  • 00026___f1a8de6b7361c11dada978eaa7eb150c

  • 00027___2cf5211fd08f8bd36fb689ba0211d5fc

  • 00028___d31a9a9abcd2f272d89097c2ea0bc417

  • 00029___1e228bf6df1d6c963a50e826a699a81a

  • 00030___ec56fdef04448b5add5af3d1b70ed6e1

  • 00031___699654020ffd953fd081035a34902928

  • 00032___3a700c611069ae29c0c2a4c65e1eefff

  • 00033___ac0a20972e345f870fac408a465e7aee

  • 00034___6eb347fcedc85c0913913acebfac7ff5

  • 00035___9d1179b03ace592bbdb0c9350ec0a056

  • 00036___b788e995bd2ead92b53071b0a287ed01

  • 00037___1fa8f4871cc7b16e9e7e7fea9104b188

  • 00038___c02c77326cef852f7f0e3000648ab269

  • 00039___57ab1c0ef94496bed39c9ef6847511d8

  • 00040___cb3c99226a2531e8807f69a3cee63afb

  • 00041___487ec96c15acd70740a0b181ede5c162

  • 00042___ca7b73c21b472cba629f2159fdb1261b

  • 00043___6f7ed136d94723e7f538fdef4af9efe2

  • 00044___1fb33f9c4f22d5e3b5aa58f66c974b88

  • 00045___bcfd9d339adba42b34e5daaae9797d2c

  • 00046___4d7bd23fc7d8068c5d5246840402f906

  • 00047___745b7ff304bf8e8023f02c6a87193cb4

  • 00048___490c92573817a036c1fb860a0319b0c8

  • 00049___8e99e403844eff08433b99b8dbd165b5

  • 00050___9bb7d3cabb33ad80a960c174fa94b7a6

  • 00051___fd7734588d9a1bda4cb3e5461116af07

  • 00052___5162aad2adbafc8198be9ea211eed3f0

  • 00053___a324090468c2a8ee18822498d64d3a54

  • 00054___2fe871091f43f77ca6a49b356fe06513

  • 00055___2aa8fa879fb15c4bc022df09903d28f2

  • 00056___3822fa1e9d6665173ca8500c325ee474

  • 00057___9ed331e3de39a6a34eec90ebdf23d94c

  • 00058___3c29b26440bfc0ad3728578321483529

  • 00059___591f5ee5d1833c0d02ad9b83ef0e1982

  • 00060___f720dbb32a9abe0ada60a22ddc8e5bd9

  • 00061___5371d90a60c09f39c9eec4f8c0345e2e

  • 00062___94f04262f9119def33a4bc08a6c58c43

  • 00063___990871f1dbde97d61a6a3cd8ee4919a6

  • 00064___d293261d284140df1cd4b2da3cabbf45

  • 00065___fcca61208bac5fa76a81903ecd393f49

  • 00066___998c058f0ac7b70f30ad0eb5af8f52d3

  • 00067___9ba275b4082368d5b42cae5e30a5ea4f

  • 00068___5a849f7c5fceebde962a90cf7512d6d3

  • 00069___37288dd198128e8f55171700a239e6c8

  • 00070___82efa0ff7cd1def3c257538ad4c65d00

  • 00071___208e9522849331cb124ed7a2ff8af042

  • 00072___21fc9a9df9dca02203699c96a06054d1

  • 00073___4ed32c3f0429fb1981a6d979d5a3ff7e

  • 00074___f2bcaf83553699c111be9b5a553dd7c3

  • 00075___4d9aa268443001eb6f2ee1ae2ba75725

  • 00076___f2cb59451a2797b96d8b30547fdb4957

  • 00077___ad88fc1ae5d884e84425218a47c2ca3e

  • 00078___739bb786d0df028dd138dd1134e2e78b

  • 00079___3737bdc27f6b44431b33cfc4a3593d76

  • 00080___9b08faa8934171ddda20118bb1c7170a

  • 00081___f0bd2557fcce682132b4b0b7e0354ce5

  • 00082___6ad9ee6fa3a9ee72b153dd636e2ce55a

  • 00083___dd40ceaac253861bb32c99131e5d52bd

  • 00084___a1f20a930417b07054b42399c7a26e5b

  • 00085___bbeabfd29255ddc05ef03dd7a49dae8d

  • 00086___af666fd4e8509025e277275c3ad77783

  • 00087___b8e8f3538e1bec0078c4f0a54ced5488

  • 00088___ce72d2354ac7a55a071ccef070f09ee6

  • 00089___661bdccb87fc02333e7b6622efa086b0

  • 00090___21dea4ead47bdcf5e27fafb2bd14a9cc

  • 00091___3118502f5a4e491ed3e3b34c61c2db51

  • 00092___ab0abd7a6dfd387048e63cb2e17167c1

  • 00093___27f9b6d991591c1a5e304b8ee417042a

  • 00094___52b5e4271f4ce6aefc01ed218fed8a67

  • 00095___702bf348d5645029a46b442c653163ff

  • 00096___07b28dbb751c5a343c80d0113624ef3a

  • 00097___fa74c44298023ceb2f804acd5bf6a26a

  • 00098___4ed26966fc3508c6b28529c43f169d61

  • 00099___7039e78b8c8daf3b262b276ec76e5d64

  • 00100___5057cb72e1ab0ababc862c896779a503

  • 00101___65f7170f97a5a2c3380ab911063ded10

  • 00102___a214d11d1ba3b2f50d16534c04759a6e

  • 00103___5c039fdd6b7bb8648f92a7e9e2f20b31

  • 00104___de751c859720260ee4137f50b86f35d4

  • 00105___671af6406e63fc3fadd9a56e5c5e4030

  • 00106___08ab911001272ac897e7dc43815c96a7

  • 00107___2faf2f5317268bbb45663647c802d6d1

  • 00108___7c12c2b658551c5d91a6e9abb92dc616

  • 00109___706a93db0d2f9636c5fd8181126d4c4b

  • 00110___9987ee68d21228360eeeb0611f6a1f0c

  • 00111___0f52862798cb67eaf1a1387c3f9c2e7c

  • 00112___1addb70d31bd1ebb76e77f0d47322060

  • 00113___eab884d1d19f2e18004b957456e55707

  • 00114___d2f57b3af4b4b39ab68394995f340746

  • 00115___69670357d2a19e211c1a89c8e132a912

  • 00116___645b892a1ff47984d0936230a91e54e2

  • 00117___9ed91a0c4b5dd29a2342928272aeaa37

  • 00118___05ca398b7afd8c71d9d2f59c4f30a4dc

  • 00119___d5d8bad63501321955f530241d8a2786

  • 00120___16343bf119023da58157b473b76cb53f

  • 00121___92c1bb3bec7e465c3c950d8eeb1400a1

  • 00122___c90c743cb208e009d4e629f17e914187

  • 00123___524c47f4a5053a2bfd945207b2123ce5

  • 00124___8d6ddf64fdb47254e7558d1f76826376

  • 00125___cd3a06fcbd2f00e8094fa816666b9250

  • 00126___c175376606da080ae55d54f995554cfa

  • 00127___0c8e842472db1be3945812e1e8139bf9

  • 00128___3230719bf7b1e15c808f1a5644df5a0a

  • 00129___c84866513c9ba290c03d42a61c99d6fb

  • 00130___b4705f990a233dc86686221be14959f5

  • 00131___d8a930f4fc4e2ba167825c88961663df

  • 00132___af1cd4bd8f7c86803455efbf4f30cc40

  • 00133___dab4625d65985672e6abb9008a3b780f

  • 00134___4c1320e7a414242bc2568d5a580e0ab9

  • 00135___0de954110d670ff889395a19da58636c

  • 00136___d7f456786eb0b17587ddbf06d2b924e5

  • 00137___8bdb448f1af31c9c198a41a6dcf7df4d

  • 00138___4f1a9daae65a59cc67011bdd4ebf6f77

  • 00139___a43fa1b14b83436666c7f886618d26ac

  • 00140___8969908dc8f7f48af5498efe0e1be80a

  • 00141___d3cd91ffd0c77a58cde76c0f6daa4594

  • 00142___62b06b018aa109e571c6eb34c1440174

  • 00143___0410d84be8ffa4b3e3422f53cd0fd107

  • 00144___dcc267611984c25c9a6fa3c43aa132d1

  • 00145___e1a15b1a7a8dbdcd3bf313b42bd06a18

  • 00146___d1f25d8d54f096696d0eab42a5baf445

  • 00147___bc1471539e5fafcab29503b72406aa7c

  • 00148___82ce3c1b9451d5f338527ae72ceb02fa

  • 00149___4481d0f4536f6c71824d80eaa56cbfdb

  • 00150___05cc7b020f1d564100e0f9b1ac53ba40

  • 00151___31addb4ad7146a875c65e9f1c3d09635

  • 00152___c79012474f2ece0625dc45c63aab3943

  • 00153___2db85b9c4bbe855d25a1a0eebfb7173d

  • 00154___d925be9369b604391c7ce2643fa64129

  • 00155___abbad3d944c6f9d6881d350b183b0d54

  • 00156___e6a4899fea2de9f58b3acf319412a51f

  • 00157___f847a78b840ec8ea17acb0885fd1b272

  • 00158___af5333ef6f21fcb078ebf87f34292fdf

  • 00159___236e5392088e06f9fa00f4c984b2c656

  • 00160___bd28ff136083c639e3c3269356325545

  • 00161___47fdcd1c9b49cdedbaf176cb68be493a

  • 00162___9fef0313b909e54c6d16522f522517cb

  • 00163___bfd23f74efdafd34f83f28597125b19d

  • 00164___906b844d0c1aac11b1a66fa5a65fefc7

  • 00165___b1da1bbe405bd6be987ac9892788a9c7

  • 00166___a9ea9b68634bbfcb53f98f9676819891

  • 00167___facf0bb238ec998208ee0961af78c5f1

  • 00168___25d60af15e10f7f5adbe467f7be13aec

  • 00169___3e13a348e9a81d54ef18190164ab0ac1

  • 00170___5852d339d2f1d01360502b878233ef93

  • 00171___a0b3f8f41d54de307e6b89f26a1de2c6

  • 00172___f35b12ce0c999206abc38768a9a280ab

  • 00173___59d528e18b19a3e55893711cdb3b0a54

  • 00174___b6b279b08ac9c34f8f2bdcc6a7bab462

  • 00175___6004503a562f979f018101232cc032e5

  • 00176___9879ac1b01ab34e78cce701456eabf1f

  • 00177___828cc321bed6e71023dab6693dcfe659

  • 00178___480932f6a223686daee880e04cd914a0

  • 00179___9b731fea86483a057618b1c092fd4aef

  • 00180___7dd40c42c296a65b192a4bf67bfe1a55

  • 00181___cdd1cd969ff16ca36e416d2a49443c7e

  • 00182___071b9bc53b59375e7abc4cc24d3c0bb1

  • 00183___4d6e0c02c426d821107220e894419db9

  • 00184___40e74df06418847aa4cde8d7203011d1

  • 00185___51439af3dac012d3014c11ed2db39fd3

  • 00186___e2d21d373d4a19f6ace197091e1d701e

  • 00187___30dcbc96c9cad9085a8b943dca70433e

  • 00188___7a5b0954e6b03821bc22b283bcc6ff81

  • 00189___a779aa219c4c0ef061c31efe86d26ca1

  • 00190___ed7bf59231dc3aeb57e6a3325db8e5ed

  • 00191___96bff19d65c23f9d33e929700019d4fa

  • 00192___2b6b45396b5c27e64751e48f0699b8a7

  • 00193___7cc2810ed4824f0a70d408493a5351ce

  • 00194___cab34bdcb9be035bf3c30e1b807c8cf8

  • 00195___ced9e5faf0e3851f5a3faaa90d731ecc

  • 00196___01a6fcad01b7d69353e84c150259cd87

  • 00197___44f0a8074522dfa50c0093c7acd0aa3b

  • 00198___cc304f2190ff40086ad2333853bc7200

  • 00199___3ea8beb3a647645d372e99a369fe3ac4

  • 00200___8805d060fb14fefd48677fa2d821b53e

  • 00201___f41910589937176712701bc0c62da95f

  • 00202___ba47c932c311a90116f3571f19c4275d

  • 00203___4026139ece714615c3f851dc70b886b4

  • 00204___cd209ec9bf63994f83148ac0e71e3e0e

  • 00205___68843e5f2419b99793d396083e74fc59

  • 00206___be90d0506b7b3063319ab8d06db44abe

  • 00207___04744f61cc939bb29e8efbe835d637e5

  • 00208___7a34bc7b3f6ccaf6f48d70e5188b3210

  • 00209___5def9e9ceeefefd55b4a222de3f9251f

  • 00210___a3b1911f11d3763870dbec964aaf7465

  • 00211___a3288246bb58c1186ee13bcfcd5c1685

  • 00212___c2d73f1552f961b0ebcb881aef224d08

  • 00213___9c40299e63e08bb0a87bd92f1e834727

  • 00214___2209ea8a09bd8d7899668b30c6ec3c4f

  • 00215___044880b0880043fe30e2bc8818fa52f5

  • 00216___ccad45e03e33df0968f4d2924c8772c2

  • 00217___5aed645fad3a6f8711b4bdc1e3a2826e

  • 00218___83c8c0cd0f8b133449edc7f1fb7df63f

  • 00219___733d9e7eb72afaab3dc3e4869d485332

  • 00220___19b43bfc6dde2c494edc3d6cfe7b497c

  • 00221___f5a898e684f502b155a0bb57e2310383

  • 00222___b9c7f3963e296ef498c5d771dc897aaf

  • 00223___3518674e9c55b29f244e3bad3221d419

  • 00224___0bbbd74e16c4df545cf2bef46f9e047a

  • 00225___6c1ffebfb9ba9fc16ab746cc20d5cf53

  • 00226___b51461373e2a0a12644ecc8558f25903

  • 00227___a3a4d87ede9509f1dbc7d6849df35385

  • 00228___cb86b3517c45f2f0f5fef716cb9ea466

  • 00229___d02dca3dd4761a5909ad90ab0b96f4b1

  • 00230___5bbffd0f900bbdddc91c132ad64f4a7f

  • 00231___2deee16dd24524fcb7f597657773a1f8

  • 00232___8126c60f8a74a194633b0898a150a9f3

  • 00233___598c01f8816ed7783782200347697ca8

  • 00234___d49b603a40d7590fc1468180912c23ac

  • 00235___feaf0c60f0dfb9518fba184790b146b4

  • 00236___0b003bb21483fc1ca8f09b03cd490c2a

  • 00237___cdae51e863893872b6104aa9c0f1e099

  • 00238___be3c0227ff13a5214f529b616fdd60b4

  • 00239___1e7a8560be0de472b84dceae21f5473a

  • 00240___7964a3c1d5741c61ba42ab3c43fa4cbc

  • 00241___1baf2225554772da0688201af9d2b6b1

  • 00242___e647340687d39ec4a23e0908fee7530a

  • 00243___ab00efafd2f040b240d93ec0a6d63441

  • 00244___21a50a188f15e9e0c13adade3d5e1b12

  • 00245___b5949f69957f0f856446becd91255d26

  • 00246___34d582d48d1d2746d47d0a3ec138c396

  • 00247___604d888a2df5c3fe374f254d0f3b40d2

  • 00248___1f88c90951208f512b61fc4e8c0f6c42

  • 00249___92c8caedab6ad2d2f12cf180b13aaa7c

  • 00250___3ba1f073dd10dc0171b606d266699653

  • 00251___6afe5627ac069a1d89a38675cccf26bf

  • 00252___825746f659a9aeeacfc792275cb425cc

  • 00253___b6b2ff4ab2ece96ddb869c86e7370223

  • 00254___ad8b599ca0ab5cbe762ccf06675c13fa

  • 00255___452103e93b0f9e29442cc8ebd945be80

  • 00256___78e3b03fa90190d30b479beaffeb4bf4

  • 00257___fe978df3568d5eb07a63a3c889f2c9f8

  • 00258___5a2d41f046226924db2364309a422548

  • 00259___a080cedce8763726e7c1aad717f99f67

  • 00260___b2ce9ecefceb1b533c52c66c31fe8ce3

  • 00261___d4c3065e86bcc030982c319981e95b41

  • 00262___d1b79214cb72120c7f8e26dde0ab3677

  • 00263___662a941143bb1ed3d2662edfe8e0efee

  • 00264___2265e954d5f66b21e854444c687a71be

  • 00265___689d869f072add342e281a38793ac6f7

  • 00266___1a3661f7c1ff4aa342852aa8f554fd81

  • 00267___0810db5024a2e634332cb503013ac876

  • 00268___11fc845c6c180d62274d5fc03423a983

  • 00269___26a6f4b0b67a579a902906a0c6840e86

  • 00270___6daf3f826f5bc481f830942cd95c2fe8

  • 00271___24d87b0dcb506c058ce5290e3057ea94

  • 00272___fe24ca69500eef22161fe40c60714c9d

  • 00273___3f7c5a7809ac6c18bc92cf25742c3f4b

  • 00274___d0957654822d3b7c8ca40848c5a75c6a

  • 00275___0df8e0858447ef18e65bde7d65c4e733

  • 00276___cd12506b2d08c7e77ba12ffd89855571

  • 00277___e33b056434810cc7d27fe344e2779f4d

  • 00278___d53bd79026536184b87949f88d0346f9

  • 00279___dee9ec27f4bf25aa792701390df926b1

  • 00280___d06afce9c54d0572d01594e22d2b7a5d

  • 00281___64ef62173f42c3f3668d8c8f7306745d

  • 00282___58911aa149903bdf9ef7396adcbfe281

  • 00283___38f9f5b7c58aab17fac9bba8c131c47e

  • 00284___c774ebf6cc58f936f3b3957c27fb3e20

  • 00285___fbc28cf00599c4f53804cc4f08ab8ad4

  • 00286___8f97cb5198084ff826b7ad700e958696

  • 00287___6a8ff4e052dd32307e14c4a21fa49727

  • 00288___5c80313a26bac92d1505592e991e09c6

  • 00289___5ac803eabf63e120059e38f355672b4d

  • 00290___0dcd94d6d3599d63e499f650ff605894

  • 00291___dfc4126d31a56599fed0cd12018ae88b

  • 00292___fd578659eb04b20501b562d32f74c16f

  • 00293___f0a429acbd6979b7614d03244fd87e7c

  • 00294___2778971f271d53a98f819fa7093bd0b0

  • 00295___dda4768d32492b79bf1de37cc52d9770

  • 00296___3b0156ad8c512dcfdecf10632eb80e4e

  • 00297___5643f51258a82ad82411dcce76cdc766

  • 00298___14a897e9b3b34c4c02a6a2cf4ee70cd0

  • 00299___c349386d690f10e64a7a63efb4a4d425

  • 00300___0c22c8dc6a968c74d664156a0ce7fac4

  • 00301___e3631c87a7c3803b02dd4819cc403da4

  • 00302___0014e3e745bcd3d8d6ad1d36e7b45a18

  • 00303___d906a8882d7c324a391a02424996d4c6

  • 00304___515ed4f1128a4ab26c57f014ac8d7366

  • 00305___8c59698172d44a2212060a52ce764a52

  • 00306___09cfab5ec7247f34fad339cdf1f786df

  • 00307___e299cdb3c55539b932859b1728063955

  • 00308___10944352cc8c62d64d45d56c3db749a9

  • 00309___c838bd96b9b305583e55cdcef23df46c

  • 00310___c2254089d42e46361db70bd85727b710

  • 00311___990ebdefb577f267a21489c10b678cfb

  • 00312___7409777176a4e70a28b50263e549dc4a

  • 00313___342b57fe9fb85597600e669d204f2a83

  • 00314___64cfdb59d85c89e491bc9d64f6abceec

  • 00315___6c6b0bb03f427e25c2bd9addc30b0e7a

  • 00316___f444ccf8993fc06f6445839a8216b853

  • 00317___c92fe350a315c3ce3669d5ffde154b12

  • 00318___a2ab1b2d826c0f25b0c181d0b4fa6dac

  • 00319___b56353e1da2e81e7b365b8265b1fcd38

  • 00320___5fa3007ac4b8a6256948fe3907eff415

  • 00321___256bcc245f24baeb1c48cb82aa15dd93

  • 00322___5657000f1bfa218c7b95161bc2354da6

  • 00323___d462ac29c64ac8fdc5642a9e4bc3ff0c

  • 00324___d4f9698964d609092c0f9fea45550d45

  • 00325___4e689a34afd6c1629952290618ce436c

  • 00326___fdd5f4f11b8a9af709f44116a1f611a1

  • 00327___ded59a88c4f9f306e7fe0ed7fb8d6c21

  • 00328___7b630df977320d08bcd47844191a8d4c

  • 00329___250d9f6cac2a51191f964375bf3495bb

  • 00330___36bf45502591dd3701cf2d7931618dca

  • 00331___e20bc91f2fec4a35560b9cebcb96809c

  • 00332___983428fdc9e7ca03961ca0ce887059ef

  • 00333___54114491a219a29b1d426b15c61b2ebe

  • 00334___0a0739f4330d04375964a7cba5aec95f

  • 00335___8515e49b3b0eb16d05e293dd1399d13a

  • 00336___0745440a6570d31688fe12e6c6aebc7c

  • 00337___0dbfd538aa6f08b6dd1ca260805eef2d

  • 00338___c7402dbc2366ed3241307de24224634c

  • 00339___30a27cc6a4a1e4ecb7b50ec6c026f2c3

  • 00340___2ebcbe2cf4d83140fed2f376b7391b31

  • 00341___a102ffcd06c3f62d32532079f1bfc880

  • 00342___2dec6248e932a2f489833a17c528af1a

  • 00343___0a5e293330f9f1d7af5efc06567465d5

  • 00344___beb9abbf3837d6d2c71ab0ee1fdca7aa

  • 00345___6d7a940ef2e9e41b18040615a4f59dc5

  • 00346___7fb74eeb32bbbaeeb7f74e335098ddc4

  • 00347___624e46082699bc8f8103686ae342f352

  • 00348___de8bac33680fff11412e8b0a8d3f80a8

  • 00349___18da8d1b176ee61f89f046e801174d08

  • 00350___4d0eb639c06f0dbb04d456cf52141139

  • 00351___a2ef22e0b3ebac6dba1f890fe3c1971b

  • 00352___1b9559087000a6e4756d63afe5000662

  • 00353___26b20bab21205e0f83fbd87b39bb3e83

  • 00354___4b63b1098f9ff5e8e78e5fbcce8e1d08

  • 00355___de976c79ea5bc0848b4ef3c3fb20a5a2

  • 00356___b26bbf5816fa303a0e3257cc9137b6ea

  • 00357___0984232c16be52b345c67cf04b6d1e2e

  • 00358___9ac846ac64634986f6505d409b14666d

  • 00359___195730b26f4d5c47411e14c721c074a8

  • 00360___504fceb0a0f32cc476a1d08f1d6906e4

  • 00361___e128e7487a19fa14c6da43be80c82aa1

  • 00362___2110e7fbae0bf58dd494e46892ccb3a9

  • 00363___883580cfe877a1dc71f79d595224209a

  • 00364___f11c060de55b938fcffbd262db1dc3e9

  • 00365___e0ef45c478783e2ae61e6771d9fb6540

  • 00366___941519c3e42aa0b370cce667355229fb

  • 00367___5401b2b381501f43e9a57ff5facd821b

  • 00368___c8188e600964f447a352e1921cecaac5

  • 00369___5867fa7cf92b6bc12cc2008912302c1d

  • 00370___4d1f3ada3e000cddc94f8300368c46ba

  • 00371___ada981c8f93f9767cbb5f29d69c5e30b

  • 00372___2a002b1b63027b8e29810d657e607422

  • 00373___a7f1a440d6742df20b23db0d49b2336b

  • 00374___01170f7686403fbada0ea13823d52cfc

  • 00375___23f1e81f02dbe20bc80b09156ead8661

  • 00376___f4f1cc797719af166939a288c84fc9f4

  • 00377___eef4e803f7c57845d580fe4c9d4b5164

  • 00378___145ecf5a2624540d6e8b3de4b9348fb3

  • 00379___f2e784f51fd71a9cdbcb26c94be0969e

  • 00380___7b4809907572afc66636bbcb90ec3e66

  • 00381___3bcec4b51782e9b96069a3bbebb4d9c5

  • 00382___6cfdb85fee69b6fc8b528a53ff4cea2a

  • 00383___5d65e34005718bb451610357b0b71b1d

  • 00384___4a15a736976009cf3d91f02db201f07c

  • 00385___1a0ce67c2f5490e73f2ecd073a8ce8f5

  • 00386___9b6ae806989887b0bb35dbf3e53dc5fa

  • 00387___b2690a5b264ad7346a6b4b93409e5390

  • 00388___03f0c22f3877b123eaa2be1a5f2681ce

  • 00389___3a982df3a1fda5453032ef53b70e16ec

  • 00390___e11fee26ffab5a816b585c285fa499fb

  • 00391___d97d29961c2385c546b4f1a902b31e45

  • 00392___cff92f86e681c95182ddaba551809b6b

  • 00393___14d327382f7ea4544ae422d4a46a4aeb

  • 00394___7a35ef85e66870f0c38d812bf8bc5a9c

  • 00395___91dd89b986a33394f554f7f3f45fba64

  • 00396___d6fc762ec24b18764cc7b9fb0a0ba6dc

  • 00397___a9301ec3361631dcdf9fc8ef40a15a7b

  • 00398___ae10f05ef92f1a3a40c0325e76af2ca5

  • 00399___4db93181b4ade7bdd0f6ab766ca9b2d8

  • 00400___59b93614dc8e86fb8b482050e771eed5

  • 00401___ce2f7ac8be50047ef274a5380736471e

  • 00402___613c72d7b7ab4cfc60db21024b2f4304

  • 00403___90657f105530223f7bf076387b93d020

  • 00404___ce166380dc20933d978ae808d17997f1

  • 00405___5440b4e831982a37a7897d6269559e94

  • 00406___31feb634b294bb544a914697cc007a40

  • 00407___81b29aea2d9d1c0ec9472639dc854967

  • 00408___1149b35b4907fa2485f1be1405cab629

  • 00409___d6c059e2fb10c1a6698309d9e1b19426

  • 00410___ec32261d40ba95d1335df3476beb2f73

  • 00411___79a59e3f4d2dee048b2cc271755f2f10

  • 00412___84866df055988a9d20271fc5a3a2589e

  • 00413___af14d61f6a16a6691d115c8c7fdb7739

  • 00414___f4ab6c85dbf39548fd5c19c433239fa2

  • 00415___27b09dd252ec427b61834941e284c09d

  • 00416___fdf0badeba48bfdeea9cb526fe7f8a8a

  • 00417___e8d99710b529aed53ade349c1b6afb21

  • 00418___eb46c90ba559ab993b13c27b7c66638f

  • 00419___406c2a6286a39c56ad8955ef7542d237

  • 00420___0bf8f9752406834e320e4258c8e3cf8a

  • 00421___da11ffc25aabc3872a1478211ab6b2b6

  • 00422___ece075efd8dc5aa5f7af8cb22b6b001e

  • 00423___c52aa46d6aca28a6ee86509d4ff70347

  • 00424___559119398e760cec909fdf9a40667938

  • 00425___dbe16631a2b9bdb4c26309d4a92274f2

  • 00426___8d4651605a298423ec19bed6764611e1

  • 00427___f834004289817b07e98a846a53f0f28c

  • 00428___91c7a43907a0b7874771c89ef1b64914

  • 00429___690ea3cdee5aa477c7ac23b991d62561

  • 00430___83636771b6c0fb7f1f080e869deac287

  • 00431___d9940b5cd2935dab1bd5853b6e9eb54b

  • 00432___bf7292f6e214a66406278f4aaa045fdc

  • 00433___841cbecbad4cb5262e7b049d6ad732f7

  • 00434___782580f32dc17ec1cfdf5e29f60ced60

  • 00435___c0c7779c0b4b7c3c747b7d912d051692

  • 00436___6c78deca2e52f25af13f00d04f386a8f

  • 00437___1c2e29bd7dbdd50a21cfe322eb0f0d8e

  • 00438___4bff9d248c7e26c8c18791eeae037cce

  • 00439___1b1047cafcfbf14be3a938507d93a40e

  • 00440___bf3682aa0f5f711386fb594fae61a65c

  • 00441___682f92adf1d806147625b13b3da783dc

  • 00442___f7751a293fe59dd2027848ec289990bd

  • 00443___5b38a028a2b0486d7cd97a751c8388ba

  • 00444___600e96d2fb791a62a1fe1e4901b39899

  • 00445___345415810d421e1ff264f946981d38de

  • 00446___6daa305b79a7f4c910a97ebd4dd6ddde

  • 00447___d91dbe29cb3d917a104e5ede8f934742

  • 00448___54ce872463b84708675a6f4460fde53a

  • 00449___78bda8a14869c95d7f836fffe7634eec

  • 00450___c54eb0b0203145e029ce7d1cbabf0033

  • 00451___cd04195536d24f1cbaa807083ffd198e

  • 00452___cf92e8e61a40cca87254dcd0ccf4397a

  • 00453___2a83d9eda2ac4c5ac3da7d85a2534f03

  • 00454___9b9fdfa8817f827f9109c5755c96349a

  • 00455___06bbdcfc22b3960170acccadb9229e0d

  • 00456___37bee355f07d8f1f84240ebf0ac934bc

  • 00457___10b3003e938c62d92c515698848c8229

  • 00458___da06cf571632a7c1326bb88c0d358498

  • 00459___22cfe32c899293aa1c4ab81322f2f7a0

  • 00460___c0cb76e593bd43716a4a8a021dab4ab2

  • 00461___c5386167ca534312331dcb22c950af53

  • 00462___623181dd7efdf25bceb5318f87a01300

  • 00463___e367962d6957f7e189ff4431fd5dfa25

  • 00464___89ece9bdeec5e24a260b5dfd2eefb177

  • 00465___dd3d00689c98e78258cd0540fe88a3bd

  • 00466___f03e6f55afc279df5dabc2357386daba

  • 00467___cd42d93c6acbdc6bf1edcdadb3c83760

  • 00468___190c41b166f45321a256ebec94e319ea

  • 00469___37628a9546ade7364efb0664d964a0c0

  • 00470___6b0c03cc8e65db5ff79b84d37925d7c7

  • 00471___8e160cf4a988d3a44b74f2758683d26f

  • 00472___360fb668d91e6d10a9f850197e875694

  • 00473___f8e16308fa13e63cece3a0bf5285ab53

  • 00474___a455c927a7e2e0e5f7ff872b46fa0124

  • 00475___e0de1a18df42ab09fee6191d8a9ec08a

  • 00476___3a1d3cdbb4c7b9c8c22117035734cf6a

  • 00477___cadcebbe7250b6c5977c327393278752

  • 00478___eb413fdd4fd2641389fc12c3205832d9

  • 00479___dac7deb3e8d07f9abb1f88e3c2699bdd

  • 00480___af895a41f0dc4effb6c4b458b9605916

  • 00481___7edb466201c92e61427c93ac9fe46b95

  • 00482___542486b96f0813bdcd2443cbe7b5fd96

  • 00483___07d52bcc0d877c75917c8d684ffdfcdf

  • 00484___f1ef83ffeb6238d0f4ba12e87b457289

  • 00485___02bc5545e4b40c5f1a59550e0017f405

  • 00486___c0b05f2a55dd58d5bb75b2c93e15069a

  • 00487___9dd760f45475dda57c7d4e22a41ca8d4

  • 00488___37377230aba0bd58cb026eb650a84ec7

  • 00489___610edabc3574805ed03675cb2569c986

  • 00490___c9b762686a63b991d8a7f0e531a60cb1

  • 00491___7d578bb84633c0b5078ee30bcc8bb92f

  • 00492___aac46419f07a35770331185807c47bd6

  • 00493___0e597605e0a9886284f11fa3a7a3c403

  • 00494___96c477add82d865fafaa902529e05abd

  • 00495___baac7b20ba590b3b11089730752470ad

  • 00496___bd555443c90245d1008f536166245095

  • 00497___ba37dea23bb3eb2456e8529e5e87a25a

  • 00498___62abeb79ceeff18d79ad8827d4f14dd0

  • 00499___5301f0020184ef2b4e0fe7d5150ebc0d

  • 00500___56ab8c4465537d218db548f2195cebf8

  • 00501___1556a5d8e3b76932c3fa0b581b7ccbdb

  • 00502___47344eb43e6f0a2d3b080db01b320841

  • 00503___77b725d33c6db5492bfa4ab41633feb9

  • 00504___2d215fce5c935015d3925a118a7f2837

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan