Tài liệu Sams Teach Yourself CSS in 24 Hours- P6 docx

50 803 0
Tài liệu Sams Teach Yourself CSS in 24 Hours- P6 docx

Đ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

18 0672324091 ch13 6/13/02 10:32 AM Page 232 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. HOUR 14 Lists Not all information is organized into paragraphs of text. Many types of Web content are actually lists of information, including navigation menus, prod- uct feature lists, glossaries, and step-by-step instructions. Because of the way information is read on the Web, the use of lists can be one of the most effective and direct methods of conveying information to an audience. Styling lists well can also enhance their usefulness. In this hour, you’ll learn •How lists are formatted in CSS • What the different types of lists are, and how they’re coded in HTML •How other elements can be displayed as lists •Which CSS properties change the shape and appearance of bullets •How to set the counting methods of numbered lists List Formatting Before I discuss how CSS browsers display lists, I’ll define some terms that will be important this hour. 19 0672324091 ch14 6/13/02 10:42 AM Page 233 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. A list is just a set of information that has been organized into discrete pieces called list items. A list can be ordered, which means that the order in which the items are presented is important, or it can be unordered, indicating that there isn’t any specific order to the items or that order isn’t important. A third type of list is the definition list (also called a dictionary list); these consist of pairs of shorter words and longer explanations. Types of HTML Lists Lists in HTML are usually indicated by appropriate list markup, which means a list tag such as <ol>, <ul>,or<dl> and then list items marked up with <li>,or<dt> and <dd> for definition lists. It’s also possible to create a list using non–list tags, such as <div> or <a>, and convert them into lists using CSS. Within a CSS context, an element is a list item if it has the display property value list- item. When that value is set, the element is treated as an <li> tag by the browser, no matter what the tag really is. The list-item value designates the element as a block ele- ment, except that it also allows for a list marker. A list marker is a symbol before each list item that indicates it’s a list. In Listing 14.1, you can see each of the three types of HTML lists, along with a fourth “list” done without using HTML list markup. LISTING 14.1 Four Lists in HTML <! lists-14.1.html > <html> <head><title>List-O-Rama</title></head> <body> <table border=”0” width=”100%”> <tr><td valign=”top” width=”50%”> <h2>Ordered List: Tallest Mountains</h2> <ol><li>Everest</li> <li>K2</li> <li>Kangchenjunga</li> <li>Lhotse</li> <li>Makalu</li> <li>Cho Oyu</li> <li>Dhaulagiri</li> </ol</td> <td valign=”top” width=”50%”> <h2>Unordered List: Flavors of Soda</h2> <ul><li>Peach</li> <li>Berry: <ul><li>Raspberry</li> <li>Blackberry</li> <li>Boysenberry</li> </ul></li> <li>Orange</li> <li>Kiwi</li> </ul></td> 234 Hour 14 19 0672324091 ch14 6/13/02 10:42 AM Page 234 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. </tr> <tr><td valign=”top” width=”50%”> <h2>Definition List: Common Abbreviations</h2> <dl> <! definition list > <dt>CSS</dt> <dd>Cascading Style Sheets</dd> <dt>HTML</dt> <dd>Hypertext Markup Language</dd> <dt>W3C</dt> <dd>World Wide Web Consortium</dd> </dl></td> <td valign=”top” width=”50%”> <h2>Non-List: Links</h2> <div id=”nav”> <! not done with list markup > <a href=”/”>Home</a> <a href=”info/”>Info</a> <a href=”shop/”>Shop</a> <a href=”map/”>Map</a> <a href=”contact/”>Contact</a> </div></td> </tr> </table></body></html> The four lists are shown in a browser in Figure 14.1; this HTML file will be used in the examples later this hour to illustrate how CSS can be used to style lists. Lists 235 14 FIGURE 14.1 Four different lists displayed by Netscape 6. LISTING 14.1 Continued 19 0672324091 ch14 6/13/02 10:42 AM Page 235 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Ordered (Numbered) Lists Ordered lists are displayed by putting a number marker of some kind before the list items. Usually number markers are ordinary numbers, such as 1, 2, 3, and so on, but later in this hour you’ll learn to change those to other counting methods. Examples of ordered lists include the top ten best-seller list at a bookstore or a set of instruc- tions for making a cake. In both cases, the specific order of the list items is significant. Ordered lists in HTML are created by the <ol> element, which contains <li> tags for each list item. 236 Hour 14 Users with visual disabilities often find ordered lists easier to navigate than unordered lists because they have a better sense of context; the numbers can be used to keep track of location in a list. Using ordered lists on your page is very helpful to these users. Unordered (Bulleted) Lists An unordered list is commonly displayed with a bullet marker. This is a symbol placed before each item of the list; it commonly looks like a solid circle. During this hour you’ll learn how to change the list bullet to other shapes or replace it with an image. Unordered list examples include a list of toppings you could order on a pizza or a roster of students in a class. Even though the class roster may have an order—usually alphabet- ical by last name—the order probably isn’t significant; it’s arbitrary. For example, the list isn’t ordered by the tallest or the shortest in the class. In most cases, the significance of a list’s order depends on how the list is meant to be used. A list’s order may not matter in one case but might in another. To create an unordered list in HTML, you use the <ul> element, and each bullet point gets an <li> tag. There are two other HTML tags that create bulleted lists, <dir> and <menu>,but these are deprecated in HTML 4, which means that you should use the <ul> tag instead, as newer browsers may not support the deprecated tags. Definition Lists Definition lists consist of pairs of content—a shorter term and a longer definition. The term is displayed first, and then the definition is displayed on a new line with an indented left margin. A definition list in HTML is created with the <dl> element, with several <dt> and <dd> tags inside it. 19 0672324091 ch14 6/13/02 10:42 AM Page 236 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. A definition list doesn’t have to be a glossary; although that’s a common use, it could be anything from a listing of features in a car to a menu of desserts that describes each treat. A definition list can be used whenever you have pairs of shorter text and longer explana- tions or descriptions of that text. Unlike the <li> tags in the <ol> or <ul> elements, the <dt> and <dd> tags do not have the property display set to list-item. Instead, they have the display value of block, although the <dd> tag usually has an extra margin-left value of 1.33em. Lists 237 14 Sometimes Web developers use the <ol>, <ul>, or <dl> tags to create indented texts or margins. Using structural tags, such as the list elements, for presentational effects like margins reduces the separation of content from presentation. To create margin effects, use the CSS properties in Hour 13, “Borders and Boxes,” not list markup. Changing List Type with display Using the CSS display property, you can override the default presentation of a tag and create a list from non–list elements or change a list into a nonlist. If you change the value of the display property, it changes only how it’s presented—block or inline—and in the case of the list-item value, it sets aside space for a marker. Changing the display property doesn’t affect any other values, such as the inherent margin- left on <ol> or <dd>. Examples of setting display properties can be seen in Listing 14.2, a style sheet to change the appearance of your HTML lists. Notice that I set margin-left values to remove the left margins when changing the display value to block, and I add margin- left when setting display: list-item. LISTING 14.2 Several Lists with Type Changed /* lists-14.2.css */ ul li { display: inline; } ol { margin-left: 0px; } ol li { display: block; } dd { display: list-item; margin-left: 0px; } div#nav a { text-decoration: none; margin-left: 2em; display: list-item; } 19 0672324091 ch14 6/13/02 10:42 AM Page 237 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. The effects of this style sheet can be seen in Figure 14.2, which applies the style sheet to the HTML lists from Listing 14.1. Because the type of list marker is not set, the exact marker used will vary from browser to browser, depending on what the browser chooses to use for a default; your browser may show some of the lists differently than in Figure 14.2. To ensure consistency across browsers, you’ll want to set the list item properties described later this hour whenever you change the display of an element to list-item. 238 Hour 14 FIGURE 14.2 Displaying alternate list formatting in Netscape 6. The list-style-type Property The type of list marker can be changed by using the list-style-type property. This property is used only on elements that have the display value of list-item,but it can be set on any tag, and the value will be inherited by children that are list items. Most commonly, it’s set on the <ol> or <ul> tags that enclose the <li> list items; this way you can set different styles for each list. The most common values for list-style-type are shown in Table 14.1; additional val- ues allow for internationalization of list markers and are discussed in Hour 20, “CSS for Printing.” The default value for <ol> is decimal, and for <ul> and lists created using display: list-item, the default is disc. 19 0672324091 ch14 6/13/02 10:42 AM Page 238 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. TABLE 14.1 Values for the list-style-type Property Value Effect circle A hollow circle bullet decimal Decimal number markers (1, 2, 3, . . .) decimal-leading-zero Decimal number markers with leading zeros (01, 02, 03, . . .) disc A solid circle bullet lower-alpha Lowercase alphanumeric markers (a, b, c, . . .) lower-roman Lowercase roman numeral markers (i, ii, iii, . . .) none Don’t display any marker before the list square A square bullet upper-alpha Uppercase alphanumeric markers (A, B, C, . . .) upper-roman Uppercase roman numeral markers (I, II, III, . . .) inherit Use the value of list-style-type from the containing box There are two types of values: those that set bullet markers, and those that set number markers. It is possible to set a bullet list-style-type for ordered lists or to set a num- ber marker on unordered lists, but generally speaking, this should be avoided. As a rule of thumb, you should use number markers only with ordered lists and bullet markers only with unordered lists. One list contained within another list is called a nested list. Most browsers will display nested, unordered lists by changing the bullet type from disc to circle and then to square. Using list-style-type you can control the marker with appropriate descendant rules. Topical outlines created using <ol> tags can be styled as well, like the following: ol { list-style-type: upper-roman; } ol ol { list-style-type: upper-alpha; } ol ol ol { list-style-type: decimal; } ol ol ol ol { list-style-type: lower-alpha; } ol ol ol ol ol { list-style-type: lower-roman; } A style sheet that changes list markers is shown in Listing 14.3. LISTING 14.3 Setting the list-style-type in CSS /* lists-14.3.css */ ol { list-style-type: upper-roman; } ul { list-style-type: square; } ul ul { list-style-type: circle; } Lists 239 14 continues 19 0672324091 ch14 6/13/02 10:42 AM Page 239 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. #nav a { display: list-item; margin-left: 2em; list-style-type: square; } The results of applying this style sheet to your sample lists can be seen in Figure 14.3. 240 Hour 14 FIGURE 14.3 Lists displayed in Netscape 6. Markers (bullet or number) are displayed with the same font characteristic as the list item. If you want to change a property—for example, the color—set the property on the list item, and then use a <span> or other inline element to change the text, like the following: <ol> <li><span>Noam Chomsky</span></li> </ol> To change the color of the list marker but not the list text, write rules like these, which put the number in red: ol { color: black; } ol li { color: red; } ol li span { color: black; } LISTING 14.3 Continued 19 0672324091 ch14 6/13/02 10:42 AM Page 240 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. The list-style-image Property You aren’t restricted to bullets that are circles or squares; you can actually use any image you like by using the list-style-image property. Naturally, you’ll want to use only small images, which can function as bullets, for this purpose; images that are too large will overwhelm the text. As an approximate rule, you should use bullets that are between 12 and 20 pixels in size. I created a simple one-bullet image in a graphics program by first creating a 16-pixel by 16-pixel blank image, then drawing a black circle, and then adding a green plus sign in the middle of it; this is shown in Figure 14.4. Lists 241 14 FIGURE 14.4 Creating a simple list bullet image. To use this image as a bullet, I simply need to set the list-style-image property in a rule, as in the following: selector { list-style-image: url(“graphic”); An example of a style sheet that uses bullet images is shown in Listing 14.4. Notice that I also set the list-style-type property to circle; if the image can’t be loaded for any reason, the circle will be displayed instead. 19 0672324091 ch14 12/3/02 12:18 PM Page 241 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. [...]... vertical cell-spacing, respectively inherit Uses the value(s) for border-spacing set on the containing box Styling Tables Warning for Internet Explorer Current versions of Internet Explorer for Macintosh and Windows do not support the border-spacing property Listing 15.5 is a style sheet that you can apply to your schedule from Listing 15.1; it displays the cells with a horizontal spacing of 0.45em and... CSS cascading order is followed Warning for Netscape 6, Internet Explorer (Mac) Neither Netscape 6 nor Internet Explorer on Macintosh supports the margincollapse property An example of collapsed borders is shown in Listing 15.4 This table has different border values for and elements in the table heading and body LISTING 15.4 Style Sheet to Collapse Borders between Cells /* schedule-15.4 .css. .. but have evolved to serve as a rudimentary page-layout sublanguage within HTML 248 Hour 15 In Hours 16, “Page Layout in CSS, ” and 17, “Advanced CSS Layout,” I’ll tell you how you can eliminate tables entirely from your Web designs and use pure CSS for the positioning of page elements In this hour, I’m going to assume that you are using tables either for data or layout; the properties here can be used... An example of a data table built using table row groups can be seen in Listing 15.1; this is an HTML file that contains a weekly listing of scheduled events In fact, it’s my current schedule, as I’m writing this book; you can assume that all other time is taken up with either writing or sleeping, and often with very little of the latter! Styling Tables LISTING 15.1 249 A Simple HTML Table in Figure 15.7 FIGURE 15.7 The effects of applying the columnar style sheet as shown in Internet Explorer Applying... a distinct box, with a background surrounding each one For example, a table meant to look like a telephone keypad would use separated borders In HTML, the spacing between cells is set by the cellspacing attribute; in CSS the same effect is accomplished by the border-spacing property The border-spacing property sets the distance between the outer edge of adjacent cells in other words, the spacing between... margins and padding to suit taste • Design several list bullet graphics for your Web pages, and add these using the liststyle-image property Which kinds of bullets are best at capturing the user’s attention? • Create a navigation bar in a layout table that consists of links changed to list items using display Add two list bullets—one for unvisited links, one for visited links HOUR 15 Styling Tables... schedule from Listing 15.1 can be seen in Figure 15.6; notice that the widths of the table and the caption are the same FIGURE 15.6 The caption displayed after the table in Netscape 6 Styling Columns As noted before, each cell in a table is part of a column in addition to being in a row Cascading Style Sheets can be used to affect the presentation of columns, but only within certain parameters If you... containing box will be inherited, so you can set it on or selectors, and it will apply to list items within them The effects of list-style-position are clarified in Listing 14.5 by adding border properties to make the list item display boxes clear LISTING 14.5 Setting the Position of the List Bullet or Number /* lists-14.5 .css */ ol { list-style-type: upper-roman; list-style-position: inside;... { text-align: right; } tbody td { text-align: center; } Applying this style sheet to the HTML file from Listing 15.1 gives the effects shown in Figure 15.8 Note that you also have aligned the table itself in the center, using the margin-left and margin-right values of auto FIGURE 15.8 Aligning cells horizontally in Opera 6 Styling Tables In addition to the normal left, right, center, and justify values . longer definition. The term is displayed first, and then the definition is displayed on a new line with an indented left margin. A definition list in HTML. margin- left when setting display: list-item. LISTING 14.2 Several Lists with Type Changed /* lists-14.2 .css */ ul li { display: inline; } ol { margin-left:

Ngày đăng: 21/01/2014, 16: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