[
  {
    "path": "2022.go",
    "content": "package chardet\n\nimport (\n\t\"bytes\"\n)\n\ntype recognizer2022 struct {\n\tcharset string\n\tescapes [][]byte\n}\n\nfunc (r *recognizer2022) Match(input *recognizerInput) (output recognizerOutput) {\n\treturn recognizerOutput{\n\t\tCharset:    r.charset,\n\t\tConfidence: r.matchConfidence(input.input),\n\t}\n}\n\nfunc (r *recognizer2022) matchConfidence(input []byte) int {\n\tvar hits, misses, shifts int\ninput:\n\tfor i := 0; i < len(input); i++ {\n\t\tc := input[i]\n\t\tif c == 0x1B {\n\t\t\tfor _, esc := range r.escapes {\n\t\t\t\tif bytes.HasPrefix(input[i+1:], esc) {\n\t\t\t\t\thits++\n\t\t\t\t\ti += len(esc)\n\t\t\t\t\tcontinue input\n\t\t\t\t}\n\t\t\t}\n\t\t\tmisses++\n\t\t} else if c == 0x0E || c == 0x0F {\n\t\t\tshifts++\n\t\t}\n\t}\n\tif hits == 0 {\n\t\treturn 0\n\t}\n\tquality := (100*hits - 100*misses) / (hits + misses)\n\tif hits+shifts < 5 {\n\t\tquality -= (5 - (hits + shifts)) * 10\n\t}\n\tif quality < 0 {\n\t\tquality = 0\n\t}\n\treturn quality\n}\n\nvar escapeSequences_2022JP = [][]byte{\n\t{0x24, 0x28, 0x43}, // KS X 1001:1992\n\t{0x24, 0x28, 0x44}, // JIS X 212-1990\n\t{0x24, 0x40},       // JIS C 6226-1978\n\t{0x24, 0x41},       // GB 2312-80\n\t{0x24, 0x42},       // JIS X 208-1983\n\t{0x26, 0x40},       // JIS X 208 1990, 1997\n\t{0x28, 0x42},       // ASCII\n\t{0x28, 0x48},       // JIS-Roman\n\t{0x28, 0x49},       // Half-width katakana\n\t{0x28, 0x4a},       // JIS-Roman\n\t{0x2e, 0x41},       // ISO 8859-1\n\t{0x2e, 0x46},       // ISO 8859-7\n}\n\nvar escapeSequences_2022KR = [][]byte{\n\t{0x24, 0x29, 0x43},\n}\n\nvar escapeSequences_2022CN = [][]byte{\n\t{0x24, 0x29, 0x41}, // GB 2312-80\n\t{0x24, 0x29, 0x47}, // CNS 11643-1992 Plane 1\n\t{0x24, 0x2A, 0x48}, // CNS 11643-1992 Plane 2\n\t{0x24, 0x29, 0x45}, // ISO-IR-165\n\t{0x24, 0x2B, 0x49}, // CNS 11643-1992 Plane 3\n\t{0x24, 0x2B, 0x4A}, // CNS 11643-1992 Plane 4\n\t{0x24, 0x2B, 0x4B}, // CNS 11643-1992 Plane 5\n\t{0x24, 0x2B, 0x4C}, // CNS 11643-1992 Plane 6\n\t{0x24, 0x2B, 0x4D}, // CNS 11643-1992 Plane 7\n\t{0x4e},             // SS2\n\t{0x4f},             // SS3\n}\n\nfunc newRecognizer_2022JP() *recognizer2022 {\n\treturn &recognizer2022{\n\t\t\"ISO-2022-JP\",\n\t\tescapeSequences_2022JP,\n\t}\n}\n\nfunc newRecognizer_2022KR() *recognizer2022 {\n\treturn &recognizer2022{\n\t\t\"ISO-2022-KR\",\n\t\tescapeSequences_2022KR,\n\t}\n}\n\nfunc newRecognizer_2022CN() *recognizer2022 {\n\treturn &recognizer2022{\n\t\t\"ISO-2022-CN\",\n\t\tescapeSequences_2022CN,\n\t}\n}\n"
  },
  {
    "path": "AUTHORS",
    "content": "Sheng Yu (yusheng dot sjtu at gmail dot com)\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright (c) 2012 chardet Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nPartial of the Software is derived from ICU project. See icu-license.html for\nlicense of the derivative portions.\n"
  },
  {
    "path": "README.md",
    "content": "# chardet\n\nchardet is library to automatically detect\n[charset](http://en.wikipedia.org/wiki/Character_encoding) of texts for [Go\nprogramming language](http://golang.org/). It's based on the algorithm and data\nin [ICU](http://icu-project.org/)'s implementation.\n\n## Documentation and Usage\n\nSee [pkgdoc](https://pkg.go.dev/github.com/saintfish/chardet)\n"
  },
  {
    "path": "detector.go",
    "content": "// Package chardet ports character set detection from ICU.\npackage chardet\n\nimport (\n\t\"errors\"\n\t\"sort\"\n)\n\n// Result contains all the information that charset detector gives.\ntype Result struct {\n\t// IANA name of the detected charset.\n\tCharset string\n\t// IANA name of the detected language. It may be empty for some charsets.\n\tLanguage string\n\t// Confidence of the Result. Scale from 1 to 100. The bigger, the more confident.\n\tConfidence int\n}\n\n// Detector implements charset detection.\ntype Detector struct {\n\trecognizers []recognizer\n\tstripTag    bool\n}\n\n// List of charset recognizers\nvar recognizers = []recognizer{\n\tnewRecognizer_utf8(),\n\tnewRecognizer_utf16be(),\n\tnewRecognizer_utf16le(),\n\tnewRecognizer_utf32be(),\n\tnewRecognizer_utf32le(),\n\tnewRecognizer_8859_1_en(),\n\tnewRecognizer_8859_1_da(),\n\tnewRecognizer_8859_1_de(),\n\tnewRecognizer_8859_1_es(),\n\tnewRecognizer_8859_1_fr(),\n\tnewRecognizer_8859_1_it(),\n\tnewRecognizer_8859_1_nl(),\n\tnewRecognizer_8859_1_no(),\n\tnewRecognizer_8859_1_pt(),\n\tnewRecognizer_8859_1_sv(),\n\tnewRecognizer_8859_2_cs(),\n\tnewRecognizer_8859_2_hu(),\n\tnewRecognizer_8859_2_pl(),\n\tnewRecognizer_8859_2_ro(),\n\tnewRecognizer_8859_5_ru(),\n\tnewRecognizer_8859_6_ar(),\n\tnewRecognizer_8859_7_el(),\n\tnewRecognizer_8859_8_I_he(),\n\tnewRecognizer_8859_8_he(),\n\tnewRecognizer_windows_1251(),\n\tnewRecognizer_windows_1256(),\n\tnewRecognizer_KOI8_R(),\n\tnewRecognizer_8859_9_tr(),\n\n\tnewRecognizer_sjis(),\n\tnewRecognizer_gb_18030(),\n\tnewRecognizer_euc_jp(),\n\tnewRecognizer_euc_kr(),\n\tnewRecognizer_big5(),\n\n\tnewRecognizer_2022JP(),\n\tnewRecognizer_2022KR(),\n\tnewRecognizer_2022CN(),\n\n\tnewRecognizer_IBM424_he_rtl(),\n\tnewRecognizer_IBM424_he_ltr(),\n\tnewRecognizer_IBM420_ar_rtl(),\n\tnewRecognizer_IBM420_ar_ltr(),\n}\n\n// NewTextDetector creates a Detector for plain text.\nfunc NewTextDetector() *Detector {\n\treturn &Detector{recognizers, false}\n}\n\n// NewHtmlDetector creates a Detector for Html.\nfunc NewHtmlDetector() *Detector {\n\treturn &Detector{recognizers, true}\n}\n\nvar (\n\tNotDetectedError = errors.New(\"Charset not detected.\")\n)\n\n// DetectBest returns the Result with highest Confidence.\nfunc (d *Detector) DetectBest(b []byte) (r *Result, err error) {\n\tvar all []Result\n\tif all, err = d.DetectAll(b); err == nil {\n\t\tr = &all[0]\n\t}\n\treturn\n}\n\n// DetectAll returns all Results which have non-zero Confidence. The Results are sorted by Confidence in descending order.\nfunc (d *Detector) DetectAll(b []byte) ([]Result, error) {\n\tinput := newRecognizerInput(b, d.stripTag)\n\toutputChan := make(chan recognizerOutput)\n\tfor _, r := range d.recognizers {\n\t\tgo matchHelper(r, input, outputChan)\n\t}\n\toutputs := make([]recognizerOutput, 0, len(d.recognizers))\n\tfor i := 0; i < len(d.recognizers); i++ {\n\t\to := <-outputChan\n\t\tif o.Confidence > 0 {\n\t\t\toutputs = append(outputs, o)\n\t\t}\n\t}\n\tif len(outputs) == 0 {\n\t\treturn nil, NotDetectedError\n\t}\n\n\tsort.Sort(recognizerOutputs(outputs))\n\tdedupOutputs := make([]Result, 0, len(outputs))\n\tfoundCharsets := make(map[string]struct{}, len(outputs))\n\tfor _, o := range outputs {\n\t\tif _, found := foundCharsets[o.Charset]; !found {\n\t\t\tdedupOutputs = append(dedupOutputs, Result(o))\n\t\t\tfoundCharsets[o.Charset] = struct{}{}\n\t\t}\n\t}\n\tif len(dedupOutputs) == 0 {\n\t\treturn nil, NotDetectedError\n\t}\n\treturn dedupOutputs, nil\n}\n\nfunc matchHelper(r recognizer, input *recognizerInput, outputChan chan<- recognizerOutput) {\n\toutputChan <- r.Match(input)\n}\n\ntype recognizerOutputs []recognizerOutput\n\nfunc (r recognizerOutputs) Len() int           { return len(r) }\nfunc (r recognizerOutputs) Less(i, j int) bool { return r[i].Confidence > r[j].Confidence }\nfunc (r recognizerOutputs) Swap(i, j int)      { r[i], r[j] = r[j], r[i] }\n"
  },
  {
    "path": "detector_test.go",
    "content": "package chardet_test\n\nimport (\n\t\"github.com/saintfish/chardet\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n)\n\nfunc TestDetector(t *testing.T) {\n\ttype file_charset_language struct {\n\t\tFile     string\n\t\tIsHtml   bool\n\t\tCharset  string\n\t\tLanguage string\n\t}\n\tvar data = []file_charset_language{\n\t\t{\"utf8.html\", true, \"UTF-8\", \"\"},\n\t\t{\"utf8_bom.html\", true, \"UTF-8\", \"\"},\n\t\t{\"8859_1_en.html\", true, \"ISO-8859-1\", \"en\"},\n\t\t{\"8859_1_da.html\", true, \"ISO-8859-1\", \"da\"},\n\t\t{\"8859_1_de.html\", true, \"ISO-8859-1\", \"de\"},\n\t\t{\"8859_1_es.html\", true, \"ISO-8859-1\", \"es\"},\n\t\t{\"8859_1_fr.html\", true, \"ISO-8859-1\", \"fr\"},\n\t\t{\"8859_1_pt.html\", true, \"ISO-8859-1\", \"pt\"},\n\t\t{\"shift_jis.html\", true, \"Shift_JIS\", \"ja\"},\n\t\t{\"gb18030.html\", true, \"GB-18030\", \"zh\"},\n\t\t{\"euc_jp.html\", true, \"EUC-JP\", \"ja\"},\n\t\t{\"euc_kr.html\", true, \"EUC-KR\", \"ko\"},\n\t\t{\"big5.html\", true, \"Big5\", \"zh\"},\n\t}\n\n\ttextDetector := chardet.NewTextDetector()\n\thtmlDetector := chardet.NewHtmlDetector()\n\tbuffer := make([]byte, 32<<10)\n\tfor _, d := range data {\n\t\tf, err := os.Open(filepath.Join(\"testdata\", d.File))\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tdefer f.Close()\n\t\tsize, _ := io.ReadFull(f, buffer)\n\t\tinput := buffer[:size]\n\t\tvar detector = textDetector\n\t\tif d.IsHtml {\n\t\t\tdetector = htmlDetector\n\t\t}\n\t\tresult, err := detector.DetectBest(input)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tif result.Charset != d.Charset {\n\t\t\tt.Errorf(\"Expected charset %s, actual %s\", d.Charset, result.Charset)\n\t\t}\n\t\tif result.Language != d.Language {\n\t\t\tt.Errorf(\"Expected language %s, actual %s\", d.Language, result.Language)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "example_test.go",
    "content": "package chardet_test\n\nimport (\n\t\"fmt\"\n\t\"github.com/saintfish/chardet\"\n)\n\nvar (\n\tzh_gb18030_text = []byte{\n\t\t71, 111, 202, 199, 71, 111, 111, 103, 108, 101, 233, 95, 176, 108, 181, 196, 210, 187, 214, 214, 190, 142, 215, 103, 208, 205, 163, 172, 129, 75, 176, 108,\n\t\t208, 205, 163, 172, 178, 162, 190, 223, 211, 208, 192, 172, 187, 248, 187, 216, 202, 213, 185, 166, 196, 220, 181, 196, 177, 224, 179, 204, 211, 239, 209, 212,\n\t\t161, 163, 10,\n\t}\n)\n\nfunc ExampleTextDetector() {\n\tdetector := chardet.NewTextDetector()\n\tresult, err := detector.DetectBest(zh_gb18030_text)\n\tif err == nil {\n\t\tfmt.Printf(\n\t\t\t\"Detected charset is %s, language is %s\",\n\t\t\tresult.Charset,\n\t\t\tresult.Language)\n\t}\n\t// Output:\n\t// Detected charset is GB-18030, language is zh\n}\n"
  },
  {
    "path": "icu-license.html",
    "content": "<html>\n\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\"></meta>\n<title>ICU License - ICU 1.8.1 and later</title>\n</head>\n\n<body BGCOLOR=\"#ffffff\">\n<h2>ICU License - ICU 1.8.1 and later</h2>\n\n<p>COPYRIGHT AND PERMISSION NOTICE</p>\n\n<p>\nCopyright (c) 1995-2012 International Business Machines Corporation and others\n</p>\n<p>\nAll rights reserved.\n</p>\n<p>\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, and/or sell\ncopies of the Software, and to permit persons\nto whom the Software is furnished to do so, provided that the above\ncopyright notice(s) and this permission notice appear in all copies\nof the Software and that both the above copyright notice(s) and this\npermission notice appear in supporting documentation.\n</p>\n<p>\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, \nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL\nTHE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM,\nOR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER\nRESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,\nNEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n</p>\n<p>\nExcept as contained in this notice, the name of a copyright holder shall not be\nused in advertising or otherwise to promote the sale, use or other dealings in\nthis Software without prior written authorization of the copyright holder.\n</p>\n\n<hr>\n<p><small>\nAll trademarks and registered trademarks mentioned herein are the property of their respective owners.\n</small></p>\n</body>\n</html>\n"
  },
  {
    "path": "multi_byte.go",
    "content": "package chardet\n\nimport (\n\t\"errors\"\n\t\"math\"\n)\n\ntype recognizerMultiByte struct {\n\tcharset     string\n\tlanguage    string\n\tdecoder     charDecoder\n\tcommonChars []uint16\n}\n\ntype charDecoder interface {\n\tDecodeOneChar([]byte) (c uint16, remain []byte, err error)\n}\n\nfunc (r *recognizerMultiByte) Match(input *recognizerInput) (output recognizerOutput) {\n\treturn recognizerOutput{\n\t\tCharset:    r.charset,\n\t\tLanguage:   r.language,\n\t\tConfidence: r.matchConfidence(input),\n\t}\n}\n\nfunc (r *recognizerMultiByte) matchConfidence(input *recognizerInput) int {\n\traw := input.raw\n\tvar c uint16\n\tvar err error\n\tvar totalCharCount, badCharCount, singleByteCharCount, doubleByteCharCount, commonCharCount int\n\tfor c, raw, err = r.decoder.DecodeOneChar(raw); len(raw) > 0; c, raw, err = r.decoder.DecodeOneChar(raw) {\n\t\ttotalCharCount++\n\t\tif err != nil {\n\t\t\tbadCharCount++\n\t\t} else if c <= 0xFF {\n\t\t\tsingleByteCharCount++\n\t\t} else {\n\t\t\tdoubleByteCharCount++\n\t\t\tif r.commonChars != nil && binarySearch(r.commonChars, c) {\n\t\t\t\tcommonCharCount++\n\t\t\t}\n\t\t}\n\t\tif badCharCount >= 2 && badCharCount*5 >= doubleByteCharCount {\n\t\t\treturn 0\n\t\t}\n\t}\n\n\tif doubleByteCharCount <= 10 && badCharCount == 0 {\n\t\tif doubleByteCharCount == 0 && totalCharCount < 10 {\n\t\t\treturn 0\n\t\t} else {\n\t\t\treturn 10\n\t\t}\n\t}\n\n\tif doubleByteCharCount < 20*badCharCount {\n\t\treturn 0\n\t}\n\tif r.commonChars == nil {\n\t\tconfidence := 30 + doubleByteCharCount - 20*badCharCount\n\t\tif confidence > 100 {\n\t\t\tconfidence = 100\n\t\t}\n\t\treturn confidence\n\t}\n\tmaxVal := math.Log(float64(doubleByteCharCount) / 4)\n\tscaleFactor := 90 / maxVal\n\tconfidence := int(math.Log(float64(commonCharCount)+1)*scaleFactor + 10)\n\tif confidence > 100 {\n\t\tconfidence = 100\n\t}\n\tif confidence < 0 {\n\t\tconfidence = 0\n\t}\n\treturn confidence\n}\n\nfunc binarySearch(l []uint16, c uint16) bool {\n\tstart := 0\n\tend := len(l) - 1\n\tfor start <= end {\n\t\tmid := (start + end) / 2\n\t\tif c == l[mid] {\n\t\t\treturn true\n\t\t} else if c < l[mid] {\n\t\t\tend = mid - 1\n\t\t} else {\n\t\t\tstart = mid + 1\n\t\t}\n\t}\n\treturn false\n}\n\nvar eobError = errors.New(\"End of input buffer\")\nvar badCharError = errors.New(\"Decode a bad char\")\n\ntype charDecoder_sjis struct {\n}\n\nfunc (charDecoder_sjis) DecodeOneChar(input []byte) (c uint16, remain []byte, err error) {\n\tif len(input) == 0 {\n\t\treturn 0, nil, eobError\n\t}\n\tfirst := input[0]\n\tc = uint16(first)\n\tremain = input[1:]\n\tif first <= 0x7F || (first > 0xA0 && first <= 0xDF) {\n\t\treturn\n\t}\n\tif len(remain) == 0 {\n\t\treturn c, remain, badCharError\n\t}\n\tsecond := remain[0]\n\tremain = remain[1:]\n\tc = c<<8 | uint16(second)\n\tif (second >= 0x40 && second <= 0x7F) || (second >= 0x80 && second <= 0xFE) {\n\t} else {\n\t\terr = badCharError\n\t}\n\treturn\n}\n\nvar commonChars_sjis = []uint16{\n\t0x8140, 0x8141, 0x8142, 0x8145, 0x815b, 0x8169, 0x816a, 0x8175, 0x8176, 0x82a0,\n\t0x82a2, 0x82a4, 0x82a9, 0x82aa, 0x82ab, 0x82ad, 0x82af, 0x82b1, 0x82b3, 0x82b5,\n\t0x82b7, 0x82bd, 0x82be, 0x82c1, 0x82c4, 0x82c5, 0x82c6, 0x82c8, 0x82c9, 0x82cc,\n\t0x82cd, 0x82dc, 0x82e0, 0x82e7, 0x82e8, 0x82e9, 0x82ea, 0x82f0, 0x82f1, 0x8341,\n\t0x8343, 0x834e, 0x834f, 0x8358, 0x835e, 0x8362, 0x8367, 0x8375, 0x8376, 0x8389,\n\t0x838a, 0x838b, 0x838d, 0x8393, 0x8e96, 0x93fa, 0x95aa,\n}\n\nfunc newRecognizer_sjis() *recognizerMultiByte {\n\treturn &recognizerMultiByte{\n\t\t\"Shift_JIS\",\n\t\t\"ja\",\n\t\tcharDecoder_sjis{},\n\t\tcommonChars_sjis,\n\t}\n}\n\ntype charDecoder_euc struct {\n}\n\nfunc (charDecoder_euc) DecodeOneChar(input []byte) (c uint16, remain []byte, err error) {\n\tif len(input) == 0 {\n\t\treturn 0, nil, eobError\n\t}\n\tfirst := input[0]\n\tremain = input[1:]\n\tc = uint16(first)\n\tif first <= 0x8D {\n\t\treturn uint16(first), remain, nil\n\t}\n\tif len(remain) == 0 {\n\t\treturn 0, nil, eobError\n\t}\n\tsecond := remain[0]\n\tremain = remain[1:]\n\tc = c<<8 | uint16(second)\n\tif first >= 0xA1 && first <= 0xFE {\n\t\tif second < 0xA1 {\n\t\t\terr = badCharError\n\t\t}\n\t\treturn\n\t}\n\tif first == 0x8E {\n\t\tif second < 0xA1 {\n\t\t\terr = badCharError\n\t\t}\n\t\treturn\n\t}\n\tif first == 0x8F {\n\t\tif len(remain) == 0 {\n\t\t\treturn 0, nil, eobError\n\t\t}\n\t\tthird := remain[0]\n\t\tremain = remain[1:]\n\t\tc = c<<0 | uint16(third)\n\t\tif third < 0xa1 {\n\t\t\terr = badCharError\n\t\t}\n\t}\n\treturn\n}\n\nvar commonChars_euc_jp = []uint16{\n\t0xa1a1, 0xa1a2, 0xa1a3, 0xa1a6, 0xa1bc, 0xa1ca, 0xa1cb, 0xa1d6, 0xa1d7, 0xa4a2,\n\t0xa4a4, 0xa4a6, 0xa4a8, 0xa4aa, 0xa4ab, 0xa4ac, 0xa4ad, 0xa4af, 0xa4b1, 0xa4b3,\n\t0xa4b5, 0xa4b7, 0xa4b9, 0xa4bb, 0xa4bd, 0xa4bf, 0xa4c0, 0xa4c1, 0xa4c3, 0xa4c4,\n\t0xa4c6, 0xa4c7, 0xa4c8, 0xa4c9, 0xa4ca, 0xa4cb, 0xa4ce, 0xa4cf, 0xa4d0, 0xa4de,\n\t0xa4df, 0xa4e1, 0xa4e2, 0xa4e4, 0xa4e8, 0xa4e9, 0xa4ea, 0xa4eb, 0xa4ec, 0xa4ef,\n\t0xa4f2, 0xa4f3, 0xa5a2, 0xa5a3, 0xa5a4, 0xa5a6, 0xa5a7, 0xa5aa, 0xa5ad, 0xa5af,\n\t0xa5b0, 0xa5b3, 0xa5b5, 0xa5b7, 0xa5b8, 0xa5b9, 0xa5bf, 0xa5c3, 0xa5c6, 0xa5c7,\n\t0xa5c8, 0xa5c9, 0xa5cb, 0xa5d0, 0xa5d5, 0xa5d6, 0xa5d7, 0xa5de, 0xa5e0, 0xa5e1,\n\t0xa5e5, 0xa5e9, 0xa5ea, 0xa5eb, 0xa5ec, 0xa5ed, 0xa5f3, 0xb8a9, 0xb9d4, 0xbaee,\n\t0xbbc8, 0xbef0, 0xbfb7, 0xc4ea, 0xc6fc, 0xc7bd, 0xcab8, 0xcaf3, 0xcbdc, 0xcdd1,\n}\n\nvar commonChars_euc_kr = []uint16{\n\t0xb0a1, 0xb0b3, 0xb0c5, 0xb0cd, 0xb0d4, 0xb0e6, 0xb0ed, 0xb0f8, 0xb0fa, 0xb0fc,\n\t0xb1b8, 0xb1b9, 0xb1c7, 0xb1d7, 0xb1e2, 0xb3aa, 0xb3bb, 0xb4c2, 0xb4cf, 0xb4d9,\n\t0xb4eb, 0xb5a5, 0xb5b5, 0xb5bf, 0xb5c7, 0xb5e9, 0xb6f3, 0xb7af, 0xb7c2, 0xb7ce,\n\t0xb8a6, 0xb8ae, 0xb8b6, 0xb8b8, 0xb8bb, 0xb8e9, 0xb9ab, 0xb9ae, 0xb9cc, 0xb9ce,\n\t0xb9fd, 0xbab8, 0xbace, 0xbad0, 0xbaf1, 0xbbe7, 0xbbf3, 0xbbfd, 0xbcad, 0xbcba,\n\t0xbcd2, 0xbcf6, 0xbdba, 0xbdc0, 0xbdc3, 0xbdc5, 0xbec6, 0xbec8, 0xbedf, 0xbeee,\n\t0xbef8, 0xbefa, 0xbfa1, 0xbfa9, 0xbfc0, 0xbfe4, 0xbfeb, 0xbfec, 0xbff8, 0xc0a7,\n\t0xc0af, 0xc0b8, 0xc0ba, 0xc0bb, 0xc0bd, 0xc0c7, 0xc0cc, 0xc0ce, 0xc0cf, 0xc0d6,\n\t0xc0da, 0xc0e5, 0xc0fb, 0xc0fc, 0xc1a4, 0xc1a6, 0xc1b6, 0xc1d6, 0xc1df, 0xc1f6,\n\t0xc1f8, 0xc4a1, 0xc5cd, 0xc6ae, 0xc7cf, 0xc7d1, 0xc7d2, 0xc7d8, 0xc7e5, 0xc8ad,\n}\n\nfunc newRecognizer_euc_jp() *recognizerMultiByte {\n\treturn &recognizerMultiByte{\n\t\t\"EUC-JP\",\n\t\t\"ja\",\n\t\tcharDecoder_euc{},\n\t\tcommonChars_euc_jp,\n\t}\n}\n\nfunc newRecognizer_euc_kr() *recognizerMultiByte {\n\treturn &recognizerMultiByte{\n\t\t\"EUC-KR\",\n\t\t\"ko\",\n\t\tcharDecoder_euc{},\n\t\tcommonChars_euc_kr,\n\t}\n}\n\ntype charDecoder_big5 struct {\n}\n\nfunc (charDecoder_big5) DecodeOneChar(input []byte) (c uint16, remain []byte, err error) {\n\tif len(input) == 0 {\n\t\treturn 0, nil, eobError\n\t}\n\tfirst := input[0]\n\tremain = input[1:]\n\tc = uint16(first)\n\tif first <= 0x7F || first == 0xFF {\n\t\treturn\n\t}\n\tif len(remain) == 0 {\n\t\treturn c, nil, eobError\n\t}\n\tsecond := remain[0]\n\tremain = remain[1:]\n\tc = c<<8 | uint16(second)\n\tif second < 0x40 || second == 0x7F || second == 0xFF {\n\t\terr = badCharError\n\t}\n\treturn\n}\n\nvar commonChars_big5 = []uint16{\n\t0xa140, 0xa141, 0xa142, 0xa143, 0xa147, 0xa149, 0xa175, 0xa176, 0xa440, 0xa446,\n\t0xa447, 0xa448, 0xa451, 0xa454, 0xa457, 0xa464, 0xa46a, 0xa46c, 0xa477, 0xa4a3,\n\t0xa4a4, 0xa4a7, 0xa4c1, 0xa4ce, 0xa4d1, 0xa4df, 0xa4e8, 0xa4fd, 0xa540, 0xa548,\n\t0xa558, 0xa569, 0xa5cd, 0xa5e7, 0xa657, 0xa661, 0xa662, 0xa668, 0xa670, 0xa6a8,\n\t0xa6b3, 0xa6b9, 0xa6d3, 0xa6db, 0xa6e6, 0xa6f2, 0xa740, 0xa751, 0xa759, 0xa7da,\n\t0xa8a3, 0xa8a5, 0xa8ad, 0xa8d1, 0xa8d3, 0xa8e4, 0xa8fc, 0xa9c0, 0xa9d2, 0xa9f3,\n\t0xaa6b, 0xaaba, 0xaabe, 0xaacc, 0xaafc, 0xac47, 0xac4f, 0xacb0, 0xacd2, 0xad59,\n\t0xaec9, 0xafe0, 0xb0ea, 0xb16f, 0xb2b3, 0xb2c4, 0xb36f, 0xb44c, 0xb44e, 0xb54c,\n\t0xb5a5, 0xb5bd, 0xb5d0, 0xb5d8, 0xb671, 0xb7ed, 0xb867, 0xb944, 0xbad8, 0xbb44,\n\t0xbba1, 0xbdd1, 0xc2c4, 0xc3b9, 0xc440, 0xc45f,\n}\n\nfunc newRecognizer_big5() *recognizerMultiByte {\n\treturn &recognizerMultiByte{\n\t\t\"Big5\",\n\t\t\"zh\",\n\t\tcharDecoder_big5{},\n\t\tcommonChars_big5,\n\t}\n}\n\ntype charDecoder_gb_18030 struct {\n}\n\nfunc (charDecoder_gb_18030) DecodeOneChar(input []byte) (c uint16, remain []byte, err error) {\n\tif len(input) == 0 {\n\t\treturn 0, nil, eobError\n\t}\n\tfirst := input[0]\n\tremain = input[1:]\n\tc = uint16(first)\n\tif first <= 0x80 {\n\t\treturn\n\t}\n\tif len(remain) == 0 {\n\t\treturn 0, nil, eobError\n\t}\n\tsecond := remain[0]\n\tremain = remain[1:]\n\tc = c<<8 | uint16(second)\n\tif first >= 0x81 && first <= 0xFE {\n\t\tif (second >= 0x40 && second <= 0x7E) || (second >= 0x80 && second <= 0xFE) {\n\t\t\treturn\n\t\t}\n\n\t\tif second >= 0x30 && second <= 0x39 {\n\t\t\tif len(remain) == 0 {\n\t\t\t\treturn 0, nil, eobError\n\t\t\t}\n\t\t\tthird := remain[0]\n\t\t\tremain = remain[1:]\n\t\t\tif third >= 0x81 && third <= 0xFE {\n\t\t\t\tif len(remain) == 0 {\n\t\t\t\t\treturn 0, nil, eobError\n\t\t\t\t}\n\t\t\t\tfourth := remain[0]\n\t\t\t\tremain = remain[1:]\n\t\t\t\tif fourth >= 0x30 && fourth <= 0x39 {\n\t\t\t\t\tc = c<<16 | uint16(third)<<8 | uint16(fourth)\n\t\t\t\t\treturn\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terr = badCharError\n\t}\n\treturn\n}\n\nvar commonChars_gb_18030 = []uint16{\n\t0xa1a1, 0xa1a2, 0xa1a3, 0xa1a4, 0xa1b0, 0xa1b1, 0xa1f1, 0xa1f3, 0xa3a1, 0xa3ac,\n\t0xa3ba, 0xb1a8, 0xb1b8, 0xb1be, 0xb2bb, 0xb3c9, 0xb3f6, 0xb4f3, 0xb5bd, 0xb5c4,\n\t0xb5e3, 0xb6af, 0xb6d4, 0xb6e0, 0xb7a2, 0xb7a8, 0xb7bd, 0xb7d6, 0xb7dd, 0xb8b4,\n\t0xb8df, 0xb8f6, 0xb9ab, 0xb9c9, 0xb9d8, 0xb9fa, 0xb9fd, 0xbacd, 0xbba7, 0xbbd6,\n\t0xbbe1, 0xbbfa, 0xbcbc, 0xbcdb, 0xbcfe, 0xbdcc, 0xbecd, 0xbedd, 0xbfb4, 0xbfc6,\n\t0xbfc9, 0xc0b4, 0xc0ed, 0xc1cb, 0xc2db, 0xc3c7, 0xc4dc, 0xc4ea, 0xc5cc, 0xc6f7,\n\t0xc7f8, 0xc8ab, 0xc8cb, 0xc8d5, 0xc8e7, 0xc9cf, 0xc9fa, 0xcab1, 0xcab5, 0xcac7,\n\t0xcad0, 0xcad6, 0xcaf5, 0xcafd, 0xccec, 0xcdf8, 0xceaa, 0xcec4, 0xced2, 0xcee5,\n\t0xcfb5, 0xcfc2, 0xcfd6, 0xd0c2, 0xd0c5, 0xd0d0, 0xd0d4, 0xd1a7, 0xd2aa, 0xd2b2,\n\t0xd2b5, 0xd2bb, 0xd2d4, 0xd3c3, 0xd3d0, 0xd3fd, 0xd4c2, 0xd4da, 0xd5e2, 0xd6d0,\n}\n\nfunc newRecognizer_gb_18030() *recognizerMultiByte {\n\treturn &recognizerMultiByte{\n\t\t\"GB-18030\",\n\t\t\"zh\",\n\t\tcharDecoder_gb_18030{},\n\t\tcommonChars_gb_18030,\n\t}\n}\n"
  },
  {
    "path": "recognizer.go",
    "content": "package chardet\n\ntype recognizer interface {\n\tMatch(*recognizerInput) recognizerOutput\n}\n\ntype recognizerOutput Result\n\ntype recognizerInput struct {\n\traw         []byte\n\tinput       []byte\n\ttagStripped bool\n\tbyteStats   []int\n\thasC1Bytes  bool\n}\n\nfunc newRecognizerInput(raw []byte, stripTag bool) *recognizerInput {\n\tinput, stripped := mayStripInput(raw, stripTag)\n\tbyteStats := computeByteStats(input)\n\treturn &recognizerInput{\n\t\traw:         raw,\n\t\tinput:       input,\n\t\ttagStripped: stripped,\n\t\tbyteStats:   byteStats,\n\t\thasC1Bytes:  computeHasC1Bytes(byteStats),\n\t}\n}\n\nfunc mayStripInput(raw []byte, stripTag bool) (out []byte, stripped bool) {\n\tconst inputBufferSize = 8192\n\tout = make([]byte, 0, inputBufferSize)\n\tvar badTags, openTags int32\n\tvar inMarkup bool = false\n\tstripped = false\n\tif stripTag {\n\t\tstripped = true\n\t\tfor _, c := range raw {\n\t\t\tif c == '<' {\n\t\t\t\tif inMarkup {\n\t\t\t\t\tbadTags += 1\n\t\t\t\t}\n\t\t\t\tinMarkup = true\n\t\t\t\topenTags += 1\n\t\t\t}\n\t\t\tif !inMarkup {\n\t\t\t\tout = append(out, c)\n\t\t\t\tif len(out) >= inputBufferSize {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif c == '>' {\n\t\t\t\tinMarkup = false\n\t\t\t}\n\t\t}\n\t}\n\tif openTags < 5 || openTags/5 < badTags || (len(out) < 100 && len(raw) > 600) {\n\t\tlimit := len(raw)\n\t\tif limit > inputBufferSize {\n\t\t\tlimit = inputBufferSize\n\t\t}\n\t\tout = make([]byte, limit)\n\t\tcopy(out, raw[:limit])\n\t\tstripped = false\n\t}\n\treturn\n}\n\nfunc computeByteStats(input []byte) []int {\n\tr := make([]int, 256)\n\tfor _, c := range input {\n\t\tr[c] += 1\n\t}\n\treturn r\n}\n\nfunc computeHasC1Bytes(byteStats []int) bool {\n\tfor _, count := range byteStats[0x80 : 0x9F+1] {\n\t\tif count > 0 {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "single_byte.go",
    "content": "package chardet\n\n// Recognizer for single byte charset family\ntype recognizerSingleByte struct {\n\tcharset          string\n\thasC1ByteCharset string\n\tlanguage         string\n\tcharMap          *[256]byte\n\tngram            *[64]uint32\n}\n\nfunc (r *recognizerSingleByte) Match(input *recognizerInput) recognizerOutput {\n\tvar charset string = r.charset\n\tif input.hasC1Bytes && len(r.hasC1ByteCharset) > 0 {\n\t\tcharset = r.hasC1ByteCharset\n\t}\n\treturn recognizerOutput{\n\t\tCharset:    charset,\n\t\tLanguage:   r.language,\n\t\tConfidence: r.parseNgram(input.input),\n\t}\n}\n\ntype ngramState struct {\n\tngram                uint32\n\tignoreSpace          bool\n\tngramCount, ngramHit uint32\n\ttable                *[64]uint32\n}\n\nfunc newNgramState(table *[64]uint32) *ngramState {\n\treturn &ngramState{\n\t\tngram:       0,\n\t\tignoreSpace: false,\n\t\tngramCount:  0,\n\t\tngramHit:    0,\n\t\ttable:       table,\n\t}\n}\n\nfunc (s *ngramState) AddByte(b byte) {\n\tconst ngramMask = 0xFFFFFF\n\tif !(b == 0x20 && s.ignoreSpace) {\n\t\ts.ngram = ((s.ngram << 8) | uint32(b)) & ngramMask\n\t\ts.ignoreSpace = (s.ngram == 0x20)\n\t\ts.ngramCount++\n\t\tif s.lookup() {\n\t\t\ts.ngramHit++\n\t\t}\n\t}\n\ts.ignoreSpace = (b == 0x20)\n}\n\nfunc (s *ngramState) HitRate() float32 {\n\tif s.ngramCount == 0 {\n\t\treturn 0\n\t}\n\treturn float32(s.ngramHit) / float32(s.ngramCount)\n}\n\nfunc (s *ngramState) lookup() bool {\n\tvar index int\n\tif s.table[index+32] <= s.ngram {\n\t\tindex += 32\n\t}\n\tif s.table[index+16] <= s.ngram {\n\t\tindex += 16\n\t}\n\tif s.table[index+8] <= s.ngram {\n\t\tindex += 8\n\t}\n\tif s.table[index+4] <= s.ngram {\n\t\tindex += 4\n\t}\n\tif s.table[index+2] <= s.ngram {\n\t\tindex += 2\n\t}\n\tif s.table[index+1] <= s.ngram {\n\t\tindex += 1\n\t}\n\tif s.table[index] > s.ngram {\n\t\tindex -= 1\n\t}\n\tif index < 0 || s.table[index] != s.ngram {\n\t\treturn false\n\t}\n\treturn true\n}\n\nfunc (r *recognizerSingleByte) parseNgram(input []byte) int {\n\tstate := newNgramState(r.ngram)\n\tfor _, inChar := range input {\n\t\tc := r.charMap[inChar]\n\t\tif c != 0 {\n\t\t\tstate.AddByte(c)\n\t\t}\n\t}\n\tstate.AddByte(0x20)\n\trate := state.HitRate()\n\tif rate > 0.33 {\n\t\treturn 98\n\t}\n\treturn int(rate * 300)\n}\n\nvar charMap_8859_1 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0xAA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0xB5, 0x20, 0x20,\n\t0x20, 0x20, 0xBA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0x20,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0x20,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF,\n}\n\nvar ngrams_8859_1_en = [64]uint32{\n\t0x206120, 0x20616E, 0x206265, 0x20636F, 0x20666F, 0x206861, 0x206865, 0x20696E, 0x206D61, 0x206F66, 0x207072, 0x207265, 0x207361, 0x207374, 0x207468, 0x20746F,\n\t0x207768, 0x616964, 0x616C20, 0x616E20, 0x616E64, 0x617320, 0x617420, 0x617465, 0x617469, 0x642061, 0x642074, 0x652061, 0x652073, 0x652074, 0x656420, 0x656E74,\n\t0x657220, 0x657320, 0x666F72, 0x686174, 0x686520, 0x686572, 0x696420, 0x696E20, 0x696E67, 0x696F6E, 0x697320, 0x6E2061, 0x6E2074, 0x6E6420, 0x6E6720, 0x6E7420,\n\t0x6F6620, 0x6F6E20, 0x6F7220, 0x726520, 0x727320, 0x732061, 0x732074, 0x736169, 0x737420, 0x742074, 0x746572, 0x746861, 0x746865, 0x74696F, 0x746F20, 0x747320,\n}\n\nvar ngrams_8859_1_da = [64]uint32{\n\t0x206166, 0x206174, 0x206465, 0x20656E, 0x206572, 0x20666F, 0x206861, 0x206920, 0x206D65, 0x206F67, 0x2070E5, 0x207369, 0x207374, 0x207469, 0x207669, 0x616620,\n\t0x616E20, 0x616E64, 0x617220, 0x617420, 0x646520, 0x64656E, 0x646572, 0x646574, 0x652073, 0x656420, 0x656465, 0x656E20, 0x656E64, 0x657220, 0x657265, 0x657320,\n\t0x657420, 0x666F72, 0x676520, 0x67656E, 0x676572, 0x696765, 0x696C20, 0x696E67, 0x6B6520, 0x6B6B65, 0x6C6572, 0x6C6967, 0x6C6C65, 0x6D6564, 0x6E6465, 0x6E6520,\n\t0x6E6720, 0x6E6765, 0x6F6720, 0x6F6D20, 0x6F7220, 0x70E520, 0x722064, 0x722065, 0x722073, 0x726520, 0x737465, 0x742073, 0x746520, 0x746572, 0x74696C, 0x766572,\n}\n\nvar ngrams_8859_1_de = [64]uint32{\n\t0x20616E, 0x206175, 0x206265, 0x206461, 0x206465, 0x206469, 0x206569, 0x206765, 0x206861, 0x20696E, 0x206D69, 0x207363, 0x207365, 0x20756E, 0x207665, 0x20766F,\n\t0x207765, 0x207A75, 0x626572, 0x636820, 0x636865, 0x636874, 0x646173, 0x64656E, 0x646572, 0x646965, 0x652064, 0x652073, 0x65696E, 0x656974, 0x656E20, 0x657220,\n\t0x657320, 0x67656E, 0x68656E, 0x687420, 0x696368, 0x696520, 0x696E20, 0x696E65, 0x697420, 0x6C6963, 0x6C6C65, 0x6E2061, 0x6E2064, 0x6E2073, 0x6E6420, 0x6E6465,\n\t0x6E6520, 0x6E6720, 0x6E6765, 0x6E7465, 0x722064, 0x726465, 0x726569, 0x736368, 0x737465, 0x742064, 0x746520, 0x74656E, 0x746572, 0x756E64, 0x756E67, 0x766572,\n}\n\nvar ngrams_8859_1_es = [64]uint32{\n\t0x206120, 0x206361, 0x20636F, 0x206465, 0x20656C, 0x20656E, 0x206573, 0x20696E, 0x206C61, 0x206C6F, 0x207061, 0x20706F, 0x207072, 0x207175, 0x207265, 0x207365,\n\t0x20756E, 0x207920, 0x612063, 0x612064, 0x612065, 0x61206C, 0x612070, 0x616369, 0x61646F, 0x616C20, 0x617220, 0x617320, 0x6369F3, 0x636F6E, 0x646520, 0x64656C,\n\t0x646F20, 0x652064, 0x652065, 0x65206C, 0x656C20, 0x656E20, 0x656E74, 0x657320, 0x657374, 0x69656E, 0x69F36E, 0x6C6120, 0x6C6F73, 0x6E2065, 0x6E7465, 0x6F2064,\n\t0x6F2065, 0x6F6E20, 0x6F7220, 0x6F7320, 0x706172, 0x717565, 0x726120, 0x726573, 0x732064, 0x732065, 0x732070, 0x736520, 0x746520, 0x746F20, 0x756520, 0xF36E20,\n}\n\nvar ngrams_8859_1_fr = [64]uint32{\n\t0x206175, 0x20636F, 0x206461, 0x206465, 0x206475, 0x20656E, 0x206574, 0x206C61, 0x206C65, 0x207061, 0x20706F, 0x207072, 0x207175, 0x207365, 0x20736F, 0x20756E,\n\t0x20E020, 0x616E74, 0x617469, 0x636520, 0x636F6E, 0x646520, 0x646573, 0x647520, 0x652061, 0x652063, 0x652064, 0x652065, 0x65206C, 0x652070, 0x652073, 0x656E20,\n\t0x656E74, 0x657220, 0x657320, 0x657420, 0x657572, 0x696F6E, 0x697320, 0x697420, 0x6C6120, 0x6C6520, 0x6C6573, 0x6D656E, 0x6E2064, 0x6E6520, 0x6E7320, 0x6E7420,\n\t0x6F6E20, 0x6F6E74, 0x6F7572, 0x717565, 0x72206C, 0x726520, 0x732061, 0x732064, 0x732065, 0x73206C, 0x732070, 0x742064, 0x746520, 0x74696F, 0x756520, 0x757220,\n}\n\nvar ngrams_8859_1_it = [64]uint32{\n\t0x20616C, 0x206368, 0x20636F, 0x206465, 0x206469, 0x206520, 0x20696C, 0x20696E, 0x206C61, 0x207065, 0x207072, 0x20756E, 0x612063, 0x612064, 0x612070, 0x612073,\n\t0x61746F, 0x636865, 0x636F6E, 0x64656C, 0x646920, 0x652061, 0x652063, 0x652064, 0x652069, 0x65206C, 0x652070, 0x652073, 0x656C20, 0x656C6C, 0x656E74, 0x657220,\n\t0x686520, 0x692061, 0x692063, 0x692064, 0x692073, 0x696120, 0x696C20, 0x696E20, 0x696F6E, 0x6C6120, 0x6C6520, 0x6C6920, 0x6C6C61, 0x6E6520, 0x6E6920, 0x6E6F20,\n\t0x6E7465, 0x6F2061, 0x6F2064, 0x6F2069, 0x6F2073, 0x6F6E20, 0x6F6E65, 0x706572, 0x726120, 0x726520, 0x736920, 0x746120, 0x746520, 0x746920, 0x746F20, 0x7A696F,\n}\n\nvar ngrams_8859_1_nl = [64]uint32{\n\t0x20616C, 0x206265, 0x206461, 0x206465, 0x206469, 0x206565, 0x20656E, 0x206765, 0x206865, 0x20696E, 0x206D61, 0x206D65, 0x206F70, 0x207465, 0x207661, 0x207665,\n\t0x20766F, 0x207765, 0x207A69, 0x61616E, 0x616172, 0x616E20, 0x616E64, 0x617220, 0x617420, 0x636874, 0x646520, 0x64656E, 0x646572, 0x652062, 0x652076, 0x65656E,\n\t0x656572, 0x656E20, 0x657220, 0x657273, 0x657420, 0x67656E, 0x686574, 0x696520, 0x696E20, 0x696E67, 0x697320, 0x6E2062, 0x6E2064, 0x6E2065, 0x6E2068, 0x6E206F,\n\t0x6E2076, 0x6E6465, 0x6E6720, 0x6F6E64, 0x6F6F72, 0x6F7020, 0x6F7220, 0x736368, 0x737465, 0x742064, 0x746520, 0x74656E, 0x746572, 0x76616E, 0x766572, 0x766F6F,\n}\n\nvar ngrams_8859_1_no = [64]uint32{\n\t0x206174, 0x206176, 0x206465, 0x20656E, 0x206572, 0x20666F, 0x206861, 0x206920, 0x206D65, 0x206F67, 0x2070E5, 0x207365, 0x20736B, 0x20736F, 0x207374, 0x207469,\n\t0x207669, 0x20E520, 0x616E64, 0x617220, 0x617420, 0x646520, 0x64656E, 0x646574, 0x652073, 0x656420, 0x656E20, 0x656E65, 0x657220, 0x657265, 0x657420, 0x657474,\n\t0x666F72, 0x67656E, 0x696B6B, 0x696C20, 0x696E67, 0x6B6520, 0x6B6B65, 0x6C6520, 0x6C6C65, 0x6D6564, 0x6D656E, 0x6E2073, 0x6E6520, 0x6E6720, 0x6E6765, 0x6E6E65,\n\t0x6F6720, 0x6F6D20, 0x6F7220, 0x70E520, 0x722073, 0x726520, 0x736F6D, 0x737465, 0x742073, 0x746520, 0x74656E, 0x746572, 0x74696C, 0x747420, 0x747465, 0x766572,\n}\n\nvar ngrams_8859_1_pt = [64]uint32{\n\t0x206120, 0x20636F, 0x206461, 0x206465, 0x20646F, 0x206520, 0x206573, 0x206D61, 0x206E6F, 0x206F20, 0x207061, 0x20706F, 0x207072, 0x207175, 0x207265, 0x207365,\n\t0x20756D, 0x612061, 0x612063, 0x612064, 0x612070, 0x616465, 0x61646F, 0x616C20, 0x617220, 0x617261, 0x617320, 0x636F6D, 0x636F6E, 0x646120, 0x646520, 0x646F20,\n\t0x646F73, 0x652061, 0x652064, 0x656D20, 0x656E74, 0x657320, 0x657374, 0x696120, 0x696361, 0x6D656E, 0x6E7465, 0x6E746F, 0x6F2061, 0x6F2063, 0x6F2064, 0x6F2065,\n\t0x6F2070, 0x6F7320, 0x706172, 0x717565, 0x726120, 0x726573, 0x732061, 0x732064, 0x732065, 0x732070, 0x737461, 0x746520, 0x746F20, 0x756520, 0xE36F20, 0xE7E36F,\n}\n\nvar ngrams_8859_1_sv = [64]uint32{\n\t0x206174, 0x206176, 0x206465, 0x20656E, 0x2066F6, 0x206861, 0x206920, 0x20696E, 0x206B6F, 0x206D65, 0x206F63, 0x2070E5, 0x20736B, 0x20736F, 0x207374, 0x207469,\n\t0x207661, 0x207669, 0x20E472, 0x616465, 0x616E20, 0x616E64, 0x617220, 0x617474, 0x636820, 0x646520, 0x64656E, 0x646572, 0x646574, 0x656420, 0x656E20, 0x657220,\n\t0x657420, 0x66F672, 0x67656E, 0x696C6C, 0x696E67, 0x6B6120, 0x6C6C20, 0x6D6564, 0x6E2073, 0x6E6120, 0x6E6465, 0x6E6720, 0x6E6765, 0x6E696E, 0x6F6368, 0x6F6D20,\n\t0x6F6E20, 0x70E520, 0x722061, 0x722073, 0x726120, 0x736B61, 0x736F6D, 0x742073, 0x746120, 0x746520, 0x746572, 0x74696C, 0x747420, 0x766172, 0xE47220, 0xF67220,\n}\n\nfunc newRecognizer_8859_1(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:          \"ISO-8859-1\",\n\t\thasC1ByteCharset: \"windows-1252\",\n\t\tlanguage:         language,\n\t\tcharMap:          &charMap_8859_1,\n\t\tngram:            ngram,\n\t}\n}\n\nfunc newRecognizer_8859_1_en() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"en\", &ngrams_8859_1_en)\n}\nfunc newRecognizer_8859_1_da() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"da\", &ngrams_8859_1_da)\n}\nfunc newRecognizer_8859_1_de() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"de\", &ngrams_8859_1_de)\n}\nfunc newRecognizer_8859_1_es() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"es\", &ngrams_8859_1_es)\n}\nfunc newRecognizer_8859_1_fr() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"fr\", &ngrams_8859_1_fr)\n}\nfunc newRecognizer_8859_1_it() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"it\", &ngrams_8859_1_it)\n}\nfunc newRecognizer_8859_1_nl() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"nl\", &ngrams_8859_1_nl)\n}\nfunc newRecognizer_8859_1_no() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"no\", &ngrams_8859_1_no)\n}\nfunc newRecognizer_8859_1_pt() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"pt\", &ngrams_8859_1_pt)\n}\nfunc newRecognizer_8859_1_sv() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"sv\", &ngrams_8859_1_sv)\n}\n\nvar charMap_8859_2 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0xB1, 0x20, 0xB3, 0x20, 0xB5, 0xB6, 0x20,\n\t0x20, 0xB9, 0xBA, 0xBB, 0xBC, 0x20, 0xBE, 0xBF,\n\t0x20, 0xB1, 0x20, 0xB3, 0x20, 0xB5, 0xB6, 0xB7,\n\t0x20, 0xB9, 0xBA, 0xBB, 0xBC, 0x20, 0xBE, 0xBF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0x20,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0x20,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0x20,\n}\n\nvar ngrams_8859_2_cs = [64]uint32{\n\t0x206120, 0x206279, 0x20646F, 0x206A65, 0x206E61, 0x206E65, 0x206F20, 0x206F64, 0x20706F, 0x207072, 0x2070F8, 0x20726F, 0x207365, 0x20736F, 0x207374, 0x20746F,\n\t0x207620, 0x207679, 0x207A61, 0x612070, 0x636520, 0x636820, 0x652070, 0x652073, 0x652076, 0x656D20, 0x656EED, 0x686F20, 0x686F64, 0x697374, 0x6A6520, 0x6B7465,\n\t0x6C6520, 0x6C6920, 0x6E6120, 0x6EE920, 0x6EEC20, 0x6EED20, 0x6F2070, 0x6F646E, 0x6F6A69, 0x6F7374, 0x6F7520, 0x6F7661, 0x706F64, 0x706F6A, 0x70726F, 0x70F865,\n\t0x736520, 0x736F75, 0x737461, 0x737469, 0x73746E, 0x746572, 0x746EED, 0x746F20, 0x752070, 0xBE6520, 0xE16EED, 0xE9686F, 0xED2070, 0xED2073, 0xED6D20, 0xF86564,\n}\n\nvar ngrams_8859_2_hu = [64]uint32{\n\t0x206120, 0x20617A, 0x206265, 0x206567, 0x20656C, 0x206665, 0x206861, 0x20686F, 0x206973, 0x206B65, 0x206B69, 0x206BF6, 0x206C65, 0x206D61, 0x206D65, 0x206D69,\n\t0x206E65, 0x20737A, 0x207465, 0x20E973, 0x612061, 0x61206B, 0x61206D, 0x612073, 0x616B20, 0x616E20, 0x617A20, 0x62616E, 0x62656E, 0x656779, 0x656B20, 0x656C20,\n\t0x656C65, 0x656D20, 0x656E20, 0x657265, 0x657420, 0x657465, 0x657474, 0x677920, 0x686F67, 0x696E74, 0x697320, 0x6B2061, 0x6BF67A, 0x6D6567, 0x6D696E, 0x6E2061,\n\t0x6E616B, 0x6E656B, 0x6E656D, 0x6E7420, 0x6F6779, 0x732061, 0x737A65, 0x737A74, 0x737AE1, 0x73E967, 0x742061, 0x747420, 0x74E173, 0x7A6572, 0xE16E20, 0xE97320,\n}\n\nvar ngrams_8859_2_pl = [64]uint32{\n\t0x20637A, 0x20646F, 0x206920, 0x206A65, 0x206B6F, 0x206D61, 0x206D69, 0x206E61, 0x206E69, 0x206F64, 0x20706F, 0x207072, 0x207369, 0x207720, 0x207769, 0x207779,\n\t0x207A20, 0x207A61, 0x612070, 0x612077, 0x616E69, 0x636820, 0x637A65, 0x637A79, 0x646F20, 0x647A69, 0x652070, 0x652073, 0x652077, 0x65207A, 0x65676F, 0x656A20,\n\t0x656D20, 0x656E69, 0x676F20, 0x696120, 0x696520, 0x69656A, 0x6B6120, 0x6B6920, 0x6B6965, 0x6D6965, 0x6E6120, 0x6E6961, 0x6E6965, 0x6F2070, 0x6F7761, 0x6F7769,\n\t0x706F6C, 0x707261, 0x70726F, 0x70727A, 0x727A65, 0x727A79, 0x7369EA, 0x736B69, 0x737461, 0x776965, 0x796368, 0x796D20, 0x7A6520, 0x7A6965, 0x7A7920, 0xF37720,\n}\n\nvar ngrams_8859_2_ro = [64]uint32{\n\t0x206120, 0x206163, 0x206361, 0x206365, 0x20636F, 0x206375, 0x206465, 0x206469, 0x206C61, 0x206D61, 0x207065, 0x207072, 0x207365, 0x2073E3, 0x20756E, 0x20BA69,\n\t0x20EE6E, 0x612063, 0x612064, 0x617265, 0x617420, 0x617465, 0x617520, 0x636172, 0x636F6E, 0x637520, 0x63E320, 0x646520, 0x652061, 0x652063, 0x652064, 0x652070,\n\t0x652073, 0x656120, 0x656920, 0x656C65, 0x656E74, 0x657374, 0x692061, 0x692063, 0x692064, 0x692070, 0x696520, 0x696920, 0x696E20, 0x6C6120, 0x6C6520, 0x6C6F72,\n\t0x6C7569, 0x6E6520, 0x6E7472, 0x6F7220, 0x70656E, 0x726520, 0x726561, 0x727520, 0x73E320, 0x746520, 0x747275, 0x74E320, 0x756920, 0x756C20, 0xBA6920, 0xEE6E20,\n}\n\nfunc newRecognizer_8859_2(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:          \"ISO-8859-2\",\n\t\thasC1ByteCharset: \"windows-1250\",\n\t\tlanguage:         language,\n\t\tcharMap:          &charMap_8859_2,\n\t\tngram:            ngram,\n\t}\n}\n\nfunc newRecognizer_8859_2_cs() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"cs\", &ngrams_8859_2_cs)\n}\nfunc newRecognizer_8859_2_hu() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"hu\", &ngrams_8859_2_hu)\n}\nfunc newRecognizer_8859_2_pl() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"pl\", &ngrams_8859_2_pl)\n}\nfunc newRecognizer_8859_2_ro() *recognizerSingleByte {\n\treturn newRecognizer_8859_1(\"ro\", &ngrams_8859_2_ro)\n}\n\nvar charMap_8859_5 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0x20, 0xFE, 0xFF,\n\t0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7,\n\t0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7,\n\t0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0x20, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0x20, 0xFE, 0xFF,\n}\n\nvar ngrams_8859_5_ru = [64]uint32{\n\t0x20D220, 0x20D2DE, 0x20D4DE, 0x20D7D0, 0x20D820, 0x20DAD0, 0x20DADE, 0x20DDD0, 0x20DDD5, 0x20DED1, 0x20DFDE, 0x20DFE0, 0x20E0D0, 0x20E1DE, 0x20E1E2, 0x20E2DE,\n\t0x20E7E2, 0x20EDE2, 0xD0DDD8, 0xD0E2EC, 0xD3DE20, 0xD5DBEC, 0xD5DDD8, 0xD5E1E2, 0xD5E220, 0xD820DF, 0xD8D520, 0xD8D820, 0xD8EF20, 0xDBD5DD, 0xDBD820, 0xDBECDD,\n\t0xDDD020, 0xDDD520, 0xDDD8D5, 0xDDD8EF, 0xDDDE20, 0xDDDED2, 0xDE20D2, 0xDE20DF, 0xDE20E1, 0xDED220, 0xDED2D0, 0xDED3DE, 0xDED920, 0xDEDBEC, 0xDEDC20, 0xDEE1E2,\n\t0xDFDEDB, 0xDFE0D5, 0xDFE0D8, 0xDFE0DE, 0xE0D0D2, 0xE0D5D4, 0xE1E2D0, 0xE1E2D2, 0xE1E2D8, 0xE1EF20, 0xE2D5DB, 0xE2DE20, 0xE2DEE0, 0xE2EC20, 0xE7E2DE, 0xEBE520,\n}\n\nfunc newRecognizer_8859_5(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  \"ISO-8859-5\",\n\t\tlanguage: language,\n\t\tcharMap:  &charMap_8859_5,\n\t\tngram:    ngram,\n\t}\n}\n\nfunc newRecognizer_8859_5_ru() *recognizerSingleByte {\n\treturn newRecognizer_8859_5(\"ru\", &ngrams_8859_5_ru)\n}\n\nvar charMap_8859_6 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,\n\t0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF,\n\t0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7,\n\t0xD8, 0xD9, 0xDA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n}\n\nvar ngrams_8859_6_ar = [64]uint32{\n\t0x20C7E4, 0x20C7E6, 0x20C8C7, 0x20D9E4, 0x20E1EA, 0x20E4E4, 0x20E5E6, 0x20E8C7, 0xC720C7, 0xC7C120, 0xC7CA20, 0xC7D120, 0xC7E420, 0xC7E4C3, 0xC7E4C7, 0xC7E4C8,\n\t0xC7E4CA, 0xC7E4CC, 0xC7E4CD, 0xC7E4CF, 0xC7E4D3, 0xC7E4D9, 0xC7E4E2, 0xC7E4E5, 0xC7E4E8, 0xC7E4EA, 0xC7E520, 0xC7E620, 0xC7E6CA, 0xC820C7, 0xC920C7, 0xC920E1,\n\t0xC920E4, 0xC920E5, 0xC920E8, 0xCA20C7, 0xCF20C7, 0xCFC920, 0xD120C7, 0xD1C920, 0xD320C7, 0xD920C7, 0xD9E4E9, 0xE1EA20, 0xE420C7, 0xE4C920, 0xE4E920, 0xE4EA20,\n\t0xE520C7, 0xE5C720, 0xE5C920, 0xE5E620, 0xE620C7, 0xE720C7, 0xE7C720, 0xE8C7E4, 0xE8E620, 0xE920C7, 0xEA20C7, 0xEA20E5, 0xEA20E8, 0xEAC920, 0xEAD120, 0xEAE620,\n}\n\nfunc newRecognizer_8859_6(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  \"ISO-8859-6\",\n\t\tlanguage: language,\n\t\tcharMap:  &charMap_8859_6,\n\t\tngram:    ngram,\n\t}\n}\n\nfunc newRecognizer_8859_6_ar() *recognizerSingleByte {\n\treturn newRecognizer_8859_6(\"ar\", &ngrams_8859_6_ar)\n}\n\nvar charMap_8859_7 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0xA1, 0xA2, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xDC, 0x20,\n\t0xDD, 0xDE, 0xDF, 0x20, 0xFC, 0x20, 0xFD, 0xFE,\n\t0xC0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0x20, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xDC, 0xDD, 0xDE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0x20,\n}\n\nvar ngrams_8859_7_el = [64]uint32{\n\t0x20E1ED, 0x20E1F0, 0x20E3E9, 0x20E4E9, 0x20E5F0, 0x20E720, 0x20EAE1, 0x20ECE5, 0x20EDE1, 0x20EF20, 0x20F0E1, 0x20F0EF, 0x20F0F1, 0x20F3F4, 0x20F3F5, 0x20F4E7,\n\t0x20F4EF, 0xDFE120, 0xE120E1, 0xE120F4, 0xE1E920, 0xE1ED20, 0xE1F0FC, 0xE1F220, 0xE3E9E1, 0xE5E920, 0xE5F220, 0xE720F4, 0xE7ED20, 0xE7F220, 0xE920F4, 0xE9E120,\n\t0xE9EADE, 0xE9F220, 0xEAE1E9, 0xEAE1F4, 0xECE520, 0xED20E1, 0xED20E5, 0xED20F0, 0xEDE120, 0xEFF220, 0xEFF520, 0xF0EFF5, 0xF0F1EF, 0xF0FC20, 0xF220E1, 0xF220E5,\n\t0xF220EA, 0xF220F0, 0xF220F4, 0xF3E520, 0xF3E720, 0xF3F4EF, 0xF4E120, 0xF4E1E9, 0xF4E7ED, 0xF4E7F2, 0xF4E9EA, 0xF4EF20, 0xF4EFF5, 0xF4F9ED, 0xF9ED20, 0xFEED20,\n}\n\nfunc newRecognizer_8859_7(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:          \"ISO-8859-7\",\n\t\thasC1ByteCharset: \"windows-1253\",\n\t\tlanguage:         language,\n\t\tcharMap:          &charMap_8859_7,\n\t\tngram:            ngram,\n\t}\n}\n\nfunc newRecognizer_8859_7_el() *recognizerSingleByte {\n\treturn newRecognizer_8859_7(\"el\", &ngrams_8859_7_el)\n}\n\nvar charMap_8859_8 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0xB5, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0x20, 0x20, 0x20, 0x20, 0x20,\n}\n\nvar ngrams_8859_8_I_he = [64]uint32{\n\t0x20E0E5, 0x20E0E7, 0x20E0E9, 0x20E0FA, 0x20E1E9, 0x20E1EE, 0x20E4E0, 0x20E4E5, 0x20E4E9, 0x20E4EE, 0x20E4F2, 0x20E4F9, 0x20E4FA, 0x20ECE0, 0x20ECE4, 0x20EEE0,\n\t0x20F2EC, 0x20F9EC, 0xE0FA20, 0xE420E0, 0xE420E1, 0xE420E4, 0xE420EC, 0xE420EE, 0xE420F9, 0xE4E5E0, 0xE5E020, 0xE5ED20, 0xE5EF20, 0xE5F820, 0xE5FA20, 0xE920E4,\n\t0xE9E420, 0xE9E5FA, 0xE9E9ED, 0xE9ED20, 0xE9EF20, 0xE9F820, 0xE9FA20, 0xEC20E0, 0xEC20E4, 0xECE020, 0xECE420, 0xED20E0, 0xED20E1, 0xED20E4, 0xED20EC, 0xED20EE,\n\t0xED20F9, 0xEEE420, 0xEF20E4, 0xF0E420, 0xF0E920, 0xF0E9ED, 0xF2EC20, 0xF820E4, 0xF8E9ED, 0xF9EC20, 0xFA20E0, 0xFA20E1, 0xFA20E4, 0xFA20EC, 0xFA20EE, 0xFA20F9,\n}\n\nvar ngrams_8859_8_he = [64]uint32{\n\t0x20E0E5, 0x20E0EC, 0x20E4E9, 0x20E4EC, 0x20E4EE, 0x20E4F0, 0x20E9F0, 0x20ECF2, 0x20ECF9, 0x20EDE5, 0x20EDE9, 0x20EFE5, 0x20EFE9, 0x20F8E5, 0x20F8E9, 0x20FAE0,\n\t0x20FAE5, 0x20FAE9, 0xE020E4, 0xE020EC, 0xE020ED, 0xE020FA, 0xE0E420, 0xE0E5E4, 0xE0EC20, 0xE0EE20, 0xE120E4, 0xE120ED, 0xE120FA, 0xE420E4, 0xE420E9, 0xE420EC,\n\t0xE420ED, 0xE420EF, 0xE420F8, 0xE420FA, 0xE4EC20, 0xE5E020, 0xE5E420, 0xE7E020, 0xE9E020, 0xE9E120, 0xE9E420, 0xEC20E4, 0xEC20ED, 0xEC20FA, 0xECF220, 0xECF920,\n\t0xEDE9E9, 0xEDE9F0, 0xEDE9F8, 0xEE20E4, 0xEE20ED, 0xEE20FA, 0xEEE120, 0xEEE420, 0xF2E420, 0xF920E4, 0xF920ED, 0xF920FA, 0xF9E420, 0xFAE020, 0xFAE420, 0xFAE5E9,\n}\n\nfunc newRecognizer_8859_8(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:          \"ISO-8859-8\",\n\t\thasC1ByteCharset: \"windows-1255\",\n\t\tlanguage:         language,\n\t\tcharMap:          &charMap_8859_8,\n\t\tngram:            ngram,\n\t}\n}\n\nfunc newRecognizer_8859_8_I_he() *recognizerSingleByte {\n\tr := newRecognizer_8859_8(\"he\", &ngrams_8859_8_I_he)\n\tr.charset = \"ISO-8859-8-I\"\n\treturn r\n}\n\nfunc newRecognizer_8859_8_he() *recognizerSingleByte {\n\treturn newRecognizer_8859_8(\"he\", &ngrams_8859_8_he)\n}\n\nvar charMap_8859_9 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0xAA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0xB5, 0x20, 0x20,\n\t0x20, 0x20, 0xBA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0x20,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0x69, 0xFE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0x20,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF,\n}\n\nvar ngrams_8859_9_tr = [64]uint32{\n\t0x206261, 0x206269, 0x206275, 0x206461, 0x206465, 0x206765, 0x206861, 0x20696C, 0x206B61, 0x206B6F, 0x206D61, 0x206F6C, 0x207361, 0x207461, 0x207665, 0x207961,\n\t0x612062, 0x616B20, 0x616C61, 0x616D61, 0x616E20, 0x616EFD, 0x617220, 0x617261, 0x6172FD, 0x6173FD, 0x617961, 0x626972, 0x646120, 0x646520, 0x646920, 0x652062,\n\t0x65206B, 0x656469, 0x656E20, 0x657220, 0x657269, 0x657369, 0x696C65, 0x696E20, 0x696E69, 0x697220, 0x6C616E, 0x6C6172, 0x6C6520, 0x6C6572, 0x6E2061, 0x6E2062,\n\t0x6E206B, 0x6E6461, 0x6E6465, 0x6E6520, 0x6E6920, 0x6E696E, 0x6EFD20, 0x72696E, 0x72FD6E, 0x766520, 0x796120, 0x796F72, 0xFD6E20, 0xFD6E64, 0xFD6EFD, 0xFDF0FD,\n}\n\nfunc newRecognizer_8859_9(language string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:          \"ISO-8859-9\",\n\t\thasC1ByteCharset: \"windows-1254\",\n\t\tlanguage:         language,\n\t\tcharMap:          &charMap_8859_9,\n\t\tngram:            ngram,\n\t}\n}\n\nfunc newRecognizer_8859_9_tr() *recognizerSingleByte {\n\treturn newRecognizer_8859_9(\"tr\", &ngrams_8859_9_tr)\n}\n\nvar charMap_windows_1256 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x81, 0x20, 0x83, 0x20, 0x20, 0x20, 0x20,\n\t0x88, 0x20, 0x8A, 0x20, 0x9C, 0x8D, 0x8E, 0x8F,\n\t0x90, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x98, 0x20, 0x9A, 0x20, 0x9C, 0x20, 0x20, 0x9F,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0xAA, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0xB5, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,\n\t0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF,\n\t0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0x20,\n\t0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0x20, 0x20, 0x20, 0x20, 0xF4, 0x20, 0x20, 0x20,\n\t0x20, 0xF9, 0x20, 0xFB, 0xFC, 0x20, 0x20, 0xFF,\n}\n\nvar ngrams_windows_1256 = [64]uint32{\n\t0x20C7E1, 0x20C7E4, 0x20C8C7, 0x20DAE1, 0x20DDED, 0x20E1E1, 0x20E3E4, 0x20E6C7, 0xC720C7, 0xC7C120, 0xC7CA20, 0xC7D120, 0xC7E120, 0xC7E1C3, 0xC7E1C7, 0xC7E1C8,\n\t0xC7E1CA, 0xC7E1CC, 0xC7E1CD, 0xC7E1CF, 0xC7E1D3, 0xC7E1DA, 0xC7E1DE, 0xC7E1E3, 0xC7E1E6, 0xC7E1ED, 0xC7E320, 0xC7E420, 0xC7E4CA, 0xC820C7, 0xC920C7, 0xC920DD,\n\t0xC920E1, 0xC920E3, 0xC920E6, 0xCA20C7, 0xCF20C7, 0xCFC920, 0xD120C7, 0xD1C920, 0xD320C7, 0xDA20C7, 0xDAE1EC, 0xDDED20, 0xE120C7, 0xE1C920, 0xE1EC20, 0xE1ED20,\n\t0xE320C7, 0xE3C720, 0xE3C920, 0xE3E420, 0xE420C7, 0xE520C7, 0xE5C720, 0xE6C7E1, 0xE6E420, 0xEC20C7, 0xED20C7, 0xED20E3, 0xED20E6, 0xEDC920, 0xEDD120, 0xEDE420,\n}\n\nfunc newRecognizer_windows_1256() *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  \"windows-1256\",\n\t\tlanguage: \"ar\",\n\t\tcharMap:  &charMap_windows_1256,\n\t\tngram:    &ngrams_windows_1256,\n\t}\n}\n\nvar charMap_windows_1251 = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x90, 0x83, 0x20, 0x83, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x9A, 0x20, 0x9C, 0x9D, 0x9E, 0x9F,\n\t0x90, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x9A, 0x20, 0x9C, 0x9D, 0x9E, 0x9F,\n\t0x20, 0xA2, 0xA2, 0xBC, 0x20, 0xB4, 0x20, 0x20,\n\t0xB8, 0x20, 0xBA, 0x20, 0x20, 0x20, 0x20, 0xBF,\n\t0x20, 0x20, 0xB3, 0xB3, 0xB4, 0xB5, 0x20, 0x20,\n\t0xB8, 0x20, 0xBA, 0x20, 0xBC, 0xBE, 0xBE, 0xBF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF,\n\t0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,\n\t0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,\n\t0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,\n\t0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF,\n}\n\nvar ngrams_windows_1251 = [64]uint32{\n\t0x20E220, 0x20E2EE, 0x20E4EE, 0x20E7E0, 0x20E820, 0x20EAE0, 0x20EAEE, 0x20EDE0, 0x20EDE5, 0x20EEE1, 0x20EFEE, 0x20EFF0, 0x20F0E0, 0x20F1EE, 0x20F1F2, 0x20F2EE,\n\t0x20F7F2, 0x20FDF2, 0xE0EDE8, 0xE0F2FC, 0xE3EE20, 0xE5EBFC, 0xE5EDE8, 0xE5F1F2, 0xE5F220, 0xE820EF, 0xE8E520, 0xE8E820, 0xE8FF20, 0xEBE5ED, 0xEBE820, 0xEBFCED,\n\t0xEDE020, 0xEDE520, 0xEDE8E5, 0xEDE8FF, 0xEDEE20, 0xEDEEE2, 0xEE20E2, 0xEE20EF, 0xEE20F1, 0xEEE220, 0xEEE2E0, 0xEEE3EE, 0xEEE920, 0xEEEBFC, 0xEEEC20, 0xEEF1F2,\n\t0xEFEEEB, 0xEFF0E5, 0xEFF0E8, 0xEFF0EE, 0xF0E0E2, 0xF0E5E4, 0xF1F2E0, 0xF1F2E2, 0xF1F2E8, 0xF1FF20, 0xF2E5EB, 0xF2EE20, 0xF2EEF0, 0xF2FC20, 0xF7F2EE, 0xFBF520,\n}\n\nfunc newRecognizer_windows_1251() *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  \"windows-1251\",\n\t\tlanguage: \"ar\",\n\t\tcharMap:  &charMap_windows_1251,\n\t\tngram:    &ngrams_windows_1251,\n\t}\n}\n\nvar charMap_KOI8_R = [256]byte{\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,\n\t0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,\n\t0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,\n\t0x78, 0x79, 0x7A, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0xA3, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0xA3, 0x20, 0x20, 0x20, 0x20,\n\t0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\n\t0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,\n\t0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF,\n\t0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7,\n\t0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,\n\t0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,\n\t0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF,\n\t0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7,\n\t0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,\n}\n\nvar ngrams_KOI8_R = [64]uint32{\n\t0x20C4CF, 0x20C920, 0x20CBC1, 0x20CBCF, 0x20CEC1, 0x20CEC5, 0x20CFC2, 0x20D0CF, 0x20D0D2, 0x20D2C1, 0x20D3CF, 0x20D3D4, 0x20D4CF, 0x20D720, 0x20D7CF, 0x20DAC1,\n\t0x20DCD4, 0x20DED4, 0xC1CEC9, 0xC1D4D8, 0xC5CCD8, 0xC5CEC9, 0xC5D3D4, 0xC5D420, 0xC7CF20, 0xC920D0, 0xC9C520, 0xC9C920, 0xC9D120, 0xCCC5CE, 0xCCC920, 0xCCD8CE,\n\t0xCEC120, 0xCEC520, 0xCEC9C5, 0xCEC9D1, 0xCECF20, 0xCECFD7, 0xCF20D0, 0xCF20D3, 0xCF20D7, 0xCFC7CF, 0xCFCA20, 0xCFCCD8, 0xCFCD20, 0xCFD3D4, 0xCFD720, 0xCFD7C1,\n\t0xD0CFCC, 0xD0D2C5, 0xD0D2C9, 0xD0D2CF, 0xD2C1D7, 0xD2C5C4, 0xD3D120, 0xD3D4C1, 0xD3D4C9, 0xD3D4D7, 0xD4C5CC, 0xD4CF20, 0xD4CFD2, 0xD4D820, 0xD9C820, 0xDED4CF,\n}\n\nfunc newRecognizer_KOI8_R() *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  \"KOI8-R\",\n\t\tlanguage: \"ru\",\n\t\tcharMap:  &charMap_KOI8_R,\n\t\tngram:    &ngrams_KOI8_R,\n\t}\n}\n\nvar charMap_IBM424_he = [256]byte{\n\t/*        -0    -1    -2    -3    -4    -5    -6    -7    -8    -9    -A    -B    -C    -D    -E    -F   */\n\t/* 0- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 1- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 2- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 3- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 4- */ 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 5- */ 0x40, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 6- */ 0x40, 0x40, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 7- */ 0x40, 0x71, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00, 0x40, 0x40,\n\t/* 8- */ 0x40, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 9- */ 0x40, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* A- */ 0xA0, 0x40, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* B- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* C- */ 0x40, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* D- */ 0x40, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* E- */ 0x40, 0x40, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* F- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n}\n\nvar ngrams_IBM424_he_rtl = [64]uint32{\n\t0x404146, 0x404148, 0x404151, 0x404171, 0x404251, 0x404256, 0x404541, 0x404546, 0x404551, 0x404556, 0x404562, 0x404569, 0x404571, 0x405441, 0x405445, 0x405641,\n\t0x406254, 0x406954, 0x417140, 0x454041, 0x454042, 0x454045, 0x454054, 0x454056, 0x454069, 0x454641, 0x464140, 0x465540, 0x465740, 0x466840, 0x467140, 0x514045,\n\t0x514540, 0x514671, 0x515155, 0x515540, 0x515740, 0x516840, 0x517140, 0x544041, 0x544045, 0x544140, 0x544540, 0x554041, 0x554042, 0x554045, 0x554054, 0x554056,\n\t0x554069, 0x564540, 0x574045, 0x584540, 0x585140, 0x585155, 0x625440, 0x684045, 0x685155, 0x695440, 0x714041, 0x714042, 0x714045, 0x714054, 0x714056, 0x714069,\n}\n\nvar ngrams_IBM424_he_ltr = [64]uint32{\n\t0x404146, 0x404154, 0x404551, 0x404554, 0x404556, 0x404558, 0x405158, 0x405462, 0x405469, 0x405546, 0x405551, 0x405746, 0x405751, 0x406846, 0x406851, 0x407141,\n\t0x407146, 0x407151, 0x414045, 0x414054, 0x414055, 0x414071, 0x414540, 0x414645, 0x415440, 0x415640, 0x424045, 0x424055, 0x424071, 0x454045, 0x454051, 0x454054,\n\t0x454055, 0x454057, 0x454068, 0x454071, 0x455440, 0x464140, 0x464540, 0x484140, 0x514140, 0x514240, 0x514540, 0x544045, 0x544055, 0x544071, 0x546240, 0x546940,\n\t0x555151, 0x555158, 0x555168, 0x564045, 0x564055, 0x564071, 0x564240, 0x564540, 0x624540, 0x694045, 0x694055, 0x694071, 0x694540, 0x714140, 0x714540, 0x714651,\n}\n\nfunc newRecognizer_IBM424_he(charset string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  charset,\n\t\tlanguage: \"he\",\n\t\tcharMap:  &charMap_IBM424_he,\n\t\tngram:    ngram,\n\t}\n}\n\nfunc newRecognizer_IBM424_he_rtl() *recognizerSingleByte {\n\treturn newRecognizer_IBM424_he(\"IBM424_rtl\", &ngrams_IBM424_he_rtl)\n}\n\nfunc newRecognizer_IBM424_he_ltr() *recognizerSingleByte {\n\treturn newRecognizer_IBM424_he(\"IBM424_ltr\", &ngrams_IBM424_he_ltr)\n}\n\nvar charMap_IBM420_ar = [256]byte{\n\t/*        -0    -1    -2    -3    -4    -5    -6    -7    -8    -9    -A    -B    -C    -D    -E    -F   */\n\t/* 0- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 1- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 2- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 3- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 4- */ 0x40, 0x40, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 5- */ 0x40, 0x51, 0x52, 0x40, 0x40, 0x55, 0x56, 0x57, 0x58, 0x59, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 6- */ 0x40, 0x40, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 7- */ 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,\n\t/* 8- */ 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x8B, 0x8C, 0x8D, 0x8E, 0x8F,\n\t/* 9- */ 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0x9B, 0x9C, 0x9D, 0x9E, 0x9F,\n\t/* A- */ 0xA0, 0x40, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xAF,\n\t/* B- */ 0xB0, 0xB1, 0xB2, 0xB3, 0xB4, 0xB5, 0x40, 0x40, 0xB8, 0xB9, 0xBA, 0xBB, 0xBC, 0xBD, 0xBE, 0xBF,\n\t/* C- */ 0x40, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x40, 0xCB, 0x40, 0xCD, 0x40, 0xCF,\n\t/* D- */ 0x40, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,\n\t/* E- */ 0x40, 0x40, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xEA, 0xEB, 0x40, 0xED, 0xEE, 0xEF,\n\t/* F- */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0xFB, 0xFC, 0xFD, 0xFE, 0x40,\n}\n\nvar ngrams_IBM420_ar_rtl = [64]uint32{\n\t0x4056B1, 0x4056BD, 0x405856, 0x409AB1, 0x40ABDC, 0x40B1B1, 0x40BBBD, 0x40CF56, 0x564056, 0x564640, 0x566340, 0x567540, 0x56B140, 0x56B149, 0x56B156, 0x56B158,\n\t0x56B163, 0x56B167, 0x56B169, 0x56B173, 0x56B178, 0x56B19A, 0x56B1AD, 0x56B1BB, 0x56B1CF, 0x56B1DC, 0x56BB40, 0x56BD40, 0x56BD63, 0x584056, 0x624056, 0x6240AB,\n\t0x6240B1, 0x6240BB, 0x6240CF, 0x634056, 0x734056, 0x736240, 0x754056, 0x756240, 0x784056, 0x9A4056, 0x9AB1DA, 0xABDC40, 0xB14056, 0xB16240, 0xB1DA40, 0xB1DC40,\n\t0xBB4056, 0xBB5640, 0xBB6240, 0xBBBD40, 0xBD4056, 0xBF4056, 0xBF5640, 0xCF56B1, 0xCFBD40, 0xDA4056, 0xDC4056, 0xDC40BB, 0xDC40CF, 0xDC6240, 0xDC7540, 0xDCBD40,\n}\n\nvar ngrams_IBM420_ar_ltr = [64]uint32{\n\t0x404656, 0x4056BB, 0x4056BF, 0x406273, 0x406275, 0x4062B1, 0x4062BB, 0x4062DC, 0x406356, 0x407556, 0x4075DC, 0x40B156, 0x40BB56, 0x40BD56, 0x40BDBB, 0x40BDCF,\n\t0x40BDDC, 0x40DAB1, 0x40DCAB, 0x40DCB1, 0x49B156, 0x564056, 0x564058, 0x564062, 0x564063, 0x564073, 0x564075, 0x564078, 0x56409A, 0x5640B1, 0x5640BB, 0x5640BD,\n\t0x5640BF, 0x5640DA, 0x5640DC, 0x565840, 0x56B156, 0x56CF40, 0x58B156, 0x63B156, 0x63BD56, 0x67B156, 0x69B156, 0x73B156, 0x78B156, 0x9AB156, 0xAB4062, 0xADB156,\n\t0xB14062, 0xB15640, 0xB156CF, 0xB19A40, 0xB1B140, 0xBB4062, 0xBB40DC, 0xBBB156, 0xBD5640, 0xBDBB40, 0xCF4062, 0xCF40DC, 0xCFB156, 0xDAB19A, 0xDCAB40, 0xDCB156,\n}\n\nfunc newRecognizer_IBM420_ar(charset string, ngram *[64]uint32) *recognizerSingleByte {\n\treturn &recognizerSingleByte{\n\t\tcharset:  charset,\n\t\tlanguage: \"ar\",\n\t\tcharMap:  &charMap_IBM420_ar,\n\t\tngram:    ngram,\n\t}\n}\n\nfunc newRecognizer_IBM420_ar_rtl() *recognizerSingleByte {\n\treturn newRecognizer_IBM420_ar(\"IBM420_rtl\", &ngrams_IBM420_ar_rtl)\n}\n\nfunc newRecognizer_IBM420_ar_ltr() *recognizerSingleByte {\n\treturn newRecognizer_IBM420_ar(\"IBM420_ltr\", &ngrams_IBM420_ar_ltr)\n}\n"
  },
  {
    "path": "testdata/8859_1_da.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"da\" lang=\"da\">\n<head>\n    <meta name=\"language\" content=\"da\"/>\n    <meta name=\"dc.language\" content=\"da\"/>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n    <meta name=\"author\" content=\"system\" /><!--<link rel=\"stylesheet\" type=\"text/css\" href=\"/modules/virk/css/print.css\" media=\"print\" />-->\n\t<!--[if lte IE 8]>\n    \t<link rel=\"stylesheet\" href=\"/modules/virk/css/virk-ie8.css\" media=\"screen\" type=\"text/css\"/>\n    \t<script type=\"text/javascript\" src=\"/modules/assets/javascript/jquery.min.js\"></script>\n    \t<script type=\"text/javascript\" src=\"/modules/virk/javascript/placeholder.js\"></script>\n\t<![endif]-->\n  <!--[if lt IE 8]>\n      <link rel=\"stylesheet\" href=\"/modules/virk/css/virk-ie7.css\" media=\"screen\" type=\"text/css\"/>\n  <![endif]-->\n\t<link rel=\"shortcut icon\" type=\"image/vnd.microsoft.icon\" href=\"/files/live/sites/virk/files/favicon.ico\" />\n\t<!-- Google Analytics -->\n\t\t<script type=\"text/javascript\">\nvar _gaq = _gaq || [];\n_gaq.push(\n      ['_setAccount', 'UA-4218600-3'],\n      ['_setDomainName', document.location.hostname.replace('www.', '')],\n      ['_setAllowLinker', true],\n      ['_trackPageview']\n);\n\n(function() {\n      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n      var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n})();\n</script>\n\n<script src=\"https://s3-eu-west-1.amazonaws.com/cdn.iihnordic.com/virk/sb.min.js\" type=\"text/javascript\"></script>\n<!-- Google Analytics -->\n\t\t<title>Forside - Virk.dk</title>\n  <link rel=\"stylesheet\" href=\"/modules/virk/css/960.css\" media=\"print\" type=\"text/css\"></link>\n  <link rel=\"stylesheet\" href=\"/modules/virk/css/reset.css\" media=\"print\" type=\"text/css\"></link>\n  <link rel=\"stylesheet\" href=\"/modules/virk/css/virk.css\" media=\"print\" type=\"text/css\"></link>\n  <link rel=\"stylesheet\" href=\"/modules/virk/css/print.css\" media=\"print\" type=\"text/css\"></link>\n  \n<script type=\"text/javascript\">\n\tvar contextJsParameters={contextPath:\"\",lang:\"da\",uilang:\"da\",siteUuid:\"d1c6c819-a8da-419e-904d-761ee330d8d5\",wcag:true}\n</script>\n<link id=\"staticAssetCSS0\" rel=\"stylesheet\" href=\"/modules/virk/css/blitzer/jquery-ui-1.8.16.custom.css\" media=\"screen\" type=\"text/css\"/>\n<link id=\"staticAssetCSS1\" rel=\"stylesheet\" href=\"/modules/virk/css/960.css\" media=\"screen\" type=\"text/css\"/>\n<link id=\"staticAssetCSS2\" rel=\"stylesheet\" href=\"/modules/virk/css/reset.css\" media=\"screen\" type=\"text/css\"/>\n<link id=\"staticAssetCSS3\" rel=\"stylesheet\" href=\"/modules/virk/css/virk.css\" media=\"screen\" type=\"text/css\"/>\n<link id=\"staticAssetCSS4\" rel=\"stylesheet\" href=\"/modules/virk/css/agile_carousel.css\" media=\"screen\" type=\"text/css\"/>\n<link id=\"staticAssetCSS5\" rel=\"stylesheet\" href=\"/modules/virk/css/override.css\" media=\"screen\" type=\"text/css\"/>\n<script id=\"staticAssetJavascript0\" type=\"text/javascript\" src=\"/modules/virk/javascript/jquery.min.js\"></script>\n<script id=\"staticAssetJavascript1\" type=\"text/javascript\" src=\"/modules/virk/javascript/jquery-ui.min.js\"></script>\n<script id=\"staticAssetJavascript2\" type=\"text/javascript\" src=\"/modules/virk/javascript/jquery.cookie.js\"></script>\n<script id=\"staticAssetJavascript3\" type=\"text/javascript\" src=\"/modules/virk/javascript/agile_carousel.alpha.js\"></script>\n<script id=\"staticAssetJavascript4\" type=\"text/javascript\" src=\"/modules/virk/javascript/mobile_redirection.js\"></script>\n<script id=\"staticAssetJavascript5\" type=\"text/javascript\" src=\"/modules/virk/javascript/virk.js\"></script>\n<script id=\"staticAssetJavascript6\" type=\"text/javascript\" src=\"/modules/virk/javascript/jquery.browser.js\"></script>\n<script id=\"staticAssetJavascript7\" type=\"text/javascript\" src=\"/modules/virk/javascript/pdf_detection.js\"></script>\n<script id=\"staticAssetJavascript8\" type=\"text/javascript\" src=\"/modules/virk/javascript/deployJava.js\"></script>\n\n</head>\n  <body >\n    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div id=\"canvashead\"></div>\n    <img src=\"/modules/virk/css/img/v-print.png\" id=\"printlogo\" style=\"display:none\"/>\n    <div class=\"bodywrapper\">\n      <div id=\"maingrid\"><div class=\"container_16\">\n  <!--start grid_12-->\n    <div class='grid_12'>\n      <div id=\"headgrid\"><div class=\"container_16\">\n  <!--start grid_12-->\n    <div class='grid_12 alpha omega'>\n      <a href=\"/cms/render/live/da/sites/virk/home.html\" target=\"_top\"><img src=\"/files/live/sites/virk/files/v.png\" alt=\"Til forsiden\" /></a><div class=\"clear\"></div><script type=\"text/javascript\">$(function() {$(\"#navside ul.level_1 li .box-inner\").hide(); $(\"#navside ul.level_1 li.inPath > .box-inner\").show()});</script><div class=\"clear\"></div><div class=\"menu\">\r\n    <div id=\"navmenu\">\r\n    <div class=\"navbar\">\r\n    <ul class=\"navmenu level_1\">\r\n        <li class=\"noChildren selected firstInLevel\">\r\n                            <a href=\"/cms/render/live/da/sites/virk/home.html\" >Forside</a></li>\r\n                    <li class=\"noChildren\">\r\n                            <a href=\"/cms/render/live/da/sites/virk/home/indberetninger.html\">Indberetninger</a></li>\r\n                    <li class=\"noChildren\">\r\n                            <a href=\"/cms/render/live/da/sites/virk/home/myndigheder.html\"title=\"Myndigheder i hele danmark\">Myndigheder</a></li>\r\n                    <li class=\"noChildren\">\r\n                            <a href=\"/cms/render/live/da/sites/virk/home/vejledninger.html\">Vejledninger</a></li>\r\n                    <li class=\"noChildren\">\r\n                            <a href=\"/cms/render/live/da/sites/virk/home/om-virkdk.html\">Om Virk.dk</a></li>\r\n                    </ul>\r\n    </div>\r\n    </div>\r\n    </div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_12-->\n  <div class='clear'></div>\n  </div>\n</div><div id=\"searchgrid\"><div class=\"container_16\">\n  <!--start grid_12-->\n    <div class='grid_12 alpha omega'>\n      <div class=\"searchbar_\">\n    <form action=\"/cms/render/live/da/sites/virk/soeg.html\" accept-charset=\"utf-8\" onsubmit=\"return ($(this).find('.q').val() != '') || (!$(this).find('.all').attr('checked'))\">\n        <div id=\"canvassearch\"></div>        \n\t\t<fieldset>\n\t\t<label class=\"hideMe\" for=\"searchbar_input\">Sg p Virk.dk...</label>\n        <input id=\"searchbar_input\" value=\"\" type=\"text\" class=\"q auto\" name=\"x\" \n            placeholder=\"Sg p Virk.dk...\" \n            onfocus=\"$(this.form).addClass('large');\" />\n        <input class=\"sb\" type=\"submit\" title=\"Sg\" value=\"Sg\" /><br/>        \n        <div class=\"qe\" style=\"display:none\">\n\t\t\t<legend class=\"hideMe\">Kategorier</legend>\n            <input id=\"radio_alt\" class=\"all\" type=\"radio\" name=\"t\" value=\"\" checked=\"checked\"/><label for=\"radio_alt\">Alt</label>\n            <input id=\"radio_indberetninger\" type=\"radio\" name=\"t\" value=\"indberetning\" /><label for=\"radio_indberetninger\">Kun indberetninger</label>\n            <input id=\"radio_cvr\" type=\"radio\" name=\"t\" value=\"CVR\" /><label for=\"radio_cvr\">Kun CVR-oplysninger</label>\n            <!--<button class=\"close\" onclick=\"$(this.form).removeClass('large'); return false\">X</button>-->\n\t\t\t</legend>\n        </div>\n        </fieldset>\n    </form>\n</div><div class=\"clear\"></div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_12-->\n  <div class='clear'></div>\n  </div>\n</div><br/><script type=\"text/javascript\">$(function() {$(\"#navmenu li a:contains('Forside')\").parent().addClass(\"inPath\")})</script><div class=\"container_16\">\n  <!--start grid_12-->\n    <div class='grid_12 alpha'>\n      <map name=\"map_efb953fe-6311-4503-b508-9a3c9976a9cf\" id=\"map_efb953fe-6311-4503-b508-9a3c9976a9cf\">\n                <area shape=\"rect\" coords=\"0,0,700,142\" href=\"/cms/render/live/da/sites/virk/home/vejledninger/ansaetselv.html\" alt=\"AnstSelv\" /></map>\n        <map name=\"map_d89e990a-6a8d-4cdd-acb2-f19698224551\" id=\"map_d89e990a-6a8d-4cdd-acb2-f19698224551\">\n                <area shape=\"rect\" coords=\"0,0,700,142\" href=\"/cms/render/live/da/sites/virk/home/vejledninger/start-virksomhed/vejviser.html\" alt=\"vejviser\" /></map>\n        <map name=\"map_a1be4c78-0106-4af1-82df-a02f153dff58\" id=\"map_a1be4c78-0106-4af1-82df-a02f153dff58\">\n                <area shape=\"rect\" coords=\"0,0,700,142\" href=\"/cms/render/live/da/sites/virk/home/indberetninger.html\" alt=\"indberetninger\" /></map>\n        <script type=\"text/javascript\">\nvar data_forsideroulette = [\n                \n            {\"content\": \"<div class='slide_inner'><img usemap='#map_efb953fe-6311-4503-b508-9a3c9976a9cf' src='/files/live/sites/virk/files/Billeder/karrussel-online_offline-foto/Karrusellen-online/Ansaetselv.gif' alt=''/></div>\" },            \n            {\"content\": \"<div class='slide_inner'><img usemap='#map_d54910e5-f382-4537-90f1-26d129e17722' src='/files/live/sites/virk/files/Billeder/karrussel-online_offline-foto/Karrusellen-online/Blondine_CVR.jpg' alt=''/></div>\" },            \n            {\"content\": \"<div class='slide_inner'><img usemap='#map_d89e990a-6a8d-4cdd-acb2-f19698224551' src='/files/live/sites/virk/files/Billeder/karrussel-online_offline-foto/Karrusellen-online/Kompas.jpg' alt=''/></div>\" },            \n            {\"content\": \"<div class='slide_inner'><img usemap='#map_a1be4c78-0106-4af1-82df-a02f153dff58' src='/files/live/sites/virk/files/Billeder/karrussel-online_offline-foto/Karrusellen-online/Ny-paa-Virk.jpg' alt=''/></div>\" }    \n    ];\n   $(function() {\n        $(\"#carousel-forsideroulette\").agile_carousel({\n            carousel_data: data_forsideroulette,\n            carousel_outer_height: 142,\n            carousel_height: 142,\n            slide_height: 142,\n            carousel_outer_width: 700,\n            slide_width: 700,\n            transition_time: 300,\n            timer: 4000,\n            continuous_scrolling: true,\n            transition_type: \"slide\",\n            control_set_1: \"numbered_buttons\",\n            no_control_set: \"hover_previous_button,hover_next_button\"\n        });\n    });\n</script>\n\n<div class=\"carousel flavor_1\" id=\"carousel-forsideroulette\">\n</div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_12-->\n  <div class='clear'></div>\n  </div><p>\n\t&nbsp;</p><div id=\"Virk-forside-top\"><div class=\"container_16\">\n  <!--start grid_4-->\n    <div class='grid_4 alpha'>\n      <div class=\"titlebox underlined\">\n    <h3 class=\"underlined\">\n            <span>Mest anvendte</span>\n            </h3>\n    <div class=\"box-content\" style=\"min-height:200px\">\n                 <p style=\"text-align: justify;\">\n\t<a href=\"http://www.virk.dk/id/7509\" target=\"_self\" title=\"Fakturablanketten\"><br />\n\tFakturablanketten</a><br />\n\t<a href=\"http://www.virk.dk/id/25198\" title=\"NemRefusion\">NemRefusion</a><a href=\"http://www.virk.dk/id/30068\" title=\"Registrer enkeltmandsvirksomhed\"><br />\n\tRegistrer enkeltmandsvirksomhed</a><br />\n\t<a href=\"http://www.virk.dk/id/7660\" title=\"Webreg - ndre/lukke\">&AElig;ndre/lukke virksomhed</a><a href=\"http://www.virk.dk/id/7520\" title=\"TastSelv Erhverv\"><br />\n\tTastSelv Erhverv</a><br />\n\t<a href=\"/cms/render/live/da/sites/virk/home/indberetninger.html\" title=\"Alle indberetninger\"><br />\n\tAlle indberetninger</a></p><div class=\"clear\"></div></div>\n        <div class=\"clear\"></div>\n</div><div class='clear'></div>\n    </div>\n    <!--stop grid_4-->\n  <!--start grid_4-->\n    <div class='grid_4'>\n      <div class=\"titlebox underlined\">\n    <h3 class=\"underlined\">\n            <span>Hvis du skal...</span>\n            </h3>\n    <div class=\"box-content\" style=\"min-height:200px\">\n                 <p>\n\t<a href=\"/cms/render/live/da/sites/virk/home/vejledninger/administration-af-medarbejdere.html\" title=\"Anstte en medarbejder\"><br />\n\t</a><a href=\"/cms/render/live/da/sites/virk/home/vejledninger/start-virksomhed/vejviser.html\" title=\"Starte en virksomhed\">Registrere eller &aelig;ndre en virksomhed</a><br />\n\t<a href=\"/cms/render/live/da/sites/virk/home/vejledninger/indberetning-af-statistik.html\" title=\"Indberette statistik\">Indberette statistik</a><br />\n\t<a href=\"/cms/render/live/da/sites/virk/home/vejledninger/start-fdevarevirksomhed.html\" title=\"Starte fdevarevirksomhed\">Starte f&oslash;devarevirksomhed</a><br />\n\t<a href=\"/cms/render/live/da/sites/virk/home/vejledninger/registrering-som-arbejdsgiver.html\" title=\"Vre arbejdsgiver\">V&aelig;re arbejdsgiver</a></p>\n<p>\n\t<br />\n\t<a href=\"/cms/render/live/da/sites/virk/home/vejledninger.html\" title=\"Se alle guides og vejledninger\">Se alle guides og vejledninger</a></p><div class=\"clear\"></div></div>\n        <div class=\"clear\"></div>\n</div><div class='clear'></div>\n    </div>\n    <!--stop grid_4-->\n  <!--start grid_4-->\n    <div class='grid_4 omega'>\n      <div class=\"titlebox underlined\">\n    <h3 class=\"underlined\">\n            <span>Indberetninger efter emne</span>\n            </h3>\n    <div class=\"box-content\" style=\"min-height:200px\">\n                 <p style=\"text-align: center;\">\n\t<a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Byggeri+og+Ejendom%2F%22\" name=\"Byggeri og Ejendom\" title=\"Byggeri og Ejendom\">Byggeri og Ejendom</a>&nbsp;&nbsp; <span style=\"font-size: 18px;\"><a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Energi+og+Milj%C3%B8%2F%22\" name=\"Energi og Milj\" title=\"Energi og Milj\">Energi og Milj&oslash;</a></span>&nbsp;&nbsp; <span style=\"font-size: 10px;\"><a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Erhverv+og+Industri%2F%22\" name=\"Erhverv og Industri\" title=\"Erhverv og Industri\">Erhverv og Industri</a></span> &nbsp; <a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Landbrug%2C+Skovbrug+%26+Fiskeri%2F%22\" name=\"Landbrug, Skovbrug og Fiskeri\" title=\"Landbrug, Skovbrug og Fiskeri\"><span style=\"font-size: 12px;\">Landbrug, Skovbrug og Fiskeri</span></a>&nbsp;&nbsp; <a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Personale+og+Uddannelse%2F%22\" name=\"Personale og Uddannelse\" title=\"Personale og Uddannelse\"><span style=\"font-size: 16px;\">Personale og Uddannelse</span></a>&nbsp;&nbsp; <span style=\"font-size: 10px;\"><a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Sikkerhed+og+Sundhed%2F%22\" name=\"Sikkerhed og Sundhed\" title=\"Sikkerhed og Sundhed\">Sikkerhed og Sundhed</a></span>&nbsp; <a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Transport%2F%22\" name=\"Transport\" title=\"Transport\"><span style=\"font-size: 16px;\"><span style=\"font-size: 18px;\">Transport&nbsp;</span>&nbsp; </span></a><span style=\"font-size: 16px;\"><a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22Virksomhedsforhold%2F%22\" name=\"Virksomhedsforhold \" title=\"Virksomhedsforhold \">Virksomhedsforhold&nbsp;</a></span>&nbsp; <a href=\"http://www.virk.dk/cms/render/live/da/sites/virk/home/indberetninger.html?c=%22%C3%98konomi%2F%22\" name=\"konomi\" title=\"konomi\">&Oslash;konomi</a></p><div class=\"clear\"></div></div>\n        <div class=\"clear\"></div>\n</div><div class='clear'></div>\n    </div>\n    <!--stop grid_4-->\n  <div class='clear'></div>\n  </div>\n</div><div id=\"virk-forside-bund\"><div class=\"container_16\">\n  <!--start grid_4-->\n    <div class='grid_4 alpha'>\n      <div class=\"box spot-white-blue\" style=\"min-height:200px\">\n    <div class=\"box-content\">\n        <h1>\n\tCookies</h1>\n<p>\n\tP&aring; Virk.dk bruger vi cookies bl.a. til at forbedre vores indhold og struktur via din og andres faktiske brug af Virk.dk.</p>\n<p>\n\t<a href=\"/cms/render/live/da/sites/virk/home/om-virkdk/vilkar-for-brug-af-virkdk/brug-af-cookies.html\" title=\"brug af cookies\">L&aelig;s mere om cookies og brugen af dem her</a><br />\n\t&nbsp;</p><div class=\"clear\"></div></div>\n    <div class=\"clear\"></div>\n</div><div class='clear'></div>\n    </div>\n    <!--stop grid_4-->\n  <!--start grid_8-->\n    <div class='grid_8 omega'>\n      <div class=\"box spot-white-orange\" style=\"min-height:200px\">\n    <div class=\"box-content\">\n        <h1>\n\tVejledninger p&aring; Virk.dk</h1>\n<p>\n\tVidste du, at du p&aring; Virk.dk kan finde vejledninger og guides, der f&oslash;rer dig igennem dine forpligtelser over for det offentlige i forskellige situationer? Du kan via e-l&aelig;ringsfilm fx l&aelig;re om, hvilke pligter du skal registrere ift. SKAT og ATP, f&aring; hj&aelig;lp til hvordan du bruger NemRefusion og Regnskab 2.0 eller f&aring; svar p&aring; hvad N&aelig;ringsbasen er.</p>\n<p>\n\t<a href=\"/cms/render/live/da/sites/virk/home/vejledninger.html\" title=\"Se alle vejledninger p Virk.dk\">Se alle vejledninger p&aring; Virk.dk</a></p><div class=\"clear\"></div></div>\n    <div class=\"clear\"></div>\n</div><div class='clear'></div>\n    </div>\n    <!--stop grid_8-->\n  <div class='clear'></div>\n  </div>\n</div><div class=\"clear\"></div><div class=\"clear\"></div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_12-->\n  <!--start grid_4-->\n    <div class='grid_4'>\n      <div class=\"menu\">\r\n    <div id=\"navsub\">\r\n    <div class=\"navbar\">\r\n    <ul class=\"navmenu level_1\">\r\n        <li class=\"noChildren\">\r\n                            <a href=\"/cms/render/live/da/sites/virk/home/hjaelp.html\">Hjlp</a></li>\r\n                    <li class=\"noChildren\">\r\n                            <a href=\"http://www.virk.dk/cms/render/live/en/sites/english/home.html\" >English</a></li>\r\n                    </ul>\r\n    </div>\r\n    </div>\r\n    </div><div class=\"clear\"></div><script type=\"text/javascript\">\n    function displayChangeLegalUnit() {\n        $(\"#changeLegalUnitDiv\").slideToggle(300);\n        return false;\n    }\n    function setBehalfOfCookie(value) {\n        $.cookie('virk_behalfof', value, { expires: 1, path: '/'});\n    }\n\tvar legalunitmap = new Object();\n    $(function() {\n\t\tvar cvrnumberidentifier = '';\n\t\tvar cvrbehalfof = $.cookie('virk_behalfof');\n\t\tif (cvrbehalfof==null || cvrnumberidentifier==cvrbehalfof) {\n\t\t\t$('#behalfofcontainer').hide();\n\t\t\t$('#standardcontainer').show();\n\t\t\tsetBehalfOfCookie(null);\n\t\t} else {\n\t\t\t$('#behalfofcontainer').show();\n\t\t\t$('#standardcontainer').hide();\n\t\t\t$('#behalfofname').html(legalunitmap[cvrbehalfof]);\n\t\t\t$('#behalfofcvr').append(cvrbehalfof);\n\t\t\t$('#cvrSelector option').each(function () {\n\t\t\t\tif ($(this).val()==cvrbehalfof) {\n\t\t\t\t\t$(this).attr('selected','selected');\n\t\t\t\t}\n            });\n\t\t}\n\t});\n</script>\n<div class=\"virklogin normal\">\n    <div class=\"box crown-small\" style=\"min-height:0px;\">\n        <div class=\"box-content\">\n            <p>Du kan logge ind med Digital signatur eller NemID</p>\n                        <form action=\"/saml/virk/login\" accept-charset=\"utf-8\">\n                            <input type=\"hidden\" name=\"f\" id=\"f\" value=\"/cms/render/live/da/sites/virk/home.html\" />\n                            <input class=\"lb\" type=\"submit\" value=\"Log ind\" />\n                            <script type=\"text/javascript\">\n                                $(function() {\n                                \t$(\"#f\").val(window.location.pathname);\n                                });\n                            </script>\n                        </form>\n                    </div>\n    </div>\n</div><div class=\"container_16\">\n  <!--start grid_4-->\n    <div class='grid_4 alpha'>\n      <div class='clear'></div>\n    </div>\n    <!--stop grid_4-->\n  <div class='clear'></div>\n  </div><div class=\"postbokscontainer boxstyle2 titlebox\">\n\t\t\t\t<div class=\"img\">\n\t\t\t\t\t<h3>\n\t\t\t\t\t\tPost\n\t\t\t\t\t\t&nbsp;<img src=\"/modules/virk/css/img/i_mail.png\" alt=\"internal-link-on-image\" />\n\t\t\t\t\t</h3>\n\t\t\t\t</div>\n                <div class=\"link\">\n                    <a href=\"/cms/render/live/da/sites/virk/system/post.html\" target=\"_self\">Modtag posten digitalt og sikkert</a><br />\n                        </div>\n            </div><div class=\"clear\"></div><div class=\"box spot-blue-blue\" style=\"min-height:0px\">\n    <div class=\"box-content\">\n        <h2>\n\tDigital signatur</h2>\n<p>\n\t<a href=\"https://www.nets-danid.dk/produkter/nemid_medarbejdersignatur/bestil_nemid/index.html?execution=e1s1\" target=\"_blank\" title=\"Bestil NemID medarbejdersignatur\">Bestil NemID medarbejdersignatur</a></p>\n<p>\n\t<a href=\"/cms/render/live/da/sites/virk/home/hjaelp/digital-signatur.html\" title=\"Virk.dk og digitale signaturer\">Virk.dk og digitale signaturer </a></p><div class=\"clear\"></div></div>\n    <div class=\"clear\"></div>\n</div><div class=\"box spot-white-orange\" style=\"min-height:0px\">\n    <div class=\"box-content\">\n        <p>\n\t<a href=\"/cms/render/live/da/sites/virk/home/mobilportalen.html\" target=\"_self\" title=\"G til mobile indgange til det offentlige\"><img alt=\"\" src=\"/files/live/sites/virk/files/mobileportal/_bg-illustration.png\" style=\"width: 150px; height: 117px;\" title=\"Mobile indgange til det offentlige\" /></a></p>\n<p>\n\t<strong><a href=\"/cms/render/live/da/sites/virk/home/mobilportalen.html\" target=\"_self\" title=\"Mobile indgange til det offentlige\" type=\"Mobile indgange til det offentlige\">Din mobile indgang til det offentlige</a></strong></p><div class=\"clear\"></div></div>\n    <div class=\"clear\"></div>\n</div><div class=\"box spot-white-blue\" style=\"min-height:0px\">\n    <div class=\"box-content\">\n        <p>\n\tViden og v&aelig;rkt&oslash;jer<a href=\"http://www.startvaekst.dk/forside/0/2\" target=\"_blank\"><br />\n\t<img alt=\"Startvkst\" src=\"/files/live/sites/virk/files/Billeder/DIA/startvaekstlogo.gif\" style=\"width: 128px; height: 31px;\" title=\"G til Startvkst.dk\" /></a></p><div class=\"clear\"></div></div>\n    <div class=\"clear\"></div>\n</div><div class=\"clear\"></div><div class=\"clear\"></div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_4-->\n  <div class='clear'></div>\n  </div>\n</div><div id=\"lowgrid\"><div class=\"container_16\">\n  <!--start grid_16-->\n    <div class='grid_16'>\n      <div class=\"clear\"></div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_16-->\n  <div class='clear'></div>\n  </div>\n</div><div id=\"footergrid\"><div class=\"container_16\">\n  <!--start grid_16-->\n    <div class='grid_16'>\n      <hr />\n<p>\n\t<strong><a href=\"http://www.virk.dk\" title=\"G til forsiden af Virk.dk\">Virk.dk</a> l <a href=\"/cms/render/live/da/sites/virk/home/om-virkdk/kontakt.html\" title=\"Kontakt\">Kontakt</a> l <a href=\"/cms/render/live/da/sites/virk/home/om-virkdk/vilkar-for-brug-af-virkdk.html\" title=\"Vilkr\">Vilk&aring;r</a> l <a href=\"/cms/render/live/da/sites/virk/home/om-virkdk/vilkar-for-brug-af-virkdk/brug-af-cookies.html\" title=\"Cookies\">Cookies</a></strong></p><!-- (C)2000-2012 Gemius SA - gemiusAudience / virk2.dk / Main Page --><script type=\"text/javascript\"><!--//--><![CDATA[//><!-- var pp_gemius_identifier = new String('ciJL_wNr.JgYJqX0m_g9zJcP3wmUakciFWAvGBI5K4v.w7'); //--><!]]></script> <script type=\"text/javascript\" src=\"/files/live/sites/virk/files/scripts/xgemius.js\"></script><div class=\"clear\"></div><div class=\"clear\"></div><div class='clear'></div>\n    </div>\n    <!--stop grid_16-->\n  <div class='clear'></div>\n  </div>\n</div><div class=\"clear\"></div></div>\n    <br style=\"clear: both\"/>\n  </body>\n</html>"
  },
  {
    "path": "testdata/8859_1_de.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n<meta content='infopark.de' name='author'>\n<meta content='width=device-width, minimum-scale=0.1, maximum-scale=1.0' name='viewport'>\n<meta content='text/html; charset=utf-8' http-equiv='content-type'>\n<!--[if IE ]> <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\"> <![endif]-->\n<meta name=\"description\" content=\"Homepage der Infopark AG: Infopark powers great websites. Portal-Lsungen und webbasierte Informationssysteme. Beratung rund ums Web. Infopark Cloud Express: Content Management System, WebCRM und Elastic Web Platform\">\n<meta name=\"keywords\" content=\"Infopark Cloud Express, Infopark CMS Fiona, Content Management System, Great websites on-demand, Online-Marketing, Portal-Lsungen, PaaS, Ruby on Rails, CMS, CRM\">\n<title>\ninfopark.de Startseite | Anbieter von: Infopark Cloud Express | CMS und CRM on-demand. | Infopark powers great websites.\n</title>\n<link href=\"/assets/application-f50f7301c9902c83a261c6d56e407c4c.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n<script src=\"/assets/application-df3f0bcee61689dca239d5cd789f6ec0.js\" type=\"text/javascript\"></script>\n<meta content=\"authenticity_token\" name=\"csrf-param\" />\n<meta content=\"9CTUMV/JLeAs40RrBZc5k0qca07tGu5PWrx7EFCru7M=\" name=\"csrf-token\" />\n<meta content=\"Rails Connector for Infopark CMS Fiona by Infopark AG (www.infopark.de); Version 6.8.0.beta.200.663.ceecdee\" name=\"generator\" />\n<script type=\"text/javascript\">var NREUMQ=NREUMQ||[];NREUMQ.push([\"mark\",\"firstbyte\",new Date().getTime()]);</script></head>\n<!--[if lt IE 7]> <body class=\"ie6\"> <![endif]-->\n<!--[if IE 7]> <body class=\"ie7\"> <![endif]-->\n<!--[if IE 8]> <body class=\"ie8\"> <![endif]-->\n<!--[if IE 9]> <body class=\"ie9\"> <![endif]-->\n<body>\n<div id='container'>\n<img alt=\"infopark Logo\" id=\"print_logo\" src=\"/assets/infopark-logo-9eb6d5963f5db3f5e22ff14bb117a875.png\" />\n<div class='error_ie6'>\n<img alt=\"infopark Logo\" src=\"/assets/infopark-logo-9eb6d5963f5db3f5e22ff14bb117a875.png\" />\n<h2>Wir untersttzen diesen Browser nicht mehr.</h2>\n<p>\nSie mchten die Webseiten der Infopark AG mit dem Internet Explorer 6 besuchen.\n<br>\nWir untersttzen diesen Browser nicht mehr. Bitte machen Sie einen Browser-Update.\n</p>\n<p>\nVielen Dank - Ihr Infopark-Team\n</p>\n</div>\n\n<nav>\n<ul>\n<li class='home'>\n<a href=\"/de\" class=\"\" title=\"home\"><img alt=\"Red_ip_logo\" src=\"/assets/red_ip_logo-8c45f52089359251256b9511c4d6c25f.png\" /></a>\n</li>\n<li class='first' id='top-navi-web-technologien'>\n<a href=\"/web-technologien\" class=\"icon icon-web_technologien\">Web-Technologien</a>\n<div class='nav-hovermenu grid_8'>\n<div class='fourbox_nav web_technologien'>\n<img alt=\"bild user role\" src=\"/assets/teaser_img/web_technologien_nav-9c38a8b7ce70f2a76094a8a4b49dae8a.jpg\" />\n<div>\n<a href=\"/system-architektur\">System-Architektur</a>\n<a href=\"/entwicklung-bei-infopark\">Entwicklung bei Infopark</a>\n<a href=\"/innovative-technologien\">Innovative Technologien</a>\n<a href=\"/datenschutz-datensicherheit\">Datenschutz und -sicherheit</a>\n</div>\n<div class='sec'>\n<a href=\"/events\">Veranstaltungen</a>\n<a href=\"/references\">Referenzen</a>\n<a href=\"/company\">Unternehmen</a>\n</div>\n</div>\n</div>\n\n</li>\n<li id='top-navi-online-marketing'>\n<a href=\"/online-marketing\" class=\"icon icon-online_marketing\">Online-Marketing</a>\n<div class='nav-hovermenu grid_8'>\n<div class='fourbox_nav online_marketing'>\n<img alt=\"bild user role\" src=\"/assets/teaser_img/online_marketing_nav-307c6294cb9b4766ca293ece254c8ef0.jpg\" />\n<div>\n<a href=\"/leitmedium-internet\">Leitmedium Internet</a>\n<a href=\"/top-trends-im-web\">Top-Trends im Web</a>\n<a href=\"/web-strategie\">Web-Strategie und Konzepte</a>\n<a href=\"/mit-online-marketing-zum-ziel\">Mit Online-Marketing zum Ziel</a>\n</div>\n<div class='sec'>\n<a href=\"/events\">Veranstaltungen</a>\n<a href=\"/references\">Referenzen</a>\n<a href=\"/company\">Unternehmen</a>\n</div>\n</div>\n</div>\n\n</li>\n<li id='top-navi-loesungen'>\n<a href=\"/loesungen\" class=\"icon icon-loesungen\">Lsungen</a>\n<div class='nav-hovermenu grid_8'>\n<div class='fourbox_nav loesungen'>\n<img alt=\"bild user role\" src=\"/assets/teaser_img/loesungen_nav-8c26767af3304f12aec71c857a5cc929.jpg\" />\n<div>\n<a href=\"/infopark-cloud-express\">Infopark Cloud Express</a>\n<a href=\"/cms\">Content Management System</a>\n<a href=\"/webcrm\">WebCRM</a>\n<a href=\"/elastic-web-platform\">Elastic Web Platform</a>\n</div>\n<div class='sec'>\n<a href=\"/events\">Veranstaltungen</a>\n<a href=\"/references\">Referenzen</a>\n<a href=\"/company\">Unternehmen</a>\n</div>\n</div>\n</div>\n\n</li>\n<li id='top-navi-partner'>\n<a href=\"/partner\" class=\"icon icon-partner\">Partner</a>\n<div class='nav-hovermenu grid_8'>\n<div class='fourbox_nav partner'>\n<img alt=\"bild user role\" src=\"/assets/teaser_img/partner_nav-d45fdaafe3310b1f3cdeb4e9a5439d83.jpg\" />\n<div>\n<a href=\"/partner-werden\">Infopark-Partner werden</a>\n<a href=\"/partner-trainings\">Partner-Trainings</a>\n<a href=\"/agentur-finden\">Agentur finden</a>\n<a href=\"/technologie-partner\">Technologie-Partner</a>\n</div>\n<div class='sec'>\n<a href=\"/events\">Veranstaltungen</a>\n<a href=\"/references\">Referenzen</a>\n<a href=\"/company\">Unternehmen</a>\n</div>\n</div>\n</div>\n\n</li>\n<li id='top-navi-bewerber-jobs'>\n<a href=\"/jobs\" class=\"icon icon-bewerber\">Bewerber</a>\n<div class='nav-hovermenu grid_8'>\n<div class='fourbox_nav bewerber'>\n<img alt=\"bild user role\" src=\"/assets/teaser_img/bewerber_nav-a067b8de1c2c95d2569a53b8e1ca9302.jpg\" />\n<div>\n<a href=\"/2863/absolventen-trainees-stellenangebote\">Absolventen &amp; Trainees</a>\n<a href=\"/2871/studenten-praktikanten-stellenangebote\">Studenten &amp; Praktikanten</a>\n<a href=\"/2859/ausbildung-systemkaufmann-mediengestalter-stellenangebot\">Auszubildende</a>\n<a href=\"/2867/professionals-entwickler-vertrieb-infopark-stellenangebote\">Professionals</a>\n</div>\n<div class='sec'>\n<a href=\"/events\">Veranstaltungen</a>\n<a href=\"/references\">Referenzen</a>\n<a href=\"/company\">Unternehmen</a>\n</div>\n</div>\n</div>\n\n</li>\n<li id='top-navi-presse'>\n<a href=\"/presse\" class=\"icon icon-presse\">Presse</a>\n<div class='nav-hovermenu grid_8'>\n<div class='fourbox_nav presse'>\n<img alt=\"bild user role\" src=\"/assets/teaser_img/presse_nav-1528cd66b36e939254c38ca46b95df62.jpg\" />\n<div>\n<a href=\"/news\">Social Media Newsroom</a>\n<a href=\"/59013/infopark-in-den-medien\">Infopark in den Medien</a>\n<a href=\"/99726/pressemitteilungen_2012\">Pressemitteilungen</a>\n<a href=\"/bildmaterial\">Bildmaterial</a>\n</div>\n<div class='sec'>\n<a href=\"/events\">Veranstaltungen</a>\n<a href=\"/references\">Referenzen</a>\n<a href=\"/company\">Unternehmen</a>\n</div>\n</div>\n</div>\n\n</li>\n</ul>\n<div id='logo'>\n<a href=\"/de\" title=\"infopark.de Home\"><img alt=\"infopark Logo\" src=\"/assets/infopark-logo-transparent-7a7d3ad4de7e1b59ffe3d04c01650f33.png\" /></a>\n</div>\n</nav>\n\n<form accept-charset=\"UTF-8\" action=\"/search\" id=\"search\" method=\"get\"><div style=\"margin:0;padding:0;display:inline\"><input name=\"utf8\" type=\"hidden\" value=\"&#x2713;\" /></div>\n<input id=\"search-box\" name=\"q\" tabindex=\"1\" type=\"text\" />\n<input id=\"id\" name=\"id\" type=\"hidden\" value=\"2235\" />\n<button id='search-button'></button>\n</form>\n\n\n<header class='grid_8' id='homepage'>\n<div id='teaser'>\n<a href='#'>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/online_marketing_startseite-d538fae0fa4714d455ca6293312980e9.jpg\" />\n<span>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/online_marketing_startseite_text-ef8421aad49c89b749383cf4e58a5aee.png\" style=\"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/teaser_img/online_marketing_startseite_text-ef8421aad49c89b749383cf4e58a5aee.png', sizingMethod='scale');\" />\n</span>\n</a>\n\n<a href='#'>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/cio_startseite-33c4379008eee0c17f6bad76c2b6e861.jpg\" />\n<span>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/cio_startseite_text-b12ba982454d8ecb3192a725184568fe.png\" style=\"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/teaser_img/cio_startseite_text-b12ba982454d8ecb3192a725184568fe.png', sizingMethod='scale');\" />\n</span>\n</a>\n\n<a href='#'>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/web_technologien_startseite-7e7a21dd8ae6e31f8585dfdc37da8bf9.jpg\" />\n<span>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/web_technologien_startseite_text-8d57d79efe1e8bbf7ff2b0502e17a30f.png\" style=\"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/teaser_img/web_technologien_startseite_text-8d57d79efe1e8bbf7ff2b0502e17a30f.png', sizingMethod='scale');\" />\n</span>\n</a>\n\n<a href='#'>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/partner_startseite-555cb54ba7d1f2b3a34f2bfa9dad51e7.jpg\" />\n<span>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/partner_startseite_text-1b132ade92a431d0c4937777698d3408.png\" style=\"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/teaser_img/partner_startseite_text-1b132ade92a431d0c4937777698d3408.png', sizingMethod='scale');\" />\n</span>\n</a>\n\n<a href='#'>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/cio_startseite-33c4379008eee0c17f6bad76c2b6e861.jpg\" />\n<span>\n<img alt=\"teaser\" border=\"0\" src=\"/assets/teaser_img/cio_startseite_text-b12ba982454d8ecb3192a725184568fe.png\" style=\"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/teaser_img/cio_startseite_text-b12ba982454d8ecb3192a725184568fe.png', sizingMethod='scale');\" />\n</span>\n</a>\n\n</div>\n<div class='teaser_left'><img alt=\"Transparent\" src=\"/assets/teaser_img/transparent-a0c4145755ab5be0c6d780f53f398778.png\" /></div>\n<div class='teaser_right'><img alt=\"Transparent_right\" src=\"/assets/teaser_img/transparent_right-e72f285948fb7c62adf83a1d3b8e2aee.png\" /></div>\n\n<!-- = render({:state => :meta}, @obj) -->\n</header>\n\n<div id='main'>\n<div class='fourbox'>\n<div>\n<a href=\"/91284/infopark-cloud-express-im-detail\"><h1 class=\"heading-main\">Cloud-Lsungen</h1></a>\n<div class='content'>\n<a href=\"http://video-cdn.infopark.de/20111124.infopark-referenzenfilm.640x360.mp4\" class=\"video\"><img alt=\"referenzprojekte-video\" src=\"/112191/referenzprojekte-video.jpg\" /></a>\n<p>Great websites on-demand.<br> Entdecken Sie unsere Cloud-Services auf Basis von Ruby on Rails. CMS und CRM fr komplexe Web-Projekte. </p>\n</div>\n<div class='readmore'>\n<a href=\"/91284/infopark-cloud-express-im-detail\" class=\"readmore-link\">Die Cloud entdecken!</a>\n</div>\n</div>\n<div>\n<a href=\"/awards\"><h1 class=\"heading-main\">Auszeichnungen</h1></a>\n<div class='content'>\n<img alt=\"Infoparks gewonnene Awards\" src=\"/112180/infopark-awards.png\" />\n<p>Der Infopark Cloud Express wurde bereits mehrfach bei nationalen und paneuropischen Wettbewerben ausgezeichnet.</p>\n</div>\n<div class='readmore'>\n<a href=\"/awards\" class=\"readmore-link\">Best in Class-Awards</a>\n</div>\n</div>\n<div>\n<a href=\"/111285\" class=\"html\"><h1 class=\"heading-main\">Infopark Cloud Express</h1></a>\n<div class='content'>\n<a href=\"/111285\" class=\"html\"><img src=\"/112211/infopark-cloud-express.jpg\" alt=\"infopark-cloud-express\" /></a>\n<p></p>\n</div>\n<div class='readmore'>\n<a href=\"/111285\" class=\"html readmore-link\">Kostenlose Registrierung</a>\n</div>\n</div>\n<div>\n<a href=\"/news\"><h1 class=\"heading-main\">Nachrichten</h1></a>\n<div class='content'>\n<div style=\"overflow-y: scroll; overflow-x: hidden; height: 250px\">\r\n  <div id=\"fb\"></div>\r\n</div>\r\n\n<p></p>\n</div>\n<div class='readmore'>\n<a href=\"/news\" class=\"readmore-link\">Zum Social Media Newsroom</a>\n</div>\n</div>\n</div>\n\n\n\n<div class='claim'>\n<img alt=\"Infopark powers great websites\" src=\"/assets/visual_arrow-3654c8b1c6400e0d202a22eafe10cc92.png\" />\nInfopark powers great websites.\n</div>\n</div>\n\n</div>\n<footer>\n<div class='grid_8' id='footer-container'>\n<div id='breadcrumbs'>\n<ul>\n<li class='first'>\n<a href='/' title='Home'></a>\n</li>\n<li><a href=\"/de\">infopark.de Startseite | Anbieter von: Infopark Cloud Express | CMS und CRM on-demand.</a></li>\n</ul>\n<div id='award_wrapper'>\n<div id='award_1'>\n<a href=\"/awards\">&nbsp;</a>\n<span class='info_layer'>\n<h3>Best in Cloud Award 2011</h3>\nWinner \"Platform-as-a-Service\"\n</span>\n</div>\n<div id='award_2'>\n<a href=\"/awards\">&nbsp;</a>\n<span class='info_layer'>\n<h3>European Software Excellence Award 2012</h3>\nWinner \"Content-Management-Solution\"\n</span>\n</div>\n<div id='award_3'>\n<a href=\"/awards\">&nbsp;</a>\n<span class='info_layer'>\n<h3>Innovationspreis-IT 2012</h3>\nWinner \"On demand\"\n</span>\n</div>\n</div>\n\n</div>\n<div class='grid_8 all'>\n<ul class='footer'>\n<li class='title no_link'>\n<h5>\nInfopark AG\n</h5>\n</li>\n<li>\n<a href=\"/events\">Veranstaltungen</a>\n</li>\n<li>\n<a href=\"/references\">Referenzen</a>\n</li>\n<li>\n<a href=\"/company\">Unternehmen</a>\n</li>\n</ul>\n\n<ul class='footer'>\n<li class='title no_link'>\n<h5>Fr Interessenten</h5>\n</li>\n<li><a href=\"/web-technologien\">Web-Technologien</a></li>\n<li><a href=\"/online-marketing\">Online-Marketing</a></li>\n<li><a href=\"/loesungen\">Lsungen</a></li>\n<li><a href=\"/partner\">Partner</a></li>\n<li><a href=\"/jobs\">Bewerber</a></li>\n<li><a href=\"/presse\">Presse</a></li>\n</ul>\n<ul class='footer'>\n<li class='title no_link'>\n<h5>Fr Kunden</h5>\n</li>\n<li><a href=\"http://kb.infopark.de\">Knowledge Base</a></li>\n<li><a href=\"http://kb.infopark.de/support\">Support-Anfragen</a></li>\n</ul>\n<ul class='footer'>\n<li class='title no_link'>\n<h5>Infopark in Social Media</h5>\n</li>\n<li><a href=\"http://www.facebook.com/infopark\">Facebook</a></li>\n<li><a href=\"http://www.twitter.com/infopark\">Twitter</a></li>\n<li><a href=\"http://www.youtube.com/infoparkag\">YouTube</a></li>\n<li><a href=\"https://www.xing.com/companies/infoparkag/about\">Xing</a></li>\n<li><a href=\"http://www.slideshare.net/infoparkag\">Slideshare</a></li>\n</ul>\n<ul class='footer'>\n<li class='title no_link'>\n<h5>Rechtliches</h5>\n</li>\n<li><a href=\"/transparency-center\">Transparency Center</a></li>\n<li><a href=\"/agb\">AGB</a></li>\n<li><a href=\"/datenschutz\">Datenschutz</a></li>\n<li><a href=\"/impressum\">Impressum</a></li>\n<li><a href=\"/contact\">Kontakt &amp; Anfahrt</a></li>\n</ul>\n\n<div class='clear'></div>\n</div>\n<div id='footer-contact'>\n<span class='contact'>\nTel.: +49 30 747993-0 | E-Mail:\n<script type=\"text/javascript\">eval(decodeURIComponent('%64%6f%63%75%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%61%20%68%72%65%66%3d%5c%22%6d%61%69%6c%74%6f%3a%69%6e%66%6f%40%69%6e%66%6f%70%61%72%6b%2e%64%65%3f%73%75%62%6a%65%63%74%3d%4b%6f%6e%74%61%6b%74%61%6e%66%72%61%67%65%5c%22%3e%69%6e%66%6f%40%69%6e%66%6f%70%61%72%6b%2e%64%65%3c%5c%2f%61%3e%27%29%3b'))</script>\n</span>\n<div id='social_sharing'>\n<div data-text='Infopark Powers Great Websites' data-url='http://www.infopark.de/' id='shareme'></div>\n</div>\n\n</div>\n</div>\n</footer>\n\n\n<script>\n  //<![CDATA[\n    var area = \"top-navi-\";\n  //]]>\n</script>\n\n<script type=\"text/javascript\">if (!NREUMQ.f) { NREUMQ.f=function() {\nNREUMQ.push([\"load\",new Date().getTime()]);\nvar e=document.createElement(\"script\");\ne.type=\"text/javascript\";e.async=true;e.src=\"https://d1ros97qkrwjf5.cloudfront.net/40/eum/rum.js\";\ndocument.body.appendChild(e);\nif(NREUMQ.a)NREUMQ.a();\n};\nNREUMQ.a=window.onload;window.onload=NREUMQ.f;\n};\nNREUMQ.push([\"nrfj\",\"beacon-1.newrelic.com\",\"8b59887f9b\",379282,\"IAsKQxYKWVRRE04MWw4BFFYDABpRWgUEHA==\",0,147,new Date().getTime(),\"\",\"\",\"\",\"\",\"\"])</script></body>\n</html>\n"
  },
  {
    "path": "testdata/8859_1_en.html",
    "content": "\n\n\n\n\n\n\n\n\n\n  \n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n   \"http://www.w3.org/TR/html4/loose.dtd\">\n\n\n\n<html>\n<head>\n\n\n\n<script>var BtechCF = {a:1,cf:function(){if(--BtechCF.a == 0){ uet('cf');}},inc:function(){BtechCF.a++;}};</script>\n\n\n\n\n\n\n\n\n\n\n<!--btech-iplc-->\n  <script type=\"text/javascript\">\n  \n  var btiplv;\n     new Image().src = \"http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png\";\n\n     new Image().src = \"http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\";\n  </script>\n    <meta http-equiv=\"x-dns-prefetch-control\" content=\"on\">\n    <link rel=\"dns-prefetch\" href=\"http://g-ecx.images-amazon.com\">\n    <link rel=\"dns-prefetch\" href=\"http://z-ecx.images-amazon.com\">\n    <link rel=\"dns-prefetch\" href=\"http://ecx.images-amazon.com\">\n    <link rel=\"dns-prefetch\" href=\"http://completion.amazon.com\">\n    <link rel=\"dns-prefetch\" href=\"http://client-log.amazon.com\">\n    <!-- ue -->\n<style type=\"text/css\"><!--\n\n\n\nBODY { font-family: arial,verdana,helvetica,sans-serif; font-size: 13px; background-color: #FFFFFF; color: #000000; margin-top: 0px; }\nTD, TH { font-family: arial,verdana,helvetica,sans-serif; font-size: 13px; }\n\n.serif { font-family: times,serif; font-size: 16px; }\n.sans { font-family: arial,verdana,helvetica,sans-serif; font-size: 16px; }\n\n.small { font-family: arial,verdana,helvetica,sans-serif; font-size: 13px; }\n\n.h1 { font-family: arial,verdana,helvetica,sans-serif; color: #E47911; font-size: 16px; }\n.h3color { font-family: arial,verdana,helvetica,sans-serif; color: #E47911; font-size: 13px; }\nh2.small {margin-bottom: 0em; }\nh2.h1 { margin-bottom: 0em; }\nh2.h3color { margin-bottom: 0em; }\n.tiny { font-family: arial,verdana,helvetica,sans-serif; font-size: 11px; }\n.tinyprice { font-family: arial,verdana,helvetica,sans-serif; color: #990000; font-size: 11px; }\n.highlight { font-family: arial,verdana,helvetica,sans-serif; color: #990000; font-size: 13px; }\n.popover-tiny { font-size: 11px; font-family: arial,verdana,helvetica,sans-serif; }\n.horizontal-search { font-weight: bold; font-size: 13px; color: #FFFFFF; font-family: arial,verdana,helvetica,sans-serif; }\n.listprice { font-family: arial,verdana,helvetica,sans-serif; text-decoration: line-through; }\n.price { font-family: arial,verdana,helvetica,sans-serif; color: #990000; }\n.horizontal-websearch { font-size: 11px; font-family: arial,verdana,helvetica,sans-serif; padding-left: 12px; }\n.big { font-size: 18px; font-family: arial,verdana,helvetica,sans-serif; }\n.amabot_widget .headline { color: #E47911; font-size: 16px; display: block; font-weight: bold; }\ndiv.unified_widget .headline { color: #E47911; font-size: 16px; display: block; font-weight: bold; }\n\ndiv#page-wrap { min-width: 980px; }\n\n* html div#page-wrap { border-right: 980px solid #fff; width: 100%; margin-right: 25px;}\n* html div#content { float: left; position:relative; margin-right: -980px; }\ndiv#leftcol, div#leftcolhidden { float: left; width: 180px; margin:5px 0px 0px 5px; display: inline; }\n\ndiv#rightcol, div#rightcolhidden { float: right; width: 300px; margin-top:15px;}\n\ndiv#leftcolhidden { clear:left;}\ndiv#rightcolhidden { clear:right; }\n\n div#center1, div#centercol, div#centerrightspancol { overflow: hidden; }\n\n* html div#center1 { width: auto; }\n* html div#centercol { width: auto; }\n\n* html div#centerrightspancol { width: 100%; }\ndiv#page-footer { clear: both; }\n\na:link { font-family: arial,verdana,helvetica,sans-serif; color: #004B91; }\na:visited { font-family: arial,verdana,helvetica,sans-serif; color: #996633; }\na:active { font-family: arial,verdana,helvetica,sans-serif; color: #FF9933; }\n\na.noclick, a.noclick:visited { color: #000000; }\n\n.noLinkDecoration a { text-decoration: none; border-bottom: none; }\n.noLinkDecoration a:hover { text-decoration: underline; }\n.noLinkDecoration a.dynamic:hover { text-decoration: none; border-bottom: 1px dashed; }\n.noLinkDecoration a.noclick:hover { color: #000000; text-decoration: none; border-bottom: 1px dashed; }\n\n.attention { background-color: #FFFFD5; }\n.alertgreen { color: #009900; font-weight: bold; }\n.alert { color: #FF0000; font-weight: bold; }\n.topnav { font-family: arial,verdana,helvetica,sans-serif; font-size: 12px; text-decoration: none; }\n.topnav a:link, .topnav a:visited { text-decoration: none; color: #003399; }\n.topnav a:hover { text-decoration: none; color: #E47911; }\n.topnav-active a:link, .topnav-active a:visited { font-family: arial,verdana,helvetica,sans-serif; font-size: 12px; color: #E47911; text-decoration: none; }\n.eyebrow { font-family: arial,verdana,helvetica,sans-serif; font-size: 10px; font-weight: bold;text-transform: uppercase; text-decoration: none; color: #FFFFFF; }\n.eyebrow a:link { text-decoration: none; }\n.popover-tiny a, .popover-tiny a:visited { text-decoration: none; color: #003399; }\n.popover-tiny a:hover { text-decoration: none; color: #E47911; }\n.tabon a:hover, .taboff a:hover { text-decoration: underline; }\n.tabon div, .taboff div { margin-top: 7px; margin-left: 9px; margin-bottom: 5px; }\n.tabon a, .tabon a:visited  { font-size: 10px; color: #FFCC66; font-family: arial,verdana,helvetica,sans-serif; text-decoration: none; text-transform: uppercase; font-weight: bold; line-height: 10px; }\n.taboff a, .taboff a:visited { font-size: 10px; color: #000000; font-family: arial,verdana,helvetica,sans-serif; text-decoration: none; text-transform: uppercase; font-weight: bold; line-height: 10px; }\n.indent { margin-left: 1em; }\n.half { font-size: .5em; }\n.list div { margin-bottom: 0.25em; text-decoration: none; }\n.hr-center { margin: 15px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dotted; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999; }\n\n\n.amabot_right .h1 { color: #E47911; font-size: .92em; }\n.amabot_right .amabot_widget .headline, .amabot_left .amabot_widget .headline { color: #E47911; font-size: .92em; display: block; font-weight: bold; }\n.amabot_left .h1 { color: #E47911; font-size: .92em; }\n.amabot_left .amabot_widget, .amabot_right .amabot_widget, .tigerbox {  padding-top: 8px;  padding-bottom: 8px;  padding-left: 8px;  padding-right: 8px;  border-bottom: 1px solid #C9E1F4;   border-left: 1px solid #C9E1F4;  border-right: 1px solid #C9E1F4;  border-top: 1px solid #C9E1F4; }\n\n.amabot_center div.unified_widget, .amabot_center .amabot_widget {  font-size: 12px; }\n.amabot_right div.unified_widget, .amabot_right .amabot_widget {  font-size: 12px; }\n.amabot_left div.unified_widget, .amabot_left .amabot_widget {  font-size: 12px; }\n\n.rightArrow { color: #E47911; font-weight: bold; padding-right: 6px; }\n.nobullet { list-style-type: none }\n.homepageTitle { font-size: 28pt; font-family: 'Arial Bold', Arial; font-weight: 800; font-variant: normal; color: #80B6CE; line-height:1em; }\ndiv.unified_widget p { margin:0 0 0.5em 0; line-height:1.4em; }\n\ndiv.unified_widget h2 { color:#E47911; padding:0; }\n\n.amabot_right div.unified_widget .headline, .amabot_left div.unified_widget .headline { color: #E47911; font-size: .92em; display: block; font-weight: bold; }\ndiv.unified_widget sup { font-weight:normal; font-size: 75%; }\ndiv.unified_widget h2 sup { font-size: 50%; }\n\ntd.amabot_left div.unified_widget h2, td.amabot_right div.unified_widget h2, div.amabot_left div.unified_widget h2, div.amabot_right div.unified_widget h2 { font-size:100%; margin:0 0 0.5em 0; }\ntd.amabot_center div.unified_widget h2, div.amabot_center div.unified_widget h2 { font-size:18px; font-weight:normal; margin:0 0 0.35em 0px; }\ntd.amabot_center, div.amabot_center { padding:5px 15px 5px 10px; } \ndiv.unified_widget ul { margin: 1em 0; padding: 0 0 0 15px; list-style-position:inside; }\n\ndiv.unified_widget ol { margin:0; padding:0 0 0 2.5em; }\n\ndiv.unified_widget a:link, div.unified_widget a:visited { text-decoration:underline; }\ndiv.unified_widget a:hover { text-decoration:underline; }\ndiv.unified_widget p.seeMore { clear:both; font-family:arial,verdana,helvetica,sans-serif; margin:0; padding-left:1.15em; text-indent: -1.15em; font-size:100%; font-weight:normal; }\ndiv.unified_widget p.seeMore a:link, div.unified_widget p.seeMore a:visited { text-decoration:underline; }\ndiv.unified_widget p.seeMore a:hover { text-decoration: underline; }\ndiv.unified_widget .carat, div.left_nav .carat { font-weight:bold; font-size:120%; font-family:verdana,arial,helvetica,sans-serif; color:#E47911; margin-right:0.20em; }\ndiv.unified_widget a img { border:0; }\n\ndiv.h_rule { clear:both; }\ndiv#centerrightspancol div.h_rule { clear:right; }\ndiv.unified_widget { margin-bottom:2em; clear:both; }\ndiv.unified_widget div.col1 { width: 100%; }\ndiv.unified_widget div.col2 { width: 49%; }\ndiv.unified_widget div.col3 { width: 32%; }\ndiv.unified_widget div.col4 { width: 24%; }\ndiv.unified_widget div.col5 { width: 19%; }\ndiv.unified_widget table { border:0; border-collapse:collapse; width:100%; }\ndiv.unified_widget td { padding:0 8px 8px 0; vertical-align:top; }\ndiv.unified_widget table.col1 td { width:100%; }\ndiv.unified_widget table.col2 td { width:49%; }\ndiv.unified_widget table.col3 td { width:32%; }\ndiv.unified_widget table.col4 td { width:24%; }\ndiv.unified_widget table.col5 td { width:19%; }\ndiv.unified_widget td.bottom { vertical-align:baseline; }\ndiv.unified_widget table h4, div.unified_widget h4 { color:#000; font-size:100%; font-weight:normal; margin:0; padding:0; }\ndiv.rcmBody div.prodImage, amabot_widget div.prodImage {float:left; margin:0px 0.5em 0.25em 0px;}\n\n\ntd.amabot_right div.unified_widget, td.amabot_left div.unified_widget, div.amabot_right div.unified_widget, div.amabot_left div.unified_widget { border: 1px solid #C9E1F4; padding: 8px; margin-bottom:20px; }\n\n* html td.amabot_right div.unified_widget, * html div.amabot_right div.unified_widget { height:100%; }\n* html td.amabot_left div.unified_widget, * html div.amabot_left div.unified_widget { height:100%; }\n\ndiv.rcmBody, amabot_widget div.rcmBody { line-height:1.4em; }\ndiv.rcmBody a:link, div.rcmBody a:visited { text-decoration: underline; }\n\ndiv.rcmBody p.seeMore, amabot_widget div.rcmBody p.seeMore { margin-top:0.5em; }\ndiv.rcmBody div.bannerImage { text-align:center; }\ndiv.rcmBody h2 span.homepageTitle { display:block; margin-bottom:-0.3em; margin-top:-0.12em; line-height:1em; }\ndiv.rcmBody h2 img { float:none; }\ntable.coopTable div.rcmBody .headline { font-size: 110%; }\ntable.coopTable div.rcmBody h2 { font-size: 110%; font-weight:bold; }\ntable.promo div.rcmBody h2 { font-size: 100%; font-weight:bold; }\n\ndiv.left_nav { font-family: Arial, sans-serif; font-size:100%; margin:0; line-height:1.05em; width:100%; border: 1px solid #C9E1F4; padding-bottom:10px; }\ndiv.left_nav h2 { margin:0 0 0 0; color: #000000; font-weight: bold; line-height: 1.25em; font-size: 100%; font-family: arial,verdana,helvetica,sans-serif; padding: 3px 6px; background-color: #EAF3FE; }\ndiv.left_nav h3 { font-family: arial,verdana,helvetica,sans-serif; margin:0.5em 0 0.4em 0.5em; color: #E47911; font-weight: bold; line-height: 1em; font-size:100%; padding-right:0.5em; }\ndiv.left_nav ul { margin:0; padding:0; }\ndiv.left_nav li, div.left_nav p { list-style: none; margin:0.5em 0.5em 0 1em; line-height:1.2em; }\n\ndiv.left_nav hr { margin: 1em 0.5em; border-top:0; border-left:0; border-right:0; border-bottom: 1px dashed #cccccc; }\n\ndiv.left_nav a:link, div.left_nav a:visited { color: #003399; text-decoration: none; font-family: Arial, sans-serif; }\ndiv.left_nav a:hover { color: #2a70fc; text-decoration: underline; }\ndiv.left_nav p.seeMore { padding-left:0.9em; text-indent:-0.9em; margin-top: 0.35em; margin-bottom: 1em; }\n\ndiv.left_nav p.seeMore a:link, div.left_nav p.seeMore a:visited { text-decoration:none; }\ndiv.left_nav p.seeMore a:hover { text-decoration:underline; }\ndiv.seller_central li { font-size:95%; }\n\ndiv.leftnav_popover { width:35em; border:3px solid #ededd3; padding:10px; }\n\ndiv.leftnav_popover li { font-size: 100%; }\n\ndiv.leftnav_popover h2 { font-family:arial,verdana,helvetica,sans-serif; margin:0 0 0.5em 0; color:#E47911; line-height: 1em; font-size:100%; padding-right:0.5em; background-color: #FFFFFF; padding-left:0; }\n\ndiv.leftnav_popover ul.popover_col { float:left; width:33%; margin:0; padding:0; }\ndiv.leftnav_popover ul.popover_col li { list-style:none; font-size:90%; line-height:1.5em; line-height:1.2em; margin: 0 5px 0.7em 0 }\ndiv.leftnav_popover ul.popover_col li a { text-decoration:none; }\ndiv.leftnav_popover ul.popover_col li a:hover { text-decoration:underline; }\ndiv.leftnav_popover p.seeMore { margin-left:0; }\ndiv.leftnav_popover div.h_rule_popup { clear:left; margin-bottom: 5px; border-bottom:1px dashed #cccccc; }\n\ndiv.asinItem { float:left; margin-bottom:1em; width:32%; }\ndiv.asinTextBlock { padding:0 8px 8px 0; }\ndiv.asinItem div.prodImage { height:121px; display:table-cell; vertical-align:bottom; }\ndiv.asinItem div.localImage { display:table-cell; vertical-align:bottom; }\n\ndiv.asinItem span { margin: 0.5em 0 0.25em 0; }\ndiv.asinItem ul { margin:0; padding:0 0 0.5em 1.3em; text-indent: -1.3em; font-size:90%; }\n\ndiv.asinTitle {padding-top:3px; padding-bottom:2px;}\ndiv.row { clear:both; }\nbody.dp {}\nbody.dp div.h_rule { clear:none; }\nbody.dp div.unified_widget { clear:none; }\ndiv.asinCoop div.asinItem { float:none; width:100%;}\ndiv.asinCoop_header {}\ndiv.asinCoop_footer {}\n\ndiv.newAndFuture div.asinItem ul { font-size:100%; }\ndiv.newAndFuture div.asinItem li { list-style-position: outside; margin:0 0 0.35em 20px; padding:0; text-indent: 0; }\ndiv.newAndFuture h3 { font-size:100%; margin:1em 0 ; }\ndiv.newAndFuture a:link, div.newAndFuture a:visited { text-decoration:underline; }\ndiv.newAndFuture a:hover { text-decoration:underline; }\ndiv.newAndFuture p.seeMore { margin:-0.75em 0 0 35px; }\n\ndiv.unified_widget ol.topList { margin: 0; padding: 0; list-style: none; }\ndiv.unified_widget ol.topList li { list-style: none; clear: both; display: list-item; padding-top: 6px; }\ndiv.unified_widget ol.topList .productImage { display: block; float: left;vertical-align: top;text-align: center;width:60px; }\ndiv.unified_widget ol.topList .productText { display: block; float: left; padding-left:10px; vertical-align: top; }\n:root div.unified_widget span.productImage { display: table-cell; float: none; }\n:root div.unified_widget span.productText { display: table-cell; float: none; }\ndiv.unified_widget dl.priceBlock {margin:0 0 0.45em 0;}\ndiv.unified_widget dl.priceBlock dt {clear:left; font-weight:bold; float:left; margin:0 0.3em 0 0;}\ndiv.unified_widget dl.priceBlock dd {margin:0 0 0.2em 0;}\ndiv.unified_widget .bold {font-weight:bold;}\ndiv.unified_widget .byline { font-size: 95%; font-weight: normal; }\ntable.thirdLvlNavContent div.blurb { margin:10px; }\n\ndiv.pageBanner h1 { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:225%; color: #e47911; letter-spacing:-0.03em; margin:0; }\ndiv.pageBanner p { font-size:90%; color:#888888; margin:0; }\n\ndiv.pageBanner h1.bkgnd { background-repeat:no-repeat; background-color:#FFFFFF; overflow:hidden; text-indent:-100em; }\n\ndiv.blurb div.title\n{\n    font-weight:bold; padding-top:5px; padding-bottom:2px;\n}\n\n--></style>\n\n\n<style type=\"text/css\">\n<!--\n\ndiv#leftcol, div#leftcolhidden { \n  width: 185px; \n}\n\ndiv#leftcolwide, div#leftcolhiddenwide { \n  float: left; \n  width: 300px; \n  display: inline; \n  clear: both;\n  margin: 0px 15px 0 0;\n}\n\n* html div#leftcolwide, div#leftcolhiddenwide {\n  margin: 0px 15px 0 0;\n}\n\ndiv#centercolwide { \n  overflow: hidden; \n  clear: right;\n}\n* html div#centercolwide { \n  width: 100%; \n}\n\ndiv#leftcolbtf div.unified_widget, div#rightcolbtf2 div.unified_widget {\n  border: none;\n}\ndiv#leftcolbtf h2, div#rightcolbtf2 h2 {\n  color: #333;\n  border-bottom: 1px solid #DDDDDD;\n  padding-bottom: 4px;\n  font-weight: normal;\n  line-height: 14px;\n  font-size: 14px;\n}\n\n.leftNav { margin-bottom: 5px; line-height: 1em;\n}\n.leftNavTitle { font-family: tahoma, sans-serif; margin-top: 10px;\n margin-bottom: 6px; color: #c60; font-weight: bold; line-height: 1em;\n}\n.hr-leftbrowse { border-top-width: 1px;\tborder-right-width: 1px;\tborder-bottom-width: 1px; border-left-width: 1px;\n border-top-style: dashed; border-right-style: none; border-bottom-style: none; border-left-style: none; \n border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999;\n margin-top: 10px; margin-right: 5px; margin-bottom: 0px; margin-left: 5px;\n}\n\n.leftNav a:link, .leftNav a:visited, .amabot_left .amabot_widget a:link, .amabot_left .amabot_widget a:visited  { text-decoration: none;\n}\n.leftNav a:hover,  .amabot_left .amabot_widget a:hover { color: #c60; text-decoration: underline; }\n\n.browsetitle {\n  font-family: tahoma,sans-serif;\n  line-height: 11px;\n  font-size: 14px;\n  font-weight: bold;\n  color: white;\n}\n\ndiv.amabot_center div.unified_widget h2 { border-bottom:1px solid #ddd; padding-bottom:2px; }\n\n#centerA {overflow:hidden;padding:15px 15px 5px 0px;}\n#centerB {overflow:hidden;padding:0px 15px 5px 0px;}\n.gwcswWrap {width:660px;}\ndiv#gwcswA {margin:auto;}\ndiv#gwcswB {margin:19px auto 0 auto;padding-bottom:15px;}\n.gwcswWrap .gwcswNav {height:33px;}\n.gwcswWrap .gwcswSlots {line-height:0px;height:180px;overflow:hidden;}\n.gwcswWrap .gwcswSlot {height:180px;}\n#center2 {overflow:hidden;margin-top:19px;}\n-->\n</style>\n\n\n\n<script language=\"Javascript1.1\" type=\"text/javascript\">\n<!--\nfunction amz_js_PopWin(url,name,options){\n  var ContextWindow = window.open(url,name,options);\n  ContextWindow.focus();\n  return false;\n}\n//-->\n</script>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<style>\n.tcg h2, .tcg h2 a, .tcg h2 a:active, .tcg h2 a:hover, .tcg h2 a:visited{\n   font-family:Arial,Verdana,Helvetica,sans-serif;\n}\n.tcg1 .hdlnblk h2, .tcg2 .hdlnblk h2 {\n   font-size:37px;\n   line-height:1em;\n}\n.tcg1 .subhed {\n   font-size:23px;\n}\n.tcg4 .hdlnblk h2 {\n   font-size:29px;\n}\n.tcg4 .subhed {\n   font-size:1.6em;\n}\n</style>\n\n      \n    \n\n    \n    \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n      \n       \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n \n   \n   \n   \n\n\n \n   \n   \n   \n\n\n\n\n \n   \n   \n   \n\n\n\n\n \n   \n   \n   \n \n   \n   \n\n\n<!--btech-iplc-->\n  <script type=\"text/javascript\">\n  \n  \n  btiplv = new Image();\n  if (typeof uet == 'function') { \n    BtechCF.inc(); \n    btiplv.onload = function() { BtechCF.cf(); }; \n  }\n  btiplv.src = \"http://g-ecx.images-amazon.com/images/G/01/kindle/merch/gw/bunkbed/back-to-school12-gw-02-660x180._V391158221_.png\";\n\n     new Image().src = \"http://g-ecx.images-amazon.com/images/G/01/Books/grutty/GW_Textbooks_RBS_300x75._V393117433_.png\";\n  </script>\n\n        \n\n\n\n\n\n\n\n\n\n\n<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\" />\n\n<meta name=\"google-site-verification\" content=\"9vpzZueNucS8hPqoGpZ5r10Nr2_sLMRG3AnDtNlucc4\" />\n<meta name=\"description\" content=\"Online shopping from the earth&#39;s biggest selection of books, magazines, music, DVDs, videos, electronics, computers, software, apparel &amp; accessories, shoes, jewelry, tools &amp; hardware, housewares, furniture, sporting goods, beauty &amp; personal care, broadband &amp; dsl, gourmet food &amp; just about anything else.\"/>\n<meta name=\"keywords\" content=\"Amazon, Amazon.com, Books, Online Shopping, Book Store, Magazine, Subscription, Music, CDs, DVDs, Videos, Electronics, Video Games, Computers, Cell Phones, Toys, Games, Apparel, Accessories, Shoes, Jewelry, Watches, Office Products, Sports &amp; Outdoors, Sporting Goods, Baby Products, Health, Personal Care, Beauty, Home, Garden, Bed &amp; Bath, Furniture, Tools, Hardware, Vacuums, Outdoor Living, Automotive Parts, Pet Supplies, Broadband, DSL\"/>\n<title>Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs &amp; more</title>\n\n\n\n\n\n\n\n\n<script type=\"text/javascript\">\n\nvar amznJQ,jQueryPatchIPadOffset=false;\n(function() {\n  function f() {}\n  function ch(y) {return String.fromCharCode(y);}\n  amznJQ={\n    addLogical:f,\n    addStyle:f,\n    addPL:f,\n    available:f,\n    chars:{EOL:ch(10), SQUOTE:ch(39), DQUOTE:ch(34), BACKSLASH:ch(92), YEN:ch(165)},\n    completedStage:f,\n    declareAvailable:f,\n    onCompletion:f,\n    onReady:f,\n    strings:{}\n  };\n}());\n\n\n</script>\n\n<link type='text/css' href='http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/websiteGridCSS/websiteGridCSS-websiteGridCSS-10164._V1_.css' rel='stylesheet'>\n<link type='text/css' href='http://z-ecx.images-amazon.com/images/G/01/browser-scripts/us-site-wide-css-beacon/site-wide-5808467376._V1_.css' rel='stylesheet'>\n\n\n\n\n<style type=\"text/css\"> \nbody {font-family: Arial,Verdana, \"Helvetica Neue\", Helvetica, sans-serif;}\nh1.t9,h2.t9,h3.t9,h4.t9,h5.t9,h6.t9,h1.t10,h2.t10,h3.t10,h4.t10,h5.t10,h6.t10,h1.t11,h2.t11,h3.t11,h4.t11,h5.t11,h6.t11,h1.t12,h2.t12,h3.t12,h4.t12,h5.t12,h6.t12 { font-family: Arial, Verdana, \"Helvetica Neue\", Helvetica, sans-serif;}\ninput, textarea\t{font-family: arial, verdana, sans-serif;}\n.category .carat {font-family:arial,verdana,,helvetica,sans-serif;}\n</style> \n  </head>\n  <body>\n    <a name=\"top\"></a>\n<div style=\"position:absolute; left:0px; top:-500px; width:1px;height:1px; overflow:hidden;\">\n\t<a href=\"/access\">A different version of this web site containing similar content optimized for screen readers and mobile devices may be found at the web address: www.amazon.com/access</a>\n</div>\n\n\n\n\n\n\n\n\n    <!-- BeginNav -->\n<style type=\"text/css\"><!--\n\n.nav-sprite {\n  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png);\n}\n.nav_pop_h {\n  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-h-v2._V137157005_.png);\n}\n.nav_pop_v {\n  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-v-v2._V137157005_.png);\n}\n.nav_ie6 .nav_pop_h {\n  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-h._V155961234_.png);\n}\n.nav_ie6 .nav_pop_v {\n  background-image: url(http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-v._V155961234_.png);\n}\n.nav-ajax-loading .nav-ajax-message {\n  background: center center url(http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/snake._V192571611_.gif) no-repeat;\n}\n--></style>\n\n\n\n\n\n\n\n\n\n\n<img src=\"http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png\" style=\"display:none\" alt=\"\"/>\n<img src=\"http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\" style=\"display:none\" alt=\"\" id=\"nav_trans_pixel\"/>\n<script type=\"text/javascript\"><!--\n  window._navbarSpriteUrl = \"http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png\";\n  amznJQ.available('popover', function() {\n    amznJQ.available('navbarBTF', function() {\n      var ie6 = jQuery.browser.msie && parseInt(jQuery.browser.version) <= 6,\n          h = new Image(), v = new Image(), c = 0, b, f, bi,\n          fn = function(p){ switch(typeof p){ case'boolean':{b=p;bi=1;break} case'function':{f=p} default:{c++} } if(bi&&c>2)f(b) };\n      h.onload = fn; v.onload = fn;\n      h.src = (ie6 ? 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-h._V155961234_.png' : 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-h-v2._V137157005_.png');\n      v.src = (ie6 ? 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-8bit-v._V155961234_.png' : 'http://g-ecx.images-amazon.com/images/G/01/gno/beacon/nav-pop-v-v2._V137157005_.png');\n      window._navpreload = {'sprite_h':h, 'sprite_v':v, '_protectExposeSBD':fn};\n\n      _navpreload._menuCallback = function() {\n        _navpreload.spin = new Image();\n        _navpreload.spin.src = 'http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/snake._V192571611_.gif';\n      };\n    });\n  });\n--></script>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<!--Pilu -->\n\n\n\n<script type='text/javascript'><!--\n    window.Navbar = function(options) {\n      options = options || {};\n\n      this._loadedCount = 0;\n      this._hasUedata = (typeof uet == 'function');\n      this._finishLoadQuota = options['finishLoadQuota'] || 2;\n      this._startedLoading = false;\n\n      this._btfFlyoutContents = [];\n    \n      this._saFlyoutHorizOffset = -16;\n      this._saMaskHorizOffset = -17;\n      \n      this._sbd_config = {\n        major_delay: 300,\n        minor_delay: 100,\n        target_slop: 25\n      };\n      \n      this.addToBtfFlyoutContents = function(content, callback) {\n        this._btfFlyoutContents.push({content: content, callback: callback});\n      }\n\n      this.getBtfFlyoutContents = function() {\n        return this._btfFlyoutContents;\n      }\n\n      this.loading = function() {\n        if (!this._startedLoading && this._isReportingEvents()) {\n          uet('ns');\n        }\n\n        this._startedLoading = true;\n      }\n\n      this.componentLoaded = function() {\n        this._loadedCount++;\n        if (this._startedLoading && this._isReportingEvents() && (this._loadedCount == this._finishLoadQuota)) {\n          uet('ne');\n        }\n      }\n\n      this._isReportingEvents = function() {\n        return this._hasUedata;\n      }\n\n      this.browsepromos = {};\n\n      this.issPromos = [];\n\n      this.le = {};\n\n      this.logEv = function(d, o) {\n      }\n\n    }\n\n    window._navbar = new Navbar({ finishLoadQuota: 1});\n    _navbar.loading();\n\n\n_navbar._ajaxProximity = [141,7,60,150];\n\n--></script>\n\n  <!-- navp-JrsrRDHJvHJdBMmtW7d5dloEuygf/fS9Snj/lKuEgGtI8fYGDoUHdE5B0XtDi/jlWlv8q7KIE84= rid-0MSRC4HCMZGT5XEGM66M templated -->\n  \n\n\n\n  <style type=\"text/css\"><!--\n    .nav-searchfield-width {\n      padding: 0 2px 0 43px;\n    }\n\n    #nav-search-in {\n      width: 43px;\n    }\n  --></style>\n\n<style type=\"text/css\"><!--\n    select#searchDropdownBox {\n      visibility: visible;\n      display: block;\n    }\n    div.nav-searchfield-width {\n      padding-left: 200px;\n    }\n    span#nav-search-in {\n      width: 200px;\n    }\n    #nav-search-in span#nav-search-in-content {\n      display: none;\n    }\n--></style>\n\n<header>\n  <div id='navbar' class='nav-beacon nav-logo-large'>\n\n    <div id='nav-cross-shop'>\n\n      <a href='/' id='nav-logo' class='nav_a nav-sprite' alt='Amazon'>\n        Amazon\n        <span class='nav-prime-tag nav-sprite'></span>\n      </a>\n\n      <ul id='nav-cross-shop-links' >\n                      <li class='nav-xs-link first'><a href='/gp/yourstore/home' class='nav_a' id='nav-your-amazon'>Your Amazon.com</a></li>\n                          <li class='nav-xs-link '><a href='/gp/goldbox' class='nav_a'>Today's Deals</a></li>\n                          <li class='nav-xs-link '><a href='/gp/gc/nav-split' class='nav_a'>Gift Cards</a></li>\n                          <li class='nav-xs-link '><a href='/Help/b?ie=UTF8&node=508510' class='nav_a'>Help</a></li>\n                    \n      </ul>\n\n      \n      <div id='welcomeRowTable' style='height:50px'>\n        <!--[if IE ]><div class='nav-ie-min-width' style='width: 770px'></div><![endif]-->\n        <div id='nav-ad-background-style' style='background-position: -800px 0px; background-image: url(http://g-ecx.images-amazon.com/images/G/01/img12/books/300x50/btc_swm_noasin_300x50._V391518517_.gif);  height: 56px; margin-bottom: -6px; position: relative;background-repeat: no-repeat;'>\n          <div id='navSwmSlot'>\n            <div id=\"navSwmHoliday\" style=\"background-image: url(http://g-ecx.images-amazon.com/images/G/01/img12/books/300x50/btc_swm_noasin_300x50._V391518517_.gif); width: 300px; height: 50px; \">\n\n <img alt='Off to College' src='http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif' border='0' width='300px' height='50px' usemap='#nav-swm-holiday-map' > </div>\n\n<div style=\"display: none;\">\n<map id=\"nav-swm-holiday-map\" name=\"nav-swm-holiday-map\">\n    <area shape=\"rect\" coords=\"1,2,300,50\" href =\"/Off-to-College-Supplies/b?ie=UTF8&node=668781011\" alt =\"Off to College\" />\n</map>\n</div>\n          </div>\n        </div>\n      </div>\n\n      <div style='clear: both;'></div>\n    </div>\n\n    <div id='nav-bar-outer'>\n\n      <div id='nav-logo-borderfade'><div class='nav-fade-mask'></div><div class='nav-fade nav-sprite'></div></div>\n\n      <div id='nav-bar-inner' class='nav-sprite'>\n\n        <a id='nav-shop-all-button' href='/gp/site-directory' class='nav_a nav-button-outer nav-menu-inactive' alt='Shop By Department'>\n          <span class='nav-button-mid nav-sprite'>\n            <span class='nav-button-inner nav-sprite'>\n              <span class='nav-button-title nav-button-line1'>Shop by</span>\n              <span class='nav-button-title nav-button-line2'>Department</span>\n            </span>\n          </span>\n          <span class='nav-down-arrow nav-sprite'></span>\n        </a>\n\n                  <label id='nav-search-label' for='twotabsearchtextbox'>\n            Search\n          </label>\n        \n        <div>\n          <form\n            action='/s'\n            method='get' name='site-search'\n            class='nav-searchbar-inner'\n          >\n\n            <span id='nav-search-in' class='nav-sprite'>\n              <span id='nav-search-in-content' data-value=\"search-alias=aps\">\n                All\n              </span>\n              <span class='nav-down-arrow nav-sprite'></span>\n              <select name=\"url\" id=\"searchDropdownBox\" class=\"searchSelect\" title=\"Search in\"   ><option value=\"search-alias=aps\" selected=\"selected\">All Departments</option><option value=\"search-alias=instant-video\">Amazon Instant Video</option><option value=\"search-alias=appliances\">Appliances</option><option value=\"search-alias=mobile-apps\">Apps for Android\r\n</option><option value=\"search-alias=arts-crafts\">Arts, Crafts & Sewing</option><option value=\"search-alias=automotive\">Automotive</option><option value=\"search-alias=baby-products\">Baby</option><option value=\"search-alias=beauty\">Beauty</option><option value=\"search-alias=stripbooks\">Books</option><option value=\"search-alias=mobile\">Cell Phones & Accessories</option><option value=\"search-alias=apparel\">Clothing & Accessories</option><option value=\"search-alias=collectibles\">Collectibles</option><option value=\"search-alias=computers\">Computers</option><option value=\"search-alias=electronics\">Electronics</option><option value=\"search-alias=gift-cards\">Gift Cards</option><option value=\"search-alias=grocery\">Grocery & Gourmet Food</option><option value=\"search-alias=hpc\">Health & Personal Care</option><option value=\"search-alias=garden\">Home & Kitchen</option><option value=\"search-alias=industrial\">Industrial & Scientific</option><option value=\"search-alias=jewelry\">Jewelry</option><option value=\"search-alias=digital-text\">Kindle Store</option><option value=\"search-alias=magazines\">Magazine Subscriptions</option><option value=\"search-alias=movies-tv\">Movies & TV</option><option value=\"search-alias=digital-music\">MP3 Downloads</option><option value=\"search-alias=popular\">Music</option><option value=\"search-alias=mi\">Musical Instruments</option><option value=\"search-alias=office-products\">Office Products</option><option value=\"search-alias=lawngarden\">Patio, Lawn & Garden</option><option value=\"search-alias=pets\">Pet Supplies</option><option value=\"search-alias=shoes\">Shoes</option><option value=\"search-alias=software\">Software</option><option value=\"search-alias=sporting\">Sports & Outdoors</option><option value=\"search-alias=tools\">Tools & Home Improvement</option><option value=\"search-alias=toys-and-games\">Toys & Games</option><option value=\"search-alias=videogames\">Video Games</option><option value=\"search-alias=watches\">Watches</option></select>\n            </span>\n\n            <div class='nav-searchfield-outer nav-sprite'>\n              <div class='nav-searchfield-inner nav-sprite'>\n                <div class='nav-searchfield-width'>\n                  <div id='nav-iss-attach'>\n                    <input type='text' id='twotabsearchtextbox' title='Search For' value='' name='field-keywords' autocomplete='off'>\n                  </div>\n                </div>\n                <!--[if IE ]><div class='nav-ie-min-width' style='width: 360px'></div><![endif]-->\n              </div>\n            </div>\n\n            <div class='nav-submit-button nav-sprite'>\n              <input\n                type='submit'\n                value='Go'\n                class='nav-submit-input'\n                title='Go'\n              >\n            </div>\n\n          </form>\n        </div>\n\n        <a id='nav-your-account' href='https://www.amazon.com/gp/css/homepage.html' class='nav_a nav-button-outer nav-menu-inactive' alt='Your Account'>\n          <span class='nav-button-mid nav-sprite'>\n            <span class='nav-button-inner nav-sprite'>\n              <span id='nav-signin-title' class='nav-button-title nav-button-line1'  >\n                Hello.\n                <span id='nav-signin-text' class='nav-button-em'>Sign in</span>\n              </span>\n              <span class='nav-button-title nav-button-line2'>Your Account</span>\n            </span>\n          </span>\n          <span class='nav-down-arrow nav-sprite'></span>\n        </a>\n\n          <span class='nav-divider nav-divider-account'></span>\n\n          <a id='nav-cart' href='/gp/cart/view.html' class='nav_a nav-button-outer nav-menu-inactive' alt='Shopping Cart'>\n            <span class='nav-button-mid nav-sprite'>\n              <span class='nav-button-inner nav-sprite'>\n\n                <span class='nav-button-title nav-button-line1'> </span>\n                <span class='nav-button-title nav-button-line2'>Cart</span>\n\n                <span class='nav-cart-button nav-sprite'></span>\n                <span id='nav-cart-count' class='nav-cart-0'>0</span>\n\n              </span>\n            </span>\n            <span class='nav-down-arrow nav-sprite'></span>\n          </a>\n\n          <span class='nav-divider nav-divider-cart'></span>\n\n          <a id='nav-wishlist' href='/gp/registry/wishlist' class='nav_a nav-button-outer nav-menu-inactive' alt='Wish List'>\n            <span class='nav-button-mid nav-sprite'>\n              <span class='nav-button-inner nav-sprite'>\n                <span class='nav-button-title nav-button-line1'>Wish</span>\n                <span class='nav-button-title nav-button-line2'>List</span>\n              </span>\n            </span>\n            <span class='nav-down-arrow nav-sprite'></span>\n          </a>\n\n          <ul id='nav-subnav' style='display: none;'>\n            <li class='nav-subnav-item nav-category-button'>\n              <a href='' class='nav_a'>\n                \n              </a>\n            </li>\n\n                <li class=\"nav-subnav-item \">\n                  <a href='' class='nav_a'>\n                   \n                  </a>\n                </li>\n                <li class=\"nav-subnav-item \">\n                  <a href='' class='nav_a'>\n                   \n                  </a>\n                </li>\n\n          </ul>\n\n      </div>\n    </div>\n\n    \n  </div>\n</header>\n<div id=\"nav_exposed_anchor\"></div>\n\n\n\n\n<script type=\"text/javascript\"><!--\n_navbar.dynamicMenuUrl = '/gp/navigation/ajax/dynamicmenu.html';\n\n_navbar.dynamicMenus = false;\n\n_navbar.cartDropdown = true;\n\n_navbar.yourAccountClickable = true;\n\n_navbar.readyOnATF = true;\n\n_navbar.abbrDropdown = true;\n\n\n\n\n    _navbar._endSpriteImage = new Image();\n    _navbar._endSpriteImage.onload = function() {_navbar.componentLoaded(); };\n    _navbar._endSpriteImage.src = window._navbarSpriteUrl;\n\n\n\n\n\n_navbar.responsivegw = true;\n\n\n amznJQ.declareAvailable('navbarPromosContent');\n--></script>\n\n<!--Tilu -->\n\n\n<!-- EndNav --> \n   \n   \n   \n\n    <div id=\"page-wrap\">\n      <div id=\"content\">\n        <div id=\"leftcol\" style=\"display:none;\"></div>\n        <div class=\"amabot_right\" id=\"rightcol\" style=\"clear:right;\">\n          <div style=\"display:none;\"></div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\"><map name=\"TextbooksGW\"><area shape=\"rect\" coords=\"0,0,300,75\" alt=\"Textbooks\" href=\"/New-Used-Textbooks-Books/b?ie=UTF8&node=465600\"/> </map><img src=\"http://g-ecx.images-amazon.com/images/G/01/Books/grutty/GW_Textbooks_RBS_300x75._V393117433_.png\" width=\"300\" align=\"center\" usemap=\"#TextbooksGW\" alt=\"Amazon Textbooks\" height=\"75\" border=\"0\" /></td></tr></table><br> \n   \n   \n   \n\n           \n   \n   \n   \n\n          <div id=\"rightcolbtf2\"><div style=\"height:400px;\">&nbsp;</div></div>\n          <div id=\"rightcolbtf2\"><div style=\"height:200px;\">&nbsp;</div></div>\n        </div>\n        <div id=\"centerA\" class=\"\">\n          \n \n   \n   \n   \n\n           \n   \n   \n   \n\n            <style type=\"text/css\">\n              .gwcswWrap .gwcswNav{display:none;}\n            </style>\n          <div id=\"gwcswA\" class=\"gwcswWrap\">\n            <div class=\"gwcswNav\">\n            </div>\n            <div class=\"gwcswSlots\">\n              <div class=\"gwcswSlot\" style=\"display:block;\">\n                <div style=\"display:none;\"></div><div style=\"display:none;\" id=\"title\">Kindle</div><div style=\"display:none;\" id=\"hover\">Kindle, from $79</div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\"><map name=\"gw_kindle_gen_nown_summerread\"><area shape=\"rect\" coords=\"0,0,660,180\" alt=\"Kindle, from $79\" href=\"/gp/product/B0051QVESA?ie=UTF8&nav_sdd=aps\"/> </map><img src=\"http://g-ecx.images-amazon.com/images/G/01/kindle/merch/gw/bunkbed/back-to-school12-gw-02-660x180._V391158221_.png\" width=\"660\" align=\"center\" usemap=\"#gw_kindle_gen_nown_summerread\" alt=\"Kindle: Back to School. From $79\" height=\"180\" border=\"0\" /></td></tr></table><br> \n   \n   \n   \n\n              </div>\n            </div>\n          </div>\n        </div>\n        \n\n\n\n\n\n\n\n<script>\n  if(typeof uet == 'function'){ \n    uet('af'); \n    BtechCF.cf();\n  }\n</script>\n\n\n \n   \n   \n   \n\n\n        \n\n      \n      \n\n<div style=\"display: none;\">\n\n\n\n\n\n\n\n<div id=\"nav_browse_flyout\">\n  <div id=\"nav_subcats_wrap\" class=\"nav_browse_wrap\">\n    <div id=\"nav_subcats\">\n      <div id=\"nav_subcats_0\" class=\"nav_browse_subcat\" data-nav-promo-id=\"instant-video\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Unlimited Instant Videos</li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2676882011\" class=\"nav_a\">Prime Instant Videos</a><div class=\"nav_tag\">Unlimited streaming of thousands of<br />movies and TV shows with Amazon Prime</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/prime/signup/videos?ie=UTF8&redirectQueryParams=bm9kZT0yNjE1MjYwMDEx&redirectURL=L2Iv\" class=\"nav_a\">Learn More About Amazon Prime</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/Instant-Video/b?ie=UTF8&node=2858778011\" class=\"nav_a\">Amazon Instant Video Store</a><div class=\"nav_tag\">Rent or buy hit movies and TV shows<br />to stream or download</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/video/watchlist/\" class=\"nav_a\">Your Watchlist</a><div class=\"nav_tag\">Organize movies and TV seasons<br />you want to watch later</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/video/library\" class=\"nav_a\">Your Video Library</a><div class=\"nav_tag\">Your movies and TV shows<br />stored in the cloud</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/video/ontv/ontv\" class=\"nav_a\">Watch Anywhere</a><div class=\"nav_tag\">Watch instantly on your Kindle Fire,<br />TV, Blu-ray player, or set-top box</div></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_1\" class=\"nav_browse_subcat\" data-nav-promo-id=\"mp3\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">MP3s & Cloud Player</li>\n<li class=\"nav_pop_li \"><a href=\"/MP3-Music-Download/b?ie=UTF8&node=163856011\" class=\"nav_a\">MP3 Music Store</a><div class=\"nav_tag\">Shop 20 million songs</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/dmusic/marketing/CloudPlayerLaunchPage\" target=\"_blank\" class=\"nav_a\">Cloud Player for Web</a><div class=\"nav_tag\">Play from any browser</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/feature.html?ie=UTF8&docId=1000454841\" class=\"nav_a\">Cloud Player for Android</a><div class=\"nav_tag\">For Android and Kindle Fire</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/feature.html?ie=UTF8&docId=1000776061\" class=\"nav_a\">Cloud Player for iOS</a><div class=\"nav_tag\">For iPhone and iPod touch</div></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_2\" class=\"nav_browse_subcat\" data-nav-promo-id=\"cloud-drive\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Amazon Cloud Drive</li>\n<li class=\"nav_pop_li \"><a href=\"/clouddrive\" target=\"_blank\" class=\"nav_a\">Your Cloud Drive</a><div class=\"nav_tag\">5 GB of free storage</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/feature.html?ie=UTF8&docId=1000796781\" class=\"nav_a\">Get the Desktop App</a><div class=\"nav_tag\">For Windows and Mac</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/feature.html?ie=UTF8&docId=1000796931\" class=\"nav_a\">Learn More About Cloud Drive</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_3\" class=\"nav_browse_subcat\" data-nav-promo-id=\"kindle\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Kindle</li>\n<li class=\"nav_pop_li \"><a href=\"/dp/B0051QVESA\" class=\"nav_a\">Kindle $79</a><div class=\"nav_tag\">Lighter, smaller, faster</div></li>\n<li class=\"nav_pop_li \"><a href=\"/dp/B005890G8Y\" class=\"nav_a\">Kindle Touch $99</a><div class=\"nav_tag\">Simple-to-use touchscreen</div></li>\n<li class=\"nav_pop_li \"><a href=\"/dp/B005890G8O\" class=\"nav_a\">Kindle Touch 3G $149</a><div class=\"nav_tag\">The top-of-the-line e-reader</div></li>\n<li class=\"nav_pop_li \"><a href=\"/dp/B0051VVOB2\" class=\"nav_a\">Kindle Fire $199</a><div class=\"nav_tag\">Vibrant color, movies, apps, and more</div></li>\n<li class=\"nav_pop_li \"><a href=\"/dp/B002GYWHSQ\" class=\"nav_a\">Kindle DX $379</a><div class=\"nav_tag\">Large 9.7\" E Ink Display</div></li>\n<li class=\"nav_pop_li \"><a href=\"/Kindle-Accessories/b?ie=UTF8&node=1268192011\" class=\"nav_a\">Accessories</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/gp/redirect.html?ie=UTF8&location=%2Fkindlelendinglibrary\" class=\"nav_a\">Kindle Owners' Lending Library</a><div class=\"nav_tag\">With Prime, Kindle owners read for free</div></li>\n<li class=\"nav_pop_li \"><a href=\"https://www.amazon.com:443/gp/redirect.html?location=https://read.amazon.com/&token=34AD60CFC4DCD7A97D4E2F4A4A7C4149FBEEF236\" class=\"nav_a\">Kindle Cloud Reader</a><div class=\"nav_tag\">Read your Kindle books in a browser</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/feature.html?ie=UTF8&docId=1000493771\" class=\"nav_a\">Free Kindle Reading Apps</a><div class=\"nav_tag\">For PC, iPad, iPhone, Android, and more</div></li>\n<li class=\"nav_pop_li \"><a href=\"/Kindle-eBooks/b?ie=UTF8&node=1286228011\" class=\"nav_a\">Kindle Books</a></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/digital/fiona/redirect/newsstand/home/\" class=\"nav_a\">Newsstand</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/kindle-store-ebooks-newspapers-blogs/b?ie=UTF8&node=133141011\" class=\"nav_a\">Kindle Store</a></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/digital/fiona/manage\" class=\"nav_a\">Manage Your Kindle</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_4\" class=\"nav_browse_subcat\" data-nav-promo-id=\"android\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Appstore for Android</li>\n<li class=\"nav_pop_li \"><a href=\"/mobile-apps/b?ie=UTF8&node=2350149011\" class=\"nav_a\">Apps</a></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2478844011\" class=\"nav_a\">Games</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/b?ie=UTF8&node=3071729011\" class=\"nav_a\">Test Drive Apps</a><div class=\"nav_tag\">Try thousands of apps and games right now</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/feature.html?ie=UTF8&docId=1000645111\" class=\"nav_a\">Amazon Apps</a><div class=\"nav_tag\">Kindle, mobile shopping, MP3, and more</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/mas/your-account/myapps\" class=\"nav_a\">Your Apps and Devices</a><div class=\"nav_tag\">View your apps and manage your devices</div></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_5\" class=\"nav_browse_subcat\" data-nav-promo-id=\"digital-games-software\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Digital Games & Software</li>\n<li class=\"nav_pop_li \"><a href=\"/Game-Downloads/b?ie=UTF8&node=979455011\" class=\"nav_a\">Game Downloads</a><div class=\"nav_tag\">For PC and Mac</div></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=5267605011\" class=\"nav_a\">Free-to-Play Games</a><div class=\"nav_tag\">For PC and Mac</div></li>\n<li class=\"nav_pop_li \"><a href=\"/pc-mac-software-downloads/b?ie=UTF8&node=1233514011\" class=\"nav_a\">Software Downloads</a><div class=\"nav_tag\">For PC and Mac</div></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/swvgdtt/your-account/manage-downloads.html\" class=\"nav_a\">Your Games & Software Library</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_6\" class=\"nav_browse_subcat\" data-nav-promo-id=\"audible\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Audible Audiobooks</li>\n<li class=\"nav_pop_li \"><a href=\"/gp/audible/signup/display.html\" class=\"nav_a\">Audible Membership</a><div class=\"nav_tag\">Get to know Audible</div></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2402172011\" class=\"nav_a\">Audible Audiobooks & More</a></li>\n<li class=\"nav_pop_li \"><a href=\"/gp/bestsellers/books/2402172011\" class=\"nav_a\">Bestsellers</a></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2669348011\" class=\"nav_a\">New & Notable</a></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2669344011\" class=\"nav_a\">Listener Favorites</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_7\" class=\"nav_browse_subcat\" data-nav-promo-id=\"books\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Books</li>\n<li class=\"nav_pop_li \"><a href=\"/books-used-books-textbooks/b?ie=UTF8&node=283155\" class=\"nav_a\">Books</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Kindle-eBooks/b?ie=UTF8&node=1286228011\" class=\"nav_a\">Kindle Books</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Childrens-Books/b?ie=UTF8&node=4\" class=\"nav_a\">Children's Books</a></li>\n<li class=\"nav_pop_li \"><a href=\"/New-Used-Textbooks-Books/b?ie=UTF8&node=465600\" class=\"nav_a\">Textbooks</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Audiobooks-Books/b?ie=UTF8&node=368395011\" class=\"nav_a\">Audiobooks</a></li>\n<li class=\"nav_pop_li \"><a href=\"/magazines/b?ie=UTF8&node=599858\" class=\"nav_a\">Magazines</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_8\" class=\"nav_browse_subcat\" data-nav-promo-id=\"movies-music-games\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Movies, Music & Games</li>\n<li class=\"nav_pop_li \"><a href=\"/dvds-used-hd-action-comedy-oscar/b?ie=UTF8&node=2625373011\" class=\"nav_a\">Movies & TV</a></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2901953011\" class=\"nav_a\">Blu-ray</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Instant-Video/b?ie=UTF8&node=2858778011\" class=\"nav_a\">Amazon Instant Video</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/music-rock-classical-pop-jazz/b?ie=UTF8&node=5174\" class=\"nav_a\">Music</a></li>\n<li class=\"nav_pop_li \"><a href=\"/MP3-Music-Download/b?ie=UTF8&node=163856011\" class=\"nav_a\">MP3 Downloads</a></li>\n<li class=\"nav_pop_li \"><a href=\"/musical-instruments-accessories-sound-recording/b?ie=UTF8&node=11091801\" class=\"nav_a\">Musical Instruments</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/computer-video-games-hardware-accessories/b?ie=UTF8&node=468642\" class=\"nav_a\">Video Games</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Game-Downloads/b?ie=UTF8&node=979455011\" class=\"nav_a\">Game Downloads</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_9\" class=\"nav_browse_subcat nav_super_cat\" data-nav-promo-id=\"electronics-computers\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Electronics</li>\n<li class=\"nav_pop_li \"><a href=\"/Televisions-Video/b?ie=UTF8&node=1266092011\" class=\"nav_a\">TV & Video</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Home-Audio-Electronics/b?ie=UTF8&node=667846011\" class=\"nav_a\">Home Audio & Theater</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Camera-Photo-Film-Canon-Sony/b?ie=UTF8&node=502394\" class=\"nav_a\">Camera, Photo & Video</a></li>\n<li class=\"nav_pop_li \"><a href=\"/cell-phones-service-plans-accessories/b?ie=UTF8&node=2335752011\" class=\"nav_a\">Cell Phones & Accessories</a></li>\n<li class=\"nav_pop_li \"><a href=\"/computer-video-games-hardware-accessories/b?ie=UTF8&node=468642\" class=\"nav_a\">Video Games</a></li>\n<li class=\"nav_pop_li \"><a href=\"/MP3-Players-Audio-Video/b?ie=UTF8&node=172630\" class=\"nav_a\">MP3 Players & Accessories</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Car-Electronics/b?ie=UTF8&node=1077068\" class=\"nav_a\">Car Electronics & GPS</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Appliances/b?ie=UTF8&node=2619525011\" class=\"nav_a\">Appliances</a></li>\n<li class=\"nav_pop_li \"><a href=\"/musical-instruments-accessories-sound-recording/b?ie=UTF8&node=11091801\" class=\"nav_a\">Musical Instruments</a></li>\n  </ul>\n  <ul class=\"nav_browse_ul nav_browse_cat2_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Computers</li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2956501011\" class=\"nav_a\">Laptops, Tablets & Netbooks</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Desktops-Computers-Add-Ons/b?ie=UTF8&node=565098\" class=\"nav_a\">Desktops & Servers</a></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=2956536011\" class=\"nav_a\">Computer Accessories & Peripherals</a><div class=\"nav_tag\">External drives, mice, networking & more</div></li>\n<li class=\"nav_pop_li \"><a href=\"/PC-Components-Computer-Add-Ons-Computers/b?ie=UTF8&node=193870011\" class=\"nav_a\">Computer Parts & Components</a></li>\n<li class=\"nav_pop_li \"><a href=\"/design-download-business-education-software/b?ie=UTF8&node=229534\" class=\"nav_a\">Software</a></li>\n<li class=\"nav_pop_li \"><a href=\"/PC-Games/b?ie=UTF8&node=229575\" class=\"nav_a\">PC Games</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Printers-Office-Electronics/b?ie=UTF8&node=172635\" class=\"nav_a\">Printers & Ink</a></li>\n<li class=\"nav_pop_li \"><a href=\"/office-products-supplies-electronics-furniture/b?ie=UTF8&node=1064954\" class=\"nav_a\">Office & School Supplies</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_10\" class=\"nav_browse_subcat nav_super_cat\" data-nav-promo-id=\"home-garden-tools\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Home, Garden &amp; Pets</li>\n<li class=\"nav_pop_li \"><a href=\"/kitchen-dining-small-appliances-cookware/b?ie=UTF8&node=284507\" class=\"nav_a\">Kitchen & Dining</a></li>\n<li class=\"nav_pop_li \"><a href=\"/furniture-decor-rugs-lamps-beds-tv-stands/b?ie=UTF8&node=1057794\" class=\"nav_a\">Furniture & Dcor</a></li>\n<li class=\"nav_pop_li \"><a href=\"/bedding-bath-sheets-towels/b?ie=UTF8&node=1057792\" class=\"nav_a\">Bedding & Bath</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Appliances/b?ie=UTF8&node=2619525011\" class=\"nav_a\">Appliances</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/Patio-Lawn-Garden/b?ie=UTF8&node=2972638011\" class=\"nav_a\">Patio, Lawn & Garden</a></li>\n<li class=\"nav_pop_li  nav_divider_before\"><a href=\"/Arts-Crafts-Sewing/b?ie=UTF8&node=2617941011\" class=\"nav_a\">Arts, Crafts & Sewing</a></li>\n<li class=\"nav_pop_li \"><a href=\"/pet-supplies-dog-cat-food-bed-toy/b?ie=UTF8&node=2619533011\" class=\"nav_a\">Pet Supplies</a></li>\n  </ul>\n  <ul class=\"nav_browse_ul nav_browse_cat2_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Tools, Home Improvement</li>\n<li class=\"nav_pop_li \"><a href=\"/Tools-and-Home-Improvement/b?ie=UTF8&node=228013\" class=\"nav_a\">Home Improvement</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Power-Tools-and-Hand-Tools/b?ie=UTF8&node=328182011\" class=\"nav_a\">Power & Hand Tools</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Lighting-and-Ceiling-Fans/b?ie=UTF8&node=495224\" class=\"nav_a\">Lamps & Light Fixtures</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Kitchen-and-Bath-Fixtures/b?ie=UTF8&node=3754161\" class=\"nav_a\">Kitchen & Bath Fixtures</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Hardware-Locks-and-Fasteners/b?ie=UTF8&node=511228\" class=\"nav_a\">Hardware</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Building-Supply-and-Building-Materials/b?ie=UTF8&node=551240\" class=\"nav_a\">Building Supplies</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_11\" class=\"nav_browse_subcat\" data-nav-promo-id=\"grocery-health-beauty\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Grocery, Health & Beauty</li>\n<li class=\"nav_pop_li \"><a href=\"/grocery-breakfast-foods-snacks-organic/b?ie=UTF8&node=16310101\" class=\"nav_a\">Grocery & Gourmet Food</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Natural-Organic-Grocery/b?ie=UTF8&node=51537011\" class=\"nav_a\">Natural & Organic</a></li>\n<li class=\"nav_pop_li \"><a href=\"/health-personal-care-nutrition-fitness/b?ie=UTF8&node=3760901\" class=\"nav_a\">Health & Personal Care</a></li>\n<li class=\"nav_pop_li \"><a href=\"/beauty-makeup-fragrance-skin-care/b?ie=UTF8&node=3760911\" class=\"nav_a\">Beauty</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_12\" class=\"nav_browse_subcat\" data-nav-promo-id=\"toys-kids-baby\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Toys, Kids & Baby</li>\n<li class=\"nav_pop_li \"><a href=\"/toys/b?ie=UTF8&node=165793011\" class=\"nav_a\">Toys & Games</a></li>\n<li class=\"nav_pop_li \"><a href=\"/baby-car-seats-strollers-bedding/b?ie=UTF8&node=165796011\" class=\"nav_a\">Baby</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Kids-Baby-Clothing/b?ie=UTF8&node=1040662\" class=\"nav_a\">Clothing (Kids & Baby)</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Kids-Family/b?ie=UTF8&node=471306\" class=\"nav_a\">Video Games for Kids</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_13\" class=\"nav_browse_subcat\" data-nav-promo-id=\"clothing-shoes-jewelry\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Clothing, Shoes & Jewelry</li>\n<li class=\"nav_pop_li \"><a href=\"/clothing-accessories-men-women-kids/b?ie=UTF8&node=1036592\" class=\"nav_a\">Clothing</a></li>\n<li class=\"nav_pop_li \"><a href=\"/shoes-men-women-kids-baby/b?ie=UTF8&node=672123011\" class=\"nav_a\">Shoes</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Handbags-Accessories-Clothing/b?ie=UTF8&node=15743631\" class=\"nav_a\">Handbags</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Handbags-Designer-Sunglasses-iPod-Case/b?ie=UTF8&node=1036700\" class=\"nav_a\">Accessories</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Luggage-Bags-Travel-Accessories-Clothing/b?ie=UTF8&node=15743161\" class=\"nav_a\">Luggage</a></li>\n<li class=\"nav_pop_li \"><a href=\"/jewelry-watches-engagement-rings-diamonds/b?ie=UTF8&node=3367581\" class=\"nav_a\">Jewelry</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Watches-Mens-Womens-Kids-Accessories/b?ie=UTF8&node=377110011\" class=\"nav_a\">Watches</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_14\" class=\"nav_browse_subcat\" data-nav-promo-id=\"sports-outdoors\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Sports & Outdoors</li>\n<li class=\"nav_pop_li \"><a href=\"/Exercise-Fitness-Sports-Outdoors/b?ie=UTF8&node=3407731\" class=\"nav_a\">Exercise & Fitness</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Outdoor-Recreation/b?ie=UTF8&node=706814011\" class=\"nav_a\">Outdoor Recreation</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Apparel/b?ie=UTF8&node=2206626011\" class=\"nav_a\">Athletic & Outdoor Clothing</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Team-Sports-Outdoors/b?ie=UTF8&node=706809011\" class=\"nav_a\">Team Sports</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Bikes-Scooters/b?ie=UTF8&node=2232464011\" class=\"nav_a\">Bikes & Scooters</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Golf-Sports-Outdoors/b?ie=UTF8&node=3410851\" class=\"nav_a\">Golf</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Boating-Water-Sports-Outdoors/b?ie=UTF8&node=3421331\" class=\"nav_a\">Boating & Water Sports</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Fan-Shop-Sports-Outdoors/b?ie=UTF8&node=3386071\" class=\"nav_a\">Fan Shop</a></li>\n<li class=\"nav_pop_li \"><a href=\"/sporting-goods-clothing-cycling-exercise/b?ie=UTF8&node=3375251\" class=\"nav_a\">All Sports & Outdoors</a></li>\n  </ul>\n</div>\n<div id=\"nav_subcats_15\" class=\"nav_browse_subcat\" data-nav-promo-id=\"automotive-industrial\">\n  <ul class=\"nav_browse_ul nav_browse_cat_ul\">\n    <li class=\"nav_pop_li nav_browse_cat_head\">Automotive & Industrial</li>\n<li class=\"nav_pop_li \"><a href=\"/automotive-auto-truck-replacements-parts/b?ie=UTF8&node=15684181\" class=\"nav_a\">Automotive Parts & Accessories</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Tools-Equipment-Automotive/b?ie=UTF8&node=15706941\" class=\"nav_a\">Automotive Tools & Equipment</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Car-Electronics/b?ie=UTF8&node=1077068\" class=\"nav_a\">Car Electronics & GPS</a></li>\n<li class=\"nav_pop_li \"><a href=\"/b?ie=UTF8&node=15706571\" class=\"nav_a\">Tires & Wheels</a></li>\n<li class=\"nav_pop_li \"><a href=\"/Motorcycle-ATV-Automotive/b?ie=UTF8&node=346333011\" class=\"nav_a\">Motorcycle & ATV</a></li>\n<li class=\"nav_pop_li \"><a href=\"/industrial-scientific-supplies/b?ie=UTF8&node=16310091\" class=\"nav_a\">Industrial & Scientific</a></li>\n  </ul>\n</div>\n\n    </div>\n    <div class=\"nav_subcats_div\"></div>\n    <div class=\"nav_subcats_div nav_subcats_div2\"></div>\n  </div>\n  <div id=\"nav_cats_wrap\" class=\"nav_browse_wrap\" >\n    <ul id=\"nav_cats\" class=\"nav_browse_ul\">\n      <li id=\"nav_cat_0\" class=\"nav_pop_li nav_cat\">Unlimited Instant Videos</li>\n<li id=\"nav_cat_1\" class=\"nav_pop_li nav_cat\">MP3s & Cloud Player<div class=\"nav_tag\">20 million songs, play anywhere</div></li>\n<li id=\"nav_cat_2\" class=\"nav_pop_li nav_cat\">Amazon Cloud Drive<div class=\"nav_tag\">5 GB of free storage</div></li>\n<li id=\"nav_cat_3\" class=\"nav_pop_li nav_cat\">Kindle</li>\n<li id=\"nav_cat_4\" class=\"nav_pop_li nav_cat\">Appstore for Android<div class=\"nav_tag\">Get a premium app for free today<span id=\"nav_amabotandroid\"></span></div></li>\n<li id=\"nav_cat_5\" class=\"nav_pop_li nav_cat\">Digital Games & Software</li>\n<li id=\"nav_cat_6\" class=\"nav_pop_li nav_cat\">Audible Audiobooks</li>\n<li id=\"nav_cat_7\" class=\"nav_pop_li nav_divider_before nav_cat\">Books</li>\n<li id=\"nav_cat_8\" class=\"nav_pop_li nav_cat\">Movies, Music & Games</li>\n<li id=\"nav_cat_9\" class=\"nav_pop_li nav_cat\">Electronics & Computers</li>\n<li id=\"nav_cat_10\" class=\"nav_pop_li nav_cat\">Home, Garden &amp; Tools</li>\n<li id=\"nav_cat_11\" class=\"nav_pop_li nav_cat\">Grocery, Health & Beauty</li>\n<li id=\"nav_cat_12\" class=\"nav_pop_li nav_cat\">Toys, Kids & Baby</li>\n<li id=\"nav_cat_13\" class=\"nav_pop_li nav_cat\">Clothing, Shoes & Jewelry</li>\n<li id=\"nav_cat_14\" class=\"nav_pop_li nav_cat\">Sports & Outdoors</li>\n<li id=\"nav_cat_15\" class=\"nav_pop_li nav_cat\">Automotive & Industrial</li>\n<li id=\"nav_fullstore\" class=\"nav_pop_li nav_divider_before nav_last_li nav_a_carat\">\n           <span class=\"nav_a_carat\">&rsaquo;</span><a href=\"/gp/site-directory\" class=\"nav_a\">Full Store Directory</a></li>\n\n    </ul>\n    <div id=\"nav_cat_indicator\" class=\"nav-sprite\"></div>\n  </div>\n</div>\n\n\n\n\n\n\n\n\n<!-- Updated -->\n<div id=\"nav_your_account_flyout\">  <ul class=\"nav_pop_ul\">\n<li class=\"nav_pop_li nav_divider_after\">\n  <div><a href=\"https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_signin\" class=\"nav-action-button nav-sprite\" rel=\"nofollow\">\n      <span class='nav-action-inner nav-sprite'>Sign in</span>\n    </a></div>\n  <div class=\"nav_pop_new_cust\">New customer? <a href=\"https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_newcust\" rel=\"nofollow\" class=\"nav_a\">Start here.</a></div>\n</li>\n <li class=\"nav_pop_li\"><a href=\"https://www.amazon.com/gp/css/homepage.html\" class=\"nav_a\">Your Account</a></li>\n <li class=\"nav_pop_li\"><a href=\"https://www.amazon.com/gp/css/order-history\" class=\"nav_a\" id=\"nav_prefetch_yourorders\">Your Orders</a></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/registry/wishlist\" class=\"nav_a\">Your Wish List</a></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/yourstore\" class=\"nav_a\">Your Recommendations</a></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/subscribe-and-save/manager/viewsubscriptions\" class=\"nav_a\">Your Subscribe & Save Items</a></li>\n <li class=\"nav_pop_li nav_divider_before\"><a href=\"/gp/digital/fiona/manage\" class=\"nav_a\">Manage Your Kindle</a></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/dmusic/mp3/player\" class=\"nav_a\">Your Cloud Player</a><div class=\"nav_tag\">Play from any browser</div></li>\n <li class=\"nav_pop_li\"><a href=\"/clouddrive\" class=\"nav_a\">Your Cloud Drive</a><div class=\"nav_tag\">5 GB of free storage</div></li>\n <li class=\"nav_pop_li\"><a href=\"/b?ie=UTF8&node=2676882011\" class=\"nav_a\">Prime Instant Videos</a><div class=\"nav_tag\">Unlimited streaming of thousands<br />of movies and TV shows</div></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/video/library\" class=\"nav_a\">Your Video Library</a></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/swvgdtt/your-account/manage-downloads.html\" class=\"nav_a\">Your Games & Software Library</a></li>\n <li class=\"nav_pop_li nav_last_li\"><a href=\"/gp/mas/your-account/myapps\" class=\"nav_a\">Your Android Apps & Devices</a></li>\n   </ul>   <!--[if IE ]>      <div class='nav-ie-min-width' style='width: 150px'></div>    <![endif]-->  </div>\n\n\n\n\n\n\n\n\n<div id=\"nav_cart_flyout\" class=\"nav-empty\">\n  <ul class='nav_dynamic'></ul>\n  <div class='nav-ajax-message'></div>\n  <div class='nav-dynamic-empty'>\n    <p class='nav_p nav-bold nav-cart-empty'> Your Shopping Cart is empty.</p>\n    <p class='nav_p '> Give it purpose&mdash;fill it with books, DVDs, clothes, electronics, and more.</p>\n    <p class='nav_p '> If you already have an account, <a href=\"https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_signin_cart\" class=\"nav_a\">sign in</a>.</p>\n  </div>\n  <div class='nav-ajax-error-msg'>\n    <p class='nav_p nav-bold'> There's a problem previewing your cart right now.</p>\n    <p class='nav_p '> Check your Internet connection and <a href=\"/gp/cart/view.html\" class=\"nav_a\">go to your cart</a>, or <a href='javascript:void(0);' class='nav_a nav-try-again'>try again</a>.</p>\n  </div>\n\n      <a href=\"/gp/cart/view.html\" id=\"nav-cart-menu-button\" class=\"nav-action-button nav-sprite\"><span class=\"nav-action-inner nav-sprite\">\n      View Cart\n      <span class='nav-ajax-success'>\n        <span id='nav-cart-zero'>(<span class='nav-cart-count'>0</span> items)</span>\n        <span id='nav-cart-one' style='display: none;'>(<span class='nav-cart-count'>0</span> item)</span>\n        <span id='nav-cart-many' style='display: none;'>(<span class='nav-cart-count'>0</span> items)</span>\n      </span>\n    </span></a>\n  \n  \n</div>\n\n\n\n\n\n\n\n<!-- Updated -->\n<div id=\"nav_wishlist_flyout\" class=\"nav-empty\">\n  <div class='nav-ajax-message'></div>\n  <ul class='nav_dynamic nav_pop_ul nav_divider_after'></ul>\n  <ul class=\"nav_pop_ul\">\n     <li class=\"nav_pop_li nav-dynamic-empty\"><a href=\"/gp/wishlist\" class=\"nav_a\">Create a Wish List</a></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/gift-central\" class=\"nav_a\">Find a Wish List or Registry</a></li>\n <li class=\"nav_pop_li\"><a href=\"/wishlist/universal\" class=\"nav_a\">Wish from Any Website</a><div class=\"nav_tag\">Add items to your List from anywhere</div></li>\n <li class=\"nav_pop_li\"><a href=\"/gp/wedding/homepage\" class=\"nav_a\">Wedding Registry</a></li>\n <li class=\"nav_pop_li nav_last_li\"><a href=\"/gp/registry/baby\" class=\"nav_a\">Baby Registry</a></li>\n\n  </ul>\n</div>\n\n\n\n\n<script type='text/html' id='nav-tpl-wishlist'>\n  <# jQuery.each(wishlist, function (i, item) { #>\n    <li class='nav_pop_li'>\n      <a href='<#=item.url #>' class='nav_a'>\n        <#=item.name #>\n      </a>\n      <div class='nav_tag'>\n        <# if(typeof item.count !='undefined') { #>\n          <#=\n            (item.count == 1 ? \"{count} item\" : \"{count} items\")\n              .replace(\"{count}\", item.count)\n          #>\n        <# } #>\n      </div>\n    </li>\n  <# }); #>\n</script>\n<script type='text/html' id='nav-tpl-cart'>\n  <# jQuery.each(cart, function (i, item) { #>\n    <li class='nav_cart_item'>\n      <a href='<#=item.url #>' class='nav_a'>\n        <img class='nav_cart_img' src='<#=item.img #>'/>\n        <span class='nav-cart-title'><#=item.name #></span>\n        <span class='nav-cart-quantity'>\n          <#= \"Quantity: {count}\".replace(\"{count}\", item.qty) #>\n        </span>\n      </a>\n    </li>\n  <# }); #>\n</script>\n<script type='text/html' id='nav-tpl-asin-promo'>\n  <a href='<#=destination #>' class='nav_asin_promo'>\n    <img src='<#=image #>' class='nav_asin_promo_img'/>\n    <span class='nav_asin_promo_headline'><#=headline #></span>\n    <span class='nav_asin_promo_info'>\n      <span class='nav_asin_promo_title'><#=productTitle #></span>\n      <span class='nav_asin_promo_title2'><#=productTitle2 #></span>\n      <span class='nav_asin_promo_price'><#=price #></span>\n    </span>\n    <span class='nav_asin_promo_button nav-sprite'><#=button #></span>\n  </a>\n</script>\n</div>\n<script type='text/javascript'>\n\n\n\n\n\n_navbar.prefetch = function() {\namznJQ.addPL(['http://z-ecx.images-amazon.com/images/G/01/browser-scripts/registriesCSS/US-combined-122013016._V394121533_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/us-site-wide-css-beacon/site-wide-5808467376._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-css-buttons/wcs-css-buttons-3112498172._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage-beaconized/wcs-ya-homepage-beaconized-3700890291._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage-cn/wcs-ya-homepage-cn-2647797242._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage/wcs-ya-homepage-2954424783._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-order-history-beaconized/wcs-ya-order-history-beaconized-598394915._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-order-history/wcs-ya-order-history-2432905716._V1_.css',\n'https://images-na.ssl-images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png',\n'https://images-na.ssl-images-amazon.com/images/G/01/gno/images/general/navAmazonLogoFooter._V169459313_.gif',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/css/images/amznbtn-sprite03._V163527511_.png',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/help/images/spotlight/kindle-family-02b._V139448121_.jpg',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/acorn._V192250692_.gif',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/btn-close._V192250694_.gif',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/projects/text-trace/texttrace_typ._V183418138_.js',\n'https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/ya/images/shipment_large_lt._V192250661_.gif']);\n}\n    amznJQ.declareAvailable('navbarBTFLite');\n    amznJQ.declareAvailable('navbarBTF');\n</script>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<style type=\"text/css\">\n\n.sign-in-tooltip-beak {\n    background-image: url(\"http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-vertical-popover-arrow._V186877868_.png\");\n    overflow: hidden;\n    display: inline-block;\n    background-repeat: repeat;\n    background-attachment: scroll;\n    background-color: transparent;\n    background-position: -385px 0px;\n    height: 16px;\n    width: 30px;\n    position: absolute;\n    left: 92px;\n    top: -34px;\n}\n\n#sign-in-tooltip-anchor-point {\n    display: none;\n    font-family: Arial, Verdana, Helvetica, sans-serif;\n}\n\n#sign-in-tooltip-body {\n    display: none;\n}\n\n.sign-in-tooltip-new-customer {\n    color: #333333;\n    font-size: 11px;\n    margin-top: 5px;\n    text-align: center;\n}\n\na.sign-in-tooltip-link {\n    cursor: pointer;\n    font-size: 11px;\n}\n\na.sign-in-tooltip-link,\na.sign-in-tooltip-link:link {\n    color: #004B91;\n    text-decoration: none;\n}\n\na.sign-in-tooltip-link:active, \na.sign-in-tooltip-link:hover {\n    color: #E47911;\n    text-decoration: underline;\n}\n\n</style>\n\n\n<img src=\"http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-v._V219326283_.png\" height=\"0\" width=\"0\" />\n<img src=\"http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-h._V219326280_.png\" height=\"0\" width=\"0\" />\n<img src=\"http://g-ecx.images-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-vertical-popover-arrow._V186877868_.png\" height=\"0\" width=\"0\" />\n\n<div id=\"sign-in-tooltip-anchor-point\">\n  <div class=\"sign-in-tooltip-beak\">&nbsp;</div>\n  <div id=\"sign-in-tooltip-body\">\n    <a class=\"nav-action-button nav-sprite\" href=\"https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_custrec_signin\">\n      <span class=\"nav-action-inner nav-sprite\">Sign in</span>\n    </a>\n    <div class=\"sign-in-tooltip-new-customer\">\n      New customer? <a class=\"sign-in-tooltip-link\" href=\"https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fyourstore%2Fhome%3Fie%3DUTF8%26ref_%3Dgno_custrec_newcust\">Start here.</a>\n    </div>\n  </div>\n</div>\n\n\n<script type=\"text/javascript\">\n    amznJQ.onReady('jQuery', function () {\n\n        var popoverContainer;\n        var signInPopover;\n        var tooltipTimer;\n\n        var signInPopoverOptions = {\n            'align': \"center\",\n            'closeEventInclude': \"CLICK_OUTSIDE\",\n            'forceAlignment': true,\n            'location': 'bottom',\n            'localContent': \"#sign-in-tooltip-anchor-point\",\n            'locationElement': \"#nav-your-account\",\n            'locationMargin': 8,\n            'paddingBottom': 0,\n            'paddingLeft': 20,\n            'paddingRight': 20,\n            'showCloseButton': true,\n            'showOnHover': false,\n            'onHide': function () { signInPopover = undefined; },\n            'onShow' : function () { jQuery(\"#sign-in-tooltip-body\").fadeIn(1000);\n                                     tooltipTimer = constructTooltipTimer(); },\n            'width': 250,\n            'zIndex': 210\n        };\n\n        var dismissPopover = function (popover) {\n            if (popover != undefined) {\n                popover.close();\n            }\n        };\n\n        // Constructs the tooltip and sets necessary variables\n        var constructTooltip = function () {\n            signInPopover = jQuery.AmazonPopover.displayPopover(signInPopoverOptions);\n            popoverContainer = jQuery(\"#sign-in-tooltip-anchor-point\").parents(\".ap_popover\");\n\n            // If customer hovers over popover, prevent it from dismissing itself\n            // Upon hovering off, reset the timer\n            if (popoverContainer) {\n                popoverContainer.hover(\n                    function () {\n                        clearTimeout(tooltipTimer);\n                    }, \n                    function () {\n                        tooltipTimer = constructTooltipTimer();\n                    }\n                );\n            }\n\n            // Dismiss tooltip if window is resized, due to bug\n            jQuery(window).resize(function (eventObject) {\n                dismissPopover(signInPopover);\n            });\n\n        };\n\n        // Constructs a timer to dismiss the tooltip\n        var constructTooltipTimer = function () {\n            return setTimeout(function () {\n                if (signInPopover != undefined) {\n\n                    if (popoverContainer &&\n                        !(jQuery.browser.msie && parseInt(jQuery.browser.version, 10) < 9)) {\n                        popoverContainer.fadeOut(1000, \n                                                 function () {\n                                                     dismissPopover(signInPopover);\n                                                 });\n                    } else {\n                        dismissPopover(signInPopover);\n                    }\n                }\n            },\n            10000);\n        };\n\n        amznJQ.onReady('popover', function () {\n\n            var dismissed = false;\n            amznJQ.available('navDismissTooltip', function () {\n                // Event fired by Nav flyouts\n                dismissed = true;\n                dismissPopover(signInPopover);\n            });\n\n            // Check if any Nav flyouts are already displaying before initial render\n            if (!dismissed) {\n                constructTooltip();\n            }\n\n        });\n\n    });\n</script>\n\n  \n\n \n   \n   \n   \n\n        <div id=\"centerB\" class=\"\">\n          <div id=\"gwcswB\" class=\"gwcswWrap\">\n            <div class=\"gwcswNav\">\n            </div>\n            <div class=\"gwcswSlots\">\n              <div class=\"gwcswSlot\" style=\"display:block;\">\n                \n\n\n\n \n   \n   \n   \n\n                <div style=\"display:none;\"></div><div style=\"display:none;\" id=\"title\">Clothing Trends</div><div style=\"display:none;\" id=\"hover\">Fall's New Shape</div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><map name=\"aa-clo_bb_women_trend_a\"><area shape=\"rect\" coords=\"536,0,1,180\" alt=\"Fall's New Shape\" href=\"/l/1040660?_encoding=UTF8&nav_sdd=aps\"/> <area shape=\"rect\" coords=\"536,141,660,0\" alt=\"View Looks\" href=\"/l/5638716011?_encoding=UTF8&nav_sdd=aps\"/> <area shape=\"rect\" coords=\"536,141,660,180\" alt=\"The Amazon Clothing Store\" href=\"/l/1036592?_encoding=UTF8&nav_sdd=aps\"/> </map><img onload=\"if (typeof uet == 'function') {uet('xb'); }\"  src=\"http://g-ecx.images-amazon.com/images/G/01/img12/APPAREL/GATEWAY/BUNK_BEDS/BTS2/BB_womens2b._V394050447_.jpg\" width=\"660\" usemap=\"#aa-clo_bb_women_trend_a\" alt=\"White Hot Denim\" height=\"180\" border=\"0\" /></td></tr></table> \n   \n   \n   \n\n              </div>\n            </div>\n          </div>\n          \n    <style type=\"text/css\">\n.gwcswWrap\n{\n  position: relative;\n  overflow: hidden;\n  text-align: center;\n}\n\n.gwcswWrap .gwcswNav .gwcswNavWrap\n{\n  visibility: hidden;\n}\n\n.gwcswWrap table\n{\n  border-collapse: collapse;\n  margin: auto;\n}\n\n.gwcswWrap .gwcswNav  table tr td\n{\n  height: 33px;\n  padding: 0 10px;\n  vertical-align: middle;\n  white-space: nowrap;\n  color: #555;\n  cursor: pointer;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -o-user-select: none;\n  user-select: none;\n}\n\n.gwcswWrap .gwcswNav  table tr td .gwcswTitle\n{\n  font-family: arial,verdana,helvetica,sans-serif;\n  font-size: 11px;\n  line-height: 11px;\n  font-weight: bold;\n  white-space: nowrap;\n  background-color: #ffffff;\n}\n\n.gwcswWrap .gwcswNav table tr td.hover\n{\n  color: #121212;\n}\n\n.gwcswWrap .gwcswNav table tr td.selected\n{\n  color: #E47911;\n  cursor: default;\n}\n\n.gwcswWrap .gwcswNav table tr td:first-child\n{\n  padding-left: 0;\n}\n\n.gwcswWrap .gwcswNav table tr td:last-child\n{\n  padding-right: 0;\n}\n\n.gwcswWrap .gwcswNotch\n{\n  display: none;\n  position: absolute;\n  width: 294px;\n  height: 10px;\n  filter: inherit;\n}\n\n.gwcswWrap .gwcswNotch img\n{\n  width: 294px;\n  height: 10px;\n  background-color: transparent;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\";\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);\n  zoom: 1;\n}\n\n.gwcswWrap .gwcswSlots\n{\n  z-index: -1;\n}\n\n.gwcswWrap .gwcswSlots .gwcswSlot\n{\n  display: none;\n}\n\n#gwcswTooltip\n{\n  visibility: hidden;\n  position: absolute;\n  top:0px;\n  left:0px;\n  padding: 6px 10px;\n  color: #ffffff;\n  background: rgb(0,0,0) transparent;\n  background: rgba(0,0,0,0.65);\n  text-align: center;\n  font-size: 11px;\n  line-height: 11px;\n  -webkit-border-radius:4px;\n  -moz-border-radius:4px;\n  border-radius:4px 4px 4px 4px;\n  z-index: 300;\n}\n\n#gwcswTooltip #text\n{\n  font-family: arial,verdana,helvetica,sans-serif;\n  white-space: nowrap;\n}\n\n#gwcswTriDown\n{\n  visibility: hidden;\n  position:absolute;\n  width: 13px;\n  height: 7px;\n}\n\n#gwcswTriDown img\n{\n  width: 13px;\n  height: 7px;\n}\n</style>\n\n<!--[if lte IE 8]>\n<style type=\"text/css\">\n#gwcswTooltip\n{\n  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#A6000000, endColorstr=#A6000000);\n  -ms-filter: \"progid:DXImageTransform.Microsoft.gradient(startColorstr=#A6000000, endColorstr=#A6000000)\";\n}\n</style>\n<![endif]-->\n\n<script type='text/javascript'>\nvar GWCSW=new Object();GWCSW.c_animationDelay=200;GWCSW.tabClicked=false;GWCSW.isLazy;GWCSW.ueBegin;GWCSW.ueFirstClick;GWCSW.uePublish=function(b){var a=+new Date;if(typeof(uet)!=\"function\"||typeof(GWCSW.ueBegin)===\"undefined\"||typeof(GWCSW.ueFirstClick)===\"undefined\"){return}ues(\"t\",b,{})[\"bb\"]=GWCSW.ueBegin;ues(\"wb\",b,1);ues(\"t\",b)[\"af\"]=GWCSW.ueFirstClick;uex(\"ld\",b)};GWCSW.launch=function(h,d,f,g){var b=false;var a=false;var e=jQuery(\"#gwcswA\");var c=jQuery(\"#gwcswB\");if(e.length===1){var b=e.initGWCSW(h.slotsA,d,f,g)}if(c.length===1){var a=c.initGWCSW(h.slotsB,d,f,g)}if(b){jQuery(\"#gwcswA\").showNav()}if(a){jQuery(\"#gwcswB\").showNav()}if(typeof uet==\"function\"){uet(\"xJ\")}};amznJQ.available(\"jQuery\",function(){GWCSW.isIE6=function(){return(jQuery.browser.msie&&jQuery.browser.version===\"6.0\")};GWCSW.isIE7=function(){return(jQuery.browser.msie&&jQuery.browser.version===\"7.0\")};GWCSW.isIE8=function(){return(jQuery.browser.msie&&jQuery.browser.version===\"8.0\")};jQuery.fn.initGWCSW=function(o,z,A,E){var l=jQuery(this);var D=l.find(\".gwcswSlots\");jQuery(\"<div>\").addClass(\"gwcswNavWrap\").append(jQuery(\"<table>\").append(jQuery(\"<tbody>\").append(jQuery(\"<tr>\")))).appendTo(l.find(\".gwcswNav\"));var a=l.find(\".gwcswNavWrap\");var c=a.find(\"table tbody tr\");jQuery(\"<div>\").addClass(\"gwcswNotch\").html(jQuery(\"<img>\").attr(\"src\",z)).appendTo(l);var k=l.find(\".gwcswNotch\");var m=o.length+1;var I=[];var x=[];var u=false;var e;var K;var H=Math.floor((m-1)/2);var w=D.find(\".gwcswSlot\");w.attr(\"index\",H);if(typeof GWCSW.isLazy===\"undefined\"){GWCSW.isLazy=!(typeof window.isLd===\"undefined\"||window.isLd)}for(i=0;i<m;i++){I[i]={};if(i==H){I[i].title=J(\"title\",w);I[i].tooltip=J(\"hover\",w);I[i].loading=true;I[i].loaded=true;I[i].uePublish=false;if(typeof(I[i].title)===\"undefined\"){return false}}else{var f;if(i<H){f=o[i]}else{f=o[i-1]}I[i].callback=f.slot.callback;var y=f.slot.content;x[i]={};I[i].aImgSrc=[];I[i].uePublish=false;x[i].total=f.slot.imgs.length;x[i].unloaded=f.slot.imgs.length;for(var v=0;v<x[i].total;v++){I[i].aImgSrc[v]=f.slot.imgs[v]}var r=jQuery(\"<div>\").addClass(\"gwcswSlot\").attr(\"index\",i);r.html(y);I[i].title=J(\"title\",r);I[i].tooltip=J(\"hover\",r);if(typeof(I[i].title)===\"undefined\"){I[i].loaded=true;continue}I[i].slot=r;r.css(\"visibility\",\"hidden\");r.wrap('<div class=\"gwcswSlotWrap\" />');r.parent().css(\"background-image\",'url(\"'+A+'\")');r.parent().css(\"background-position\",\"center\");r.parent().css(\"background-repeat\",\"no-repeat\");var t=r.find(\"img\");I[i].aImgs=[];t.each(function(M,L){if(GWCSW.isLazy){jQuery(L).attr(\"src\",\"\")}I[i].aImgs[M]=jQuery(L)});if(!GWCSW.isLazy){p(i)}I[i].loaded=false;I[i].loading=!GWCSW.isLazy;r.parent().appendTo(D)}if(I[i].title.indexOf(\"Appstore\")!==-1&&I[i].title.indexOf(\"Android\")!==-1){if(typeof(_navbar)!==\"undefined\"&&typeof(_navbar.amabotandroid)!==\"undefined\"&&_navbar.amabotandroid){I[i].tooltip=_navbar.amabotandroid}}I[i].title=I[i].title.replace(/&lt;br&gt;/gi,\"<br>\");if(typeof(I[i].tooltip)!==\"undefined\"){I[i].tooltip=I[i].tooltip.replace(/&lt;br&gt;/gi,\"<br>\")}var b=jQuery(\"<td>\").attr(\"index\",i);b.append(jQuery(\"<div>\").addClass(\"gwcswTitle\").html(I[i].title));c.append(b);if(GWCSW.isIE6()){if(i===0){b.css(\"padding-left\",\"0px\")}else{if(i===m-1){b.css(\"padding-right\",\"0px\")}}}}if(GWCSW.isLazy){jQuery(window).load(q)}var C=c.find('[index=\"'+H+'\"]');C.addClass(\"selected\");j(C,0);e=jQuery(\"#gwcswTooltip\");if(e.length==0){e=jQuery(\"<div>\").attr(\"id\",\"gwcswTooltip\");e.append(jQuery(\"<div>\").attr(\"id\",\"text\"));e.appendTo(jQuery(\"body\"))}K=jQuery(\"#gwcswTriDown\");if(K.length==0){K=jQuery(\"<div>\").attr(\"id\",\"gwcswTriDown\");K.append(jQuery(\"<img>\").attr(\"src\",E))}K.appendTo(jQuery(\"body\"));c.find(\"td\").each(function(){jQuery(this).bind(\"mouseenter\",[true],F).bind(\"mouseleave\",[false],F);jQuery(this).click(s)});return true;function F(L){var n=jQuery(this);n.toggleClass(\"hover\");if(L.data[0]){window.setTimeout(function(){d()},250)}else{h()}}function q(){for(i=0;i<m;i++){p(i)}}function p(M){if((GWCSW.isLazy&&I[M].loading)||I[M].loaded){return}I[M].loading=true;var L=[];for(var N=0;N<x[M].total;N++){L[N]=new Image();L[N].onload=function(){x[M].unloaded--;if(x[M].unloaded===0){if(I[M].uePublish){GWCSW.uePublish(\"gwcsw2\")}B(M)}};if(GWCSW.isLazy){I[M].aImgs[N].attr(\"src\",I[M].aImgSrc[N])}L[N].src=I[M].aImgSrc[N]}}function B(n){I[n].slot.css(\"visibility\",\"visible\");I[n].slot.parent().css(\"background-image\",\"\");I[n].loaded=true}function s(){if(u){return}u=true;var N=c.find(\"td.selected\");var L=N.attr(\"index\");var M=jQuery(this).attr(\"index\");if(L==M){u=false;return}var n=false;if(!GWCSW.tabClicked){GWCSW.tabClicked=true;n=true;GWCSW.ueFirstClick=+new Date}if(!I[M].loading){p(M)}h();N.removeClass(\"selected\");jQuery(this).addClass(\"selected\");G(L,M,n);j(jQuery(this),GWCSW.c_animationDelay);if(typeof(I[M].callback)!==\"undefined\"&&I[M].callback&&typeof(I[M].callbackLog)===\"undefined\"){I[M].callbackLog=1;jQuery.get(I[M].callback)}}function G(M,N,L){var n=D.find(\"[index=\"+M+\"]\");var O=D.find(\"[index=\"+N+\"]\");n.fadeOut(GWCSW.c_animationDelay,function(){if(L){g(N)}O.fadeIn(GWCSW.c_animationDelay,function(){u=false})})}function g(n){if(I[n].loaded){GWCSW.uePublish(\"gwcsw1\");return}I[n].uePublish=true}function j(N,n){var M=N.position();var L=M.top+N.outerHeight();var O=M.left+N.width()/2+Number(N.css(\"padding-left\").replace(\"px\",\"\"))-k.width()/2;if(n==0){k.css({left:O,top:L})}else{k.animate({left:O,top:L},n)}}function d(){var N=c.find(\"td.hover\");if(N.length!==1||N.hasClass(\"selected\")){return}var R=I[Number(N.attr(\"index\"))].tooltip;if(typeof(R)!==\"undefined\"&&R){e.find(\"#text\").html(R);var n=N.offset();var P=N.find(\".gwcswTitle\").offset();var M=P.top-e.outerHeight()-K.height();var Q=n.left+N.width()/2+Number(N.css(\"padding-left\").replace(\"px\",\"\"))-e.outerWidth()/2;var L=Q+e.outerWidth()/2-K.outerWidth()/2;var O=M+e.outerHeight();if(GWCSW.isIE6()){K.find(\"img\").applyIEPngFix()}e.css({left:Q,top:M});K.css({left:L,top:O});e.css(\"visibility\",\"visible\");K.css(\"visibility\",\"visible\")}}function h(){e.css(\"visibility\",\"hidden\");K.css(\"visibility\",\"hidden\")}function J(M,n){var L=n.find(\"#\"+M);if(L.length!==1){return}return L.html()}};jQuery.fn.showNav=function(){var b=jQuery(this).find(\".gwcswNotch\");var a=jQuery(this).find(\".gwcswNav .gwcswNavWrap\");a.css(\"display\",\"none\");a.css(\"visibility\",\"visible\");if(GWCSW.isIE6()){jQuery(this).find(\".gwcswNotch img\").applyIEPngFix()}if(this.attr(\"id\")===\"gwcswA\"){GWCSW.ueBegin=+new Date}a.fadeIn(GWCSW.c_animationDelay,function(){if(GWCSW.isIE7()||GWCSW.isIE8()){this.style.removeAttribute(\"filter\")}});b.fadeIn(GWCSW.c_animationDelay)};jQuery.fn.applyIEPngFix=function(){var a=jQuery(this).parent();a.html(jQuery(\"<span title></span>\").attr(\"style\",\"width:\"+jQuery(this).css(\"width\")+\";height:\"+jQuery(this).css(\"height\")+\";display:inline-block;;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='\"+jQuery(this).attr(\"src\")+\"', sizingMethod='image');\"))}});amznJQ.declareAvailable(\"gateway-center-stage\");\n</script>\n\n\n        </div>\n        \n        <div class=\"amabot_center\" id=\"centercol\">\n          <link rel=\"stylesheet\" type=\"text/css\" href=\"http://z-ecx.images-amazon.com/images/G/01/s9-campaigns/s9-widget._V143214364_.css\"/><div class=\"unified_widget rcm widget small_heading s9Widget\" id=\"ns_0MSRC4HCMZGT5XEGM66M_610_Widget\">\n\n<script type=\"text/javascript\">\nwindow.S9Includes = window.S9Includes || {};\nif (!window.S9Includes.S9Multipack && !window.S9Multipack) {\n  var scriptElem = document.createElement('script');\n  scriptElem.src = \"http://z-ecx.images-amazon.com/images/G/01/s9-campaigns/s9-multipack-min._V154344867_.js\";\n  document.getElementsByTagName('head')[0].appendChild(scriptElem);\n}\nwindow.S9Includes['S9Multipack'] = true;\n</script>\n<h2>What Other Customers Are Looking At Right Now</h2>\n<div class=\"row s9m3\" id=\"ns_0MSRC4HCMZGT5XEGM66M_610_r0ItemRow\">\n<div class=\"s9OtherItems\" style=\"float: left; width: 100%\">\n<div class=\"fluid asin s9a0\" style=\"float: left; width: 33.1%\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B0084IG7KC\" class=\"title ntTitle noLinkDecoration\" title=\"The Hunger Games [2-Disc Blu-ray + Ultra-Violet Digital Copy]\"><div class=\"imageContainer\"><img src=\"http://ecx.images-amazon.com/images/I/51ZNsLOdCxL._SL135_.jpg\" alt=\"\" width=\"115\" height=\"135\" /></div><span class=\"s9TitleText\">The Hunger Games\n</span></a>\n\n<div class=\"t11\">Jennifer Lawrence, Josh Hutcherson, ...</div><div class=\"gry t11 nt\">Blu-ray</div>\n\n\n\n<span class=\"newListprice gry t11\">$39.99</span> <span class=\"s9Price red t14\">$19.99</span>\n</div></div>\n</div>\n<div class=\"fluid asin s9a1\" style=\"float: left; width: 33.1%\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B008AWELQY\" class=\"title ntTitle noLinkDecoration\" title=\"Monster Shooter: The Lost Levels\"><div class=\"imageContainer\"><img src=\"http://ecx.images-amazon.com/images/I/81VHY1Y48hL._SL135_.png\" alt=\"\" width=\"135\" height=\"135\" /></div><span class=\"s9TitleText\">Monster Shooter: The Lost Levels\n</span></a>\n\n<br clear=\"none\"/><div class=\"t11\">Gamelion Studios</div>\n\n\n<span class=\"newListprice gry t11\">$0.99</span> <span class=\"s9Price red t14\">$0.00</span>\n</div></div>\n</div>\n<div class=\"fluid asin s9a2\" style=\"float: left; width: 33.1%\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B0051QVESA\" class=\"title ntTitle noLinkDecoration\" title=\"Kindle, Wi-Fi, 6&quot; E Ink Display - includes Special Offers &amp; Sponsored Screensavers\"><div class=\"imageContainer\"><img src=\"http://ecx.images-amazon.com/images/I/411H%2B731ZzL._SL135_.jpg\" alt=\"\" width=\"135\" height=\"135\" /></div><span class=\"s9TitleText\">Kindle, Wi-Fi, 6&quot; E Ink Display...\n</span></a>\n\n<br clear=\"none\"/><div class=\"t11\">Amazon</div>\n\n\n<span class=\"s9Price red t14\">$79.00</span>\n</div></div>\n</div>\n<div class=\"fluid asin s9a3\" style=\"float: left; width: 33.1%; display: none\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B005890G8Y\" class=\"title ntTitle noLinkDecoration\" title=\"Kindle Touch, Wi-Fi, 6&quot; E Ink Display - includes Special Offers &amp; Sponsored Screensavers\"><div class=\"imageContainer\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\" url=\"http://ecx.images-amazon.com/images/I/417j8GAjnyL._SL135_.jpg\" alt=\"\" width=\"135\" height=\"135\" /></div><span class=\"s9TitleText\">Kindle Touch, Wi-Fi, 6&quot; E Ink Display...\n</span></a>\n\n<br clear=\"none\"/><div class=\"t11\">Amazon</div>\n\n\n<span class=\"s9Price red t14\">$99.00</span>\n</div></div>\n</div>\n<div class=\"fluid asin s9a4\" style=\"float: left; width: 33.1%; display: none\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B003VNKNF0\" class=\"title ntTitle noLinkDecoration\" title=\"Transcend 32 GB Class 10 SDHC Flash Memory Card (TS32GSDHC10E)\"><div class=\"imageContainer\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\" url=\"http://ecx.images-amazon.com/images/I/41IjBjZUO3L._SL135_.jpg\" alt=\"\" width=\"106\" height=\"135\" /></div><span class=\"s9TitleText\">Transcend 32 GB Class 10 SDHC Flash...\n</span></a>\n\n<br clear=\"none\"/>\n\n\n<span class=\"newListprice gry t11\">$31.99</span> <span class=\"s9Price red t14\">$17.99</span>\n</div></div>\n</div>\n<div class=\"fluid asin s9a5\" style=\"float: left; width: 33.1%; display: none\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B001KVZ6HK\" class=\"title ntTitle noLinkDecoration\" title=\"Marvel&#39;s The Avengers (Four-Disc Combo: Blu-ray 3D/Blu-ray/DVD + Digital Copy + Digital Music Download)\"><div class=\"imageContainer\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\" url=\"http://ecx.images-amazon.com/images/I/610OqlIOBVL._SL135_.jpg\" alt=\"\" width=\"106\" height=\"135\" /></div><span class=\"s9TitleText\">Marvel&#39;s The Avengers\n</span></a>\n\n<div class=\"t11\">Robert Downey Jr., Chris Evans, ...</div><div class=\"gry t11 nt\">Blu-ray</div>\n\n\n\n<span class=\"newListprice gry t11\">$49.99</span> <span class=\"s9Price red t14\">$29.96</span>\n</div></div>\n</div>\n<div class=\"fluid asin s9a6\" style=\"float: left; width: 33.1%; display: none\">\n<div class=\"inner\"><div class=\"s9hl\" style=\"position: relative\"><a href=\"/gp/product/B0051VVOB2\" class=\"title ntTitle noLinkDecoration\" title=\"Kindle Fire, Full Color 7&quot; Multi-touch Display, Wi-Fi\"><div class=\"imageContainer\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\" url=\"http://ecx.images-amazon.com/images/I/41Xx9W8gdRL._SL135_.jpg\" alt=\"\" width=\"135\" height=\"135\" /></div><span class=\"s9TitleText\">Kindle Fire, Full Color 7...\n</span></a>\n\n<br clear=\"none\"/><div class=\"t11\">Amazon</div>\n\n\n<span class=\"s9Price red t14\">$199.00</span>\n</div></div>\n</div>\n</div>\n</div>\n<div style=\"clear: left; width: 100%; height: 1px; margin: 0; padding: 0; overflow: hidden\"></div>\n<script type=\"text/javascript\">\nif(!window.S9MultipackResizer){\nwindow.S9MultipackResizer=function(r,mn,mx,mw,s,p,c){\nvar cl=r.parentNode.parentNode;\nvar w=(!c||!cl.s9CachedWidth)?(cl.s9CachedWidth=r.offsetWidth):cl.s9CachedWidth;\nvar pn=Math.floor((w-p)/mw)-(s?1:0);\nvar n=Math.min(Math.max(pn,mn),mx);\nr.className=r.className.replace(new RegExp('s9m'+String.fromCharCode(92)+'d+','g'),'s9m'+n);\nreturn {potentialCols:pn,cols:n}\n}\n}\nif(!/opera/i.test(navigator.userAgent)){\n(function(){\nvar rI;\nvar r=document.getElementById('ns_0MSRC4HCMZGT5XEGM66M_610_r0ItemRow');\nrI=S9MultipackResizer(r,3,7,155,false,0,true);\n})();\n}\namznJQ.onReady('s9Multipack', function() {\n  jQuery('#ns_0MSRC4HCMZGT5XEGM66M_610_r0ItemRow').s9Multipack({ minItems: 3, maxItems: 7, minItemWidth: 155, seeded: false, seedHeaderBottomPadding: 4});\n});\n</script>\n<div class=\"h_rule\"></div>\n</div>\n\n          <div class=\"unified_widget blurb\"><h2>The Best Prices on the Most Laptops</h2><div class=\"row\"><div class=\"asinItem\"><div class=\"localImage\"><a href=\"/s?ie=UTF8&brand=acer&emi=ATVPDKIKX0DER&field-availability=-1&node=565108\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/electronics/detail-page/Acer-120x120._V137848950_.gif\" width=\"120\" alt=\"Acer\" height=\"85\" border=\"0\" /></a></div><div class=\"asinTextBlock\"><div class=\"title\"><a href=\"/s?ie=UTF8&brand=acer&emi=ATVPDKIKX0DER&field-availability=-1&node=565108\">Acer</a></div></div></div><div class=\"asinItem\"><div class=\"localImage\"><a href=\"/s?ie=UTF8&brand=Dell&emi=ATVPDKIKX0DER&field-availability=-1&node=565108\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/electronics/detail-page/Dell-120x120x._V137849495_.gif\" width=\"109\" alt=\"Dell\" height=\"86\" border=\"0\" /></a></div><div class=\"asinTextBlock\"><div class=\"title\"><a href=\"/s?ie=UTF8&brand=Dell&emi=ATVPDKIKX0DER&field-availability=-1&node=565108\">Dell</a></div></div></div><div class=\"asinItem\"><div class=\"localImage\"><a href=\"/s?ie=UTF8&brand=Toshiba&emi=ATVPDKIKX0DER&field-availability=-1&node=565108\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/electronics/detail-page/Toshiba-120x120._V137849590_.gif\" width=\"120\" alt=\"Toshiba\" height=\"86\" border=\"0\" /></a></div><div class=\"asinTextBlock\"><div class=\"title\"><a href=\"/s?ie=UTF8&brand=Toshiba&emi=ATVPDKIKX0DER&field-availability=-1&node=565108\">Toshiba</a></div></div></div></div><div class=\"row\"><div class=\"asinItem\"><div class=\"asinTextBlock\"><p class=\"seeMore\"><span class=\"carat\">&#8250;</span><a href=\"/Notebooks-Laptop-Computers/b?ie=UTF8&node=565108\">See all laptops</a></p></div></div></div><div class=\"h_rule\"></div></div><div class=\"unified_widget blurb\"><h2>Get Charged with Powerful and Versatile Equipment</h2><div class=\"row\"><div class=\"asinItem\"><div class=\"prodImage\"><a href=\"/Power-Packs-Automotive/b?ie=UTF8&node=1253955011\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/Automotive/rotos/Duracell600_120._V192204764_.jpg\" width=\"120\" alt=\"Shop for emergency and portable power\" height=\"120\" border=\"0\" /></a></div><div class=\"asinTextBlock\"><div class=\"title\"><a href=\"/Power-Packs-Automotive/b?ie=UTF8&node=1253955011\">Emergency &amp; Portable Power</a></div></div></div><div class=\"asinItem\"><div class=\"prodImage\"><a href=\"/Solar-Battery-Chargers-Automotive/b?ie=UTF8&node=1253958011\"><img src=\"http://ecx.images-amazon.com/images/I/517Zx0IrHIL._SL110_.jpg\" width=\"110\" alt=\"Shop for solar chargers\" height=\"110\" border=\"0\" /></a></div><div class=\"asinTextBlock\"><div class=\"title\"><a href=\"/Solar-Battery-Chargers-Automotive/b?ie=UTF8&node=1253958011\">Solar Chargers</a></div></div></div><div class=\"asinItem\"><div class=\"prodImage\"><a href=\"/s?ie=UTF8&brand=Sunforce&keywords=44447%7C44444%7C44455&node=15684181\"><img src=\"http://ecx.images-amazon.com/images/I/31Z9QG5EHWL._SL110_.jpg\" width=\"82\" alt=\"Shop for wind power equipment\" height=\"110\" border=\"0\" /></a></div><div class=\"asinTextBlock\"><div class=\"title\"><a href=\"/s?ie=UTF8&brand=Sunforce&keywords=44447%7C44444%7C44455&node=15684181\">Wind Power</a></div></div></div></div><div class=\"row\"><div class=\"asinItem\"><div class=\"asinTextBlock\"><p class=\"seeMore\"><span class=\"carat\">&#8250;</span><a href=\"/b?ie=UTF8&node=387679011\">All jump starters, chargers, and portable power</a></p></div></div></div><div class=\"h_rule\"></div></div>\n        </div>\n        <div class=\"amabot_right\" id=\"rightcolhidden\" style=\"display:none;\">\n          <div style=\"display:none;\"></div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\"><map name=\"nest-promo\"><area shape=\"rect\" coords=\"0,0,280,110\" alt=\"Nest the Learning Thermostat\" href=\"/gp/product/B006ML9J4O\"/> </map><img src=\"http://g-ecx.images-amazon.com/images/G/01/img12/home-improvement/300x120/v2-nest-launch-graphics-roto_300x120._V143819196_.png\" width=\"300\" align=\"center\" usemap=\"#nest-promo\" alt=\"Nest the Learning Thermostat\" height=\"120\" border=\"0\" /></td></tr></table><br><div style=\"display:none;\"></div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\"><map name=\"amazon-visa-roto\"><area shape=\"rect\" coords=\"0,0,300,120\" alt=\"Amazon.com Rewards Visa Card\" href=\"/gp/cobrandcard/marketing.html?ie=UTF8&place=camp&plattr=CBGWGC0222&pr=con321&source=h\"/> </map><img src=\"http://g-ecx.images-amazon.com/images/G/01/credit/ad-creative-12/Roto/cbcc-30inst_300x120._V143532128_.png\" width=\"300\" align=\"center\" usemap=\"#amazon-visa-roto\" alt=\"Amazon.com Rewards Visa Card\" height=\"120\" border=\"0\" /></td></tr></table><br>\n        </div>\n      </div> <!-- content -->\n    </div> <!-- class=\"page-wrap\" -->\n    <div id=\"page-footer\">\n      \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div id=\"navFooter\">\n  <table cellspacing=\"0\">\n    <tr>\n      <td>\n        <table class=\"navFooterThreeColumn\" cellspacing=\"0\">\n          <tr>\n            <td class=\"navFooterColSpacerOuter\"></td>\n            <td class=\"navFooterLinkCol\">\n<div class=\"navFooterColHead\">Get to Know Us</div>\n<ul>\n<li><a href=\"/gp/jobs\">Careers</a></li>\n<li><a href=\"/gp/redirect.html?_encoding=UTF8&location=http%3A%2F%2Fphx.corporate-ir.net%2Fphoenix.zhtml%3Fc%3D97664%26p%3Dirol-irhome&token=F9CAD8A11D4336B5E0B3C3B089FA066D0A467C1C\">Investor Relations</a></li>\n<li><a href=\"/gp/redirect.html?_encoding=UTF8&location=http%3A%2F%2Fphx.corporate-ir.net%2Fphoenix.zhtml%3Fc%3D176060%26p%3Dirol-mediaHome&token=F9CAD8A11D4336B5E0B3C3B089FA066D0A467C1C\">Press Releases</a></li>\n<li><a href=\"/b?ie=UTF8&node=13786321\">Amazon and Our Planet</a></li>\n<li><a href=\"/b?ie=UTF8&node=13786411\">Amazon in the Community</a></li>\n</ul>\n</td>\n<td class=\"navFooterColSpacerInner\"></td>\n<td class=\"navFooterLinkCol\">\n<div class=\"navFooterColHead\">Make Money with Us</div>\n<ul>\n<li><a href=\"/gp/redirect.html?_encoding=UTF8&location=http%3A%2F%2Fwww.amazonservices.com%2Fcontent%2Fsell-on-amazon.htm%2Fref%3Dfooter_soa%3Fld%3DAZFSSOA&token=1E60AB4AC0ECCA00151B45353E21782E539DC601\">Sell on Amazon</a></li>\n<li><a href=\"https://affiliate-program.amazon.com\">Become an Affiliate</a></li>\n<li><a href=\"/gp/redirect.html?_encoding=UTF8&location=http%3A%2F%2Fwww.amazonservices.com%2Fcontent%2Fproduct-ads-on-amazon.htm%2Fref%3Dfooter_pads%3Fld%3DAZPADSFooter&token=1E60AB4AC0ECCA00151B45353E21782E539DC601\">Advertise Your Products</a></li>\n<li><a href=\"/gp/seller-account/mm-summary-page.html?ie=UTF8&ld=AZFooterSelfPublish&topic=200260520\">Independently Publish with Us</a></li>\n<li><span class=\"navFooterRightArrowBullet\">&rsaquo;</span> <a href=\"/gp/seller-account/mm-landing.html?ie=UTF8&ld=AZSOAviewallMakeM\">See all</a></li>\n</ul>\n</td>\n<td class=\"navFooterColSpacerInner\"></td>\n<td class=\"navFooterLinkCol\">\n<div class=\"navFooterColHead\">Let Us Help You</div>\n<ul>\n<li><a href=\"https://www.amazon.com/gp/css/homepage.html\">Your Account</a></li>\n<li><a href=\"/gp/help/customer/display.html?ie=UTF8&nodeId=468520\">Shipping Rates & Policies</a></li>\n<li><a href=\"/gp/prime\">Amazon Prime</a></li>\n<li><a href=\"/gp/css/returns/homepage.html\">Returns Are Easy</a></li>\n<li><a href=\"/gp/digital/fiona/manage\">Manage Your Kindle</a></li>\n<li><a href=\"/gp/help/customer/display.html?ie=UTF8&nodeId=508510\">Help</a></li>\n</ul>\n</td>\n\n            <td class=\"navFooterColSpacerOuter\"></td>\n          </tr>\n        </table>\n      </td>\n    </tr>\n    <tr>\n      <td>\n        <div class=\"navFooterLine navFooterLogoLine\">\n          <a href=\"/\"><img src=\"http://g-ecx.images-amazon.com/images/G/01/gno/images/general/navAmazonLogoFooter._V169459313_.gif\" width=\"126\" alt=\"amazon.com\" height=\"24\" border=\"0\" /></a>\n        </div>\n        <div class=\"navFooterLine navFooterLinkLine navFooterPadItemLine\">\n          <a href=\"http://www.amazon.ca/\">Canada</a>\n<a href=\"http://www.amazon.cn/\">China</a>\n<a href=\"http://www.amazon.fr/\">France</a>\n<a href=\"http://www.amazon.de/\">Germany</a>\n<a href=\"http://www.amazon.it/\">Italy</a>\n<a href=\"http://www.amazon.co.jp/\">Japan</a>\n<a href=\"http://www.amazon.es/\">Spain</a>\n<a href=\"http://www.amazon.co.uk/\">United Kingdom</a>\n\n        </div>\n        <div class=\"navFooterLine navFooterLinkLine navFooterDescLine\">\n          <table cellspacing=\"0\">\n            <tr>\n<td class=\"navFooterDescSpacer\" style=\"width: 36.0%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.abebooks.com/\">AbeBooks<br/> <span class=\"navFooterDescText\">Rare Books<br/> & Textbooks</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://amazonlocal.com/\">AmazonLocal<br/> <span class=\"navFooterDescText\">Great Local Deals<br/> in Your City</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.amazonsupply.com/\">AmazonSupply<br/> <span class=\"navFooterDescText\">Business, Industrial<br/> & Scientific Supplies</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://aws.amazon.com/\">AmazonWebServices<br/> <span class=\"navFooterDescText\">Scalable<br/> Cloud Services</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://wireless.amazon.com/\">AmazonWireless<br/> <span class=\"navFooterDescText\">Cellphones &<br/> Wireless Plans</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://askville.amazon.com/\">Askville<br/> <span class=\"navFooterDescText\">Community<br/> Answers</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.audible.com/\">Audible<br/> <span class=\"navFooterDescText\">Download<br/> Audio Books</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.beautybar.com/\">BeautyBar.com<br/> <span class=\"navFooterDescText\">Prestige Beauty<br/> Delivered</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 36.0%\"></td>\n</tr>\n<tr><td>&nbsp;</td></tr>\n<tr>\n<td class=\"navFooterDescSpacer\" style=\"width: 36.0%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.bookdepository.com/\">Book Depository<br/> <span class=\"navFooterDescText\">Books With Free<br/> Delivery Worldwide</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.createspace.com/\">CreateSpace<br/> <span class=\"navFooterDescText\">Indie Publishing<br/> Made Easy</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.diapers.com/\">Diapers.com<br/> <span class=\"navFooterDescText\">Everything<br/> But The Baby</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.dpreview.com/\">DPReview<br/> <span class=\"navFooterDescText\">Digital<br/> Photography</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.fabric.com/\">Fabric<br/> <span class=\"navFooterDescText\">Sewing, Quilting<br/> & Knitting</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.imdb.com/\">IMDb<br/> <span class=\"navFooterDescText\">Movies, TV<br/> & Celebrities</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.junglee.com/\">Junglee.com<br/> <span class=\"navFooterDescText\">Shop Online<br/> in India</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.myhabit.com/\">MYHABIT<br/> <span class=\"navFooterDescText\">Private Fashion<br/> Designer Sales</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 36.0%\"></td>\n</tr>\n<tr><td>&nbsp;</td></tr>\n<tr>\n<td class=\"navFooterDescSpacer\" style=\"width: 36.0%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.shopbop.com/welcome\">Shopbop<br/> <span class=\"navFooterDescText\">Designer<br/> Fashion Brands</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.soap.com/\">Soap.com<br/> <span class=\"navFooterDescText\">Health, Beauty &<br/> Home Essentials</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.wag.com/\">Wag.com<br/> <span class=\"navFooterDescText\">Everything<br/> For Your Pet</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"/b?ie=UTF8&node=1267877011\">Warehouse Deals<br/> <span class=\"navFooterDescText\">Open-Box<br/> Discounts</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.woot.com/\">Woot<br/> <span class=\"navFooterDescText\">Never Gonna<br/> Give You Up</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.yoyo.com/\">Yoyo.com<br/> <span class=\"navFooterDescText\">A Happy Place<br/> To Shop For Toys</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\"><a href=\"http://www.zappos.com/\">Zappos<br/> <span class=\"navFooterDescText\">Shoes &<br/> Clothing</span></a></td>\n<td class=\"navFooterDescSpacer\" style=\"width: 4%\"></td>\n<td class=\"navFooterDescItem\">&nbsp;</td>\n<td class=\"navFooterDescSpacer\" style=\"width: 36.0%\"></td>\n</tr>\n\n          </table>\n        </div>\n        <div class=\"navFooterLine navFooterLinkLine navFooterPadItemLine\">\n          <a href=\"/gp/help/customer/display.html?ie=UTF8&nodeId=508088\">Conditions of Use</a>\n<a href=\"/gp/help/customer/display.html?ie=UTF8&nodeId=468496\">Privacy Notice</a>\n<a href=\"/interestbasedads\">Interest-Based Ads</a>\n<span>\n 1996-2012, Amazon.com, Inc. or its affiliates\n</span>\n\n        </div>\n      </td>\n    </tr>\n    \n\n  </table>\n</div>\n<!-- whfh-aucqmxNmznTaU7nG7FSCMuQud/wQx4xTnMMYT59aSTLESpj8olTB2746jggHeNON rid-0MSRC4HCMZGT5XEGM66M -->\n\n    \n\n  \n  \n    \n  \n\n\n\n\n\n<div id=\"SponsoredLinksGateway\"></div>\n\n\n\n\n\n\n\n\n\n      \n      \n\n\n\n \n<script type=\"text/javascript\">\nif ( window.amznJQ && amznJQ.addPL ) {\n\tamznJQ.addPL([\"https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/site-wide-js-1.2.6-beacon/site-wide-15597050273._V1_.js\",\"https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/us-site-wide-css-beacon/site-wide-5808467376._V1_.css\",\"https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage-cn/wcs-ya-homepage-cn-2647797242._V1_.css\",\"https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-css-buttons/wcs-css-buttons-3112498172._V1_.css\",\"https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-homepage-beaconized/wcs-ya-homepage-beaconized-3700890291._V1_.css\",\"https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/wcs-ya-order-history-beaconized/wcs-ya-order-history-beaconized-598394915._V1_.css\",\"https://images-na.ssl-images-amazon.com/images/G/01/gno/images/general/navAmazonLogoFooter._V169459313_.gif\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/css/images/amznbtn-sprite03._V163527511_.png\",\"https://images-na.ssl-images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/ya/images/shipment_large_lt._V192250661_.gif\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/help/images/spotlight/kindle-family-02b._V139448121_.jpg\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/acorn._V192250692_.gif\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/orders/images/btn-close._V192250694_.gif\",\"https://images-na.ssl-images-amazon.com/images/G/01/x-locale/cs/projects/text-trace/texttrace_typ._V183418138_.js\"]);\n}\n</script>\n\n\n\n\n\n\n\n\n\n\n<script type=\"text/javascript\">\n!function() {\n  if (amznJQ && amznJQ.addPL) {\n    amznJQ.addPL([\n      \"http://z-ecx.images-amazon.com/images/G/01/browser-scripts/search-css/search-css-2074931017._V1_.css\",\n      \"http://g-ecx.images-amazon.com/images/G/01/nav2/images/gui/searchSprite._V143778884_.gif\",\n      \"http://z-ecx.images-amazon.com/images/G/01/browser-scripts/search-ajax/search-ajax-2294563073._V1_.js\",\n      \"http://z-ecx.images-amazon.com/images/G/01/browser-scripts/page-ajax/page-ajax-1941461144._V1_.js\",\n      \"http://z-ecx.images-amazon.com/images/G/01/browser-scripts/search-js-general/search-js-general-380922392._V1_.js\"\n    ]);\n  }\n}();\n</script>\n\n\n\n\n\n \n\n \n\n  \n\n  \n\n  \n\n  \n\n\n\n  \n\n  \n\n\n\n\n\n\n\n\n\n\n\n<script type=\"text/javascript\">\n    var aPlAssets = [];\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/browser-scripts/fruitCSS/US-combined-3926343938._V146284167_.css\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/browser-scripts/dpSpritesCSS/US-combined-2411555823._V392870498_.css\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/kitchen/scheduled-delivery/sd_style-ScheduledDeliveryJavascript-b1.0.3.61-min._V392289863_.css\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/ciuCSS/ciuCSS-ciuAnnotations-57856._V1_.css\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/x-locale/communities/profile/customer-popover/style-3._V248984170_.css\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/accessoriesCSS/US/combined-3689044428._V189697042_.css\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/tmmJS/tmmJS-combined-core-65345._V1_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/twister/beta/twister-dpf.b768c2b3bdf48b41d2fc18e33d98263a._V1_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/cmuAnnotations/cmuAnnotations-cmuAnnotations-55262._V1_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/accessoriesJS/accessoriesJS-accessories-49340._V1_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/lazyLoadLib/lazyLoadLib-lazyLoadLib-60357._V1_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/priceformatterJQ/priceformatterJQ-price-21701._V1_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/x-locale/communities/profile/customer-popover/script-13-min._V224617671_.js\");\n      aPlAssets.push(\"http://z-ecx.images-amazon.com/images/G/01/x-locale/personalization/yourstore/js/ratings-bar-366177._V204593665_.js\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite-communities._V136632413_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite-site-wide-2._V146303866_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/x-locale/communities/social/snwicons._V156405323_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite-cbox._V142934707_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite_box_bb._V158091179_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprite/wl_bb_sprite_box._V156421616_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite_box_mbc._V156421446_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite-dp-2._V142966543_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/common/sprites/sprite-accessories-2._V156421502_.png\");\n      aPlAssets.push(\"http://g-ecx.images-amazon.com/images/G/01/x-locale/personalization/amznlike/amznlike_sprite_02._V196113939_.gif\");\n    amznJQ.addPL(aPlAssets);\namznJQ.available(\"jQuery\", function() {\n    jQuery(window).load(function() {\n\n        amznJQ.available(\"search-js-general\" , function() {\n                window.precacheDetailImages = function(imageUrls, pids) {\n\n                    function transformUrl(imgUrl, pid) {\n                        var suffix               = '._SL500_AA300_.jpg',\n                            defaultApparel       = '._AA300_.jpg',\n                            iVApparel            = '._SX300_SY390_CR,0,0,300,390_.jpg',\n                            imgUrlSplit          = imgUrl.split(\"._\");\n\n                        if(imgUrlSplit.length) {\n                            var prefix = imgUrlSplit[0];\n                            if((!pid  && storeName == \"books\") || pid == \"books_display_on_website\") {\n                                if(imgUrl.match(\"PIsitb-sticker-arrow-dp\")){\n                                    var OUID = imgUrl.substr(imgUrl.indexOf('_OU'), 6);                                     \n                                    var lookInsideSticker    = '._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20'+ OUID +'.jpg';\n                                    urls.push(prefix + lookInsideSticker);\n                                } else {\n                                    urls.push(prefix + suffix);\n                                }\n                            } else if((!pid && storeName == \"apparel\") || pid == \"apparel_display_on_website\") {\n                                    urls.push(prefix + \"._SX342_.jpg\");\n                                    urls.push(prefix + \"._SY445_.jpg\");\n                            } else if((!pid && storeName == \"shoes\") || pid == \"shoes_display_on_website\") {\n                                    urls.push(prefix + \"._SX395_.jpg\");\n                                    urls.push(prefix + \"._SY395_.jpg\");\n                            } else {\n                                urls.push(prefix + suffix);\n                            }\n                        }\n                    };\n\n                    var dpImages = [],\n                        urls     = [],\n                        numImgsPreload = Math.min(4, imageUrls.length),\n                        storeName = \"\";\n\n                    for(var i = 0; i < numImgsPreload; i++){\n                        var currPid = (pids && pids.length) ? pids[i] : \"\";\n                        transformUrl(imageUrls[i], currPid);\n                    }\n\n                    for(var j = 0; j < urls.length; j++) {\n                        var img = new Image();\n                        img.src = urls[j];\n                        dpImages.push(img);\n                    }\n\n                    window.dpImages = dpImages;\n\n                };// precache function ends\n        });\n    });\n});\n\n</script>\n\n\n\n\n  <div style=\"display:none\">\n  </div>\n\n    </div>\n  </body>\n</html>\n\n\n\n\n\n\n\n<!-- MEOW -->\n\n\n\n  \n\n  \n  \n\n\n\n"
  },
  {
    "path": "testdata/8859_1_es.html",
    "content": "\n<!DOCTYPE html>\n<!--[if lt IE 7 ]><html lang=\"es\" class=\"ie6\"><![endif]-->\n<!--[if IE 7 ]> <html lang=\"es\" class=\"ie7\"> <![endif]-->\n<!--[if IE 8 ]> <html lang=\"es\" class=\"ie8\"> <![endif]-->\n<!--[if IE 9 ]> <html lang=\"es\" class=\"ie9\"> <![endif]-->\n<!--[if (gt IE 9)|!(IE)]> <!--> <html lang=\"es\"><!--<![endif]-->\n<head>\n  \t\n    \n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n    <title>MercadoLibre Mxico - Donde comprar y vender de todo.</title>\n    <meta name=\"description\" content=\"El mayor Mercado Virtual de Amrica latina, donde puedes comprar y vender de todo.\" >\n    <meta name=\"google-site-verification\" content=\"Qa819rfi9HWKKKApYsN6JVZF-lK6JuAtDvDCBXNBmGA\" />\n    \n    \n    <link href=\"http://static.mlstatic.com/org-img/chico/chico-min-dependences.0.7.4.css\" type=\"text/css\" rel=\"stylesheet\"/>\n    \n    \n\n    <link rel='stylesheet' type='text/css' href='http://home.mlstatic.com/css/css_homeV0312__v2e3e0d451d9.css' />\n    <link rel=\"canonical\" href=\"http://www.mercadolibre.com.mx/\">\n    <link title=\"MercadoLibre Mxico\" rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"http://static.mlstatic.com/org-img/mercadosocio/opensearch/opensearch-description-mlm.xml\" />\n\n    \n    <style>\n    /* RESPONSIVE ARBOL DE CATEGORIAS */\n\n\t\t@media screen and (max-width : 1024px){\n\t\t    \n\t\t\t.container{\n\t\t\t\tpadding-left: 0;\n\t\t\t}\n\n\t\t\t.container #bancos {\n\t\t\t\tmargin-left: 210px;\n\t\t\t}\n\n\t\t\t.container .nav{\n\t\t\t\tposition: absolute;\n\t\t\t\tz-index: 10;\n\t\t\t\t/* clean default styles */\n\t\t\t\tfloat: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t\t.container .nav .titleCateg{\n\t\t\t\tdisplay: block;\n\t\t\t\tpadding: 12px 10px 13px 30px;\n\t\t\t\tborder-radius: 5px;\n\t\t\t\tmargin-top: 2px;\n\t\t\t\tcursor: pointer;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 5;\n\t\t\t\tbackground: #333;\n\t\t\t\tcolor: #F0F0F0;\t\n\t\t\t}\n\n\t\t\t.container .nav .titleCateg:before{\n\t\t\t\tcontent: \"\";\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-top: 5px solid transparent;\n\t\t\t\tborder-left: 5px solid #F0F0F0;\n\t\t\t\tborder-bottom: 5px solid transparent;\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 16px;\n\t\t\t\ttop: 17px;\n\t\t\t}\n\n\t\t\t.container .nav .titleCateg.active:before{\n\t\t\t\tborder-left: 5px solid transparent;\n\t\t\t\tborder-right: 5px solid transparent;\n\t\t\t\tborder-top: 5px solid #F0F0F0;\n\t\t\t\tleft: 12px;\n\t\t\t\ttop: 20px;\n\t\t\t}\n\n\t\t\t.container .nav .listCategs{\n\t\t\t\tbackground: rgba(240, 240, 240, 0.95);\n\t\t\t\tpadding: 20px 8px;\n\t\t\t\tborder-left: 1px solid #eee;\n\t\t\t\tposition: relative;\n\t\t\t\tmargin-top: -10px;\n\t\t\t\tborder-bottom-left-radius: 5px;\n\t\t\t\tborder-bottom-right-radius: 5px;\n\t\t\t}\n\n\t\t\t.nojs .container .nav .listCategs.ch-hide{\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\t.container .nav .listCategs.ch-hide{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.container .nav .listCategs h2{\n\t\t\t\tmargin-bottom: 0px !important;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-family: arial !important;\n\t\t\t\tfont-weight: bold;\n\t\t\t}\n\n\t\t\t.container .nav .listCategs li{\n\t\t\t\tfont-size: 12px;\n\t\t\t}\n\n\t\t}\n\n\t\t</style>\n\t\n\n\n\t\n    \n    \n\n   \t</head>\n   \t<body id=\"homesMLM\" class=\"homePage\">\n       \n       \n       \t\n\t\t<div class=\"header mainHeader ml home\">\n\t\t\t\n\t\t\t\t<h1>\t\n\t\t\t\t\t<span class=\"ml-main-header-logo-es\">MercadoLibre. Donde compras y vendes de todo.</span>\n\t\t\t\t</h1>\n\t\t\t\n\t\n\t\t\n\t<div class=\"nav\">\n      \t\n\t\t\n\t\t<!-- Links Derecha -->\n\t\t\n\t\t<ul class=\"ej navAccount\">\n\t\t\n\t\t\t<!-- Links Derecha - Nick / Registrate / Mensajes -->\n\t\t\t\n\t\t\t\t<li id=\"lblNick\">\n\t\t\t\t\t<script>\n\t\t\t\t\t\tvar txtAutoSugNoShow = \"Ocultar sugerencias\";\n\t\t\t\t\t\tvar categId=null\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tvar siteId = \"MLM\";\t\t\n\t                \tfunction getCookie(b){var c,a,e,d=document.cookie.split(\";\");for(c=0;c<d.length;c++){a=d[c].substr(0,d[c].indexOf(\"=\"));e=d[c].substr(d[c].indexOf(\"=\")+1);a=a.replace(/^\\s+|\\s+$/g,\"\");if(a==b){return unescape(e)}}};\n\t                \t\n\t\t\t\t\t\t\n\t                \t\tvar noMsgText = \"Sigue tus operaciones desde <a id=\\\"ALERT:MYML\\\" href=\\\"http://www.mercadolibre.com.mx/jm/myML\\\">Mi Cuenta</a>.\";\n\t                \t\tvar P_CALIF_S= \"Tienes que <a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">calificar tu compra</a>.\";\n\t                \t\tvar P_CALIF_P= \"Tienes que <a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">calificar tu compra</a>.\";\n\t                \t\tvar P_CALIF_B_S= \"Tienes que <a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">calificar tu venta</a>.\";\n\t                \t\tvar P_CALIF_B_P=  \"Tienes que <a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">calificar tu venta</a>.\";\n\t                \t\tvar TO_PAY_MP_S= \"<a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">Paga tu compra</a> con MercadoPago.\";\n\t                \t\tvar TO_PAY_MP_P= \"<a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">Paga tu compra</a> con MercadoPago.\";\n\t                \t\tvar ANSWER_24_S= \"El vendedor <a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">respondi tu pregunta</a>.\";\n\t                \t\tvar ANSWER_24_P= \"El vendedor <a id=\\\"ALERT:##TYPE##\\\" href=\\\"##HREF##\\\">respondi tu pregunta</a>.\" ;\n\t                \t\n\n\t\t\t\t\t\tvar nickname=getCookie (\"orgnickp\");\n\t\t\t\t\t\tvar loginHtml;\n\n\t\t\t\t\t\tif(nickname == null || nickname == 0) {\n\t\t\t\t\t\t    loginHtml=\"<a href=\\\"http://www.mercadolibre.com.mx/jm/reg\\\" id=\\\"MENU:REG\\\" rel=\\\"nofollow\\\">Inscr&iacute;bete</a> | <a href=\\\"https://www.mercadolibre.com/jms/mlm/lgz/login?go=\\\" id=\\\"MENU:LOGIN\\\" rel=\\\"nofollow\\\">Ingresar</a>\";\n                        } else {\n                            loginHtml=\"<span class=\\\"nick\\\">Hola \" + nickname + \"</span> (<a href=\\\"http://www.mercadolibre.com.mx/jm/logout\\\" rel=\\\"nofollow\\\">Salir</a>)\";\n                        }\n                        document.write(loginHtml);\n\t\t\t\t\t</script>\n\n\t\t\t\t\t<noscript>\n\t\t\t\t\t    \n                            <a href=\"http://www.mercadolibre.com.mx/jm/reg\" rel=\"nofollow\" id=\"MENU:REG\">\n                                Inscr&iacute;bete\n                            </a> |\n                        \n                        <a href=\"https://www.mercadolibre.com/jms/mlm/lgz/login?go=\n                            \n                            \" rel=\"nofollow\" id=\"MENU:LOGIN\">Ingresar\n                        </a>\n                    </noscript>\n\t\t\t\t</li>\n\t\t\t\t<li> | </li>\n\t\t\t\n\t\t\t\n\t\t\t<!-- Links Derecha - Vender -->\n\t\t\t\n\t\t\t\t\n\t\t\t\n\n          \t<!-- Links Derecha - Bookmarks -->\n\t\t\t\n\t\t\t  <li class=\"favs\">\t<div class=\"menu-on drop ch-dropdown secondary\" id=\"dropFav\">\t<a class=\"ch-dropdown-trigger ttip\" id=\"bookmarksMenu\" rel=\"nofollow\" title=\"Mis favoritos\">\t<span class=\"ico favorite fav-off\">Favoritos</span>\t<span class=\"fav-qty\"></span>\t</a>\t</div>\t</li>\n\t            <li class=\"favs-sep\"> | </li>\n            \n\n\t\t\t<!-- Links Derecha - Mi Cuenta -->\n\t\t\t\n\t\t\t\t<li><a rel=\"nofollow\" href=\"http://www.mercadolibre.com.mx/jm/myML\" id=\"MENU:MIML\">Mi Cuenta</a></li>\n\t            <li> | </li>\n            \n            \n            <!-- Links Derecha - Ayuda -->\n\t\t\t\n\t\t\t\t<li><a href=\"http://www.mercadolibre.com.mx/jm/ml.faqs.framework.main.FaqsController?pageId=home\" id=\"MENU:AYUDAS\">Ayuda</a></li>\n\t\t\t\n\t\t<!-- Fin Links Derecha -->\n\t\t</ul>\n\t</div>\n\t\n\t\n\t\t<form id=\"formBusqueda\" class=\"ml-main-header-search-bar\" method=\"get\" action=\"http://www.mercadolibre.com.mx/jm/search\">\n\t\t\t<div class=\"buscador home\">\t\t\t\t\t\t\t\n\t\t\t\t<input type=\"text\" tabindex=\"1\" id=\"query\" autocomplete=\"off\" name=\"as_word\" maxlength=\"60\" class=\"search home\" value=\"\">\n\t\t\t\t<input type=\"submit\" tabindex=\"2\" class=\"btn secondary ml-main-header-search-button\" accesskey=\"b\" value=\"Buscar\" id=\"MENU:BUSCAD\">\n\t\t\t\t\t\t\t\t\n\t\t\t</div>\n\t\t\t<div id='autosug_div'></div>\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t<a href=\"http://www.mercadolibre.com.mx/jm/syi4\" class=\"btn secondary ml-main-header-sell-button\" rel=\"nofollow\" id=\"MENU:VENDER_BTN\">Vender</a>\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t</form>\n\t\n\t\n\t\n</div>\n\n\t\t<div class=\"container\">\n\t\t\t<div class=\"nav\">\n\t    \t\t\n<h2 class=\"titleCateg\">Categorias</h2>\n<div class=\"listCategs ch-hide\">\n  <h2 class=\"typo\">Clasificados</h2>\n  <ul>\n      \n          <li><a id=\"CATEG:1743\"  href=\"http://vehiculos-home.mercadolibre.com.mx/\" ><strong>Autos, Motos y Otros</strong></a></li>\n      \n          <li><a id=\"CATEG:1459\"  href=\"http://inmuebles-home.mercadolibre.com.mx/\" ><strong>Inmuebles</strong></a></li>\n      \n          <li><a id=\"CATEG:1540\"  href=\"http://servicios-home.mercadolibre.com.mx/\" ><strong>Servicios</strong></a></li>\n      \n  </ul>\n  <h2 class=\"typo\">Categor&iacute;as</h2>\n  <ul>\n      \n\n\n          \n        <li><a id=\"CATEG:1747\"  href=\"http://home.mercadolibre.com.mx/vehiculos-accesorios/\" ><strong>Accesorios para Vehculos</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1071\"  href=\"http://home.mercadolibre.com.mx/animales/\" ><strong>Animales y Mascotas</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1367\"  href=\"http://home.mercadolibre.com.mx/arte-y-antiguedades/\" ><strong>Arte y Antigedades</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1039\"  href=\"http://home.mercadolibre.com.mx/fotografia/\" ><strong>Cmaras y Accesorios</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1051\"  href=\"http://home.mercadolibre.com.mx/telefonos/\" ><strong>Celulares y Telefona</strong></a></li>\n      \n\n\n          \n            </ul>\n            <ul class=\"separator\">\n          \n        <li><a id=\"CATEG:1798\"  href=\"http://home.mercadolibre.com.mx/coleccionables/\" ><strong>Coleccionables</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1648\"  href=\"http://home.mercadolibre.com.mx/computacion/\" ><strong>Computacin</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1144\"  href=\"http://home.mercadolibre.com.mx/consolas-y-videojuegos/\" ><strong>Consolas y Videojuegos</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1276\"  href=\"http://home.mercadolibre.com.mx/deportes-fitness/\" ><strong>Deportes y Fitness </strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1000\"  href=\"http://home.mercadolibre.com.mx/electronica/\" ><strong>Electrnica, Audio y Video</strong></a></li>\n      \n\n\n          \n            </ul>\n            <ul class=\"separator\">\n          \n        <li><a id=\"CATEG:1574\"  href=\"http://home.mercadolibre.com.mx/hogar-electrodomesticos/\" ><strong>Hogar y Electrodomsticos</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1499\"  href=\"http://home.mercadolibre.com.mx/industrias-y-oficinas/\" ><strong>Industrias y Oficinas</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1182\"  href=\"http://home.mercadolibre.com.mx/instrumentos-musicales/\" ><strong>Instrumentos Musicales</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:3937\"  href=\"http://home.mercadolibre.com.mx/joyas-relojes/\" ><strong>Joyas y Relojes</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1132\"  href=\"http://home.mercadolibre.com.mx/juegos-juguetes/\" ><strong>Juegos y Juguetes</strong></a></li>\n      \n\n\n          \n            </ul>\n            <ul class=\"separator\">\n          \n        <li><a id=\"CATEG:3025\"  href=\"http://home.mercadolibre.com.mx/libros-y-revistas/\" ><strong>Libros, Revistas y Comics</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1168\"  href=\"http://home.mercadolibre.com.mx/musica-peliculas-series/\" ><strong>Msica, Pelculas y Series</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1430\"  href=\"http://home.mercadolibre.com.mx/ropa/\" ><strong>Ropa, Bolsas y Calzado</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1246\"  href=\"http://home.mercadolibre.com.mx/salud-y-belleza/\" ><strong>Salud y Belleza</strong></a></li>\n      \n\n\n          \n        <li><a id=\"CATEG:1953\"  href=\"http://home.mercadolibre.com.mx/otras-categorias/\" ><strong>Otras Categoras</strong></a></li>\n      \n  </ul>\n</div>\n<!-- cat_col rt = 16 -->\n\n\t\t    </div>\n\t\t\t<div class=\"section\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n                    <div class=\"box noPadBottom  newpromo bancomer\" id=\"bancos\">\n                            \n                            \n\n                            <p><strong>6 meses sin intereses</strong> con <span class=\"bancomer\">Bancomer</span></p>\n                            <a class=\"masBancos\" href=\"#\" class=\"banco\" id=\"RIGHT:PROMOBANCOS\">Otros medios de pago</a>\n\n                            <!--h2 class=\"typo\"><span>Compra en</span> Mensualidades</h2><p class=\"masBancos\"><a href=\"#\" class=\"banco\" id=\"RIGHT:PROMOBANCOS\">Ver bancos</a></p>\n                            <div class=\"containterPromo\">\n                                <p class=\"descPromo\"><span>6</span> meses <strong>sin inters</strong></p>\n                                <p class=\"logo\"><span>Banco Bancomer</span></p>\n                            </div-->\n\n\n                            \n                    </div>\n\t\t\t\t\n\n                \n                \n\t\t\t\t\n           \t\t\n           \t\t\n\t\t\t\t\t<div class=\"box hotItems\">\n\t\t\t\t\t\t\n\t<h2 class=\"typo\" id=\"titleHot\">Ms vendidos<span> en la ltima hora</span></h2>\n              <div class=\"hotItemsList carouselFull \">\n              \t<div class=\"ch-carousel-container\" name=\"maskFull\">\n\t\t          <ul class=\"carousel\">\n\t\t           \n\t\t                <li class=\"article\"><a rel=\"nofollow\" class=\"hotItem\" id=\"HOTITM:1:MLM405971739\" href=\"http://articulo.mercadolibre.com.mx/MLM-405971739-lcd-17-oferta-seminuevo-alta-resolucion-1-ano-garantia-_JM\"><img width=\"90\" height=\"90\" src=\"http://img1.mlstatic.com/s_MLM_v_I_f_79730835_9115.jpg\" orig=\"http://img2.mlstatic.com/s_MLM_v_I_f_79730835_9115.jpg\" alt=\"Lcd 17  Oferta Seminuevo  Alta Resolucion 1 Ao Garantia\" /></a><p><a rel=\"nofollow\" id=\"HOTITM:1:TTL:MLM405971739\" href=\"http://articulo.mercadolibre.com.mx/MLM-405971739-lcd-17-oferta-seminuevo-alta-resolucion-1-ano-garantia-_JM\" title=\"Lcd 17  Oferta Seminuevo  Alta Resolucion 1 Ao Garantia\">Lcd 17  Oferta Seminuevo  Alta ...</a></p><p class='price'>$ 758<sup>00</sup></p></li>\n\t\t          \n\t\t                <li class=\"article\"><a rel=\"nofollow\" class=\"hotItem\" id=\"HOTITM:2:MLM82873764\" href=\"http://articulo.mercadolibre.com.mx/MLM-82873764-cargador-original-laptop-marca-lg-185v-35a-punta-4817mm-_JM\"><img width=\"90\" height=\"90\" src=\"http://img2.mlstatic.com/s_MLM_v_I_f_2817558582_062012.jpg\" orig=\"http://img2.mlstatic.com/s_MLM_v_I_f_2817558582_062012.jpg\" alt=\"Cargador Original Laptop Marca Lg 18.5v 3.5a Punta 4.8*1.7mm\" /></a><p><a rel=\"nofollow\" id=\"HOTITM:2:TTL:MLM82873764\" href=\"http://articulo.mercadolibre.com.mx/MLM-82873764-cargador-original-laptop-marca-lg-185v-35a-punta-4817mm-_JM\" title=\"Cargador Original Laptop Marca Lg 18.5v 3.5a Punta 4.8*1.7mm\">Cargador Original Laptop Marca ...</a></p><p class='price'>$ 199<sup>80</sup></p></li>\n\t\t          \n\t\t                <li class=\"article\"><a rel=\"nofollow\" class=\"hotItem\" id=\"HOTITM:3:MLM404168169\" href=\"http://articulo.mercadolibre.com.mx/MLM-404168169-vuelven-los-sea-monkeys-_JM\"><img width=\"90\" height=\"90\" src=\"http://img1.mlstatic.com/s_MLM_v_I_f_79815566_4166.jpg\" orig=\"http://img2.mlstatic.com/s_MLM_v_I_f_79815566_4166.jpg\" alt=\"Vuelven Los Sea Monkeys!!\" /></a><p><a rel=\"nofollow\" id=\"HOTITM:3:TTL:MLM404168169\" href=\"http://articulo.mercadolibre.com.mx/MLM-404168169-vuelven-los-sea-monkeys-_JM\" title=\"Vuelven Los Sea Monkeys!!\">Vuelven Los Sea Monkeys!!</a></p><p class='price'>$ 530<sup>00</sup></p></li>\n\t\t          \n\t\t                <li class=\"article\"><a rel=\"nofollow\" class=\"hotItem\" id=\"HOTITM:4:MLM82987276\" href=\"http://articulo.mercadolibre.com.mx/MLM-82987276-celular-hiphone-4s-2012-wifi-tv-dual-sim-mp4-envio-gratis-_JM\"><img width=\"90\" height=\"90\" src=\"http://img2.mlstatic.com/s_MLM_v_I_f_80036390_7217.jpg\" orig=\"http://img2.mlstatic.com/s_MLM_v_I_f_80036390_7217.jpg\" alt=\"Celular Hiphone 4s 2012 Wifi Tv Dual Sim Mp4 Envio Gratis\" /></a><p><a rel=\"nofollow\" id=\"HOTITM:4:TTL:MLM82987276\" href=\"http://articulo.mercadolibre.com.mx/MLM-82987276-celular-hiphone-4s-2012-wifi-tv-dual-sim-mp4-envio-gratis-_JM\" title=\"Celular Hiphone 4s 2012 Wifi Tv Dual Sim Mp4 Envio Gratis\">Celular Hiphone 4s 2012 Wifi Tv...</a></p><p class='price'>$ 895<sup>00</sup></p></li>\n\t\t          \n\t\t          </ul>\n\t\t          </div>\n              </div>\n<!-- hotit rt = 2 -->\n\n\t\t\t\t\t</div>\n\t\t\t    \n\t\t\t   \n                \n                \n                <div class=\"contentFeatured\">\n\t                \n\t\t\t\t   \t\t<div class=\"box featuredItems\">\n\t\t\t\t\t\t\t\n<h2 class=\"typo\">Destacados</h2>\n\n            <div class=\"featuredItemsList carouselFull featured\">\n            <div class=\"ch-carousel-container\" name=\"maskFeatured\">\n                <ul class=\"carousel\">\n                 \n                 <li id=\"featuredItem1\" class=\"article\">\n                 \t<a rel=\"nofollow\" class=\"featured\" id=\"GAL:01:IMG:MLM405095851\" href=\"http://articulo.mercadolibre.com.mx/MLM-405095851-nuevo-samsung-galaxy-y-s5360-wifi-3g-android-microsd-4gb-_JM\"><img src=\"http://img1.mlstatic.com/s_MLM_v_I_f_79388940_5780.jpg\" orig=\"http://img1.mlstatic.com/s_MLM_v_I_f_79388940_5780.jpg\" width=\"90\" height=\"90\" alt=\"Nuevo Samsung Galaxy Y S5360, Wifi, 3g, Android, Microsd 4gb\" /></a>\n                 \t<div class=\"infoCarousel\">\n\t                 \t<p><a rel=\"nofollow\" id=\"GAL:01:TTL:MLM405095851\" href=\"http://articulo.mercadolibre.com.mx/MLM-405095851-nuevo-samsung-galaxy-y-s5360-wifi-3g-android-microsd-4gb-_JM\">Nuevo Samsung Galaxy Y S5360, Wifi, 3g, Android, Microsd 4gb</a></p>\n\t                 \t<p class='price'>$ 1,999<sup>00</sup></p>\n                 \t</div>\n                 </li>\n                \n                 <li id=\"featuredItem2\" class=\"article\">\n                 \t<a rel=\"nofollow\" class=\"featured\" id=\"GAL:02:IMG:MLM406337728\" href=\"http://articulo.mercadolibre.com.mx/MLM-406337728-colcha-matrimonial-_JM\"><img src=\"http://img2.mlstatic.com/s_MLM_v_I_f_75723633_7314.jpg\" orig=\"http://img2.mlstatic.com/s_MLM_v_I_f_75723633_7314.jpg\" width=\"90\" height=\"90\" alt=\"Colcha Matrimonial\" /></a>\n                 \t<div class=\"infoCarousel\">\n\t                 \t<p><a rel=\"nofollow\" id=\"GAL:02:TTL:MLM406337728\" href=\"http://articulo.mercadolibre.com.mx/MLM-406337728-colcha-matrimonial-_JM\">Colcha Matrimonial</a></p>\n\t                 \t<p class='price'>$ 659<sup>00</sup></p>\n                 \t</div>\n                 </li>\n                \n                 <li id=\"featuredItem3\" class=\"article\">\n                 \t<a rel=\"nofollow\" class=\"featured\" id=\"GAL:03:IMG:MLM404713677\" href=\"http://articulo.mercadolibre.com.mx/MLM-404713677-pantalla-ipad-2-touch-screen-cristal-ipad-digitalizador-_JM\"><img src=\"http://img1.mlstatic.com/s_MLM_v_I_f_78592175_8286.jpg\" orig=\"http://img1.mlstatic.com/s_MLM_v_I_f_78592175_8286.jpg\" width=\"90\" height=\"90\" alt=\"Pantalla Ipad 2 Touch Screen Cristal Ipad Digitalizador\" /></a>\n                 \t<div class=\"infoCarousel\">\n\t                 \t<p><a rel=\"nofollow\" id=\"GAL:03:TTL:MLM404713677\" href=\"http://articulo.mercadolibre.com.mx/MLM-404713677-pantalla-ipad-2-touch-screen-cristal-ipad-digitalizador-_JM\">Pantalla Ipad 2 Touch Screen Cristal Ipad Digitalizador</a></p>\n\t                 \t<p class='price'>$ 1,040<sup>00</sup></p>\n                 \t</div>\n                 </li>\n                \n              </ul>\n          </div>\n</div>\n<!-- feat rt = 2 -->\n\n\t\t\t\t    \t</div>\n\t                \n\t                \n\t\t\t\t\t\t<div class=\"box auctionItems\">\n\t\t                \t\n<h2 class=\"typo vermas\">Subastas desde $ 1</h2><p class=\"vermas\"><a id=\"AUCT_LINKALL\" href=\"http://listado.mercadolibre.com.mx/_DisplayType_G_OrderId_AUCTION*STOP_AuctTypeID_AUC_FilterId_UN*PESO\">Ver m&aacute;s</a></p>\n<div class=\"auctionItemsList carouselFull auction\">\n    <div class=\"ch-carousel-container\" name=\"maskFeatured\">\n    <ul class=\"carousel\">\n        \n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:1:IMG:MLM84633726\" href=\"http://articulo.mercadolibre.com.mx/MLM-84633726-pluma-rollerball-montblanc-starwalker-mont-blanc-css-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img1.mlstatic.com/s_MLM_v_R_f_2998259661_082012.jpg\" title=\"Pluma Rollerball Montblanc Starwalker Mont Blanc Css <p class='price'>$ 240<sup>00</sup></p>\" alt=\"Pluma Rollerball Montblanc Starwalker Mont Blanc Css\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:2:IMG:MLM84716477\" href=\"http://articulo.mercadolibre.com.mx/MLM-84716477-lote-de-4-pares-de-aretes-con-piedras-subasta-1-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img2.mlstatic.com/s_MLM_v_R_f_3020289405_082012.jpg\" title=\"Lote De 4 Pares De Aretes Con Piedras / Subasta $1 <p class='price'>$ 35<sup>00</sup></p>\" alt=\"Lote De 4 Pares De Aretes Con Piedras / Subasta $1\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:3:IMG:MLM84716480\" href=\"http://articulo.mercadolibre.com.mx/MLM-84716480-pulsera-de-moda-con-perlas-subasta-1-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img1.mlstatic.com/s_MLM_v_R_f_3020289695_082012.jpg\" title=\"Pulsera De Moda Con Perlas / Subasta $1 <p class='price'>$ 35<sup>00</sup></p>\" alt=\"Pulsera De Moda Con Perlas / Subasta $1\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:4:IMG:MLM84716486\" href=\"http://articulo.mercadolibre.com.mx/MLM-84716486-anillo-de-moda-con-turquesa-y-perla-subasta-1-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img2.mlstatic.com/s_MLM_v_R_f_2998201666_082012.jpg\" title=\"Anillo De Moda Con Turquesa Y Perla / Subasta $1 <p class='price'>$ 30<sup>00</sup></p>\" alt=\"Anillo De Moda Con Turquesa Y Perla / Subasta $1\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:5:IMG:MLM84391066\" href=\"http://articulo.mercadolibre.com.mx/MLM-84391066-subasta-desde-1-peso-lote-de-5-hebillas-nuevas-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img1.mlstatic.com/s_MLM_v_R_f_2614897053_042012.jpg\" title=\"Subasta Desde 1 Peso Lote De 5 Hebillas Nuevas! <p class='price'>$ 15<sup>00</sup></p>\" alt=\"Subasta Desde 1 Peso Lote De 5 Hebillas Nuevas!\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:6:IMG:MLM84716516\" href=\"http://articulo.mercadolibre.com.mx/MLM-84716516-pulsera-de-moda-con-piel-y-perlas-subasta-1-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img2.mlstatic.com/s_MLM_v_R_f_2904604161_072012.jpg\" title=\"Pulsera De Moda Con Piel Y Perlas / Subasta $1 <p class='price'>$ 65<sup>00</sup></p>\" alt=\"Pulsera De Moda Con Piel Y Perlas / Subasta $1\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:7:IMG:MLM84716521\" href=\"http://articulo.mercadolibre.com.mx/MLM-84716521-juego-de-pulsera-y-aretes-con-perlas-subasta-1-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img1.mlstatic.com/s_MLM_v_R_f_3020304388_082012.jpg\" title=\"Juego De Pulsera Y Aretes Con Perlas / Subasta $1 <p class='price'>$ 20<sup>00</sup></p>\" alt=\"Juego De Pulsera Y Aretes Con Perlas / Subasta $1\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:8:IMG:MLM84715297\" href=\"http://articulo.mercadolibre.com.mx/MLM-84715297-hot-wheels-ford-vs-vw-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img2.mlstatic.com/s_MLM_v_R_f_3020196304_082012.jpg\" title=\"Hot Wheels Ford V.s. Vw <p class='price'>$ 35<sup>00</sup></p>\" alt=\"Hot Wheels Ford V.s. Vw\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:9:IMG:MLM84715405\" href=\"http://articulo.mercadolibre.com.mx/MLM-84715405-hot-wheels-ferrari-gto-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img1.mlstatic.com/s_MLM_v_R_f_3020194907_082012.jpg\" title=\"Hot Wheels Ferrari Gto <p class='price'>$ 80<sup>00</sup></p>\" alt=\"Hot Wheels Ferrari Gto\">\n        \t</a>\n        </li>\n\t\t\n        <li>\n        \t<a rel=\"nofollow\" id=\"AUCT:10:IMG:MLM84716525\" href=\"http://articulo.mercadolibre.com.mx/MLM-84716525-anillo-alianza-con-chapa-oro-y-zirconia-subasta-1-_JM\">\n        \t\t<img class=\"ttip\" width=\"40\" height=\"40\" src=\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\" orig=\"http://img2.mlstatic.com/s_MLM_v_R_f_2687777952_052012.jpg\" title=\"Anillo Alianza Con Chapa Oro Y Zirconia / Subasta $1 <p class='price'>$ 110<sup>00</sup></p>\" alt=\"Anillo Alianza Con Chapa Oro Y Zirconia / Subasta $1\">\n        \t</a>\n        </li>\n\t\t\n\t</ul>\n\t</div>\n</div>\n\n\n\t\t                </div>\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t    <ul class=\"hotList middle\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t<li class=\"margin\"><a href=\"http://tendencias.mercadolibre.com.mx/\" id=\"IMP:TENDENCIAS\">Los m&aacute;s buscados</a></li>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<li><a href=\"http://listado.mercadolibre.com.mx/_DisplayType_G_FilterId_MAS*VND\" id=\"IMP:MASVEND\">Los m&aacute;s vendidos</a></li>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t    </ul>\n                </div>\n               \n                \n                \n\t\t\t\t\n\t\t\t\t\n\t\t\t    \n\t\t\t\t<script type=\"text/javascript\">\n\t\t\t\t\tfunction getElementsByName_iefix(a,b){var c=document.getElementsByTagName(a);var d=new Array;for(i=0,iarr=0;i<c.length;i++){att=c[i].getAttribute(\"name\");if(att==b){d[iarr]=c[i];iarr++}}return d}\n\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\tvar winW=630;if(document.body&&document.body.offsetWidth){winW=document.body.offsetWidth}if(document.compatMode==\"CSS1Compat\"&&document.documentElement&&document.documentElement.offsetWidth){winW=document.documentElement.offsetWidth}if(window.innerWidth){winW=window.innerWidth}var isIE=navigator.appName==\"Microsoft Internet Explorer\";if(isIE){var maskMin=getElementsByName_iefix(\"div\",\"maskMin\");var maskMedium=getElementsByName_iefix(\"div\",\"maskMedium\");var maskFull=getElementsByName_iefix(\"div\",\"maskFull\");var maskFeatured=getElementsByName_iefix(\"div\",\"maskFeatured\")}else{var maskMin=document.getElementsByName(\"maskMin\");var maskMedium=document.getElementsByName(\"maskMedium\");var maskFull=document.getElementsByName(\"maskFull\");var maskFeatured=document.getElementsByName(\"maskFeatured\")}if(winW<1200){for(i=0;i<maskFeatured.length;i++){maskFeatured[0].style.width=\"592px\"}for(i=0;i<maskFull.length;i++){maskFull[i].style.width=\"576px\"}for(i=0;i<maskMedium.length;i++){maskMedium[i].style.width=\"384px\"}for(i=0;i<maskMin.length;i++){maskMin[i].style.width=\"132px\"}}\n\n\t\t\t\t\t\t/*else{if(winW<=1150){for(i=0;i<maskFeatured.length;i++){maskFeatured[0].style.width=\"400px\"}for(i=0;i<maskFull.length;i++){maskFull[i].style.width=\"396px\"}for(i=0;i<maskMedium.length;i++){maskMedium[i].style.width=\"132px\";};for(i=0;i<maskMin.length;i++){maskMin[i].style.width=\"132px\"}}}*/\n\t\t\t\t\t\n\n\n\t\t\t\t\t</script>\n\t\t    \t</div>\n\t\t    \t\n\t\t\t<div class=\"aside\" id=\"aside\">\t\t\t\t\n\t\t\t\t<script>\n                //FBLIKE\n                if(nickname == null || nickname == 0) {\n\t\t\t\t\tdocument.write('<div id=\"fbfaces\"></div>')\n\t\t\t\t}\n\t\t\t\tvar regUri\n\t\t\t\t\n\t\t\t\t\tvar regModal = true;\n\t\t\t\t\tregUri = \"https://registration.mercadolibre.com.mx/\"\n\t\t\t\t\n\t\t\t\tif(nickname==null||nickname==0){if(regModal){var regHtml='<div class=\"box regForm\"><h2 class=\"typo\">Inscr&iacute;bete</h2><form id=\"form\" action=\"'+regUri+'registration\" method=\"post\"><fieldset><ol><li class=\"fieldBox\"><label for=\"signupName\"><span class=\"field-label\">Nombre:</span><input type=\"text\" id=\"signupName\" name=\"signUp.firstName\" size=\"25\" tabindex=\"3\"/></label></li><li class=\"fieldBox\"><label for=\"signupLastName\"><span class=\"field-label\">Apellido:</span><input type=\"text\" id=\"signupLastName\" name=\"signUp.lastName\" size=\"25\" tabindex=\"4\"/></label></li><li class=\"fieldBox\"><label for=\"signupEmail\"><span class=\"field-label\">E-mail:</span><input type=\"text\" id=\"signupEmail\" name=\"signUp.email\" size=\"35\" tabindex=\"5\"/></label></li></ol></fieldset><p class=\"actions\"> <input id=\"RIGHT:REG_BTN\" type=\"submit\" class=\"btn secondary\" value=\"Inscr&iacute;bete\" tabindex=\"6\" /> <span><a href=\"http://www.mercadolibre.com.mx/jm/login?url=\" >Ya soy usuario</a></span></p></form></div>'}else{var regHtml='<div class=\"box regForm\"><h2 class=\"typo\">&iquest;Nuevo en MercadoLibre?</h2><div style=\"padding:5px 0; text-align:center;\"><p><a rel=\"nofollow\" id=\"RIGHT:REG_BTN\" class=\"btn secondary registracion\" href=\"http://www.mercadolibre.com.mx/jm/reg\">Inscr&iacute;bete</a> <a href=\"http://www.mercadolibre.com.mx/jm/login?url=\">Ya soy usuario</a></div></div>'}document.write(regHtml)};\n\t\t\t\tfunction getSubdomain(){var dom = \"\" + window.location.host;var pos = dom.indexOf(\"mercadoli\");if (pos != -1) {dom = dom.substring(pos);}return dom;}\n\t\t\t\tfunction setCookie(cookieName, cookieValue, nDays, path) {var subdomain = getSubdomain();if (path == null) {path = \"/\";}if (nDays != null) {today = new Date();expire = new Date();if (nDays == null || nDays == 0) {nDays = 1;}expire.setTime(today.getTime() + 3600000 * 24 * nDays);document.cookie = cookieName + \"=\" + cookieValue + \";path=\" + path + \";domain=.\" + subdomain + \";expires=\" + expire.toGMTString();} else {document.cookie = cookieName + \"=\" + cookieValue + \";path=\" + path + \";domain=.\" + subdomain;}}\n\t\t\t\tfunction borrarHistorial(a){var b=document.getElementById(\"activityComponent\");var c=document.getElementById(\"pms\");var d=document.getElementById(\"questionsTrigger\");var e=document.getElementById(\"answersTrigger\");var a=document.getElementById(\"widgetQuesContainer\");if(d!=null){d.style.borderBottomWidth=\"0\";c.style.display=\"none\"}else{if(e!=null){e.style.borderBottomWidth=\"0\";c.style.display=\"none\"}else{b.style.display=\"none\"}}setCookie(\"pmsctx\",\"\",-10,\"/\")}\n                titleBusq = \"&Uacute;ltimas b&uacute;squedas\";\n                var baseSite=\"http://www.mercadolibre.com.mx/\";\n                var zeroItemsMarkedText = \"<p>Marca con <span class=\\\"ico fav-on\\\"></span> tus productos favoritos.</p><p>Podrs seguirlos desde ac.</p>\",\n                moreRecentText=\"Anterior\",\n                morePrevText=\"Siguiente\",\n                errorBookmarksText=\"No pudimos cargar tus favoritos. Int&eacute;ntalo m&aacute;s tarde.\",\n                ofPaginatorText=\"de\",\n                loginText=\"Ingresar\",\n                loginPromptText0=\"Ingresa a tu cuenta para marcarlo como favorito.\",\n                logOutText=\"Salir\",\n                wellcomeNickText= \"Hola\",\n                contigency = \"<p class=\\\"contingencia\\\"> <span class=\\\"ico attention\\\">Atencin: </span> No pudimos cargar la informacin. En unos minutos podrs verla.</p>\",\n                txtBookmarkAdd= \"Agregar a favoritos\",\n                txtNaNPrice= \"Precio a convenir\",\n                txtBookmarkRemove= \"Quitar de favoritos\",\n                valThousandsSeparator = \",\" ,\n                langLog = \"es\";\n\n                if (langLog!='es'&&langLog!='pt' ){\n                  langLog='es';\n                }\n\n                var urlsFBSocial=\"articulo.mercadolibre.com.mx,camioneta.mercadolibre.com.mx,casa.mercadolibre.com.mx,departamento.mercadolibre.com.mx,fiesta-evento.mercadolibre.com.mx,profesional.mercadolibre.com.mx,reparacion-mantenimiento.mercadolibre.com.mx,terreno.mercadolibre.com.mx,vehiculo.mercadolibre.com.mx,auto.mercadolibre.com.mx,moto.mercadolibre.com.mx,inmueble.mercadolibre.com.mx,servicio.mercadolibre.com.mx\";\n                var fbAppId = \"406371349388923\";\n                var fbAction = \"meli-mx%3Asee\";;\n\n                </script>\n                \n\n\t\t\t\t\n\t\t\t\t<div class=\"box socialMedia\">\n\t\t\t\t\t<h2 class=\"typo icon facebook\">Actividad social</h2>\n                    \n  \n  <h3>Los m&aacute;s compartidos</h3>\n  <div class=\"sharedItemsList\">\n      <ul>\n       \n         <li>\n\t\t\t<a class=\"img\" rel=\"nofollow\" id=\"SHAREDFB:1:IMG:MLM405095832\" href=\"http://articulo.mercadolibre.com.mx/MLM-405095832-hercules-mx-4-consola-pro-dj-mezcladora-digital-virtual-_JM?fb_ref=see_listing\"\">\n         \t\t<img width=\"40\" height=\"40\" src=\"http://img1.mlstatic.com/s_MLM_v_M_f_54682928_32.jpg\" alt=\"Hercules Mx 4  Consola Pro Dj Mezcladora Digital Virtual\" />\n         \t</a>\n         \t<div class=\"contentShared\">\n\t\t\t\t<a rel=\"nofollow\" id=\"SHAREDFB:1:TTL:MLM405095832\" href=\"http://articulo.mercadolibre.com.mx/MLM-405095832-hercules-mx-4-consola-pro-dj-mezcladora-digital-virtual-_JM?fb_ref=see_listing\"\">Hercules Mx 4  Consola Pro Dj Mezcladora Digital Virtual <span>$ 6,950.00</span></a>\n         \t</div>\n         </li>\n  \t\t\n         <li>\n\t\t\t<a class=\"img\" rel=\"nofollow\" id=\"SHAREDFB:2:IMG:MLM405261825\" href=\"http://articulo.mercadolibre.com.mx/MLM-405261825-neko-mimi-orejas-de-gato-sensores-cerebral-kawaii-japan-_JM?fb_ref=see_listing\"\">\n         \t\t<img width=\"40\" height=\"40\" src=\"http://img2.mlstatic.com/s_MLM_v_M_f_2766918326_062012.jpg\" alt=\"Neko Mimi Orejas De Gato Sensores Cerebral Kawaii Japan\" />\n         \t</a>\n         \t<div class=\"contentShared\">\n\t\t\t\t<a rel=\"nofollow\" id=\"SHAREDFB:2:TTL:MLM405261825\" href=\"http://articulo.mercadolibre.com.mx/MLM-405261825-neko-mimi-orejas-de-gato-sensores-cerebral-kawaii-japan-_JM?fb_ref=see_listing\"\">Neko Mimi Orejas De Gato Sensores Cerebral Kawaii Japan <span>$ 2,090.00</span></a>\n         \t</div>\n         </li>\n  \t\t\n         <li>\n\t\t\t<a class=\"img\" rel=\"nofollow\" id=\"SHAREDFB:3:IMG:MLM83007578\" href=\"http://articulo.mercadolibre.com.mx/MLM-83007578-plicometro-slim-guide-negro-_JM?fb_ref=see_listing\"\">\n         \t\t<img width=\"40\" height=\"40\" src=\"http://img1.mlstatic.com/s_MLM_v_M_f_2831333349_062012.jpg\" alt=\"Plicometro Slim Guide Negro\" />\n         \t</a>\n         \t<div class=\"contentShared\">\n\t\t\t\t<a rel=\"nofollow\" id=\"SHAREDFB:3:TTL:MLM83007578\" href=\"http://articulo.mercadolibre.com.mx/MLM-83007578-plicometro-slim-guide-negro-_JM?fb_ref=see_listing\"\">Plicometro Slim Guide Negro <span>$ 439.00</span></a>\n         \t</div>\n         </li>\n  \t\t\n         <li>\n\t\t\t<a class=\"img\" rel=\"nofollow\" id=\"SHAREDFB:4:IMG:MLM406448680\" href=\"http://articulo.mercadolibre.com.mx/MLM-406448680-martillo-de-thor-mjolnir-vikingo-personalizalo-inox-medieval-_JM?fb_ref=see_listing\"\">\n         \t\t<img width=\"40\" height=\"40\" src=\"http://img2.mlstatic.com/s_MLM_v_M_f_77364463_9658.jpg\" alt=\"Martillo De Thor Mjolnir Vikingo Personalizalo Inox Medieval\" />\n         \t</a>\n         \t<div class=\"contentShared\">\n\t\t\t\t<a rel=\"nofollow\" id=\"SHAREDFB:4:TTL:MLM406448680\" href=\"http://articulo.mercadolibre.com.mx/MLM-406448680-martillo-de-thor-mjolnir-vikingo-personalizalo-inox-medieval-_JM?fb_ref=see_listing\"\">Martillo De Thor Mjolnir Vikingo Personalizalo Inox Medieval <span>$ 150.00</span></a>\n         \t</div>\n         </li>\n  \t\t\n         <li>\n\t\t\t<a class=\"img\" rel=\"nofollow\" id=\"SHAREDFB:5:IMG:MLM405676878\" href=\"http://articulo.mercadolibre.com.mx/MLM-405676878-alesis-multimix-usb-4-canales-consola-mezcladora-phantom-crz-_JM?fb_ref=see_listing\"\">\n         \t\t<img width=\"40\" height=\"40\" src=\"http://img1.mlstatic.com/s_MLM_v_M_f_58178946_2082.jpg\" alt=\"Alesis Multimix Usb 4 Canales Consola Mezcladora Phantom Crz\" />\n         \t</a>\n         \t<div class=\"contentShared\">\n\t\t\t\t<a rel=\"nofollow\" id=\"SHAREDFB:5:TTL:MLM405676878\" href=\"http://articulo.mercadolibre.com.mx/MLM-405676878-alesis-multimix-usb-4-canales-consola-mezcladora-phantom-crz-_JM?fb_ref=see_listing\"\">Alesis Multimix Usb 4 Canales Consola Mezcladora Phantom Crz <span>$ 1,499.00</span></a>\n         \t</div>\n         </li>\n  \t\t\n      </ul>\n  </div>\n  \n  <h3>Lo que compartieron tus amigos</h3>\n  <div id=\"contentLoading\">\n\t  <img class=\"loading\" src=\"http://static.mlstatic.com/org-img/ch/ui/0.10.4/assets/loading.gif\" width=\"44\" height=\"44\" alt=\"loading\" />\n\t  <div class=\"maskIframeFb\" id=\"fbSocialAct\"></div>\n      <ul class=\"contentMoreLess\">\n        <li id=\"masFB\"><a href=\"javascript:void(0)\">Ver m&aacute;s</a></li>\n        <li id=\"menosFB\" class=\"ch-hide\"><a href=\"javascript:void(0)\">Ver menos</a></li>\n        <li><a id=\"fbLanding\" href=\"http://social.mercadolibre.com.mx/tutorial/\" target=\"_blank\">&iquest;C&oacute;mo funciona?</a></li>\n      </ul>\n  </div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\n\t\t\t\t<div id=\"containerFb\"></div>\n\n\t\t\t\t\n\t\t\t\t<div id=\"special\">\n\t\t\t\t\t<h2 class=\"typo\">Publicidad</h2>\n\t\t\t\t\t<a id='NH:MLM_ADS_NH_0812_PNL3:IMG' rel=\"nofollow\" rel=\"nofollow\" rel=\"nofollow\" href=\"http://oas.adservingml.com/RealMedia/ads/click_lx.ads/DR_ARGENTINA/LST/5726/9302/1980219524/x95/mercadolibre/MLM_1208_nokia_merch_hp_lumia_3/vacio.gif/41\"> \r\n\t<img src=\"http://static.mlstatic.com/org-img/advertising/nokia/MLM_1208_nokia_merch_hp_lumia_3.jpg\" width=\"100\" height=\"100\" border=\"0\" />                \r\n</a>\r\n<p class=\"linkSpecial\" style=\"margin-top:15px;\">\r\n\t<strong style=\"font-size:14px;\">Nuevo Nokia Lumia 900</strong><br />\r\n\t<a id='NH:MLM_ADS_NH_0812_PNL3:TIT' rel=\"nofollow\" rel=\"nofollow\" rel=\"nofollow\" href=\"http://oas.adservingml.com/RealMedia/ads/click_lx.ads/DR_ARGENTINA/LST/5726/9302/1980219524/x95/mercadolibre/MLM_1208_nokia_merch_hp_lumia_3/vacio.gif/41\">Enva Mails, chatea y Navega. Adquirelo Ahora!</a>\r\n</p>\r\n<div class=\"clearfix\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t</div>\n\t\t</div>\n\n\t\t\n<hr class=\"o\">\n<div class=\"footer mainFooter\">\n    <ul>\n<li><a href=\"http://www.mercadolibre.com.mx/mexico/ml/org_theme.p_main?as_theme_id=NEW_SOBRE_ML\" id=\"FOOT:SOBREML\">Sobre MercadoLibre</a> | </li>\n      <li><a href=\"http://www.mercadolibre.com.mx/jm/ml.faqs.framework.main.FaqsController?pageId=CATEG&categId=SEG\" id=\"FOOT:SEGUR\">Centro de Seguridad</a> | </li>\n      <li><a href=\"http://www.mercadolibre.com.mx/jm/ml.faqs.framework.main.FaqsController?pageId=FAQ&faqId=2732&categId=SEGPC&type=FAQ\" id=\"FOOT:BPP\">Protecci&oacute;n al Comprador</a> | </li>\n      <li><a href=\"http://pmsapp.mercadolibre.com.mx/jm/pms\" id=\"FOOT:PMS\">Programa de Afiliados</a> | </li>\n      <li><a href=\"http://www.mercadolibre.com.mx/sitemap.html\" id=\"FOOT:MAPSITE\">Mapa del Sitio</a> | </li>\n      <li><a href=\"http://investor.mercadolibre.com\" id=\"FOOT:INVESTOR\">Investor Relations</a> | </li>\n      <li><a href=\"http://www.mercadolibre.com\" id=\"FOOT:OTHERSITE\">Ver otros pases</a></li>\n      \n    </ul>\n\n    \n    <ul>\n        <li>Sitios de MercadoLibre:</li>\n   \n        \n   \n        \n          <li><a href=\"http://www.mercadopago.com/mp-mexico/\" id=\"FOOT:MERCADOPAGO\">MercadoPago</a></li>\n          |\n        \n   \n        \n          <li><a href=\"https://mercadoclics.mercadolibre.com.mx/main\" id=\"FOOT:MERCADOCLICS\">MercadoClics</a></li>\n          \n        \n   \n    </ul>\n    \n    <hr>\n    <p>El uso de este sitio web implica la aceptacin de los <a href=\"http://www.mercadolibre.com.mx/seguro_terminos.html\" id=\"FOOT:TERMS\">Trminos y Condiciones</a> y del <a href=\"http://www.mercadolibre.com.mx/seguro_privacidad.html\" id=\"FOOT:POLITICAS\">Aviso de Privacidad</a> de DeRemate.com de Mxico S.A. de C.V.</p>\n    <p>Copyright &copy; 1999-2012 de DeRemate.com de Mxico S.A. de C.V.</p>\n\n</div>\n\n\n\n\n\t\t<script type=\"text/javascript\">\n         \nvar hotItemsComponentHtml = \"\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:5:MLM404729705\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404729705-pluma-metalica-5-en-1-con-apuntador-laser-luz-led-mmy-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_70247825_6713.jpg\\\" alt=\\\"Pluma Metalica 5 En 1 Con Apuntador Laser , Luz  Led Mmy\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:5:TTL:MLM404729705\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404729705-pluma-metalica-5-en-1-con-apuntador-laser-luz-led-mmy-_JM\\\" title=\\\"Pluma Metalica 5 En 1 Con Apuntador Laser , Luz  Led Mmy\\\">Pluma Metalica 5 En 1 Con Apunt...</a></p><p class='price'>$ 80<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:6:MLM406088535\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406088535-hookah-shisha-mini-de-17cm-1-manguera-paq-de-8-carbones-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_71914236_9971.jpg\\\" alt=\\\"Hookah Shisha Mini De 17cm 1 Manguera + Paq. De 8 Carbones.\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:6:TTL:MLM406088535\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406088535-hookah-shisha-mini-de-17cm-1-manguera-paq-de-8-carbones-_JM\\\" title=\\\"Hookah Shisha Mini De 17cm 1 Manguera + Paq. De 8 Carbones.\\\">Hookah Shisha Mini De 17cm 1 Ma...</a></p><p class='price'>$ 180<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:7:MLM404919152\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404919152-celulares-baratos-tablet-smartphone-7-pul-3g-wifi-touch-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_79144610_6643.jpg\\\" alt=\\\"Celulares Baratos Tablet Smartphone 7 Pul 3g Wifi Touch\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:7:TTL:MLM404919152\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404919152-celulares-baratos-tablet-smartphone-7-pul-3g-wifi-touch-_JM\\\" title=\\\"Celulares Baratos Tablet Smartphone 7 Pul 3g Wifi Touch\\\">Celulares Baratos Tablet Smartp...</a></p><p class='price'>$ 1,249<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:8:MLM405926371\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405926371-minicuatrimoto-motorizada-operada-con-bateria-recargable-6v-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_72957230_6566.jpg\\\" alt=\\\"Minicuatrimoto Motorizada Operada Con Batera Recargable 6v\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:8:TTL:MLM405926371\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405926371-minicuatrimoto-motorizada-operada-con-bateria-recargable-6v-_JM\\\" title=\\\"Minicuatrimoto Motorizada Operada Con Batera Recargable 6v\\\">Minicuatrimoto Motorizada Opera...</a></p><p class='price'>$ 1,099<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:9:MLM406560071\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406560071-pistola-electrica-paint-novedoso-sistema-para-pintar-en-zoom-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_73529428_6285.jpg\\\" alt=\\\"Pistola Electrica Paint Novedoso Sistema Para Pintar En Zoom\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:9:TTL:MLM406560071\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406560071-pistola-electrica-paint-novedoso-sistema-para-pintar-en-zoom-_JM\\\" title=\\\"Pistola Electrica Paint Novedoso Sistema Para Pintar En Zoom\\\">Pistola Electrica Paint Novedos...</a></p><p class='price'>$ 349<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:10:MLM405136275\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405136275-herbalife-descuento-maximo-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_2896618925_072012.jpg\\\" alt=\\\"Herbalife Descuento Maximo\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:10:TTL:MLM405136275\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405136275-herbalife-descuento-maximo-_JM\\\" title=\\\"Herbalife Descuento Maximo\\\">Herbalife Descuento Maximo</a></p><p class='price'>$ 200<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:11:MLM404635165\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404635165-cartera-aluma-wallet-de-aluminio-para-hombre-y-mujer-unisex-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2719983329_052012.jpg\\\" alt=\\\"Cartera Aluma Wallet De Aluminio Para Hombre Y Mujer Unisex\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:11:TTL:MLM404635165\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404635165-cartera-aluma-wallet-de-aluminio-para-hombre-y-mujer-unisex-_JM\\\" title=\\\"Cartera Aluma Wallet De Aluminio Para Hombre Y Mujer Unisex\\\">Cartera Aluma Wallet De Alumini...</a></p><p class='price'>$ 149<sup>90</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:12:MLM405916075\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405916075-comtech-stinger-lo-mejor-en-defensa-personal-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_50253758_3188.jpg\\\" alt=\\\"Comtech Stinger - Lo Mejor En Defensa Personal\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:12:TTL:MLM405916075\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405916075-comtech-stinger-lo-mejor-en-defensa-personal-_JM\\\" title=\\\"Comtech Stinger - Lo Mejor En Defensa Personal\\\">Comtech Stinger - Lo Mejor En D...</a></p><p class='price'>$ 149<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:13:MLM406372210\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406372210-cubreasientos-para-corolla-beetle-tacoma-a-la-medida-exacto-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_62023388_2861.jpg\\\" alt=\\\"Cubreasientos Para Corolla, Beetle Tacoma A La Medida Exacto\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:13:TTL:MLM406372210\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406372210-cubreasientos-para-corolla-beetle-tacoma-a-la-medida-exacto-_JM\\\" title=\\\"Cubreasientos Para Corolla, Beetle Tacoma A La Medida Exacto\\\">Cubreasientos Para Corolla, Bee...</a></p><p class='price'>$ 1,599<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:14:MLM406154861\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406154861-celular-hiphone-4s-2012-wifi-tv-dual-sim-mp4-envio-gratis-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_2991601740_082012.jpg\\\" alt=\\\"Celular Hiphone 4s 2012 Wifi Tv Dual Sim Mp4 Envio Gratis\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:14:TTL:MLM406154861\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406154861-celular-hiphone-4s-2012-wifi-tv-dual-sim-mp4-envio-gratis-_JM\\\" title=\\\"Celular Hiphone 4s 2012 Wifi Tv Dual Sim Mp4 Envio Gratis\\\">Celular Hiphone 4s 2012 Wifi Tv...</a></p><p class='price'>$ 890<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:15:MLM84668539\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84668539-traje-original-hpc-polo-collection-slim-fit-satinado-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_3014504295_082012.jpg\\\" alt=\\\"Traje Original Hpc Polo Collection Slim Fit Satinado\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:15:TTL:MLM84668539\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84668539-traje-original-hpc-polo-collection-slim-fit-satinado-_JM\\\" title=\\\"Traje Original Hpc Polo Collection Slim Fit Satinado\\\">Traje Original Hpc Polo Collect...</a></p><p class='price'>$ 1,400<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:16:MLM406073442\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406073442-mezcladora-amplificada-de-4-canales-usb-mp3-rockolas-karaoke-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_2612357621_042012.jpg\\\" alt=\\\"Mezcladora Amplificada De 4 Canales Usb Mp3 Rockolas Karaoke\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:16:TTL:MLM406073442\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406073442-mezcladora-amplificada-de-4-canales-usb-mp3-rockolas-karaoke-_JM\\\" title=\\\"Mezcladora Amplificada De 4 Canales Usb Mp3 Rockolas Karaoke\\\">Mezcladora Amplificada De 4 Can...</a></p><p class='price'>$ 1,590<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:17:MLM406008435\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406008435-led-moon-flower-antrolite-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_74750086_3594.jpg\\\" alt=\\\"Led Moon Flower Antrolite\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:17:TTL:MLM406008435\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406008435-led-moon-flower-antrolite-_JM\\\" title=\\\"Led Moon Flower Antrolite\\\">Led Moon Flower Antrolite</a></p><p class='price'>$ 400<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:18:MLM406188337\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406188337-cargador-original-hp-compaq-pavillion-dv2000-dv6000-v3000--_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_30798237_9466.jpg\\\" alt=\\\"Cargador Original Hp, Compaq Pavillion Dv2000 Dv6000 V3000 !\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:18:TTL:MLM406188337\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406188337-cargador-original-hp-compaq-pavillion-dv2000-dv6000-v3000--_JM\\\" title=\\\"Cargador Original Hp, Compaq Pavillion Dv2000 Dv6000 V3000 !\\\">Cargador Original Hp, Compaq Pa...</a></p><p class='price'>$ 249<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:19:MLM406193005\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406193005-bateria-extendida-pila-wildfire-s-pg76100-a510e-marvel-dvn-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2777655374_062012.jpg\\\" alt=\\\"Bateria Extendida Pila Wildfire S Pg76100, A510e, Marvel Dvn\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:19:TTL:MLM406193005\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406193005-bateria-extendida-pila-wildfire-s-pg76100-a510e-marvel-dvn-_JM\\\" title=\\\"Bateria Extendida Pila Wildfire S Pg76100, A510e, Marvel Dvn\\\">Bateria Extendida Pila Wildfire...</a></p><p class='price'>$ 399<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:20:MLM405761024\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405761024-guias-prepagadas-estafeta-1-kg-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_2877470488_072012.jpg\\\" alt=\\\"Guias Prepagadas Estafeta 1 Kg\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:20:TTL:MLM405761024\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405761024-guias-prepagadas-estafeta-1-kg-_JM\\\" title=\\\"Guias Prepagadas Estafeta 1 Kg\\\">Guias Prepagadas Estafeta 1 Kg</a></p><p class='price'>$ 110<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:21:MLM84564149\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84564149-pointer-bases-para-manija-de-metal-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2564572795_042012.jpg\\\" alt=\\\"Pointer Bases Para Manija De Metal\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:21:TTL:MLM84564149\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84564149-pointer-bases-para-manija-de-metal-_JM\\\" title=\\\"Pointer Bases Para Manija De Metal\\\">Pointer Bases Para Manija De Me...</a></p><p class='price'>$ 120<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:22:MLM84062966\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84062966-proyector-portatil-tecnologia-led-dvd-xbox-usb-sd-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_79979800_5658.jpg\\\" alt=\\\"Proyector Portatil Tecnologia Led Dvd Xbox Usb Sd\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:22:TTL:MLM84062966\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84062966-proyector-portatil-tecnologia-led-dvd-xbox-usb-sd-_JM\\\" title=\\\"Proyector Portatil Tecnologia Led Dvd Xbox Usb Sd\\\">Proyector Portatil Tecnologia L...</a></p><p class='price'>$ 1,799<sup>00</sup></p></li>\";hotItemsComponentHtml = hotItemsComponentHtml + \"<li class=\\\"article\\\"><a rel=\\\"nofollow\\\" class=\\\"hotItem\\\" id=\\\"HOTITM:23:MLM406110405\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406110405-adaptador-cargador-original-laptop-sony-vaio-195v-39a-_JM\\\"><img width=\\\"90\\\" height=\\\"90\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_45448922_281.jpg\\\" alt=\\\"Adaptador Cargador Original Laptop Sony Vaio 19.5v 3.9a\\\" /></a><p><a rel=\\\"nofollow\\\" id=\\\"HOTITM:23:TTL:MLM406110405\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-406110405-adaptador-cargador-original-laptop-sony-vaio-195v-39a-_JM\\\" title=\\\"Adaptador Cargador Original Laptop Sony Vaio 19.5v 3.9a\\\">Adaptador Cargador Original Lap...</a></p><p class='price'>$ 299<sup>00</sup></p></li>\";\n\n\n         \nvar featuredItemsComponentHtml = \"\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem4\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:01:IMG:MLM405335844\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405335844-tablet-pc-android-hipad-apad-teclado-gratis-wifi-flash-3g-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_79085930_2830.jpg\\\" alt=\\\"Tablet Pc Android Hipad Apad Teclado Gratis Wifi Flash 3g\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:01:TTL:MLM405335844\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405335844-tablet-pc-android-hipad-apad-teclado-gratis-wifi-flash-3g-_JM\\\" \\\">Tablet Pc Android Hipad Apad Teclado Gratis Wifi Flash 3g</a></p><p class='price'>$ 1,390<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem5\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:02:IMG:MLM405202528\\\" href=\\\"http://auto.mercadolibre.com.mx/MLM-405202528-chevrolet-astra-comfort-2001-18-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_75764852_9370.jpg\\\" alt=\\\"Chevrolet Astra Comfort 2001 1.8\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:02:TTL:MLM405202528\\\" href=\\\"http://auto.mercadolibre.com.mx/MLM-405202528-chevrolet-astra-comfort-2001-18-_JM\\\" \\\">Chevrolet Astra Comfort 2001 1.8</a></p><p class='price'>$ 55,000<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem6\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:03:IMG:MLM406150868\\\" href=\\\"http://vehiculo.mercadolibre.com.mx/MLM-406150868-legalizacionestrasladosimportaciones-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2834589898_062012.jpg\\\" alt=\\\"Legalizaciones,traslados,importaciones\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:03:TTL:MLM406150868\\\" href=\\\"http://vehiculo.mercadolibre.com.mx/MLM-406150868-legalizacionestrasladosimportaciones-_JM\\\" \\\">Legalizaciones,traslados,importaciones</a></p><p class='price'>$ 40,000<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem7\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:04:IMG:MLM84177438\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84177438-grabadora-digital-de-voz-8gb-espia-telefonica-1300-hrs-mp3-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_2960376944_072012.jpg\\\" alt=\\\"Grabadora Digital De Voz 8gb Espia Telefonica 1,300 Hrs Mp3\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:04:TTL:MLM84177438\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84177438-grabadora-digital-de-voz-8gb-espia-telefonica-1300-hrs-mp3-_JM\\\" \\\">Grabadora Digital De Voz 8gb Espia Telefonica 1,300 Hrs Mp3</a></p><p class='price'>$ 850<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem8\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:05:IMG:MLM406068667\\\" href=\\\"http://vehiculo.mercadolibre.com.mx/MLM-406068667-camion-volteo-dina-1992-mexicano-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2983005411_082012.jpg\\\" alt=\\\"Camion Volteo Dina 1992 Mexicano\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:05:TTL:MLM406068667\\\" href=\\\"http://vehiculo.mercadolibre.com.mx/MLM-406068667-camion-volteo-dina-1992-mexicano-_JM\\\" \\\">Camion Volteo Dina 1992 Mexicano</a></p><p class='price'>$ 180,000<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem9\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:06:IMG:MLM82987276\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-82987276-celular-hiphone-4s-2012-wifi-tv-dual-sim-mp4-envio-gratis-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_80036390_7217.jpg\\\" alt=\\\"Celular Hiphone 4s 2012 Wifi Tv Dual Sim Mp4 Envio Gratis\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:06:TTL:MLM82987276\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-82987276-celular-hiphone-4s-2012-wifi-tv-dual-sim-mp4-envio-gratis-_JM\\\" \\\">Celular Hiphone 4s 2012 Wifi Tv Dual Sim Mp4 Envio Gratis</a></p><p class='price'>$ 895<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem10\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:07:IMG:MLM405995990\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405995990-relojes-michael-kors-mayoreo-y-menudeo-mk-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2877270581_072012.jpg\\\" alt=\\\"Relojes Michael Kors ...( Mayoreo Y Menudeo ) Mk\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:07:TTL:MLM405995990\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405995990-relojes-michael-kors-mayoreo-y-menudeo-mk-_JM\\\" \\\">Relojes Michael Kors ...( Mayoreo Y Menudeo ) Mk</a></p><p class='price'>$ 220<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem11\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:08:IMG:MLM404482918\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404482918-tablet-android-40-laptop-4gb-512ram-multitarea-juegos-3d-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_I_f_2608822784_042012.jpg\\\" alt=\\\"Tablet Android 4.0 Laptop 4gb 512ram Multitarea Juegos 3d\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:08:TTL:MLM404482918\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-404482918-tablet-android-40-laptop-4gb-512ram-multitarea-juegos-3d-_JM\\\" \\\">Tablet Android 4.0 Laptop 4gb 512ram Multitarea Juegos 3d</a></p><p class='price'>$ 1,399<sup>00</sup></p></div></li>\";featuredItemsComponentHtml = featuredItemsComponentHtml +  \"<li id=\\\"featuredItem12\\\" class=\\\"article\\\" ><a rel=\\\"nofollow\\\" class=\\\"featured\\\" id=\\\"GAL:09:IMG:MLM81038854\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-81038854-celulares-hiphone-4s-wifi-tv-2-lineas-office-mapas-java-rgl-_JM\\\"><img src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_I_f_2632844926_042012.jpg\\\" alt=\\\"Celulares Hiphone 4s Wifi Tv 2 Lineas Office Mapas Java Rgl\\\" width=\\\"90\\\" height=\\\"90\\\" /></a><div class=\\\"infoCarousel\\\"><p><a rel=\\\"nofollow\\\" id=\\\"GAL:09:TTL:MLM81038854\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-81038854-celulares-hiphone-4s-wifi-tv-2-lineas-office-mapas-java-rgl-_JM\\\" \\\">Celulares Hiphone 4s Wifi Tv 2 Lineas Office Mapas Java Rgl</a></p><p class='price'>$ 1,199<sup>00</sup></p></div></li>\";\n\n         \n         \n                        var actionHtml = \"\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:5:IMG:MLM84717276\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84717276-pulsera-de-moda-con-jade-y-turquesa-subasta-1-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_R_f_2888457585_072012.jpg\\\" title=\\\"Pulsera De Moda Con Jade Y Turquesa / Subasta $1 <p class='price'>$ 35<sup>00</sup></p>\\\" alt=\\\"Pulsera De Moda Con Jade Y Turquesa / Subasta $1\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:6:IMG:MLM405993643\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405993643-star-wars-30-aniversario-darth-vader-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_R_f_2911252179_072012.jpg\\\" title=\\\"Star Wars 30 Aniversario - Darth Vader <p class='price'>$ 100<sup>00</sup></p>\\\" alt=\\\"Star Wars 30 Aniversario - Darth Vader\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:7:IMG:MLM84717284\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84717284-collar-de-moda-con-turquesa-y-dije-de-buho-subasta-1-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_R_f_2983693685_082012.jpg\\\" title=\\\"Collar De Moda Con Turquesa Y Dije De Buho / Subasta $1 <p class='price'>$ 25<sup>00</sup></p>\\\" alt=\\\"Collar De Moda Con Turquesa Y Dije De Buho / Subasta $1\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:8:IMG:MLM405993612\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-405993612-subasta-nuevo-reloj-mont-blanc-para-dama-mod-103893-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_R_f_2975682603_082012.jpg\\\" title=\\\"Subasta Nuevo Reloj Mont Blanc Para Dama Mod 103893 <p class='price'>$ 100<sup>00</sup></p>\\\" alt=\\\"Subasta Nuevo Reloj Mont Blanc Para Dama Mod 103893\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:9:IMG:MLM84717301\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84717301-pulsera-de-moda-con-turquesa-y-perla-subasta-1-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_R_f_3020332062_082012.jpg\\\" title=\\\"Pulsera De Moda Con Turquesa Y Perla / Subasta $1 <p class='price'>$ 100<sup>00</sup></p>\\\" alt=\\\"Pulsera De Moda Con Turquesa Y Perla / Subasta $1\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:10:IMG:MLM84334040\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84334040-subasta-desde-1-peso-diadema-mp3-soporte-micro-sd-16gb-usb-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_R_f_79916284_3223.jpg\\\" title=\\\"Subasta Desde $1 Peso Diadema Mp3 Soporte Micro Sd 16gb Usb <p class='price'>$ 95<sup>00</sup></p>\\\" alt=\\\"Subasta Desde $1 Peso Diadema Mp3 Soporte Micro Sd 16gb Usb\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:11:IMG:MLM84334063\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84334063-subasta-desde-1-peso-base-enfriadora-mini-lap1-ventilador-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_R_f_2595074009_042012.jpg\\\" title=\\\"Subasta Desde $1 Peso Base Enfriadora Mini Lap1 Ventilador <p class='price'>$ 30<sup>00</sup></p>\\\" alt=\\\"Subasta Desde $1 Peso Base Enfriadora Mini Lap1 Ventilador\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:12:IMG:MLM84334132\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84334132-subasta-desde-1-peso-diadema-dj-nueva-estrellla-mmy-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_R_f_79807082_4391.jpg\\\" title=\\\"Subasta Desde $1 Peso Diadema  Dj , Nueva, Estrellla  Mmy <p class='price'>$ 60<sup>00</sup></p>\\\" alt=\\\"Subasta Desde $1 Peso Diadema  Dj , Nueva, Estrellla  Mmy\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:13:IMG:MLM84717439\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84717439-juego-de-collar-y-aretes-con-perla-y-turquesa-subasta-1-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img1.mlstatic.com/s_MLM_v_R_f_2904600738_072012.jpg\\\" title=\\\"Juego De Collar Y Aretes Con Perla Y Turquesa / Subasta $1 <p class='price'>$ 30<sup>00</sup></p>\\\" alt=\\\"Juego De Collar Y Aretes Con Perla Y Turquesa / Subasta $1\\\"></a></li>\";\n\n                    actionHtml =  actionHtml + \"<li><a rel=\\\"nofollow\\\" id=\\\"AUCT:14:IMG:MLM84717448\\\" href=\\\"http://articulo.mercadolibre.com.mx/MLM-84717448-pulsera-de-moda-con-turquesa-subasta-1-_JM\\\"><img class=\\\"ttip\\\" width=\\\"40\\\" height=\\\"40\\\" src=\\\"http://static.mlstatic.com/org-img/homesnw/img/loading90.gif\\\" orig=\\\"http://img2.mlstatic.com/s_MLM_v_R_f_3014479202_082012.jpg\\\" title=\\\"Pulsera De Moda Con Turquesa / Subasta $1 <p class='price'>$ 40<sup>00</sup></p>\\\" alt=\\\"Pulsera De Moda Con Turquesa / Subasta $1\\\"></a></li>\";\n\n <!-- aucts rt = 31 -->\n \n\n         \n\t\t var naturalSites = [\"hi5.com\",\"twitter.com\",\"facebook.com\",\"google.com\",\"google.com.mx\",\"images.google.com\",\"images.google.com.mx\",\"google.com/imgres\",\"google.com.mx/imgres\",\"plus.url.google.com\",\"plus.google.com\",\"search.yahoo.com\",\"msn.com\",\"t1msn.com.mx\",\"altavista.com\",\"hispavista.com\",\"aol.com.mx\",\"yahoo.net\",\"dmoz.org\",\"todito.com\",\"terra.com.mx\",\"search.live.com\",\"bing.com\"];\n\t     var naturalPmsIds = [36039198,36026686,34555374,78963944,78963944,60597028,60597028,60597028,60597028,113544353,113544353,78964053,78971833,78971833,78979790,78971842,78971848,78979805,78964076,79867016,79852678,3535943,3535943];\n\t\t var naturalPmsSiteIds = [5818701,5821488,5810541,305851,305851,5934354,5934354,5934354,5934354,6100854,6100854,305890,305914,305914,305869,305852,305853,305871,305934,309557,309559,4342936,4342936];\n\n\t\tif(nickname != null && nickname != 0) {\n\t\t\tvar containerFb = document.getElementById('containerFb');\n\t\t\tcontainerFb.innerHTML = '<div id=\"fbfaces\" class=\"minHeight\"></div>';\n\t\t}\n\t        var ind = null;\n\t        function sortRandom(a, b) {\n\t            return (Math.round(Math.random()) - 0.5);\n\t        }\n\t\tvar autosuggOn = true;\n\t\tvar lastSearchesOn = true;\n\t\tvar activityOn = true;\n\t\tvar questionsOn = true;\n\t\tvar fbTitle = \"Tus amigos en MercadoLibre\";\n\t\tvar urlSite=\"http://www.mercadolibre.com.mx\";\n\t\tvar urlLoginModal=\"https://www.mercadolibre.com/jms/mlm/lgz/login/showFormModal?go=\";\n\t\tvar fbSocialHasParams = false;\n        var diaEnamorados = false;\n        \n\t\t\t\t\n\t\tvar prod = true;(function(d){var scr=window.scr=(function(){return{js:function(s,c){if(typeof s===\"string\") {s=[s];}var script=d.getElementsByTagName(\"script\")[0];var b={t:s.length,i:0,r:function() {return b.t===b.i;}};var callback=function(){b.i++;if(c&&b.r()){c();}};var ready=(function(){if(script.readyState) {return function(n){n.onreadystatechange=function(){if(n.readyState==='loaded'||n.readyState==='complete'){n.onreadystatechange=null;callback();}};};}else{return function(n){n.onload=function(){callback();};};}}());var i=0;var e=d.createElement(\"script\");for(i;i<b.t;i++){var n=e.cloneNode(true);ready(n);n.src=s[i];script.parentNode.insertBefore(n,script);}}};}());window.onload=(function(){scr.js(\"http://static.mlstatic.com/org-img/chico/chico-min-dependences.0.7.4.js?v1\" ,function(){ scr.js(\"http://home.mlstatic.com/js/js_homeV0312__v2e3e0d451d9.js\");})})}(document));\n    </script>\n\t<script type=\"text/javascript\">function GAaddEvent(elementId,event,callback){GAaddEvent(elementId,event,callback,false);}function GAaddEvent(elementId,event,callback,isCapturing){var element=document.getElementById(elementId);if(element.addEventListener){element.addEventListener(event,callback,isCapturing);return true;}else{if(element.attachEvent){return element.attachEvent(\"on\"+event,callback);}else{el[\"on\"+event]=callback;}}}function GAgetEventTarget(e){if(window.event){e=window.event;}return e.srcElement?e.srcElement:e.target;}try{var _gaq=_gaq||[];function trackEventAndFollowLink(category,action,label,reference){trackEvent(category,action,label);setTimeout('document.location=\"'+reference+'\"',100);return false;}function trackEvent(category,action,label){try{if(_gaq){_gaq.push([\"mlTracker._trackEvent\",category,action,label]);}}catch(err){}}function GAattachEventTrack(elementId,event,parameters,followLink){var element=document.getElementById(elementId);if(element){var callback=\"trackEvent\";if(element.href&&followLink){callback+=\"AndFollowLink\";parameters.push(element.href);}GAaddEvent(elementId,event,function(){window[callback].apply(null,parameters);});}}function getTrackingDomain(domain){var trackingDomainArray=new RegExp(\"([^.]+[.]com([.]?.+)*$)|([^.]+[.]co[.].+$)|(([^.]+[.][^.]+$))\").exec(domain);if(trackingDomainArray){return\".\"+trackingDomainArray[0];}return domain;}function getTrackingURI(){var path=document.location.pathname;if(document.location.search){path=path.concat(document.location.search);}if(path&&\"/\"==path.charAt(0)&&path.length>1){path=path.substr(1);}return path;}function getIgnoredReferrerDomain(){var ignoredReferrerResults=new RegExp(\"(http://)?(.*\"+getTrackingDomain(document.domain)+\")\").exec(document.referrer);if(ignoredReferrerResults){return ignoredReferrerResults[2];}return null;}_gaq.push([\"mlTracker._setAccount\",\"UA-8863458-12\"]);_gaq.push([\"mlTracker._setDomainName\",\".mercadolibre.com.mx\"]);_gaq.push([\"mlTracker._setCookiePath\",\"/\"]);_gaq.push([\"mlTracker._setSessionCookieTimeout\",1800000]);_gaq.push([\"mlTracker._setAllowHash\",false]);_gaq.push([\"mlTracker._setAllowAnchor\",true]);_gaq.push([\"mlTracker._setClientInfo\",true]);ignoredReferrer=getIgnoredReferrerDomain();if(null!=ignoredReferrer){_gaq.push([\"mlTracker._addIgnoredRef\",ignoredReferrer]);}_gaq.push([\"mlTracker._trackPageview\",\"/HOME/\"]);function loadGa(){var ga=document.createElement(\"script\");ga.type=\"text/javascript\";ga.async=true;ga.src=(\"https:\"==document.location.protocol?\"https://ssl\":\"http://www\")+\".google-analytics.com/ga.js\";var s=document.getElementsByTagName(\"script\")[0];s.parentNode.insertBefore(ga,s);}}catch(err){}</script>\n    \n\t<div id=\"trackMl\"></div>\n    \n\t</body>\n\n<!--\n  hst = i-0000002e-qsm\n  rend_tm = 22\n-->\n</html>\n\t"
  },
  {
    "path": "testdata/8859_1_fr.html",
    "content": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"> \n\n\n\n\n\n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\t\n\t\t\n\t\t\n\t\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<html lang=\"fr\">\n\t<head>\n\t\t<!--mff:3501948--><title>Orange : tlphones, forfaits, Internet, actualit, sport, video</title><meta name=\"description\" content=\"Orange vous prsente ses offres de tlphones portables, de forfaits mobiles et internet. \nRetrouvez aussi la messagerie, l'actualit, le sport, la video sur le portail Orange \"><meta name=\"keywords\" content=\"telephones,mobiles,cls 3G\">\n\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\n\t\t<script type=\"text/javascript\">\n\t//<![CDATA[\n\t//<!--\n\t//recup dbit\n\tvar recup_cat\t= 'vis';\n\tvar beginDate\t= new Date ();\n\tvar queryString\t= '';\n\tvar aJalon\t\t= new Array();\n\tvar bLoadTimeDone = false;\n\t//-->\n\t//]]>\n</script>\n\t\t<meta name=\"google-site-verification\" content=\"Qcl-WAlDKw8eTMVaAjrJBFCpATgjyiNinVFtoQ28Cnc\">\n\t\t<meta name=\"google-site-verification\" content=\"c4OfrczLMSJm4DyV_ROkN-H3IoVB-up0QI0FfErDj2Y\">\n\t\t<meta name=\"WT.ti\" content=\"[orange.fr prospect homepage]\">\n\t\t\n\t\t<link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"http://opensearch.search.ke.voila.fr/orange.xml\" title=\"Orange\" />\n\t\t<link rel=\"shortcut icon\" href=\"http://hp4.b.woopic.com/icons/favicon.ico?13\" />\n\t\t<link rel=\"apple-touch-icon-precomposed\" href=\"http://hp4.b.woopic.com/icons/WebClipIcon_Ofr.png\" />\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\n\t\t<script type=\"text/javascript\">\n\t\t\t//<![CDATA[\n\t\t\t//<!--\n\t\t\tvar o_bNoWalledGarden = true;\n\t\t\t//-->\n\t\t\t//]]>\n\t\t</script>\n\t\t\n\t\t\t\n<link rel=\"stylesheet\" type=\"text/css\" media=\"screen,print\" href=\"http://hp4.b.woopic.com/css/min/prospect-header.css?2383105418\" />\n\n<script type=\"text/javascript\" src=\"http://hp4.b.woopic.com/js/min/prospect-header.js?1728468259\"></script>\n\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t<!--[if IE 6]>\n\t\t<style type=\"text/css\">\n\t\t\tA.Obutton { background-image:url('http://hp4.a.woopic.com/icons/IE6/bouton.gif');}\n\t\t\tDIV.majeure, DIV.mineures { background-image:none;}\n\t\t\tDIV.engagements LI { border-top:1px solid #CCC; }\n\t\t\tDIV.promoBckTop {margin-top:20px}\n\t\t</style>\n\t\t<![endif]-->\n\t\t\n\t\t<script type=\"text/javascript\">\n\t\t\t//<![CDATA[\n\t\t\t//<!--\n\t\t\tvar static_server_a = \"http://hp4.a.woopic.com\";\n\t\t\tvar static_server_b = \"http://hp4.b.woopic.com\";\n\t\t\tvar APPLoadTime = \"HPCPSP\";\n\t\t\t// il s'agit forcment d'un client visiteur prospect\n\t\t\tpaf.cookie(\"ty\",\"6\",{\"domain\": \".orange.fr\"});\n\t\t\t\n\t\t\t\n\t\t\thpc = {'authentified':false};\n\t\t\tvar sUrlReferrer = \"HPCPSP_vis_prospect\";\n\t\t\tinitUrlReferrer();\n\n\t\t\tvar pafCfg = {'onLoad': []};\n\t\t\t//-->\n\t\t\t//]]>\n\t\t</script>\n\t\t\n\t</head>\n\t<body class=\"prospect\">\n\t\t<!-- version classique -->\n\t\t<div id=\"timeQOS\"></div>\n\t\n\t\t<!-- accessibilit : liens pour passer directement au contenu -->\n\t\t<ul class=\"evitement o_r_accessibilite\">\t\t\t\n\t\t\t<li><a href=\"#contenu\" class=\"o_r_notchanged\">Contenu du site</a></li>\n\t\t\t<li><a href=\"#piedpage\" class=\"o_r_notchanged\">Pied de page</a></li>\n\t\t</ul>\n\t\t<div class=\"o_main\">\n\t\t\t<div id=\"o_content\">\n\t\t\t\t<div id=\"o_header\" class=\"o_r_header\">\n\t\t\t\t\t<a class=\"mask headerLogoOrange\" href=\"http://www.orange.fr\"><img src=\"http://hp4.a.woopic.com/icons/sprite-prospect.gif?14\" alt=\"Accueil\" title=\"Accueil\" width=\"525\" height=\"415\"></a>\n\t\t\t\t\t<!--mff:4342790--><div class=\"title\">\n<span>bienvenue</span>\n</div>\n\n\n\t\t\t\t\t<div class=\"formDiv off\">\n\t\t\t\t\t\t<a name=\"formulaire\" id=\"formulaire\" class=\"ancre\"></a>\n\t\t\t\t\t\t<a name=\"formulaire\" id=\"formulaire\" class=\"ancre\"></a>\n<form method=\"get\" action=\"http://search.ke.voila.fr/S/orange\" class=\"o3_formSearch o_r_rechercher\" id=\"formPortail\">\n<div class=\"hpcHeaderInputs\">\n\t<input type=\"hidden\" name=\"rtype\" value=\"kw\">\n\t<input type=\"hidden\" name=\"bhv\" value=\"web_fr\">\n\t<input type=\"hidden\" value=\"orange_prospect\" name=\"profil\">\n\t<input type=\"hidden\" value=\"\" name=\"directSrch\">\n\t\n\t\t<input type='hidden' name='ctx' value='orange'>\n\t\t\t\t\n\t<label for=\"rech\">toutes vos recherches sur le web et orange.fr</label><br />\n\t<input type=\"text\" accesskey=\"0\" name=\"rdata\" class=\"searchTxt ie6Rech\" id=\"rech\" autocomplete=\"off\">\t\n\t<input class=\"searchBtn\" type=\"submit\" value=\"\" title=\"Rechercher\" />\n\t\n</div>\n<div id=\"formSearchCompletion\" class=\"AutocompleteFormHP\"></div>\n</form>\n<script type=\"text/javascript\">\n\t//<![CDATA[\n\t//<!--\n\tif (document.forms.length == 1){\n\t\t// activation de l'autocompltion sur le formulaire du header uniquement\n\t\t\n\tvar completionActive = true;\n\n\n\t\tvar formPortail = document.getElementById('formPortail');\t\n\t\tvar cbSubmit = function(properties){\n\t\t\tvar input = document.getElementById(properties.id);\n\t\t\tif (input){\n\t\t\t\tif(BLO_Autocompletion.isSelectedSuggestion()){\n\t\t\t\t\theaderCompletionV3Submit(properties);\n\t\t\t\t} else {\n\t\t\t\t\to_bHeaderFormSubmit(input.form);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn false;\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\tBLO_Autocompletion = new orangesearch.completion.Component({\n\t\t\t'url':'http://completion.ke.voila.fr/fr/completion_orange_hpc/xml/fullxml',\n\t\t\t'defaultBlockLabel': '',\n\t\t\t'alternativeBlocks':{\n\t\t\t 'toptrend':[\n\t\t\t {\n\t\t\t\t 'label':'TOP TENDANCE',\n\t\t\t\t 'max':5,\n\t\t\t\t 'type':'top'\n\t\t\t }\n\t\t\t ]\n\t\t\t},\n\t\t\t'nameOfInstanceForJsonP':'BLO_Autocompletion',\n\t\t\t'maxNbSuggestions':8,\n\t\t\t'field':formPortail.rdata,\n\t\t\t'divCompletion':document.getElementById('formSearchCompletion'),\n\t\t\t'maxNbChar':35,\n\t\t\t'defaultBlockBaseId':-3,\n\t\t\t'plugins':[\"Petale\",\"TopTrend\",\"DirectLink\"],\n\t\t\t'onClickCompletion':true,\n\t\t\t'onClickCompletionKeyword':'toptrend',\n\t\t\t'onClickCompletionId':'web',\n\t\t\t'isFormSubmit': false,\n\t\t\t'petaleDefaultImages':{\n\t\t\t \"default\": \"http://img.ke.voila.fr/I/leMoteur/petaleGenericImage.jpg\",\n\t\t\t \"people\": \"http://img.ke.voila.fr/I/leMoteur/petaleGenericPeople.jpg\",\n\t\t\t \"shopping\": \"http://img.ke.voila.fr/I/leMoteur/petaleGenericShopping.jpg\",\n\t\t\t \"meteo\": \"http://img.ke.voila.fr/I/leMoteur/petaleGenericMeteo.jpg\",\n\t\t\t \"boutique\": \"http://img.ke.voila.fr/I/leMoteur/petaleGenericBoutique.png\"\n\t\t\t},\n\t\t\t'callbacks':{\n\t\t\t 'submit':{'method':'cbSubmit'}\n\t\t\t//,\n\t\t\t//'show':{'context':overlayItem,'method':'show'},\n\t\t\t//'hide':{'context':overlayItem,'method':'hide'}\n\t\t\t \n\t\t\t}\n\t\t});\n\t\tBLO_Autocompletion.start();\n\t\t\n\t\tif(completionActive !== true){\n\t\t\tBLO_Autocompletion.disable();\n\t\t}\n\t\tpaf.dom.byId('rech').focus();\n\t}\n\t//-->\n\t//]]>\n</script>\t\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\n\t\t\t\t<div class=\"mainContent\">\n\t\t\t\t\t<a name=\"contenu\" id=\"contenu\" class=\"ancre\"></a>\n\t\t\t\t\t<!-- ZONE PERIODE COMMERCIALE -->\n\t\t\t\t\t<!--mff:4451599--><div id=\"coverflowCarousel\" class=\"pafCarousel o_r_zoneprivee_eshop_carrousel\"><script type=\"text/javascript\">var coverflowTimers = coverflowDatas = [];</script><div class=\"pafCarouselWindow\"><ul class=\"pafCarouselList\"><li class=\"pafCarouselItem o_r_1\"><!--mff:5822494--><a href=\"http://boutique.orange.fr/ESHOP_mx_orange/?tp=F&amp;ref=50508&amp;IDCible=1&amp;type=4&amp;donnee_appel=ORESH&amp;IDSPMob=10005352&amp;IDSPForf=10000483#&amp;WT.ac=1000791\" title=\"vente flash\"><img id=\"coverflowCarousel5822494\" class=\"pafLoading\" src=\"http://hp4.a.woopic.com/icons/z.gif\" width=\"654\" height=\"223\"><strong class=\"alt\">vente flash</strong></a><script type=\"text/javascript\">coverflowTimers.push(5); coverflowDatas['coverflowCarousel5822494']='http://hp4.a.woopic.com/magic/icons/3b897a73d2bd1f67a570d5b45a24d97f.jpg';</script></li><li class=\"pafCarouselItem o_r_2\"><!--mff:5966087--><a href=\"http://abonnez-vous.orange.fr/?IDD=16193#&amp;WT.ac=1000893\" title=\"Xbox 360\"><img id=\"coverflowCarousel5966087\" class=\"pafLoading\" src=\"http://hp4.a.woopic.com/icons/z.gif\" width=\"654\" height=\"223\"><strong class=\"alt\">Xbox 360</strong></a><script type=\"text/javascript\">coverflowTimers.push(5); coverflowDatas['coverflowCarousel5966087']='http://hp4.a.woopic.com/magic/icons/779aee86df9d83d60c7ab451a0aa3c06.jpg';</script></li><li class=\"pafCarouselItem o_r_3\"><!--mff:4451443--><a href=\"http://open.orange.fr/forfaits/serie-limitee-open-mini.aspx?idnode=120607009#?&amp;WT.ac=1000814\" title=\"open mini\"><img id=\"coverflowCarousel4451443\" class=\"pafLoading\" src=\"http://hp4.a.woopic.com/icons/z.gif\" width=\"654\" height=\"223\"><strong class=\"alt\">open mini</strong></a><script type=\"text/javascript\">coverflowTimers.push(5); coverflowDatas['coverflowCarousel4451443']='http://hp4.a.woopic.com/magic/icons/524632d902d928eca1d87be3835193f7.jpg';</script></li></ul></div></div><div class=\"coverflowShadow\"></div><div id=\"coverflowChips\" class=\"chipContainer\"></div><script type=\"text/javascript\">\npafCfg.onLoad.push(function(){\nvar coverflowCarousel = paf.instance('carouselContainer',{'node':paf.dom.byId('coverflowCarousel'),'duration':0.25, 'delay': 5000, 'aTimers':coverflowTimers, 'loop': '1', 'selectEvent':'click', 'orientation': 'horizontal'});\nvar coverflowChips = paf.instance('ctrlChip',{'node':paf.dom.byId('coverflowChips'),'sModGrp':coverflowCarousel.sModGrp,'nbItem':coverflowCarousel.nbPanel});\nvar coverflowArrows = paf.instance('ctrlArrow',{'node':paf.dom.byId('coverflowCarousel'),'sModGrp':coverflowCarousel.sModGrp,'topic':'select'});\nvar imageLoader = paf.instance('imageLoader',{'sModGrp':coverflowCarousel.sModGrp,'datas':coverflowDatas,'items':coverflowCarousel.getLayers(),'topic':'go/done'});\ncoverflowCarousel.run();\n});\n</script>\n\t\t\t\t\t<!--/ZONE PERIODE COMMERCIALE -->\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"decal o_r_zoneprivee_eshop\">\n\t\t\t\t\t\t<!--mff:3503856--><h1>boutique internet, mobile, internet + mobile</h1>\n\n\t\t\t\t\t\t<!-- ZONE ACCES AUX BOUTIQUES -->\n\t\t\t\t\t\t\t<div class=\"o_r_boutiquesmajeures\">\n\t\t\t\t\t\t\t\t<!--mff:4452454--><div class=\"o_r_internet majeure\">\n<div class=\"bord m1\">\n<h2>\n<a href=\"http://abonnez-vous.orange.fr/residentiel/accueil/accueil.aspx\" class=\"o_r_lien\">internet</a>\n</h2>\n<a href=\"http://abonnez-vous.orange.fr/residentiel/cremaillere-des-offres.aspx\" class=\"o_r_container\" title=\"d&eacute;couvrez nos offres internet\"><img src=\"http://hp4.b.woopic.com/magic/icons/196x142_A_decouvrez_offre.gif\" alt=\"d&eacute;couvrez nos offres internet\" width=\"196\" height=\"142\"></a>\n<ul>\n<li class=\"o_r_1\">\n<a href=\"http://abonnez-vous.orange.fr/residentiel/cremaillere-des-offres.aspx\">offres internet</a>\n</li>\n<li class=\"o_r_2\">\n<a href=\"http://abonnez-vous.orange.fr/residentiel/tv/accueil-offres-tv.aspx\">TV d'Orange</a>\n</li>\n<li class=\"o_r_3\">\n<a href=\"http://abonnez-vous.orange.fr/residentiel/equipements/livebox.aspx\">Livebox</a>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"o_r_mobile majeure mobile\">\n<div class=\"bord m1\">\n<h2>\n<a href=\"http://mobile-shop.orange.fr/\" class=\"o_r_lien\">mobile</a>\n</h2>\n<div id=\"mobilesSwitch\" class=\"o_r_container\">\n<a style=\"background-image:url('http://hp4.b.woopic.com/magic/icons/zoom_iphone_4S.png'); width:69px;\" class=\"m1 o_r_1\" href=\"http://mobile-shop.orange.fr/telephones-portables/3/iphone-4\" title=\"iPhone 4S\" onmouseover=\"switchM(this)\"></a><a style=\"background-image:url('http://hp4.b.woopic.com/magic/icons/zoom_samsung-galaxy-mini-2.png'); width:69px;\" class=\"m2 o_r_2\" href=\"http://mobile-shop.orange.fr/telephone-portable/samsung-galaxy-mini-2\" title=\"Samsung Galaxy Mini 2\" onmouseover=\"switchM(this)\"></a><a style=\"background-image:url('http://hp4.b.woopic.com/magic/icons/zoom_Orange_Intel_Inside.png'); width:69px;\" class=\"m3 o_r_3\" href=\"http://mobile-shop.orange.fr/telephone-portable/orange-avec-intel-inside\" title=\"Orange avec Intel Inside\" onmouseover=\"switchM(this)\"></a>\n</div>\n<div class=\"cartouche\">\n<span id=\"libel\">iPhone 4S</span>\n<div class=\"arrow\"></div>\n</div>\n<ul>\n<li class=\"o_r_1\">\n<a href=\"http://mobile-shop.orange.fr/choisir-forfait\">forfaits mobiles</a>\n</li>\n<li class=\"o_r_2\">\n<a href=\"http://mobile-shop.orange.fr/choisir-mobile\">t&eacute;l&eacute;phones mobiles</a>\n</li>\n<li class=\"o_r_3\">\n<a href=\"http://sites.orange.fr/boutique/promotions/accueil.html\">promotions mobiles</a>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"o_r_zone3 majeure majeureLast\">\n<div class=\"bord m1\">\n<h2>\n<a href=\"http://open.orange.fr\" class=\"o_r_lien\">Open</a>\n</h2>\n<a href=\"http://open.orange.fr\" class=\"o_r_container\" title=\"Open\"><img src=\"http://hp4.b.woopic.com/magic/icons/open_prospect.png\" alt=\"Open\" width=\"195\" height=\"142\"></a>\n<ul>\n<li class=\"o_r_1\">\n<a href=\"http://open.orange.fr\">toutes les offres Open</a>\n</li>\n<li class=\"o_r_2\">\n<a href=\"http://open.orange.fr/forfaits/open-1.aspx\">Open 1</a>\n</li>\n<li class=\"o_r_3\">\n<a href=\"http://open.orange.fr/forfaits/open-24-7-special.aspx\">Open 24/7 sp&eacute;cial</a>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"c_sep\"></div>\n\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"mineures o_r_boutiquesecondaires\">\n\t\t\t\t\t\t\t\t<div class=\"bord\">\n\t\t\t\t\t\t\t\t\t<!--mff:3802624--><div class=\"mineure m1 o_r_zone1\">\n<h2>\n<a href=\"http://boutiques.orange.fr/Pro/\">pro - pme\n</a>\n</h2>\n<ul>\n<li class=\"o_r_zone1\">\n<a href=\"http://boutique.orange.fr/ESHOP_mx_ft/?tp=php&amp;IDCible=2&amp;type=4&amp;code_rubrique=5-623365\" title=\"mobile Pro&#10;&#10;&#10;\">mobile Pro\n\n\n</a>\n</li>\n<li class=\"o_r_zone2\">\n<a href=\"http://boutique.orange.fr/ESHOP_mx_orange/?tp=PHP&amp;code_rubrique=5-622837&amp;type=3&amp;IDCible=2\" title=\"cr&eacute;ateurs d'entreprises&#10;&#10;\">cr&eacute;ateurs d'entreprises\n\n</a>\n</li>\n</ul>\n<a class=\"posIMG\" href=\"http://boutiques.orange.fr/Pro/\"><img src=\"http://hp4.a.woopic.com/magic/icons/modele_vignette_pro.jpg\" alt=\"\" width=\"223\" height=\"85\"></a>\n</div>\n<div class=\"mineure m2 o_r_zone2\">\n<h2>\n<a href=\"http://boutique.orange.fr/ESHOP_mx_ft/?tp=php&amp;donnee_appel=ORESH&amp;IDCible=1&amp;code_rubrique=5-625879\">accessoires</a>\n</h2>\n<a href=\"http://boutique.orange.fr/ESHOP_mx_ft/?tp=php&amp;IDCible=1&amp;code_rubrique=5-622848\" title=\"BOUTIQUE ACCESSOIRES\"><img src=\"http://hp4.a.woopic.com/magic/icons/vignette_hightech2.gif\" alt=\"BOUTIQUE ACCESSOIRES\" width=\"223\" height=\"104\"></a><span style=\"position:absolute; left:100px; top:30px; width:100px;\">les &eacute;quipements PC, Livebox et iPhone</span><a href=\"http://boutique.orange.fr/ESHOP_mx_ft/?tp=php&amp;IDCible=1&amp;code_rubrique=5-622848\" class=\"decouvrir\" rel=\"nofollow\">d&eacute;couvrir</a>\n</div>\n<div class=\"mineure m3 o_r_zone3\">\n<h2>\n<a href=\"http://abonnez-vous.orange.fr/default.aspx?IDD=13702 \">Cl&eacute; 3G+ / tablette</a>\n</h2>\n<a href=\"http://abonnez-vous.orange.fr/cle3G/accueil-cle3g.aspx?rdt=o \" title=\"Cl&eacute; 3G+\"><img src=\"http://hp4.a.woopic.com/magic/icons/223x104_cle3G[1].jpg\" alt=\"Cl&eacute; 3G+\" width=\"223\" height=\"104\"></a><span style=\"position:absolute; left:100px; top:50px; width:100px;\">d&eacute;couvrez nos offres pour profiter d'internet partout </span><a href=\"http://abonnez-vous.orange.fr/default.aspx?IDD=13702 \" class=\"decouvrir\" rel=\"nofollow\">d&eacute;couvrir</a>\n</div>\n<div class=\"mineure m4 o_r_zone4\">\n<h2>\n<a href=\"http://boutique.orange.fr/ESHOP_mx_orange/?tp=PHP&amp;code_rubrique=5-623477&amp;type=3&amp;IDCible=1\">fixe</a>\n</h2>\n<a href=\"http://boutique.orange.fr/ESHOP_mx_orange/?tp=PHP&amp;code_rubrique=5-623477&amp;type=3&amp;IDCible=1\" title=\"d&eacute;couvrir toute l'offre fixe\"><img src=\"http://hp4.a.woopic.com/magic/icons/vignette_fixe.jpg\" alt=\"d&eacute;couvrir toute l'offre fixe\" width=\"223\" height=\"104\"></a><span style=\"position:absolute; left:100px; top:50px; width:100px;\">les offres, services et t&eacute;l&eacute;phones fixes</span><a href=\"http://boutique.orange.fr/ESHOP_mx_orange/?tp=PHP&amp;code_rubrique=5-623477&amp;type=3&amp;IDCible=1\" class=\"decouvrir\" rel=\"nofollow\">d&eacute;couvrir</a>\n</div>\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<!-- reassurance -->\n\t\t\t\t\t\t\t<div class=\"engagementsBckTop\">&nbsp;</div>\n\t\t\t\t\t\t\t<div class=\"engagements o_r_reassurance\" id=\"engagements\">\n\t\t\t\t\t\t\t\t<h2>nos engagements</h2>\n\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t\t\t<li class=\"pafTooltip\">\n\t\t\t\t\t\t\t\t\t\t<h3 class=\"livr\">livraison gratuite</h3>\n\t\t\t\t\t\t\t\t\t\t<p class=\"tooltipContainer\">La livraison des produits intervient sous 3 jours ouvr&eacute;s  compter de la validation de votre commande</p>\n\t\t\t\t\t\t\t\t\t</li>\n\n\t\t\t\t\t\t\t\t\t<li class=\"pafTooltip\">\n\t\t\t\t\t\t\t\t\t\t<h3 class=\"paie\">paiement s&eacute;curis&eacute;</h3>\n\t\t\t\t\t\t\t\t\t\t<p class=\"tooltipContainer\">Pour les paiements par carte bancaire, nous utilisons la norme SSL, standard le plus r&eacute;pandu</p>\n\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t<li class=\"pafTooltip\">\n\t\t\t\t\t\t\t\t\t\t<h3 class=\"satis\">satisfait ou rembours&eacute;</h3>\n\t\t\t\t\t\t\t\t\t\t<p class=\"tooltipContainer\">La boutique Orange vous ouvre cette possibilit&eacute; pendant les 14 jours qui suivent la r&eacute;ception de votre colis.</p>\n\n\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t<li class=\"pafTooltip\">\n\t\t\t\t\t\t\t\t\t\t<h3 class=\"sav\">SAV</h3>\n\t\t\t\t\t\t\t\t\t\t<p class=\"tooltipContainer\">En 48h maximum, Orange vous &eacute;change votre mobile  l'adresse de votre choix contre un mat&eacute;riel identique</p>\n\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t\t<a title=\"conditions g&eacute;n&eacute;rales de vente\" href=\"http://boutique.orange.fr/vf/accueil/conditions_generales/CGV_laboutiqueOrange.pdf\" target=\"_blank\">conditions g&eacute;n&eacute;rales de vente</a>\n\t\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"engagementsBckBot\">&nbsp;</div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<!--/reassurance -->\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<!-- bloc promo -->\n\t\t\t\t\t\t\t<div class=\"promoBckTop\"></div>\n\t\t\t\t\t\t\t<!--mff:3503854--><div addRef=\"zonepromotionnelle\" class=\"promo\">\n<a href=\"http://boutique.orange.fr/mx/?tp=php&amp;IDCible=1&amp;type=0&amp;code_rubrique=5-546393\" title=\"promo\"><img src=\"http://hp4.b.woopic.com/magic/icons/promo.png\" alt=\"promo\" width=\"81\" height=\"88\"><span>Inscrivez-vous et recevez tous nos bons plans</span></a>\n</div>\n\n\t\t\t\t\t\t\t<div class=\"promoBckBot\"></div>\n\t\t\t\t\t\t\t<!-- bloc promo -->\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<!--/ZONE ACCES AUX BOUTIQUES -->\n\t\t\t\t\t\t<div class=\"c_sep\"></div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<!-- ZONE SEO OFFRE -->\n\t\t\t\t\t\t\t<!--mff:3502014--><p class=\"seo\" addRef=\"Zoneseo\">Dcouvrez l&#8217;univers Mobile Orange avec une large gamme de tlphones mobiles, et un grand choix d&#8217;offres mobiles : mobicarte, forfaits bloqus, forfaits Origami avec illimit et cl 3G+. Retrouvez l&#8217;univers Internet d&#8217;Orange avec les offres ADSL, TV, fixe et fibre optique mais galement la Livebox et tous ses accessoires high tech. Accdez  Internet en dplacement depuis votre ordinateur portable avec la Cl 3G+ avec les pass, forfaits bloqus ou illimits Orange.</p>\n\n\t\t\t\t\t\t<!--/ZONE SEO OFFRE -->\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"seoFooter\">\n\t\t\t\t\t\t<!--mff:3502013--><p class=\"seo\" addRef=\"Zoneseo\"> <A href=\"http://assistance.orange.fr/livebox-configuration-1094.php\">configuration livebox</A> | <A href=\"http://meteo.orange.fr/pollens/bouleau.html\">allergie bouleau</A> | <A href=\"http://www.horlogeparlante3699.fr/\">horloge parlante</A> | <A href=\"http://actu.orange.fr/revue/actualite-du-jour/\">actualits du jour</A> |<A href=\"http://www.orange.fr/plan-site\">plan portail Orange</A></p>\n\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"leftContent\">\n\t\t\t\t\t<!-- ZONE ACCES -->\n\t\t\t\t\t<div class=\"acces\">\n\t\t\t\t\t\t<div class=\"top\"> </div>\n\t\t\t\t\t\t<div class=\"cont o_r_zoneprivee\">\n\t\t\t\t\t\t\t<h2>Clients Orange</h2>\n\t\t\t\t\t\t\t<span class=\"desc\">pour profiter de tous vos services : messagerie, espace client, <br/>changer de mobile ...</span>\n\t\t\t\t\t\t\t<a class=\"btn-ident o_r_identifier\" href=\"http://id.orange.fr/auth_user/bin/auth_user.cgi?url=http://www.orange.fr\"><span>identifiez-vous</span></a>\n\t\t\t\t\t\t\t<div class=\"assistance\">\n\t\t\t\t\t\t\t\tune question ? un probl&egrave;me ?\n\t\t\t\t\t\t\t\t<a href=\"http://r.orange.fr/r/Oassistance\" class=\"o_r_assistance\">consultez l'assistance</a>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div id=\"blocAide\" class=\"aide close\">\n\t\t\t\t\t\t\t\t<span class=\"trigger\">besoin d'aide pour vous identifier</span>\n\t\t\t\t\t\t\t\t<ul class=\"block o_r_assistance\">\n\t\t\t\t\t\t\t\t\t<li><a class=\"o_r_premiere\" href=\"http://assistance.orange.fr/759.php\">c'est votre premi&egrave;re visite</a></li>\n\t\t\t\t\t\t\t\t\t<li><a class=\"o_r_clientfixe\" href=\"http://assistance.orange.fr/vous-identifier-comme-client-du-fixe-4495.php\">vous &ecirc;tes client du fixe</a></li>\n\t\t\t\t\t\t\t\t\t<li><a class=\"o_r_idperdue\" href=\"http://assistance.orange.fr/mot-de-passe-perdu-46.php\">vous avez perdu vos identifiants</a></li>\n\t\t\t\t\t\t\t\t\t<li><a class=\"o_r_mobileperdue\" href=\"http://assistance.orange.fr/mobile/urgences-et-depannage-mobile-perdu-vole-en-panne-perdu.php\">vous avez perdu votre mobile</a></li>\n\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"manchette o_r_Alaune_prospect\">\n\t\t\t\t\t\t\t<!-- manchette -->\n\t\t\t\t\t\t\t<h3>pour parcourir orange.fr</h3>\n\t\t\t\t\t\t\t<!--mff:5985804--><!--mff:5994843--><div class=\"rappel\"><img src=\"http://hp4.b.woopic.com/magic/icons/57179_193.jpg\" alt=\"Le cadeau de Poutine\" title=\"Le cadeau de Poutine\" width=\"193\"><span>Le cadeau de Poutine</span></div>\n\t\t\t\t\t\t\t<!--/manchette -->\n\t\t\t\t\t\t\t<a href=\"http://www.orange.fr/portail\" class=\"btn-portail\"><strong>acc&eacute;dez au portail</strong></a>\n\t\t\t\t\t\t\t<p>et suivez l'actualit&eacute;, consultez la m&eacute;t&eacute;o, visionnez le programme TV, interrogez l'assistance, comparez et achetez au meilleur prix, trouvez un correspondant avec le 118712 ...</p>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"bottom\"> </div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<!--/ZONE ACCES -->\t\n\t\t\t\t\t<div class=\"suivi o_r_zoneprivee_eshop_suivicommande\">\n\t\t\t\t\t\t<!-- suivi de commande -->\n\t\t\t\t\t\t<a href=\"http://espaceclientv2.orange.fr/suivicommande.php\"><strong>suivi de commande</strong></a>\n\t\t\t\t\t\tSuivez en direct l'&eacute;tat d'avancement de votre commande.\n\t\t\t\t\t</div>\n\t\t\t\t\t<!--mff:5961112--><div class=\"comRela o_r_encemoment_comrelationnelle\"><img src=\"http://hp4.b.woopic.com/magic/icons/55640.jpg\" alt=\"Adoptez le kit oreillette\" title=\"Adoptez le kit oreillette\" width=\"216\" height=\"100\" href=\"http://responsabilite-sociale-entreprise.orange.fr/ondes_radio.html\"><div class=\"pad\"><strong>Adoptez le kit oreillette</strong>Les bons conseils pour r&eacute;duire son exposition aux ondes<a href=\"http://responsabilite-sociale-entreprise.orange.fr/ondes_radio.html\" title=\"en savoir plus\" target=\"_blank\">en savoir plus</a></div></div>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"c_sep\"></div>\n\t\t\t\t<a name=\"piedpage\" id=\"piedpage\" class=\"ancre\"></a>\n\t\t\t\t\n\t\t\t\t<!--mff:5837998--><div id=\"etenduRSE\" class=\"rse o_r_footer_rse\"></div><script type=\"text/javascript\">\nvar aFRSE = {\n'titre':\"les engagements d'Orange\",\n\"items\":[\n\n  {\"titre\": {\"t\": \"le service Orange, satisfait quand vous l'tes\", \"l\": \"http://satisfait.orange.fr/\"},\n\"liens\": [\n{\"l\":\"http://satisfait.orange.fr/connecte_reseau-mobile-n1.php\",\"c\":\"\", \"t\":\"restez connect\"},\n{\"l\":\"http://satisfait.orange.fr/technologie_installation-a-domicile.php\",\"c\":\"\", \"t\":\"profitez de la technologie\"}]\n\n},\n  {\"titre\": {\"t\": \"agir au quotidien\", \"l\": \"http://responsabilite-sociale-entreprise.orange.fr/\"},\n\"liens\": [\n{\"l\":\"http://responsabilite-sociale-entreprise.orange.fr/reflexes_verts.html\",\"c\":\"\", \"t\":\"rflexes verts et recyclage\"},\n{\"l\":\"http://responsabilite-sociale-entreprise.orange.fr/controle-parental.html\",\"c\":\"\", \"t\":\"contrle parental\"},\n{\"l\":\"http://responsabilite-sociale-entreprise.orange.fr/autonomie.html\",\"c\":\"\", \"t\":\"autonomie\"},\n{\"l\":\"http://responsabilite-sociale-entreprise.orange.fr/ondes_radio.html\",\"c\":\"\", \"t\":\"ondes radio et sant\"},\n{\"l\":\"http://responsabilite-sociale-entreprise.orange.fr/protection_donnees.html\",\"c\":\"\", \"t\":\"protection des donnes et scurit\"}]\n\n}\n]};\npafCfg.onLoad.push(function(){generateFRSE(aFRSE);});\n</script>\n\n\t\t\t\t\n\t\t\t\t<!-- ZONE FOOTER SIMPLE -->\n\t\t\t\t<!--mff:3502573--><div id=\"etenduML\" class=\"mentions o_r_footer_mentionslegales\"></div><script type=\"text/javascript\">\nvar aML = [\n\n{\"l\":\"http://r.orange.fr/r/Oinfoslegales_abo\", \"t\":\"informations lgales\",\"popup\":\"1\"}\n,\n{\"l\":\"http://r.orange.fr/r/Ohome_aproposdorange\", \"t\":\"Orange en France\",\"popup\":\"\"}\n,\n{\"l\":\"http://r.orange.fr/r/Eorangepublicite\", \"t\":\"publicit\",\"popup\":\"\"}\n,\n{\"l\":\"http://r.orange.fr/r/Einternetplus\", \"t\":\"internet +\",\"popup\":\"\"}\n,\n{\"l\":\"http://r.orange.fr/r/Ehome_buyster\", \"t\":\"buyster\",\"popup\":\"\"}\n,\n{\"l\":\"http://r.orange.fr/r/Esignaler\", \"t\":\"signaler un contenu illicite\",\"popup\":\"\"}\n,\n{\"l\":\"http://r.orange.fr/r/Ohome_donneespersonnelles\", \"t\":\"donnes personnelles\",\"popup\":\"\"}\n,\n{\"l\":\"http://assistance.orange.fr/mentions-legales-relatives-a-la-publicite-2917.php\", \"t\":\"cookies publicitaires\",\"popup\":\"\"}\n\n];\npafCfg.onLoad.push(function(){generateFML(aML);});\n</script>\n\n\t\t\t\t<!--/ZONE FOOTER SIMPLE-->\n\t\t\t</div>\n\t\t</div>\n\t\t\n\t\t<script type=\"text/javascript\">\n\t\t\t//<![CDATA[\n\t\t\t//<!--\n\t\t\taddJalon('timehtml',new Date());\t\t\t\t\t\t// pour le temps de chargement\n\t\t\to_changeAllLinks();\n\t\t\t\n\t\t\ttry { o_changeAllLinks(); } catch(e) {}\t// modification des liens (passage par r.orange.fr) \n\t\t\ttry { startDownloadTimers(); } catch(e) {}\t\t\t\t// modification de la source des images non charges \n\t\t\t\n\t\t\t// imagette IAPREF (uniquement si PROD)\n\t\t\to_audience(false,\"/\");\n\t\t\t_gstat.audience(\"\",\"\",\"/\");\n\t\t\t//-->\n\t\t\t//]]>\n\t\t</script>\n\t\t\n\t\t<noscript>\n\t\t\t<img alt=\"\" border=\"0\" name=\"DCSIMG\" width=\"1\" height=\"1\" src=\"http://sdc.francetelecom.com/dcsl8l479854f3emawx840q4m_3u3k/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=8.0.2\" />\n\t\t</noscript>\n\t\t\n\t\t<!--mff:--><script type=\"text/javascript\">\nvar aLC = [\n\n{\n  \"img\":\"http://hp4.b.woopic.com/magic/icons/animo_hp117x49.jpg\",\n\t\"title\":\"Chane AnimO\",\n\t\"texte\":\"L'actualit de nos amis les btes.\",\n\t\"lien\":\"http://ad.doubleclick.net/clk;258347335;79692142;t?http://animo.orange.fr/\",\n\t\"lienTexte\":\"animo.orange.fr\"\n},\n{\n  \"img\":\"http://hp4.b.woopic.com/magic/icons/daxon117x49.gif\",\n\t\"title\":\"Soldes Daxon\",\n\t\"texte\":\"Jusqu' - 70 % de rduction\",\n\t\"lien\":\"http://ad.doubleclick.net/clk;259821273;38229301;g\",\n\t\"lienTexte\":\"shopping.orange.fr/\"\n},\n{\n  \"img\":\"http://hp4.b.woopic.com/magic/icons/117x49_ME_couple50_juin2012_02.jpg\",\n\t\"title\":\"Rencontres Clibataires\",\n\t\"texte\":\"Meetic: Trouvez les Clibataires prs de chez vous\",\n\t\"lien\":\"http://ad.doubleclick.net/clk;224073664;15676908;p\",\n\t\"lienTexte\":\"www.meetic.fr\"\n},\n{\n  \"img\":\"http://hp4.b.woopic.com/magic/icons/117x49_vignette_jeu.jpg\",\n\t\"title\":\"Les avantages Sephora.fr\",\n\t\"texte\":\"Tentez de gagner* un Tour du Monde avec sephora.fr\",\n\t\"lien\":\"http://ad.doubleclick.net/clk;256958951;16081897;d?http://sephora2.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=423911&A=1&L=779408&C=30554&f=10&P=27132&T=E&W=1&CREA=2600&URL\",\n\t\"lienTexte\":\"www.sephora.fr\"\n},\n{\n  \"img\":\"http://hp4.b.woopic.com/magic/icons/117x49_MA_couple50_juin2012_02.jpg\",\n\t\"title\":\"Rencontre par affinits\",\n\t\"texte\":\"Meetic Affinity : rencontres, conseils, coaching\",\n\t\"lien\":\"http://ad.doubleclick.net/clk;225569498;15676908;f\",\n\t\"lienTexte\":\"meeticaffinity.fr\"\n},\n{\n  \"img\":\"http://hp4.b.woopic.com/magic/icons/117x49_gold.gif\",\n\t\"title\":\"Carte Gold  0&#8364;!\",\n\t\"texte\":\"Gold gratuite et 30&#8364; offerts avec Fortuneo\",\n\t\"lien\":\"http://ad.doubleclick.net/clk;259477644;39595711;b\",\n\t\"lienTexte\":\"www.fortuneo.fr\"\n}\n]\n</script>\n\n\t\t\t\n\t\t\n\t\t\t\n\n<script type=\"text/javascript\" src=\"http://hp4.b.woopic.com/js/min/prospect-footer.js?3614213980\"></script>\n\n\t\t\n\t\t\n\t\t\n\n\t</body>\n</html>\n\n"
  },
  {
    "path": "testdata/8859_1_pt.html",
    "content": "\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:fb=\"http://www.facebook.com/2008/fbml\" id=\"hp\">\r\n<head><title id=\"ctl00_ctl00_head__ctrl_0_Title\">O Jogo</title>\r\n<META name=\"keywords\" content=\"Notcias, jornal, informao, futebol , nacional, internacional, opinio, jogos, em directo, desporto, sport, sports, superliga, taa, liga, mundo, multimedia, revista J, Benfica, Sporting, Porto, modalidades, andebol, tnis, hoquei, basket, motores, voleibol, Frum, mobile, basquetebol, NBA, futebol, andebol, formula 1, motores, rally, rallies, vela, ciclismo, voleibol, jogador, treinador, futebolista, FIFA, UEFA, mulher, feminino, TV, estatsticas, vdeos da liga, jornal o jogo, o jogo, totojogos, programao tv, meteorologia, servios, epaper, assinaturas o jogo, esm, fia, wrc, f1, auto, jornada, jornal eletrnico, equipas, pilotos, palmars, trofus, taa\"><META name=\"description\" content=\"Jornal dirio desportivo que segue toda a atualidade desportiva com independncia e rigor jornalstico.\">\r\n<meta name=\"id\" content=\"www.ojogo.pt\"/>\r\n<meta name=\"author\" content=\"Controlinveste\"/>\r\n<meta name=\"lang\" content=\"pt\" />\r\n<meta http-equiv=\"pragma\" content=\"no-cache\"/>\r\n<meta http-equiv=\"refresh\" content=\"300\" />\r\n<meta name=\"revisit-after\" content=\"1 days\"/>\r\n<meta name=\"robots\" content=\"index,follow\"/>\r\n\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Ultimas [RSS]\" href=\"http://feeds.ojogo.pt/OJ-ULTIMAS\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Benfica [RSS]\" href=\"http://feeds.ojogo.pt/OJ-BENFICA\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Porto [RSS]\" href=\"http://feeds.ojogo.pt/OJ-PORTO\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Sporting [RSS]\" href=\"http://feeds.ojogo.pt/OJ-SPORTING\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Futebol [RSS]\" href=\"http://feeds.ojogo.pt/OJ-FUTEBOL\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Internacional [RSS]\" href=\"http://feeds.ojogo.pt/OJ-INTERNACIONAL\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Opinio [RSS]\" href=\"http://feeds.ojogo.pt/OJ-OPINIAO\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Modalidades [RSS]\" href=\"http://feeds.ojogo.pt/OJ-MODALIDADES\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - RevistaJ [RSS]\" href=\"http://feeds.ojogo.pt/OJ-REVISTAJ\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"OJ - Euro2012 [RSS]\" href=\"http://feeds.ojogo.pt/OJ-EURO2012\">\r\n\r\n\r\n<meta property=\"og:site_name\" content=\"O Jogo\"/>\r\n\r\n\r\n\t\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" /><link rel=\"alternate\" type=\"application/rss+xml\" title=\"O Jogo\" href=\"http://www.ojogo.pt/rss/\" /><link rel=\"icon\" type=\"image/x-icon\" href=\"/favicon.ico\" /><link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"/favicon.ico\" />\r\n\r\n<!-- CSS -->\r\n<link type=\"text/css\" rel=\"stylesheet\" href=\"/common/css/main_w3c.css?version=1.3\" /><link type=\"text/css\" rel=\"stylesheet\" href=\"/common/css/main_notw3c.css?version=1.3\" />\r\n<!--[if IE 7]>\r\n<link type=\"text/css\" rel=\"stylesheet\" href=\"/common/css/main_ie7.css?version=1.3\" />\r\n<![endif]-->\r\n<!--[if IE 8]>\r\n<link type=\"text/css\" rel=\"stylesheet\" href=\"/common/css/main_ie8.css?version=1.3\" />\r\n<![endif]-->\r\n<!--[if IE 9]>\r\n<link type=\"text/css\" rel=\"stylesheet\" href=\"/common/css/main_ie9.css?version=1.3\" />\r\n<![endif]-->\r\n<link type=\"text/css\" rel=\"stylesheet\" href=\"/common/css/main_override.css?version=1.3\" />\r\n\r\n<!-- SCRIPTS -->\r\n<script type=\"text/javascript\" src=\"/common/script/jquery-1.7.1.js\"></script>\r\n<script type=\"text/javascript\" src=\"/common/script/jquery-ui-1.8.17.js\"></script>\r\n<script type=\"text/javascript\" src=\"/common/script/jquery_plugins.js\"></script>\r\n<script type=\"text/javascript\" src=\"/common/script/onload_functions.js?version=1.3\"></script>\r\n<!--[if lt IE 9]>\r\n<script type=\"text/javascript\" src=\"/common/script/html5.js\"></script>\r\n<![endif]-->\r\n\r\n\r\n \r\n        <script language=\"javascript\" type=\"text/javascript\"> \r\n         AC_FL_RunContent = 0; \r\n         DetectFlashVer = 0; \r\n         requiredMajorVersion = 0;  \r\n         requiredMinorVersion = 0;  \r\n         requiredRevision = 0; \r\n        </script>\r\n\r\n        <script src=\"/Common/Script/AC_RunActiveContent.js\" type=\"text/javascript\" language=\"javascript\"></script>\r\n\r\n        <script src=\"/Common/script/default.js?version=1.3\" type=\"text/javascript\"></script>\r\n\r\n\r\n    <script type=\"text/javascript\" src=\"/common/script/common.js?version=1.3\"></script>\r\n\t  <div id=\"ctl00_ctl00_ctl14_MolduraTop\">\r\n  \r\n</div>\r\n\r\n\r\n\r\n<script type='text/javascript'>var _sf_startpt=(new Date()).getTime()</script>\r\n\r\n<!-- REVENUE SCIENCE AD TAG CODE TOP--> \r\n\r\n<script type=\"text/javascript\">\r\n<!--\r\nvar rsi_segs = [];\r\nvar segs_beg=document.cookie.indexOf('rsi_segs=');\r\nif(segs_beg>=0){\r\n segs_beg=document.cookie.indexOf('=',segs_beg)+1;\r\n if(segs_beg>0){\r\n var segs_end=document.cookie.indexOf(';',segs_beg);\r\n if(segs_end==-1)segs_end=document.cookie.length;\r\n rsi_segs=document.cookie.substring(segs_beg,segs_end).split('|');\r\n}}\r\nvar segLen=20\r\nvar segQS=\"\";\r\nif (rsi_segs.length<segLen){segLen=rsi_segs.length}\r\nfor (var i=0;i<segLen;i++){\r\n   segQS+=(\"rsi\"+\"=\"+rsi_segs[i]+\";\")\r\n}\r\n//-->\r\n</script>\r\n\r\n<!-- END REVENUE SCIENCE AD TAG CODE -->\r\n\r\n<!-- Random Number Double Click -->\r\n\r\n<script language=\"JavaScript\" type=\"text/javascript\">\r\nord=Math.random()*10000000000000000;\r\n</script>\r\n\r\n<!-- End Random Number Double Click -->\r\n\r\n<!-- START Google Analytics -->\r\n\r\n<script type=\"text/javascript\">\r\n\r\n  var _gaq = _gaq || [];\r\n  _gaq.push(['_setAccount', 'UA-2804136-56']);\r\n  _gaq.push(['_trackPageview']);\r\n\r\n  (function() {\r\n    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\r\n    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\r\n    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\r\n  })();\r\n\r\n</script>\r\n\r\n<!-- END Google Analytics -->\r\n\r\n<!-- Google Analytics Social Button Tracking --> \r\n<script src=\"/common/script/ga_social_tracking.js\"></script> \r\n<script> \r\n  _ga.trackSocial();\r\n</script> \r\n<!-- END Google AnalyticsSocial Button Tracking -->\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    <script type=\"text/javascript\">\r\n      var TileID = Math.floor(Math.random()*10000);\r\n    </script>\r\n    <!-- /bsu -->\r\n    <title>\r\n\r\n</title></head>\r\n<!--[if !IE]> ... EXTRA SITE STYLES added to the body tag = \"SiteSt_1\" / \"SiteSt_2\" / \"SiteSt_3\" / \"SiteSt_4\" / \"SiteSt_5\" / \"SiteSt_6\" / \"VideoPL_on\" / \"PrintSt_1\" ... <![endif]-->\r\n<body class=\"\">\r\n\t\r\n\r\n\t    \r\n\r\n<div id=\"fb-root\"></div>\r\n<script>(function(d, s, id) {\r\n  var js, fjs = d.getElementsByTagName(s)[0];\r\n  if (d.getElementById(id)) return;\r\n  js = d.createElement(s); js.id = id;\r\n  js.src = \"//connect.facebook.net/pt_PT/all.js#xfbml=1\";\r\n  fjs.parentNode.insertBefore(js, fjs);\r\n}(document, 'script', 'facebook-jssdk'));</script>\r\n\r\n\r\n\t<form name=\"aspnetForm\" method=\"post\" action=\"inicio/default.aspx\" id=\"aspnetForm\">\r\n<input type=\"hidden\" name=\"__VIEWSTATE\" id=\"__VIEWSTATE\" value=\"/wEPDwUENTM4MQ9kFgJmD2QWAmYPZBYEZg9kFgICEQ9kFgJmDxYCHgdWaXNpYmxlZ2QCAw9kFgYCBA9kFgICAQ9kFgICAQ8WAh4FY2xhc3MFCE1haW5NZW51FgwCAQ8WAh8BBQhNTUxpbmtfMWQCAw8WAh8BBQhNTUxpbmtfMWQCBQ8WAh8BBQhNTUxpbmtfMWQCBw8WAh8BBQhNTUxpbmtfMWQCCQ8WAh8BBQhNTUxpbmtfMWQCCw8WAh8BBQhNTUxpbmtfMWQCCA9kFgICAw9kFgICAQ9kFgICAQ8WAh4JaW5uZXJodG1sBaEOPGRpdiBjbGFzcz0iTExJdGVtIGNsZWFyZml4Ij48YSBjbGFzcz0iTGlua181IiBocmVmPSIvRnV0ZWJvbC8xYV9saWdhL1BvcnRvL2RlZmF1bHQuYXNweCI+VsONREVPU8KgDQogIDwvYT48YSBjbGFzcz0iTExCbG9ja18xIGpRTExIb3Zlcl8yIiBocmVmPSIvRnV0ZWJvbC8xYV9saWdhL1BvcnRvL2ludGVyaW9yLmFzcHg/Y29udGVudF9pZD0yNzIwODY5Ij48c3BhbiBjbGFzcz0iTExJQlBpYyI+PGltZyBzcmM9Ii9zdG9yYWdlL09KLzIwMTIvc21hbGwvbmcyMDczOTY5LmpwZz90eXBlPXNtYWxsIiB3aWR0aD0iMTQ1cHgiIGhlaWdodD0iMTEwcHgiPjxiIGNsYXNzPSJCbGtvdXRfMyI+PC9iPjxpIGNsYXNzPSJQTEljb18xIj48L2k+PC9zcGFuPjxoMj5Hb2xhw6dvIGRlIEl0dXJiZSBuYSBkZXJyb3RhIGNvbSBhIEFsZW1hbmhhPC9oMj48L2E+PC9kaXY+PGRpdiBjbGFzcz0iTExJdGVtIGNsZWFyZml4Ij48YSBjbGFzcz0iTGlua181IiBocmVmPSIvRnV0ZWJvbC8xYV9saWdhL0JlbmZpY2EvZGVmYXVsdC5hc3B4Ij5RdWVpeGEgcG9yIGFncmVzc8OjbyBkbyDDoXJiaXRybyBDaHJpc3RpYW4gRmlzY2hlcjwvYT48YSBjbGFzcz0iTExCbG9ja18xIGpRTExIb3Zlcl8yIiBocmVmPSIvRnV0ZWJvbC8xYV9saWdhL0JlbmZpY2EvaW50ZXJpb3IuYXNweD9jb250ZW50X2lkPTI3MjAwODciPjxzcGFuIGNsYXNzPSJMTElCUGljIj48aW1nIHNyYz0iL3N0b3JhZ2UvT0ovMjAxMi9zbWFsbC9uZzIwNzM0ODIuanBnP3R5cGU9c21hbGwiIHdpZHRoPSIxNDVweCIgaGVpZ2h0PSIxMTBweCI+PGIgY2xhc3M9IkJsa291dF8zIj48L2I+PGkgY2xhc3M9IlBMSWNvXzEiPjwvaT48L3NwYW4+PGgyPlBvbMOtY2lhIGFicmUgaW5xdcOpcml0byBhICJjYXNvIEx1aXPDo28iPC9oMj48L2E+PC9kaXY+PGRpdiBjbGFzcz0iTExJdGVtIGNsZWFyZml4Ij48YSBjbGFzcz0iTGlua181IiBocmVmPSIvRnV0ZWJvbC8xYV9saWdhL0JlbmZpY2EvZGVmYXVsdC5hc3B4Ij4iQ2FzbyBMdWlzw6NvIjwvYT48YSBjbGFzcz0iTExCbG9ja18xIGpRTExIb3Zlcl8yIiBocmVmPSIvRnV0ZWJvbC8xYV9saWdhL0JlbmZpY2EvaW50ZXJpb3IuYXNweD9jb250ZW50X2lkPTI3MTg5MjEiPjxzcGFuIGNsYXNzPSJMTElCUGljIj48aW1nIHNyYz0iL3N0b3JhZ2UvT0ovMjAxMi9zbWFsbC9uZzIwNzI1NzguanBnP3R5cGU9c21hbGwiIHdpZHRoPSIxNDVweCIgaGVpZ2h0PSIxMTBweCI+PGIgY2xhc3M9IkJsa291dF8zIj48L2I+PGkgY2xhc3M9IlBMSWNvXzEiPjwvaT48L3NwYW4+PGgyPkpvw6NvIE5vZ3VlaXJhIGRhIFJvY2hhIGRpeiBxdWUgc2Vyw6EgQ0QgZGEgRlBGIGEgZGVjaWRpcjwvaDI+PC9hPjwvZGl2PjxkaXYgY2xhc3M9IkxMSXRlbSBjbGVhcmZpeCI+PGEgY2xhc3M9IkxpbmtfNSIgaHJlZj0iL29saW1waWNvczIwMTIvb3V0cmFzL2RlZmF1bHQuYXNweCI+UmV0YWxpYcOnw6NvIMOgcyBjcsOtdGljYXMgZHVyYW50ZSBMb25kcmVzJzIwMTI8L2E+PGEgY2xhc3M9IkxMQmxvY2tfMSBqUUxMSG92ZXJfMiIgaHJlZj0iL29saW1waWNvczIwMTIvb3V0cmFzL2ludGVyaW9yLmFzcHg/Y29udGVudF9pZD0yNzIwNTYwIj48c3BhbiBjbGFzcz0iTExJQlBpYyI+PGltZyBzcmM9Ii9zdG9yYWdlL09KLzIwMTIvc21hbGwvbmcyMDczODY3LmpwZz90eXBlPXNtYWxsIiB3aWR0aD0iMTQ1cHgiIGhlaWdodD0iMTEwcHgiPjxiIGNsYXNzPSJCbGtvdXRfMyI+PC9iPjxpIGNsYXNzPSJQTEljb18xIj48L2k+PC9zcGFuPjxoMj5TZWxlw6fDo28gZGUgYW5kZWJvbCBmcmFuY2VzYSBkZXN0csOzaSBlc3TDumRpbyBkYSBMJ0VxdWlwZSBUVjwvaDI+PC9hPjwvZGl2PmQCCQ9kFgICAQ9kFgRmD2QWBAIBDxYCHgV0aXRsZQUJUGVzcXVpc2FyZAIDDxYCHgRocmVmBV5qYXZhc2NyaXB0OkZpbmRTZWFyY2hDcml0ZXJpYSgnY3RsMDBfY3RsMDBfQ29udGVudEZvb3RlckJvdHRvbV9Db21tb25mb290ZXIxX2N0bDAwX3R4dFNlYXJjaCcpZAIBD2QWAgIBDxYCHgRUZXh0BZwOPGRpdiBjbGFzcz0iTExJdGVtIGNsZWFyZml4Ij48YSBocmVmPSJodHRwOi8vd3d3LmRuLnB0L2luaWNpby9nbG9iby9pbnRlcmlvci5hc3B4P2NvbnRlbnRfaWQ9MjcyMTg2MCZhbXA7c2VjY2FvPUVVQSBlIEFtJUU5cmljYXMmYW1wO3JlZmVycmVyPUZvb3Rlck9KJiN4QTsgICAgIiBjbGFzcz0iTExCbG9ja18xIGpRTExIb3Zlcl8yIiB0YXJnZXQ9Il9ibGFuayI+PHNwYW4gY2xhc3M9IkxMSUJQaWMiPjxpbWcgc3JjPSJodHRwOi8vd3d3LmRuLnB0L3N0b3JhZ2UvRE4vMjAxMi9zbWFsbC9uZzIwNzQ4ODIuanBnIiB3aWR0aD0iMTQ1cHgiIGhlaWdodD0iMTEwcHgiIGFsdD0iIj48YiBjbGFzcz0iQmxrb3V0XzMiPjwvYj48aSBjbGFzcz0iUExJY29fMSI+PC9pPjwvc3Bhbj48aDI+QXNzYW5nZSBmaWNhIGhvamUgYSBzYWJlciBzZSBFcXVhZG9yIGxoZSBkw6EgYXNpbG88L2gyPjwvYT48YSBocmVmPSJodHRwOi8vd3d3LmRuLnB0Lz9yZWZlcnJlcj1Gb290ZXJPSiIgY2xhc3M9IkxMQmxvY2tfMSBqUUxMSG92ZXJfMiIgdGFyZ2V0PSJfYmxhbmsiPjxzcGFuIGNsYXNzPSJDSUJyYW5kX0ROIj48L3NwYW4+PC9hPjwvZGl2PjxkaXYgY2xhc3M9IkxMSXRlbSBjbGVhcmZpeCI+PGEgaHJlZj0iaHR0cDovL3d3dy50c2YucHQvUGFnaW5hSW5pY2lhbC9EZXNwb3J0by9JbnRlcmlvci5hc3B4P2NvbnRlbnRfaWQ9MjcyMTg4MyZhbXA7cmVmZXJyZXI9Rm9vdGVyT0omI3hBOyAgICAiIGNsYXNzPSJMTEJsb2NrXzEgalFMTEhvdmVyXzIiIHRhcmdldD0iX2JsYW5rIj48c3BhbiBjbGFzcz0iTExJQlBpYyI+PGltZyBzcmM9Imh0dHA6Ly93d3cudHNmLnB0L3N0b3JhZ2UvVFNGLzIwMTIvc21hbGwvbmcyMDc0OTIxLmpwZyIgd2lkdGg9IjE0NXB4IiBoZWlnaHQ9IjExMHB4IiBhbHQ9IiI+PGIgY2xhc3M9IkJsa291dF8zIj48L2I+PGkgY2xhc3M9IlBMSWNvXzEiPjwvaT48L3NwYW4+PGgyPlBvcnR1Z2FsIGRlcnJvdGEgUGFuYW3DoSBwb3IgMi0wIGVtIHBhcnRpY3VsYXI8L2gyPjwvYT48YSBocmVmPSJodHRwOi8vd3d3LnRzZi5wdC8/cmVmZXJyZXI9Rm9vdGVyT0oiIGNsYXNzPSJMTEJsb2NrXzEgalFMTEhvdmVyXzIiIHRhcmdldD0iX2JsYW5rIj48c3BhbiBjbGFzcz0iQ0lCcmFuZF9UU0YiPjwvc3Bhbj48L2E+PC9kaXY+PGRpdiBjbGFzcz0iTExJdGVtIGNsZWFyZml4Ij48YSBocmVmPSJodHRwOi8vd3d3LmRpbmhlaXJvdml2by5wdC9FQ08vRWNvbm9taWEvQ0lFQ08wNTYxMzkvRWNvbm9taWEvJUMzJTlBbHRpbWFzL0dyZXZlX2Rvc190cmFuc3BvcnRlc19zb19wYXJvdV9jb21ib2lvcyZhbXA7cmVmZXJyZXI9Rm9vdGVyT0omI3hBOyAgICAiIGNsYXNzPSJMTEJsb2NrXzEgalFMTEhvdmVyXzIiIHRhcmdldD0iX2JsYW5rIj48c3BhbiBjbGFzcz0iTExJQlBpYyI+PGltZyBzcmM9Imh0dHA6Ly93d3cuZGluaGVpcm92aXZvLnB0Ly9GaWxlP2REb2NOYW1lPUNJRUNPMDA4NDQwJmFtcDtmaWxlTmFtZT1jaWVjbzAwODQ0MC5qcGcmYW1wO3JlbmRpdGlvbj1zbWFsbCZhbXA7U0lEPTE4NTUxMyIgd2lkdGg9IjE0NXB4IiBoZWlnaHQ9IjExMHB4IiBhbHQ9IiI+PGIgY2xhc3M9IkJsa291dF8zIj48L2I+PGkgY2xhc3M9IlBMSWNvXzEiPjwvaT48L3NwYW4+PGgyPkdyZXZlIGRvcyB0cmFuc3BvcnRlcyBhcGVuYXMgcGFyb3UgY29tYm9pb3MgZGEgQ1A8L2gyPjwvYT48YSBocmVmPSJodHRwOi8vd3d3LmRpbmhlaXJvdml2by5wdC8/cmVmZXJyZXI9Rm9vdGVyT0oiIGNsYXNzPSJMTEJsb2NrXzEgalFMTEhvdmVyXzIiIHRhcmdldD0iX2JsYW5rIj48c3BhbiBjbGFzcz0iQ0lCcmFuZF9EViI+PC9zcGFuPjwvYT48L2Rpdj5kZA==\" />\r\n\r\n<input type=\"hidden\" name=\"__EVENTVALIDATION\" id=\"__EVENTVALIDATION\" value=\"/wEWBALq2rNEAqGE6+EJAonwxGwCpKDGjgk=\" />  \r\n\t\t\t\t<input name=\"ctl00$ctl00$boAddr\" type=\"hidden\" id=\"ctl00_ctl00_boAddr\" /> \r\n\t\t\t\t        \r\n\t\r\n\t\t<input type=\"hidden\" id=\"dataActual\" name=\"dataActual\" value=\"2012-08-16T04:56:19\" />\r\n\t\t<div style=\"display:none\">\r\n\t\t\t\r\n\t\t</div>\r\n\r\n\t\t  \r\n\t\t\t \r\n    <iframe id=\"BarraCI\" src=\"/common/barra/header.html\" marginwidth=\"0\" marginheight=\"0\" width=\"100%\" height=\"33\" frameborder=\"0\" scrolling=\"no\" allowtransparency=\"true\"></iframe>    \r\n<!--[if !IE]> ... HEADER WRAPPER begin ... <![endif]-->\r\n    <header  onclick=\"event.cancelBubble=true;\">\r\n        <div class=\"HeaderBox_1\">\r\n            <div class=\"NavBox_1 clearfix\">\r\n                           \r\n              <h1 id=\"ctl00_ctl00_ContentHeaderTop_headertop1_headerNorm\"><a href=\"/\" class=\"HLogo\">O JOGO Online</a></h1>\r\n                \r\n                <nav class=\"NBCol_1\">\r\n                    <ul>\r\n                        <li><a href=\"/\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_edOnline\" class=\"NBSel\"><span>EDIO ONLINE</span></a></li>\r\n                        <li><a href=\"/jornaldodia\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_jdia\"><span>JORNAL DO DIA</span></a></li>\r\n                        <li><a href=\"/revistaj\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_revistaj\"><span>REVISTA J</span></a></li>\r\n                        <li></li>\r\n                        <li><a href=\"/multimedia\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_multimedia\"><span>MULTIMDIA</span></a></li>\r\n                        <li><a href=\"/euro2012\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_euro2012\" class=\"NBLink_1\"><span>UEFA EURO 2012</span></a></li>\r\n                        <li><a href=\"/olimpicos2012\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_olimpicos2012\" class=\"NBLink_1\"><span>JOGOS OLMPICOS</span></a></li>\r\n\t\t\t\t\t\t\t\t        \r\n                    </ul>\r\n                </nav>\r\n                <nav class=\"NBCol_2\">\r\n                    <ul>\r\n                      \r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_1\">Facebook</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_11\"></em>FACEBOOK</b><b class=\"TTBCont_1\">Tenha acesso ao minuto a toda a informao desportiva.</b><b class=\"TTBCont_2\"><iframe src=\"http://www.facebook.com/plugins/like.php?href=http://www.facebook.com/diariodesportivo.ojogo&amp;layout=button_count\" scrolling=\"no\" frameborder=\"0\" width=\"100px\" height=\"20px\"  allowtransparency=\"true\"></iframe></b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_18\">Google+</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_18\"></em>GOOGLE+</b><b class=\"TTBCont_1\">Tenha acesso ao minuto a toda a informao desportiva.</b><b class=\"TTBCont_2\">\r\n\t\t\t\t\t\t<g:plusone href=\"https://plus.google.com/112154388967023637079\" size=\"standard\" annotation=\"bubble\"></g:plusone>\r\n\r\n\t\t\t\t\t\t<!-- Place this render call where appropriate -->\r\n\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t  window.___gcfg = {lang: 'pt-PT'};\r\n\r\n\t\t\t\t\t\t  (function() {\r\n\t\t\t\t\t\t  var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;\r\n\t\t\t\t\t\t  po.src = 'https://apis.google.com/js/plusone.js';\r\n\t\t\t\t\t\t  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);\r\n\t\t\t\t\t\t  })();\r\n\t\t\t\t\t\t</script>\r\n                        \r\n                        </b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_2\">Twitter</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_12\"></em>TWITTER</b><b class=\"TTBCont_1\">Tenha acesso ao minuto a toda a informao desportiva.</b><b class=\"TTBCont_2\"><a class=\"TweetBtn_3\" href=\"http://twitter.com/ojogo\"><b>Follow</b></a></b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_3\">iOS</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_13\"></em>APP iOS</b><b class=\"TTBCont_2\"><span class=\"BtnBox_5\"><a href=\"http://itunes.apple.com/pt/app/o-jogo/id538431588\" target=\"_blank\">Download App</a></span></b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_4\">Android</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_14\"></em>APP ANDROID</b><b class=\"TTBCont_2\"><span class=\"BtnBox_5\"><a href=\"https://play.google.com/store/apps/details?id=pt.civ.ojogo\" target=\"_blank\">Download App</a></span></b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_5\">Mobile</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_15\"></em>SITE MOBILE</b><b class=\"TTBCont_1\">Toda a informao desportiva na ponta dos seus dedos.</b><b class=\"TTBCont_2\"><span class=\"BtnBox_5\"><a href=\"http://m.ojogo.pt\" target=\"_blank\">m.ojogo.pt</a></span></b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"/rss/\" class=\"IcoLink_6\">RSS</a><span class=\"TTBox_1 jQTT\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_16\"></em>RSS</b><b class=\"TTBCont_1\">Subscreva os nossos feeds e saiba mais sobre esta tecnologia.</b><b class=\"TTBCont_2\"><span class=\"BtnBox_5\"><a href=\"/rss\">Subscrever</a></span></b></strong></span></li>\r\n                        <li class=\"jQToolTip_1\"><a href=\"#\" class=\"IcoLink_Newsletter\">Newsletter</a><span class=\"TTBox_newsletter jQTT\" id=\"newsletterDiv\"><i></i><strong><b class=\"TTBTitle\"><em class=\"Ico_Newsletter\"></em>Newsletter</b><b class=\"TTBCont_1\">\r\n\r\n  <script type=\"text/javascript\" language=\"javascript\">\r\n   \r\nfunction loadFragmentInToElement(fragment_url, obj)\r\n {\r\n    var element = document.getElementById(obj);\r\n\r\n    if ( element ) {\r\n       var xmlhttp; \r\n       if (window.ActiveXObject) // for IE \r\n       { \r\n          xmlhttp = new ActiveXObject(\"Microsoft.XMLHTTP\"); \r\n       } \r\n       else if (window.XMLHttpRequest) // for other browsers \r\n       { \r\n          xmlhttp = new XMLHttpRequest(); \r\n       } \r\n\r\n       element.innerHTML = \"<div class='text' style='margin:10px 0px 5px 0px;'>Aguarde um momento...</div>\"; \r\n       xmlhttp.open(\"GET\", fragment_url);\r\n\r\n       xmlhttp.onreadystatechange = function() {\r\n\r\n           if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {\r\n               var strResponse=xmlhttp.responseText;\r\n               element.innerHTML = strResponse;\r\n               if(strResponse.match(\"obrigado\"))\r\n               {\r\n                 var email = document.getElementById(\"email\");\r\n\t\t\t\t\t  var suText = document.getElementById(\"StartupText\");\r\n\t\t\t\t\t  if(email && suText)\r\n\t\t\t\t\t  {\r\n\t\t\t\t\t\temail.style.display = \"none\";\r\n\t\t\t\t\t\tsuText.style.display = \"none\";\r\n\t\t\t\t\t  }\r\n\t\t\t\t\t}\r\n           }\r\n       }\r\n       xmlhttp.send(null);\r\n    }\r\n}\r\n\r\nfunction empty()\r\n{}\r\n\r\nfunction NClickText(obj)\r\n{\r\n    if ( obj ) {\r\n\t\t  if ( obj.value == obj.title ) obj.value = \"\";\r\n        obj.focus();\r\n        obj.select();\r\n    }\r\n\r\n}\r\n\r\nfunction SubmitNewsletters()\r\n{\r\n  var email = document.getElementById(\"email\");\r\n  var captcha = document.getElementById(\"captcha\");\r\n  var random = document.getElementById(\"random\");\r\n  \r\n  if(email && captcha && random)\r\n  {\r\n\t if(email.value==\"\")\r\n\t {\r\n\t alert(\"Por favor insira o email.\");\r\n      email.focus();\r\n      email.select();  \r\n\t \r\n\t }\r\n\t else if(captcha.value==\"\" || captcha.value==\"Cdigo de validao\")\r\n\t {\r\n\t alert(\"Por favor insira o Cdigo de validao.\");\r\n        captcha.focus();\r\n        captcha.select();  \r\n\t }\r\n\t else if(validateForm(email))\r\n\t {\r\n   var loc = \"\" +\r\n     \"/api/newsletterscaptcha.aspx\" +\r\n       \"?email=\" + escape(email.value) + \r\n       \"&captcha=\" + captcha.value +\r\n       \"&random=\" + random.value;\r\n       \r\n\t\tvar result=loadFragmentInToElement(loc, 'sCaptcha');       \r\n\t }\r\n  }\r\n\r\n}\r\n\r\nfunction validateForm(email)\r\n{\r\nvar x=email.value;\r\nvar atpos=x.indexOf(\"@\");\r\nvar dotpos=x.lastIndexOf(\".\");\r\nif (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length)\r\n  {\r\n  alert(\"o email inserido no  vlido.\");\r\n\t\temail.value = \"\";\r\n        email.focus();\r\n        email.select();  \r\n  return false;\r\n  }\r\n  else\r\n\t return true;\r\n}\r\n   </script>\r\n\r\n<div class=\"Newsletters\">\r\n  \r\n   \r\n\r\n  <div class=\"BoxContent\" id=\"newsletterswrapper\">\r\n\t <div class=\"divEmail\">\r\n\t\t<div class=\"text\" id=\"StartupText\">Registe-se e receba diriamente a newsletter d'O JOGO no seu e-mail.</div> \r\n\t\t<input type=\"text\" name=\"email\" id=\"email\" maxlength=\"150\" style=\"width:205px;\" value=\"Insira o seu e-mail\" title=\"Insira o seu e-mail\" onclick=\"NClickText(this);loadFragmentInToElement('/api/newsletterscaptcha.aspx', 'sCaptcha')\"/>\r\n\t </div>\r\n    <div id=\"sCaptcha\"></div>\r\n  </div>\r\n  \r\n\r\n</div> \r\n\r\n\r\n\r\n</b></strong></span></li>\r\n                    </ul>\r\n                    \r\n\r\n<div class=\"HSearch\"><span class=\"HSField jQInput_1\">\r\n\t\t<input name=\"ctl00$ctl00$ContentHeaderTop$headertop1$Search1$txtSearch\" type=\"text\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_Search1_txtSearch\" value=\"Pesquisar\" onfocus=\"if (this.value.toLowerCase() == 'pesquisar') { this.value=''; }\" onblur=\"if (this.value == '') { this.value='Pesquisar'; }\" onkeydown=\"GoSearch(this, event)\" title=\"Pesquisar\" /></span><a href=\"javascript:FindSearchCriteria('ctl00_ctl00_ContentHeaderTop_headertop1_Search1_txtSearch')\" id=\"ctl00_ctl00_ContentHeaderTop_headertop1_Search1_btSearch\"><b>Pesquisar</b></a></div>\r\n      \r\n    \r\n\r\n                </nav>\r\n            </div>\r\n        </div>\r\n        <div class=\"HeaderBox_2\">\r\n            <div id=\"ctl00_ctl00_ContentHeaderTop_headertop1_LiveBox\" class=\"HBCol_1\">\r\n                <div class=\"Title_1\">FUTEBOL</div>\r\n                <div class=\"BoxSt_1\">\r\n                    <div class=\"ConveyorBox_1 clearfix\">\r\n                        <em>RESULTADOS</em>\r\n                        <div class=\"CvBRoller\">\r\n                        \r\n<!--[if !IE]> ... CONVEYOR BELT begin ... <![endif]-->\r\n<div class=\"CvBItems jQConveyor_1\">\r\n    <ul>\r\n      <li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2699762\">BENFICA\r\n         <b>0-0</b>\r\n         FORTUNA</a></li><li><a>\r\n         <b>1-3</b>\r\n         </a></li><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2699764\">SPORTING\r\n         <b>0-1</b>\r\n         GETAFE</a></li><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2683930\">SPORTING\r\n         <b>3-1</b>\r\n         ST. TIENNE</a></li><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2686046\">BELENENSES\r\n         <b>0-0</b>\r\n         SPORTING</a></li><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2686045\"> ATLTICO\r\n         <b>0-0</b>\r\n         SPORTING</a></li><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2683926\">SANTA CLARA\r\n         <b>0-3</b>\r\n         FC PORTO</a></li><li><a>FEIRENSE\r\n         <b>1-1</b>\r\n         V. GUIMARES</a></li><li><a>V. GUIMARES\r\n         <b>1-1</b>\r\n         PENAFIEL</a></li><li><a>FC PORTO\r\n         <b>3-0</b>\r\n         CELTA DE VIGO</a></li><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2660926\">VIAN\r\n         <b>0-1</b>\r\n         FC PORTO </a></li>\r\n    </ul>\r\n</div>\r\n<!--[if !IE]> ... CONVEYOR BELT end ... <![endif]-->\r\n                            \r\n                            <a href=\"#\" class=\"CvMask_1\"></a>\r\n                            <i class=\"CvMask_2\"></i>\r\n                        </div>\r\n                    </div>\r\n                    <div class=\"ConveyorBox_2 clearfix\">\r\n                        <em>EM DIRETO</em>\r\n                        <div class=\"CvBRoller\">\r\n                        \r\n<!--[if !IE]> ... CONVEYOR BELT begin ... <![endif]-->\r\n<div class=\"CvBItems jQConveyor_2\">\r\n    <ul>\r\n      <li xmlns:util=\"urn:newsgen-scripts\"><a><b>19.AGO20:30</b>\r\n         V. GUIMARES/\r\n         SPORTING</a></li><li xmlns:util=\"urn:newsgen-scripts\"><a><b>19.AGO18:15</b>\r\n         GIL VICENTE/\r\n         FC PORTO</a></li><li xmlns:util=\"urn:newsgen-scripts\"><a><b>18.AGO20:15</b>\r\n         BENFICA/\r\n         BRAGA</a></li><li xmlns:util=\"urn:newsgen-scripts\"><a href=\"/jogosemdirecto/jogo.aspx?content_id=2721680\"><b>15.AGO20:45</b>\r\n         PORTUGAL/\r\n         PANAM</a></li>\r\n    </ul>\r\n</div>\r\n<!--[if !IE]> ... CONVEYOR BELT end ... <![endif]-->\r\n                            \r\n                            <a href=\"#\" class=\"CvMask_1\"></a>\r\n                            <i class=\"CvMask_2\"></i>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n\r\n            <div id=\"ctl00_ctl00_ContentHeaderTop_headertop1_RegularLink\" class=\"HBCol_2\"><a href=\"/olimpicos2012\"><img src=\"/common/images/blank.gif\" width=\"250px\" height=\"87px\" alt=\"\" /></a></div>\r\n            \r\n            \r\n         </div>\r\n\t\t\t\t \r\n    </header>\r\n<!--[if !IE]> ... HEADER WRAPPER end ... <![endif]-->\r\n\r\n\r\n\t\t  \r\n\t\t  \r\n\t\t\t \r\n<!--[if !IE]> ... MAIN MENU WRAPPER begin ... + possible special class for highlighted content ... <![endif]-->\r\n    <nav id=\"ctl00_ctl00_ContentMenu_menu1_navMenu\" onclick=\"event.cancelBubble=true;\" class=\"MainMenu\">\r\n\r\n        <div class=\"MM_Inner\">\r\n\r\n\r\n\r\n            <div class=\"MMCol_1\">\r\n\r\n                <!--[if !IE]> ... Selected text link will have additional class \"MMLink_sel\" ... <![endif]-->\r\n\r\n                <ul>\r\n\r\n                    <li><a href=\"/\" class=\"MMHomeLink\" title=\"Pgina inicial\">HOMEPAGE</a></li>\r\n\r\n                    <li><a href=\"/futebol\" id=\"ctl00_ctl00_ContentMenu_menu1_futebol\" class=\"MMLink_1\"><b>FUTEBOL</b></a></li>\r\n\r\n                    <li><a href=\"/internacional\" id=\"ctl00_ctl00_ContentMenu_menu1_internacional\" class=\"MMLink_1\"><b>INTERNACIONAL</b></a></li>\r\n\r\n                    <li><a href=\"/modalidades\" id=\"ctl00_ctl00_ContentMenu_menu1_modalidades\" class=\"MMLink_1\"><b>MODALIDADES</b></a></li>\r\n\r\n                    <li><a href=\"/opiniao\" id=\"ctl00_ctl00_ContentMenu_menu1_opiniao\" class=\"MMLink_1\"><b>OPINIO</b></a></li>\r\n\r\n                    <li class=\"MMLink_1\"><a href=\"/estatisticas\" id=\"ctl00_ctl00_ContentMenu_menu1_estatisticas\" class=\"MMLink_1\"><b>ESTATSTICAS</b></a></li>\r\n\r\n                    <li><a href=\"/jogosemdirecto\" id=\"ctl00_ctl00_ContentMenu_menu1_jogosemdirecto\" class=\"MMLink_1\"><b>JOGOS EM DIRETO</b></a></li>\r\n\r\n                    <li><a href=\"/forum\" class=\"MMLink_1\"><b>FRUM</b></a></li>\r\n\r\n                </ul>\r\n\r\n            </div>\r\n\r\n            <div class=\"MMCol_2\">\r\n\r\n                <!--[if !IE]> ... Selected text link will have additional class \"MMLink_sel\" ... <![endif]-->\r\n\r\n                <ul>\r\n\r\n                    <li><a href=\"/servicos/videosliga.aspx\" class=\"MMLink_1\"><b>VDEOS DA LIGA</b></a></li>\r\n\r\n                    <li><a href=\"/iniciativas\" class=\"MMLink_1\"><b>INICIATIVAS</b></a></li>\r\n\r\n                    <li class=\"MMServ jQMMServ\"><a href=\"javascript:Empty();\" class=\"MMLink_1\"><b>OUTROS</b></a>\r\n                    \r\n                        <em></em>\r\n                        <ul>\r\n                            <li>\r\n                                <ul class=\"clearfix\">\r\n                                    <li class=\"MMSCol_1 LinkList_19\">\r\n                                        <ul>\r\n                                            <li><a href=\"/servicos/programacaotv.aspx\">PROGRAMAO TV</a></li>\r\n                                            <li><a href=\"/servicos/totojogos.aspx\">TOTOJOGOS</a></li>\r\n                                            <li><a href=\"/servicos/meteorologia.aspx\">METEOROLOGIA</a></li>\r\n                                            <li><a href=\"/servicos/jogos.aspx\">JOGOS</a></li>\r\n                                            <li><a href=\"/servicos/videosliga.aspx\">VDEOS DA LIGA</a></li>\r\n                                        </ul>\r\n                                    </li>\r\n                                    <li class=\"MMSCol_2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t  \r\n\r\n<ul>\r\n    <li>\r\n        <a href=\"/servicos/programacaotv.aspx\" class=\"MMSLink_1 IMGShrink clearfix\">\r\n            <em>DESTAQUE</em>\r\n            <i><b class=\"MMLPic_1\"></b><b class=\"MMSLTxt_2\">SporTV1 Torneio do Guadiana Braga vs Olympiacos </b><b class=\"MMSLTxt_3\">20:45</b></i><strong></strong>\r\n        </a>\r\n    </li>\r\n</ul>\r\n<ul>\r\n    <li>\r\n        <a href=\"/servicos/totojogos.aspx\" class=\"MMSLink_2 clearfix\">\r\n            <em>LTIMA CHAVE DO EUROMILHES</em>\r\n            <strong class=\"BetGames_2\"><span class=\"BGBTitle_1\"><i></i>Euromilhes<b>CONCURSO065/2012</b></span><span class=\"BGBList_1 clearfix\"><span>1</span><span>16</span><span>38</span><span>42</span><span>45</span><span class=\"BGBSep_1\">+</span><span>9</span><span>10</span></span></strong>\r\n        </a>\r\n    </li>\r\n</ul>\r\n<ul>\r\n    <li>\r\n        <a href=\"/servicos/meteorologia.aspx\" class=\"MMSLink_3 clearfix\">\r\n            <em>PREVISO PARA HOJE</em>\r\n            <strong class=\"MeteoBox_2 clearfix\">\r\n\t\t\t\t  <span class=\"MeteoCol_1\"><span class=\"MeteoInf_1\">Lisboa</span><span class=\"MeteoInf_2\"><img src=\"/Common/Images/meteo/32.png\" width=\"75\" height=\"75\" alt=\"\"></span><span class=\"MeteoInf_3\"><b>28\r\n\t\t\t </b><i>16\r\n\t\t\t </i></span></span>\r\n\t\t\t\t  <span class=\"MeteoCol_2\"><span class=\"MeteoInf_1\">Porto</span><span class=\"MeteoInf_2\"><img src=\"/Common/Images/meteo/32.png\" width=\"75\" height=\"75\" alt=\"\"></span><span class=\"MeteoInf_3\"><b>22\r\n\t\t\t </b><i>11\r\n\t\t\t </i></span></span>\r\n            </strong>\r\n        </a>\r\n    </li>\r\n</ul>\r\n<ul>\r\n    <li>\r\n        <a href=\"/servicos/jogos.aspx\" class=\"MMSLink_4 clearfix\">\r\n            <em>EXPERIMENTAR JOGAR</em>\r\n\t\t\t\t<strong class=\"MMSBox_1 clearfix\"><span class=\"MMSBox_2\"><span class=\"MMSBox_3\">Desert Operations</span><span class=\"MMSBox_4\">Jogo de Estratgia Militar Online</span></span><span class=\"MMSBox_5\"><img src=\"/storage/OJ/2012/small/ng1963672.jpg?type=small\" width=\"114px\" height=\"74px\"></span></strong>\r\n        </a>\r\n    </li>\r\n</ul>\r\n<ul>\r\n    <li>\r\n\t\t\r\n\r\n\r\n\r\n<a href=\"/servicos/videosliga.aspx\" class=\"MMSLink_4 clearfix\">\r\n    <em id=\"ctl00_ContentMenu_menu1__ctrl_0__ctrl_0_pJornada\">30 Jornada</em>\r\n    <strong class=\"MMSBox_1 clearfix\">\r\n\t\t<span class=\"MMSBox_2\"><span class=\"MMSBox_4\"> U. Leiria 2 - 3 Nacional</span></span><span class=\"MMSBox_5\"><img src=\"http://cache08.stormap.sapo.pt/vidstore08/thumbnais/ce/cb/32/5718046_9df2z.jpg\" alt=\"\" /></span>\r\n    </strong>\r\n</a>\r\n\r\n\r\n\r\n\r\n    </li>\r\n</ul>                                        \r\n\r\n                                    </li>\r\n                                </ul>\r\n                            </li>\r\n                        </ul>\r\n                        \r\n                    </li>\r\n                </ul>\r\n\r\n            </div>\r\n\r\n        </div>\r\n\r\n    </nav>\r\n<!--[if !IE]> ... MAIN MENU WRAPPER end ... <![endif]-->\r\n\r\n\t\t  \r\n\t\t <section class=\"MCTakeover_1\">\r\n\t\t\t<section class=\"MainContent\" style=\"background-color:; background-image:;\" onclick=\"event.cancelBubble=true;\">\r\n          \r\n\t\t\t  \r\n\t\t\t\t <div id=\"ctl00_ctl00_ContentMenuClubs_divMenuClubes\">\r\n\r\n<div class=\"VSep_1\"></div>\r\n<div id=\"ctl00_ctl00_ContentMenuClubs_menu_clubes_menuWrapper\">\r\n<nav class=\"ClubNav_1  jQClubHover_1\">\r\n    <ul>\r\n        <li><a href=\"/futebol/1a_liga/porto\" class=\"CNLink_1 \" title=\"FC Porto\">FC Porto</a></li>\r\n        <li><a href=\"/futebol/1a_liga/benfica\" class=\"CNLink_2 \" title=\"Benfica\">Benfica</a></li>\r\n        <li><a href=\"/futebol/1a_liga/sporting_braga\" class=\"CNLink_3 \" title=\"Braga\">Braga</a></li>\r\n        <li><a href=\"/futebol/1a_liga/sporting\" class=\"CNLink_4 \" title=\"Sporting\">Sporting</a></li>\r\n        <li><a href=\"/futebol/1a_liga/maritimo\" class=\"CNLink_5 \" title=\"Martimo\">Martimo</a></li>\r\n        <li><a href=\"/futebol/1a_liga/vitoria_guimaraes\" class=\"CNLink_6 \" title=\"V. Guimares\">V. Guimares</a></li>\r\n        <li><a href=\"/futebol/1a_liga/nacional\" class=\"CNLink_7 \" title=\"Nacional\">Nacional</a></li>\r\n        <li><a href=\"/futebol/1a_liga/olhanense\" class=\"CNLink_8 \" title=\"Olhanense\">Olhanense</a></li>\r\n        <li><a href=\"/futebol/1a_liga/gil_vicente\" class=\"CNLink_9 \" title=\"Gil Vicente\">Gil Vicente</a></li>\r\n        <li><a href=\"/futebol/1a_liga/pacos_ferreira\" class=\"CNLink_10 \" title=\"Paos de Ferreira\">Paos de Ferreira</a></li>\r\n        <li><a href=\"/futebol/1a_liga/vitoria_setubal\" class=\"CNLink_11 \" title=\"V. Setbal\">V. Setbal</a></li>\r\n        <li><a href=\"/futebol/1a_liga/beira_mar\" class=\"CNLink_12 \" title=\"Beira-Mar\">Beira-Mar</a></li>\r\n        <li><a href=\"/futebol/1a_liga/academica\" class=\"CNLink_13 \" title=\"Acadmica\">Acadmica</a></li>\r\n        <li><a href=\"/futebol/1a_liga/rio_ave\" class=\"CNLink_14 \" title=\"Rio Ave\">Rio Ave</a></li>\r\n        <li><a href=\"/futebol/1a_liga/estoril\" class=\"CNLink_15 \" title=\"Estoril\">Estoril</a></li>\r\n        <li><a href=\"/futebol/1a_liga/moreirense\" class=\"CNLink_16 \" title=\"Moreirense\">Moreirense</a></li>\r\n    </ul>\r\n</nav>\r\n</div></div>\r\n\t\t\t\t \r\n\t\t\t\t \r\n\r\n\t\t\t  \r\n\r\n\r\n\t\t\t\t\r\n    <script type=\"text/javascript\" charset=\"utf-8\">\r\n\tvar mob;\r\n\tif(!navigator.userAgent.match(/(Android)/gi) && navigator.userAgent.match(/(Macintosh)|(WindowsNT)|(Windows NT)|(WinNT)|(WindowsXP)|(Windows XP)|(Windows98)|(Windows 98)|(Win98)|(Windows95)|(Windows 95)|(Win95)|(Linux)/gi))\r\n\t\tmob = false;\r\n\telse\r\n\t\tmob = true;\r\n\tif(mob && confirm('Quer aceder  verso optimizada para plataformas mveis?')) window.location = 'http://m.ojogo.pt';\r\n    </script>\r\n\r\n  \r\n\r\n<div id=\"ctl00_ctl00_ContentHeader__ctrl_0_opt2\">\r\n<section class=\"ContWrap_1 clearfix\">\r\n            \r\n  <div class=\"ContCol_1 clearfix\">\r\n            \r\n<!--[if !IE]> ... FEATURED GALLERY begin ... <![endif]-->\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n// initialize featured gallery (object identifier)\r\njQ(function(){ initFeaturedGallery_1('.jQFeaturedGal_1'); });\r\n//]]>\r\n</script>\r\n\r\n\t <!--[if !IE]> This gallery object identifier for javascript:  jQFeaturedGal_1  <![endif]-->\r\n\t <div class=\"FeatGal_1 jQFeatGalBox jQFeaturedGal_1\">\r\n    \r\n\t\t  <div class=\"FGStage_1 jQFGStage\"></div>\r\n        \r\n\t\t  <div class=\"FGScrollOverlay_1\"></div>\r\n\t\t  <div class=\"FGScrollBox_1\">\r\n\t\t\t\t<div class=\"FGScroll_1 jQScroller_1\" style=\"visibility: visible; overflow-x: hidden; overflow-y: hidden; position: relative; z-index: 2; left: 0px; height: 273px; \">\r\n\t\t\t\t\t <ul class=\"clearfix\" style=\"margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; position: relative; list-style-type: none; z-index: 1; height: 364px; top: 0px; \">\r\n\t\t\t\t\t\t<li style=\"overflow-x: hidden; overflow-y: hidden; float: none; width: 131px; height: 91px; \"><a class=\"jQFGItem jQFGLoad_1 FGItem_sel\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721290\"><img src=\"/storage/OJ/2012/small/ng2074243.jpg?type=small\" width=\"114px\" height=\"86px\"><em>E quer tomar medidas rapidamente<b>FIFA investiga incidente com...</b></em><i></i></a><div class=\"FeatEmbedCode JQFeatEmbedCode\"><div class=\"ArtDest_1\"><div class=\"ADPic\"><a href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721290\"><img src=\"/storage/OJ/2012/destaque/ng2074245.jpg?type=destaque\" width=\"643px\" height=\"280px\"></a></div><div class=\"ADCaption_1 ADCaptionSt_1\"><strong><a class=\"ADCLink_3\" href=\"/Futebol/1a_liga/Benfica/default.aspx\">E quer tomar medidas rapidamente</a><a target=\"_top\" class=\"ADCLink_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721290\">FIFA investiga incidente com Luiso</a></strong><p name=\"statsContainer\"><a class=\"IcoLink_10 Ico_2\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721290#Comment\">Comentar</a><input name=\"stats3Id\" type=\"hidden\" value=\"2721290\"></p><script>\n      AddStatsItem('2721290', '4864326')\n    </script></div></div></div></li><li style=\"overflow-x: hidden; overflow-y: hidden; float: none; width: 131px; height: 91px; \"><a class=\"jQFGItem jQFGLoad_1 \" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721301\"><img src=\"/storage/OJ/2012/small/ng2074257.jpg?type=small\" width=\"114px\" height=\"86px\"><em>Representante do mdio rene-se com a SAD<b>Adrien volta  mesa de negociaes</b></em><i></i></a><div class=\"FeatEmbedCode JQFeatEmbedCode\"><div class=\"ArtDest_1\"><div class=\"ADPic\"><a href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721301\"><img src=\"/storage/OJ/2012/destaque/ng2074259.jpg?type=destaque\" width=\"643px\" height=\"280px\"></a></div><div class=\"ADCaption_1 ADCaptionSt_1\"><strong><a class=\"ADCLink_3\" href=\"/Futebol/1a_liga/Sporting/default.aspx\">Representante do mdio rene-se com a SAD</a><a target=\"_top\" class=\"ADCLink_2\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721301\">Adrien volta  mesa de negociaes</a></strong><p name=\"statsContainer\"><a class=\"IcoLink_10 Ico_2\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721301#Comment\">Comentar</a><input name=\"stats3Id\" type=\"hidden\" value=\"2721301\"></p><script>\n      AddStatsItem('2721301', '4864409')\n    </script></div></div></div></li><li style=\"overflow-x: hidden; overflow-y: hidden; float: none; width: 131px; height: 91px; \"><a class=\"jQFGItem jQFGLoad_1 \" href=\"/Internacional/cristiano_ronaldo/interior.aspx?content_id=2721537\"><img src=\"/storage/OJ/2012/small/ng2074525.jpg?type=small\" width=\"114px\" height=\"86px\"><em>\"O que se diz  puramente meditico\"<b>Messi diz que nunca fomentou...</b></em><i></i></a><div class=\"FeatEmbedCode JQFeatEmbedCode\"><div class=\"ArtDest_1\"><div class=\"ADPic\"><a href=\"/Internacional/cristiano_ronaldo/interior.aspx?content_id=2721537\"><img src=\"/storage/OJ/2012/destaque/ng2074623.jpg?type=destaque\" width=\"643px\" height=\"280px\"></a></div><div class=\"ADCaption_1 ADCaptionSt_1\"><strong><a class=\"ADCLink_3\" href=\"/Internacional/cristiano_ronaldo/default.aspx\">\"O que se diz  puramente meditico\"</a><a target=\"_top\" class=\"ADCLink_2\" href=\"/Internacional/cristiano_ronaldo/interior.aspx?content_id=2721537\">Messi diz que nunca fomentou qualquer...</a></strong><p name=\"statsContainer\"><a class=\"IcoLink_10 Ico_2\" name=\"statsRepliesContainer\" href=\"/Internacional/cristiano_ronaldo/interior.aspx?content_id=2721537#Comment\">Comentar</a><input name=\"stats3Id\" type=\"hidden\" value=\"2721537\"></p><script>\n      AddStatsItem('2721537', '4865639')\n    </script></div></div></div></li>\r\n\t\t\t\t\t </ul>\r\n\t\t\t\t</div>\r\n\t\t  </div>\r\n        \r\n\t\t  <span class=\"FeatNavPrev jQFG_Prev disabled\"><b>Anterior</b><i></i></span>\r\n\t\t  <span class=\"FeatNavNext jQFG_Next\"><b>Prximo</b><i></i></span>\r\n        \r\n\t </div>\r\n<!--[if !IE]> ... FEATURED GALLERY end ... <![endif]-->\r\n            \r\n    </div>\r\n    \r\n    <div class=\"ContCol_2 clearfix\">\r\n        <div class=\"BoxSt_2 NoMarginBot\">\r\n            \t \r\n\r\n\r\n<div class=\"BoxSt_24 clearfix\">\r\n    <div class=\"Title_4\"><a href=\"/multimedia\">Vdeos</a></div>\r\n\r\n<!--[if !IE]> ... VIDEO GALLERY begin ... <![endif]-->\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n// initialize video gallery (object identifier)\r\njQ(function(){ initVideoGallery_1('.jQVidGal_1'); });\r\n//]]>\r\n</script>\r\n\r\n    <!--[if !IE]> This gallery object identifier for javascript:  jQVidGal_1  <![endif]-->\r\n\r\n<!--[if !IE]> ... VIDEO GALLERY end ... <![endif]-->\r\n\r\n<!--[if !IE]> ... VIDEO GALLERY begin ... <![endif]-->\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n// initialize video gallery (object identifier)\r\njQ(function(){ initVideoGallery_1('.jQVidGal_2'); });\r\n//]]>\r\n</script>\r\n\r\n<div id=\"ctl00_ctl00_ContentHeader__ctrl_0__ctrl_0_BoxBig\" class=\"VideoGal_1 VideoInCol_1 jQVidGalBox jQVidGal_2\">\r\n<div class=\"VGStage_1 jQVGStage\">\r\n\r\n    <div class=\"Video_1 NoMargin\">\r\n\r\n        <a href=\"#\" class=\"jQVideoPlay_1\">\r\n\r\n            <img id=\"photo\" src=\"/common/images/blank.gif\" width=\"320px\" alt=\"\" />\r\n\r\n\t\t\t\t<b class=\"VidBlackout_1\"></b>\r\n\r\n            <b class=\"VidCaption_1\"><b></b></b>\r\n\r\n            <i></i>\r\n\r\n            <strong><em>PLAY</em></strong>\r\n\r\n        </a>\r\n\r\n        <div class=\"VidEmbed jQVideoEmbed_1\"></div>\r\n\r\n    </div>\r\n\r\n</div>\r\n                            \r\n<div class=\"VGScroll_1 jQScroller_1\">\r\n\r\n  <ul class=\"clearfix\">\r\n\t<li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2718539\"><img src=\"/storage/OJ/2012/small/ng2072241.jpg?type=small\" width=\"82px\" alt=\"Sergio Ramos verso 2.0\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2072242.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/uMqGSYQ1Up8?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/uMqGSYQ1Up8?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2714531\"><img src=\"/storage/OJ/2012/small/ng2068350.jpg?type=small\" width=\"82px\" alt=\"Arbeloa e Higuain no &quot;football&quot;\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2068507.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/RYOdYQwI5XE?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/RYOdYQwI5XE?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2712701\"><img src=\"/storage/OJ/2012/small/ng2066786.jpg?type=small\" width=\"82px\" alt=\"Meu querido p esquerdo\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2066787.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/zF3VfFMPEE0?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/zF3VfFMPEE0?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2705927\"><img src=\"/storage/OJ/2012/small/ng2060570.jpg?type=small\" width=\"82px\" alt=\"Seedorf marca pelo Botafogo\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2060577.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/HkMj7J6oIno?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/HkMj7J6oIno?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2703181\"><img src=\"/storage/OJ/2012/small/ng2058163.jpg?type=small\" width=\"82px\" alt=\"Recordista aos 90 anos \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2058164.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/pX9h5PVNGaY?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/pX9h5PVNGaY?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2675826\"><img src=\"/storage/OJ/2012/small/ng2036725.jpg?type=small\" width=\"82px\" alt=\"Golo fenomenal na segunda diviso russa \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2036726.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/sK3rEzzy_kk?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/sK3rEzzy_kk?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2674725\"><img src=\"/storage/OJ/2012/small/ng2035700.jpg?type=small\" width=\"82px\" alt=\"Thierry Henry sabe e no esquece\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2035701.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/duH4Mhuik48?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/duH4Mhuik48?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2697580\"><img src=\"/storage/OJ/2012/small/ng2053920.jpg?type=small\" width=\"82px\" alt=\"Real Madrid no basebol...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2053921.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/OybF-7nWYVk?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/OybF-7nWYVk?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2692403\"><img src=\"/storage/OJ/2012/small/ng2049529.jpg?type=small\" width=\"82px\" alt=\"Golo de 'Lucho' no Valncia-FC Porto\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2049530.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/tHhHMJDV8Po?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/tHhHMJDV8Po?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2691422\"><img src=\"/storage/OJ/2012/small/ng2048546.jpg?type=small\" width=\"82px\" alt=\"Golao de Enzo Perez contra o Real Madrid \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2048547.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/BSlmeO272jg?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/BSlmeO272jg?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2684261\"><img src=\"/storage/OJ/2012/small/ng2043203.jpg?type=small\" width=\"82px\" alt=\"Corrida de Saltos-Altos na Rssia \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2043204.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/GlRJqwAS-lw?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/GlRJqwAS-lw?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2673000\"><img src=\"/storage/OJ/2012/small/ng2034907.jpg?type=small\" width=\"82px\" alt=\"Boulahrouz? Ronaldo conhece bem \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2034906.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/GIYHDU2b7DM?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/GIYHDU2b7DM?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2672146\"><img src=\"/storage/OJ/2012/small/ng2034305.jpg?type=small\" width=\"82px\" alt=\"Ex-Belenenses marca golao... na prpria baliza\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2034306.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/KgUOwtlTV20?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/KgUOwtlTV20?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2669636\"><img src=\"/storage/OJ/2012/small/ng2032748.jpg?type=small\" width=\"82px\" alt=\"A arte do parkour \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2032747.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/az27ffuGEFc?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/az27ffuGEFc?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2656891\"><img src=\"/storage/OJ/2012/small/ng2022892.jpg?type=small\" width=\"82px\" alt=\"Neymar e a arte da simulao \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2022893.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/rsZDlY22m_M?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/rsZDlY22m_M?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2654952\"><img src=\"/storage/OJ/2012/small/ng2021314.jpg?type=small\" width=\"82px\" alt=\"O nascimento de um piloto de F1\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2021341.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/kJZr6cUj1x0?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/kJZr6cUj1x0?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2652532\"><img src=\"/storage/OJ/2012/small/ng2019217.jpg?type=small\" width=\"82px\" alt=\"Centenas  espera de Seedorf no Galeo\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2019226.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/SCq0IJRhgvA?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/SCq0IJRhgvA?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2644279\"><img src=\"/storage/OJ/2012/small/ng2012947.jpg?type=small\" width=\"82px\" alt=\"Duplo loop em carros reais \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2012948.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/e0Y8tmRYYiA?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/e0Y8tmRYYiA?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2667910\"><img src=\"/storage/OJ/2012/small/ng2031452.jpg?type=small\" width=\"82px\" alt=\"Pregos no caminho do Tour\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2031453.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/VoL44VL2rok?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/VoL44VL2rok?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2654586\"><img src=\"/storage/OJ/2012/small/ng2020889.jpg?type=small\" width=\"82px\" alt=\"No  um ttulo...  Forln\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2020895.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/6UIfhM19VWY&amp;feature=related?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/6UIfhM19VWY&amp;feature=related?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2641850\"><img src=\"/storage/OJ/2012/small/ng2010499.jpg?type=small\" width=\"82px\" alt=\"Bolt mais veloz do que Alonso\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2010500.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/xdFBRU4Pwxk?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/xdFBRU4Pwxk?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2676400\"><img src=\"/storage/OJ/2012/small/ng2037049.jpg?type=small\" width=\"82px\" alt=\"A verdadeira dana para a vitria (com vdeo)\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2037050.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/tMgmYutL9W0?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/tMgmYutL9W0?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2641971\"><img src=\"/storage/OJ/2012/small/ng2010638.jpg?type=small\" width=\"82px\" alt=\"Espanha-Itlia na Biquini League\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2010639.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/mUmJ8JnWiIo?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/mUmJ8JnWiIo?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2632196\"><img src=\"/storage/OJ/2012/small/ng2003209.jpg?type=small\" width=\"82px\" alt=\" &quot;Drift&quot; em pleno oceano\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2003210.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/fipuxSwWIGI?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/fipuxSwWIGI?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2623398\"><img src=\"/storage/OJ/2012/small/ng1995335.jpg?type=small\" width=\"82px\" alt=\"Portugus lesiona-se com gravidade na Liga Europeia de...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1995334.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/z8xyq9a4jq0?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/z8xyq9a4jq0?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/revistaj/videos.aspx?content_id=2565130\"><img id=\"imgVideoSmall_1666753863001\" src=\"\" width=\"82px\" alt=\"A nova dimenso da J\"><b class=\"VidImgUrl jQVidImgUrl\"><img id=\"imgVideoHighlight_1666753863001\" src=\"\" alt=\"\"></b><script type=\"text/javascript\">\n              jQ(function(){ callJsonPhotosCaixaVideos(1666753863001,'#imgVideoSmall_1666753863001','#imgVideoHighlight_1666753863001','#img_default1666753863001','10','1') });\n            </script><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbedB jQVideoEmbed_1\"><div style=\"display:none\"></div><script type=\"text/javascript\" src=\"http://admin.brightcove.com/js/BrightcoveExperiences.js\"></script><object id=\"myExperience1666753863001\" class=\"BrightcoveExperience\" data=\"0\" type=\"text/css\"><param name=\"wmode\" value=\"transparent\"><param name=\"bgcolor\" value=\"#FFFFFF\"><param name=\"width\" value=\"320\"><param name=\"height\" value=\"172\"><param name=\"playerID\" value=\"1533028667001\"><param name=\"playerKey\" value=\"AQ~~,AAABLy8hxSk~,U6lmWevbFH4d5LPSWPf3KqrM-kcyHf0-\"><param name=\"isVid\" value=\"true\"><param name=\"isUI\" value=\"true\"><param name=\"dynamicStreaming\" value=\"true\"><param name=\"@videoPlayer\" value=\"1666753863001\"><param name=\"linkBaseURL\" value=\"http://www.ojogo.pt/revistaj/videos.aspx?content_id=2565130\"></object><script type=\"text/javascript\">brightcove.createExperiences();</script></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2609120\"><img src=\"/storage/OJ/2012/small/ng1983723.jpg?type=small\" width=\"82px\" alt=\"Cmara &quot;agride&quot; Neymar \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1983724.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/hHu5mFBHxv0?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/hHu5mFBHxv0?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2591021\"><img src=\"/storage/OJ/2012/small/ng1969037.jpg?type=small\" width=\"82px\" alt=\"O atropelamento de Jean Ragnotti nas WSR em Spa\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1969028.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/3TfUM0bdfgs?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/3TfUM0bdfgs?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2595453\"><img src=\"/storage/OJ/2012/small/ng1972374.jpg?type=small\" width=\"82px\" alt=\"Nadar com tubares \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1972375.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/ucivXRBrP_0?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/ucivXRBrP_0?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2616555\"><img src=\"/storage/OJ/2012/small/ng1990882.jpg?type=small\" width=\"82px\" alt=\"Pensando bem, os gregos ganham\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1990881.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/ta1KfRX06kA?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/ta1KfRX06kA?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2568521\"><img src=\"/storage/OJ/2012/small/ng1964404.jpg?type=small\" width=\"82px\" alt=\"Sauber parte F.1 em dois\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1964403.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/_Wn1EFLa2C8?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/_Wn1EFLa2C8?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2561521\"><img src=\"/storage/OJ/2012/small/ng1962608.jpg?type=small\" width=\"82px\" alt=\"Grandes momentos de desporto Radical \"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1962609.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/Zj4M8uLLjMc?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/Zj4M8uLLjMc?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2546460\"><img src=\"/storage/OJ/2012/small/ng1954113.jpg?type=small\" width=\"82px\" alt=\"Guarda redes do Arsenal surpreende\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1954101.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/00zwm5qJvYw?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/00zwm5qJvYw?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2552980\"><img src=\"/storage/OJ/2012/small/ng1958448.jpg?type=small\" width=\"82px\" alt=\"Golao de Alecsandro, ex-Sporting, ao servio do Vasco\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1958449.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/sT-20OBujNg?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/sT-20OBujNg?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/OJogo/interior.aspx?content_id=2553498\"><img src=\"/storage/OJ/2012/small/ng1958879.jpg?type=small\" width=\"82px\" alt=\"Chefe Gordon Ramsay &quot;afiambrado&quot; por Teddy Sheringham\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1958880.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/0s52pYMxiYE&amp;feature=endscreen?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/0s52pYMxiYE&amp;feature=endscreen?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li><li><a class=\"jQVGItem jQVGLoad_1\" href=\"/multimedia/videos.aspx?content_id=2578709\"><img src=\"/storage/OJ/2012/small/ng1965696.jpg?type=small\" width=\"82px\" alt=\"Os 10 melhores afundanos da NBA 2011/2012\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1965697.jpg?type=highlight</b><em></em></a><div class=\"VidEmbedCode JQVidEmbedCode\"><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"320\" height=\"183\"><param name=\"movie\" value=\"http://www.youtube.com/v/idlYCrgDjX4?fs=1&amp;hl=en_US&amp;rel=0\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/idlYCrgDjX4?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"320\" height=\"183\" allowfullscreen=\"true\"></embed></object></div></div></li>\r\n  </ul>\r\n</div>\r\n\r\n<span class=\"VidNavPrev jQVG_Prev disabled\"><b>Anterior</b></span>\r\n<span class=\"VidNavNext jQVG_Next\"><b>Prximo</b></span>\r\n    \r\n</div>\r\n\r\n\r\n\r\n\r\n</div>\r\n\r\n\r\n        </div>\r\n    </div>\r\n    \r\n</section>\r\n</div>\r\n\r\n\r\n      \t\r\n\t\t\t  \r\n\t\t\t\t <section class=\"ContWrap_2 clearfix\">\r\n\t\t\t\t\t\r\n  \r\n\r\n<div id=\"ctl00_ctl00_ContentBody_ContentBody_ColCenter__ctrl_1_colWrapper\" class=\"ContCol_1\">\r\n  <div class=\"Video_1\"><a class=\"jQVideoPlay_1\" href=\"/multimedia/videos.aspx?content_id=2718304\"><img src=\"/storage/OJ/2012/highlight/ng2072008.jpg?type=highlight\" width=\"306px\"><b class=\"VidBlackout_1\"></b><b class=\"VidCaption_1\"><b>Acidente em Pikes Peak. Assustador!</b></b><i></i><strong><em>PLAY</em></strong></a><div class=\"VidEmbed jQVideoEmbed_1\"><object width=\"306\" height=\"172\"><param name=\"movie\" value=\"http://www.youtube.com/v/zEUrEPPABbY?fs=1&amp;hl=en_US&amp;rel=0&amp;autoplay=1\"><param name=\"wmode\" value=\"transparent\"><embed src=\"http://www.youtube.com/v/zEUrEPPABbY?fs=1&amp;hl=en_US&amp;rel=0\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"306\" height=\"172\" allowfullscreen=\"true\"></embed></object></div></div>\r\n  \r\n\r\n<div class=\"PubBox_300\">\r\n<!-- begin ad tag 300x100 -->\r\n<script type=\"text/javascript\">\r\n\tdocument.write('<script language=\"JavaScript\" src=\"http://ad.pt.doubleclick.net/adj/ojogo.pt/HOMEPAGE;' + segQS + ';pos=300x100;tile=5;dcopt=ist;sz=300x100;ord=' + ord + ';?\"><\\/script>');</script> \r\n\t<noscript><ahref=\"http://ad.pt.doubleclick.net/jump/ojogo.pt/HOMEPAGE;pos=300x100;tile=5;sz=300x100;ord=123456789?\" target=\"_blank\"> \r\n\t<img src=\"http://ad.pt.doubleclick.net/ad/ojogo.pt/HOMEPAGE;pos=300x100;tile=5;sz=300x100;ord=123456789?\" width=\"300\" height=\"100\" border=\"0\" alt=\"\"></a></noscript> \r\n<!-- End ad tag 300x100 -->\r\n</div>\r\n\r\n  \r\n\r\n\r\n<div class=\"BoxSt_2 BoxSt_6\">\r\n    <div class=\"BoxSt_3 clearfix\">\r\n    \r\n        <div class=\"Title_2\"><a href=\"/jornaldodia\">Jornal do Dia</a></div>\r\n\t\t  <div class=\"BoxSt_7\"><div class=\"LinkList_1\"><div class=\"LLItem clearfix\"><a href=\"javascript:Empty();\" id=\"jdLink\" class=\"LLBlock_1 jQLLHover_2\"><h2><img src=\"/common/images/key1.png\" alt=\"Contedo exclusivo\" title=\"Contedo exclusivo\" class=\"Ico_3\"><b>A presena de Nlson Oliveira</b></h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074997.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Bem se pode dizer que agarrou a titularidade com ambas as mos, aproveitando para marcar um golao. E dizer a Paulo Bento que pode...</em></a></div></div></div>\r\n    \r\n        <div class=\"Title_2\"><a href=\"/jornaldodia\">Outras Notcias</a></div>\r\n        <div class=\"BoxSt_7\">\r\n            <div class=\"LinkList_2\">\r\n                <ul>\r\n\t\t\t\t\t\t      <li class=\"clearfix\"><a href=\"javascript:Empty();\" id=\"jdLink\"><strong><img src=\"/common/images/key1.png\" alt=\"Contedo exclusivo\" title=\"Contedo exclusivo\" class=\"Ico_3\">\"Inter perguntou-se por Fernando\"</strong></a></li><li class=\"clearfix\"><a href=\"javascript:Empty();\" id=\"jdLink\"><strong><img src=\"/common/images/key1.png\" alt=\"Contedo exclusivo\" title=\"Contedo exclusivo\" class=\"Ico_3\">Onyewu abre vaga para um avanado</strong></a></li><li class=\"clearfix\"><a href=\"javascript:Empty();\" id=\"jdLink\"><strong><img src=\"/common/images/key1.png\" alt=\"Contedo exclusivo\" title=\"Contedo exclusivo\" class=\"Ico_3\">\"rbitro nem me quis receber\"</strong></a></li>\r\n                </ul>\r\n            </div>\r\n        </div>\r\n        \r\n        <div class=\"BoxSt_7\">\r\n            <div class=\"PicBox_1 clearfix\">\r\n            \t<div class=\"PBCol_1\">\r\n\t\t\t\t        <a class=\"PicLink_1 jQLLHover_3\" href=\"javascript:Empty();\" id=\"jdLink\"><img src=\"/storage/OJ/2012/small/ng2075022.jpg?type=small\" width=\"134px\" height=\"178px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></a>\r\n              </div>\r\n            \t<div class=\"PBCol_2\">\r\n\t\t\t\t        <a class=\"PicLink_1 jQLLHover_3\" href=\"javascript:Empty();\" id=\"jdLink\"><img src=\"/storage/OJ/2012/small/ng2073944.jpg?type=small\" width=\"134px\" height=\"178px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></a>\r\n              </div>\r\n            </div>\r\n        </div>\r\n        \r\n    </div>\r\n</div> \r\n  \r\n</div>\r\n\r\n<div id=\"ctl00_ctl00_ContentBody_ContentBody_ColCenter__ctrl_1_divLeft\" class=\"ContCol_1\">\r\n  \r\n  \r\n\r\n  <div class=\"BoxSt_13\">\r\n\t <div class=\"LinkList_3\">\r\n\t\t<div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721866\">Portugal venceu o Panam</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721866\"><h2>Nlson Oliveira estreia-se a marcar</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074893.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">O golo do agora jogador do Corunha abriu a vitria de Portugal sobre o Panam no ensaio geral para o jogo do Luxemburgo, a 7 de setembro, a contar...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721866#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721866\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721866', '4867490')\n        </script><ul class=\"LinkList_5\"><li><a href=\"/jogosemdirecto/jogo.aspx?content_id=2721680\">EM DIRETO| Nlson Oliveira e Ronaldo marcaram</a></li></ul></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/multimedia/fotografias.aspx?content_id=2720355\">Multimdia</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/multimedia/fotografias.aspx?content_id=2720355\"><h2>Leryn, o encanto do Paraguai </h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073626.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\" style=\"display: none; \"></b><i class=\"PLIco_2\"></i><strong style=\"width: 0px; \"><em>GALERIA</em></strong></span><em class=\"LLIBLead\"> Lery Franco, de 30 anos,  eleita por muitos como a atleta mais sexy de todos os tempos. Confira    </em></a><ul class=\"LinkList_5\"><li><a href=\"/multimedia/fotografias.aspx?content_id=2718793\">A croata que encantou Londres </a></li></ul></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721842\">Selecionador satisfeito</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721842\"><h2>Paulo Bento: \"Tiramos ilaes positivas\"</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074913.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Selecionador nacional referiu que at  expulso de Gabriel Gmez o jogo foi interessante, em termos de treino da sua equipa.</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721842#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721842\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721842', '4867534')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721453\">Central defende-se das acusaes</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721453\"><h2>Luiso diz que o rbitro \"fez teatro\"</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074453.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Capito sublinha que at tentou pedir desculpa ao juiz no final do jogo </em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721453#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721453\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721453', '4865396')\n        </script><ul class=\"LinkList_5\"><li><a href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721520\">FPF j tem relatrio que vai seguir para o CD</a></li><li><a href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2718921\">Joo Nogueira da Rocha diz que ser CD da FPF a decidir</a></li></ul></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/revistaj/videos.aspx?content_id=2718887\">Making-of | Revista J</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/revistaj/videos.aspx?content_id=2718887\"><h2>Marisol, uma mais-valia para o turismo portugus</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073656.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\" style=\"display: none; \"></b><i class=\"PLIco_4\"></i><strong style=\"width: 0px; \"><em>PLAY</em></strong></span><em class=\"LLIBLead\"> Nascida na Venezuela, Marisol Lebre \"trocou\" Caracas por Vila Nova de Gaia e quer ajudar Portugal a melhorar o sector do Turismo.   </em></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Internacional/Selecao/default.aspx\">Seleo</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721900\"><h2>Adversrios de Portugal s empatam</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074971.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">O Luxemburgo, que a equipa de Paulo Bento defronta a 7 de Setembro, at foi derrotada em casa pela Gergia.</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Internacional/Selecao/interior.aspx?content_id=2721900#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721900\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721900', '4867687')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721890\">Liga Europa</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721890\"><h2>Onyewu fora, Cedric na lista B</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074950.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Argentino Viola e chileno Diego Rubio tambm se encontram fora do lote escolhido pelo treinador S Pinto, mas ainda h vaga para mais um. </em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721890#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721890\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721890', '4867650')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/default.aspx\">Futebol</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/interior.aspx?content_id=2701235\"><h2>J nas bancas</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2056524.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">A poca vai comear, prepare-se da melhor maneira com o Guia da Liga 2012/13 d' O JOGO. Todas as estatsticas e todos os detalhes j  venda...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/interior.aspx?content_id=2701235#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2701235\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2701235', '4785784')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2720869\"><em>VDEOS</em>\r\n  FC Porto</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2720869\"><h2>Golao de Iturbe na derrota com a Alemanha</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073969.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\" style=\"display: none; \"></b><i class=\"PLIco_4\"></i><strong style=\"width: 0px; \"><em>PLAY</em></strong></span><em class=\"LLIBLead\"> O portista jogou os 90 minutos e foi o autor do nico golo argentino na humilhao imposta pelos alemes   </em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2720869#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2720869\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2720869', '4861980')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Internacional/ligas_internacionais/interior.aspx?content_id=2721720\">Por 31 milhes de euros</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Internacional/ligas_internacionais/interior.aspx?content_id=2721720\"><h2>Manchester United contrata Van Persie ao Arsenal</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074682.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Melhor marcador da liga inglesa, com 29 anos, encontrava-se em fim de contrato com os \"gunners\" e j tinha recusado a renovao, devendo ser...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Internacional/ligas_internacionais/interior.aspx?content_id=2721720#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721720\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721720', '4866680')\n        </script></div>\r\n\t </div>\r\n  </div>\r\n  \r\n  \r\n</div>\r\n\r\n\r\n\r\n\r\n\t\t\t\t\t\r\n  \r\n\r\n<div class=\"ContCol_1\">\r\n  \r\n\r\n  \r\n  \r\n\r\n<div class=\"PubBox_300\">\r\n                \r\n<!-- begin ad tag 300x250 Topo -->\r\n<script type=\"text/javascript\"> \r\n\tdocument.write('<script language=\"JavaScript\" src=\"http://ad.pt.doubleclick.net/adj/ojogo.pt/HOMEPAGE;' + segQS + ';pos=topo;tile=1;dcopt=ist;sz=300x100,300x250,300x600,300x800;ord=' + ord + ';?\"><\\/script>');</script> \r\n\t<noscript><ahref=\"http://ad.pt.doubleclick.net/jump/ojogo.pt/HOMEPAGE;pos=topo;tile=1;sz=300x100,300x250,300x600,300x800;ord=123456789?\" target=\"_blank\"> \r\n\t<img src=\"http://ad.pt.doubleclick.net/ad/ojogo.pt/HOMEPAGE;pos=topo;tile=1;sz=300x100,300x250,300x600,300x800;ord=123456789?\" width=\"300\" height=\"800\" border=\"0\" alt=\"\"></a></noscript> \r\n\r\n<!-- End ad tag 300x250 Topo -->\r\n                    \r\n</div>\r\n\r\n  \r\n\r\n\r\n<div class=\"BoxSt_2\">\r\n    <div class=\"BoxSt_20 clearfix\">\r\n    \r\n        <div class=\"Title_2\"><div id=\"ctl00_ctl00_ContentBody_ContentBody_ColRight_ctl00__ctrl_1_sTitle\"><a href=\"/aominuto\">Notcias ao Minuto</a></div></div>\r\n        <div class=\"BoxSt_7\">\r\n            <div class=\"LinkList_2\">\r\n                <ul>\r\n\t\t\t\t\t<li class=\"clearfix\" xmlns:util=\"urn:newsgen-scripts\"><a href=\"/Internacional/Selecao/interior.aspx?content_id=2721900\"><strong>Adversrios de Portugal s empatam</strong><span class=\"TxtSt_4\">15/08/2012</span></a></li><li class=\"clearfix\" xmlns:util=\"urn:newsgen-scripts\"><a href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2721890\"><strong>Onyewu fora, Cedric na lista B</strong><span class=\"TxtSt_4\">15/08/2012</span></a></li><li class=\"clearfix\" xmlns:util=\"urn:newsgen-scripts\"><a href=\"/Internacional/Selecao/interior.aspx?content_id=2721842\"><strong>Paulo Bento: \"Tiramos ilaes positivas\"</strong><span class=\"TxtSt_4\">15/08/2012</span></a></li><li class=\"clearfix\" xmlns:util=\"urn:newsgen-scripts\"><a href=\"/Internacional/Selecao/interior.aspx?content_id=2721866\"><strong>Nlson Oliveira estreia-se a marcar</strong><span class=\"TxtSt_4\">15/08/2012</span></a></li>\r\n                </ul>\r\n            </div>\r\n        </div>\r\n        \r\n    </div>\r\n</div>\r\n  \r\n\r\n<script type=\"text/javascript\" language=\"javascript\">\r\n   \r\nfunction loadFragmentInToElement2(fragment_url, obj, comboobj)\r\n {\r\n    var element = document.getElementById(obj);\r\n\r\n    var sLeague = comboobj.options[comboobj.selectedIndex].value;\r\n    if ( element ) {\r\n       var xmlhttp; \r\n       if (window.ActiveXObject) // for IE \r\n       { \r\n          xmlhttp = new ActiveXObject(\"Microsoft.XMLHTTP\"); \r\n       } \r\n       else if (window.XMLHttpRequest) // for other browsers \r\n       { \r\n          xmlhttp = new XMLHttpRequest(); \r\n       } \r\n\r\n       //element.innerHTML = \"<div class='newstextxsmall'>Aguarde um momento...</div>\"; \r\n       xmlhttp.open(\"GET\", fragment_url + sLeague);\r\n\t\t //alert(fragment_url + sLeague);\r\n       xmlhttp.onreadystatechange = function() {\r\n\r\n           if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {\r\n               element.innerHTML = xmlhttp.responseText;\r\n           }\r\n       }\r\n       xmlhttp.send(null);       \r\n    }\r\n}\r\n\r\nfunction empty()\r\n{}\r\n\r\n   </script>\r\n\r\n<div class=\"TabSysBox_1 BoxSt_14 jQTabSys_1\">\r\n    <ul class=\"TSBList clearfix\">\r\n        <li class=\"TSB_active\"><span>CLASSIFICAES</span></li>\r\n        <li><span>PRXIMA JORNADA</span></li>\r\n        <li><span>RESULTADOS</span></li>\r\n    </ul>\r\n    \r\n    <div class=\"TSBItem\" style=\"display:block;\">\r\n        <div class=\"BoxSt_18 Title_3\" id=\"divCurrentPhaseName\">Liga ZON Sagres</div>\r\n        <div class=\"BoxSt_15 clearfix\">\r\n            <div id=\"divCurrentPhaseWrapper\"><div id=\"ctl00_ctl00_ContentBody_ContentBody_ColRight_ctl00__ctrl_2_divCurrentPhase\" class=\"BoxSt_16 TxtSt_3\">01&#170; jornada</div></div>\r\n            <div class=\"BoxSt_17\">\r\n                \r\n                <div class=\"CssDropSt_1\">\r\n                    <div class=\"CDSIn\">\r\n                        <span class=\"jQCssDrop_1\">\r\n                            <!--[if !IE]> ... JS/Css Dropdown - Update attribute 'title' value to get the appropriate width // Mark onload option to display with 'selected=\"selected\"'; If no option is marked the 1st one will be considered as selected ... <![endif]-->\r\n                            <select title=\"130\" onchange=\"loadFragmentInToElement2('/api/leagueclsf.aspx?league=', 'LeagueClsf', this);loadFragmentInToElement2('/api/leaguephase.aspx?league=', 'divCurrentPhaseWrapper', this);loadFragmentInToElement2('/api/leaguename.aspx?league=', 'divCurrentPhaseName', this)\">\r\n\t\t\t\t\t\t\t\t\t\t<option value=\"234730|5643\">Liga Zon Sagres</option><option value=\"234729|5642\">II Liga</option><option value=\"234891|5647\">II Div. Norte</option><option value=\"234892|5646\">II Div. Centro</option><option value=\"234893|5653\">II Div. Sul</option><option value=\"234995|5654\">III Div. Srie A</option><option value=\"234996|5655\">III Div. Srie B</option><option value=\"234997|5656\">III Div. Srie C</option><option value=\"234998|5649\">III Div. Srie D</option><option value=\"235004|5650\">III Div. Srie E</option><option value=\"235005|5651\">III Div. Srie F</option><option value=\"235006|5652\">III Div. Srie Aores</option><option value=\"234834|5645\">Frana</option>\r\n                            </select>\r\n                        </span>\r\n                    </div>\r\n                </div>\r\n                \r\n            </div>\r\n        </div>\r\n        <div class=\"ChartBox_1 clearfix\" id=\"LeagueClsf\">\r\n            <nav class=\"ChBCol_1\">\r\n                <ul>\r\n\t\t\t\t\t\t<li class=\"clearfix\"><em>1</em> <span><strong>Acadmica</strong> <b>0</b></span></li><li class=\"clearfix\"><em>2</em> <span><strong>Beira-Mar</strong> <b>0</b></span></li><li class=\"clearfix\"><em>3</em> <span><strong>Benfica</strong> <b>0</b></span></li><li class=\"clearfix\"><em>4</em> <span><strong>Braga</strong> <b>0</b></span></li><li class=\"clearfix\"><em>5</em> <span><strong>Estoril</strong> <b>0</b></span></li><li class=\"clearfix\"><em>6</em> <span><strong>FC Porto</strong> <b>0</b></span></li><li class=\"clearfix\"><em>7</em> <span><strong>Gil Vicente</strong> <b>0</b></span></li><li class=\"clearfix\"><em>8</em> <span><strong>Martimo</strong> <b>0</b></span></li>\r\n                </ul>\r\n            </nav>\r\n            <nav class=\"ChBCol_2\">\r\n                <ul>\r\n\t\t\t\t\t\t<li class=\"clearfix\"><em>9</em> <span><strong>Moreirense</strong> <b>0</b></span></li><li class=\"clearfix\"><em>10</em> <span><strong>Nacional</strong> <b>0</b></span></li><li class=\"clearfix\"><em>11</em> <span><strong>Olhanense</strong> <b>0</b></span></li><li class=\"clearfix\"><em>12</em> <span><strong>Paos de Ferreira</strong> <b>0</b></span></li><li class=\"clearfix\"><em>13</em> <span><strong>Rio Ave</strong> <b>0</b></span></li><li class=\"clearfix\"><em>14</em> <span><strong>Sporting</strong> <b>0</b></span></li><li class=\"clearfix\"><em>15</em> <span><strong>V. Guimares</strong> <b>0</b></span></li><li class=\"clearfix\"><em>16</em> <span><strong>V. Setbal</strong> <b>0</b></span></li>\r\n                </ul>\r\n            </nav>\r\n        </div>\r\n        <div class=\"BoxSt_19\"><a href=\"/estatisticas\" class=\"Link_7\">VER ESTATSTICAS</a></div>\r\n    </div>\r\n    \r\n    <div class=\"TSBItem\" style=\"\">\r\n        <div class=\"BoxSt_18 Title_3\" id=\"divNextPhaseName\">Liga ZON Sagres</div>\r\n        <div class=\"BoxSt_15 clearfix\">\r\n            <div id=\"divNextPhaseWrapper\"><div id=\"ctl00_ctl00_ContentBody_ContentBody_ColRight_ctl00__ctrl_2_divNextPhase\" class=\"BoxSt_16 TxtSt_3\">01&#170; jornada</div></div>\r\n            <div class=\"BoxSt_17\">\r\n                \r\n                <div class=\"CssDropSt_1\">\r\n                    <div class=\"CDSIn\">\r\n                        <span class=\"jQCssDrop_1\">\r\n                            <!--[if !IE]> ... JS/Css Dropdown - Update attribute 'title' value to get the appropriate width // Mark onload option to display with 'selected=\"selected\"'; If no option is marked the 1st one will be considered as selected ... <![endif]-->\r\n                            <select title=\"130\" onchange=\"loadFragmentInToElement2('/api/leagueresults.aspx?next=true&league=', 'nextPhase', this);loadFragmentInToElement2('/api/leaguephase.aspx?next=true&league=', 'divNextPhaseWrapper', this);loadFragmentInToElement2('/api/leaguename.aspx?league=', 'divNextPhaseName', this)\">\r\n\t\t\t\t\t\t\t\t\t\t  <option value=\"234730|5643\">Liga Zon Sagres</option><option value=\"234729|5642\">II Liga</option><option value=\"234891|5647\">II Div. Norte</option><option value=\"234892|5646\">II Div. Centro</option><option value=\"234893|5653\">II Div. Sul</option><option value=\"234995|5654\">III Div. Srie A</option><option value=\"234996|5655\">III Div. Srie B</option><option value=\"234997|5656\">III Div. Srie C</option><option value=\"234998|5649\">III Div. Srie D</option><option value=\"235004|5650\">III Div. Srie E</option><option value=\"235005|5651\">III Div. Srie F</option><option value=\"235006|5652\">III Div. Srie Aores</option><option value=\"234834|5645\">Frana</option>\r\n                            </select>\r\n                        </span>\r\n                    </div>\r\n                </div>\r\n                \r\n            </div>\r\n        </div>\r\n        <div class=\"ChartBox_2 clearfix\" id=\"nextPhase\">\r\n            <ul>\r\n\t\t\t\t  <li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/olhanense.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Olhanense</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>17/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Estoril</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/estoril.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/rio_ave.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Rio Ave</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>18/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Martimo</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/maritimo.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/benfica.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Benfica</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>18/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Braga</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/braga.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/nacional.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Nacional</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">V. Setbal</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/v__setubal.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/pacos_de_ferreira.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Paos de Ferreira</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Moreirense</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/moreirense.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/gil_vicente.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Gil Vicente</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">FC Porto</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/fc_porto.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/v__guimaraes.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">V. Guimares</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Sporting</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/sporting.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/beira_mar.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Beira-Mar</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>20/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Acadmica</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/academica.png\" width=\"15px\" alt=\"\" /></span></div></li>\r\n            </ul>\r\n        </div>\r\n        <div class=\"BoxSt_19\"><a href=\"/estatisticas\" class=\"Link_7\">VER ESTATSTICAS</a></div>\r\n    </div>\r\n    \r\n    <div class=\"TSBItem\" style=\"\">\r\n        <div class=\"BoxSt_18 Title_3\" id=\"divCurrentPhaseName2\">Liga ZON Sagres</div>\r\n        <div class=\"BoxSt_15 clearfix\">\r\n            <div id=\"divCurrentPhaseWrapper2\"><div id=\"ctl00_ctl00_ContentBody_ContentBody_ColRight_ctl00__ctrl_2_divCurrentPhase2\" class=\"BoxSt_16 TxtSt_3\">01&#170; jornada</div></div>\r\n            <div class=\"BoxSt_17\">\r\n                \r\n                <div class=\"CssDropSt_1\">\r\n                    <div class=\"CDSIn\">\r\n                        <span class=\"jQCssDrop_1\">\r\n                            <!--[if !IE]> ... JS/Css Dropdown - Update attribute 'title' value to get the appropriate width // Mark onload option to display with 'selected=\"selected\"'; If no option is marked the 1st one will be considered as selected ... <![endif]-->\r\n                            <select title=\"130\" onchange=\"loadFragmentInToElement2('/api/leagueresults.aspx?next=true&league=', 'LeagueResult', this);loadFragmentInToElement2('/api/leaguephase.aspx?next=true&league=', 'divCurrentPhaseWrapper2', this);loadFragmentInToElement2('/api/leaguename.aspx?league=', 'divCurrentPhaseName2', this)\">\r\n\t\t\t\t\t\t\t\t\t\t  <option value=\"234730|5643\">Liga Zon Sagres</option><option value=\"234729|5642\">II Liga</option><option value=\"234891|5647\">II Div. Norte</option><option value=\"234892|5646\">II Div. Centro</option><option value=\"234893|5653\">II Div. Sul</option><option value=\"234995|5654\">III Div. Srie A</option><option value=\"234996|5655\">III Div. Srie B</option><option value=\"234997|5656\">III Div. Srie C</option><option value=\"234998|5649\">III Div. Srie D</option><option value=\"235004|5650\">III Div. Srie E</option><option value=\"235005|5651\">III Div. Srie F</option><option value=\"235006|5652\">III Div. Srie Aores</option><option value=\"234834|5645\">Frana</option>\r\n                            </select>\r\n                        </span>\r\n                    </div>\r\n                </div>\r\n                \r\n            </div>\r\n        </div>\r\n        <div class=\"ChartBox_2 clearfix\" id=\"LeagueResult\">\r\n            <ul>\r\n\t\t\t\t  <li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/olhanense.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Olhanense</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>17/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Estoril</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/estoril.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/rio_ave.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Rio Ave</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>18/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Martimo</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/maritimo.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/benfica.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Benfica</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>18/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Braga</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/braga.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/nacional.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Nacional</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">V. Setbal</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/v__setubal.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/pacos_de_ferreira.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Paos de Ferreira</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Moreirense</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/moreirense.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/gil_vicente.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Gil Vicente</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">FC Porto</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/fc_porto.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/v__guimaraes.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">V. Guimares</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>19/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Sporting</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/sporting.png\" width=\"15px\" alt=\"\" /></span></div></li><li class=\"clearfix\"><div class=\"ChBCol_1\"><span class=\"ChBLogo\"><img src=\"/common/images/clubes/beira_mar.png\" width=\"15px\" alt=\"\" /></span><span class=\"ChBClub\">Beira-Mar</span></div><span class=\"ChBCol_2\"><strong class=\"jQToolTip_2\"><em>20/8</em></strong></span><div class=\"ChBCol_3\"><span class=\"ChBClub\">Acadmica</span><span class=\"ChBLogo\"><img src=\"/common/images/clubes/academica.png\" width=\"15px\" alt=\"\" /></span></div></li>\r\n            </ul>\r\n        </div>\r\n        <div class=\"BoxSt_19\"><a href=\"/estatisticas\" class=\"Link_7\">VER ESTATSTICAS</a></div>\r\n    </div>\r\n    \r\n</div>\r\n\r\n\r\n  \r\n\r\n\r\n<div class=\"BoxSt_2 BoxSt_6\">\r\n    <div class=\"BoxSt_3 clearfix\">\r\n    \r\n        <div class=\"Title_2\"><a href=\"/opiniao\">Opinio</a></div>\r\n        <div class=\"BoxSt_7 clearfix\">\r\n\t\t\t <div class=\"BoxSt_21\"><a class=\"OpinionLink_1\" href=\"/opiniao/Cronistas/jorgemaia/interior.aspx?content_id=2721580\"><span class=\"clearfix\"><img src=\"/common/images/cronistas/jorgemaia.png\" width=\"62\" height=\"62\" alt=\"\"><b>Jorge Maia</b></span><em>Ronaldo est mais perto de vencer</em></a></div><div class=\"BoxSt_21\"><a class=\"OpinionLink_1\" href=\"/opiniao/Cronistas/josemanuelribeiro/interior.aspx?content_id=2716996\"><span class=\"clearfix\"><img src=\"/common/images/cronistas/josemanuelribeiro.png\" width=\"62\" height=\"62\" alt=\"\"><b>Jos Manuel Ribeiro</b></span><em>Mantm-se o desafio</em></a></div>\r\n        </div>\r\n        <div class=\"clearfix\" style=\"padding-top:5px;\">\r\n\t\t\t <div class=\"BoxSt_21\"><a class=\"OpinionLink_1\" href=\"/opiniao/Cronistas/joelneto/interior.aspx?content_id=2720064\"><span class=\"clearfix\"><img src=\"/common/images/cronistas/joelneto.png\" width=\"62\" height=\"62\" alt=\"\"><b>Joel Neto</b></span><em>Questo central</em></a></div><div class=\"BoxSt_21\"><a class=\"OpinionLink_1\" href=\"/opiniao/Cronistas/carlosflorido/interior.aspx?content_id=2718459\"><span class=\"clearfix\"><img src=\"/common/images/cronistas/carlosflorido.png\" width=\"62\" height=\"62\" alt=\"\"><b>Carlos Flrido</b></span><em>De cima chega o exemplo</em></a></div>\r\n        </div>\r\n        \r\n    </div>\r\n</div>\r\n</div>\r\n\r\n\r\n\t\t\t\t </section>\r\n\t\t\t  \r\n      \t\t\t\t\t\t\t\r\n\t\t\t  \r\n  \r\n\r\n<section class=\"ContWrap_2 clearfix\">\r\n    \r\n    <div class=\"ContCol_1\">\r\n        <div class=\"BoxSt_25\">\r\n            <div class=\"BoxSt_20 clearfix\">\r\n            \r\n                <div class=\"Title_2\"><a href=\"/futebol/1a_liga/porto/\" class=\"LinkClub_1\">FC Porto</a></div>\r\n                <div class=\"BoxSt_7 BoxSt_23\">\r\n                    <div class=\"BoxSt_13\">\r\n                        <div class=\"LinkList_3\">\r\n                            <div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2720189\"><h2>Hulk fora do onze titular do Brasil</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073511.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Mano Menezes ir colocar Ramires de regresso ao lado direito no amigvel ps-Jogos Olmpicos, voltando tambm  equipa David Luiz e Daniel Alves.</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2720189#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2720189\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2720189', '4859593')\n        </script></div>\r\n                            <div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2719662\"><h2>Iturbe titular contra a Alemanha</h2><em class=\"LLIBLead\">O avanado do FC Porto  a principal referncia da seleco de sub-20 da Argentina e ser titular no particular desta tarde contra a Alemanha...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2719662#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2719662\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2719662', '4857223')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2719500\"><h2>FC Porto apoia Academia Mrio Coluna</h2><em class=\"LLIBLead\">O FC Porto assinou protocolo de cooperao com a Academia moambicana com o nome do antigo capito do Benfica e da Seleo nacional.</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2719500#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2719500\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2719500', '4856551')\n        </script></div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                \r\n            </div>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"ContCol_1\">\r\n        <div class=\"BoxSt_25\">\r\n            <div class=\"BoxSt_20 clearfix\">\r\n            \r\n                <div class=\"Title_2\"><a href=\"/futebol/1a_liga/benfica/\" class=\"LinkClub_2\">Benfica</a></div>\r\n                <div class=\"BoxSt_7 BoxSt_23\">\r\n                    <div class=\"BoxSt_13\">\r\n                        <div class=\"LinkList_3\">\r\n                            <div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721582\"><h2>Andr Almeida :\"Voltar ao plantel principal  o meu pensamento\"</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074576.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\">Depois de uma poca entre os craques, Andr Almeida foi relegado para a equipa B. Mas deseja rapidamente voltar a merecer a oportunidade de Jorge...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721582#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721582\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721582', '4865725')\n        </script><ul class=\"LinkList_5\"><li><a href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721579\">Rodrigo: \"No Benfica ser segundo  como ficar em ltimo\"</a></li></ul></div>\r\n                            <div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721650\"><h2>Ola John titular na derrota com a Itlia</h2><em class=\"LLIBLead\">Jogador do Benfica jogou ao lado de Luuk De Jong na derrota, pesada, por 0-3, diante da Itlia. </em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721650#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721650\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721650', '4866208')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721641\"><h2>Aimar e Gaitn ainda indisponveis</h2><em class=\"LLIBLead\"> Boletim clnico divulgado no stio oficial do Benfica no revela se recuperam a tempo de defrontarem, sbado, o Braga.  </em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721641#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2721641\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2721641', '4866098')\n        </script><ul class=\"LinkList_5\"><li><a href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2721579\">Rodrigo: \"No Benfica ser segundo  como ficar em ltimo\"</a></li></ul></div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                \r\n            </div>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"ContCol_1\">\r\n        <div class=\"BoxSt_25\">\r\n            <div class=\"BoxSt_20 clearfix\">\r\n            \r\n                <div class=\"Title_2\"><a href=\"/Futebol/1a_liga/Sporting/\" class=\"LinkClub_3\">Sporting</a></div>\r\n                <div class=\"BoxSt_7 BoxSt_23\">\r\n                    <div class=\"BoxSt_13\">\r\n                        <div class=\"LinkList_3\">\r\n                            <div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2718378\"><h2>Viola: \"Quero jogar o mais rpido possvel\"</h2><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2072112.jpg?type=small\" width=\"114px\" height=\"86px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><em class=\"LLIBLead\"> Avanado oriundo do Racing Club de Avellaneda diz que j falou com S Pinto sobre o estilo de futebol em Portugal e entendeu-se muito bem. ...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2718378#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2718378\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2718378', '4851119')\n        </script></div>\r\n                            <div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2718094\"><h2>Viola apresentado s 15h</h2><em class=\"LLIBLead\">A apresentao do avanado argentino demorar mais de hora e meia. Comea s 15 horas no Mundo Sporting.</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2718094#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2718094\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2718094', '4849703')\n        </script></div><div class=\"LLItem clearfix\"><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2717397\"><h2>Elias:\"Fiz o que S Pinto pediu ao intervalo\"</h2><em class=\"LLIBLead\"> O autor do golo do Sporting afirmou que o plantel est preparado para comear o campeonato, destacando que \"qualquer jogador pode entrar e dar...</em></a><span name=\"statsContainer\" class=\"LinkList_4\" xmlns:g=\"http://base.google.com/ns/1.0\"><a class=\"IcoLink_11 Ico_5\" name=\"statsRepliesContainer\" href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2717397#Comment&#xA;          \">\r\n          Comentar\r\n        </a><input name=\"statsId\" type=\"hidden\" value=\"2717397\"></span><script xmlns:g=\"http://base.google.com/ns/1.0\">\n          AddStatsItem('2717397', '4846257')\n        </script><ul class=\"LinkList_5\"><li><a href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2717384\">Leonardo Jardim: \"Foi um bom teste\"</a></li><li><a href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2717377\">\"S peo: continuem a trabalhar\"</a></li><li><a href=\"/Futebol/1a_liga/Sporting/interior.aspx?content_id=2717348\">Sporting conquista Trofu Cinco Violinos </a></li></ul></div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                \r\n            </div>\r\n        </div>\r\n    </div>\r\n    \r\n</section>\r\n\r\n\r\n<section class=\"ContWrap_2 clearfix\">\r\n\r\n<div class=\"ContCol_2\"><div class=\"BoxSt_2\"><div class=\"BoxSt_20 clearfix\"><div class=\"Title_2\"><a href=\"/modalidades\">Modalidades</a></div><div class=\"BoxSt_7 BoxSt_23\"><div class=\"BoxSt_13\"><div class=\"LinkList_6 clearfix\"><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Modalidades/Ciclismo/default.aspx\">Volta a Portugal em bicicleta</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Modalidades/Ciclismo/interior.aspx?content_id=2721566\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2074663.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Sul-africano veste de amarelo</h2></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Modalidades/Basquetebol/default.aspx\">Basquetebol | Aupramento para Europeu'2013</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Modalidades/Basquetebol/interior.aspx?content_id=2720300\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073563.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Portugal obrigado a vencer a Itlia</h2></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Modalidades/Ciclismo/default.aspx\">Prlogo em Castelo Branco</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Modalidades/Ciclismo/interior.aspx?content_id=2720084\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073399.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Volta a Portugal arranca com peloto de 17 equipas</h2></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Modalidades/Atletismo/default.aspx\">Praticou antes do atletismo</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Modalidades/Atletismo/interior.aspx?content_id=2718264\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2071961.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Bolt muda-se para o crquete</h2></a></div></div></div></div></div></div></div>\r\n\r\n<div class=\"ContCol_1\">\r\n    <?xml version=\"1.0\" encoding=\"utf-16\"?><div name=\"pollBoxx\" id=\"pollBoxx\" class=\"BoxSt_36 BoxSt_56 BoxSt_6\"><div class=\"BoxSt_39 clearfix\"><div class=\"Title_2\"><a href=\"/inquerito\">Inqurito</a></div><div class=\"BoxSt_38\"><div id=\"poll_43\" type=\"hp\"><p class=\"TxtSt_5\">Dos quatro primeiros do ltimo campeonato, qual est a realizar a melhor pr-poca? </p><div id=\"ngpollanswers_43\" class=\"jQSurveyForm_1\"><div class=\"FormSt_1 jQRadioGrp_1\"><ul><li><input type=\"radio\" value=\"1\" name=\"pollRadio_43\" id=\"pollRadio_43\" /><label onclick=\"javascript:PollSelectVote(1,this)\">FC Porto </label></li><li><input type=\"radio\" value=\"2\" name=\"pollRadio_43\" id=\"pollRadio_43\" /><label onclick=\"javascript:PollSelectVote(2,this)\">Benfica </label></li><li><input type=\"radio\" value=\"3\" name=\"pollRadio_43\" id=\"pollRadio_43\" /><label onclick=\"javascript:PollSelectVote(3,this)\">Braga</label></li><li><input type=\"radio\" value=\"4\" name=\"pollRadio_43\" id=\"pollRadio_43\" /><label onclick=\"javascript:PollSelectVote(4,this)\">Sporting</label></li></ul></div></div><div class=\"BoxSt_23 BtnBox_2\"><a href=\"javascript:PollSetVote(43,'hp')\"><img src=\"/Common/Images/ResponderInq.png\" width=\"100\" height=\"19\" alt=\"Votar\" /></a></div></div><div id=\"TMP\" style=\"display:none\"><div id=\"pollCount_43\" type=\"hp\"><a href=\"javascript:PollShow(43,'hp')\"><img src=\"/Common/Images/VerResultadosInq.png\" width=\"100\" height=\"19\" alt=\"Ver Resultados\" /></a>\r\n\t\t\t\t  <span>Total de votos:11643</span></div></div><div id=\"pollResult_43\" style=\"display:none\" type=\"hp\"><p class=\"TxtSt_5\">Dos quatro primeiros do ltimo campeonato, qual est a realizar a melhor pr-poca? </p><div class=\"jQSurveyResults_1\"><ul class=\"ListReset SurveyBox_1\"><li><label>FC Porto  5295votos(45.48%)</label><p class=\"RangeBox_1\"><strong class=\"RBWinner\"><span class=\"RBCurrent\" style=\"width:118px;&#xA;&#x9;&#x9;&#x9;\" /><a href=\"#\" class=\"RBHandle\" style=\"left:118px;&#xA;&#x9;&#x9;&#x9;\"><b></b></a></strong></p></li><li><label>Benfica  3869votos(33.23%)</label><p class=\"RangeBox_1\"><strong><span class=\"RBCurrent\" style=\"width:86px;&#xA;&#x9;&#x9;&#x9;\" /><a href=\"#\" class=\"RBHandle\" style=\"left:86px;&#xA;&#x9;&#x9;&#x9;\"><b></b></a></strong></p></li><li><label>Braga 493votos(4.23%)</label><p class=\"RangeBox_1\"><strong><span class=\"RBCurrent\" style=\"width:11px;&#xA;&#x9;&#x9;&#x9;\" /><a href=\"#\" class=\"RBHandle\" style=\"left:11px;&#xA;&#x9;&#x9;&#x9;\"><b></b></a></strong></p></li><li><label>Sporting 1986votos(17.06%)</label><p class=\"RangeBox_1\"><strong><span class=\"RBCurrent\" style=\"width:44px;&#xA;&#x9;&#x9;&#x9;\" /><a href=\"#\" class=\"RBHandle\" style=\"left:44px;&#xA;&#x9;&#x9;&#x9;\"><b></b></a></strong></p></li></ul></div></div></div></div></div>\r\n<script type=\"text/javascript\">viewIfUserVotedInq()</script>\r\n\r\n\r\n\r\n\r\n\r\n</div>\r\n\r\n</section>\r\n\r\n\r\n  \r\n\r\n<section class=\"ContWrap_2 clearfix\">\r\n    <div class=\"ContCol_3 clearfix\">\r\n        <div class=\"ContCol_5\">\r\n\t\t  \r\n<div class=\"BoxSt_2\">\r\n    <div class=\"BoxSt_20 clearfix\">\r\n        <div class=\"Title_8\">Notcias Mais Populares</div>\r\n        <div class=\"BoxSt_7 BoxSt_23\">\r\n            <div class=\"BoxSt_13\">\r\n                <div class=\"LinkList_6 clearfix\">\r\n\t\t\t\t\t\t<div id=\"ctl00_ctl00_ContentFooter_ctl01_ctl00_divTopC\"><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/1a_liga/Porto/default.aspx\">VDEOS\r\n  </a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Porto/interior.aspx?content_id=2720869\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073969.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Golao de Iturbe na derrota com a Alemanha</h2></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/1a_liga/Benfica/default.aspx\">Queixa por agresso do rbitro Christian Fischer</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2720087\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073482.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Polcia abre inqurito a \"caso Luiso\"</h2></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/Futebol/1a_liga/Benfica/default.aspx\">\"Caso Luiso\"</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/Futebol/1a_liga/Benfica/interior.aspx?content_id=2718921\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2072578.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Joo Nogueira da Rocha diz que ser CD da FPF a decidir</h2></a></div><div class=\"LLItem clearfix\"><a class=\"Link_5\" href=\"/olimpicos2012/outras/default.aspx\">Retaliao s crticas durante Londres'2012</a><a class=\"LLBlock_1 jQLLHover_2\" href=\"/olimpicos2012/outras/interior.aspx?content_id=2720560\"><span class=\"LLIBPic\"><img src=\"/storage/OJ/2012/small/ng2073867.jpg?type=small\" width=\"145px\" height=\"110px\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Seleo de andebol francesa destri estdio da L'Equipe TV</h2></a></div></div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n\r\n\r\n\r\n        \r\n            <div class=\"clearfix\">\r\n\t\t\t        \r\n\r\n\r\n\r\n<div class=\"BoxSt_2\">\r\n<div class=\"BoxSt_20 clearfix\">\r\n    <div class=\"Title_2\">Cartoon</div>\r\n    <div class=\"BoxSt_33 clearfix\">\r\n      <div class=\"BoxSt_23\">\r\n\t      <img src=\"/storage/OJ/2012/highlight/ng2074869.jpg?type=highlight\" width=\"628px\">\r\n\t    </div>\r\n    </div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n            </div>\r\n            \r\n        </div>\r\n        <div class=\"ContCol_1\">\r\n\t\t      \r\n\r\n<div class=\"BoxSt_25\">\r\n  <div class=\"BoxSt_20 clearfix\">\r\n      <div class=\"Title_2\"><a href=\"/revistaj\" class=\"LinkSite_1\">Fotografias da J</a></div>\r\n      <div class=\"BoxSt_7 BoxSt_26 clearfix\">\r\n\r\n<!--[if !IE]> ... PICTURE GALLERY begin ... <![endif]-->\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n// initialize picture gallery (object identifier)\r\njQ(function(){ initPictureGallery_1('.jQPicGal_1'); });\r\n//]]>\r\n</script>\r\n\r\n<!--[if !IE]> This gallery object identifier for javascript:  jQPicGal_1  <![endif]-->\r\n<div class=\"PictureGal_1 jQPicGalBox jQPicGal_1\">\r\n\r\n  <div class=\"PGStage_1 jQPGStage\">\r\n      <div class=\"Picture_2 NoMargin\">\r\n          <a href=\"#\" class=\"jQLLHover_4\">\r\n              <img src=\"/common/images/blank.gif\" alt=\"\" height=\"390px\" />\r\n              <b class=\"PicBlackout_1\"></b>\r\n              <b class=\"PicCaption_1\"><b></b></b>\r\n              <i></i>\r\n          </a>\r\n      </div>\r\n  </div>\r\n  \r\n  <div class=\"PGScroll_1 jQScroller_1\">\r\n      <ul class=\"clearfix\">\r\n\t\t  <li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2714288\"><img src=\"/storage/OJ/2012/small/ng2068102.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Imogen Thomas, ex-amante de Giggs...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2068101.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2707403\"><img src=\"/storage/OJ/2012/small/ng2062016.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Sara Kostov, pai foi o 1 blgaro...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2062015.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2686336\"><img src=\"/storage/OJ/2012/small/ng2044764.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Catarina Gouveia, capa da 140...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2044763.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2665338\"><img src=\"/storage/OJ/2012/small/ng2029109.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Pilar Prieto, capa da 198 edio...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2029108.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2696568\"><img src=\"/storage/OJ/2012/small/ng2053167.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Silvana Kampmann, capa da 121...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2053166.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2651685\"><img src=\"/storage/OJ/2012/small/ng2018382.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Laura Figueiredo, capa da J conquistou...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2018381.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2673631\"><img src=\"/storage/OJ/2012/small/ng2035233.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Liliana Queiroz, capa da 55 edio...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2035232.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2634173\"><img src=\"/storage/OJ/2012/small/ng2004519.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Ana Sofia, capa da 137 edio...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng2004518.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2623243\"><img src=\"/storage/OJ/2012/small/ng1995284.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Kim, a mais famosa das irms Kardashian\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1995283.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2615795\"><img src=\"/storage/OJ/2012/small/ng1989697.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Margarida Neuparth, capa da 129...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1989711.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2609320\"><img src=\"/storage/OJ/2012/small/ng1983912.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Irina, a mulher que conquistou...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1983911.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2603010\"><img src=\"/storage/OJ/2012/small/ng1978731.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Estdio J - Portugal-Alemanha\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1978732.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2598410\"><img src=\"/storage/OJ/2012/small/ng1974465.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Sara Dias, capa da 173 edio...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1974480.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2553639\"><img src=\"/storage/OJ/2012/small/ng1958995.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Sara Santos, capa da J em duas...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1960605.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2553624\"><img src=\"/storage/OJ/2012/small/ng1958958.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Morgana Nogueira\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1960527.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2553524\"><img src=\"/storage/OJ/2012/small/ng1958883.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Olvia Ortiz, a capa da J que ...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1960551.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2583851\"><img src=\"/storage/OJ/2012/small/ng1967786.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Rita Egdio, a primeira capa da...\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1967785.jpg?type=highlight</b><em></em></a></li><li><a class=\"jQPGItem jQPGLoad_1\" href=\"/revistaj/fotografias.aspx?content_id=2557459\"><img src=\"/storage/OJ/2012/small/ng1962104.jpg?type=small\" height=\"82x\" alt=\"EXCLUSIVO J[###]Jaciara deu o pontap de sada\"><b class=\"VidImgUrl jQVidImgUrl\">/storage/OJ/2012/highlight/ng1962091.jpg?type=highlight</b><em></em></a></li>\r\n                  \r\n\r\n                      \r\n        </ul>\r\n    </div>\r\n    \r\n    <span class=\"PicNavPrev jQPG_Prev disabled\"><b>Anterior</b></span>\r\n    <span class=\"PicNavNext jQPG_Next\"><b>Prximo</b></span>\r\n    \r\n  </div>\r\n<!--[if !IE]> ... PICTURE GALLERY end ... <![endif]-->\r\n\r\n</div>\r\n</div>\r\n</div>\r\n                    \r\n                \r\n\r\n\r\n        </div>\r\n    </div>\r\n</section>\r\n\r\n\r\n\t\t\t</section>\r\n\t\t </section>\r\n\t\t  \r\n\t\t\t \r\n<script language=\"JavaScript\">\r\nfunction setVisibility(id) {\r\nif(document.getElementById('newsletterShow').value=='Hide Layer'){\r\n\r\ndocument.getElementById(id).style.display = 'none';\r\n}else{\r\n\r\ndocument.getElementById(id).style.display = 'inline';\r\n}\r\n}\r\n\r\n</script>\r\n<!--[if !IE]> ... FOOTER WRAPPER begin ... <![endif]-->\r\n    <footer onclick=\"event.cancelBubble=true;\">\r\n        <div class=\"FooterBox_1\">\r\n            <div class=\"NavBox_1\">\r\n                <nav class=\"NBCol_1 jQFootTabsBtns_1\">\r\n                    <ul>\r\n                        <li><a href=\"#\" class=\"\"><span>FORA DE CAMPO</span></a></li>\r\n                        <li><a href=\"#\" class=\"\"><span>MAPA DO SITE</span></a></li>\r\n                    </ul>\r\n                </nav>\r\n                <nav class=\"NBCol_2\">\r\n                    <ul>\r\n                        <li><a href=\"http://www.facebook.com/diariodesportivo.ojogo\" target=\"_blank\" class=\"IcoLink_1\" title=\"Facebook\">Facebook</a></li>\r\n                        <li><a href=\"https://plus.google.com/112154388967023637079\" target=\"_blank\" class=\"IcoLink_18\" title=\"Google+\">Google+</a></li>\r\n                        <li><a href=\"http://twitter.com/ojogo\" target=\"_blank\" class=\"IcoLink_2\" title=\"Twitter\">Twitter</a></li>\r\n                        <li><a href=\"http://itunes.apple.com/pt/app/o-jogo/id538431588\" target=\"_blank\" class=\"IcoLink_3\" title=\"iOS\">iOS</a></li>\r\n                        <li><a href=\"https://play.google.com/store/apps/details?id=pt.civ.ojogo\" target=\"_blank\" class=\"IcoLink_4\" title=\"Android\">Android</a></li>\r\n                        <li><a href=\"http://m.ojogo.pt\" target=\"_blank\" class=\"IcoLink_5\" title=\"Mobile\">Mobile</a></li>\r\n                        <li><a href=\"/rss/\" class=\"IcoLink_6\" title=\"RSS\">RSS</a></li>\r\n                        <li><a href=\"#\" id=\"newsletterShow\" onclick=\"setVisibility('newsletterDiv');\" class=\"IcoLink_Newsletter\" title=\"Newsletter\">Newsletter</a></li>\r\n                    </ul>\r\n                    \r\n\r\n<div class=\"HSearch\"><span class=\"HSField jQInput_1\">\r\n\t\t<input name=\"ctl00$ctl00$ContentFooterBottom$Commonfooter1$ctl00$txtSearch\" type=\"text\" id=\"ctl00_ctl00_ContentFooterBottom_Commonfooter1_ctl00_txtSearch\" value=\"Pesquisar\" onfocus=\"if (this.value.toLowerCase() == 'pesquisar') { this.value=''; }\" onblur=\"if (this.value == '') { this.value='Pesquisar'; }\" onkeydown=\"GoSearch(this, event)\" title=\"Pesquisar\" /></span><a href=\"javascript:FindSearchCriteria('ctl00_ctl00_ContentFooterBottom_Commonfooter1_ctl00_txtSearch')\" id=\"ctl00_ctl00_ContentFooterBottom_Commonfooter1_ctl00_btSearch\"><b>Pesquisar</b></a></div>\r\n      \r\n    \r\n\r\n                </nav>\r\n            </div>\r\n        </div>\r\n        <div class=\"FooterBox_2 jQFootTabsContent_1\" style=\"display:none;\">\r\n\r\n            <div class=\"FBTabContent jQFTCont\" style=\"display:none;\">\r\n                <div class=\"BoxSt_28 clearfix\">\r\n                \r\n                    <div class=\"FooterCol_1\">\r\n                      \r\n\r\n<h2 class=\"Title_6\">Notcias Controlinveste</h2>\r\n<div class=\"BoxSt_30 BoxSt_23\">\r\n    <div class=\"BoxSt_13\">\r\n        <div class=\"LinkList_6 clearfix\">\r\n            <div class=\"LLItem clearfix\"><a href=\"http://www.dn.pt/inicio/globo/interior.aspx?content_id=2721860&amp;seccao=EUA e Am%E9ricas&amp;referrer=FooterOJ&#xA;    \" class=\"LLBlock_1 jQLLHover_2\" target=\"_blank\"><span class=\"LLIBPic\"><img src=\"http://www.dn.pt/storage/DN/2012/small/ng2074882.jpg\" width=\"145px\" height=\"110px\" alt=\"\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Assange fica hoje a saber se Equador lhe d asilo</h2></a><a href=\"http://www.dn.pt/?referrer=FooterOJ\" class=\"LLBlock_1 jQLLHover_2\" target=\"_blank\"><span class=\"CIBrand_DN\"></span></a></div><div class=\"LLItem clearfix\"><a href=\"http://www.tsf.pt/PaginaInicial/Desporto/Interior.aspx?content_id=2721883&amp;referrer=FooterOJ&#xA;    \" class=\"LLBlock_1 jQLLHover_2\" target=\"_blank\"><span class=\"LLIBPic\"><img src=\"http://www.tsf.pt/storage/TSF/2012/small/ng2074921.jpg\" width=\"145px\" height=\"110px\" alt=\"\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Portugal derrota Panam por 2-0 em particular</h2></a><a href=\"http://www.tsf.pt/?referrer=FooterOJ\" class=\"LLBlock_1 jQLLHover_2\" target=\"_blank\"><span class=\"CIBrand_TSF\"></span></a></div><div class=\"LLItem clearfix\"><a href=\"http://www.dinheirovivo.pt/ECO/Economia/CIECO056139/Economia/%C3%9Altimas/Greve_dos_transportes_so_parou_comboios&amp;referrer=FooterOJ&#xA;    \" class=\"LLBlock_1 jQLLHover_2\" target=\"_blank\"><span class=\"LLIBPic\"><img src=\"http://www.dinheirovivo.pt//File?dDocName=CIECO008440&amp;fileName=cieco008440.jpg&amp;rendition=small&amp;SID=185513\" width=\"145px\" height=\"110px\" alt=\"\"><b class=\"Blkout_3\"></b><i class=\"PLIco_1\"></i></span><h2>Greve dos transportes apenas parou comboios da CP</h2></a><a href=\"http://www.dinheirovivo.pt/?referrer=FooterOJ\" class=\"LLBlock_1 jQLLHover_2\" target=\"_blank\"><span class=\"CIBrand_DV\"></span></a></div>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n                    </div>\r\n                    <div class=\"FooterCol_2\">\r\n                      \r\n\r\n<div class=\"PubBox_300\">\r\n                \r\n<!-- begin ad tag 300x250 Fundo -->\r\n<script type=\"text/javascript\"> \r\n\tdocument.write('<script language=\"JavaScript\" src=\"http://ad.pt.doubleclick.net/adj/ojogo.pt/HOMEPAGE;' + segQS + ';pos=fundo;tile=2;dcopt=ist;sz=300x100,300x250,300x600,300x800;ord=' + ord + ';?\"><\\/script>');</script> \r\n\t<noscript><ahref=\"http://ad.pt.doubleclick.net/jump/ojogo.pt/HOMEPAGE;pos=fundo;tile=2;sz=300x100,300x250,300x600,300x800;ord=123456789?\" target=\"_blank\"> \r\n\t<img src=\"http://ad.pt.doubleclick.net/ad/ojogo.pt/HOMEPAGE;pos=fundo;tile=2;sz=300x100,300x250,300x600,300x800;ord=123456789?\" width=\"300\" height=\"800\" border=\"0\" alt=\"\"></a></noscript> \r\n\r\n<!-- End ad tag 300x250 Fundo -->\r\n                    \r\n</div>\r\n\r\n                    </div>\r\n                \r\n                </div>\r\n            </div>\r\n            \r\n            <div class=\"FBTabContent jQFTCont\">\r\n                <div class=\"BoxSt_58 clearfix\">\r\n                \r\n                    <div class=\"FooterCol_3\">\r\n                        <div class=\"BoxSt_29 clearfix\">\r\n                            \r\n                            <nav class=\"SiteMapList_1\">\r\n                                <ul>\r\n                                    <li><a href=\"/futebol/\" class=\"SMLTitle_1\">FUTEBOL</a>\r\n                                        <ul>\r\n                                            <li><a href=\"/futebol/1a_liga/\">L.Zon Sagres</a></li>\r\n                                            <li><a href=\"/futebol/2a_liga/\">II Liga</a></li>\r\n                                            <li><a href=\"/futebol/nao_profissional/\">No Profissional</a></li>\r\n                                            <li><a href=\"/futebol/taca_portugal/\">Taa de Portugal</a></li>\r\n                                            <li><a href=\"/futebol/taca_liga/\">Taa da Liga</a></li>\r\n                                            <li><a href=\"/futebol/formacao/\">Formao</a></li>\r\n                                        </ul>\r\n                                    </li>\r\n                                </ul>\r\n                            </nav>\r\n                            \r\n                            <nav class=\"SiteMapList_1\">\r\n                                <ul>\r\n                                    <li><a href=\"/internacional/\" class=\"SMLTitle_1\">INTERNACIONAL</a>\r\n                                        <ul>\r\n                                            <li><a href=\"/internacional/liga_campeoes/\">L.Campees</a></li>\r\n                                            <li><a href=\"/internacional/liga_europa/\">L.Europa</a></li>\r\n                                            <li><a href=\"/internacional/ligas_internacionais/\">Campeonatos</a></li>\r\n                                            <li><a href=\"/internacional/cristiano_ronaldo/\">Ronaldo</a></li>\r\n                                            <li><a href=\"/internacional/jose_mourinho/\">Mourinho</a></li>\r\n                                            <li><a href=\"/internacional/Portugueses/\">Portugueses</a></li>\r\n                                            <li><a href=\"/internacional/Selecao/\">Seleo</a></li>\r\n                                        </ul>\r\n                                    </li>\r\n                                </ul>\r\n                            </nav>\r\n                            \r\n                            <nav class=\"SiteMapList_1\">\r\n                                <ul>\r\n                                    <li><a href=\"/estatisticas/\" class=\"SMLTitle_1\">ESTATSTICAS</a>\r\n                                        <ul>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231682|5643\">Liga Zon Sagres</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231683|5642\">Liga Orangina</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231976|5647\">II Div. Norte</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231977|5646\">II Div. Centro</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231978|5653\">II Div. Sul</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231688|5641\">Alemanha</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231689|5648\">Espanha</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231687|5644\">Inglaterra</a></li>\r\n                                            <li><a href=\"/estatisticas/default.aspx?league=231691|5657\">Itlia</a></li>\r\n                                        </ul>\r\n                                    </li>\r\n                                </ul>\r\n                            </nav>\r\n                            \r\n                            <nav class=\"SiteMapList_1\">\r\n                                <ul>\r\n                                    <li><a href=\"/aominuto/\" class=\"SMLTitle_1\">LTIMAS</a></li>\r\n                                </ul>\r\n                                <ul>\r\n                                    <li><a href=\"/modalidades/\" class=\"SMLTitle_1\">MODALIDADES</a></li>\r\n                                </ul>\r\n                                <ul>\r\n                                    <li><a href=\"/opiniao/\" class=\"SMLTitle_1\">OPINIO</a></li>\r\n                                </ul>\r\n                                 <ul>\r\n                                    <li><a href=\"/multimedia/\" class=\"SMLTitle_1\">MULTIMDIA</a></li>\r\n                                </ul>\r\n                                 <ul>\r\n                                    <li><a href=\"/revistaj/\" class=\"SMLTitle_1\">REVISTA J</a></li>\r\n                                </ul>\r\n                                 <ul>\r\n                                    <li><a href=\"/jornaldodia/\" class=\"SMLTitle_1\">JORNAL DO DIA</a></li>\r\n                                </ul>\r\n                                 <ul>\r\n                                    <li><a href=\"/forum/\" class=\"SMLTitle_1\">FRUM</a></li>\r\n                                </ul>\r\n                                 <ul>\r\n                                    <li><a href=\"http://www.lojadojornal.pt\" target=\"_blank\" class=\"SMLTitle_1\">LOJA</a></li>\r\n                                </ul>\r\n                            </nav>\r\n                            \r\n                            \r\n                            \r\n                            <nav class=\"SiteMapList_1\">\r\n                                <ul>\r\n                                    <li><a href=\"/jogosemdirecto/\" class=\"SMLTitle_1\">JOGOS EM DIRETO</a></li>\r\n                                </ul>\r\n                                 <ul>\r\n                                    <li><a href=\"/servicos/videosliga.aspx\" class=\"SMLTitle_1\">VDEOS DA LIGA</a></li>\r\n                                </ul>\r\n                                <ul>\r\n                                    <li><a href=\"/iniciativas/\" class=\"SMLTitle_1\">INICIATIVAS</a></li>\r\n                                </ul>\r\n                                \r\n                            </nav>\r\n                            <nav class=\"SiteMapList_1\">\r\n                                <ul>\r\n                                    <li><a href=\"javascript:Empty()\" class=\"SMLTitle_1\">OUTROS</a>\r\n                                        <ul>\r\n                                        <li><a href=\"/servicos/programacaotv.aspx\">Programao TV</a></li>\r\n                                        <li><a href=\"/servicos/totojogos.aspx\">Totojogos</a></li>\r\n                                        <li><a href=\"/servicos/meteorologia.aspx\">Meteorologia</a></li>\r\n                                        <li><a href=\"/servicos/jogos.aspx\">Jogos</a></li>\r\n                                        </ul>\r\n                                    </li>\r\n                                </ul>\r\n                            </nav>\r\n                            \r\n                        </div>\r\n                    </div>\r\n                \r\n                    <div class=\"FooterCol_4\">\r\n                        <div class=\"BoxSt_31 clearfix\">\r\n                            \r\n                       \r\n                            \r\n                            <nav class=\"LinkList_7\">\r\n                                <ul>\r\n                                    <li><a id=\"jdLink\" href=\"javascript:Empty()\">Assinar o Jornal</a></li>\r\n                                    <li><a href=\"/institucional/outrosformatos.aspx\">Outros Formatos</a></li>\r\n                                    <li><a href=\"/institucional/termos.aspx\">Termos &amp; Privacidade</a></li>\r\n                                    <li><a href=\"/institucional/fichatecnica.aspx\">Ficha Tcnica</a></li>\r\n                                    <li><a href=\"/institucional/contactos.aspx\">Contactos</a></li>\r\n                                </ul>\r\n                            </nav>\r\n                            \r\n                        </div>\r\n                    </div>\r\n                \r\n                </div>\r\n            </div>\r\n\r\n        </div>\r\n    </footer>\r\n<!--[if !IE]> ... FOOTER WRAPPER end ... <![endif]-->\r\n\r\n\r\n<div id=\"SignLayer\" style=\"display:none\" onclick=\"event.cancelBubble=true;\">\r\n<!--[if !IE]> ... MODAL CONTENT begin ... <![endif]-->\r\n<div class=\"Overlay_1 jQOverlay_1\"></div>\r\n\r\n<!--[if !IE]> Tune up height position of the modal box popup by setting inline style 'title' percentage <![endif]-->\r\n<div class=\"ModalBox_1 ModalBoxSz_1 jQModalBox_1\" title=\"30%\">\r\n    <div class=\"MBInner\">\r\n        <div class=\"MBCont\">\r\n        \r\n            <div class=\"BoxSt_114\">\r\n                <div class=\"Title_27\"><em>EXCLUSIVO</em> ASSINANTES</div>\r\n                <a href=\"http://cimojogo.newspaperdirect.com/epaper/viewer.aspx\" target=\"_blank\" class=\"BoxLink_2 clearfix\">\r\n                    <span class=\"BLGrp_1\">\r\n                        <strong class=\"BLChild_1\">O Jogo em formato <em>epaper</em></strong>\r\n                        <strong class=\"BLChild_3\">apenas <em>0.27</em><i>&euro;</i> dia*</strong>\r\n                    </span>\r\n                    <span class=\"BLGrp_2\"><img src=\"/common/images/content/epaper2.png\" alt=\"\" /></span>\r\n                    <span class=\"BLGrp_3\"><i>*</i> valor para uma assinatura anual 99&euro; iva includo</span>\r\n                </a>\r\n                <div class=\"BoxSt_115 clearfix\">\r\n                    <div class=\"BoxSt_116 BtnBox_6\">\r\n                        <a href=\"http://cimojogo.newspaperdirect.com/epaper/viewer.aspx\" target=\"_blank\"><b><strong>Assine O Jogo</strong> <em>e tenha acesso a todos os contedos exclusivos que temos para s.</em></b></a>\r\n                    </div>\r\n                    <div class=\"BoxSt_117 BtnBox_7\">\r\n                        <a href=\"http://cimojogo.newspaperdirect.com/epaper/viewer.aspx\" target=\"_blank\"><b><strong>Experimente</strong> <em>Grtis</em></b></a>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        \r\n        </div>\r\n        <span class=\"MBClose\" onclick=\"jQ('#SignLayer').fadeOut();\" title=\"Fechar\"><b>Fechar</b></span>\r\n    </div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n\t\t  \r\n\t\t    \r\n\t\t\r\n\r\n\t</form>\r\n\r\n\t\r\n\r\n<!-- START REVENUE SCIENCE PIXELLING CODE FOOTER --> \r\n\r\n<script src=\"http://js.revsci.net/gateway/gw.js?csid=D08736\"></script>\r\n<script>\r\nDM_tag();\r\n</script>\r\n<!-- END REVENUE SCIENCE PIXELLING CODE -->\r\n\r\n<script type='text/javascript'>\r\n    var _sf_async_config={};\r\n    /** CONFIGURATION START **/\r\n    _sf_async_config.uid = 27992;\r\n    _sf_async_config.domain = 'ojogo.pt';\r\n    _sf_async_config.sections = 'HOMEPAGE';  //CHANGE THIS\r\n    _sf_async_config.authors = '';    //CHANGE THIS\r\n    /** CONFIGURATION END **/\r\n    (function(){\r\n      function loadChartbeat() {\r\n        window._sf_endpt=(new Date()).getTime();\r\n        var e = document.createElement('script');\r\n        e.setAttribute('language', 'javascript');\r\n        e.setAttribute('type', 'text/javascript');\r\n        e.setAttribute('src',\r\n           (('https:' == document.location.protocol) ? 'https://a248.e.akamai.net/chartbeat.download.akamai.com/102508/' : 'http://static.chartbeat.com/') +\r\n           'js/chartbeat.js');\r\n        document.body.appendChild(e);\r\n      }\r\n      var oldonload = window.onload;\r\n      window.onload = (typeof window.onload != 'function') ?\r\n         loadChartbeat : function() { oldonload(); loadChartbeat(); };\r\n    })();\r\n</script>\r\n\r\n<!--Inicio de TAG Netscope v2 (Ci) -->\r\r\n<script language=\"javascript\">\r\r\nvar WRP_ID= 456858;\r\r\nvar WRP_SECTION='HOMEPAGE';\r\r\nvar WRP_SUBSECTION='HOMEPAGE';\r\r\n/* -- No alterar as 2 variaveis seguintes -- */\r\r\n        var WRP_SECTION_GRP= WRP_ID;\r\r\n        var WRP_SUBSECTION_GRP= WRP_SECTION;\r\r\nvar WRP_CONTENT='HOMEPAGE';\r\r\nvar WRP_CONTENT_GRP_ACTIVE = 0;\r\r\nvar WRP_CHANNEL='site';\r\r\n/* Profondeur Frame */\r\r\nvar WRP_ACC ;\r\r\nwreport_ok=0;\r\r\n</script>\r\r\n<script language=\"javascript\" src=\"/Common/Script/Netscope2.js\"></script>\r\r\n<script>\r\r\nvar w_counter;\r\r\nif(wreport_ok==1){w_counter = new wreport_counter(WRP_SECTION, WRP_SUBSECTION, WRP_ID, WRP_ACC, WRP_CHANNEL, WRP_SECTION_GRP, WRP_SUBSECTION_GRP, WRP_CONTENT_GRP_ACTIVE);\r\r\nw_counter.add_content(WRP_CONTENT);\r\r\nw_counter.count();}\r\r\n</script>\r\r\n<!-- Fim TAG Netscope v2 www.netscope.marktest.pt (C)Weborama/Marktest -->\r\r\n\r\n\r\n\r\n\r\n\r\n\r\n    <script type=\"text/javascript\">\r\n      SetPage();\r\n    </script>\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "testdata/big5.html",
    "content": "<!-- Vignette V/5 Sat Dec 03 16:48:18 2005 -->\n \r\n<!--body start-->\r\n\r\n\t<script>\r\nvar strHostname=String(window.location.hostname).toLowerCase();\r\nswitch(strHostname)\r\n{\r\ncase 'showbiz.chinatimes.com' :\r\nwindow.location.href=\"http://showbiz.chinatimes.com/2009Cti/Channel/Showbiz/showbiz-idx/0,5010,,00.html\";\r\nbreak;\r\ncase 'tech.chinatimes.com' :\r\nwindow.location.href=\"http://news.chinatimes.com/list/9.html\";\r\nbreak;\r\ncase 'sports.chinatimes.com' :\r\nwindow.location.href=\"http://news.chinatimes.com/list/12.html\";\r\nbreak;\r\ncase 'life.chinatimes.com' :\r\nwindow.location.href=\"http://life.chinatimes.com/2009Cti/Channel/Life/life-idx/0,5023,,00.html\";\r\nbreak;\r\ndefault :\r\nbreak;\r\n}\r\n</script>\r\n\r\n<!--body start-->\r\n\r\n\t<HTML> \r\n<HEAD>\r\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=big5\">\r\n<meta http-equiv=\"Pragma\" content=\"no-cache\">\r\n<meta http-equiv=\" Cache-Control\" content=\"no-store\">\r\n<meta http-equiv=\"Expires\" content=\"Tue, 01 Jan 1980 1:00:00 GMT\">\r\n<link rel=\"canonical\" href=\"http://news.chinatimes.com\" />\r\n\r\n<meta name=\"description\" content=\"ɹqlGѤɳBuӮɳB̸ԺɪsDTAFvB]gBѥB|BڡBaBޡBT֡B|BBͬBȹCBv`ءBLҤ]AxʭGƷmSAQװϡBհͥRFNAӤMǹFsDƥC\">\r\n<meta name=\"keywords\" content=\"ɹql,ɳ,uӮɳ,,ѹq,q,Ȭwq,ɳPZ\">\r\n <title>ɹqlGu״IsDC</title>\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"̷sJI\" href=\"http://rss.chinatimes.com/rss/focusing-u.rss\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"YɷsD\" href=\"http://rss.chinatimes.com/rss/latestnews-u.rss\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"vsD\" href=\"http://video.chinatimes.com/video-rss.ashx\">\r\n<link rel=\"alternate\" type=\"application/rss+xml\" title=\"xS\" href=\"http://mag.chinatimes.com/rss.ashx?type=more\">\r\n<link href=\"http://www.chinatimes.com/2009Cti/cthead/css-main/index.css\" rel=\"stylesheet\" type=\"text/css\">\r\n<link href=\"http://www.chinatimes.com/2009Cti/cthead/css-main/hover-menu.css\" rel=\"stylesheet\" type=\"text/css\">\r\n<script src=\"http://admanager.cyberone.com.tw/scripts/spac.js\" type=\"text/JavaScript\"></script>\r\n<script src=\"http://www.chinatimes.com/2009Cti/cthead/Scripts/2008main-min.js\" type=\"text/JavaScript\"></script>\r\n<script charset=\"utf-8\" type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js\"></script>\r\n<script src=\"http://www.chinatimes.com/2009Cti/cthead/mobilere.js\"></script>\r\n</HEAD>\r\n<body id=\"page-top\">\r\n<script charset=\"utf-8\" type=\"text/javascript\" src=\"http://www.chinatimes.com/2009Cti/cthead/jquery.cookie.js\"></script>\r\n<script charset=\"utf-8\" type=\"text/javascript\" src=\"http://www.chinatimes.com/2009Cti/cthead/directCurrentPage.js\"></script>\r\n\r\n<div class=\"wrapper ad\"><div id=\"DynamicFlashAD\"></div></div>\r\n<div class=\"wrapper\">\r\n<div class=\"top-prompt\" id=\"DynamicIpad\"></div>\r\n</div>\r\n<div id=\"jq-wrapper\" class=\"wrapper idx-place-holder\">\r\n<!-- Vignette V/5 Mon Apr 13 18:45:40 2009 -->\n <div class=\"header\">\r\n<div class=\"special-promotion\" id=\"spcpro\">\r\n</div>\r\n<div class=\"family-link\">\r\n      <ul class=\"channel-list\">\r\n        <li><a href=\"http://news.chinatimes.com/\"></a></li>\r\n        <li><fjtignoreurl><a href=\"http://news.chinatimes.com/\" onclick=\"setLanguage('zh-tw')\">c</a></fjtignoreurl></li>\r\n        <li><a id=\"gburl\" href=\"http://gb.chinatimes.com/gate/gb/news.chinatimes.com/2009cti/2009cti-index/\" onclick=\"setLanguage('zh-cn')\">²</a></li>\r\n        <li><a href=\"http://sso.chinatimes.com/\">|</a></li>\r\n        <li><a href=\"http://stock.chinatimes.com/\">ݽL</a></li>\r\n        <li><a href=\"http://tol.chinatimes.com/CT_NS/ctsearch.aspx\">˯</a></li>\r\n        <li><a href=\"http://www.info-cip.com/\">ӱ</a></li>\r\n        <li><a href=\"javascript:;\" onClick=\"this.style.behavior='url(#default#homepage)';this.setHomePage('http://news.chinatimes.com/');\">]</a></li>\r\n        <li class=\"highlight\"><a href=\"http://www.chinatimes.com/mobile/mobile-idx.htm\">ʾ\\Ū</a></li>\r\n        <li class=\"last\"><a href=\"http://www.chinatimes.com/news-feed/news-feed-idx.htm\">Widget</a></li>\r\n      </ul>\r\n    </div>\r\n\t<script>\r\n\tif(document.getElementById(\"gburl\") ) {\tdocument.getElementById(\"gburl\").href=\"http://gb.chinatimes.com/gate/gb/\"+String(window.location).toLowerCase().replace(\"http://\",\"\");}\r\n\t</script> <!-- Vignette V/5 Mon Apr 13 18:45:40 2009 -->\n<h1 id=\"logo-idx\" class=\"h1-logo\"><a href=\"http://news.chinatimes.com/\" title=\"ɹql\">ɹql</a></h1><div id=\"todayDate\" class=\"date\"><script>var mydate = new Date();var MM = mydate.getMonth()+1;var DD = mydate.getDate();var WW=new Array(\"\",\"@\",\"G\",\"T\",\"|\",\"\",\"\");if(MM.length==1) MM=\"0\"+MM;  document.write(mydate.getFullYear()+\"-\"+(MM>=10?MM:\"0\"+MM)+\"-\"+(DD>=10?DD:\"0\"+DD)+\"&nbsp;P\"+WW[mydate.getDay()]);</script></div>\r\n<div id=\"jq-life-info\" class=\"life-info\"></div>\r\n\r\n <div class=\"search\">\r\n  <table>\r\n    <tr>\r\n      <th>jMG</th>\r\n      <td><form action=\"http://search.tol.com.tw/Search.aspx\" method=\"post\" name=\"formsearch\" target=\"_blank\">\r\n          <select name=\"SearchTarget\" class=\"form-txt\">\r\n            <option value=\"ct\" selected>s D</option>\r\n            <option value=\"ctblog\"></option>\r\n            <option value=\"mag\">x</option>\r\n\t\t\t<option value=\"ctent\">qv</option>\r\n            <option value=\"yahoo\">d</option>\r\n          </select>\r\n          <input name=\"SearchWord\" type=\"text\" class=\"form-txt\" style=\"height: 22px;width:120px\"  value=\"пJjMr\"  onfocus=\"if(this.value.indexOf('')!=-1) if(this.style.backgroundColor='#ffffe5')this.value=''\" onBlur=\"if(this.value=='') if(this.style.backgroundColor='#FFF')this.value='пJjMr'\">\r\n          <input name=\"eX\" type=\"submit\" class=\"form-btn\" value=\"d\">\r\n      </form></td>\r\n      <td><img src=\"http://www.chinatimes.com/2009Cti/cthead/images/logo-yahoo-search.gif\" alt=\"Yahoo\" title=\"Yahoo\"></td>\r\n    </tr>\r\n  </table>\r\n</div><script>\r\n var mydate = new Date();\r\nvar YY = mydate.getFullYear();\r\nvar MM = mydate.getMonth()+1;\r\nvar DD = mydate.getDate();\r\nvar WW=new Array(\"\",\"@\",\"G\",\"T\",\"|\",\"\",\"\");\r\nif(MM<10) MM=\"0\"+MM;\r\nif(DD<10) DD=\"0\"+DD;\r\nif(document.getElementById(\"todayDate\")) document.getElementById(\"todayDate\").innerHTML=YY+\"-\"+MM+\"-\"+DD+\"&nbsp;P\"+WW[mydate.getDay()];\r\n</script>\r\n<div class=\"weather\">\r\n      <iframe  id=\"weather-frame\" name=\"weather-frame\" src=\"http://www.chinatimes.com/weather/weather-widget.htm\"  marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" scrolling=\"no\" allowtransparency=\"true\" class=\"weather-frame\"></iframe>\r\n    </div>\r\n\r\n\t </div>\r\n      <div class=\"topnav\">\r\n    <ul class=\"menu clear-fix\">\r\n\t  <li class=\"rightitem last\"><a href=\"http://game.chinatimes.com\" class=\"highlight new\" target=\"_blank\"><b>Cֺ</b></a></li>\r\n\t  <li class=\"rightitem\"><a href=\"http://house.chinatimes.com/\" class=\"highlight\" target=\"_blank\"><b>Цa</b></a></li>\r\n\t  <li class=\"rightitem\"><a target=\"_blank\" class=\"highlight new\" href=\"http://act.chinatimes.com/aimg/1305/KangZhang_port_120801.htm\"><b>nа</b></a></li>\r\n\t  <li class=\"rightitem\"><a href=\"http://api.hotsteed.com:8080/advExposure?sid=ADVE2012000054 \" class=\"highlight\" target=\"_blank\"><b>C</b></a></li>\r\n\t\t\r\n\t  <li><a href=\"http://news.chinatimes.com/\" class=\"on\"><b>sD</b></a></li>\r\n\t  <li><a href=\"http://money.chinatimes.com/\"><b>z]</b></a></li>\r\n      <li><a href=\"http://video.chinatimes.com/\"><b>v</b></a></li>\r\n\t  <li><a href=\"http://ent.chinatimes.com/Movie/\" class=\"new\"><b>qv</b></a></li>\r\n      <li><a href=\"http://showbiz.chinatimes.com/\"><b>T</b></a></li>\r\n      <li><a href=\"http://life.chinatimes.com/\"><b>֬</b></a></li>\r\n\t  <li><a href=\"http://udr.chinatimes.com/\" target=\"_blank\"><b></b></a></li>\r\n      <li><a href=\"http://blog.chinatimes.com/\"><b></b></a></li>\r\n\t  <li><a href=\"http://mag.chinatimes.com/mag-idx.aspx\"><b>x</b></a></li>\r\n\t  <li><a href=\"http://forum.chinatimes.com\"><b>Qװ</b></a></li>\r\n\t  <li class=\"last\"><a href=\"http://want-car.chinatimes.com/\" class=\"new\"><b></b></a></li>\r\n\t  \r\n\t  \r\n    </ul>\r\n  </div><div class=\"topnav2\">\r\n    <div class=\"bgn\">\r\n      \r\n<ul class=\"menu clear-fix\">\r\n\r\n<li  class=\"base\" ><a href=\"http://camera.chinatimes.com/\" target=\"_blank\">}</a></li>\r\n<li  class=\"base\" ><a href=\"http://camera.chinatimes.com/beauty/\" target=\"_blank\">f</a></li>\r\n<li id=\"T14\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/14.html\" target=\"_blank\">׾</a></li>\r\n<li id=\"T01\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/1.html\" target=\"_blank\">JI</a></li>\r\n<li id=\"T02\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/2.html\" target=\"_blank\">Fv</a></li>\r\n<li id=\"T07\" class=\"base\" ><a href=\"http://money.chinatimes.com/news/news-overview-table.aspx?MainCatID=1206\" target=\"_blank\">]g</a></li>\r\n<li id=\"T08\" class=\"base\" ><a href=\"http://money.chinatimes.com/news/news-overview-table.aspx?MainCatID=1203\" target=\"_blank\">ѥ</a></li>\r\n<li id=\"T05\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/5.html\" target=\"_blank\">⩤</a></li>\r\n<li id=\"T04\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/4.html\" target=\"_blank\"></a></li>\r\n<li id=\"T03\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/3.html\" target=\"_blank\">|</a></li>\r\n<li id=\"T06\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/6.html\" target=\"_blank\">a</a></li>\r\n<li id=\"T11\" class=\"base\" ><a href=\"http://showbiz.chinatimes.com/Chinatimes/ExteriorContent/Showbiz/Showbiz-Main/0,4424,,00.html\" target=\"_blank\">T</a></li>\r\n<li id=\"T18\" class=\"base\" ><a href=\"http://life.chinatimes.com/2009Cti/Channel/Life/life-idx/0,5023,,00.html\" target=\"_blank\">֬</a></li>\r\n<li id=\"T09\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/9.html\" target=\"_blank\"></a></li>\r\n<li id=\"T12\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/12.html\" target=\"_blank\">B</a></li>\r\n<li id=\"T13\" class=\"base\" ><a href=\"http://news.chinatimes.com/list/13.html\" target=\"_blank\"></a></li>\r\n<li  class=\"base\" ><a href=\"http://news.chinatimes.com/weeknews/weekly.html\" target=\"_blank\">@PsD</a></li>\r\n<li  class=\"base\" ><a href=\"http://forum.chinatimes.com/default.aspx?g=forum_hotnews&n=1&cd=0\" target=\"_blank\">^̼</a></li>\r\n<li  class=\"base\" ><a href=\"http://news.chinatimes.com/hotnews/\" target=\"_blank\">I\\̼</a></li>\r\n<li   class=\"base highlight last\" ><a href=\"http://ipad.chinatimes.com/\" target=\"_blank\">iPad</a></li></ul>\r\n  </div>\r\n  </div></div>\r\n\r\n\t  <div class=\"wrapper\">\r\n  <div class=\"main-bgn clear-fix\">\r\n    <div class=\"clmn-left\">\r\n      <div class=\"focus clear-fix\">\r\n        <div id=\"focus-photo\" class=\"focus-photo switch-tab\">\r\n         <div class=\"realtime-news\">\r\n\t<dl class=\"inline-list clear-fix\">\r\n\t  <dd class=\"ui last rightitem select\">\r\n\t   <select onChange=\"javascript:document.location=(this.value);\">\r\n\t      <option value=\"\" selected=\"\">s</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110110/0/20/1.html\">JI</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110101/0/20/1.html\">FvnD</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110102/0/20/1.html\">]g~</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110103/0/20/1.html\">ѥ</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110104/0/20/1.html\">ڭnD</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110109/0/20/1.html\">jD</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110105/0/20/1.html\">|UH</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110106/0/20/1.html\">vT</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110107/0/20/1.html\">ͬs</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110108/0/20/1.html\">a豽y</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110111/0/20/1.html\">޺</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/110112/0/20/1.html\">Bv</option>\r\n\t\t  <option value=\"http://news.chinatimes.com/rtnlist/110113/0/20/1.html\">it</option>\r\n\t      <option value=\"http://news.chinatimes.com/rtnlist/1101/0/20/1.html\">䥦</option>\r\n\t    </select>\r\n\t  </dd>\r\n\t  <dd class=\"rightitem ui more\"><a href=\"http://news.chinatimes.com/rtnlist/alllist.html\" class=\"more\">`</a></dd>\r\n\t  </dd>\r\n\t  <dt class=\"ui\">YɷsDG</dt>\r\n\t  <dd>\r\n\t    <iframe src=\"http://news.chinatimes.com/2009Cti/index/inc/2009Cti-Index-inc-03-Channel-Rtn/0,5062,230,00.shtml\" allowtransparency=\"true\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n\t  </dd>\r\n\t</dl>\r\n</div>\r\n <div id=\"tab-focus-photo\">\r\n\t\t  \t\r\n\t  \r\n   \t\t<ul class=\"menu clear-fix\">\r\n            <li><a href=\"#\" id=\"focusSWA\" title=\"ϤsD\" class=\"on\" onclick=\"javascript:ToChangeCamera('c');\">ϤsD<span class=\"pointer\"></span></a></li>\r\n            <li class=\"last\"><a href=\"#\" id=\"focusSWB\" class=\"off\" title=\"vsD\" onclick=\"javascript:ToChangeCamera('v');\">vsD<span class=\"pointer\"></span></a></li>\r\n        </ul>\r\n    </div>\r\n          <div id=\"sub-focus-photo\" class=\"underlayer clear-fix\">\r\n\t\t  \t<div class=\"ad\">\r\n              <div class=\"banner-660x410\" ><div class=\"container\" id=\"DynamicFocusAD\"></div></div>\r\n            </div>\r\n            <div class=\"focus-clmn-left floatbox-left\">\r\n              <div class=\"container\">\r\n                <div class=\"news-camera clear-fix\">\r\n                  <span id=\"playPhotoView\"></span>\r\n                </div>\r\n              \r\n\t\t\t  <div class=\"ad\">\r\n      <div class=\"box-350\">\r\n        <!--h2><b>oͬM</b></h2-->\r\n         \r\n\t\t\t<script src=\"http://admanager.cyberone.com.tw/scripts/spac.js\"></script>\r\n<table class=\"container\">\r\n          <tr>\r\n           <td class=\"cell-left\"><script> spac_writeAd (\"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=100X120/POSITION=LEFT11\" );</script></td>\r\n           <td class=\"cell-center\"><script> spac_writeAd (\"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=100X120/POSITION=LEFT12\" );</script></td>\r\n           <td class=\"cell-right\"><script> spac_writeAd (\"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=100X120/POSITION=LEFT13\" );</script></td>\r\n          </tr>\r\n        </table>  </div>\r\n    </div>\r\n\t</div>\r\n<script>\r\nfunction toGetUrl4Spc(){\r\nvar iSpcType=99;\r\nvar arr_Spc=new Array(\"01\", \"02\", \"03\", \"04\", \"06\", \"07\", \"08\", \"09\");\r\n\r\nif(iSpcType==99) iSpcType=Math.floor(Math.random()*arr_Spc.length);\r\nreturn \"http://news.chinatimes.com/Channel-Special/\"+arr_Spc[iSpcType]+\".shtml\";\r\n}\r\ndocument.write('<iframe id=\"focus-feature-frame\" name=\"focus-feature-frame\" src=\"'+toGetUrl4Spc()+'\" frameborder=\"0\" scrolling=\"no\" allowtransparency=\"true\" class=\"focus-feature-frame\"></iframe>');\r\n</script>\r\n\t </div>\r\n            <div class=\"focus-clmn-right floatbox-right\">\r\n              <iframe id=\"focus-news-frame\" name=\"focus-news-frame\" src=\"http://news.chinatimes.com/2007moment/\" frameborder=\"0\" scrolling=\"no\" allowtransparency=\"true\" class=\"focus-news-frame\"></iframe>\r\n\t\t\t</div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n    <div class=\"clmn-right\">\r\n      <!-- Vignette V/5 Fri Dec 11 13:55:33 2009 -->\n\r\n<div class=\"ad\">\r\n\r\n\t \r\n\t\t<div class=\"text-ad\">\r\n          <div class=\"container\">\r\n            <p>\r\n<script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT01\" ); \r\n</script>\r\n\r\n            </p>\r\n            <p>\r\n              <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT02\" ); \r\n</script>\r\n            </p>\r\n            <p>\r\n<script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT03\" ); \r\n</script>\r\n            </p>\r\n            <p>\r\n<script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT04\" ); \r\n</script>\r\n\r\n            </p>\r\n            <p>\r\n<script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT05\" ); \r\n</script>\r\n            </p>\r\n            <p>\r\n<script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT07\" ); \r\n</script>\r\n            </p>\r\n            <p>\r\n<script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292X25/POSITION=RIGHT08\" ); \r\n</script>\r\n            </p>\r\n          </div>\r\n        </div>\r\n        <div class=\"banner-300x250\">\r\n          <script>spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=300X250/POSITION=RIGHTA\" );</script>\r\n        </div>\r\n        <div class=\"banner-300x100\">\r\n          <script>spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=300X100/POSITION=RIGHTC\" );</script>\r\n        </div> </div>\r\n </div>\r\n  </div>\r\n</div>\r\n\r\n\t  <script>\r\nvar iChangeCamera = 0;\r\nvar iChangeVideo = 0;\r\nvar iChangePromote = 0;\r\nvar sCameraJsUrl=\"http://camera.chinatimes.com/focusA_v5.aspx\";\r\nvar sVideoJsUrl=\"http://video.chinatimes.com/cti-home.ashx\";\r\nvar sPromoteJsUrl =\"http://www.chinatimes.com/vgn/main/sppromote.js\";\r\n\r\nvar sHomeCameraType=\"v\";\r\nvar sHomeCameraVideoJsUrl=sCameraJsUrl;\r\n\r\n\r\nif(sHomeCameraType==\"v\")\r\n{\r\n\tsHomeCameraVideoJsUrl=sVideoJsUrl;\r\n\tdocument.getElementById(\"focusSWA\").className=\"off\";\r\n\tdocument.getElementById(\"focusSWB\").className=\"on\";\r\n}\r\nfunction ToChangeCamera(stype)\r\n{\r\n\tvar sHomeCameraVideoJsUrl=sCameraJsUrl;\r\n\tif(iChangeCamera==0)\r\n\t{\r\n\t\tif(stype==\"v\")\r\n\t\t{\tsHomeCameraVideoJsUrl=sVideoJsUrl;\r\n\t\t\tCreatScriptU(sHomeCameraVideoJsUrl);\r\n\t\t}\r\n\t\telse\r\n\t\t\tCreatScript(sHomeCameraVideoJsUrl);\r\n\t\tiChangeCamera=1;\r\n\t}\r\n\telse\r\n\t{\r\n\t\tif(stype==\"v\") ToShowVideoPic();\r\n\t\telse ToShowCameraPic();\r\n\t}\r\n\tif(stype==\"v\")\r\n\t{\r\n\t\tdocument.getElementById(\"focusSWA\").className=\"off\";\r\n\t\tdocument.getElementById(\"focusSWB\").className=\"on\";\r\n\t}\r\n\telse//camera\r\n\t{\r\n\t\tdocument.getElementById(\"focusSWA\").className=\"on\";\r\n\t\tdocument.getElementById(\"focusSWB\").className=\"off\";\r\n\t}\r\n}\r\nif(sHomeCameraType==\"v\")\r\ndocument.write('<scr'+'ipt language=\"javascript\" charset=\"utf-8\" src=\"'+sHomeCameraVideoJsUrl+'\"></scr'+'ipt>');\r\nelse\r\ndocument.write('<scr'+'ipt language=\"javascript\" src=\"'+sHomeCameraVideoJsUrl+'\"></scr'+'ipt>');\r\n</script>\r\n \r\n\r\n<div class=\"wrapper\">\r\n  <div class=\"main-bgn clear-fix\">\r\n    <div class=\"clmn-left\">\r\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n \r\n\t  <div id=\"board\" class=\"board\">\r\n        <div class=\"bgn\">\r\n          <table class=\"clmn-table\" width=\"100%\">\r\n            <tr>\r\n              <td class=\"cell-left\" style=\"width: 50%;\"><h2 class=\"blog\"><span class=\"icon\"></span><b></b></h2>\r\n                <div class=\"ui title-more\"> <a href=\"http://blog.chinatimes.com/\" class=\"more\">h</a> </div></td>\r\n              <td class=\"cell-right\" style=\"width: 50%;\"><h2 class=\"comment\"><span class=\"icon\"></span><b>^̼</b></h2>\r\n                <div class=\"ui title-more\"> <a href=\"http://forum.chinatimes.com/default.aspx?g=forum_hotnews&n=1&cd=0\" class=\"more\">h</a> </div></td>\r\n            </tr>\r\n            <tr>\r\n              <td class=\"cell-left\"><ul class=\"vertical-list\">\r\n\t\t\t  \t   \t\r\n\t\t\t\t      \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t \r\n\t\t\t      \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <a href=\"http://blog.chinatimes.com/dodobear/archive/2012/08/16/2509999.html\" title=\"Ǻ\" class=\"ui\">\t\t\t Ǻ </a><a href=\"http://blog.chinatimes.com/dodobear/archive/2012/08/16/2509999.html\" title=\"ŪĬʡG 820]P@^101~822]PT^14G00-16G00Cߤ tUC\"> ŪĬʡG 820]P@^...\t </a></li> \r\n\t\t\t\t   \t\r\n\t\t\t\t      \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t \r\n\t\t\t      \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <a href=\"http://blog.chinatimes.com/JoyceLee/archive/2012/08/16/2509501.html\" title=\"Joyce\" class=\"ui\"> Joyce..\t </a><a href=\"http://blog.chinatimes.com/JoyceLee/archive/2012/08/16/2509501.html\" title=\"isTV鯸ejAX ˫Ʋz\"> isTV鯸ejAX ˫...\t </a></li> \r\n\t\t\t\t   \t\r\n\t\t\t\t      \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t \r\n\t\t\t      \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <a href=\"http://blog.chinatimes.com/chengdundun/archive/2012/08/16/2509486.html\" title=\"GJJ\" class=\"ui\">\t\t\t GJJ </a><a href=\"http://blog.chinatimes.com/chengdundun/archive/2012/08/16/2509486.html\" title=\"f|֪5TjAgAOAŻn!\"> f|֪5TjAgAO...\t </a></li> \r\n\t\t\t\t   \t\r\n\t\t\t\t      \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t \r\n\t\t\t      \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <a href=\"http://blog.chinatimes.com/kisplay/archive/2012/08/16/2509447.html\" title=\"KisPlay\" class=\"ui\"> KisPla..\t </a><a href=\"http://blog.chinatimes.com/kisplay/archive/2012/08/16/2509447.html\" title=\"A䰭} ˯˰_!\">\t\t\t A䰭} ˯˰_! </a></li> \r\n\t\t\t\t   \t\r\n\t\t\t\t      \r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t \r\n\t\t\t      \r\n\t\t\t\t\t<li class=\"last\">\r\n\t\t\t\t\t <a href=\"http://blog.chinatimes.com/HJL/archive/2012/08/16/2509427.html\" title=\"JN\" class=\"ui\">\t\t\t JN </a><a href=\"http://blog.chinatimes.com/HJL/archive/2012/08/16/2509427.html\" title=\"pjѦb\">\t\t\t pjѦb </a></li> \r\n\t\t\t\t   \t\r\n\t\t\t\t        </ul></td>\r\n\t\t\t\t \r\n\t\t\t\t  <td class=\"cell-right\"><ul class=\"vertical-list\">\r\n\t\t\t   \t\r\n\t\t\t\t  \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <span class=\"meta comment\">G<span class=\"number\">47</span></span><a href=\"http://forum.chinatimes.com/default.aspx?g=posts&amp;t=138574\">\t\t\t Gxĳ  ⩤X@ </a></li>\r\n                  \t\r\n\t\t\t\t  \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <span class=\"meta comment\">G<span class=\"number\">26</span></span><a href=\"http://forum.chinatimes.com/default.aspx?g=posts&amp;t=138371\">\t\t\t xOiX UOdI </a></li>\r\n                  \t\r\n\t\t\t\t  \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <span class=\"meta comment\">G<span class=\"number\">23</span></span><a href=\"http://forum.chinatimes.com/default.aspx?g=posts&amp;t=138534\"> ⩤TaO uפGv...\t </a></li>\r\n                  \t\r\n\t\t\t\t  \r\n\t\t\t\t\t<li>\r\n\t\t\t\t\t <span class=\"meta comment\">G<span class=\"number\">23</span></span><a href=\"http://forum.chinatimes.com/default.aspx?g=posts&amp;t=138518\">\t\t\t sǳiЦWL~I </a></li>\r\n                  \t\r\n\t\t\t\t  \r\n\t\t\t\t\t<li class=\"last\">\r\n\t\t\t\t\t <span class=\"meta comment\">G<span class=\"number\">23</span></span><a href=\"http://forum.chinatimes.com/default.aspx?g=posts&amp;t=138513\"> Wq  աGӨ...\t </a></li>\r\n                   </ul></td>\r\n            </tr>\r\n          </table>\r\n        </div>\r\n      </div> <div class=\"feature\">\r\n        <div class=\"fluid-inline-block\">\r\n          <ul class=\"group\">\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>JI</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://news.chinatimes.com/list/1.html\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n   \r\n\r\n   \r\n\t\t\t\t\r\n\t\t\t\t        <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://news.chinatimes.com/focus/501011741/112012081600079.html\">i7hnq @⩤X</a></h3>\r\n\t\t\t\t\r\n\t            <div class=\"thumb-photo\">\r\n\t              <div class=\"cropper\"><a href=\"http://news.chinatimes.com/focus/501011741/112012081600079.html\" title=\"i7hnq @⩤X\"><img src=\"http://www.chinatimes.com/content-images/11050105/C018160A.jpg\" alt=\"i7hnq @⩤X\"></a></div>\r\n\t            </div>\r\n\t\t\t\t <p class=\"intro\">@W۶}xOuפGvAQUȥ|IbkAaۤjPXPإX...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/focus/501011746/112012081600174.html\">Xĥu_|q 鸡I</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/focus/501011742/112012081600093.html\">ɳPZG@_lXu</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/focus/501011743/112012081600005.html\">] ǴCuDǡv</a></li>\r\n\t\t\r\n\r\n</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>FvnD</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://news.chinatimes.com/list/2.html\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n   \r\n\r\n   \r\n\t\t\t\t\r\n\t\t\t\t        <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://news.chinatimes.com/politics/11050202/112012081600126.html\">j~H i۫HQOq קV...</a></h3>\r\n\t\t\t\t\r\n\t            <div class=\"thumb-photo\">\r\n\t              <div class=\"cropper\"><a href=\"http://news.chinatimes.com/politics/11050202/112012081600126.html\" title=\"j~H i۫HQOq קVGhaeiժ]\"><img src=\"http://www.chinatimes.com/content-images/110101/C018160R.jpg\" alt=\"j~H i۫HQOq קVGhaeiժ]\"></a></div>\r\n\t            </div>\r\n\t\t\t\t <p class=\"intro\">@ըMoDpuqwDקVQbxWtALܡA~MȿӦsbAiF...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/politics/11050201/122012081600116.html\">51%Ggٷ|c</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/politics/50207174/112012081600131.html\">dqP\\ GxY}</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/politics/11050202/112012081600128.html\">֩wmȦ歲R Ӧ@Dq</a></li>\r\n\t\t\r\n\r\n</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>yx</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://mag.chinatimes.com/mag-idx.aspx\" class=\"more\">h</a> </div>\r\n                \r\n  \r\n\t  \r\n\t<div class=\"articlebox\">\r\n\t\r\n\t\t \r\n\t\t       <div class=\"headline clear-fix\">\r\n            <h3><a href=\"http://mag.chinatimes.com/mag-cnt.aspx?artid=15391\">mY~GܪGơn</a></h3>\r\n\t\t\t\r\n\t\t\t  <div class=\"thumb-photo\">\r\n            <div class=\"cropper\"><a href=\"http://mag.chinatimes.com/mag-cnt.aspx?artid=15391\" title=\"mY~GܪGơn\"><img src=\"http://mag.chinatimes.com/photo/77/2655/2655_B.jpg\" alt=\"mY~GܪGơn\"></a></div>\r\n          \t</div>\r\n\t\t\t <p class=\"intro\">ms²nY~OǪܡHܬO֡HY~MLYH-->Y~qܥXͮɡAN...</p>\r\n          </div>\r\n\t <ul class=\"vertical-list\">           \r\n\t\r\n\t\t<li><a href=\"http://mag.chinatimes.com/mag-cnt.aspx?artid=15381\" title=\"Wan^ENO~NH\">Wan^ENO~NH</a></li>\r\n\t\t\r\n\t\t<li><a href=\"http://mag.chinatimes.com/mag-cnt.aspx?artid=15375\" title=\"Ĺb_]IAwPǰϳq\">Ĺb_]IAwPǰϳq</a></li>\r\n\t\t\r\n\t\t<li><a href=\"http://mag.chinatimes.com/mag-cnt.aspx?artid=15367\" title=\"ijVɮ ꨾໡K\">ijVɮ ꨾໡K</a></li>\r\n\t\t </ul>\r\n\t </div>\r\n\t  </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>]gz</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://money.chinatimes.com/news/news-overview-table.aspx?MainCatID=1206\" class=\"more\">h</a> </div>\r\n                \r\n  \r\n\t  \r\n\t<div class=\"articlebox\">\r\n\t\r\n\t\t       <div class=\"headline clear-fix\">\r\n            <h3><a href=\"http://money.chinatimes.com/news/news-content.aspx?id=20120816002108&cid=1212\">mnŨ髬PAq̧l...</a></h3>\r\n\t\t\t <p class=\"intro\">ڶŭɽwAꤺ^sAھڧHU|̷sέpA~~ҶߩΤBsA~ܤHŨ̺ZPAeWOĤ@yqBvȥyq...</p>\r\n          </div>\r\n\t <ul class=\"vertical-list\">           \r\n\t\r\n\t\t<li><a href=\"http://money.chinatimes.com/news/news-content.aspx?id=20120816001013&cid=1212\" title=\"~Ӱ`WҤjW800\">~Ӱ`WҤjW800</a></li>\r\n\t\t\r\n\t\t<li><a href=\"http://money.chinatimes.com/news/news-content.aspx?id=20120816001011&cid=1212\" title=\"InW[ ȶťiui\">InW[ ȶťiui</a></li>\r\n\t\t\r\n\t\t<li><a href=\"http://money.chinatimes.com/news/news-content.aspx?id=20120816000443&cid=1212\" title=\"ַsC v3\">ַsC v3</a></li>\r\n\t\t </ul>\r\n\t </div>\r\n\t  </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container alt\"> <h2>ɰd</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://health.chinatimes.com/\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n \r\n <div class=\"articlebox\">\r\n\t\r\n\t  \r\n\t\r\n\t\t<div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://health.chinatimes.com/contents.aspx?cid=5,66&id=15361\"  title=\"xw̽լd TjuġvoOH~\">xw̽լd Tjuġvo...</a></h3>\r\n\t            <div class=\"thumb-photo\">\r\n\t              <div class=\"cropper\"><a href=\"http://health.chinatimes.com/contents.aspx?cid=5,66&id=15361\"  title=\"xw̽լd TjuġvoOH~\"><img src=\"http://focus.chinatimes.com/images/c/images/images/client/2012/1208/0816/20120816-1sss.jpg\" alt=\"\"></a></div>\r\n\t            </div>\r\n\t            <p class=\"intro\">ھڥ@ɽåͲ´]WHO^󤵦~5뤽̷sƫXAyC3Ӧ~HAN1ӿw...</p>\r\n\t          </div>\r\n\t   <ul class=\"vertical-list\">\r\n\t\r\n \r\n \r\n\t\t<li><a href=\"http://health.chinatimes.com/contents.aspx?cid=5,66&id=15325\">qʡnx_Qr|D찷dy</a></li>\r\n\t\r\n\t\t<li><a href=\"http://health.chinatimes.com/contents.aspx?cid=2,20&id=15326\">nyGL йv_i_Xn</a></li>\r\n\t\r\n\t\t<li><a href=\"http://health.chinatimes.com/contents.aspx?cid=5,66&id=15331\">BnKOy ⴤ̫W|</a></li>\r\n\t</ul>\r\n</div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container alt\"> <h2>ȹC</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://www.travelrich.com.tw/\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n \r\n <div class=\"articlebox\">\r\n<ul class=\"vertical-list\">\r\n\r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/dragontr_hptr_070903.htm\" target=\"_blank\">isȹCj_ gը 11 <img src=http://act.chinatimes.com/aimg/travelrich07/dragontr_hptr_070903.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/1travel_hptr_070903.htm\" target=\"_blank\">iƮȹCjyO|d~j]Sf<img src=http://act.chinatimes.com/aimg/travelrich07/1travel_hptr_070903.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/ponytour_hptr_090504.htm\" target=\"_blank\">i_jƴ ĤGH̰uf|d <img src=http://act.chinatimes.com/aimg/travelrich07/ponytour_hptr_090504.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/artisan_hptr_071119.htm\" target=\"_blank\">iɦepOjyCPKy<img src=http://act.chinatimes.com/aimg/travelrich07/artisan_hptr_071119.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/fantasyrussia_hptr_110613.htm\" target=\"_blank\">iѪRXjXùȹCej}<img src=http://act.chinatimes.com/aimg/travelrich07/fantasyrussia_hptr_110613.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/perfect_hptr_080929.htm\" target=\"_blank\">iVIjgը!2qꤺZݦXk<img src=http://act.chinatimes.com/aimg/travelrich07/perfect_hptr_080929.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/kusotour_hptr_110221.htm\" target=\"_blank\">iCijQDAR}BabܡH<img src=http://act.chinatimes.com/aimg/travelrich07/kusotour_hptr_110221.gif border=0></a></li>  \t\r\n\t      \r\n\t\r\n\t\t \t  \r\n\t\t \t<li><a href=\"http://act.chinatimes.com/aimg/travelrich07/comebesttour_hptr_061225.htm\" target=\"_blank\">i÷Rd jOҤJڤPLe Meridien<img src=http://act.chinatimes.com/aimg/travelrich07/comebesttour_hptr_061225.gif border=0></a></li>  \t\r\n\t      </ul>\r\n</div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>PDK</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://showbiz.chinatimes.com/\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n\r\n\r\n   \r\n\t\t\t\t\r\n\t\t\t\t        <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://showbiz.chinatimes.com/showbiz/110511/112012081600003.html\">v@JInNɧJ h...</a></h3>\r\n\t\t\t\t\r\n\t            <div class=\"thumb-photo\">\r\n\t              <div class=\"cropper\"><a href=\"http://showbiz.chinatimes.com/showbiz/110511/112012081600003.html\" title=\"v@JInNɧJ h\"><img src=\"http://www.chinatimes.com/content-images/110511/C018160V.jpg\" alt=\"v@JInNɧJ h\"></a></div>\r\n\t            </div>\r\n\t\t\t\t <p class=\"intro\">@bUɰlduIֲ]]vvB~ɤ]_qǤkʨ`ڡAǴCXUPZPTZn...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n\r\n\r\n<li><a href=\"http://showbiz.chinatimes.com/showbiz/110511/112012081600023.html\">PֻnȪFʼCF PP</a></li>\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n<li><a href=\"http://showbiz.chinatimes.com/showbiz/110511/112012081600018.html\">PDntBOϳu@H</a></li>\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n<li><a href=\"http://showbiz.chinatimes.com/showbiz/110511/112012081600032.html\">ڼvnpҫkɺtt M~ܫ</a></li>\r\n\t\t</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>⩤Nx</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://news.chinatimes.com/list/5.html\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n   \r\n\r\n    <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://news.chinatimes.com/mainland/11050501/122012081600178.html\">լdc߳gٱNϼu</a></h3>\r\n\t\t\t\t <p class=\"intro\">@@apHcCBB InternationaleXugٽť֮ѡvAb̿jxgټƾڪpUAĥλPpǷ|ۦPsPլd覡ӤϬMjgٱpAezS...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/mainland/11050506/112012081600182.html\">礤»x? &#22531;</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/mainland/11050503/112012081600218.html\">sY Tjaqӫ</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/mainland/11050504/112012081600073.html\">swx[Ƶoa</a></li>\r\n\t\t\r\n\r\n</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>|UH</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://news.chinatimes.com/list/3.html\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n   \r\n\r\n   \r\n\t\t\t\t\r\n\t\t\t\t        <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://news.chinatimes.com/society/11050301/112012081600136.html\">[fJ ˦paAݤUh</a></h3>\r\n\t\t\t\t\r\n\t            <div class=\"thumb-photo\">\r\n\t              <div class=\"cropper\"><a href=\"http://news.chinatimes.com/society/11050301/112012081600136.html\" title=\"[fJ ˦paAݤUh\"><img src=\"http://www.chinatimes.com/content-images/11050301/C018161H.jpg\" alt=\"[fJ ˦paAݤUh\"></a></div>\r\n\t            </div>\r\n\t\t\t\t <p class=\"intro\">@qk|ʪuH[fvAШHivڬNAQѤWٯSa|žɼvήo|F...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/society/110503/112012081600140.html\">uvqyjp ]</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/society/11050304/132012081600636.html\">syq  CȹB</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/society/11050302/112012081600139.html\">Q~eZפjklY 300I </a></li>\r\n\t\t\r\n\r\n</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>ȦtnD</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://news.chinatimes.com/list/4.html\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n   \r\n\r\n   \r\n\t\t\t\t\r\n\t\t\t\t        <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://news.chinatimes.com/world/110504/112012081600153.html\">ڬwg٧xy ۱齯</a></h3>\r\n\t\t\t\t\r\n\t            <div class=\"thumb-photo\">\r\n\t              <div class=\"cropper\"><a href=\"http://news.chinatimes.com/world/110504/112012081600153.html\" title=\"ڬwg٧xy ۱齯\"><img src=\"http://www.chinatimes.com/content-images/110504/C018161Y.jpg\" alt=\"ڬwg٧xy ۱齯\"></a></div>\r\n\t            </div>\r\n\t\t\t\t <p class=\"intro\">@ڬwg٦MڤϭYzaB}tAQǺǸyڬwʩmAH۸gٰIhAug...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/world/11050404/112012081600148.html\">wD իPtd</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/world/11050401/122012081600157.html\">2050~ 4psy̦h</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/world/11050403/112012081600155.html\">EkĿ@ y֫DwU</a></li>\r\n\t\t\r\n\r\n</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>޷mA</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://news.chinatimes.com/list/9.html\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n   \r\n\r\n    <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://news.chinatimes.com/tech/171706/122012081600337.html\">E֦3j֤߳]Ƨ޳N</a></h3>\r\n\t\t\t\t <p class=\"intro\">@H޳NӡBΪAȾɦVM~bs{]ƼtлEޡA֦PVDBCVDPlasma Etcher3j֤߳]Ƨ޳NAެObBƦXbΥDQʤ󪺥ͲL{A...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/tech/171706/122012081600338.html\">ڶRTERADϥNz</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/tech/171706/122012081600339.html\">ʲywO ĭC</a></li>\r\n\t\t\r\n\r\n\r\n \r\n   \r\n\r\n<li><a href=\"http://news.chinatimes.com/tech/171706/122012081600336.html\">ݪA y֥~</a></li>\r\n\t\t\r\n\r\n</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t  \r\n\t\t   <li class=\"entry\">\r\n\t\t   \r\n\t\t\t<div class=\"container\"> <h2>Zּ֬</h2>\r\n\t\t\t\t<div class=\"ui title-more\"> <a href=\"http://life.chinatimes.com/\" class=\"more\">h</a> </div>\r\n                \n\n\n\n\n\n\n\n\n\n\n\n\n\r\n\r\n    \r\n \r\n \r\n<div class=\"articlebox\">\r\n\r\n\r\n\r\n \r\n\r\n\r\n    <div class=\"headline clear-fix\">\r\n\t            <h3><a href=\"http://life.chinatimes.com/life/130518/132012081600638.html\">Ѯn~򶳨tvT _p}B</a></h3>\r\n\t\t\t\t <p class=\"intro\">@HܡAѨ䭷~򶳨tvTAH_Myȫᦳp}BAUBɶiC\r\n@xFBKbqBὬΫnaϤwɦuȰ}BιpBA䤤bKbqΥxFa...</p>\r\n\t          </div>\r\n\t          <ul class=\"vertical-list\">\r\n\t\t\t   \r\n\r\n\r\n \r\n\r\n\r\n<li><a href=\"http://life.chinatimes.com/life/130518/132012081600620.html\">XnլdGkʪέDvCk</a></li>\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n<li><a href=\"http://life.chinatimes.com/life/11051801/112012081600050.html\">ͬsDnin 馩p~</a></li>\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n<li><a href=\"http://life.chinatimes.com/life/11051801/112012081600069.html\">īOnKvTu@ hY_GUC</a></li>\r\n\t\t</ul></div>\r\n </div>\r\n\t\t\t </li>\r\n\t\t   </ul>\r\n\t\t   </div>\r\n      </div>\r\n    </div>\r\n\t <div class=\"clmn-right\">\r\n\t\r\n\r\n\t<div class=\"ad\">\r\n\t \r\n\t\t<div class=\"text-ad\" style=\"margin-top: 0px;\">\r\n    <h2><b>Oͬ</b></h2>\r\n    <div class=\"container\">\r\n      <p>\r\n        <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292x22/POSITION=RIGHT41\" ); \r\n</script>\r\n      </p>\r\n      <p>\r\n        <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292x22/POSITION=RIGHT42\" ); \r\n</script>\r\n      </p>\r\n      <p>\r\n        <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=292x22/POSITION=RIGHT43\" ); \r\n</script>\r\n      </p>\r\n      <iframe scrolling=\"no\" height=\"72\" frameborder=\"0\" width=\"100%\" marginheight=\"0\" allowtransparency=\"1\" src=\"http://act.chinatimes.com/aimg/clickforce_diamondtx_4.htm\"></iframe>\r\n    </div>\r\n  </div>\r\n<div class=\"banner-300x250\" style=\"margin-top: 0px;\">\r\n    <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=300X250/POSITION=RIGHTB\" ); \r\n</script>\r\n  </div>\r\n  <div class=\"banner-300x100\">\r\n    <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=300X100/POSITION=RIGHTD\" ); \r\n</script>\r\n  </div>\r\n  <div class=\"banner-300x100\">\r\n    <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=300X100/POSITION=RIGHTE\" ); \r\n</script>\r\n  </div>\r\n  <div class=\"banner-300x100\">\r\n    <script> \r\n  spac_writeAd ( \"/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=300X100/POSITION=RIGHTF\" ); \r\n</script>\r\n  </div>\r\n  <div class=\"text-ad\">\r\n          <iframe id=\"right-markets\" name=\"right-markets\" src=\"http://news.chinatimes.com/2007Cti/2007Cti-Index-inc/Inc/2007-03-ChoiceCh-part02-iframe-Marketing2/0,4655,main,00.shtml\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" scrolling=\"no\" allowtransparency=\"true\"></iframe>\r\n        </div>\r\n        <div class=\"text-ad\">\r\n          <iframe id=\"right-events\" name=\"right-events\" src=\"http://news.chinatimes.com/2007Cti/2007Cti-Index-inc/Inc/2007-03-ChoiceCh-part02-iframe-Marketing2/0,4655,mainevent,00.shtml\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" scrolling=\"no\" allowtransparency=\"true\"></iframe>\r\n        </div>\r\n\t</div >\r\n\t  <div class=\"fb-social-plugin\">\r\n        <div class=\"container\">\r\n          <iframe src=\"http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2FCTfans&amp;width=300&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=true&amp;header=false&amp;height=395\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:300px; height:395px;\" allowTransparency=\"true\"></iframe>\r\n        </div>\r\n      </div>\r\n\t\t\r\n </div>\r\n\t\r\n\t  </div>\r\n</div><!-- Vignette V/5 Mon Apr 13 18:45:40 2009 -->\n <div id=\"SuperAd\" class=\"wrapper\"></div>\r\n<!-- Vignette V/5 Tue Jan 04 10:41:39 2011 -->\n\r\n<!-- Foot start-->   \r\n        <div id=\"jq-foot\" class=\"wrapper\"></div>\r\n\r\n<script charset=\"utf-8\" src=\"http://www.chinatimes.com/2009Cti/cthead/foot.js\"></script>\r\n<!-- Foot End--><!-- Vignette V/5 Mon Apr 13 18:45:40 2009 -->\n\r\n<script>var bNeedCtiMenu=true;</script>\r\n<script src=\"http://news.chinatimes.com/2009Cti/Common/HM/2009-CTmenu/0,5150,,00.shtml\"></script><script language=\"JavaScript\" type=\"text/javascript\">\r\nfunction ToRunButtonADs()\r\n{\r\nif(document.getElementById(\"SuperAd\"))\r\nCreatScript(\"http://ad.cyberone.com.tw/tserver/SITE=CHINATIMES.TW/AREA=NES.HP/AAMSZ=990X600/POSITION=DOWN/pageid=\"+(new Date()).getTime());//Wżsim\r\nCreatScript(\"http://ad.cyberone.com.tw/tserver/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=250X250/POSITION=POPUP/pageid=\"+(new Date()).getTime());//POPUPsi\r\n\r\n\r\n\r\n\r\n   <!-- osi榡GCreatScript(\"si}/pageid=\"+(new Date()).getTime()); -->\r\nCreatScript(\"http://ad.cyberone.com.tw/tserver/SITE=CHINATIMES.TW/AREA=NEWS.HP/AAMSZ=65X95/POSITION=FLOATER/pageid=\"+(new Date()).getTime());\r\n<!-- ʺAsi榡GCreatScript(\"si}\"); -->\r\n//CreatScript(\"http://www.chinatimes.com/vgn/ads/DynamicAd.js\");\r\n<!-- ipadsi榡GCreatScript(\"si}\"); -->\r\nCreatScript(\"http://www.chinatimes.com/vgn/ads/DynamicIpad.js\");\r\n}\r\nToRunButtonADs();\r\nsetTimeout(\"window.location.reload()\",1100000);//WDreload10\r\n\r\n function LifeInfoCallback(data)\r\n    {\r\n        $('<select id=\"selLifeInfo\">').appendTo('#jq-life-info').change(function()\r\n        {\r\n            var item = data.LifeInfoLists[$(this).val()];\r\n            if (item.newWindow)\r\n                window.open(\"http://www.chinatimes.com/2009Cti/cthead/popupContainer.htm?id=\" + $(this).val());\r\n            else\r\n                window.location.href = item.url;\r\n        });\r\n        \r\n        $.each(data.LifeInfoLists, function(i, item)\r\n        {\r\n            $('<option />').attr('selected', item.selected).val(i).text(item.text).appendTo(\"#jq-life-info #selLifeInfo\");\r\n        });\r\n        \r\n        //footerLifeInfoCallback(data);\r\n    }\r\n\r\n</script>\r\n<script charset=\"utf-8\" src=\"http://www.chinatimes.com/2009Cti/cthead/Scripts-utf8/lifeinfo-list.js\"></script>\r\n<!-- Google ̨ΤƤulܫOX -->\r\n<script type=\"text/javascript\">\r\n  var _gaq = _gaq || [];\r\n  \r\n  _gaq.push(['_setAccount', 'UA-949390-1']);\r\n\r\n  _gaq.push(['_trackPageview']);\r\n  _gaq.push(['_trackPageLoadTime']);\r\n\r\n  (function() {\r\n    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\r\n    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\r\n    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\r\n  })();\r\n</script>\r\n<!-- Google ̨ΤƤulܫOX -->\r\n<!-- alexa begin -->\r\n<script type=\"text/javascript\" src=\"https://d31qbv1cthcecs.cloudfront.net/atrk.js\"></script>\r\n<script type=\"text/javascript\">_atrk_opts = { atrk_acct: \"JvLre1aYs600Mr\", domain:\"chinatimes.com\"}; atrk ();</script><noscript><img src=\"https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=JvLre1aYs600Mr\" style=\"display:none\" height=\"1\" width=\"1\" alt=\"\" /></noscript>\r\n<!-- alexa end -->\r\n<script type=\"text/javascript\" src=\"http://www.chinatimes.com/analytics/c.js?hash=e641c880429550853b168cd2f1dcb892\"></script>\r\n</body>\r\n</HTML>\r\n"
  },
  {
    "path": "testdata/euc_jp.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"ja\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:og=\"http://ogp.me/ns#\" xmlns:fb=\"http://www.facebook.com/2008/fbml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=EUC-JP\">\r\n<meta http-equiv=\"Content-Style-Type\" content=\"text/css\">\r\n<meta http-equiv=\"Content-Script-Type\" content=\"text/javascript\">\r\n<title> ڳŷԾShopping is Entertainment!  󥿡ͥåȺ̿䡢Υ饤󥷥åԥ󥰥ߥ˥ƥ </title>\r\n<meta name=\"Description\" content=\"ŷԾϥ󥿡ͥåΡ̿䤬ڤ祷åԥ󥰥⡼롣ե꡼ޡåȤ饪󡢥꡼ƥ󥰥ɤ˳Ƽ磻٥Ȥޤǿ͵ϤȤܥʥСܳŪʥ饤󥷥åԥ󥰥ߥ˥ƥǤ\">\r\n<meta name=\"keywords\" content=\",󥿡ͥå,饤󥷥åԥ,ŷ,ŷԾ,rakuten,饯ƥ,餯Ƥ\">\r\n<link rel=\"alternate\" media=\"handheld\" href=\"http://m.rakuten.co.jp/?l-id=mld_top\">\r\n<link rel=\"canonical\" href=\"http://www.rakuten.co.jp/\">\r\n<meta name=\"robots\" CONTENT=\"NOYDIR\">\r\n<meta name=\"robots\" CONTENT=\"NOODP\">\r\n<meta property=\"og:title\" content=\"ڳŷԾShopping is Entertainment!  󥿡ͥåȺ̿䡢Υ饤󥷥åԥ󥰥ߥ˥ƥ\">\r\n<meta property=\"og:type\" content=\"website\">\r\n<meta property=\"og:description\" content=\"ŷԾϥ󥿡ͥåΡ̿䤬ڤ祷åԥ󥰥⡼롣ե꡼ޡåȤ饪󡢥꡼ƥ󥰥ɤ˳Ƽ磻٥Ȥޤǿ͵ϤȤܥʥСܳŪʥ饤󥷥åԥ󥰥ߥ˥ƥǤ\">\r\n<meta property=\"og:url\" content=\"http://www.rakuten.co.jp/\">\r\n<meta property=\"og:image\" content=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/logo/logo_w200_h200.gif\">\r\n<meta property=\"og:site_name\" content=\"ŷԾ\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/common.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/layout.css?v=1207111500\" type=\"text/css\" media=\"all\"> \r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/sidecolumn.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/css/liquid/api.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"/com/inc/home/20080930/beta/css/liquid/myrakuten_dpgs.css\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/leftcolumn.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/header.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"/com/inc/home/20080930/opt/css/normal/footer.css\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" media=\"only screen and (max-device-width: 1024px)\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/css/liquid/ipad.css\" type=\"text/css\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/genre.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/opt/css/normal/supersale.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n\r\n<link rel=\"stylesheet\" href=\"/com/inc/home/20080930/beta/css/liquid/rakuten_membership.css\" type=\"text/css\" media=\"all\">\r\n\r\n<noscript>\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/css/noscript/set.css?v=1207111500\" type=\"text/css\" media=\"all\">\r\n</noscript>\r\n\r\n\r\n\r\n<!-- suggest css -->\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/css/liquid/suggest-2.0.1.css?v=1204231500\" type=\"text/css\" media=\"all\">\r\n<!-- /suggest css -->\r\n\r\n<script language=\"JavaScript\">\r\n<!--\r\nwindow.name=\"pWIN\";\r\nfunction openWIN01() {\r\n\tWIN01=window.open(\"https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fwww.rakuten.co.jp%2Fcom%2Finc%2Frc%2Finfo.html&D2=3.8611.68708.790066.25698730&C3=bdf6340a5cf5327f930fdae8793947858e5882be\",\"sWIN01\",\"location=no,directories=no,scrollbars=yes,resizable=yes,width=330,height=310,left=5,top=5\");\r\n}\r\n//-->\r\n</script>\r\n\r\n<!-- jquery JS -->\r\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/common/jquery-1.4.2.min.js\" ></script>\r\n<!-- /jquery JS -->\r\n\r\n<!-- service ashiato -->\r\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/common/plugin/jquery.tmpl-1.0.0.min.js\"></script>\r\n<!-- /service ashiato -->\r\n\r\n<!-- helpers.min JS -->\r\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/rjs/rjs_helpers.min.js\"></script> \r\n<!-- /helpers.min JS -->\r\n\r\n<!-- slideshow.min JS -->\r\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/rjs/rjs_slideshow.min.js\"></script>\r\n<!-- /slideshow.min JS -->\r\n\r\n<!-- swfobject JS -->\r\n<script src=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/js/swfobject.js\" type=\"text/JavaScript\"></script>\r\n<!-- /swfobject JS -->\r\n\r\n<!-- serchscript JS -->\r\n<script src=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/js/search_etc.js\" type=\"text/JavaScript\"></script>\r\n<!-- /serchscript JS -->\r\n\r\n<!-- scrollfollow JS -->\r\n<script src=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/js/scrollfollow.min.js\" type=\"text/JavaScript\"></script>\n\r\n<!-- /scrollfollow JS -->\r\n\r\n<!-- ŷΥޥ --> \r\n<script language=\"JavaScript\"> \r\n<!--\r\n\tfunction clearEmail() {\r\n\t\tif(document.news.email.value == '᡼륢ɥ쥹ϡ') {\r\n\t\t\tdocument.news.email.value = '';\r\n\t\t}\r\n\t}\r\n \r\n\tfunction subm() {\r\n\t\tif(document.news.email.value == '᡼륢ɥ쥹ϡ' || document.news.email.value == '') {\r\n\t\t\talert(\"᡼륢ɥ쥹Ƥ\");\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\treturn true;\r\n\t}\r\n//-->\r\n</script>\r\n\r\n<script type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/js/textads-1.0.0.js\"></script>\r\n\r\n<!-- asuraku -->\r\n<script type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/js/top_asuraku_liquid-1.0.0.js\"></script>\r\n<!-- /asuraku -->\r\n\r\n<!-- l-idưͿ -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nvar rakutenIchibaTop={};\r\nrakutenIchibaTop.lidAdd = function(idName){\r\n\tif(typeof jQuery == 'undefined' || typeof sc_abPatern == 'undefined'){\r\n\t\treturn;\r\n\t}\r\n\tvar $ = jQuery;\r\n\tvar linkDiv = $(idName);\r\n\tvar links = linkDiv.find('a');\r\n\tvar linkId = linkDiv.attr('linkid');\r\n\tlinks.click(function(){\r\n\t\tvar href = $(this).attr('href');\r\n\t\tvar scLinkname = $(this).attr('sc_linkName');\r\n\t\tif(scLinkname) {\r\n\t\t\tvar scParamPattern;\r\n\t\t\tif (href.indexOf(\"?\",0)>0) {\r\n\t\t\t\tscParamPattern=\"&l-id=\";\r\n\t\t\t}else{\r\n\t\t\t\tscParamPattern=\"?l-id=\";\r\n\t\t\t}\r\n\t\t\thref = href + scParamPattern + sc_abPatern + \"_\" + scLinkname;\r\n\t\t\t$(this).attr('href', href);\r\n\t\t}\r\n\t});\r\n}\r\nrakutenIchibaTop.lidAdd_replace = function(idName){\r\n\tif(typeof jQuery == 'undefined' || typeof sc_abPatern == 'undefined'){\r\n\t\treturn;\r\n\t}\r\n\tvar $ = jQuery;\r\n\tvar linkDiv = $(idName);\r\n\r\n\tlinkDiv.find('a').each(function(){\r\n\t\tvar href = $(this).attr('href');\r\n\t\tvar scLinkname = $(this).attr('sc_linkName');\r\n\t\tif(scLinkname) {\r\n\t\t\tvar scParamPattern;\r\n\t\t\tif (href.indexOf(\"?\",0)>0) {\r\n\t\t\t\tscParamPattern=\"&l-id=\";\r\n\t\t\t}else{\r\n\t\t\t\tscParamPattern=\"?l-id=\";\r\n\t\t\t}\r\n\t\t\thref = href + scParamPattern + sc_abPatern + \"_\" + scLinkname;\r\n\t\t\t$(this).attr('href', href);\r\n\t\t}\r\n\t});\r\n}\r\n//-->\r\n</script>\r\n\r\n<input type=\"hidden\" id=\"scUAPattern\" class=\"SiteCatalyst\" value=\"pc\">\r\n\r\n</head>\r\n<body onunload=\"\" onLoad=\"document.myForm.sitem.focus();\">\r\n\r\n<!-- l-idưͿ -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nvar sc_abPatern = \"top_normal\";\r\n-->\r\n</script>\r\n\r\n<div id=\"ritWrapper\">\r\n\r\n<!-- iPhone-iPhone -->\r\n\r\n<!-- /iPhone-iPhone -->\r\n\r\n<div id=\"ritServiceHeader\">\r\n\r\n\n\n\n<!--\n-->\n\n\n\n\r\n\r\n<div id=\"ritTopBelt\" style=\"overflow:visible; \" class=\"clfx\">\n<ul>\n<li><a href=\"http://ad2.trafficgate.net/t/r/5125/1441/99636_99636/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F5125%2F1441%2F99636_99636%2F&D2=3.8611.68708.790066.25698489&C3=ead88da4752e09b74234c139c2161a14f0375acc'\"></a></li>\n<li><a href=\"http://www.rakuten-edy.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten-edy.co.jp%2F&D2=3.8611.68708.790066.27054616&C3=70ed9777e132765a52d55e8d50e60819dfd0e69e'\">Edy</a></li>\n<li><a href=\"http://ad2.trafficgate.net/t/r/1852/3629/198512_234039/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F1852%2F3629%2F198512_234039%2F&D2=3.8611.68708.790066.25698490&C3=74c539315bdcd18b6360033bcec825dea15e3fcf'\">ġС</a></li>\n<li><a href=\"http://books.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_header20&D2=3.8611.68708.790066.25698491&C3=0b238823d37e0e66ad5bd9afffbb210f93bc1e6d'\">֥å</a></li>\n<li><a href=\"https://www.rakuten-sec.co.jp/ITS/rakuten_g/?scid=R-ICHIBA_top_up_head\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fc.p-advg.com%2FadpCnt%2Fr%3Fmid%3D899855%26lid%3D1&D2=3.8611.68708.790066.25698492&C3=f0533a72aa77ded94d468feb2746689376b0e374'\">ڷ</a></li>\n<li><a href=\"http://travel.rakuten.co.jp/?cid=wi_trv_ich_TRxxxx-xxxx_tpts\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2F%3Fcid%3Dwi_trv_ich_TRxxxx-xxxx_tpts&D2=3.8611.68708.790066.25698493&C3=92444205f70f99c73cdf2822a79288ed2574b17f'\">ȥ٥</a></li>\n<li><a href=\"http://www.infoseek.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.infoseek.co.jp%2F%3Fl-id%3Dtop_normal_header06&D2=3.8611.68708.790066.25698494&C3=4c8516dd5ecdde66ddc70100ce4a5b8433b3e013'\">ݡ</a></li>\n<li style=\"border-right:none;\">\n<!-- service ashiato text version style -->\n<!-- <script> -->\n<style>\n#svcAshiato1 {display:inline-block;position:relative;z-index:999}\n#svcAshiato1 .svcAshiatoConfig,.svcAshiatoServiceId{display:none}\n#svcAshiato1 .svcAshiatoLabel .exist,.hover{display:none}\n#svcAshiato1 .svcAshiatoLabel .exist a{padding:1px 15px 4px 4px}\n#svcAshiato1 .svcAshiatoLabel .hover a{padding:0 14px 3px 3px;border-style:solid;border-color:#ccc;border-width:1px 1px 0 1px;text-decoration:none;background-color:#fff;cursor:pointer}\n#svcAshiato1 .svcAshiatoLabel img{position:absolute;top:50%;right:4px;margin-top:-4px}\n#svcAshiato1 .svcAshiatoView{display:none;position:absolute;top:100%;right:0;width:200px;background:#fff;border-style:solid;border-color:#ccc;border-width:0 1px 1px 1px;padding:5px 0 5px 0}\n#svcAshiato1 .svcAshiatoLabelBorder{position:absolute;z-index:1;bottom:-3px;left:1px;width:70px;background-color:#fff;line-height:4px}\n#svcAshiato1 .svcAshiatoViewBorder{position:absolute;border-top:1px solid #ccc;top:0;left:0;width:150px;height:1px;line-height:1px}\n#svcAshiato1 .svcAshiatoView li{clear:both;text-align:left;background:url(http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/tri_f2ab00.gif) no-repeat 0 6px;padding:2px 0 2px 9px!important;margin:0 0 0 17px!important}\n#svcAshiato1 .svcAshiatoView a{display:block;text-decoration:none;color:#1d54a7}\n#svcAshiato1 .svcAshiatoView a:hover{color:#c00000!important;text-decoration:underline}</style>\n<!-- </script> -->\n\n<!-- /service ashiato text version style -->\n<!-- service ashiato text version template -->\n<script type=\"text/javascript\">\nvar sc_top_sbh_imp = \"top_sbh_normal_def\";\n</script>\n<span id=\"svcAshiato1\">\n<span class=\"svcAshiatoConfig\"\n\tdata-jsonurl=\"http://grp02.ashiato.rakuten.co.jp/svc-ashiato/vc?act=6&sid=1&c=2&t=1&k=7\"\n\tdata-maxnum=\"5\"\n\tdata-scid_key=\"scid\"\n\tdata-scid_val=\"top_sbh_gmx_normal\"\n\tdata-scid_seq=\"1\"\n\tdata-sc_impvar=\"sc_top_sbh_imp\"\n\tdata-sc_impcode=\"top_sbh_normal\"\n\tdata-sc_hovcode=\"top_sbh_imp_normal\"\n></span>\n<span class=\"svcAshiatoServiceId\">\n\t<ul>\n\t\t<li>2</li>\n\t\t<li>3</li>\n\t\t<li>9</li>\n\t\t<li>10</li>\n\t\t<li>11</li>\n\t\t<li>15</li>\n\t\t<li>17</li>\n\t\t<li>18</li>\n\t\t<li>19</li>\n\t\t<li>21</li>\n\t\t<li>22</li>\n\t\t<li>23</li>\n\t\t<li>24</li>\n\t\t<li>25</li>\n\t\t<li>26</li>\n\t\t<li>27</li>\n\t\t<li>28</li>\n\t\t<li>29</li>\n\t\t<li>32</li>\n\t\t<li>35</li>\n\t\t<li>36</li>\n\t\t<li>45</li>\n\t\t<li>46</li>\n\t\t<li>47</li>\n\t\t<li>48</li>\n\t\t<li>51</li>\n\t\t<li>54</li>\n\t\t<li>55</li>\n\t\t<li>56</li>\n\t\t<li>58</li>\n\t\t<li>59</li>\n\t\t<li>60</li>\n\t\t<li>63</li>\n\t</ul>\n</span>\n<span class=\"svcAshiatoLabel\">\n<span class=\"default\"><a href=\"http://www.rakuten.co.jp/sitemap/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fsitemap%2F%3Fl-id%3Dtop_normal_header09&D2=3.8611.68708.790066.25698495&C3=0c02dee51873e0f6370a15a071257d819d5af68b'\">ӥ</a></span>\n<span class=\"exist\"><a href=\"http://www.rakuten.co.jp/sitemap/\">褯Ȥӥ<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008_newtop/genre/bigtri_02.gif\"></a></span>\n<span class=\"hover\"><a>褯Ȥӥ<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008_newtop/genre/bigtri_02.gif\"></a><span class=\"svcAshiatoLabelBorder\">&nbsp;</span></span>\n</span>\n<div class=\"svcAshiatoView\">\n<div class=\"svcAshiatoViewBorder\">&nbsp;</div>\n<script id=\"svcAshiato1_viewTemplate\" type=\"text/x-jquery-tmpl\">\n<ul style=\"float:left;\">\n{{each(i,v) services}}\n\t<li style=\"border-right:none; width:100%;\"><a href=\"${v.serviceurl}\">${v.servicename}</a></li>\n{{/each}}\n</ul>\n<p style=\"clear: both; margin: 0 8px;\"><a href=\"http://www.rakuten.co.jp/sitemap/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fsitemap%2F%3Fl-id%3Dtop_normal_header09&D2=3.8611.68708.790066.25698495&C3=0c02dee51873e0f6370a15a071257d819d5af68b'\">ӥ򸫤 &gt;&gt;</a></p>\n</script>\n</div>\n</span>\n<script type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/svc_ashiato/svc_ashiato-1.0.0.min.js\"></script>\n<!-- /service ashiato text version template -->\n</li>\n</ul>\n</div><!-- /#ritTopBelt -->\r\n<div id=\"ritTopHeader\">\n<div id=\"sc_lidAdd_header\">\n<h1><img alt=\"ŷ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon logoIchiba\"></h1>\n<p id=\"logoBnr\">\n\n\n\n\n<a sc_linkName=\"logoyoko05\" href=\"http://event.rakuten.co.jp/keirou/\"><img src=\"http://image.www.rakuten.co.jp/com/img/thumb/200309/logo/2012/logoyoko_keiro_c+++.gif\" alt=\"Ϸ\" width=\"70\"  height=\"60\"  border=0></a><br>\n\n\n\n\n\n\n</p>\n<div id=\"ritShopsProducts\">\n<p class=\"ritProducts\"><a href=\"javascript:openWIN01()\">ȿ:128,641 ʿ:106,961,930</a></p>\n</div><!--/#ritShopsProducts-->\n<div id=\"ritBasketArea\">\n<div id=\"ritBasketBox\">\n\n<div class=\"basket\">\n\n<!-- ɽѥƥץ졼 -->\n<div class=\"disn\">\n\n<!-- ɽѥƥץ졼(ʤ) -->\n<!-- id=\"cartNumDisplay-template-inItemNum\" ǻꤷ˷ޤ-->\n<div id=\"cartNumDisplay-template-inItem\"><a sc_linkName=\"cart01\" href=\"https://basket.step.rakuten.co.jp/rms/mall/bs/cartall/\"><span id=\"displayCartNum\"><span class=\"itemNumber\"><span id=\"cartNumDisplay-template-inItemNum\"></span></span>ξʤäƤޤ</span></a></div>\n<!-- /ɽѥƥץ졼(ʤ) -->\n\n<!-- ɽѥƥץ졼(ʤʤ) -->\n<div id=\"cartNumDisplay-template-noItem\"><a sc_linkName=\"cart01\" href=\"https://basket.step.rakuten.co.jp/rms/mall/bs/cartall/\"><span id=\"displayCartNum\">ʤäƤޤ</span></a></div>\n<!-- /ɽѥƥץ졼(ʤʤ) -->\n\n</div>\n<!-- /ɽѥƥץ졼 -->\n\n<!-- ɽʬ -->\n<div id=\"cartNumDisplay-view\"><a sc_linkName=\"cart01\" href=\"https://basket.step.rakuten.co.jp/rms/mall/bs/cartall/\"><span id=\"displayCartNum\">㤤ʪ</span></a></div>\n<!-- /ɽʬ -->\n\n<!-- ɽJS -->\n<script src=\"http://a.ichiba.jp.rakuten-static.com/com/js/c/cartnumdisplay-1.0.1.min.js\" type=\"text/javascript\" language=\"JavaScript\" charset=\"EUC-JP\"></script>\n<!-- /ɽJS -->\n</div>\n<div id=\"ritBasketHelp\">\n<ul class=\"ritGrpRelation\">\n<li><a sc_linkName=\"header11\" href=\"http://www.rakuten.co.jp/ri/sitemap.html\"></a></li>\n<li><a sc_linkName=\"header12\" href=\"http://ichiba.faq.rakuten.co.jp/app/home/\">إ</a></li>\n<li><a sc_linkName=\"header13\" href=\"http://www.rakuten.co.jp/recruit/\">Ѿ</a></li>\n<li><a sc_linkName=\"header14\" href=\"http://event.rakuten.co.jp/anshin/\">󤷤</a></li>\n</ul>\n<ul class=\"ritSiteUtility\">\n<li><a sc_linkName=\"header19\" href=\"http://event.rakuten.co.jp/beginner/\">Ƥ</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fec%2F%3Fcamp%3D701100000004kPu%26scid%3Dwi_ich_top&D2=3.8611.68708.790066.26488069&C3=1968e35b9ef20518ef9b1b93fc6ef6acb4313efc\">ŹΤϤ</a>\n</li>\n</ul>\n</div><!--/#ritBasketHelp-->\n</div><!--/#ritBasketBox-->\n<ul class=\"ritCmtRetMenu\">\n<li><a sc_linkName=\"header16\" href=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconCircleArrow\" width=\"12\" height=\"12\"></a></li>\n<li><a sc_linkName=\"header17\" href=\"https://my.bookmark.rakuten.co.jp/item\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconCircleArrow\" width=\"12\" height=\"12\"></a></li>\n<li><a sc_linkName=\"header18\" href=\"https://order.my.rakuten.co.jp/\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconCircleArrow\" width=\"12\" height=\"12\"></a></li>\n<li class=\"reviewbg\"><a href=\"http://review.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Freview.rakuten.co.jp%2F&D2=3.8611.68708.790066.25698738&C3=f90d3baa4184341df117c6f06ff1f5c96c05c1d2'\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconCircleArrow\" width=\"12\" height=\"12\">ʤδۡ8610\n</a></li>\n</ul>\n</div><!-- /#ritBasketArea -->\n</div>\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_header\")\n//--></script>\n</div><!-- /#ritTopHeader -->\r\n<div id=\"ritGlobalNavi\">\n<div id=\"sc_lidAdd_global_navi\">\n<ul id=\"ritNaviTab\">\n<li><a sc_linkName=\"tab01\" href=\"http://ranking.rakuten.co.jp/\"><img alt=\"󥭥\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabRanking\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab02\" href=\"http://event.rakuten.co.jp/asuraku/\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabAsuraku\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab03\" href=\"http://event.rakuten.co.jp/freeshipping/\"><img alt=\"̵\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabFree\" width=\"64\" height=\"27\"></a></li>\n<li><a href=\"http://auction.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2F&D2=3.8611.68708.790062.25698506&C3=89669448d50ecd23a9ae228fbe267b6a09d55c98'\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabAuction\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab05\" href=\"http://www.rakuten.co.jp/groupbuy/\"><img alt=\"Ʊ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabGroup\" width=\"64\" height=\"27\"></a></li><!--\n--><li><a href=\"http://card.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F1927%2F1441%2F99636_99636%2F&D2=3.260.1590.767902.14345899&C3=f68718b13084cbcf989ce01878f443cabce156bf'\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201103/tab_06.gif\" width=\"64\" height=\"27\" alt=\"쥸åȥ\"></a></li><!--\n--><li><a href=\"http://toolbar.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F1852%2F3629%2F198512_234039%2F&D2=3.8611.68708.790062.25698508&C3=74c539315bdcd18b6360033bcec825dea15e3fcf'\"><img alt=\"ġС\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabToolbar\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab08\" href=\"http://event.rakuten.co.jp/mobile/\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabMobile\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab09\" href=\"http://event.rakuten.co.jp/present/\"><img alt=\"޻Ծ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabPresent\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab10\" href=\"http://event.rakuten.co.jp/market/\"><img alt=\"Ծ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabSpecial\" width=\"64\" height=\"27\"></a></li>\n<li><a href=\"http://books.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2FRBOOKS%2F&D2=3.8611.68708.790062.25698512&C3=ae0ca05d5608617008f2bd30d3093ff7ef7b988f'\"><img alt=\"֥å\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabBooks\" width=\"64\" height=\"27\"></a></li>\n<li><a sc_linkName=\"tab12\" href=\"http://product.rakuten.co.jp/\"><img alt=\"ʥ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabProduct\" width=\"64\" height=\"27\"></a></li>\n<li><a href=\"http://kobo.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F580%2F226%2F245033_301161%2F&D2=3.8611.68708.790062.27014554&C3=904e5efd69e6ddbd4e18b3ab74117f4b6dba1b38'\"><img alt=\"Żҥ֥å\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabKobo\" width=\"64\" height=\"27\"></a></li>\n<li class=\"ritSmrNaviTab\"><a href=\"https://www.rakuten-sec.co.jp/ITS/rakuten_g/?scid=R-ICHIBA_top_up_soken0001_txt\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fc.p-advg.com%2FadpCnt%2Fr%3Fmid%3D819507%26lid%3D1&D2=3.8611.68708.790062.25698514&C3=77c969ef71c89bfcde35b9153a2c7d5c6676c8d8'\"><img alt=\"ڷ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabCert\" width=\"58\" height=\"27\"></a></li>\n<li class=\"ritSmrNaviTab\"><a href=\"http://travel.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2Fcgi-bin%2Flpo%3Fdisp%3Dtop_tab&D2=3.8611.68708.790062.25698515&C3=c533207a3f712807e519b8ea40c1772c7d74b5ba'\"><img alt=\"ȥ٥\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabTravel\" width=\"58\" height=\"24\"></a></li>\n<li class=\"ritSmrNaviTab\"><a href=\"http://www.infoseek.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.infoseek.co.jp%2F&D2=3.8611.68708.790062.26323182&C3=d0d0fa523ff68654f700d3dbbea78d30725ca923'\"><img alt=\"ݡ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteNavi tabPortal\" width=\"58\" height=\"24\"></a></li>\n</ul>\n</div>\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_global_navi\")\n//--></script>\n</div><!-- /#ritGlobalNavi -->\r\n<div id=\"sc_lidAdd_search\">\n<div id=\"ritHdSearch\">\n<form name=\"myForm\" id=\"myForm\" method=\"get\" action=\"http://rd.rakuten.co.jp/cow/form/\" onSubmit=\"sc_searchBox('search');\">\n<input type=\"hidden\" name=\"sfrom\" value=\"rakuten_top\">\n<input type=\"hidden\" name=\"R2\" id=\"R2\" value=\"http://www.rakuten.co.jp/r/sr.cgi\">\n<input type=\"hidden\" name=\"D2\" value=\"3.260.1590.5865.6789518\">\n<input type=\"hidden\" name=\"_dummy\" value=\"ŷ\">\n<div class=\"ritSahArea\">\n<div class=\"ritSahInr\">\n<select name=\"g\" class=\"ritSahSelect\" id=\"foo1\">\n<option value=\"0\">ǹʤ</option>\n<option value=\"551177\"> եå</option>\n<option value=\"100371\">ǥ եå</option>\n<option value=\"558885\"></option>\n<option value=\"216131\">Хåʪ֥ɻ</option>\n<option value=\"216129\">奨꡼꡼</option>\n<option value=\"558929\">ӻ</option>\n<option value=\"100433\">ʡ塦ʥȥ</option>\n<option value=\"100533\">å٥ӡޥ˥ƥ</option>\n<option value=\"100227\"></option>\n<option value=\"551167\">ġۻ</option>\n<option value=\"100316\">塦եȥɥ</option>\n<option value=\"100317\">磻</option>\n<option value=\"510915\">ӡ롦μ</option>\n<option value=\"510901\">ܼ򡦾</option>\n<option value=\"100026\">ѥ󡦼յ</option>\n<option value=\"211742\">TVǥ</option>\n<option value=\"562637\"></option>\n<option value=\"101240\">CDDVDڴ</option>\n<option value=\"101070\">ݡġȥɥ</option>\n<option value=\"101077\"></option>\n<option value=\"100804\">ƥꥢ񡦼Ǽ</option>\n<option value=\"215783\">ʻߡʸ˼񡦼</option>\n<option value=\"558944\">åʡĴ</option>\n<option value=\"100005\">֡ǥDIY</option>\n<option value=\"101213\">ڥåȥաɡڥå</option>\n<option value=\"100938\">åȡ</option>\n<option value=\"551169\">ʡ󥿥ȡ</option>\n<option value=\"100939\">ơᡦ</option>\n<option value=\"101164\">㡦ۥӡ</option>\n<option value=\"200162\">ܡߥå</option>\n<option value=\"101114\">֡Х</option>\n<option value=\"503190\">ʡХ</option>\n<option value=\"101438\">ؤӡӥݸ</option>\n</select>\n<div class=\"ritSahInputArea\">\n<div class=\"sggstInputWrap\">\n<input type=\"text\" value=\"\" name=\"sitem\" size=\"40\" class=\"searchInput\" id=\"sitem\">\n</div>\n<div id=\"sggstConfig\" form=\"myForm\" input=\"sitem\" col=\"dir\" button=\"searchBtn\" hookRequired=\"1\" baseUrl=\"http://api.suggest.search.rakuten.co.jp\" suggestId=\"1\" encoding=\"euc-jp\" onoff=\"1\" sendFormParam=\"1\" groupId=\"g1\" uaBlackList=\"\" byteNumToHideOpenSggst=\"36\" hideToolTips=\"򱣤\" openToolTips=\"򸫤\">\n</div>\n<!-- suggest JS -->\n<script language=\"javascript\">\n<!--\nfunction sc_searchBox(partsname, option){\n\tvar partsname = (typeof rsuggest.isSuggestUse == \"function\"  && rsuggest.isSuggestUse())? \"suggest\" :\"search\";\n\tif(!option){option=\"\";}else{option=\":\"+option;}\n\t\n\tvar s=s_gi(s_account);\n\ts.linkTrackVars='eVar13';\n\ts.eVar13='Rakuten Top: SearchBox'+option;\n\ts.tl(this,'o','Top SearchBox');\n\ts_partsCounter(partsname+option);\n}\n//-->\n</script>\n<script language=\"JavaScript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/top/suggest/suggest-hook-top-1.0.0.min.js\"></script>\n<script language=\"JavaScript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/suggest/suggest-2.0.1.min.js\"></script>\n<!-- /suggest JS -->\n</div>\n</div><!-- /.ritSahInr -->\n<div class=\"ritSahTermArea\">\n<input type=\"image\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/searchbtn.gif\" alt=\"\" value=\"\" class=\"searchBtn\"  id=\"searchBtn\">\n<p class=\"ritSahTermInr\">\n<a sc_linkName=\"search01\" href=\"http://csearch.rakuten.co.jp/sbr/search\">ý</a><br><a sc_linkName=\"search02\" href=\"http://www.rakuten.co.jp/shop/\">å</a>/<a sc_linkName=\"search03\" href=\"http://directory.rakuten.co.jp/\">ʰ</a>\n</p>\n</div>\n</div><!-- /.ritSahTermArea -->\n</form>\n</div><!-- /.ritSahSection -->\n<div id=\"hideclass\" style=\"display: none;\"></div>\n<form name=\"\" method=\"get\" action=\"http://rd.rakuten.co.jp/cow/form/\" onSubmit=\"sc_searchBox('search','Scroll');\">\n<div id=\"flaotingHeader\" class=\"clfx\">\n<div class=\"miniSerach\">\n<input type=\"hidden\" name=\"sfrom\" value=\"rakuten_top\">\n<input type=\"hidden\" name=\"R2\" id=\"R2\" value=\"http://www.rakuten.co.jp/r/sr.cgi\">\n<input type=\"hidden\" name=\"D2\" value=\"3.260.1590.5865.6789518\">\n<input type=\"hidden\" name=\"_dummy\" value=\"ŷ\">\n<div class=\"searchInputCmn\">\n<div class=\"searchInputCont\">\n<input type=\"text\" value=\"\" name=\"sitem\" size=\"40\" class=\"searchInput\">\n</div>\n</div>\n</div>\n<div class=\"ritHidSearch\">\n<input type=\"image\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/smbtn.jpg\" alt=\"\" value=\"\" class=\"searchBtn\"  id=\"searchBtn\">\n<ul>\n<li><a sc_linkName=\"search04\" href=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc\"></a> |</li>\n<li><a href=\"https://my.bookmark.rakuten.co.jp/item\" onclick=\"this.href='https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fmy.bookmark.rakuten.co.jp%2Fitem&D2=3.8611.68708.790064.26743666&C3=33840d4ebc38c109b3fd86a51b0e4063ffeddf1b'\"></a> |</li>\n<li><a sc_linkName=\"search05\" href=\"https://order.my.rakuten.co.jp/\"></a> |</li>\n<li><a sc_linkName=\"search06\"href=\"https://basket.step.rakuten.co.jp/rms/mall/bs/cartall/\">㤤ʪ</a></li>\n</ul>\n</div>\n</div>\n</form>\n</div><!-- /#sc_lidAdd_search -->\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_search\")\n//--></script>\r\n<div class=\"ritSanbKey\" id=\"sc_lidAdd_seasonal\">\n<dl>\n<dt>ɡ</dt>\n<dd>\n<ul>\n<li><a sc_linkName=\"seasonal43\" href=\"http://search.rakuten.co.jp/search/mall/-/%E3%83%A9%E3%83%83%E3%82%B7%E3%83%A5%E3%82%AC%E3%83%BC%E3%83%89-208036/f.0-f.1-p.1-s.5-sf.0-st.A-v.2\">å奬</a></li>\n<li><a sc_linkName=\"seasonal36\" href=\"http://search.rakuten.co.jp/search/mall?f=1&f=0&g=558885&v=2&uwd=4&s=1&p=1&sitem=%E3%82%AF%E3%83%AD%E3%83%83%E3%82%AF%E3%82%B9&sf=0&st=A\">å</a></li>\n<li><a sc_linkName=\"seasonal96\" href=\"http://search.rakuten.co.jp/search/mall/%E5%86%B7%E3%81%9F%E3%81%84%E3%82%88%E3%81%86/%E5%AE%B6%E9%9B%BB-562637/f.0-f.1-p.1-s.1-sf.0-st.A-v.2\">䤿褦</a></li>\n<li><a sc_linkName=\"seasonal42\" href=\"http://search.rakuten.co.jp/search/mall?f=0&f=1&v=2&uwd=1&s=1&p=1&sitem=%E6%B0%B4%E7%9D%80&st=A&nitem=&min=&max=\"></a></li>\n<li><a sc_linkName=\"seasonal07\" href=\"http://search.rakuten.co.jp/search/mall/-/101157/\">ž</a></li>\n<li><a sc_linkName=\"seasonal18\" href=\"http://product.rakuten.co.jp/208375/\"></a></li>\n<li><a sc_linkName=\"seasonal101\" href=\"http://search.rakuten.co.jp/search/mall?f=0&g=0&v=2&s=1&p=1&sitem=%E3%82%A2%E3%82%AB%E3%83%91%E3%83%83%E3%82%AF%E3%83%B3&sf=0&st=A&x=0&f=1\">ѥå</a></li>\n<li><a sc_linkName=\"seasonal100\" href=\"http://product.rakuten.co.jp/search/Wii/500740/\">Wii</a></li>\n<li><a sc_linkName=\"seasonal103\" href=\"http://search.rakuten.co.jp/search/mall?f=0&g=0&v=2&s=1&p=1&sitem=%E3%83%90%E3%83%A9%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%B3&sf=0&st=A&x=0&f=1\">Х󥹥ȡ</a></li>\n<li><a sc_linkName=\"seasonal102\" href=\"http://search.rakuten.co.jp/search/mall/%E3%81%8A%E4%BE%9B%E3%81%88/%E3%83%95%E3%83%A9%E3%83%AF%E3%83%BC-113084/f.0-f.1-p.1-s.1-sf.0-st.A-v.2\"></a></li>\n</ul>\n</dd>\n</dl>\n</div><!-- /.ritSanbKey -->\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_seasonal\")\n//--></script>\r\n</div><!-- /#ritServiceHeader -->\r\n\r\n<div id=\"ritSanbKeyCol\"></div>\r\n\r\n<div id=\"riContainer\"> \r\n\r\n<div id=\"riMainContents\">\r\n<div id=\"riMainArea\">\r\n\r\n<div id=\"riEventColumn\"> \r\n<div id=\"riEventContents\">\r\n\r\n<!-- ƥʥΤ餻 -->\r\n<!-- /ƥʥΤ餻 -->\r\n\r\n<!--\n<div id=\"topInfoArea\" style=\"font-size:88%;text-align:left;padding:10px 15px;line-height: 1.8em;clear: both;overflow: hidden;background:#ffffff;\">\n\n</div>\n-->\r\n\r\n<div id=\"sc_lidAdd_js_banner\">\r\n\r\n<div id=\"riTopFlash\" style=\"height: 160px; position: relative;\">\r\n\r\n<!-- liquid banner default contents (JS off or no list ) -->\r\n<div id=\"flashcontent\">\r\n<div id=\"riTopBanner\" style=\"padding: 20px 0 0;\">\r\n<ul>\r\n<li><a href=\"http://event.rakuten.co.jp/used/?l-id=flashbnr_default\"><img alt=\"ŻԾ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201001/100125_used_195x60a.jpg?v=1203011138\"></a></li>\r\n<li><a href=\"http://ranking.rakuten.co.jp/realtime/?l-id=flashbnr_default_02\"><img alt=\"ꥢ륿󥭥\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201008/20090611_ranking_195x60b.jpg?v=1203011138\"></a></li>\r\n</ul>\r\n<ul>\r\n<li><a href=\"http://event.rakuten.co.jp/pointup/?l-id=flashbnr_default_03\"><img alt=\"ݥȥå׻Ծ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201008/20090422_pointup_195x60.jpg?v=1203011138\"></a></li>\r\n<li><a href=\"http://event.rakuten.co.jp/food/shipping/?l-id=flashbnr_default_04\"><img alt=\"̵å\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201008/20100412_food_shipping_195x60.jpg?v=1203011138\"></a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n<!-- /liquid banner default contents (JS off or no list ) -->\r\n\r\n<!-- liquid banner CSS -->\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/css/liquid/liquid_banner.css?v=1203011138\" type=\"text/css\" media=\"all\"> \r\n<!-- /liquid banner CSS -->\r\n\r\n<!-- liquid banner list -->\r\n<div id=\"liquidBanner-list\" style=\"display:none;\">\r\n<ul>\r\n\n\n\n\n<!--\n-->\n\n\n\n\r\n\n\n\n\n<!--\n-->\n\n\n\n\r\n\n\n\n<li><a sc_linkName=\"flashbnr_10_003\" href=\"http://event.rakuten.co.jp/asuraku/point/tokutokuday/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/200910/091015_tokutoku_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_063\" href=\"http://event.rakuten.co.jp/campaign/point-up/shop5/120816/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120808_2shop_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_005\" href=\"http://event.rakuten.co.jp/campaign/point-rank/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/top_point_rank195x60d.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_214\" href=\"http://event.rakuten.co.jp/keirou/coupon/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/keirou2012_110_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_064\" href=\"http://event.rakuten.co.jp/coupon/tieup/120810/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201207/201207_50offcoupon195x60b.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_018\" href=\"http://www.rakuten.ne.jp/gold/rakuten24/campaign/thanksday/?s-id=r24_itop\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/r24_thanksday_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_184\" href=\"https://limited.rakuten.co.jp/invitation/participate/private/platinum/special/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120815_ps.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_022\" href=\"http://event.rakuten.co.jp/coupon/weekly/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/weekly_coupon_195x60e.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_065\" href=\"http://event.rakuten.co.jp/used/campaign/summersale/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/used_summersale_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_056\" href=\"http://event.rakuten.co.jp/cool/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120731_setsuden_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_045\" href=\"http://event.rakuten.co.jp/health/diet/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20110802_diet_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_023\" href=\"http://event.rakuten.co.jp/fashion/mensfashion/coupon/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/120801_195_02.jpg\"></a></li>\n<li><a href=\"http://books.rakuten.co.jp/event/pointup-campaign/index-20120816-max20-ejt.html?scid=wi_ich_special_all_non_center_20120816\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/books_120816.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_057\" href=\"http://event.rakuten.co.jp/interior/coolbedclothes/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/coolbedclothes_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_046\" href=\"http://event.rakuten.co.jp/sports/trekking/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201207/20110415_trekking_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_072\" href=\"http://event.rakuten.co.jp/baby/korea/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/korea_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_069\" href=\"http://event.rakuten.co.jp/interior/summer/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120705_interior_summer_top_195x60b.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_070\" href=\"http://event.rakuten.co.jp/area/special/bgourmet/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/bgroumet_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_138\" href=\"http://event.rakuten.co.jp/ent/magazine/fashion/ginger/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/b_20120723_ginger_195x60.jpg\"></a></li>\n<li><a href=\"http://ad2.trafficgate.net/t/r/890/226/245033_301161/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120810_kobo_195x60.gif\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_075\" href=\"http://event.rakuten.co.jp/fashion/rba/ladies/summer/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120810_ladies_195x60.jpg\"></a></li>\n<li><a href=\"http://import.buy.com/ja/event/point/500pt/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/20120807_cbu_kids_p_195x60.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_071\" href=\"http://event.rakuten.co.jp/borderless/tenso/jp/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201208/os_tensocp_195x60jp_20120816.jpg\"></a></li>\n<li><a sc_linkName=\"flashbnr_10_004\" href=\"http://ranking.rakuten.co.jp/realtime/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/message/flash/201103/20090611_ranking_195x60a.jpg\"></a></li>\n\n\n\n\r\n</ul>\r\n</div>\r\n<!-- /liquid banner list -->\r\n\r\n<!-- liquid banner JS -->\r\n<div id=\"liquidBanner-item\" style=\"width:205px;display:none;\">\r\n\t<div style=\"float:left;\">\r\n\t\t<ul>\r\n\t\t\t<li class=\"banner\" style=\"z-index:2;\"><div style=\"position:absolute;\">#BANNER1#</div></li>\r\n\t\t\t<li class=\"banner\" style=\"z-index:1;\"><div style=\"position:absolute;\">#BANNER2#</div></li>\r\n\t\t</ul>\r\n\t</div>\r\n</div>\r\n<div id=\"liquidBanner-config\" autoslidetime=\"7000\" defaultcontentid=\"flashcontent\"></div>\r\n<div id=\"liquidBanner-frame\" class=\"clfx\">\r\n\t<div style=\"width:100%;text-align:right;\"><span id=\"liquidBanner-back\"><a href=\"#\">ǽ</a></span>&nbsp;Page&nbsp;<span id=\"liquidBanner-nowPage\"></span>&nbsp;/&nbsp;<span id=\"liquidBanner-maxPage\"></span></div>\r\n\t<div id=\"liquidBanner-body\"></div>\r\n\t<div id=\"liquidBanner-prev\"><a href=\"#\"><img width=\"15\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnl02.gif\"></a></div>\r\n\t<div id=\"liquidBanner-next\"><a href=\"#\"><img width=\"15\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnr02.gif\"></a></div>\r\n</div>\r\n<!-- /liquid banner JS -->\r\n\r\n</div><!--/riTopFlash-->\r\n\r\n</div><!-- /div#sc_lidAdd_js_banner -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd_replace(\"#sc_lidAdd_js_banner\")\r\n//-->\r\n</script>\r\n\r\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/c/top/liquidbanner/liquidbanner-1.0.1.min.js\" ></script>\r\n\r\n\r\n<h2 class=\"titleH2\"></h2>\n<div class=\"eventBox clfx\">\n\n<div class=\"asurakuLeft\">\n\n<div id=\"asurakuDynamicArea\">\n<div id=\"asurakuDynamic\">\n<p class=\"bold\">ޤǤΤʸǺûˤϤ</p>\n</div>\n</div>\n\n</div><!--/asurakuLeft-->\n\n<div class=\"asurakuRight\">\n\n<p class=\"red\"><a href=\"http://event.rakuten.co.jp/asuraku/?l-id=top_normal_asuraku02\">û</a></p>\n<div id=\"asurakuDynamicText\"><p class=\"bold\">Ϥʤäݥ5ܡ</p></div>\n\n<ul class=\"clfx\">\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.hokkaido-f.1-c.3667?l-id=top_normal_asuraku10\">̳ƻ</a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.tohoku-f.1-c.3667?l-id=top_normal_asuraku11\"></a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.koshinetsu-f.1-c.3667?l-id=top_normal_asuraku12\">ÿ</a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.hokuriku-f.1-c.3667?l-id=top_normal_asuraku13\">Φ</a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.kanto-f.1-c.3667?l-id=top_normal_asuraku14\"></a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.tokai-f.1-c.3667?l-id=top_normal_asuraku15\">쳤</a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.kansai-f.1-c.3667?l-id=top_normal_asuraku16\"></a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.chugoku-f.1-c.3667?l-id=top_normal_asuraku17\"></a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.shikoku-f.1-c.3667?l-id=top_normal_asuraku18\">͹</a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.kyushu-f.1-c.3667?l-id=top_normal_asuraku19\">彣</a> / </li>\n<li><a href=\"http://search.rakuten.co.jp/asuraku/mall/-/-/area.okinawa-f.1-c.3667?l-id=top_normal_asuraku20\"></a></li>\n</ul>\n\n</div><!--/asurakuRight-->\n\n</div><!--/eventBox-->\r\n<!-- top_textpara -->\r\n<h2 class=\"titleH2\">Υ</h2>\r\n<div id=\"sc_lidAdd_textbox\" class=\"eventBox specially\">\r\n\r\n<ul id=\"texbo\" class=\"sp2 clfx\">\r\n<li><a sc_linkName=\"textbox0816_01\" href=\"http://item.rakuten.co.jp/espritline/c/0000000159/\">10ܡ̵</a></li>\n<li><a sc_linkName=\"textbox0816_02\" href=\"http://item.rakuten.co.jp/okuchi/c/0000000535\">10GET</a></li>\n<li><a sc_linkName=\"textbox0816_03\" href=\"http://item.rakuten.co.jp/z-craft/c/0000009929/\">¥ӥ륱С</a></li>\n<li><a sc_linkName=\"textbox0816_04\" href=\"http://item.rakuten.co.jp/parrton/c/0000000535/\">ǽ¡ѥ</a></li>\n<li><a sc_linkName=\"textbox0816_05\" href=\"http://item.rakuten.co.jp/royalchef/c/0000000258/\">67OFF 10</a></li>\n\n\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_11\" href=\"http://event.rakuten.co.jp/ent/onair/\">ƥӤξʡ</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_15\" href=\"http://event.rakuten.co.jp/living/sale/weekend/\">ƨʤ¾ʡ</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_17\" href=\"http://event.rakuten.co.jp/sweets/shipping/\">̵</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_14\" href=\"http://event.rakuten.co.jp/flower/osonae/\">ߤˤ֤£</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_16\" href=\"http://event.rakuten.co.jp/disney/special/school/\">ǥˡشý</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_22\" href=\"http://event.rakuten.co.jp/interior/urbanlifestyle/summer/\">ǥ餹</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_20\" href=\"http://event.rakuten.co.jp/fashion/shoes/seasonitem/02/\">֡Ĥꡪ</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_13\" href=\"http://event.rakuten.co.jp/area/special/bgourmet/\">㥦B饰</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_18\" href=\"http://event.rakuten.co.jp/fashion/brand/dolce_gabbana/\">DolceGabbanaõ</a></li>\n\n<li style=\"display:none;\"><a sc_linkName=\"textbox0816_19\" href=\"http://event.rakuten.co.jp/pet/tieup/wan/\">ΤĤδ</a></li>\n\n\r\n</ul>\r\n\r\n</div><!-- /div#sc_lidAdd_textbox /div.eventBox -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_textbox\")\r\n//-->\r\n</script>\r\n<!-- /top_textpara -->\r\n\r\n<!-- Keywords ================================================================================== -->\r\n<link rel=\"stylesheet\" href=\"http://a.ichiba.jp.rakuten-static.com/com/inc/home/20080930/beta/css/liquid/area_announce.css?v=1203011138\" type=\"text/css\" media=\"all\">\r\n<div id=\"sc_lidAdd_area_announce\">\r\n<div id=\"riEmgArea-top08\">\r\n<div id=\"riEmg-header\">\r\n<h2>ϰΤͤ餪䤤碌¿</h2>\r\n</div><!-- /div#riEmg-header -->\r\n<div class=\"riEmg-content\">\n\n<div class=\"riEmg-cont-header\">\n<h3 class=\"riEmg-title-top\">ͤ餪礻¿</h3>\n<h3 class=\"riEmg-title-keyword\"></h3>\n</div>\n\n<div class=\"riEmg-cont-items\">\n<h4>ʡ</h4>\n<ul>\n<li><a sc_linkName='areakw_d_15' href='http://search.rakuten.co.jp/search/mall/-/%E7%B1%B3-201184/'></a></li> <li><a sc_linkName='areakw_d_73' href='http://search.rakuten.co.jp/search/mall/%E3%82%AF%E3%83%AD%E3%83%83%E3%82%AF%E3%82%B9/%E9%9D%B4-558885/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'>å</a></li> <li><a sc_linkName='areakw_d_16' href='http://search.rakuten.co.jp/search/mall/-/%E6%B0%B4%E3%83%BB%E3%83%9F%E3%83%8D%E3%83%A9%E3%83%AB%E3%82%A6%E3%82%A9%E3%83%BC%E3%82%BF%E3%83%BC-201351/'></a></li> <li><a sc_linkName='areakw_d_42' href='http://search.rakuten.co.jp/search/mall/%E3%82%B3%E3%83%B3%E3%82%BF%E3%82%AF%E3%83%88/%E3%82%B3%E3%83%B3%E3%82%BF%E3%82%AF%E3%83%88%E3%83%AC%E3%83%B3%E3%82%BA%E3%83%BB%E3%82%B1%E3%82%A2%E7%94%A8%E5%93%81-205789/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'>󥿥</a></li> <li><a sc_linkName='areakw_d_151' href='http://search.rakuten.co.jp/search/mall/%E3%82%B9%E3%83%9E%E3%83%9B%E3%82%B1%E3%83%BC%E3%82%B9/%E5%AE%B6%E9%9B%BB%E3%83%BBAV%E3%83%BB%E3%82%AB%E3%83%A1%E3%83%A9-211742/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'>ޥۥ</a></li> <li><a sc_linkName='areakw_d_76' href='http://search.rakuten.co.jp/search/mall?f=0&f=1&v=2&p=1&min=&max=&sf=0&st=A&g=0&sitem=%E6%97%A5%E5%82%98&nitem=&x=0&s=5'></a></li>         \n</ul>\n</div>\n<div class=\"riEmg-cont-items\">\n<h4>ڥȥɥ</h4>\n<ul>\n<li><a sc_linkName='areakw_d_203' href='http://search.rakuten.co.jp/search/mall/%E6%B0%B4%E7%9D%80/-/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'></a></li> <li><a sc_linkName='areakw_d_45' href='http://search.rakuten.co.jp/search/mall/%E3%82%AF%E3%83%BC%E3%83%A9%E3%83%BC%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9/%E3%82%B9%E3%83%9D%E3%83%BC%E3%83%84%E3%83%BB%E3%82%A2%E3%82%A6%E3%83%88%E3%83%89%E3%82%A2-101070/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'>顼ܥå</a></li> <li><a sc_linkName='areakw_d_93' href='http://search.rakuten.co.jp/search/mall/%E3%82%B5%E3%83%B3%E3%83%80%E3%83%AB/%E9%9D%B4-558885/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'></a></li> <li><a sc_linkName='areakw_d_74' href='http://search.rakuten.co.jp/search/mall/%E6%97%A5%E7%84%BC%E3%81%91%E6%AD%A2%E3%82%81/-/f.0-f.1-p.1-s.1-sf.0-st.A-v.2'>Ƥߤ</a></li> <li><a sc_linkName='areakw_d_64' href='http://search.rakuten.co.jp/search/mall/-/%E6%8A%98%E3%82%8A%E3%81%9F%E3%81%9F%E3%81%BF%E8%87%AA%E8%BB%A2%E8%BB%8A-201683/'>ޤꤿ߼ž</a></li>          \n</ul>\n</div>\n<div class=\"riEmg-cont-items\">\n<h4>ںܡ</h4>\n<ul>\n<li><a sc_linkName='areakw_d_208' href='http://search.rakuten.co.jp/search/mall?f=0&g=0&v=2&s=1&p=1&sitem=kobo+touch&sf=0&st=A&x=0&f=1'>kobo touch</a></li> <li><a sc_linkName='areakw_d_91' href='http://search.rakuten.co.jp/search/mall/-/%E6%B0%B4%E7%AD%92%E3%83%BB%E3%83%9C%E3%83%88%E3%83%AB-402279/'></a></li> <li><a sc_linkName='areakw_d_88' href='http://search.rakuten.co.jp/search/mall?v=2&p=1&min=&max=&sf=0&st=A&g=0&sitem=%E6%B5%B4%E8%A1%A3&nitem=&x=0&s=5'></a></li> <li><a sc_linkName='areakw_d_09' href='http://search.rakuten.co.jp/search/mall/-/%E9%98%B2%E7%81%BD%E9%96%A2%E9%80%A3%E3%82%B0%E3%83%83%E3%82%BA-111519/'>ɺҥå</a></li> <li><a sc_linkName='areakw_d_201' href='http://search.rakuten.co.jp/search/mall?f=0&g=0&v=2&s=1&p=1&sitem=%E3%81%94%E3%81%BC%E3%81%86%E8%8C%B6&sf=0&st=A&x=0&f=1'>ܤ</a></li>          \n</ul>\n</div>\n<div class=\"riEmg-cont-items\">\n<h4>ڵš</h4>\n<ul>\n<li><a sc_linkName='areakw_d_109' href='http://product.rakuten.co.jp/100183/'></a></li> <li><a sc_linkName='areakw_d_47' href='http://search.rakuten.co.jp/search/mall/-/%E6%89%87%E9%A2%A8%E6%A9%9F-208375/'></a></li> <li><a sc_linkName='areakw_d_118' href='http://product.rakuten.co.jp/204588/'>ۡ١꡼</a></li> <li><a sc_linkName='areakw_d_197' href='http://product.rakuten.co.jp/204492/'>ݽ</a></li> <li><a sc_linkName='areakw_d_66' href='http://product.rakuten.co.jp/204519/'></a></li>          \n</ul>\n</div>\n<div class=\"riEmg-cont-items\">\n<h4>ڽܤ̣С</h4>\n<ul>\n<li><a sc_linkName='areakw_d_209' href='http://search.rakuten.co.jp/search/mall?f=0&f=1&v=2&p=1&min=&max=&sf=0&st=A&g=304651&sitem=%E3%81%A8%E3%81%86%E3%82%82%E3%82%8D%E3%81%93%E3%81%97&nitem=&x=0&s=5'>Ȥ</a></li> <li><a sc_linkName='areakw_d_207' href='http://search.rakuten.co.jp/search/mall?f=0&g=410850&v=2&s=1&p=1&sitem=%E3%83%9E%E3%83%B3%E3%82%B4%E3%83%BC&sf=0&st=A&x=0&f=1'>ޥ󥴡</a></li> <li><a sc_linkName='areakw_d_206' href='http://search.rakuten.co.jp/search/mall/-/214022/'>ʤ</a></li> <li><a sc_linkName='areakw_d_200' href='http://search.rakuten.co.jp/search/mall?f=0&g=100227&v=2&s=1&p=1&sitem=%E3%83%88%E3%83%9E%E3%83%88%E3%82%B8%E3%83%A5%E3%83%BC%E3%82%B9&sf=0&st=A&x=0&f=1'>ȥޥȥ塼</a></li> <li><a sc_linkName='areakw_d_204' href='http://search.rakuten.co.jp/search/mall/-/404942/'></a></li>          \n</ul>\n</div>\n\n</div><!-- /div.riEmg-content -->\n\n<div class=\"clfx\" id=\"riEmg-footer\">\n<ul>\n<li><a href=\"http://event.rakuten.co.jp/keyword/?l-id=top_normal_areakw_d_00_01#hokkaido\">̳ƻ</a></li>\n<li><a href=\"http://event.rakuten.co.jp/keyword/?l-id=top_normal_areakw_d_00_02#higashinippon\"></a></li>\n<li><a href=\"http://event.rakuten.co.jp/keyword/?l-id=top_normal_areakw_d_00_03#nishinippon\"></a></li>\n<li><a href=\"http://event.rakuten.co.jp/keyword/?l-id=top_normal_areakw_d_00_04#shikoku_kyusyu\">͹񡦶彣</a></li>\n<li><a href=\"http://event.rakuten.co.jp/keyword/?l-id=top_normal_areakw_d_00\">¾ξʰ</a></li>\n</ul>\n</div><!-- /div#riEmg-footer -->\n<!-- sitecatalyst variable -->\n<script type=\"text/javascript\" language=\"JavaScript\">\n<!--\nvar sc_areakw_imp = 'top_akw_d';\n//-->\n</script>\n<!-- sitecatalyst variable -->\n\n\r\n</div><!-- /div#riEmgArea-top -->\r\n</div>\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_area_announce\")\r\n//-->\r\n</script>\r\n<!-- /Keywords ================================================================================= -->\r\r\n<!--  -->\r\n<div id=\"prototypeAshiatoItem\" style=\"width:103px;display:none\"  class=\"riAshiatoBlock\">\n\t<div style=\"float:left;\">\n\t\t<ul class=\"riAshiatoContSpr\">\n\t\t\t<li class=\"riAshiatoThumb\"><a href=\"#ITEMURL#\" >#ITEMIMGELE#</a></li>\n\t\t\t<li class=\"riAshiatoName\"><a href=\"#ITEMURL#\">#ITEMNAME#</a>\n\t\t\t<div class=\"gadgetCross\"><a id=\"prototypeAshiatoRemove\" href=\"#\"><img height=\"13\" width=\"13\" border=\"0\" title=\"򤫤ޤ\" alt=\"򤫤ޤ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/t.gif\"></a></div></li>\n\t\t</ul>\n\t</div>\t\n</div>\n<div id=\"ashiatoConfig\" \n\t jsonurl=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc?act=6&sid=1\"\n\t impvar=\"sc_browsehist_imp\" \n\t impdisp=\"top_bh_ok_normal\" \n\t impnodisp=\"top_bh_no_normal\" \n\t sid=\"top_normal_browsehist\"\n\t autoresize=\"1\" \n\t omitname=\"26\" \n\t ajaxtimer=\"6\" \n\t autoslide=\"0\" ></div>\n<div id=\"ashiatoExistItemDisplay\" style=\"display:none;\">\n\t<div class=\"centerTitle\"><h2>Ƕå</h2><span class=\"next\"><a href=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc?l-id=top_normal_browsehist\">[Ƕåʤΰ򸫤&gt;&gt;]</a></span></div>\n\t<div id=\"riAshiatoColumn\" >\n\t\t<div class=\"riAshiatoCont\">\n\t\t\t<div id=\"ashiatoPrevButton\" class=\"apiBtLeft\"> \n\t\t\t\t<a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnl02.gif\" width=\"15\"></a>\n\t\t\t\t<img class=\"overbg\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201011/overbg.gif\" width=\"5\" height=\"300\">\n\t\t\t</div>\n\t\t\t<div class=\"riAshiatoBlock\">\n\t\t\t\t<div id=\"ashiatoItemsDisplay\" class=\"riAshiatodisplay\"></div>\n\t\t\t</div>\n\t\t\t<div id=\"ashiatoNextButton\" class=\"apiBtRight\"><a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnr02.gif\" width=\"15\"></a></div>\n\t\t</div>\n\t</div>\n</div>\n\n<!-- sitecatalyst variable -->\n<script type=\"text/javascript\" language=\"JavaScript\">\n<!--\nvar sc_browsehist_imp = 'top_bh_def_normal';\n//-->\n</script>\n\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/ashiato/2.1/ashiato-2.1.1.min.js\"></script>\n<!-- /  -->\r\n\r\n\n<!-- åױ -->\n\n<ul id=\"prototypeAshiatoShopItem\" class=\"shopInspection riAshiatoBlock\" style=\"display: none;width:224px;\">\n\t<li><a href=\"#SHOPURL#\">#SHOPNAME#</a></li>\n</ul>\n<div id=\"ashiatoShopConfig\"\n\tjsonurl=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc?act=6&v=2&p=0&e=0&s=5&k=3&sid=1\"\n\tsid=\"top_normal_shophist\"\n\timpvar=\"sc_shophist_imp\"\n\timpdisp=\"top_sh_ok_normal\"\n\timpnodisp=\"top_sh_no_normal\"\n\tmaxitem=\"6\"\n\trows=\"3\"\n\tajaxtimer=\"6\" \n\tautoresize=\"1\" ></div>\n<div id=\"ashiatoShopExistItemDisplay\" style=\"display:none;\">\n\t<div class=\"centerTitle\"><h2>Ƕåå</h2><span class=\"next\"><a href=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc?act=1&v=2&p=0&e=0&s=5&k=3&l-id=top_normal_shophist\">[Ƕååפΰ򸫤&gt;&gt;]</a></span></div>\n\t<div class=\"shopInspection\">\n\t\t<ul id=\"ashiatoShopItemsDisplay\" class=\"clfx\" style=\"overflow:hidden;height: 48px;\"></ul>\n\t</div>\n</div>\n\n<!-- sitecatalyst variable -->\n<script type=\"text/javascript\" language=\"JavaScript\">\n<!--\nvar sc_shophist_imp = 'top_sh_def_normal';\n//-->\n</script>\n\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/ashiato_shop/2.0/ashiato_shop-2.0.1.min.js\"></script>\n\n<!-- /åױ -->\n\n\r\n\n\n<!-- 쥳 -->\n<div id=\"prototypeAshiatoRecoAshiatoItem\" style=\"display: none\">\n\t<ul>\n\t\t<li class=\"riAshiatoThumb\"><a href=\"#ITEMURL#\" onclick=\"s_partsCounter('top_normal_histreco');\">#ITEMIMGELE#</a></li>\n\t\t<li class=\"riAshiatoName\"><a href=\"#ITEMURL#\" onclick=\"s_partsCounter('top_normal_histreco');\">#ITEMNAME#</a></li>\n\t</ul>\n</div>\n<div id=\"prototypeAshiatoRecoRecoItem\" style=\"width: 103px; display: none\" class=\"riAshiatoBlock\">\n\t<div style=\"float: left\">\n\t\t<ul  class=\"riAshiatoContSpr\">\n\t\t\t<li class=\"riAshiatoThumb\"><a href=\"#ITEMURL#\" onclick=\"s_partsCounter('top_normal_histreco');\">#ITEMIMGELE#</a></li>\n\t\t\t<li class=\"riAshiatoName\"><a href=\"#ITEMURL#\" onclick=\"s_partsCounter('top_normal_histreco');\">#ITEMNAME#</a></li>\n\t\t</ul>\n\t</div>\n</div>\n<div id=\"ashiatoRecoCommonConfig\"\n\timpvar=\"sc_histreco_imp\"\n\timpnodisp=\"top_hr_ok_normal\" \n\timpdisp=\"top_hr_no_normal\" \n\tautoresize=\"1\"\n\tomitname=\"26\"\n\tajaxtimer=\"6\"\n\trecothreshold=\"5\"\n\trankingshuffle=\"1\"\n\trequestwait=\"500\"\n\tcheckinterval=\"100\"\n\tstyle=\"display: none\"></div>\n<div id=\"ashiatoRecoAshiatoConfig\" \n\turl=\"http://ashiato.rakuten.co.jp/rms/sd/ashiato/vc?act=6&sid=1\"\n\tsid=\"top_histreco_bh\"\n\tstyle=\"display: none\"></div>\n<div id=\"ashiatoRecoRecoConfig\"\n\tmaxitem=\"2\"\n\turl=\"http://recommend.api.rakuten.co.jp/ichiba/items_by_itemid.json?sid=1\"\n\tsid=\"top_histreco_rec\"\n\tstyle=\"display: none\"></div>\n<div id=\"ashiatoRecoRankingConfig\" \n\turl=\"http://api.ranking.rakuten.co.jp/deliver/api/deliver/?eid=11&enc=0&du=1&offset=40&st=0&sl=0&rt=1&mb=0&pr=00\"\n\tgenrelayer=\"2\"\n\tsid=\"top_histreco_rk\"\n\tstyle=\"display: none\"></div>\n<div id=\"ashiatoRecoAlteredContents\" style=\"display:none;\"></div>\n<div id=\"ashiatoRecoExistItemDisplay\" style=\"display:none; height:100%;\">\n\t<h2 class=\"titleH2\">ʤ˥ξ</h2>\n\t<div id=\"riAshiatoRecommend\">\n\t\t<div class=\"riAshiatoRecoCheckColumn\">\n\t\t\t<div id=\"ashiatoRecoCheckPrevButton\" class=\"apiBtLeft\">\n\t\t\t\t<a href=\"#\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/apibtnl02.gif\" width=\"15\"></a>\n\t\t\t</div>\n\t\t\t<div id=\"ashiatoRecoAshiatoItemDisplay\" class=\"riAshiatoRecoCheck\"></div>\n\t\t\t<div id=\"ashiatoRecoCheckNextButton\" class=\"apiBtRight\">\n\t\t\t\t<a href=\"#\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/apibtnr02.gif\" width=\"15\"></a>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class=\"riAshiatoRecoColumn\">\n\t\t\t<div class=\"riAshiatoRecoCont\">\n\t\t\t\t<p>ξʤäͤϡʾʤäƤޤ</p>\n\t\t\t\t<div id=\"ashiatoRecoRecoSlider\">\n\t\t\t\t\t<div id=\"ashiatoRecoPrevButton\" class=\"apiBtLeft\">\n\t\t\t\t\t\t<a href=\"#\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/apibtnl02.gif\" width=\"15\"></a>\n\t\t\t\t\t\t<img class=\"overbg\" src=\"http://image.rakuten.co.jp/com/img/home/beta/201011/overbg.gif\" width=\"5\" height=\"300\">\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"riAshiatoBlock riAshiatoRecoBlock\">\n\t\t\t\t\t\t<div id=\"ashiatoRecoRecoItemsDisplay\" class=\"riAshiatodisplay\"></div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div id=\"ashiatoRecoNextButton\" class=\"apiBtRight\">\n\t\t\t\t\t\t<a href=\"#\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/apibtnr02.gif\" width=\"15\"></a>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div id=\"ashiatoRecoLoading\">\n\t\t\t\t\t<img src=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/loading_icon.gif\">\n\t\t\t\t</div>\n\t\t\t\t<div id=\"ashiatoRecoRecoAlteredContents\" style=\"display:none;\"></div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>\n<!-- sitecatalyst variable -->\n<script type=\"text/javascript\" language=\"JavaScript\">\n<!--\nvar sc_histreco_imp = 'top_hr_def_normal';\n//-->\n</script>\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"/com/js/d/rjs/rjs_slideshow-1.0.1.min.js\"></script>\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"/com/js/d/ashiato_multireco/1.0/ashiato_multireco-1.0.1.min.js\"></script>\n<style>\n#ashiatoRecoRecoAlteredContents {\n\tdisplay: none;\n\theight: 175px;\n\tposition: relative;\n\ttext-align: center;\n\ttop: 45px;\n}\n#ashiatoRecoLoading {\n\tdisplay: none;\n\theight: 175px;\n\tposition: relative;\n\ttext-align: center;\n\ttop: 45px;\n}\n#ashiatoRecoRecoItemsDisplay .ashiatoRecoLoading {\n\twidth: 100%;\n\ttext-align: center;\n}\n* html #riAshiatoColumn .riAshiatoCont .apiBtLeft {\n\tpadding: 20px 0 0 0;\n}\n#riAshiatoRecommend .riAshiatoRecoCheckColumn .apiBtLeft {\n\twidth: 15px;\n\tpadding: 46px 2px 0 0;\n\tfloat: left;\n\tdisplay: inline;\n\tposition: absolute;\n\tz-index: 3;\n}\n\n#riAshiatoRecommend .riAshiatoRecoCheckColumn .apiBtRight {\n\twidth: 15px;\n\tpadding: 46px 10px 0 139px;\n\tfloat: left;\n\tposition: absolute;\n}\n#riAshiatoRecommend .riAshiatoRecoCheck {\n\tfloat: left;\n\twidth: 120px;\n\tpadding-top: 32px;\n\tleft: 17px;\n\tposition: absolute;\n\tbackground:\n\t\turl(http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201003/histreco/histreco_header.gif)\n\t\tno-repeat left 7px;\n}\n* html #riAshiatoRecommend .riAshiatoRecoCheck {\n\theight: 34px;\n}\n#riAshiatoRecommend .riAshiatoRecoCheck ul {\n\twidth: 100% !important;\n}\n#riAshiatoRecommend .riAshiatoRecoCheck ul li.riAshiatoName {\n\twidth: 80px;\n\tpadding-bottom: 10px;\n\tmargin: 0 auto;\n\tposition: relative;\n}\n#riAshiatoRecommend .riAshiatoRecoCheck .riAshiatoThumb {\n\tpadding-top: 9px;\n\tpadding-bottom: 9px;\n\twidth: 80px;\n\theight: 80px;\n\tmargin: 0 auto;\n\tposition: relative;\n\ttext-align: center;\n}\n#riAshiatoRecommend .riAshiatoRecoColumn {\n\tborder-left: solid 170px #FFFFFF;\n}\n* html #riAshiatoRecommend .riAshiatoRecoCont .apiBtLeft {\n\tpadding: 20px 0 0 0;\n}\n</style>\n\n<!-- /쥳 -->\n\n\n\r\n\n<!---->\n\n<div id=\"prototypeBookmarkItem\" style=\"width:103px;display:none\"  class=\"riAshiatoBlock\">\n\t<div style=\"float:left\">\n\t\t<ul class=\"riAshiatoContSpr\">\n\t\t\t<li class=\"riAshiatoThumb\"><a href=\"#ITEMURL#\" >#ITEMIMGELE#</a></li>\n\t\t\t<li class=\"riAshiatoName\"><a href=\"#ITEMURL#\">#ITEMNAME#</a></li>\n\t\t</ul>\t\n\t</div>\t\n</div>\n<div id=\"bookmarkConfig\" \n\t jsonurl=\"http://api.bookmark.rakuten.co.jp/ichiba/?param2=20&param7=1&param5=json\"\n\t sid=\"top_normal_bookmark\" \n\t impvar=\"sc_bookmark_imp\" \n\t impdisp=\"top_bk_ok_normal\" \n\t impnodisp=\"top_bk_no_normal\" \n\t maxitem=\"4\"\t \n\t autoresize=\"1\" \n\t omitname=\"26\" \n\t ajaxtimer=\"6\" \n\t autoslide=\"0\"></div>\n<div id=\"bookmarkExistItemDisplay\"  style=\"display:none;\">\n\t<div class=\"centerTitle\"><h2>꾦</h2><span id=\"bookmarkOverMaxItemDisplay\" class=\"next\"><a href=\"https://my.bookmark.rakuten.co.jp/item?l-id=top_normal_bookmark\">[꾦ʤΰ򸫤&gt;&gt;]</a></span></div>\n\t<div id=\"riAshiatoColumn\" >\n\t\t<div class=\"riAshiatoCont\">\n\t\t<div id=\"bookmarkPrevButton\" class=\"apiBtLeft\">\n\t\t\t<a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnl02.gif\" width=\"15\"></a>\t\n           <img class=\"overbg\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201011/overbg.gif\" width=\"5\" height=\"300\">\t\t\n\t\t</div>\n\t\t<div class=\"riAshiatoBlock\">\n\t\t\t<div id=\"bookmarkItemsDisplay\" class=\"riAshiatodisplay\"></div>\n\t\t</div>\n\t\t<div id=\"bookmarkNextButton\" class=\"apiBtRight\"><a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnr02.gif\" width=\"15\"></a></div>\n\t\t</div>\n</div>\n</div>\n\n<!-- sitecatalyst variable -->\n<script type=\"text/javascript\" language=\"JavaScript\">\n<!--\nvar sc_bookmark_imp = 'top_bk_def_normal';\n//-->\n</script>\n\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/d/bookmark/2.0/bookmark-2.0.0.min.js\"></script>\n\n<!--/ -->\n\n\r\n \r\n<h2 class=\"titleH2\">Racouponʥ顦ݥ<span class=\"rankReset\">\n816()\n\n</span></h2>\r\n<div class=\"liquidlist\" maxline=\"1\" maxwidth=\"99\">\r\n<div id=\"sc_lidAdd_rakupon\" class=\"eventBox rakupon\">\r\n<ul class=\"clfx\">\r\n<li id=\"riRakuponListDef\">\r\n\n\n\n<div class=\"timesaleBox clfx\">\n<div class=\"timeSaleLeft\"><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/rakupon/1208/0816_kakumaru.jpg\" width=138\" height=\"110\" alt=\"\"></a></div><!--/timeSaleLeft-->\n<div class=\"timeSaleRight\">\n<dl>\n<dt><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\"><strong style=\"color: #bf0000;\">Super Racouponʥ顦ݥˡ</strong><br>եȤˤŬ Żҥ顼</a></dt>\n<dd><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td width=\"1%\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201010/rakupon.gif\" width=106\" height=\"45\" alt=\"Ǻܾо\"></td>\n<td align=\"left\" width=\"99%\" style=\"padding-left: 10px;\"\n\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/2.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/thumb/rakupon/price/conma.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/rakupon/yen.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/offmask.gif\" alt=\"\"\n></td>\n</tr>\n</table></dd>\n</dl>\n</div><!--/timeSaleRight-->\n</div><!--/timesaleBox-->\n\r\n</li>\r\n\r\n<li class=\"LQlastSale\" style=\"display:none;\">\r\n\n\n\n<div class=\"timesaleBox clfx\">\n<div class=\"timeSaleLeft\"><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/rakupon/1208/0816_kouragumi.jpg\" width=138\" height=\"110\" alt=\"\"></a></div><!--/timeSaleLeft-->\n<div class=\"timeSaleRight\">\n<dl>\n<dt><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\"><strong style=\"color: #bf0000;\">Super Racouponʥ顦ݥˡ</strong><br>ҡɤä1kg ̵꤬1,953ߡ </a></dt>\n<dd><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td width=\"1%\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201010/rakupon.gif\" width=106\" height=\"45\" alt=\"Ǻܾо\"></td>\n<td align=\"left\" width=\"99%\" style=\"padding-left: 10px;\"\n\n\n\n\n\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/6.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/9.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/rakupon/per2.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/offmask.gif\" alt=\"\"\n></td>\n</tr>\n</table></dd>\n</dl>\n</div><!--/timeSaleRight-->\n</div><!--/timesaleBox-->\n\r\n</li>\r\n\r\n<li class=\"LQlastSale\" style=\"display:none;\">\r\n\n\n\n<div class=\"timesaleBox clfx\">\n<div class=\"timeSaleLeft\"><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/rakupon/1208/0816_z-craft.jpg\" width=138\" height=\"110\" alt=\"\"></a></div><!--/timeSaleLeft-->\n<div class=\"timeSaleRight\">\n<dl>\n<dt><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\"><strong style=\"color: #bf0000;\">Super Racouponʥ顦ݥˡ</strong><br>׷60OFF͵βӥ륱󥵥뤬̵ </a></dt>\n<dd><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td width=\"1%\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201010/rakupon.gif\" width=106\" height=\"45\" alt=\"Ǻܾо\"></td>\n<td align=\"left\" width=\"99%\" style=\"padding-left: 10px;\"\n\n\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/6.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/thumb/rakupon/price/conma.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/rakupon/yen.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/offmask.gif\" alt=\"\"\n></td>\n</tr>\n</table></dd>\n</dl>\n</div><!--/timeSaleRight-->\n</div><!--/timesaleBox-->\n\r\n</li>\r\n\r\n</ul>\r\n<p class=\"taRight\"><span class=\"tri\"><a sc_linkName=\"rakupon01\" href=\"http://event.rakuten.co.jp/coupon/\">ʥݥäȸ</a></span></p>\r\n</div><!--/eventBox-->\r\n</div><!--/liquidlist-->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_rakupon\")\r\n//-->\r\n</script>\r\n\r\n<!-- 󥭥󥰻Ծ -->\r\n\n<div class=\"eventBox ranking\">\n\n<div id=\"rnkDailyItem\" style=\"width:103px;display:none\"  class=\"riAshiatoBlock\">\n\t<div style=\"float:left;\">\n\t\t<ul class=\"riAshiatoContSpr\" style=\"padding: 8px 12px 15px 12px;\">\n\t\t\t<li style=\"width:100%;text-align:center;margin-bottom:7px;\"><span style=\"color:#BF0000; font-weight:bold;\">#ITEMRNK#</span></li>\n\t\t\t<li class=\"riAshiatoThumb\"><a href=\"#ITEMURL#\" >#ITEMIMGELE#</a></li>\n\t\t\t<li class=\"riAshiatoName\"><a href=\"#ITEMURL#\">#ITEMNAME#</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n\n\n\n<div id=\"rnkGenreTab\" style=\"width:113px;display:none;\" class=\"riAshiatoBlock\">\n\t<div style=\"float:left;\" id=\"#GENRELINKEVENT#_tab\">\n\t\t<ul style=\"position:relative;z-index:2;padding: 8px 1px 15px 0;text-align:center;\">\n\t\t\t<li id=\"#GENRELINKEVENT#_linked\" class=\"rnkGenreLink\" style=\"\" ><div id=\"#GENRELINKEVENT#\"  >#ITEMIMGELEOFF#</div></li>\n\t\t\t<li id=\"#GENRELINKEVENT#_unlink\" class=\"rnkGenreUnLink\" style=\"display:none;\" ><div style=\"color:#BF0000;font-weight:bold;\">#ITEMIMGELEON#</div></li>\n\t\t</ul>\n\t</div>\n</div>\n\n\n\n<div id=\"rnkDailyConfig\"\n\t updatetype=\"1\"\n\t impvar=\"\"\n\t impdisp=\"\"\n\t impnodisp=\"\"\n\t sidtype=\"0\"\n\t sid=\"top_normal_rk\"\n\t autoresize=\"1\"\n\t omitname=\"26\"\n\t autoslide=\"0\"\n\t svrgrp=\"1\"\n\t ajaxtimer=\"10\"\n\t mouseoverdelay=\"300\"\n\t ></div>\n\n<ul id=\"rnkDailyGenreList\" style=\"display:none;\">\n<li gid=\"0\" du=\"1\" ge=\"9\"  offset=\"100\"\nimageurlon=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/ranking_btn_all_on.gif\"\nimageurloff=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/ranking_btn_all_off.gif\"  ></li>\n\n<li gid=\"503190\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_autogoods_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_autogoods_off.gif\"  >֡Х</li>\n\n\n\n\n<li gid=\"551177\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_mfashion_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_mfashion_off.gif\"  >󥺥եå</li>\n\n\n\n\n<li gid=\"558929\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_watch_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_watch_off.gif\"  >ӻ</li>\n\n\n\n\n<li gid=\"100005\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_flower_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_flower_off.gif\"  >֡DIY</li>\n\n\n\n\n<li gid=\"558944\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_kitchen_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_kitchen_off.gif\"  >å</li>\n\n\n\n\n<li gid=\"551169\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_medicine_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_medicine_off.gif\"  ></li>\n\n\n\n\n<li gid=\"100316\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_drink_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_drink_off.gif\"  >塦եȥɥ</li>\n\n\n\n\n<li gid=\"100026\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_computer_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_computer_off.gif\"  >ѥ</li>\n\n\n\n\n<li gid=\"101240\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_cd_dvd_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_cd_dvd_off.gif\"  >CDDVDڴ</li>\n\n\n\n\n<li gid=\"216131\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_bag_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_bag_off.gif\"  >Хå֥</li>\n\n\n\n\n<li gid=\"100371\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_lfashion_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_lfashion_off.gif\"  >ǥեå</li>\n\n\n\n\n<li gid=\"100227\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_food_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_food_off.gif\"  ></li>\n\n\n\n\n<li gid=\"101164\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_hobby_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_hobby_off.gif\"  >㡦</li>\n\n\n\n\n<li gid=\"100533\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_baby_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_baby_off.gif\"  >å٥ӡ</li>\n\n\n\n\n<li gid=\"510915\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_liquor_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_liquor_off.gif\"  >ӡ롦μ</li>\n\n\n\n\n<li gid=\"100938\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_health_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_health_off.gif\"  >åȡ</li>\n\n\n\n\n<li gid=\"562637\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_appliance02_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_appliance02_off.gif\"  ></li>\n\n\n\n\n<li gid=\"558885\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_shoes_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_shoes_off.gif\"  ></li>\n\n\n\n\n<li gid=\"101077\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_golf_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_golf_off.gif\"  ></li>\n\n\n\n\n<li gid=\"510901\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_sake_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_sake_off.gif\"  >ܼ򡦾</li>\n\n\n\n\n<li gid=\"100939\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_beauty_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_beauty_off.gif\"  >ơ</li>\n\n\n\n\n<li gid=\"200162\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_book_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_book_off.gif\"  >ܡ</li>\n\n\n\n\n<li gid=\"101438\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_service_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_service_off.gif\"  >ؤӡӥ</li>\n\n\n\n\n<li gid=\"100433\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_inner_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_inner_off.gif\"  >ʡ</li>\n\n\n\n\n<li gid=\"100804\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_interior_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_interior_off.gif\"  >ƥꥢǼ</li>\n\n\n\n\n<li gid=\"101070\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_sports_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_sports_off.gif\"  >ݡġȥɥ</li>\n\n\n\n\n<li gid=\"216129\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_accessories_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_accessories_off.gif\"  >꡼</li>\n\n\n\n\n<li gid=\"215783\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_daily_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_daily_off.gif\"  >ʻ</li>\n\n\n\n\n<li gid=\"211742\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_electronics_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_electronics_off.gif\"  >TVǥ</li>\n\n\n\n\n<li gid=\"101213\" du=\"1\" ge=\"9\" offset=\"100\"\nimageurlon=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_pet_on.gif\"\nimageurloff=\"http://image.www.rakuten.co.jp/com/img/home/201106/ranking/ranking_btn_pet_off.gif\"  >ڥå</li>\n\n\n\n<li gid=\"0\" du=\"6\" ge=\"9\" unqid=\"top_normal_rk\"\nimageurlon=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/ranking_btn_realtime_on.gif\"\nimageurloff=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/ranking_btn_realtime_off.gif\"  >ꥢ륿</li>\n</ul>\n<div id=\"rnkDailyExistItemDisplay\" style=\"display:none;height:250px;\">\n\n\t<div class=\"centerTitle\"><h2>󥭥<span style=\"color: #BF0000;font-weight: bold;font-size: 82%;\" id=\"rnkDailyMoreInfoName\"></span> <span style=\"color:#000000;font-size:82%;font-weight:normal;\" id=\"rnkDailyUpdateDate\"> </span></h2><span id=\"rnkDisplayItemsRnkLink\" class=\"next\"><a href=\"http://ranking.rakuten.co.jp/\" id=\"rnkDailyMoreInfoUrl\">[򸫤&gt;&gt;]</a></span></div>\n\n<!-- \n<div id=\"loading\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/loading_icon.gif\"/></div>\n-->\n\t<div id=\"riAshiatoColumn\" >\n\n\t\t<div style=\"position: relative;height:35px;\" >\n\n\t\t\t<div style=\"clear: both;overflow: hidden;padding:0 0 3px;position: absolute; top: 0px; left: 0px;width:100%;height:100%;\" id=\"rnkDailyGenreTabs\">\n\t\t\t\t<div id=\"rnkDailyGenrePrevButton\" style=\"width: 15px;padding: 8px 13px 0 0;float: left;display: inline;position: relative;z-index: 100;\"><a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/btn_left.gif\" border=0 ></a></div>\n\t\t\t\t<div style=\"width: 100%;float: left;display: inline;overflow: hidden;height: 33px;_zoom: 1;position:absolute;margin:0 auto;\">\n\t\t\t\t\t<div id=\"rnkDailyGenreItemsDisplay\" style=\"position: relative;margin-right: 36px;width:93%;\"></div>\n\t\t\t\t</div>\n\t\t\t\t<div id=\"rnkDailyGenreNextButton\" style=\"width: 15px;padding: 8px 0 0 0;float: right;position: absolute;right:0;top:7;display: inline;z-index: 100;\"><a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/btn_right.gif\" border=0 ></a></div>\n\t\t\t</div>\n\t\t</div>\n\t\t\n\t\t<div id=\"rnkDailyLoading\" style=\"display:none;height:185px;position:relative;\">\n\t\t<div style=\"position:absolute;top:50px;left:50%;\">\n\t\t<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201106/ranking/loading_icon.gif\">\n\t\t</div>\n\t\t</div>\n\t\t\n\t\t<div id=\"rnkTabSet\" style=\"position: relative;height:185px;\" >\n\t\t\t<div class=\"riAshiatoCont\" style=\"padding:0 0 3px;position: absolute; top: 0px; left: 0px;width:100%;height:100%;\" id=\"rnkTabItemdiv_#GENRELINKEVENT#\">\n\t\t\t\t<div id=\"rnkDailyPrevButton_#GENRELINKEVENT#\" class=\"apiBtLeft\">\n\t\t\t\t\t<a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnl02.gif\" width=\"15\"></a>\n\t\t\t\t\t<img class=\"overbg\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201011/overbg.gif\" width=\"5\" height=\"300\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"riAshiatoBlock\">\n\t\t\t\t\t<div id=\"rnkDailyItemsDisplay_#GENRELINKEVENT#\" class=\"riAshiatodisplay\"></div>\n\t\t\t\t</div>\n\t\t\t\t<div id=\"rnkDailyNextButton_#GENRELINKEVENT#\" class=\"\" style=\"display: inline;float: right;padding: 20px 0 0;position: absolute;right: 0;top: 0px;width: 15px;z-index: 50;\"><a href=\"#\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/apibtnr02.gif\" width=\"15\"></a></div>\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<div style=\"margin:0;padding:0;\">\n\t\t<span style=\"float:right;margin:0 0 0 0;\">\n\t\t\t\t<span class=\"tri\"><a href=\"http://ranking.rakuten.co.jp/?l-id=top_normal_rk_d05\">󥭥</a></span>\n\t\t\t\t<span style=\"margin-right:15px;\"><a href=\"http://ranking.rakuten.co.jp/rnk/navi/g0/st0sl0rt1du1ge1mb0pr00/?l-id=top_normal_rk_d02\"></a> / <a href=\"http://ranking.rakuten.co.jp/rnk/navi/g0/st0sl0rt1du1ge0mb0pr00/?l-id=top_normal_rk_d03\"></a></span>\n\t\t\t\t<span class=\"tri\"><a href=\"http://ranking.rakuten.co.jp/realtime/?l-id=top_normal_rk_d04\">ꥢ륿󥭥</a></span>\n\n\t\t</span>\n\t\t</div>\n\t\t<div style=\"clear:both;\"></div>\n\t</div>\n\n</div>\n\n<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://image.www.rakuten.co.jp/com/js/d/ranking/marathon/ranking-liquid-1.1.7-v.min.js\"></script>\n\n</div><!--/eventBox-->\n\r\n<!-- /󥭥󥰻Ծ -->\r\n\r\n<!-- ý -->\r\n<div id=\"sc_lidAdd_topics\">\n<div class=\"centerTitle\"><h2>ý</h2><span class=\"next\"><a sc_linkName=\"topics_title\" href=\"http://event.rakuten.co.jp/top/topics/\">[ýΰ򸫤&gt;&gt;]</a></span></div>\n<div class=\"eventBox recommend liquidlist\" maxline=\"3\">\n\n<ul class=\"clfx\">\n\n<li style=\"display:none;\"><a sc_linkName=\"topics20\" href=\"http://event.rakuten.co.jp/fashion/brand/hydrogen/\">ϥɥý</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics43\" href=\"http://event.rakuten.co.jp/garden/summer/\">褱</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics23\" href=\"http://event.rakuten.co.jp/food/koshien/\">ûұ</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics36\" href=\"http://event.rakuten.co.jp/liquor/beergift/\">ӡ륻åȤõ</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics30\" href=\"http://event.rakuten.co.jp/autogoods/leisure/\">ƥ쥸㡼</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics48\" href=\"http://event.rakuten.co.jp/fashion/formal/\">ɤ뺧ǡ</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics55\" href=\"http://gift.rakuten.co.jp/genre/flower/\">ûϤ</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics42\" href=\"http://event.rakuten.co.jp/flower/quick/\">ڥեե</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics13\" href=\"http://event.rakuten.co.jp/accessories/mens/\">Сý</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics33\" href=\"http://gift.rakuten.co.jp/shop/babygift/\">лˤ󥭥</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics53\" href=\"http://event.rakuten.co.jp/beauty/uv/\">Ƥߤý</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics35\" href=\"http://event.rakuten.co.jp/daily/catalog/insect/\">åý</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics25\" href=\"http://event.rakuten.co.jp/media/summerfes/2012/02/\">Ԥƥե</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics46\" href=\"http://event.rakuten.co.jp/health/diet/\">֡Dietý</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics15\" href=\"http://event.rakuten.co.jp/fashiongoods/scene/business_mens/\">ӥͥХåý</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics31\" href=\"http://event.rakuten.co.jp/game/3ds/\">Nintendo3DSե</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics14\" href=\"http://event.rakuten.co.jp/fashiongoods/sale/\">㡪SALE</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics50\" href=\"http://event.rakuten.co.jp/computer/used/\">¡ťѥ</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics28\" href=\"http://event.rakuten.co.jp/sale/timesale/drink_sale01.html\">ɥ󥯺߸˽ʬ</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics03\" href=\"http://event.rakuten.co.jp/appliance/shouene/\">LEDʤɲŤš</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics06\" href=\"http://event.rakuten.co.jp/baby/schoolbag/\">ɥý2013</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics21\" href=\"http://event.rakuten.co.jp/food/newshopsale/\">ܤΥSHOP</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics11\" href=\"http://event.rakuten.co.jp/sports/trekking/\">лȥå</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics24\" href=\"http://event.rakuten.co.jp/sweets/icecream/\">ڥ꡼</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics51\" href=\"http://event.rakuten.co.jp/instrument/artistfile/kuwatakeisuke/\">ĻѳڴCD</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics22\" href=\"http://event.rakuten.co.jp/food/area/\">󤻥</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics54\" href=\"http://event.rakuten.co.jp/fashion/shoes/rainboots/\">쥤󥷥塼ʤ顪</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics47\" href=\"http://event.rakuten.co.jp/fashion/ladiesfashion/\">ƥǤCHECK</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics09\" href=\"http://event.rakuten.co.jp/outdoor/\">Ƥӱ硪</a></li>\n\n\n\n<li style=\"display:none;\"><a sc_linkName=\"topics49\" href=\"http://event.rakuten.co.jp/fashion/ladiesfashion/topics/\">ʥİ</a></li>\n\n\n</ul>\n\n</div><!--/eventBox-->\n</div>\n<script type=\"text/javascript\">\n<!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_topics\")\n//-->\n</script>\r\n<!-- /ý -->\r\n\r\n<h2 class=\"titleH2\">ȥɥ<span class=\"rankReset\">816()</span></h2>\n<div class=\"eventBox auction\">\n<div id=\"sc_lidAdd_trend\">\n\n<div class=\"trend liquidlist\" maxline=\"1\" maxwidth=\"\">\n<ul>\n\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a sc_linkName=\"trend01_01\" href=\"http://search.rakuten.co.jp/search/mall/%E9%A3%9B%E8%BC%AA%E6%B5%B7/-/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/trend/201208/20120816_1000_01.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"trend01_02\" href=\"http://search.rakuten.co.jp/search/mall/%E9%A3%9B%E8%BC%AA%E6%B5%B7/-/\">سѤ4ȥɥ륰롼</a></dd>\n</dl>\n</li>\n\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a sc_linkName=\"trend02_01\" href=\"http://search.rakuten.co.jp/search/mall/%E3%82%AB%E3%82%BB%E3%83%83%E3%83%88%E3%82%B3%E3%83%B3%E3%83%AD/-/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/trend/201208/20120816_1000_02.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"trend02_02\" href=\"http://search.rakuten.co.jp/search/mall/%E3%82%AB%E3%82%BB%E3%83%83%E3%83%88%E3%82%B3%E3%83%B3%E3%83%AD/-/\">ڥåȥۥС٥塼к</a></dd>\n</dl>\n</li>\n\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a sc_linkName=\"trend03_01\" href=\"http://search.rakuten.co.jp/search/mall/%E3%82%A8%E3%82%A2%E3%83%AA%E3%83%BC%E3%82%B7%E3%82%A7%E3%82%A4%E3%83%97/-/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/trend/201208/20120815_1000_01.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"trend03_02\" href=\"http://search.rakuten.co.jp/search/mall/%E3%82%A8%E3%82%A2%E3%83%AA%E3%83%BC%E3%82%B7%E3%82%A7%E3%82%A4%E3%83%97/-/\">ڥ꡼ס۹ץե</a></dd>\n</dl>\n</li>\n\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a sc_linkName=\"trend04_01\" href=\"http://search.rakuten.co.jp/search/mall/%E3%81%99%E3%81%B9%E3%82%89%E3%81%AA%E3%81%84%E3%83%8F%E3%83%B3%E3%82%AC%E3%83%BC/-/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/trend/201208/20120815_1000_02.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"trend04_02\" href=\"http://search.rakuten.co.jp/search/mall/%E3%81%99%E3%81%B9%E3%82%89%E3%81%AA%E3%81%84%E3%83%8F%E3%83%B3%E3%82%AC%E3%83%BC/-/\">ڤ٤ʤϥ󥬡ۥǼǼ</a></dd>\n</dl>\n</li>\n\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a sc_linkName=\"trend05_01\" href=\"http://search.rakuten.co.jp/search/mall/%E3%83%96%E3%82%AE%E3%83%BC%E3%83%9C%E3%83%BC%E3%83%89/-/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/trend/201208/20120814_1000_01.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"trend05_02\" href=\"http://search.rakuten.co.jp/search/mall/%E3%83%96%E3%82%AE%E3%83%BC%E3%83%9C%E3%83%BC%E3%83%89/-/\">ڥ֥ܡɡۿо졪ФŻҥѥå</a></dd>\n</dl>\n</li>\n\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a sc_linkName=\"trend06_01\" href=\"http://search.rakuten.co.jp/search/mall/%E5%86%B7%E3%82%84%E3%81%97%E7%94%98%E9%85%92/-/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/trend/201208/20120814_1000_02.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"trend06_02\" href=\"http://search.rakuten.co.jp/search/mall/%E5%86%B7%E3%82%84%E3%81%97%E7%94%98%E9%85%92/-/\">䤷żƤƹǤǤΥ󥢥륳</a></dd>\n</dl>\n</li>\n\n</ul>\n</div>\n\n</div>\n<script type=\"text/javascript\">\n<!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_trend\")\n//-->\n</script>\n</div><!--/eventBox-->\n\n\n\n\n\n\r\n<h2 class=\"titleH2\">ۥåȥƥ</h2>\r\n<div id=\"riHotitem\" class=\"eventBox liquidlist\" maxline=\"1\" maxwidth=\"99\">\r\n<div id=\"sc_lidAdd_hotitem\">\r\n<ul class=\"clfx\">\r\n\r\n<li id=\"riHotListDef\">\r\n\n\n\n<div class=\"riHotitemBox clfx\">\n<div class=\"riHotitemLeft\">\n<a sc_linkName=\"hot0810_05\" href=\"http://item.rakuten.co.jp/kokkaen/2012-haru-ori-060/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/hotitem/1208/0810_05.jpg\" width=\"154\" height=\"123\" alt=\"\"></a>\n</div><!--/riHotitemLeft-->\n<div class=\"riHotitemRight\">\n<dl>\n<dt><a sc_linkName=\"hot0810_05\" href=\"http://item.rakuten.co.jp/kokkaen/2012-haru-ori-060/\">̵۲äפǴŤߤȴĿʤ5kg2,500ߤܥ塼ֻòںǽ</a></dt>\n<dd><a sc_linkName=\"hot0810_05\" href=\"http://item.rakuten.co.jp/kokkaen/2012-haru-ori-060/\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_free.gif\" alt=\"\"\n\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/2.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/rakupon/price/conma.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/5.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/rakupon/yen.gif\" alt=\"\"\n\n></a></dd>\n<dd class=\"taRight\"><span class=\"tri\">åס&nbsp;<a sc_linkName=\"hot0810_05\" href=\"http://www.rakuten.co.jp/kokkaen/\">ڱ</a></span></dd>\n</dl>\n</div><!--/riHotitemRight-->\n</div><!--/riHotitemBox-->\n\n\n\n\r\n</li>\r\n<li>\r\n\n\n\n<div class=\"riHotitemBox clfx\">\n<div class=\"riHotitemLeft\">\n<a sc_linkName=\"hot0810_04\" href=\"http://item.rakuten.co.jp/e-sts/10001611-rb/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/hotitem/1208/0810_04.jpg\" width=\"154\" height=\"123\" alt=\"\"></a>\n</div><!--/riHotitemLeft-->\n<div class=\"riHotitemRight\">\n<dl>\n<dt><a sc_linkName=\"hot0810_04\" href=\"http://item.rakuten.co.jp/e-sts/10001611-rb/\">۵޹Ρŷ1ޡӥ塼1500ĶμӡνŤ˾׷⡪®Ϥʥåȡ;ʬɥСá㥹ܻؤ</a></dt>\n<dd><a sc_linkName=\"hot0810_04\" href=\"http://item.rakuten.co.jp/e-sts/10001611-rb/\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_sale.gif\" alt=\"\"\n\n\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/3.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/rakupon/price/conma.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/1.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/2.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/9.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/rakupon/yen.gif\" alt=\"\"\n\n></a></dd>\n<dd class=\"taRight\"><span class=\"tri\">åס&nbsp;<a sc_linkName=\"hot0810_04\" href=\"http://www.rakuten.ne.jp/gold/e-sts/\">إ륷饤</a></span></dd>\n</dl>\n</div><!--/riHotitemRight-->\n</div><!--/riHotitemBox-->\n\n\n\n\r\n</li>\r\n<li>\r\n\n\n\n<div class=\"riHotitemBox clfx\">\n<div class=\"riHotitemLeft\">\n<a sc_linkName=\"hot0810_06\" href=\"http://item.rakuten.co.jp/toucher-home/10000264/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/hotitem/1208/0810_06.jpg\" width=\"154\" height=\"123\" alt=\"\"></a>\n</div><!--/riHotitemLeft-->\n<div class=\"riHotitemRight\">\n<dl>\n<dt><a sc_linkName=\"hot0810_06\" href=\"http://item.rakuten.co.jp/toucher-home/10000264/\">̵12細䡪󥭥1̡դդ礭ʥۥƥե5ǯSALE</a></dt>\n<dd><a sc_linkName=\"hot0810_06\" href=\"http://item.rakuten.co.jp/toucher-home/10000264/\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_free.gif\" alt=\"\"\n\n\n\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/4.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/5.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201010/rakupon/yen.gif\" alt=\"\"\n\n></a></dd>\n<dd class=\"taRight\"><span class=\"tri\">åס&nbsp;<a sc_linkName=\"hot0810_06\" href=\"http://www.rakuten.ne.jp/gold/toucher-home/\">ľŹȥ</a></span></dd>\n</dl>\n</div><!--/riHotitemRight-->\n</div><!--/riHotitemBox-->\n\n\n\n\r\n</li>\r\n\r\n</ul>\r\n</div>\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_hotitem\")\r\n//-->\r\n</script>\r\n</div><!--/eventBox-->\r\n\r\n\r\n<h2 class=\"titleH2\">Pick Upܾ</h2>\r\n<div class=\"eventBox lqPickup\">\r\n\r\n<script>bust = Math.floor(1000000*Math.random());document.write('<scr' + 'ipt language=\"JavaScript1.1\" charset=\"EUC-JP\" src=\"http://grp02.ias.rakuten.co.jp/ec/ad_layout/html/200907/5346/http_js.html?site=ichiba&cont=top&type=img_thumb&pos=top_special_thumb_1&ord='+bust+'?\">\\n');document.write('</scr' + 'ipt>\\n');</script>\r\n<noscript><iframe src=\"http://grp02.ias.rakuten.co.jp/ec/ad_layout/html/200907/5346/http.html?site=ichiba&cont=top&type=img_thumb&pos=top_special_thumb_1\" width=\"100%\" height=\"100%\" marginwidth=\"0\" marginheight=\"0\" hspace=\"0\" vspace=\"0\" frameborder=\"0\" scrolling=\"no\" bordercolor=\"#000000\" allowtransparency=\"true\"></iframe></noscript> \r\n\r\n<script>bust = Math.floor(1000000*Math.random());document.write('<scr' + 'ipt language=\"JavaScript1.1\" charset=\"EUC-JP\" src=\"http://grp02.ias.rakuten.co.jp/ec/ad_layout/html/201107/9110/http_js.html?site=ichiba&cont=top_tg&type=img_thumb&pos=top_tg_1&tg=1&ord='+bust+'?\">\\n');document.write('</scr' + 'ipt>\\n');</script>\r\n<noscript><iframe src=\"http://grp02.ias.rakuten.co.jp/ec/ad_layout/html/201107/9110/http.html?site=ichiba&cont=top_tg&type=img_thumb&pos=top_tg_1&tg=1\" width=\"100%\" height=\"100%\" marginwidth=\"0\" marginheight=\"0\" hspace=\"0\" vspace=\"0\" frameborder=\"0\" scrolling=\"no\" bordercolor=\"#000000\" allowtransparency=\"true\"></iframe></noscript>\r\n\r\n</div><!--/eventBox-->\r\n\r\n\n\n\n\n\n\n\n<div class=\"centerTitle\"><h2>ŷ</h2><span class=\"next\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2F&D2=3.8611.68708.790085.25651517&C3=89669448d50ecd23a9ae228fbe267b6a09d55c98\">[ŷΥȥåץڡ򸫤&gt;&gt;]</a></span></div>\n<div class=\"eventBox auction\">\n\n<div class=\"trend liquidlist\" maxline=\"1\" maxwidth=\"\">\n<ul>\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Froyalty%2Fsell_bonus%2F%3Fl-id%3Dauction_top_02_01&D2=3.8611.68708.790085.27125066&C3=642fa07d6e790d3fff0cf3546c35b67ff8248bba\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/auction/sell_bonus_80x60.gif\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Froyalty%2Fsell_bonus%2F%3Fl-id%3Dauction_top_02_01&D2=3.8611.68708.790085.27125066&C3=642fa07d6e790d3fff0cf3546c35b67ff8248bba\">11ʤݥGET</a></dd>\n</dl>\n</li>\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Franking%2F%3Fl-id%3Dauction_top_02_02&D2=3.8611.68708.790085.25989134&C3=0f79e562a146a09f44705f02b8af4e6ef8260dda\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/auction/ranking_80x60.gif\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Franking%2F%3Fl-id%3Dauction_top_02_02&D2=3.8611.68708.790085.25989134&C3=0f79e562a146a09f44705f02b8af4e6ef8260dda\">͵ʤ󥭥󥰤ǤҲ</a></dd>\n</dl>\n</li>\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Fsa%2Fpremium%3Fl-id%3Dauction_top_02_03&D2=3.8611.68708.790085.26735997&C3=3747f88a95fcc316f20f2a733ee475dd18cfdd40\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/auction/pre2_80x60.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Fsa%2Fpremium%3Fl-id%3Dauction_top_02_03&D2=3.8611.68708.790085.26735997&C3=3747f88a95fcc316f20f2a733ee475dd18cfdd40\">ץߥྦʽ硪</a></dd>\n</dl>\n</li>\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Fsell%2Fcp%2Fbeginner%2F5point%2F%3Fl-id%3Dauction_top_02_04&D2=3.8611.68708.790085.25981389&C3=57637686eb214cf3a1aaa6c6a8582aab5db14fec\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/auction/110502_5pt_80x60.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Fsell%2Fcp%2Fbeginner%2F5point%2F%3Fl-id%3Dauction_top_02_04&D2=3.8611.68708.790085.25981389&C3=57637686eb214cf3a1aaa6c6a8582aab5db14fec\">ָꡪ̵ϿǤʤ館</a></dd>\n</dl>\n</li>\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2F1yen%2F%3Fl-id%3Dauction_top_02_05&D2=3.8611.68708.790085.25981390&C3=800da973d9ab937243093a9236b92fb8a3f0bc69\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/auction/1yen_80x60.gif\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2F1yen%2F%3Fl-id%3Dauction_top_02_05&D2=3.8611.68708.790085.25981390&C3=800da973d9ab937243093a9236b92fb8a3f0bc69\">ƨʤ͵Υ֥ɤ1ߥ</a></dd>\n</dl>\n</li>\n<li class=\"mb5 lqTrArea\">\n<dl>\n<dt class=\"thumb\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Fcampaign%2F2007sell0%2F%3Fl-id%3Dauction_top_02_06&D2=3.8611.68708.790085.25981391&C3=23a9ca8561421dce6ae3d4f29d506e990afc696c\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/auction/zero_80x60.gif\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2Fevent%2Fcampaign%2F2007sell0%2F%3Fl-id%3Dauction_top_02_06&D2=3.8611.68708.790085.25981391&C3=23a9ca8561421dce6ae3d4f29d506e990afc696c\">0ߡʤäƤԤ</a></dd>\n</dl>\n</li>\n</ul>\n</div>\n\n</div><!--/eventBox-->\n\n\n\n\r\n<div id=\"sc_lidAdd_timesale\" class=\"specially liquidlist\" maxline=\"1\" maxwidth=\"99\">\r\n<div class=\"LQtimesale\">\r\n<div class=\"eventBoxColumn\">\r\n<h2 class=\"timesaleTtl clfx\"><img src=\"http://image.www.rakuten.co.jp/com/img/home/201106/ttl_timesale3.gif\" width=\"374\" height=\"34\" alt=\"4֥ॻ\"><span class=\"LQtimesaleDate\">\n816()\n\n</span></h2>\r\n<div class=\"eventBox fourTimesale\">\r\n<ul class=\"clfx\">\r\n<li style=\"width:455px; display:none;\">\r\n\n\n\n<div class=\"timesaleBox clfx\">\n<div class=\"timeSaleLeft\">\n<a sc_linkname=\"timesale03\" href=\"http://event.rakuten.co.jp/bargain/timesale/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201004/timesale/201208/0816_04.jpg\" width=\"154\" height=\"123\" alt=\"\"></a>\n</div><!--/timeSaleLeft-->\n<div class=\"timeSaleRight\">\n<dl>\n<dt><a sc_linkname=\"timesale03\" href=\"http://event.rakuten.co.jp/bargain/timesale/\">̵ȳǰͤĩŷ󥭥1̡ͭ̾ǽͤã</a></dt>\n<dd><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n<tbody><tr>\n<td width=\"1%\">\n<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/off/89.gif\" width=\"80\" height=\"42\" alt=\"\"></td><td width=\"1%\">\n<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_free.gif\" width=\"42\" height=\"42\" alt=\"\"></td>\n<td align=\"left\" width=\"98%\"\n\n\n\n\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/9.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/9.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/9.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_yen.gif\" alt=\"\"\n></td>\n</tr>\n</tbody></table></dd>\n</dl>\n</div><!--/timeSaleRight-->\n</div><!--/timesaleBox-->\n\n\n\n\r\n</li>\r\n<li class=\"LQlastSale\" style=\"display:none;\">\r\n\n\n\n<div class=\"timesaleBox clfx\">\n<div class=\"timeSaleLeft\">\n<a sc_linkname=\"timesale02\" href=\"http://event.rakuten.co.jp/bargain/timesale/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201004/timesale/201208/0816_03.jpg\" width=\"154\" height=\"123\" alt=\"\"></a>\n</div><!--/timeSaleLeft-->\n<div class=\"timeSaleRight\">\n<dl>\n<dt><a sc_linkname=\"timesale02\" href=\"http://event.rakuten.co.jp/bargain/timesale/\">ڳŹֹīפ͵ֳϷ˥Ƥޤ¤ò</a></dt>\n<dd><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n<tbody><tr>\n<td width=\"1%\">\n<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/off/47.gif\" width=\"80\" height=\"42\" alt=\"\"></td><td width=\"1%\">\n<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_sale.gif\" width=\"42\" height=\"42\" alt=\"\"></td>\n<td align=\"left\" width=\"98%\"\n\n\n\n\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/5.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_yen.gif\" alt=\"\"\n></td>\n</tr>\n</tbody></table></dd>\n</dl>\n</div><!--/timeSaleRight-->\n</div><!--/timesaleBox-->\n\n\n\n\r\n</li>\r\n<li class=\"LQlastSale\" style=\"display:none;\">\r\n\n\n\n<div class=\"timesaleBox clfx\">\n<div class=\"timeSaleLeft\">\n<a sc_linkname=\"timesale01\" href=\"http://event.rakuten.co.jp/bargain/timesale/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201004/timesale/201208/0816_01.jpg\" width=\"154\" height=\"123\" alt=\"\"></a>\n</div><!--/timeSaleLeft-->\n<div class=\"timeSaleRight\">\n<dl>\n<dt><a sc_linkname=\"timesale01\" href=\"http://event.rakuten.co.jp/bargain/timesale/\">ä㤦ʤ齼żǥˤäեǽʤSALE</a></dt>\n<dd><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n<tbody><tr>\n<td width=\"1%\">\n<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/off/62.gif\" width=\"80\" height=\"42\" alt=\"\"></td><td width=\"1%\">\n<img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_free.gif\" width=\"42\" height=\"42\" alt=\"\"></td>\n<td align=\"left\" width=\"98%\"\n\n\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/2.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/c.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/9.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/8.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/price/0.gif\" alt=\"\"\n><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/sign_yen.gif\" alt=\"\"\n></td>\n</tr>\n</tbody></table></dd>\n</dl>\n</div><!--/timeSaleRight-->\n</div><!--/timesaleBox-->\n\n\n\n\r\n</li>\r\n</ul>\r\n<p class=\"taRight\"><span class=\"tri\"><a sc_linkname=\"timesale01\" href=\"http://event.rakuten.co.jp/bargain/timesale/\">ॻξʤ򺣤å</a></span></p>\r\n</div><!--/eventBox-->\r\n</div><!--/eventBoxColumn-->\r\n</div><!--/LQtimesale-->\r\n</div><!--/specially-->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_timesale\")\r\n//-->\r\n</script>\r\n\r\n\r\n\r\n</div><!-- /riEventContents -->\r\n\r\n</div><!--/riEventColumn-->\r\n\r\n<div id=\"ritMenuArea\">\r\n<!-- Ƕå ===================================================================-->\r\n<div id=\"sc_lidAdd_use_genre\" class=\"ritMenuCnt\">\r\n<h2><span>Ƕå</span></h2>\r\n<div class=\"ritLy1Inr\">\r\n<div class=\"ritUseCnt\">\r\n<div class=\"ritUse\">\r\n<ul>\n<li>\n<a sc_linkName=\"use_genre36\" href=\"http://www.rakuten.co.jp/category/golf/\"></a>\n</li>\n<li>\n<a sc_linkName=\"use_genre27\" href=\"http://www.rakuten.co.jp/category/service/\">ؤӡӥ</a>/<a sc_linkName=\"use_genre28\" href=\"http://hoken.rakuten.co.jp/\">ݸ</a>\n</li>\n<li>\n<a sc_linkName=\"use_genre25\" href=\"http://www.rakuten.co.jp/category/flower/\"></a>\n</li>\n<li>\n<a sc_linkName=\"use_genre22\" href=\"http://www.rakuten.co.jp/category/health/\">åȡ</a>\n</li>\n<li class=\"last\">\n<a sc_linkName=\"use_genre18\" href=\"http://www.rakuten.co.jp/category/drink/\">塦եȥɥ</a>\n</li>\n</ul>\n\r\n</div>\r\n</div>\r\n</div><!-- /.ritLy1Inr -->\r\n</div><!-- /#sc_lidAdd_use_genre .ritMenuCnt -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_use_genre\")\r\n//-->\r\n</script>\r\n<!-- /Ƕå ==================================================================-->\r\n\r\n<!--  ===============================================================================-->\r\n<div id=\"pulldownMenu\">\r\n<div id=\"sc_lidAdd_gmenu\">\r\n<div class=\"ritMenuCnt\">\r\n<h2><span></span></h2>\r\n<div id=\"onScript\" class=\"ritLy1Inr\">\r\n\r\n<div class=\"zindex1 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">եå</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d02\" href=\"http://www.rakuten.co.jp/category/ladiesfashion/\">ǥեå</a></li>\n<li><a sc_linkName=\"gmenu_d01\" href=\"http://www.rakuten.co.jp/category/mensfashion/\">󥺥եå</a></li>\n<li><a sc_linkName=\"gmenu_d04\" href=\"http://www.rakuten.co.jp/category/fashiongoods/\">Хåʪ֥ɻ</a></li>\n<li><a sc_linkName=\"gmenu_d03\" href=\"http://www.rakuten.co.jp/category/shoes/\"></a></li>\n<li><a sc_linkName=\"gmenu_d49\" href=\"http://www.rakuten.co.jp/category/watch/\">ӻ</a></li>\n<li><a sc_linkName=\"gmenu_d05\" href=\"http://www.rakuten.co.jp/category/accessories/\">奨꡼꡼</a></li>\n<li><a sc_linkName=\"gmenu_d06\" href=\"http://www.rakuten.co.jp/category/inner/\">塦ʥȥ</a></li>\n<li><a sc_linkName=\"gmenu_d51\" href=\"http://search.rakuten.co.jp/search/mall/-/100467/\">󥰥饹</a></li>\n<li><a sc_linkName=\"gmenu_d55\" href=\"http://event.rakuten.co.jp/fashion/rba/\">֥ɥե륷å</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex1 -->\n\n<div class=\"zindex2 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">šѥ̿</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d54\" href=\"http://event.rakuten.co.jp/smartdevice/\">֥åPCޡȥե</a></li>\n<li><a sc_linkName=\"gmenu_d52\" href=\"http://event.rakuten.co.jp/campaign/telecom/\">Хǡ̿</a></li>\n<li><a sc_linkName=\"gmenu_d08\" href=\"http://www.rakuten.co.jp/category/computer/\">ѥ󡦼յ</a></li>\n<li><a sc_linkName=\"gmenu_d09\" href=\"http://www.rakuten.co.jp/category/appliance/\"></a></li>\n<li><a sc_linkName=\"gmenu_d10\" href=\"http://www.rakuten.co.jp/category/electronics/\">TVǥ</a></li>\n<li><a sc_linkName=\"gmenu_d57\" href=\"http://www.rakuten.co.jp/category/electronics/\">ǥ</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex2 -->\n\n<div class=\"zindex3 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ʡ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d15\" href=\"http://www.rakuten.co.jp/category/food/\"></a></li>\n<li><a sc_linkName=\"gmenu_d16\" href=\"http://www.rakuten.co.jp/category/sweets/\">ġۻ</a></li>\n<li><a sc_linkName=\"gmenu_d19\" href=\"http://www.rakuten.co.jp/category/wine/\">磻</a></li>\n<li><a sc_linkName=\"gmenu_d20\" href=\"http://www.rakuten.co.jp/category/liquor/\">ӡ롦μ</a></li>\n<li><a sc_linkName=\"gmenu_d21\" href=\"http://www.rakuten.co.jp/category/sake/\">ܼ򡦾</a></li>\n<li><a sc_linkName=\"gmenu_d18\" href=\"http://www.rakuten.co.jp/category/drink/\">塦եȥɥ</a></li>\n<li><a href=\"http://delivery.rakuten.co.jp/index.php\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2Findex.php&D2=3.8611.68708.790067.25609586&C3=72326ab0849f3b235b4d788d63b505b1b0b0af1a'\">ʳŷǥХ꡼</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex3 -->\n\n<div class=\"zindex4 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ƥꥢѻ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d31\" href=\"http://www.rakuten.co.jp/category/interior/\">ƥꥢ񡦼Ǽ</a></li>\n<li><a sc_linkName=\"gmenu_d50\" href=\"http://www.rakuten.co.jp/category/kitchen/\">åʡĴ</a></li>\n<li><a sc_linkName=\"gmenu_d32\" href=\"http://www.rakuten.co.jp/category/daily/\">ʻߡʸ˼񡦼</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex4 -->\n\n<div class=\"zindex5 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ݡġȥɥ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d35\" href=\"http://www.rakuten.co.jp/category/sports/\">ݡġȥɥ</a></li>\n<li><a sc_linkName=\"gmenu_d36\" href=\"http://www.rakuten.co.jp/category/golf/\"></a></li>\n<li><a href=\"http://gora.golf.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fgora.golf.rakuten.co.jp%2F&D2=3.8611.68708.790067.25609278&C3=6c253734cdb25ead0e06095ef9b2fb1fd9585ffe'\">վͽ</a></li>\n<li><a sc_linkName=\"gmenu_d33\" href=\"http://search.rakuten.co.jp/search/mall/-/100683/\">ι</a></li>\n<li><a href=\"http://travel.rakuten.co.jp/cgi-bin/lpo?disp=top_directory\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2Fcgi-bin%2Flpo%3Fdisp%3Dtop_directory&D2=3.8611.68708.790067.25165740&C3=947289bea02329580737334f78051d575fcd7fa7'\">ιͽ</a></li>\n<li><a href=\"http://ticket.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fticket.rakuten.co.jp%2F&D2=3.8611.68708.790067.25609279&C3=8d45e660af6392f18fd83de4889926e554c09148'\">٥ȡåͽ</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex5 -->\n\n<div class=\"zindex6 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ơ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d24\" href=\"http://www.rakuten.co.jp/category/beauty/\">ơᡦ</a></li>\n<li><a sc_linkName=\"gmenu_d22\" href=\"http://www.rakuten.co.jp/category/health/\">åȡ</a></li>\n<li><a sc_linkName=\"gmenu_d56\" href=\"http://search.rakuten.co.jp/search/mall/-/550090/\">ץ</a></li>\n<li><a sc_linkName=\"gmenu_d23\" href=\"http://www.rakuten.co.jp/category/medicine/\">ʡ󥿥ȡ</a></li>\n<li><a href=\"http://salon.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fsalon.rakuten.co.jp%2F&D2=3.8611.68708.790067.27001772&C3=6951391e95bf33d783376171849ce919162c8dd8'\">Ƽͽʳŷ</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex6 -->\n\n<div class=\"zindex7 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">å٥ӡ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d07\" href=\"http://www.rakuten.co.jp/category/baby/\">å٥ӡޥ˥ƥ</a></li>\n<li><a sc_linkName=\"gmenu_d13\" href=\"http://www.rakuten.co.jp/category/toy/\"></a></li>\n<li><a sc_linkName=\"gmenu_d14\" href=\"http://www.rakuten.co.jp/category/hobby/\">ۥӡ</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex7 -->\n\n<div class=\"zindex8 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ڥåȡ֡DIY</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d26\" href=\"http://www.rakuten.co.jp/category/pet/\">ڥåȥաɡڥå</a></li>\n<li><a sc_linkName=\"gmenu_d48\" href=\"http://www.rakuten.co.jp/category/garden/\">ǥDIY</a></li>\n<li><a sc_linkName=\"gmenu_d25\" href=\"http://www.rakuten.co.jp/category/flower/\"></a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex8 -->\n\n<div class=\"zindex9 nav-one01\">\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ܡڡ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d12\" href=\"http://www.rakuten.co.jp/category/game/\"></a></li>\n<li class=\"ritItemset\"><a class=\"ritRelItem\" sc_linkName=\"gmenu_d38\" href=\"http://product.rakuten.co.jp/category/%E6%9C%AC%E3%83%BB%E9%9B%91%E8%AA%8C%E3%83%BB%E3%82%B3%E3%83%9F%E3%83%83%E3%82%AF/200162/\">ܡߥå</a> / <a class=\"ritRelItem\" sc_linkName=\"gmenu_d53\" href=\"http://event.rakuten.co.jp/usedbook/\"></a></li>\n<li><a href=\"http://kobo.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F581%2F226%2F245033_301161%2F&D2=3.8611.68708.790067.27014555&C3=7dee4e84a52360e2d9ff966728f5f88f010d2912'\">Żҥ֥åֳŷkobo</a></li>\n<li><a href=\"http://books.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2F&D2=3.8611.68708.790067.25609280&C3=c2dfe51ea3e1da9f045e480a03577fc0446665c3'\">ŷ֥å</a></li>\n<li><a sc_linkName=\"gmenu_d40\" href=\"http://www.rakuten.co.jp/category/media/\">CD DVD</a></li>\n<li><a sc_linkName=\"gmenu_d11\" href=\"http://www.rakuten.co.jp/category/instrument/\">ڴڵ</a></li>\n<li><a href=\"http://rental.rakuten.co.jp/rental/start/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Frental.rakuten.co.jp%2Frental%2Fstart%2F%3Fscid%3Dicb_genre&D2=3.8611.68708.790067.26776679&C3=278a572fee399f291c2b1191eb7f6eab8caf8bbb'\">󥿥</a></li>\n<li><a href=\"http://dl.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdl.rakuten.co.jp%2F&D2=3.8611.68708.790067.25609282&C3=d38e599d9ac6979fdb63d7a4e4140c7b55964f80'\"></a></li>\n<li><a href=\"http://www.showtime.jp/isp/rakuten/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.showtime.jp%2Fisp%2Frakuten%2F&D2=3.8611.68708.790067.25609283&C3=ff69bef7114ebac0833c572c36fec0c8f5f0f50f'\">ư</a></li>\n<li><a href=\"http://entertainment.rakuten.co.jp/movie/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fentertainment.rakuten.co.jp%2Fmovie%2F&D2=3.8611.68708.790067.25609284&C3=32f53374d1362b421e18803b0e936231ae82877d'\">󥿥ʥ</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex9 -->\n\n<div class=\"zindex10 nav-one01\">\n<dl class=\"ritGenre ritPb\">\n<dt><span class=\"ritGnrCategory\">֡Хӥ</span><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconBoxArrowR\" width=\"9\" height=\"9\"></dt>\n<dd class=\"inner01\">\n<div class=\"ritOnlybg\">\n<div class=\"ritTopbg\">\n<ul>\n<li><a sc_linkName=\"gmenu_d47\" href=\"http://www.rakuten.co.jp/category/autogoods/\">ʡХ</a></li>\n<li><a sc_linkName=\"gmenu_d46\" href=\"http://www.rakuten.co.jp/category/auto/\">֡Х</a></li>\n<li><a sc_linkName=\"gmenu_d27\" href=\"http://www.rakuten.co.jp/category/service/\">ؤӡӥ</a></li>\n<li><a href=\"http://hoken.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fhoken.rakuten.co.jp%2F&D2=3.8611.68708.790067.25609285&C3=62d350f8e964f5b039f92babf2e482b4e29a7ef7'\">ݸ</a></li>\n<li><a href=\"http://business.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbusiness.rakuten.co.jp%2F%3Fscid%3Dwi_ich_top_n&D2=3.8611.68708.790067.26954969&C3=efdbccb22cb68853529d22b7174e065d20fe4e3d'\">ӥͥ</a></li>\n<li><a href=\"http://realestate.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Frealestate.rakuten.co.jp%2F%3Fscid%3Drg_ichibatop_top&D2=3.8611.68708.790067.26290363&C3=ad7b5a9009d545eca29f95e5108f4f15543accf8'\">ư</a></li>\n</ul>\n</div>\n</div><!-- /.ritOnlybg -->\n</dd>\n</dl>\n</div><!-- /.zindex10 -->\n\r\n\r\n</div><!-- /#onScript -->\r\n<noscript>\r\n\r\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">եå</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/ladiesfashion/\">ǥեå</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/mensfashion/\">󥺥եå</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/fashiongoods/\">Хåʪ֥ɻ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/shoes/\"></a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/watch/\">ӻ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/accessories/\">奨꡼꡼</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/inner/\">塦ʥȥ</a></li>\n<li><a href=\"http://search.rakuten.co.jp/search/mall/-/100467/\">󥰥饹</a></li>\n<li><a href=\"http://event.rakuten.co.jp/fashion/rba/\">֥ɥե륷å</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">šѥ̿</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://event.rakuten.co.jp/smartdevice/\">֥åPCޡȥե</a></li>\n<li><a href=\"http://event.rakuten.co.jp/campaign/telecom/\">Хǡ̿</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/computer/\">ѥ󡦼յ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/appliance/\"></a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/electronics/\">TVǥ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/electronics/\">ǥ</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ʡ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/food/\"></a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/sweets/\">ġۻ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/wine/\">磻</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/liquor/\">ӡ롦μ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/sake/\">ܼ򡦾</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/drink/\">塦եȥɥ</a></li>\n<li><a href=\"http://delivery.rakuten.co.jp/index.php\">ʳŷǥХ꡼</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ƥꥢѻ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/interior/\">ƥꥢ񡦼Ǽ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/kitchen/\">åʡĴ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/daily/\">ʻߡʸ˼񡦼</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ݡġȥɥ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/sports/\">ݡġȥɥ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/golf/\"></a></li>\n<li><a href=\"http://gora.golf.rakuten.co.jp/\">վͽ</a></li>\n<li><a href=\"http://search.rakuten.co.jp/search/mall/-/100683/\">ι</a></li>\n<li><a href=\"http://travel.rakuten.co.jp/cgi-bin/lpo?disp=top_directory\">ιͽ</a></li>\n<li><a href=\"http://ticket.rakuten.co.jp/\">٥ȡåͽ</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ơ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/beauty/\">ơᡦ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/health/\">åȡ</a></li>\n<li><a href=\"http://search.rakuten.co.jp/search/mall/-/550090/\">ץ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/medicine/\">ʡ󥿥ȡ</a></li>\n<li><a href=\"http://salon.rakuten.co.jp/\">Ƽͽʳŷ</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">å٥ӡ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/baby/\">å٥ӡޥ˥ƥ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/toy/\"></a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/hobby/\">ۥӡ</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ڥåȡ֡DIY</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/pet/\">ڥåȥաɡڥå</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/garden/\">ǥDIY</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/flower/\"></a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre\">\n<dt><span class=\"ritGnrCategory\">ܡڡ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/game/\"></a></li>\n<li><a href=\"http://product.rakuten.co.jp/category/%E6%9C%AC%E3%83%BB%E9%9B%91%E8%AA%8C%E3%83%BB%E3%82%B3%E3%83%9F%E3%83%83%E3%82%AF/200162/\">ܡߥå</a> / <a href=\"http://event.rakuten.co.jp/usedbook/\"></a></li>\n<li><a href=\"http://books.rakuten.co.jp/\">ŷ֥å</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/media/\">CD DVD</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/instrument/\">ڴڵ</a></li>\n<li><a href=\"http://rental.rakuten.co.jp/rental/start/\">󥿥</a></li>\n<li><a href=\"http://dl.rakuten.co.jp/\"></a></li>\n<li><a href=\"http://www.showtime.jp/isp/rakuten/\">ư</a></li>\n<li><a href=\"http://entertainment.rakuten.co.jp/movie/\">󥿥ʥ</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritGenre ritPb\">\n<dt><span class=\"ritGnrCategory\">֡Хӥ</span></dt>\n<dd>\n<ul>\n<li><a href=\"http://www.rakuten.co.jp/category/autogoods/\">ʡХ</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/auto/\">֡Х</a></li>\n<li><a href=\"http://www.rakuten.co.jp/category/service/\">ؤӡӥ</a></li>\n<li><a href=\"http://hoken.rakuten.co.jp/\">ݸ</a></li>\n<li><a href=\"http://business.rakuten.co.jp/\">ӥͥ</a></li>\n<li><a href=\"http://realestate.rakuten.co.jp/\">ư</a></li>\n</ul>\n</dd>\n</dl>\n\r\n\r\n</noscript>\r\n</div><!-- /.ritMenuCnt -->\r\n<div id=\"ritGenreList\"><img class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a sc_linkName=\"gmenu_d_list\" href=\"http://event.rakuten.co.jp/genre/\">򸫤</a></div>\r\n</div><!-- /#sc_lidAdd_gmenu -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_gmenu\")\r\n//-->\r\n</script>\r\n</div><!-- /#pulldownMenu -->\r\n<script type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/c/top/popmenu/genremenu-1.0.0.min.js\"></script>\r\n<!-- / ==============================================================================-->\r\n\r\n<div class=\"ritMenuCnt\" id=\"ritMnPickup\">\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_menu_pickup\">\n<h2><span>߲</span></h2>\n<div class=\"ritLy2Inr\">\n<dl>\n<dd>\n<ul>\n<li><a sc_linkname=\"menu_pickup_2012keirou\" href=\"http://event.rakuten.co.jp/keirou/\">Ϸý</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritBtm\">\n<dd>\n<ul>\n<li><a sc_linkName=\"menu_pickup09\" href=\"http://event.rakuten.co.jp/supertv/\">ŷѡTV</a></li>\n<li><a sc_linkName=\"menu_pickup02\" href=\"http://event.rakuten.co.jp/asuraku/\">û֤ڡ</a></li>\n<li><a sc_linkName=\"menu_pickup03\" href=\"http://event.rakuten.co.jp/used/\">ŻԾ</a><a sc_linkName=\"menu_pickup03_01\" href=\"http://event.rakuten.co.jp/used/\">㤦</a> / <a sc_linkName=\"menu_pickup03_02\" href=\"http://event.rakuten.co.jp/used/buy/\"></a></li>\n<li><a sc_linkName=\"menu_pickup08\" href=\"http://event.rakuten.co.jp/coupon/\">ʥ顦ݥ</a></li>\n<li><a href=\"http://24.rakuten.co.jp/?s-id=r24_itop_toku\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2F24.rakuten.co.jp%2F%3Fs-id%3Dr24_itop_toku%26l-id%3Dtop_normal_menu_pickup12&D2=3.8611.68708.790068.25732236&C3=6654e2cd3b0e6f5e5622e708f5d64fae9a1f3f66'\">ޤȤ㤤ֳŷ24</a></li>\n<li><a href=\"http://rental.rakuten.co.jp/rental/start/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Frental.rakuten.co.jp%2Frental%2Fstart%2F%3Fscid%3Dicb_tokusetsu&D2=3.8611.68708.790068.26776680&C3=8d38b1289c07288c4de91089c6ce6b7412c080d3'\">DVDCD󥿥</a></li>\n<li><a sc_linkName=\"menu_pickup06\" href=\"http://event.rakuten.co.jp/borderless/\"></a></li>\n<li><a href=\"http://shashinkan.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fshashinkan.rakuten.co.jp%2F&D2=3.8611.68708.790068.25731907&C3=f57a15a42e7ff01066651ee8e059967867130c4b'\">ץȡեȥ֥å</a></li>\n<li class=\"last\"><a href=\"http://salon.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fsalon.rakuten.co.jp%2F&D2=3.8611.68708.790068.27001773&C3=6951391e95bf33d783376171849ce919162c8dd8'\">Ƽͽʳŷ</a></li>\n</ul>\n</dd>\n</dl>\n</div>\n</div><!-- /.ritMenuBtm -->\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_menu_pickup\")\n//--></script>\n</div><!-- /.ritMenuCnt -->\r\n<div class=\"ritMenuCnt\" id=\"ritMnScene\">\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_menu_scene\">\n<h2><span>Ūõ</span></h2>\n<div class=\"ritLy2Inr\">\n<dl>\n<dt>㤤</dt>\n<dd>\n<ul>\n<li><a sc_linkname=\"menu_scene05\" href=\"http://event.rakuten.co.jp/bargain/\">С󡦥</a></li>\n<li><a sc_linkname=\"menu_scene01\" href=\"http://event.rakuten.co.jp/freeshipping/\">̵</a></li>\n<li><a sc_linkname=\"menu_scene03\" href=\"http://event.rakuten.co.jp/pointup/\">ݥȥå</a></li>\n<li><a sc_linkname=\"menu_scene04\" href=\"http://event.rakuten.co.jp/newshop/\">Ź</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt>ȥɾ</dt>\n<dd>\n<ul>\n<li><a sc_linkname=\"menu_scene21\" href=\"http://event.rakuten.co.jp/ent/suppin/\">ǽͥ</a></li>\n<li><a sc_linkname=\"menu_scene10\" href=\"http://product.rakuten.co.jp/new_product/\">ʥå</a></li>\n<li><a sc_linkname=\"menu_scene16\" href=\"http://event.rakuten.co.jp/ent/onair/\">ƥӤǾҲ</a></li>\n<li><a sc_linkname=\"menu_scene25\" href=\"http://event.rakuten.co.jp/ent/magazine/\">͵ǾҲ</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt>㤤</dt>\n<dd>\n<ul>\n<li><a sc_linkname=\"menu_scene08\" href=\"http://gift.rakuten.co.jp/\">եȡʤΡ</a></li>\n<li><a sc_linkname=\"menu_scene12\" href=\"http://event.rakuten.co.jp/regular/\">۲</a></li>\n<li><a sc_linkname=\"menu_scene27\" href=\"http://event.rakuten.co.jp/newshop/topics/\">ͭ̾ᥬȥ</a></li>\n</ul>\n</dd>\n</dl>\n<dl class=\"ritBtm\">\n<dt>ξ</dt>\n<dd>\n<ul>\n<li><a sc_linkname=\"menu_scene26\" href=\"http://event.rakuten.co.jp/fashion/rba/\">եå֥</a></li>\n<li><a sc_linkname=\"menu_scene09\" href=\"http://event.rakuten.co.jp/disney/\">ǥˡ</a> / <a sc_linkname=\"menu_scene23\" href=\"http://event.rakuten.co.jp/marvel/\">ޡ٥</a></li>\n<li><a sc_linkname=\"menu_scene13\" href=\"http://event.rakuten.co.jp/lounge/\">Ȥְ</a></li>\n</ul>\n</dd>\n</dl>\n</div>\n</div><!-- /.ritMenuBtm -->\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_menu_scene\")\n//--></script>\n</div><!-- /.ritMenuCnt -->\r\n<div class=\"ritMenuCnt\" id=\"ritMnMarket\">\r\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_menu_market\">\r\n<h2><span>ܻԾ</span></h2>\r\n<div class=\"ritLy3Inr\">\r\n\r\n<ul>\n<li class=\"thumb\"><a sc_linkName=\"chumoku02\" href=\"http://search.rakuten.co.jp/search/mall/-/100878/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/chumoku/all/201205/aroma.jpg\" alt=\"޻Ծ\" width=\"40\" height=\"40\"></a></li>\n<li>\n<dl>\n<dt><a sc_linkName=\"chumoku02\" href=\"http://search.rakuten.co.jp/search/mall/-/100878/\">޻Ծ</a></dt>\n<dd>ޤλ֡Ϥޤ</dd>\n</dl>\n</li>\n</ul>\n\r\n\r\n<ul>\n<li class=\"thumb\"><a sc_linkName=\"chumoku77\" href=\"http://search.rakuten.co.jp/search/mall/-/206746/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/chumoku/all/fashion/fashion_20090917_02.jpg\" alt=\"ǥʥȥ롼०Ծ\" width=\"40\" height=\"40\"></a></li>\n<li>\n<dl>\n<dt><a sc_linkName=\"chumoku77\" href=\"http://search.rakuten.co.jp/search/mall/-/206746/\">ǥʥȥ롼०Ծ</a></dt>\n<dd>CUTE롼०</dd>\n</dl>\n</li>\n</ul>\n\r\n\r\n<ul>\n<li class=\"thumb\"><a sc_linkName=\"chumoku177\" href=\"http://search.rakuten.co.jp/search/mall/-/560100/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/chumoku/all/2012/fashion_120212_23.gif\" alt=\"ȡ롦ޥե顼Ծ\" width=\"40\" height=\"40\"></a></li>\n<li>\n<dl>\n<dt><a sc_linkName=\"chumoku177\" href=\"http://search.rakuten.co.jp/search/mall/-/560100/\">ȡ롦ޥե顼Ծ</a></dt>\n<dd>äȸĤ롪ܥƥ</dd>\n</dl>\n</li>\n</ul>\n\r\n\r\n<p class=\"ritMoreLink\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a sc_linkName=\"chumoku_top\" href=\"http://event.rakuten.co.jp/market/\">Ծ</a></p>\r\n</div>\r\n</div><!-- /.ritMenuBtm -->\r\n<script type=\"text/javascript\"><!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_menu_market\")\r\n//--></script>\r\n</div><!-- /.ritMenuCnt -->\r\n\r\n\r\n<div class=\"ritMenuCnt\" id=\"ritMnSupertv\">\r\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_menu_supertv\">\r\n<h2><span>ŷѡTV</span></h2>\r\n<div class=\"ritLy3Inr\">\r\n\r\n<p class=\"ritSuperTvTopText\"><a sc_linkName=\"supertv_text\" href=\"http://event.rakuten.co.jp/supertv/\">ܥƥưǾҲ</a></p>\r\n\r\n<dl class=\"ritSuperTvImgSet\">\n<dt><a sc_linkName=\"rstv_103\" href=\"http://event.rakuten.co.jp/supertv/LUMIX_GF5/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/supertv/201206/20120615_lumix.jpg\" width=\"80\" height=\"60\" alt=\"\"></a></dt>\n<dd><a sc_linkName=\"rstv_103\" href=\"http://event.rakuten.co.jp/supertv/LUMIX_GF5/\">鿴ԤˤΥߥ顼쥹</a></dd>\n</dl>\n\r\n\r\n<p class=\"ritMoreLink\"><img alt=\"\" src=\"http://image.www.rakuten.co.jp/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a sc_linkName=\"supertv_top\" href=\"http://event.rakuten.co.jp/supertv/\">ŷѡTVȥå</a></p>\r\n</div>\r\n</div><!-- /.ritMenuBtm -->\r\n<script type=\"text/javascript\"><!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_menu_supertv\")\r\n//--></script>\r\n</div><!-- /.ritMenuCnt -->\r\n\r\n\r\n<div class=\"ritMenuCnt\" id=\"ritMnNetsuper\">\r\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_netsuper\">\r\n<div class=\"ritSubSrList\">\r\n<div class=\"ritLy4Inr\">\r\n\r\n<dl>\n<dt><img height=\"10\" width=\"7\" class=\"spriteIcon iconArrowR\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a href=\"http://netsuper.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fnetsuper.rakuten.co.jp%2F&D2=3.8611.68708.790072.25197828&C3=3958d4fe173d30aecc75003bad63a17f1de16dee'\">ͥåȥѡ</a></dt>\n<dd>\n<ul>\n<li><a href=\"http://netsuper.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fnetsuper.rakuten.co.jp%2F&D2=3.8611.68708.790072.25197829&C3=3958d4fe173d30aecc75003bad63a17f1de16dee'\"></a> / </li>\n<li><a href=\"http://netsuper.rakuten.co.jp/kansaisuper/w_mall_top.php\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fnetsuper.rakuten.co.jp%2Fkansaisuper%2Fw_mall_top.php&D2=3.8611.68708.790072.25197830&C3=9521a476fa2416aa3b9df919719961f0f0d7ce68'\">塦͡</a></li>\n</ul>\n</dd>\n</dl>\n\r\n\r\n<dl>\n<dt><img height=\"10\" width=\"7\" class=\"spriteIcon iconArrowR\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2F%3Fl-id%3Ddeli_top_02_01&D2=3.260.48889.760895.20368603&C3=9f3693bb49e0152c323315f3fc09265a9472f62e\"></a></dt>\n<dd>\n<ul>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2Fgenre%2Fpizza.html%3Fg%3D1%26l-id%3Ddeli_top_02_02&D2=3.260.48889.760895.20265368&C3=6ec7fbcd29a88b2d6df464a7b6a2657a783b6750\">ԥ</a> / </li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2Fgenre%2Fcurry.html%3Fscid%3Dwi_ich_cocoichi_20120425&D2=3.260.48889.760895.26831595&C3=fe88d7bb0e8e9205f53fb30aa862451c0dc01e65\">졼</a></li>\n</ul>\n</dd>\n<dd>\n<ul>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2Fgenre%2Fsushi.html%3Fg%3D1%26l-id%3Ddeli_top_02_03&D2=3.260.48889.760895.20265369&C3=82a73c1523045829bc67bd69fa1d5008d84c2cf0\"></a> / </li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2Fgenre%2Flunch.html%3Fg%3D1%26l-id%3Ddeli_top_02_04&D2=3.260.48889.760895.20265370&C3=a1caec8dd00410802ac2240df6b15434b7a67a03\"></a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt><img height=\"10\" width=\"7\" class=\"spriteIcon iconArrowR\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdining.rakuten.co.jp%2F%3Fl-id%3Ddining_02&D2=3.260.48889.760895.20265371&C3=3357730a2f917baddbf78076e5e7f1f97a5d360e\">쥹ȥ</a></dt>\n</dl>\n<dl>\n<dt><img height=\"10\" width=\"7\" class=\"spriteIcon iconArrowR\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a  href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuteneagles.jp%2F&D2=3.8611.68708.790075.25173354&C3=bd7c51463f6a693870d9b5168df85346055a2aa9\">ŷ륹</a></dt>\n<dd>\n<ul>\n<li><a sc_linkName=\"eagles01\" href=\"http://event.rakuten.co.jp/campaign/sports/\">äϥݥ2ܡ</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt><img height=\"10\" width=\"7\" class=\"spriteIcon iconArrowR\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a  href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fincentive%2F%3Fl-id%3Dsuper_top_02_07&D2=3.260.48889.760895.20271726&C3=9ccf14f9b34fa357f57c8f1da4dfa0adcd1b8942\">ŵդڡ</a></dt>\n</dl>\r\n</div><!-- /.ritLy4Inr -->\r\n</div><!-- /.ritSubSrList -->\r\n</div><!-- /.ritMenuBtm -->\r\n<script type=\"text/javascript\"><!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_netsuper\")\r\n//--></script>\r\n</div><!-- /.ritMenuCnt -->\r\n\r\n<div class=\"ritMenuCnt\" id=\"ritMnArea\">\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_area\">\n<h2><span><a sc_linkName=\"areamap01\" href=\"http://event.rakuten.co.jp/area/\">ޤ</a></span></h2>\n<div class=\"ritLy2Inr\">\n<ul>\n<li><img height=\"10\" width=\"7\" class=\"spriteIcon iconDot\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a sc_linkName=\"areamap01\" href=\"http://event.rakuten.co.jp/area/special/review/\">߼硪</a></li>\n<li><img height=\"10\" width=\"7\" class=\"spriteIcon iconDot\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a sc_linkName=\"areamap02\" href=\"http://event.rakuten.co.jp/area/special/sale/\">񤤤Τ</a></li>\n<li><img height=\"10\" width=\"7\" class=\"spriteIcon iconDot\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" alt=\"\"><a sc_linkName=\"areamap03\" href=\"http://event.rakuten.co.jp/area/special/bgourmet/\">㥦B饰</a></li>\n</ul>\n<p class=\"ritMoreLink\"><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a onclick=\"this.href='http://event.rakuten.co.jp/area/?l-id=area_map_top_02_02'\" href=\"http://event.rakuten.co.jp/area/\">ޤڥȥå</a></p>\n</div>\n</div><!-- /.ritMenuBtm -->\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_area\")\n//--></script>\n</div><!-- /.ritMenuCnt -->\r\n<div class=\"ritMenuCnt\" id=\"ritMnMobile\">\n<div class=\"ritMenuBtm\" id=\"sc_lidAdd_mobile\">\n<h2><span>ǳŷԾ</span></h2>\n<div class=\"ritLy2Inr\">\n<p class=\"ritMobileTxt\"><a sc_linkName=\"area_mobile01\" href=\"http://event.rakuten.co.jp/mobile/\">ޡȥե󥭥ڡʤɤʾܡץˤʥСɵǽ⡪</a></p>\n<p style=\"padding-top: 5px; text-align: center;\"><a sc_linkName=\"area_mobile01\" href=\"http://event.rakuten.co.jp/mobile/\"><img alt=\"ǳŷԾ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201207/pc_app_wt2.gif\" width=\"162\" height=\"74\"></a></p>\n</div>\n</div><!-- /.ritMenuBtm -->\n<script type=\"text/javascript\"><!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_mobile\")\n//--></script>\n</div><!-- /.ritMenuCnt -->\r\n</div><!-- /div#ritMenuArea -->\r\n\r\n<div id=\"riServiceColumn\">\r\n\r\n<!-- pc_right_information -->\r\n<!-- /pc_right_information -->\r\n\r\n\r\n<!--\n-->\r\n\n\n<div id=\"ritopbanner\">\n<a href=\"http://ad2.trafficgate.net/t/r/801/226/245033_301161/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/festival/kobo300x68_0719.jpg\" alt=\"\" width=\"300\"  height=\"68\"  hspace=\"0\"  vspace=\"0\"  border=0></a>\n</div>\n\n\n\r\n\r\n<!-- PХʡ[malltop950_banner:banner01/right_bannerNum] -->\r\n<div id=\"ritopbanner\">\n\n<a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F3712%2F1441%2F99636_99636%2F&D2=3.260.36442.807676.27133404&C3=1918153f9cd8222b7f7d17bbbfbefe326d4d96e0\"><img src=\"http://image.www.rakuten.co.jp/com/img/thumb/200309/event/20120816/miho_card_20120816_a.gif\" alt=\"ŷɿ5,000ݥȡ\" width=\"300\"  height=\"68\"  hspace=\"0\"  vspace=\"0\"  border=0></a>\n\n\n</div>\r\n<!-- /PХʡ[malltop950_banner:banner01/right_bannerNum] -->\r\n\r\n<div class=\"sideContents03\">\r\n<div class=\"entrybox03\">\r\n<div id=\"myRakuten\">\n<div id=\"sc_lidAdd_myRakuten\">\n<div id=\"myRakutenColumn\">\n<div id=\"logout\">\n<div class=\"logoutCont\">\n<p class=\"forlog\"><a href=\"https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fgrp01.id.rakuten.co.jp%2Frms%2Fnid%2Fvc%3F__event%3Dlogin%26service_id%3Dtop&D2=3.260.48889.760895.20372091&C3=afbb32f37f01bfea0babf89fe5db20c7d6b109e0\"></a></p>\n<dl>\n<dt class=\"firstUse\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fmyrakuten%2Fhelp%2F%3Fl-id%3Dtop_normal_myR_help01&D2=3.8611.68708.790088.26112572&C3=2bbaa9dc60a32243e44dbd37b566d09fd8d4d3e3\">ƤѤ</a></dt>\n<dd class=\"serviceUse\"><a href=\"https://grp01.id.rakuten.co.jp/rms/nid/mregistfwd?service_id=s133\" onclick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='top_normal_myR_help02';s.tl(this,'o','register_member');\">ŷϿ̵</a>Ƥ㤤ʪ򤹤ȳŷѡݥȤޤޤޤäݥȤϡʹߤΤ㤤ʪˤѤޤ</dd>\n</dl>\n</div><!--/logoutCont-->\n<div class=\"logoutSubCont\">\n<p class=\"pointClub\"><span class=\"pointClubName\"><a href=\"https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fpoint.rakuten.co.jp%2F%3Fl-id%3Dmyrakuten_top_02_04&D2=3.260.48889.760895.20233530&C3=1d2fb23e48a7b1e8a5d51916b61502387b6a8181\">ŷPointClub</a></span><a href=\"https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fpoint.rakuten.co.jp%2F&amp;D2=3.260.1590.1668.24975633&amp;C3=cc8c6cb6b0bcb19edd2edbfaa4bf8dab434a77e3\"><img height=\"16\" border=\"0\" width=\"70\" alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/200809/loginarea_point_detail.gif\"></a></p>\n<ul class=\"topics\">\n\n\n\n<li><a sc_linkName=\"myR_topics01\" href=\"http://event.rakuten.co.jp/campaign/point-up/shop5/120816/\">38ָꡪ2å׹ݥ5</a></li>\n\n\n\n<li><a sc_linkName=\"myR_topics02\" href=\"http://event.rakuten.co.jp/campaign/point-rank/\">ݥͥԡץʡ10</a></li>\n\n\n\n\n\n\n\n\n\n\n</ul>\n<p class=\"info\"><a href=\"https://emagazine.rakuten.co.jp/ns?act=chg_news&f=member&ptn=2&l-id=myrakuten_mag_top\">ŷΥޥѹ</a></p>\n</div><!--/logoutSubCont-->\n</div><!--/logout-->\n</div><!--/myRakutenColumn-->\n</div><!--/sc_lidAdd_myRakuten-->\n<script type=\"text/javascript\">\n<!--\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_myRakuten\")\n//-->\n</script>\n</div><!--/myRakuten-->\n\r\n<!--/entrybox03--></div>\r\n<!--/sideContents03--></div>\r\n\r\n<div class=\"sideContents03\">\r\n<div class=\"entryColumn02\">\n<div class=\"entrybox03\">\n<h2 class=\"ttlRed\">ߥ˥ƥ</h2>\n<div class=\"inner03\">\n<dl>\n<dt class=\"comulef\"><a href=\"http://event.rakuten.co.jp/sns/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fsns%2F&D2=3.8611.68708.790089.26610381&C3=89508af81102593741f60502c6f1fc883aecc300'\">ŷSNSȰ</a></dt>\n<dd class=\"comuright\"><a href=\"http://event.rakuten.co.jp/sns/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fsns%2F&D2=3.8611.68708.790089.26610381&C3=89508af81102593741f60502c6f1fc883aecc300'\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201206/sns_logo_01.gif\" width=\"76\" height=\"16\"></a></dd>\n</dl>\n</div>\n<div class=\"inner03\">\n<dl>\n<dt class=\"comulef\"><a href=\"http://affiliate.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Faffiliate.rakuten.co.jp%2F&D2=3.8611.68708.790089.26400380&C3=7f3dde9b31182d0df2f07e76c8233bd9c80485bd'\">ŷեꥨ</a><span class=\"pl10\">ΨԸŹޤ桪</span></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Faffiliate.rakuten.co.jp%2F&D2=3.8611.68708.790089.26400380&C3=7f3dde9b31182d0df2f07e76c8233bd9c80485bd\" style=\"background:url(http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201008/dot_f2ab00.gif) no-repeat 5px 5px;padding:0 5px 0 10px;margin:0 5px;\">ʤ顢koboΨ1%5%˥åס</a></dd>\n</dl>\n</div>\n<div class=\"inner03\">\n<dl>\n<dt class=\"comulef\"><a href=\"http://plaza.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fplaza.rakuten.co.jp%2F&D2=3.8611.68708.790089.26400375&C3=47f4201e4154af7b71f9edfd25145838a25afffb'\">ŷ֥</a> / <a  href=\"http://shop.plaza.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fshop.plaza.rakuten.co.jp%2F&D2=3.8611.68708.790089.26400376&C3=9ee55696112da61583cd33568f5e86426b97aaf1'\">ŹĹ֥</a></dt>\n</dl>\n</div>\n<div class=\"inner03\">\n<p class=\"comulef\"><a href=\"http://review.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Freview.rakuten.co.jp%2F&D2=3.8611.68708.790089.26400378&C3=f90d3baa4184341df117c6f06ff1f5c96c05c1d2'\">ʤδۡ8610\n</a></p>\n</div>\n<!--/entrybox03--></div>\n<!--/entryColumn02--></div>\n\r\n</div>\r\n\r\n<div class=\"sideContents03\">\r\n<div class=\"entryColumn02\">\r\n<div class=\"entrybox03\">\r\n<h2 class=\"ttlRed\"><a href=\"http://money.rakuten.co.jp/\">ޥ͡ӥ</a></h2>\r\n\r\n<!--  default -->\n<div class=\"inner04\">\n<p class=\"comulef02\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F2516%2F1441%2F99636%2F&D2=3.260.1590.15062.25194523&C3=820acd838f9deeda452f0dbcc2713771dd588e21\">ŷ</a></p>\n<p class=\"comuright\">ޤ816ޤ</p>\n</div>\n<div class=\"inner05\">\n<ul class=\"point02\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F682%2F1441%2F99636%2F&D2=3.8611.68708.790090.26145181&C3=6def19ece35e83706aeed1a03b8ccd374cd951f1\">鿩롪ʤ5,000ݥ</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F4838%2F1441%2F99636_99636%2F&D2=3.8611.68708.790090.26145182&C3=1d0f64471a3999d7a6f58c0905a040ddca542644\">Ŀͻȼγ͸ɤѰա</a></li>\n</ul>\n</div>\n<!-- / default -->\n\n\r\n\r\n\n\n\n<div class=\"inner04\">\n<p class=\"comulef02\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fc.p-advg.com%2FadpCnt%2Fr%3Fmid%3D858466%26lid%3D1%26l-id%3Dmoney02_02_01&D2=3.260.48889.760895.22379632&C3=86497fb7d225d3dd7c15bb00ec9f8deae2e2ad17\">ŷڷ</a></p>\n<p class=\"comuright\">˾硪108,200ݥ</p>\n</div>\n<div class=\"inner05\">\n<ul class=\"point02\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fc.p-advg.com%2FadpCnt%2Fr%3Fmid%3D840088%26lid%3D19%26l-id%3Dtop_money_sec_d_02&D2=3.8611.68708.791216.26930549&C3=daca0bfd34a4296e9a1c96f7821930ba0f97edbe\">1,000ߤνΩ</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fc.p-advg.com%2FadpCnt%2Fr%3Fmid%3D793937%26lid%3D38%26l-id%3Dtop_money_sec_d_03&D2=3.8611.68708.791216.27009611&C3=5396c3d0a96222c496073156b68c2a928e89bcd9\">ŷFXإץåɤåȡ</a></li>\n</ul>\n</div>\n\n<!-- /ŷڷ default -->\n\r\n\r\n<div class=\"inner04\">\n<p class=\"comulef02\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten-bank.co.jp%2Fcampaign%2Frakuten%2Fic%2F&D2=3.8611.68708.791217.26403245&C3=3b33f7ce9bab9e7afa9cf968fbd75a7f4733baaf\">ŷ</a></p>\n<p class=\"comuright\">٤˥ݥȤ</p>\n</div>\n<div class=\"inner05\">\n<ul class=\"point02\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten-bank.co.jp%2Fcampaign%2Frakuten%2Fic%2Findex.html&D2=3.8611.68708.791217.26403246&C3=e36928791f11a8b4d3671448d375f4aff3569408\">¤ľܺ3,000ߥץ쥼ȡ</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fr.ca-mpr.jp%2Fs%2F43%2F%3Fi4a%3D150395%26l-id%3Dtop_money_bank_d_03&D2=3.8611.68708.791217.26999364&C3=c8f3abe51167153aa0677e7d926c1dee0eae1bd6\">ڴޤȤǽɥ</a></li>\n</ul>\n</div>\n\r\n\r\n<div class=\"inner04\">\n<p class=\"comulef02\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fhoken.rakuten.co.jp%2F%3Fl-id%3Dr-hoken-ric090301tx&D2=3.8611.79779.791214.26236276&C3=fc6cb35750c2553a7acfab299d1ada9f4debf434\">ŷݸ</a></p>\n<p class=\"comuright\">ŷݸ5ǯ</p>\n</div>\n<div class=\"inner05\">\n<ul class=\"point02\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F12%2F5197%2F233609_285098%2F&D2=3.8611.68708.791218.26519427&C3=d7ccb904a38f2ea436993f2d97fde2a02925ccc0\">׷ݸŷݸ</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Finsurance.rakuten.co.jp%2Fcar%2F%3Fscid%3Dwi_ich_est_top_c001&D2=3.8611.68708.791218.27002637&C3=0c83be763946ce48e8c9272be3d65d8c95dee5f6\">1,111ݥȥץ쥼ȡưݸ</a></li>\n</ul>\n</div>\n<!-- /ŷݸ default -->\n\r\n\r\n<div class=\"inner04\">\n<p class=\"comulef02\"><a href=\"https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fpoint.rakuten.co.jp%2FGuidance%2FGuidanceCash%2F&D2=3.8611.68708.791219.26402590&C3=cea34024673beaf53d25f886fae078eba5a25665\">å</a></p>\n<p class=\"comuright\">եȤ䴹ǤŻҥޥ͡</p>\n</div>\n<div class=\"inner05\">\n<ul class=\"point02\">\n<li><a href=\"https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fpoint.rakuten.co.jp%2FGuidance%2FGuidanceCash%2F&D2=3.8611.68708.791219.26402591&C3=cea34024673beaf53d25f886fae078eba5a25665\">ŷɤʤ̵</a></li>\n</ul>\n</div>\r\n<!-- ŷEdy -->\n<div class=\"inner04\">\n<p class=\"comulef02\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fpoint.rakuten.co.jp%2Fappli%2F&D2=3.8611.68708.798697.26384418&C3=4cad66cf24f632d178fbee72f4e3ed704a184444\">ŷEdy</a></p>\n<p class=\"comuright\">200ߤˤĤ1ݥȤޤ롪</p>\n</div>\n<div class=\"inner05\">\n<ul class=\"point02\" style=\"background: none;\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F1022%2F3842%2F217519_263097%2F&D2=3.8611.68708.798697.26381306&C3=06673c01404078d6f49058923e6c5b883d03be82\">ŷEdyǥӥ塼100ݥȡ</a></li>\n</ul>\n</div>\n<!-- /ŷEdy -->\n\r\n<!--/entrybox03--></div>\r\n<!--/entryColumn02--></div>\r\n<!--/sideContents03--></div>\r\n\r\n\n\n\n\n<div class=\"sideContents03\">\n<div class=\"entryColumn02\">\n<div class=\"entrybox04\">\n<h2 class=\"ttlTravel\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2F%3Fcid%3Dichiba_00004%2F%3Fl-id%3Dtravel_top_02_01&D2=3.260.48889.760895.20265405&C3=d85ac490adbd86223a443b9dbd833e9f44914a79\">ȥ٥</a><a class=\"lead\" href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2F%3Fcid%3Dichiba_00004%2F%3Fl-id%3Dtravel_top_02_01&D2=3.260.48889.760895.20265405&C3=d85ac490adbd86223a443b9dbd833e9f44914a79\">߷פѿͿ 1</a></h2>\n<div class=\"inner03\">\n<h4><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2F%3Fcid%3Dichiba_00005%2F%3Fl-id%3Dtravel_top_02_02&D2=3.260.48889.760895.20265406&C3=042bd8fda95760efbc16f5e922172dfb506f3ae1\">ܺιԥ</a></h4>\n<ul class=\"point03\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2Fcoupon%2F%3Fcid%3Dwi_trv_ichiba_CU-2118_tprt&D2=3.8611.68708.790092.27104441&C3=942038be8915cb7ab1aaee9d884a34b5490eb3a5\">ڥݥץ쥼ȡ۹Ⱦ۰ʲ</a></li>\n</ul>\n</div>\n<!--/entrybox03--></div>\n<!--/entryColumn02--></div>\n<!--/sideContents03--></div>\r\n\n\n<div class=\"sideContents03\">\n<div class=\"entryColumn02\">\n<div class=\"entrybox05\">\n<h2 class=\"ttlBooks\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2F%3Fl-id%3Dbooks_top_02_01&D2=3.8611.68708.790093.26438257&C3=896bc2a0e1c4a49bd1f9286743cf170646f3d8ed\">֥å</a><a class=\"lead\" href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2F%3Fl-id%3Dbooks_top_02_01&D2=3.8611.68708.790093.26438257&C3=896bc2a0e1c4a49bd1f9286743cf170646f3d8ed\">̵DVDŷǰͤĩ</a></h2>\n<div class=\"inner03\">\n<h4><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2F%3Fl-id%3Dbooks_top_02_01&D2=3.8611.68708.790093.26438257&C3=896bc2a0e1c4a49bd1f9286743cf170646f3d8ed\">ܡCDDVDPCեȤʤ ̵</a></h4>\n<ul class=\"point03\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2Fevent%2Fpointup-campaign%2Findex-20120816-max20-ejt.html%3Fscid%3Dwi_ich_cmp_all_non_ichibarighttext&D2=3.8611.68708.790093.27120593&C3=ec28a192d192487b9f865fda38bd7504f1de074e\">ȥ꡼ǥݥȺ20ܡ̵</a></li>\n</ul>\n</div>\n<!--/entrybox03--></div>\n<!--/entryColumn02--></div>\n<!--/sideContents03--></div>\r\n<div class=\"sideContents03\">\n<div class=\"entryColumn02\">\n<div class=\"entrybox06\">\n<h2 class=\"ttlPortal\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.infoseek.co.jp%2F&D2=3.8611.68708.790094.26403043&C3=d0d0fa523ff68654f700d3dbbea78d30725ca923\">ݡ</a><a class=\"lead\" href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.infoseek.co.jp%2F&D2=3.8611.68708.790094.26403044&C3=d0d0fa523ff68654f700d3dbbea78d30725ca923\">ȤäơݥȤ褦</a></h2>\n<div class=\"inner03\">\n<h4><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.infoseek.co.jp%2F&D2=3.8611.68708.790094.26403045&C3=d0d0fa523ff68654f700d3dbbea78d30725ca923\">ե-˥塼</a></h4>\n<ul class=\"point03\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fpoint.infoseek.co.jp%2Ftie-up%2Fpointmail%2Fall%2F%3Fs%3D201003%26l-id%3Dtop_portal04&D2=3.8611.68708.790094.26226429&C3=a30234ae14d83c2cfda93b260719e4922c759120\">ŷѡݥդΥ᡼</a></li>\n</ul>\n</div>\n<!--/entrybox03--></div>\n<!--/entryColumn02--></div>\n<!--/sideContents03--></div>\r\n<div class=\"sideContents03\">\n<div class=\"entryColumn02\">\n<div class=\"entrybox08\">\n<h2 class=\"ttlKobo\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F582%2F226%2F245033_301161%2F&D2=3.8611.68708.806031.27014571&C3=91ad65f444047454aced210865fbed30e39c9ba0\">Żҥ֥å</a><a class=\"lead\" href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F582%2F226%2F245033_301161%2F&D2=3.8611.68708.806031.27014571&C3=91ad65f444047454aced210865fbed30e39c9ba0\">ɽ˳̿򡣿ڤ</a></h2>\n<div class=\"inner03\">\n<h4><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F582%2F226%2F245033_301161%2F&D2=3.8611.68708.806031.27014571&C3=91ad65f444047454aced210865fbed30e39c9ba0\">Żҥ֥å꡼kobo Touch ɾ桪</a></h4>\n<ul class=\"point03\">\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F779%2F226%2F245033_301161%2F&D2=3.8611.68708.806031.27070134&C3=e8f2a0eaa62e8fa1255f42e8618866b9d2cbb9c6\">240ʾ塪ܸҤ³о</a></li>\n</ul>\n</div>\n<!--/entrybox08--></div>\n<!--/entryColumn02--></div>\n<!--/sideContents03--></div>\r\n<!-- special banner -->\r\n<div id=\"sc_lidAdd_special_banner\" class=\"rightcolbtm\">\r\n\r\n<!-- Edy banner -->\r\n\n<p><a href=\"http://ad2.trafficgate.net/t/r/1466/3842/217519_263097/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/edy/120606-02_edy_300x60.gif\" width=\"300\" height=\"60\" alt=\"Żҥޥ͡ȡäȳڤ\"></a></p>\n<!-- /Edy banner -->\r\n\r\n<!-- ranking banner -->\r\n\n\n\n<p><a sc_linkName=\"rankingbnr01\" href=\"http://event.rakuten.co.jp/ent/suppin/takenakanaoto/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/ranking/magazine/201208/20120808_suppin_takenakanaoto_300x60.jpg\" width=\"300\" height=\"60\" alt=\"ǽͤΤäԤ󥷥åԥ\"></a></p>\n\n\n\n\r\n<!-- /ranking banner -->\r\n\r\n<!-- disney banner -->\r\n\n<p><a sc_linkName=\"disney01\" href=\"http://event.rakuten.co.jp/disney/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/disney/disney_school_300x60.jpg\" width=\"300\" height=\"60\" alt=\"Disneyzoneۿشý\"></a></p>\n<!-- /disney banner -->\r\n\r\n<!-- largemarchant banner -->\r\n\n\n<p><a sc_linkname=\"lmbnr01\" href=\"http://event.rakuten.co.jp/newshop/topics/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/thumb/200309/prbanner/largemerchant_300x60.jpg\" width=\"300\" height=\"60\" alt=\"\"></a></p>\n<!-- /largemarchant banner -->\r\n\r\n<!-- pr banner -->\r\n\n<!--\n-->\n\n\r\n<!-- /pr banner -->\r\n\r\n<!-- prize banner -->\r\n\n\n<p><a sc_linkName=\"toto01\" href=\"http://event.rakuten.co.jp/toto/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/200809/20120719_toto_300x60.gif\" width=\"300\" height=\"60\" alt=\"ָꡪϤƤBIG/totoǥݥȺ10ܥڡ\"></a></p>\n<!-- /prize banner -->\r\n\r\n<!-- twitter banner -->\r\n\n<p><a sc_linkName=\"rakuten24_01\" href=\"http://24.rakuten.co.jp/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/200809/banner_24.jpg\" width=\"300\" height=\"60\" alt=\"餷ο͵ƥޤȤƤϤŷ24\"></a></p>\n<!-- /twitter banner -->\r\n\r\n<!-- charity banner -->\r\n\n<p><a sc_linkName=\"prbnr10\" href=\"http://event.rakuten.co.jp/fashion/rba/\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/201205/20120614_bnr_300x60.jpg\" width=\"300\" height=\"60\" alt=\"Rakuten Brand Avenue\"></a></p>\n\n\n\r\n<!-- /charity banner -->\r\n\r\n<!-- luckykuji banner -->\r\n\n<p><a sc_linkName=\"luckykuji01\" href=\"https://kuji.rakuten.co.jp/5853b94\"><img src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/200809/banner_kuji_20101217-01.gif\" width=\"300\" height=\"103\" alt=\"NEWŷåܿäκ󥹡\"></a></p>\n<!-- /luckykuji banner -->\r\n\r\n<div class=\"sideContents03\">\n<div class=\"entryColumn02\">\n<div class=\"entrybox07\">\n<dl class=\"inner03\">\n<dt><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fec%2F%3Fcamp%3D701100000004kPw%26scid%3Dwi_ich_center&D2=3.8611.68708.790095.26488071&C3=970034d60e7660b9f4e95e156de4989e631ebd3e\">ŷԾˤŹ򳫤ޤ󤫡</a></dt>\n<dd><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fec%2F%3Fcamp%3D701100000004kPw%26scid%3Dwi_ich_center&D2=3.8611.68708.790095.26488071&C3=970034d60e7660b9f4e95e156de4989e631ebd3e\">ͥåȥå׽ŹΤ</a></dd>\n</dl>\n</div>\n</div>\n</div>\n\r\n\r\n</div><!-- /special banner -->\r\n<script type=\"text/javascript\">\r\n<!--\r\nrakutenIchibaTop.lidAdd(\"#sc_lidAdd_special_banner\")\r\n//-->\r\n</script>\r\n\r\n</div><!--/riServiceColumn-->\r\n</div><!--/riMainArea--> \r\n</div><!--/riMainContents-->\r\n\r\n</div><!--/riContainer-->\r\n\r\n<div id=\"ritFooterArea\">\r\n\r\n<div id=\"ritSpecialContents\">\n<h2 class=\"ritfootTtl\">ŷ롼פΥӥ</h2>\n<div class=\"ritFootBox ritFootBoxBg\">\n<ul class=\"ritSpCntHead\">\n<li><a href=\"http://auction.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fauction.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special43&D2=3.8611.68708.790102.25753016&C3=00fcc091ccfd075d15c490c9b085c937edaadf9f'\">ŷ</a></li>\n<li><a href=\"http://toolbar.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftoolbar.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special39&D2=3.8611.68708.790102.25753020&C3=834d5ee148d865b9a4141d7b34b7c5272a80fee5'\">ŷġС</a></li>\n<li><a href=\"http://books.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbooks.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special40&D2=3.8611.68708.790102.25753022&C3=300bfe08011a1bde100266b58cddcebbc5066780'\">ŷ֥å</a></li>\n<li><a href=\"http://kobo.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fkobo.rakuten.co.jp%2F&D2=3.8611.68708.790102.27058266&C3=a0cf3934642fd18a7b80a122429ffcbcd07e474b'\">Żҥ֥åֳŷkobo</a></li>\n<li><a href=\"http://ad2.trafficgate.net/t/r/5126/1441/99636_99636/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F5126%2F1441%2F99636_99636%2F&D2=3.8611.68708.790102.25753018&C3=0efdcfeb2983031cc4ea7c537f0df1ea576bb310'\">ŷ</a></li>\n<li><a href=\"http://www.rakuten-bank.co.jp/campaign/rakuten/ic/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten-bank.co.jp%2Fcampaign%2Frakuten%2Fic%2F%3Fl-id%3Dtop_normal_special44&D2=3.8611.68708.790102.25753019&C3=614a6d08baefd1665fffc6cf64478e81bcbde1e6'\">ŷ</a></li>\n<li><a href=\"https://www.rakuten-sec.co.jp/ITS/rakuten_g/?scid=R-ICHIBA_top_up_soken0001_txt\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fc.p-advg.com%2FadpCnt%2Fr%3Fmid%3D899854%2526lid%3D1&D2=3.8611.68708.790102.25753017&C3=704e23133783b8c613a130b043c3db5af0f5ca1f'\">ŷڷ</a></li>\n<li><a href=\"http://travel.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Ftravel.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special41&D2=3.8611.68708.790102.25753021&C3=5c897bbe126eddfa6a583d22e433c5782e6cbe4f'\">ŷȥ٥</a></li>\n<li><a href=\"http://www.infoseek.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.infoseek.co.jp%2F%3Fl-id%3Dtop_normal_special42&D2=3.8611.68708.790102.25753023&C3=473e46bbe487a42a10294de80476fa9bfb7f7e60'\">ݡInfoseek</a></li>\n</ul>\n</div> \n<div class=\"ritFootBox\"> \n<div class=\"ritSpCntMainCtg\">\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\">㤤ʪݥ</dt>\n<dd>\n<ul>\n<li><a href=\"http://product.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fproduct.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special05&amp;D2=3.8611.68708.790102.25753025&amp;C3=5b85faa005832905e264e0d5386d1f0597449fcf'\">ŷץ</a></li>\n<li><a href=\"http://point.infoseek.co.jp/tie-up/pointmail/all/?s=2080\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fpoint.infoseek.co.jp%2Ftie-up%2Fpointmail%2Fall%2F%3Fs%3D2080%26l-id%3Dtop_normal_special36&amp;D2=3.8611.68708.790102.25753062&amp;C3=a425752f72c6a6d5f5bb6df6cd289ec69005e319'\">᡼deݥ</a></li>\n<li><a href=\"http://event.rakuten.co.jp/ent/magazine/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fent%2Fmagazine%2F%3Fl-id%3Dtop_normal_special03&amp;D2=3.8611.68708.790102.25753044&amp;C3=10852aa45df67e7d2dec96130ec99f9e2b1b12c9'\">ŷ߿͵</a></li>\n<li><a href=\"http://event.rakuten.co.jp/rakumaga/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Frakumaga%2F%3Fl-id%3Dtop_normal_special02&amp;D2=3.8611.68708.790102.25753034&amp;C3=2586b0708365c72e03c4ab5c58eb411800053c95'\">ŷMAGAZINE</a></li>\n<li><a href=\"https://selectgift.rakuten.co.jp/\" onclick=\"this.href='https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fselectgift.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special13&amp;D2=3.8611.68708.790102.25753056&amp;C3=b664410f3d868e41ba3aeec122fcb4d6efe5ed2f'\">ŷ쥯ȥե</a></li>\n<li><a href=\"https://kuji.rakuten.co.jp/5853b94/\" onclick=\"this.href='https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fkuji.rakuten.co.jp%2F5853b94%2F%3Fl-id%3Dtop_normal_special08&amp;D2=3.8611.68708.790102.25753055&amp;C3=1e547c7f0b9268a616df8c430546c2573dba419e'\">ŷå</a></li>\n<li><a href=\"http://gift.rakuten.co.jp/sendlist/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fgift.rakuten.co.jp%2Fsendlist%2F%3Fl-id%3Dtop_normal_special28&amp;D2=3.8611.68708.790102.25753061&amp;C3=7124d537316c2f356e0689e1bf61d8c738297978'\">ꥹȴ</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\">ޥ͡</dt>\n<dd>\n<ul>\n<li><a href=\"http://ad2.trafficgate.net/t/r/266/3842/217519_263097/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fad2.trafficgate.net%2Ft%2Fr%2F266%2F3842%2F217519_263097%2F&amp;D2=3.8611.68708.790102.25753057&amp;C3=3762c925152992ed00ba0d2bd0f1ad80b5cdde2f'\">ŷEdyץ</a></li>\n<li><a href=\"http://hoken.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fhoken.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special47&amp;D2=3.8611.68708.790102.25753030&amp;C3=80cdcfb23e43192aaa1ab4f1db36533ffaafb464'\">ݸ</a></li>\n<li><a href=\"http://insurance.rakuten.co.jp/car/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Finsurance.rakuten.co.jp%2Fcar%2F%3Fscid%3Dwi_ich_est_spc_c001&D2=3.8611.68708.790102.26999531&C3=02df0463bcd6bcccd5d848a563e62b30893aeaf4'\">ŷưݸ縫Ѥ</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\">ιԡ󥿥</dt>\n<dd>\n<ul>\n<li><a href=\"http://gora.golf.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fgora.golf.rakuten.co.jp%2F&amp;D2=3.8611.68708.790102.25818644&amp;C3=6c253734cdb25ead0e06095ef9b2fb1fd9585ffe'\">ŷGORA</a></li>\n<li><a href=\"http://rental.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Frental.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special38&amp;D2=3.8611.68708.790102.25753031&amp;C3=a077b067f053c576066f322726dd2414dd4a45b8'\">ŷ󥿥</a></li>\n<li><a href=\"http://dl.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdl.rakuten.co.jp%2F&D2=3.8611.68708.790102.27000077&C3=d38e599d9ac6979fdb63d7a4e4140c7b55964f80'\">ŷ</a></li>\n<li><a href=\"http://keiba.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fkeiba.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special07&amp;D2=3.8611.68708.790102.25753045&amp;C3=07cf38cdffa8cc8883d1d94d3cc5cb614f9ed7b6'\">ŷ</a></li>\n<li><a href=\"http://uranai.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Furanai.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special10&amp;D2=3.8611.68708.790102.25753026&amp;C3=d6ce013c2004e708a68ae1c4f941e8af7e1c1380'\">ŷꤤ</a></li>\n<li><a href=\"http://event.rakuten.co.jp/toto/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Ftoto%2F%3Fl-id%3Dtop_normal_special50&amp;D2=3.8611.68708.790102.26475442&amp;C3=dbd28b9d22269b4fe7ca67332eb74908f1965d21'\">ŷtoto</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\">餷</dt>\n<dd>\n<ul>\n<li><a href=\"http://delivery.rakuten.co.jp/index.php\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdelivery.rakuten.co.jp%2Findex.php%3Fl-id%3Dtop_normal_special04&amp;D2=3.8611.68708.790102.25753054&amp;C3=c08cba0cecdad8b9b34a2b46c02e4496170b9f06'\">ŷǥХ꡼</a></li>\n<li><a href=\"http://recipe.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Frecipe.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special37&amp;D2=3.8611.68708.790102.25753024&amp;C3=1a737c498bb1011bd9f6b7e587ebe7c26de5b189'\">ŷ쥷</a></li>\n<li><a href=\"http://www.nikki.ne.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.nikki.ne.jp%2F%3Fl-id%3Dtop_normal_special22&amp;D2=3.8611.68708.790102.25753028&amp;C3=1a87fec1b0471e9d303d729f50dcfbc95fcc6648'\">ߤʤνư</a></li>\n<li><a href=\"http://realestate.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Frealestate.rakuten.co.jp%2F%3Fscid%3Drg_ichibatop2_top&amp;D2=3.8611.68708.790102.26290368&amp;C3=9526a133ff8aed93aab43ba5174c9fda1d182cc5'\">ư</a></li>\n<li><a href=\"http://onet.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fonet.rakuten.co.jp%2F&amp;D2=3.8611.68708.790102.25990136&amp;C3=bff60feb5a437e3de41a5211e240e68da9ea1d77'\">뺧̽</a></li>\n<li><a href=\"http://wedding.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwedding.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special26&amp;D2=3.8611.68708.790102.25753060&amp;C3=5f36e236b2d949924c13cddc00350b6eb1839cb2'\">ŷǥ</a></li>\n<li><a href=\"http://shashinkan.rakuten.co.jp/?scid=135\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fshashinkan.rakuten.co.jp%2F%3Fscid%3D135%26l-id%3Dtop_normal_special20&amp;D2=3.8611.68708.790102.25753048&amp;C3=8a4896ff71fb051eab655f3bfe50f475e7163cc2'\">ŷ̿</a></li>\n<li><a href=\"https://selectgift.rakuten.co.jp/top/nui?at=2\" onclick=\"this.href='https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Fselectgift.rakuten.co.jp%2Ftop%2Fnui%3Fat%3D2%26l-id%3Dtop_normal_special12&amp;D2=3.8611.68708.790102.25753046&amp;C3=57a2ff4078d9eeac6925eb04329f37c4a40e0780'\">̤</a></li>\n<li><a href=\"http://greeting.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fgreeting.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special11&amp;D2=3.8611.68708.790102.25753036&amp;C3=18f835053340eb012f1face20f874362692c7c48'\">ŷ꡼ƥ</a></li>\n<li><a href=\"http://broadband.rakuten.co.jp/r/18/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbroadband.rakuten.co.jp%2Fr%2F18%2F%3Fl-id%3Dtop_normal_special19&amp;D2=3.8611.68708.790102.25753038&amp;C3=5ac96240c5e321f6219f64345c769bb5660d05e7'\">ŷ֥ɥХ</a></li>\n<li><a href=\"http://douga.rakuten.ne.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fdouga.rakuten.ne.jp%2F%3Fl-id%3Dtop_normal_special31&amp;D2=3.8611.68708.790102.25753051&amp;C3=e57ae6cde6395a9d2e89b6b75fb4c118bf71ba35'\">ŷưͥ</a></li>\n<li><a href=\"http://webservice.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwebservice.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special16&amp;D2=3.8611.68708.790102.25753047&amp;C3=8c1a5f3628da46acec678439ed8ff601a0792cf7'\">ŷ֥ӥ</a></li>\n<li><a href=\"http://calendar.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fcalendar.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special18&amp;D2=3.8611.68708.790102.25753027&amp;C3=f2d033e867316b287e9d349101610ace13b6b827'\">ŷ</a></li>\n<li><a href=\"http://solar.rakuten.co.jp\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fsolar.rakuten.co.jp%2F&D2=3.8611.68708.790102.27000076&C3=0c09e4f762a7ecfb3272f19cbe8718a45eaae0eb'\">ŷ顼</a></li>\n</ul>\n</dd>\n</dl>\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\">ӥͥ</dt>\n<dd>\n<ul>\n<li><a href=\"http://business.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fbusiness.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special49&amp;D2=3.8611.68708.790102.25753049&amp;C3=89e397d9220f306c979c287f3b022ca1ff3f04a2'\">ӥͥ</a></li>\n<li><a href=\"http://b2b.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fb2b.rakuten.co.jp%2F&D2=3.8611.68708.790102.26743952&C3=85ce0201b94c44c7acd32d472f0c6a2df4b8c1d3'\"></a></li>\n<li><a href=\"http://career.rakuten.co.jp/?scid=wi_ich_top\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fcareer.rakuten.co.jp%2F%3Fscid%3Dwi_ich_top%26l-id%3Dtop_normal_special24&amp;D2=3.8611.68708.790102.25753039&amp;C3=cff0808910039880f6e27e808ff8081c83bcdbdb'\">ŷŻҲ</a></li>\n<li><a href=\"http://research.rakuten.co.jp/campaign/campaign00175.html\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fresearch.rakuten.co.jp%2Fcampaign%2Fcampaign00175.html%3Fl-id%3Dtop_normal_special30&amp;D2=3.8611.68708.790102.25753042&amp;C3=6c6e7bc68aa5e378597d8fa2ca8befc9c95c2e7a'\">̵˥Ͽʳŷꥵ</a></li>\n<li><a href=\"http://p-store.rakuten.co.jp/event/pointget/?scid=wi_ich_top\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fp-store.rakuten.co.jp%2Fevent%2Fpointget%2F%3Fscid%3Dwi_ich_top%26l-id%3Dtop_normal_special34&amp;D2=3.8611.68708.790102.25753052&amp;C3=cfae25e72254e923f1aabf167d09392665cee371'\">ŷݥȲŹ</a></li>\n<li><a href=\"http://checkout.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fcheckout.rakuten.co.jp%2F%3Fl-id%3Dtop_normal_special29&amp;D2=3.8611.68708.790102.25753032&amp;C3=e1c5afb8effaed6b678c56dd25b3ef0c19cb7b8b'\">ŷ󤷤ʧӥ</a></li>\n<li><a href=\"http://yupack.auction.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fyupack.auction.rakuten.co.jp%2F&D2=3.8611.68708.790102.27071232&C3=acd1f140344468d29a314d348b5d9347162255ad'\">椦ѥå</a></li>\n</ul>\n</dd>\n</dl>\n<p class=\"ritSpCntGpSvc\"><a href=\"http://www.rakuten.co.jp/sitemap/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fsitemap%2F%3Fl-id%3Dtop_normal_special35&amp;D2=3.8611.68708.790102.25753033&amp;C3=5e69839eb509f286cd8fd353fba0215adaccec27'\">[&nbsp;ŷ롼 ӥ&gt;&gt;&nbsp;]</a></p>\n</div><!--/ritSpCntMainCtg-->\n\n</div><!--/footBox-->\n</div><!--/riSpecialContents-->\r\n<div id=\"ritGuide\">\n<h2 class=\"ritfootTtl\"></h2>\n<div class=\"ritFootBox\">\n<div class=\"ritFootLfInr\">\n<ul>\n<li><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.co.jp/ri/sitemap.html\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fri%2Fsitemap.html%3Fl-id%3Dtop_guide02&D2=3.8611.68708.790103.25234352&C3=0c38d7562cbaa1091dddd9468e82aea4de99a10b'\"></a></li>\n<li><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.co.jp/help/whatsnew/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fhelp%2Fwhatsnew%2F%3Fl-id%3Dtop_guide03&D2=3.8611.68708.790103.25234353&C3=7b6c4212498b378d1a070d7d94300fc59e077f35'\">ŷΤΤ餻</a></li>\n<li><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://event.rakuten.co.jp/beginner/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fbeginner%2F%3Fl-id%3Dtop_guide04&D2=3.8611.68708.790103.25234354&C3=1f183e4eeaabbc138718a27ce82e83df219922ca'\">Ƥ</a></li>\n</ul>\n<dl class=\"riGbr\">\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://ichiba.faq.rakuten.co.jp/app/home\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fichiba.faq.rakuten.co.jp%2Fapp%2Fhome&D2=3.8611.68708.790103.25233964&C3=751283dae35261bb37d40cf2a35f24ed45065d72'\">إ</a></dt>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"https://order.my.rakuten.co.jp/?page=search\" onclick=\"this.href='https://rd.rakuten.co.jp/s/?R2=https%3A%2F%2Forder.my.rakuten.co.jp%2F%3Fpage%3Dsearch%26l-id%3Dtop_guide06&D2=3.8611.68708.790103.25234355&C3=0f19b70f76be14641ad01fe940c3656149fafe1b'\">ʸƳǧ</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.co.jp/myrakuten/help/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fmyrakuten%2Fhelp%2F%3Fl-id%3Dtop_guide07&D2=3.8611.68708.790103.25234356&C3=55090103e1cd6669e70753b8577560b6e7c24b3f'\">ŷmy RakutenˤȤϡ</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://ichiba.faq.rakuten.co.jp/app/home\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fichiba.faq.rakuten.co.jp%2Fapp%2Fhome&D2=3.8611.68708.790103.25233967&C3=751283dae35261bb37d40cf2a35f24ed45065d72'\">褯</a></dd>\n</dl>\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://corp.rakuten.co.jp/csr/heartproject/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fcorp.rakuten.co.jp%2Fcsr%2Fheartproject%2F%3Fl-id%3Dtop_guide24&D2=3.8611.68708.790103.26738246&C3=8c6a80ba5a8d9726a756a7adb024c213be96b2f9'\">ٱֻפ̤ء</a></dt>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://event.rakuten.co.jp/area/info/tohoku/report/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Farea%2Finfo%2Ftohoku%2Freport%2F%3Fl-id%3Dtop_guide25&D2=3.8611.68708.790103.26738247&C3=4a2923955fd7ff6e54ad6573671de55370633fda'\">ŷԾٱ</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://corp.rakuten.co.jp/csr/contribution/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fcorp.rakuten.co.jp%2Fcsr%2Fcontribution%2F%3Fl-id%3Dtop_guide26&D2=3.8611.68708.790103.26738248&C3=9f008c8d924975efefc049ebab0f669ce5510f2b'\">̺һٱդˤĤ</a></dd>\n</dl>\n</div>\n<div class=\"ritFootCntInr\">\n<dl class=\"riGbr\">\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://event.rakuten.co.jp/borderless/index.html\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fborderless%2Findex.html%3Fl-id%3Dtop_guide09&D2=3.8611.68708.790103.25234357&C3=8eb1046c5c3dd27dbce488709c09abc1ae003acb'\"></a></dt>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://global.rakuten.com/en/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fglobal.rakuten.com%2Fen%2F&D2=3.8611.68708.790103.25505517&C3=e0948bb3e2555ebca93f6299cb425ea691f637c2'\">English</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://global.rakuten.com/zh-tw/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fglobal.rakuten.com%2Fzh-tw%2F&D2=3.8611.68708.790103.25505518&C3=6e39fd26663a6c858409043aea139e3df3c5ec6c'\">Traditional Chinese</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://global.rakuten.com/zh-cn/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fglobal.rakuten.com%2Fzh-cn%2F&D2=3.8611.68708.790103.25505519&C3=1823472cd8bb00444e06fa37b2930d51760a0fb5'\">Simplified Chinese</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://global.rakuten.com/ko/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fglobal.rakuten.com%2Fko%2F&D2=3.8611.68708.790103.25505520&C3=78959c1deb39e4ebf226d0230793d3c83ca51611'\">Korean</a></dd>\n</dl>\n<dl class=\"riGbr\">\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://import.buy.com/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fimport.buy.com%2F%3Fl-id%3Dtop_guide14&D2=3.8611.68708.790103.25234362&C3=cb054bf4418c4e39367bc4b7b7542fb7237a2158'\">ꥫ쥯 Ŀ͢</a></dt>\n</dl>\n<dl>\n<dt><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconArrowR\" width=\"7\" height=\"10\"><a href=\"http://global.rakuten.com/group/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fglobal.rakuten.com%2Fgroup%2F%3Fl-id%3Dtop_guide15&D2=3.8611.68708.790103.25234363&C3=b8d7a91b53e246a0163a10f8ce407101f449b0e0'\">ŷ롼 ӥ</a></dt>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.com.tw/\">ѳŷԾ</a>/ <a href=\"http://otoriyose.shop.rakuten.tw/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fotoriyose.shop.rakuten.tw%2F%3Fl-id%3Dtop_guide18&D2=3.8611.68708.790103.25234365&C3=3d155c44310bf12f394b7a6f5d70fb360ac35658'\">Ȥ褻 []</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.co.id/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.id%2F%3Fl-id%3Dtop_guide20&D2=3.8611.68708.790103.25423503&C3=95e198549e8060467b67f01be36126c27887aba8'\">Rakuten Belanja Online [ɥͥ]</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.tarad.com/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.tarad.com%2F&D2=3.8611.68708.790103.26096071&C3=78860214f3971aae45080523bb3672f015648be1'\">TARAD.com []</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.buy.com/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.buy.com%2F%3Fl-id%3Dtop_guide21&D2=3.8611.68708.790103.25423504&C3=446aa589d490509fc9543d2eaab77d8d324ad011'\">Buy.com []</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.priceminister.com/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.priceminister.com%2F%3Fl-id%3Dtop_guide22&D2=3.8611.68708.790103.25423505&C3=481bf33a3efdf21e80c7d8d9ff7f60146905ca9c'\">PriceMinister [ե]</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.com.br/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.com.br%2F%3Fl-id%3Dtop_guide23&D2=3.8611.68708.790103.26185814&C3=80086059f8c4b727fc88a47ffe6896c33eb3bd98'\">Rakuten Shopping Online [֥饸]</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.rakuten.de/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.de%2F&D2=3.8611.68708.790103.26567550&C3=9e4cfd3c69b62614a1e5c62fc7d6e10656bd1302'\">Rakuten.de Shopping [ɥ]</a></dd>\n<dd><img alt=\"\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon iconDot\" width=\"7\" height=\"10\"><a href=\"http://www.play.com/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.play.com%2F&D2=3.8611.68708.790103.26572778&C3=3a4c59049d9ab122a2f93c706229f85416749c66'\">Play.com [ꥹ]</a></dd>\n</dl>\n</div><!--/ritFootCntInr-->\n<div class=\"ritFootRtInr\">\n<p class=\"rakuMail\"><a href=\"http://emagazine.rakuten.co.jp/\" onclick=\"this.href='http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Femagazine.rakuten.co.jp%2F%3Fl-id%3Dtop_guide01&D2=3.8611.68708.790103.25234367&C3=0d340dd0c0b1699128a0afd21062fc50f067a0ec'\">ŷΤ㤤̵ޥ</a></p>\n<div id=\"riMail\"><form method=\"post\" name=\"news\" action=\"http://emagazine.rakuten.co.jp/ns\" onSubmit=\"return subm()\">\n<input type=\"hidden\" name=\"news0\" value=1>\n<input type=\"text\" name=\"email\" value=\"᡼륢ɥ쥹ϡ\" onFocus=\"clearEmail()\" style=\"width:200px;\">\n<input type=\"submit\" value=\"\">\n</form></div>\n<div id=\"riAttention\">\n<dl>\n<dt><a href=\"http://www.rakuten.co.jp/doc/info/rule/service.html\">ŷΥӥѾΤդϤ</a></dt>\n<dd>ʤˤĤƤΤ碌ϡƥåפޤǤꤤޤ</dd>\n<dd>ҤθĿ;μ갷˴ؤƤ<a href=\"http://privacy.rakuten.co.jp/\">ָĿ;ݸˡ</a></dd>\n</dl>\n<p><a href=\"http://corp.rakuten.co.jp/security/\">ŷˤ󥻥ƥμȤߤˤĤ</a><br>\nŷԾ<a href=\"http://www.rakuten.co.jp/ssl.html\">SSL</a>бƤΤǡ쥸åȥֹϰŹ沽ޤ</p>\n</div>\n</div><!-- /.ritFootRtInr -->\n</div><!-- /.ritFootBox -->\n</div><!-- /#ritGuide -->\r\n<div id=\"ritFooter\">\r\n\r\n<!--\n-->\r\n<!-- pc_information -->\r\n<!-- /pc_information -->\r\n\r\n<!-- ƥʥΤ餻 -->\r\n<div id=\"topInfoArea\">\n<a href=\"http://www.rakuten.co.jp/aboutus/am/notice.html\">08/19()ƥʥ󥹼»ܤΤΤ餻</a>\n</div><!-- /ƥʥΤ餻 -->\r\n\r\n<div id=\"ritPrArea\">\r\n<span class=\"ritClogo\"><img alt=\"ŷ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon logo\" width=\"147\" height=\"60\"></span>\r\n<span><a href=\"http://rd.rakuten.co.jp/cow/?R2=http%3A%2F%2Fevent.rakuten.co.jp%2Fanshin%2F&D2=3.260.1590.1851.7963781\"><img alt=\"ŷ󤷤󥷥åԥ󥰥ӥ\" src=\"http://a.ichiba.jp.rakuten-static.com/com/img/home/beta/201105/t.gif\" class=\"spriteIcon peace\" width=\"121\" height=\"44\" ></a></span>\r\n</div><!-- /#ritPrArea -->\r\n\r\n<ul id=\"ritInfo\">\n<li><a href=\"http://rd.rakuten.co.jp/cow/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Finfo%2F&D2=3.260.1590.1851.163080\">ҳ</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/cow/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Finfo%2Fir%2F&D2=3.260.1590.1851.163081\">ȸ</a>&nbsp;[<a href=\"http://rd.rakuten.co.jp/cow/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Finfo%2Fir%2Fenglish%2F&D2=3.260.1590.1851.579063\">Investor Relations</a>]</li>\n<li><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fcorp.rakuten.co.jp%2Fcsr%2F&D2=3.260.1590.1851.16913349&C3=597d6bb948f134a99466f6b2e15ac04e3678f537\">ҲŪǤ[CSR]</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/cow/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Finfo%2Frelease%2F&D2=3.260.1590.1851.163082\">ץ쥹롼</a></li>\n<li><a href=\"http://rd.rakuten.co.jp/cow/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Frecruit%2F&D2=3.260.1590.1851.163083\">Ѿ</a></li>\n<li class=\"ritInfoLt\"><a href=\"http://rd.rakuten.co.jp/s/?R2=http%3A%2F%2Fwww.rakuten.co.jp%2Fec%2F%3Fcamp%3D7011000000092T5%26scid%3Dwi_ich_footer&D2=3.8611.68708.790104.26488072&C3=f6a3051a84038afa17220b0c769f29d57b4fb40c\">ŹΤ</a></li>\n</ul><!-- /#ritInfo -->\r\n<div id=\"ritCountry\">\n<ul>\n<li><a href=\"http://www.rakuten.com.tw/\"></a></li>\n<li><a href=\"http://www.rakuten.co.id/\">ɥͥ</a></li>\n<li><a href=\"http://www.rakuten.com.br/\">֥饸</a></li>\n<li><a href=\"http://www.rakuten.de/\">ɥ</a></li>\n<li><a href=\"http://global.rakuten.com/en\"></a></li>\n<li class=\"ritCountryLt\"><a href=\"http://global.rakuten.com/group/\">ӥ</a></li>\n</ul>\n</div><!-- /#ritCountry -->\r\n<!-- ԡ饤 -->\r\n<div id=\"ritCopy\"><font size=-1> Copyright (c) 1997-2012 Rakuten, Inc. All Rights Reserved. </font></div>\r\n<!-- /ԡ饤 -->\r\n\r\n</div><!-- /#ritFooter -->\r\n\r\n<!-- uu_count -->\r\n<script language=\"JavaScript\">\r\n<!--\r\nvar D, C, R, U;\r\nD = new Date();\r\nC = D.getTime().toString(16);\r\nR = document.referrer;\r\nU = document.URL;\r\nif (R.indexOf('\"') > -1) R = '';\r\nif (U.indexOf('\"') > -1) U = '';\r\ndocument.write('<img src=\"http://rt.rakuten.co.jp/ichiba/?service_id=2&page_type=10001&dt=',C,'&rturl=',U,'&referer=',R,'\" width=1 height=1 alt=\"\">');\r\n// -->\r\n</script>\r\n<noscript>\r\n<img src=\"http://rt.rakuten.co.jp/ichiba/?service_id=2&page_type=10001\" width=1 height=1 alt=\"\">\r\n</noscript>\r\n\r\n\r\n<!-- /uu_count -->\r\n\r\n<!-- Omuniture sc_gender -->\r\n<script language=\"JavaScript\"> \n<!--\nvar sc_gender=\"d\";\n//-->\n</script>\n\r\n<!-- /Omuniture sc_gender -->\r\n\r\n<!-- Omuniture sc_evar73_card -->\r\n<script language=\"JavaScript\"> \n<!--\nvar sc_evar73_card=\"cardFumei\";\n//-->\n</script>\n\n\r\n<!-- /Omuniture sc_evar73_card -->\r\n\r\n<!-- Omuniture sc_evar73_rank -->\r\n<script language=\"JavaScript\"> \n<!--\nvar sc_evar73_rank=\"Regular\";\n//-->\n</script>\n\n\r\n<!-- /Omuniture sc_evar73_rank -->\r\n\r\n<!-- Omuniture sc_evar73_toolbar -->\r\n<script language=\"JavaScript\"> \n<!--\nvar sc_evar73_toolbar=\"toolbarNasi\";\n//-->\n</script>\n\n\r\n<!-- /Omuniture sc_evar73_toolbar -->\r\n\r\n<!-- Omuniture sc_user_segment -->\r\n<script language=\"JavaScript\">\r\n<!--\r\nvar prop10value=\"Rakuten Top\";\r\n//-->\r\n</script>\r\n<!-- /Omuniture user_segment -->\r\n\r\n<!-- SiteCatalyst -->\r\n<!-- SiteCatalyst code\nCopyright Omniture, Inc. More info available at\nhttp://www.omniture.com -->\n<script type=\"text/javascript\" src=\"http://image.www.rakuten.co.jp/com/js/omniture/s_code.js\"></script>\n<script type=\"text/javascript\"><!--\n/*\n * Plugin: userAgentManager v1.3(Costom)\n */\ns.userAgentManager2=function(){var s=this;s.sc_ua_ret=\"\";\ns.sc_ua=navigator.userAgent.toLowerCase();\nif(s.sc_ua.indexOf(\"ipod\")>-1){s.sc_ua_ret=\"iPhone\"}\nelse if(s.sc_ua.indexOf(\"ipad\")>-1){s.sc_ua_ret=\"iPad\"}\nelse if(s.sc_ua.indexOf(\"iphone\")>-1){s.sc_ua_ret=\"iPhone\"}\nelse if(s.sc_ua.indexOf(\"android\")>-1){\n\tif(s.sc_ua.indexOf(\"mobile\")>-1){\n\t\ts.sc_ua_ret=\"Android Mobile\";\n\t}\n\telse{\n\t\ts.sc_ua_ret=\"Android Tablet\";\t\n\t}\n}\nelse if(s.sc_ua.indexOf(\"blackberry\")>-1){s.sc_ua_ret=\"BlackBerry\"}\nelse if(s.sc_ua.indexOf(\"windows ce\")>-1){s.sc_ua_ret=\"Windows Mobile\"}\nelse if(s.sc_ua.indexOf(\"nintendo\")>-1){s.sc_ua_ret=\"Game\"}\nelse if(s.sc_ua.indexOf(\"playstation\")>-1){s.sc_ua_ret=\"Game\"}\nelse if(s.sc_ua.indexOf(\"docomo\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"foma\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"kddi\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"au\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"softbank\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"vodafone\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"j-phone\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"netfront\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"jig browser\")>-1){s.sc_ua_ret=\"Feature Phone\"}\nelse if(s.sc_ua.indexOf(\"willcom\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"chrome\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"firefox\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"r-ie8\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"msie\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"opera\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"safari\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"netscape\")>-1){s.sc_ua_ret=\"PC\"}\nelse if(s.sc_ua.indexOf(\"macintosh\")>-1){s.sc_ua_ret=\"PC\"}\nelse{s.sc_ua_ret=\"Others\"}\nreturn s.sc_ua_ret};\nfunction s_getKw(_id){var _tag=document.getElementById(_id);if(_tag){return _tag.value;}}\nvar _s_UADesign=s_getKw(\"scUAPattern\");\n\ns.pageName=\"Rakuten Top: Normal\"\ns.channel=\"Rakuten Top\"\ns.prop9=\"Rakuten Top: Normal\"\nif(typeof prop10value!='undefined'&&prop10value)s.prop10=prop10value\ns.prop13=\"\"\nif(typeof templateA!='undefined'&&templateA)s.prop13= templateA\nif(typeof sc_gender!='undefined'&&sc_gender){\n\tif(sc_gender==\"d\")s.GenderAgeSet(\"100\")\n\tif(sc_gender==\"m\")s.GenderAgeSet(\"200\")\n\tif(sc_gender==\"f\")s.GenderAgeSet(\"300\")\n}\nvar sc_gender_result =\"\"\nif(s.GenderAgeGet().charAt(0)==\"1\")sc_gender_result=\"_d\"\nif(s.GenderAgeGet().charAt(0)==\"2\")sc_gender_result=\"_m\"\nif(s.GenderAgeGet().charAt(0)==\"3\")sc_gender_result=\"_f\"\ns.eVar5=s.pageName+\"<\"+_s_UADesign+\"[\"+s.userAgentManager2()+\"]\";\ns.eVar25=\"Rakuten Top: Normal\"+sc_gender_result\ns.eVar14=\"Rakuten Top\"\nif(typeof sc_evar73_rank!='undefined'&&sc_evar73_rank){\n\tif(sc_evar73_rank==\"NoneMember\")s.MemberRankSet(\"1\")\n\tif(sc_evar73_rank==\"Regular\")s.MemberRankSet(\"2\")\n\tif(sc_evar73_rank==\"Silver\")s.MemberRankSet(\"3\")\n\tif(sc_evar73_rank==\"Gold\")s.MemberRankSet(\"4\")\n\tif(sc_evar73_rank==\"Platinum\")s.MemberRankSet(\"5\")\n}\ns.eVar73=s.MemberRankGet()\nif(typeof sc_evar73_card!='undefined'&&sc_evar73_card)s.eVar73=s.eVar73+\"_\"+sc_evar73_card\nif(typeof sc_evar73_toolbar!='undefined'&&sc_evar73_toolbar)s.eVar73=s.eVar73+\"__\"+sc_evar73_toolbar\nvoid(s.t())//--></script>\n<!-- End SiteCatalyst code --><noscript><img\nsrc=\"http://rakuten.112.2O7.net/b/ss/rakutencojpmain/1/H.7--NS/0\"\nheight=\"1\" width=\"1\" border=\"0\" alt=\"\"></noscript>\n<!--/DO NOT REMOVE/-->\n\n<script type=\"text/javascript\"><!--\n\tfunction endLoad1(obj){\n\t\tvar s=s_gi(s_account);\n\t\ts.linkTrackVars='prop13';\n\t\ts.prop13=\"\";\n\t\tif(typeof sc_browsehist_imp!='undefined'&&sc_browsehist_imp)s.prop13= sc_browsehist_imp;\n\t\tif(typeof sc_basket_imp!='undefined'&&sc_basket_imp)s.prop13= s.prop13 + \"|\" + sc_basket_imp;\n\t\tif(typeof sc_bookmark_imp!='undefined'&&sc_bookmark_imp)s.prop13= s.prop13 + \"|\" + sc_bookmark_imp;\n\t\tif(typeof sc_histreco_imp!='undefined'&&sc_histreco_imp)s.prop13= s.prop13 + \"|\" + sc_histreco_imp;\n\t\tif(typeof sc_recommend_imp!='undefined'&&sc_recommend_imp)s.prop13= s.prop13 + \"|\" +  sc_recommend_imp;\n\t\tif(typeof sc_popularity_imp!='undefined'&&sc_popularity_imp)s.prop13=  s.prop13 + \"|\" + sc_popularity_imp;\n\t\tif(typeof sc_shophist_imp!='undefined'&&sc_shophist_imp)s.prop13= s.prop13 + \"|\" + sc_shophist_imp;\n\t\tif(typeof sc_pulldownbannar!='undefined'&&sc_pulldownbannar)s.prop13= s.prop13 + \"|\" + sc_pulldownbannar;\n\t\tif(typeof sc_areakw_imp!='undefined'&&sc_areakw_imp)s.prop13= s.prop13 + \"|\" + sc_areakw_imp;\n\t\tif(typeof sc_tabtest_imp!='undefined'&&sc_tabtest_imp)s.prop13= s.prop13 + \"|\" + sc_tabtest_imp;\n\t\t\n\t\tif(typeof s.prop13!='undefined'&&s.prop13)s.tl(obj,'o','CUSTOM LINK');\n\t\treturn false;\n\t}\n//--></script>\n\n<img src=\"http://image.www.rakuten.co.jp/com/img/home/t.gif\" alt=\"\" width=\"0\" height=\"0\" onLoad=\"return setTimeout('endLoad1(this)', 1700);\"><!-- /SiteCatalyst -->\r\n\r\n<!-- Mebius -->\r\n<script type=\"text/javascript\">\n<!--\ndocument.write('<img src=\"//anz.rd.rakuten.co.jp/p/?i=1.1059.0&n=Ichiba_Top&l=Ichiba_Top&r='+document.referrer+'&c='+new Date().getTime()*Math.random()+'&d=pc\">');\n//-->\n</script>\n<noscript>\n<img src=\"//anz.rd.rakuten.co.jp/p/?i=1.1059.0&n=Ichiba_Top&l=Ichiba_Top&r=&d=pc\">\n</noscript><!-- /Mebius -->\r\n\r\n<!-- Rg cookie -->\r\n\r\n<script language=\"javascript\">\r\n<!--\r\n\r\nvar perRg = 100;\r\n\r\nif( issetRz() && inPercent(perRg) ){\r\n    document.write('<img src=\"http://pzd.rakuten.co.jp/?menu=RgCookie\">');\r\n}\r\n\r\nfunction issetRz(){\r\n    var cookie_name = 'Rz';\r\n    var cookieData = document.cookie + \";\";\r\n    var startPoint1 = cookieData.indexOf(cookie_name);\r\n    var startPoint2 = cookieData.indexOf(\"=\",startPoint1);\r\n    var endPoint = cookieData.indexOf(\";\",startPoint1);\r\n    if( startPoint1 <= -1 || startPoint2 == endPoint ){\r\n        return false;\r\n    }\r\n    return true;\r\n}\r\n\r\nfunction inPercent(per){\r\n    var rand = Math.floor( Math.random() * 100 ) + 1;\r\n    if( !per || per < rand ){\r\n        return false;\r\n    }\r\n    return true;\r\n}\r\n\r\n//-->\r\n</script>\r\n\r<!-- /Rg cookie -->\r\n \r\n</div><!-- /#ritFooterArea -->\r\n\r\n</div><!-- /#ritWrapper -->\r\n\r\n<!-- dip popup -->\r\n\r\n<style type=\"text/css\">\r\n.clfx{\r\n\tclear: both;\r\n\tzoom: 1;/*for IE 5.5-7*/\r\n\tmin-height: 1px;\r\n}\r\n.clfx:after{\r\n\tcontent:\".\";\r\n\tdisplay: block;\r\n\tclear: both;\r\n\theight: 1px;\r\n\tmargin-top: -1px;\r\n\tvisibility: hidden;\r\n}\r\n\r\n#dipPopUpBoxMask {\r\n\tposition:fixed;\r\n\ttop:0;\r\n\tleft:0;\r\n\theight: auto;\r\n\twidth:100%;\r\n\tbackground:black;\r\n\tz-index:999;\r\n\tdisplay:none;\r\n\tzoom: 1;\r\n}\r\n* html #dipPopUpBoxMask{\r\n    position:absolute;\r\n}\r\n\r\n#dipPopUpBox p,\r\n#dipPopUpBox div,\r\n#dipPopUpBox dl,\r\n#dipPopUpBox dt,\r\n#dipPopUpBox dd {\r\n\tmargin:0;\r\n\tpadding:0;\r\n}\r\n\r\n#dipPopUpBox {\r\n\tposition:absolute;\r\n\ttop:10%;\r\n\tleft:50%;\r\n\twidth:600px;\r\n\theight:380px;\r\n\tmargin:-190px 0 0 -300px;\r\n\toverflow:auto;\r\n\tbackground:#fff;\r\n\ttext-align:center;\r\n\tfont-size:75%;\r\n\tz-index:1000;\r\n\tdisplay:none;\r\n}\r\n\r\n* html #dipPopUpBox{\r\n    \tmargin:-190px 0 0 175px;\r\n}\r\n\r\n#dipPopUpBox div {\r\n\tmargin:0 auto 10px auto;\r\n}\r\n\r\n#dipPopUpBox p {\r\n\tposition:relative;\r\n\t\r\n\tmargin-bottom:10px;\r\n}\r\n\r\n#dipPopUpBox .btnClose {\r\n\tposition:relative;\r\n\tz-index:20;\r\n\tmargin:5px 5px 0;\r\n\ttext-align:right;\r\n}\r\n\r\n#dipPopUpBox .btnClose a {\r\n\tpadding:4px 20px 4px 0;\r\n\tbackground:url(http://image.event.rakuten.co.jp/borderless/img/banner/ichiba/os_ichiba_modal_btn_close.gif) no-repeat right center;\r\n\tfont-size:90%;\r\n}\r\n\r\n#dipPopUpBox dl {\r\n\tfloat:left;\r\n\twidth:270px;\r\n\ttext-align:left;\r\n}\r\n\r\n#dipPopUpBox dt,\r\n#dipPopUpBox dd {\r\n\tmargin:0 0 10px 20px;\r\n}\r\n\r\n#dipPopUpBox .bulletarrowmini {\r\n\tpadding-left:8px;\r\n\tbackground:url(http://image.event.rakuten.co.jp/borderless/common/img/bullet_arrowmini.gif) no-repeat left 4px;\r\n}\r\n</style>\r\n\r\n<div id=\"dipPopUpBoxMask\"></div>\r\n<div id=\"dipPopUpBox\">\r\n<p class=\"btnClose dipHidePopUp\"><a href=\"http://www.rakuten.co.jp/\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0107';s.tl(this,'o','os_event_0107');\"\r\n>close</a></p>\r\n<p><img src=\"http://image.event.rakuten.co.jp/borderless/img/banner/ichiba/os_ichiba_modal_ttl_20120203.gif\" alt=\"Welcome International Customers\" width=\"558\" height=\"95\" border=\"0\"></p>\r\n\r\n<div class=\"clfx\">\r\n<dl>\r\n<dt><a href=\"http://global.rakuten.com/countrylist/\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0102';s.tl(this,'o','os_event_0102');\"\r\n><img src=\"http://image.event.rakuten.co.jp/borderless/img/banner/ichiba/os_ichiba_modal_flag_global.gif\" alt=\"Singapore\" width=\"209\" height=\"75\" border=\"0\"></a></dt>\r\n<dd class=\"bulletarrowmini\"><a href=\"http://global.rakuten.com/countrylist/\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0101';s.tl(this,'o','os_event_0101');\"\r\n>Choose your location from a list of our global sites<br>\r\nƹڡ˥ʱѸ</a></dd>\r\n</dl>\r\n\r\n<dl>\r\n\r\n<dt><a class=\"dipHidePopUp\"  href=\"http://www.rakuten.co.jp/\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0105';s.tl(this,'o','os_event_0105');\"\r\n><img src=\"http://image.event.rakuten.co.jp/borderless/img/banner/ichiba/os_ichiba_modal_flag_jp.gif\" alt=\"Japan\" width=\"199\" height=\"75\" border=\"0\"></a></dt>\r\n<dd class=\"bulletarrowmini\"><a class=\"dipHidePopUp\" href=\"http://www.rakuten.co.jp/\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0103';s.tl(this,'o','os_event_0103');\"\r\n>ܳŷԾ˥ <br>\r\nView Rakuten in Japanese</a></dd>\r\n<dd class=\"bulletarrowmini\"><a class=\"dipBlockPopUp\" href=\"http://www.rakuten.co.jp/\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0104';s.tl(this,'o','os_event_0104');\"\r\n>ܳŷԾ˥<br>\r\nAlways show Rakuten in Japanese</a></dd>\r\n</dl>\r\n</div>\r\n<p><a href=\"http://global.rakuten.com/en/help/flow/order.html\" class=\"bulletarrowmini\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0302';s.tl(this,'o','os_event_0302');\">How to search for international shipping items</a><br>\r\n<a href=\"http://event.rakuten.co.jp/borderless/help/jp/flow/order.html\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0301';s.tl(this,'o','os_event_0301');\">ʳоݾʤõˤĤơ</a></p>\r\n\r\n<p><a href=\"http://global.rakuten.com/countrylist/\" class=\"bulletarrowmini\" onClick=\"var s=s_gi(s_account);s.linkTrackVars='eVar15';s.eVar15='os_event_0106';s.tl(this,'o','os_event_0106');\"\r\n>See more countries</a></p>\r\n</div>\r\n<script language=\"JavaScript\"> \r\n<!-- \r\nvar sc_pulldownbannar=\"top_pb_pop_all\";\r\n//-->\r\n</script>\r\n\r\n<!--[if lte IE 6]>\r\n<script src=\"com/js/d/common/plugin/jquery.bgiframe.min.js\" type=\"text/javascript\" language=\"JavaScript\"></script>\r\n<![endif]-->\r\n<script src=\"com/js/d/top/popup/popup-1.0.0.min.js\" type=\"text/javascript\" language=\"JavaScript\"></script>\r\n\r\n\r\n<!-- /dip popup -->\r\n\r\n<!-- liquidlist -->\r\n<script type=\"text/javascript\" src=\"http://a.ichiba.jp.rakuten-static.com/com/js/c/top/liquidlist/liquidlist-1.0.0.min.js\"></script>\r\n<!-- /liquidlist -->\r\n</body> \r\n</html>\r"
  },
  {
    "path": "testdata/euc_kr.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\" />\r\n<meta name=\"msapplication-starturl\" content=\"http://www.nate.com/\" />\r\n<meta name=\"msapplication-task\" content=\"name=  ; action-uri=http://mail3.nate.com/?go_url=listmail&amp;mboxid=10&amp;lt=main; icon-uri=nate_mail.ico\" />\r\n<meta name=\"msapplication-task\" content=\"name=ƺ; action-uri=http://www.cyworld.com/etc/bridgeJumplist.asp?category=clog; icon-uri=cy_clog.ico\" />\r\n<meta name=\"msapplication-task\" content=\"name= ̴Ȩ ; action-uri=http://www.cyworld.com/etc/bridgeJumplist.asp?category=minihp; icon-uri=cy_minihp.ico\" />\r\n<meta name=\"msapplication-task\" content=\"name= α ; action-uri=http://www.cyworld.com/etc/bridgeJumplist.asp?category=blog; icon-uri=cy_blog.ico\" />\r\n<meta name=\"msapplication-task\" content=\"name= BGM ; action-uri=http://music.cyworld.com/note/mymusic/mysong.asp; icon-uri=cy_mymusic.ico\" />\r\n<meta name=\"robots\" content=\"nofollow\" />\r\n<meta name=\"CODE_LANGUAGE\" content=\"C#\" />\r\n<meta name=\"CODE_MADE\" content=\"SK Communications\" />\r\n<meta name=\"autocomplete\" content=\"off\" />\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=euc-kr\" />\r\n<title>Ʈ</title>\r\n<link href=\"http://www.nate.com/favicon.ico\" rel=\"shortcut icon\"/>\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\nvar isSvc = true; var isInfoAjax = true; var isGray = \"\";\r\nvar idxCommsBar = \"\"; var host = \"www.nate.com\";\r\nvar isNateLogin = (\"False\" == \"True\"); var loginType = \"\"; var myId = \"\";\r\nvar iSvcSeq = \"1\"; var iSvcSeqB = \"4\"; var iSvcSeqC = \"2\"; var iSvcSeqW = \"4\";\r\nvar isiPad = (navigator.userAgent.toUpperCase().indexOf(\"IPAD\") !== -1);\r\nvar isGalaxyTab = (navigator.userAgent.toUpperCase().indexOf(\"SHW-M180\") !== -1); // GT-P1000\r\nvar isGalaxyTab10 = (navigator.userAgent.toUpperCase().indexOf(\"SHW-M380\") !== -1);\r\nvar isTablet = (isiPad == true || isGalaxyTab == true || isGalaxyTab10 == true);\r\n\r\n\r\ndocument.write('<script type=\"text/javascript\" src=\"/main/v1/js/nate_general_v20120719.js?v=201208161010_2012073001\"><\\/script>');\r\n\r\ndocument.write('<script type=\"text/javascript\" src=\"/main/v1/js/nate_logout_v20110728.js?v=201203081007_20111020\"><\\/script>');\r\ndocument.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/main/main_v7_20120731.css?v=201208021034_2012073001\" media=\"all\" \\/>');\r\nif (isiPad) {\r\ndocument.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/main/main_ipad_v3.css?v=20120724\" media=\"all\" \\/>');\r\n}\r\nelse if (isGalaxyTab) {\r\ndocument.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/main/main_galaxy_v2.css?v=20110728\" media=\"all\" \\/>');\r\n}\r\n\r\nif (isiPad||isGalaxyTab) {\r\n\tvar scrollDiv;\r\n\tdocument.write('<script type=\"text/javascript\" src=\"/main/v1/js/padroller.js\"><\\/script>');\r\n\tfunction domLoaded() { scrollDiv = new padRoller(\"NateOnBuddyList\"); }\r\n\tif (isNateLogin) { try { document.addEventListener('DOMContentLoaded', domLoaded, false); } catch(e) { } }\r\n}\r\n\r\ntry { \r\n\tif (window.navigator.userAgent.toString().indexOf(\"Trident/5.0\") > -1) {\r\n\t\twindow.external.msSiteModeCreateJumplist('NATE Favorites');\r\n\t\twindow.external.msSiteModeAddJumpListItem('̿ ', 'http://music.cyworld.com', 'cy_bgm.ico');\r\n\t\twindow.external.msSiteModeAddJumpListItem('۽', 'http://appstore.cyworld.com', 'cy_apps.ico');\r\n\t\twindow.external.msSiteModeAddJumpListItem('ֶ', 'http://search.nate.com/search/all.html?thr=iejl', 'nate_why.ico');\r\n\t\twindow.external.msSiteModeAddJumpListItem('', 'http://pann.nate.com', 'nate_pann.ico');\r\n\t\twindow.external.msSiteModeAddJumpListItem('', 'http://news.nate.com', 'nate_news.ico');\r\n\t}\r\n}\r\ncatch (e) { }\r\n\r\nif (isTablet)\r\n{\r\n    document.write('<link rel=\"apple-touch-icon-precomposed\" href=\"http://main.nateimg.co.kr/img/nate_144.png\" />');\r\n}\r\n\r\n//]]>\r\n</script>\r\n\r\n</head>\r\n\r\n<body onload=\"loadpg()\">\r\n<div id=\"wrap\">\r\n<div id=\"header\">\r\n<div id=\"header_cont\" class=\"header_cont\">\r\n<div class=\"logo_area\">\r\n<h1 id=\"brand_identity\" class=\"normal\"><a href=\"http://www.nate.com/?f=bi\" onmousedown=\"nc('NBI01');\"><img src=\"http://main.nateimg.co.kr/img/cms/content_pool/2012/08/normal_bi(0).gif\" alt=\"Ʈ\" /></a></h1>\r\n<h1 class=\"issue_birthday\" id=\"bi_birthday\" style=\"display:none\"><a href=\"javascript:;\" onclick=\"getBirthdayBiGift();\" onmousedown=\"nc('SBI01');\" id=\"bi_birthday_img\"></a><span id=\"bi_birthday_span\"><a href=\"javascript:;\" onclick=\"getBirthdayBiGift();\" id=\"birthdayName\"></a></span></h1>\r\n\r\n\r\n<p id=\"promotion_special\" class=\"bi_promotion\"><a id=\"clogbannerlink\" onmousedown=\"nc('NBI11');\"></a></p>\r\n\r\n</div>\r\n<div class=\"accessibility_area\">\r\n<h2>Ʈ   ٷΰ ũ</h2>\r\n<ul>\r\n<li><a href=\"#search\">հ˻ ٷΰ</a></li>\r\n<li><a href=\"#f_login\">αο ٷΰ</a></li>\r\n<li><a href=\"#tabTit0\"> ٷΰ</a></li>\r\n</ul>\r\n</div>\r\n<div class=\"top_area\">\r\n<ul class=\"set_browser\">\r\n<li id=\"setHomeBtn\" class=\"set_nate\" style=\"display:none;\"><a href=\"javascript:;\" onclick=\"setStartPage('http://www.nate.com/?f=begin');\" onmousedown=\"nc('NBI02');\" title=\"Ʈ \">Ʈ </a></li>\r\n<li id=\"setSearchBtn\" class=\"set_search\" style=\"display:none;\"><a href=\"#\" onclick=\"nc('NBI03'); var spop = window.open('etc/set_browser_search.html','searchWindowCreation','width=451,height=470'); try { spop.focus(); } catch(e) { } \" title=\"˻â ϱ\">˻â ϱ</a></li>\r\n<li id=\"viewMNateBtn\" class=\"mobile_nate\"><a href=\"#\" title=\" Ʈ\" onclick=\"nc('NBI04'); viewMobilePage();\" > Ʈ</a></li>\r\n</ul>\r\n<a id=\"linkMobile\" href=\"http://m.nate.com/\" style=\"position:absolute; left:2px; top:7px; display: none\"><img src=\"http://main.nateimg.co.kr/img/mobile/btn_mobileweb.png\" alt=\" \" width=\"68\" height=\"11\" /></a>\r\n<ul class=\"global_gnb\">\r\n\t<li class=\"nateon\"><a href=\"http://nateonweb.nate.com/\" title=\"Ʈ 񽺷 \" onclick=\"nc('NBI05');\" >Ʈ</a></li>\r\n\t<li class=\"egloos\"><a href=\"http://www.egloos.com/\" title=\"̱۷罺 񽺷 \" onclick=\"nc('NBI07');\" target=\"_blank\">̱۷罺</a></li>\r\n\t<li class=\"cytogether\"><a href=\"http://cytogether.cyworld.com/\" title=\" 񽺷 \" onclick=\"nc('NBI06');\" ></a></li>\r\n</ul>\r\n</div>\r\n\r\n<script async src=\"/main/v1/contents/floatingSearch_v20120719.js?v=20120719\" type=\"text/javascript\"></script>\r\n<div class=\"search_area\">\r\n<h2>հ˻ </h2>\r\n<form id=\"search3\" name=\"search3\" method=\"get\" action=\"\" style=\"display: none;\"></form>\r\n<form id=\"search\" name=\"search\" action=\"http://search.nate.com/search/all.html\" onsubmit=\"return checkSearchForm()\">\r\n<input type=\"hidden\" name=\"s\" value=\"\" />\r\n<input type=\"hidden\" name=\"sc\" id=\"sc\" value=\"\"  />\r\n<input type=\"hidden\" name=\"afc\" id=\"afc\" value=\"\" />\r\n<input type=\"hidden\" id=\"j\" name=\"j\" value=\"\" />\r\n<input type=\"hidden\" id=\"thr\" name=\"thr\" value=\"sbma\" />\r\n<input type=\"hidden\" id=\"nq\" name=\"nq\" value=\"\" />\r\n<fieldset>\r\n<legend>հ˻ Է</legend>\r\n<div id=\"acWrap\" class=\"home\">\r\n<label>\r\n<input class=\"main_search\" id=\"q\" name=\"q\" value=\"\" type=\"text\" style=\"ime-mode:active\" tabindex=\"1\"/>\r\n<input id=\"acBtn\" class=\"btn_search\" type=\"image\" onclick=\"return search_floating();\" src=\"http://main2.nateimg.co.kr/img/v3/btn_search3.gif\" />\r\n\r\n</label>\r\n<img id=\"acImg\" class=\"arrow_autocomplete\" src=\"http://main.nateimg.co.kr/img/v3/layer_on01.gif\" alt=\"ڵϼ \" style=\"visibility:hidden;\"/>\r\n<div id=\"acDiv\" class=\"layer_autocomplete\" style=\"display:none;\">\r\n<iframe id=\"acIfrm\" name=\"acIfrm\" scrolling=\"no\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" src=\"\" title=\"ڵϼ\"></iframe>\r\n</div>\r\n</div>\r\n<div id=\"ohDiv\" style=\"display:none;\"><iframe id=\"ohIfrm\" name=\"ohIfrm\" scrolling=\"no\" frameborder=\"0\" title=\"ڵϼŰе\"></iframe></div>\r\n</fieldset>\r\n</form>\r\n<input type=\"hidden\" id=\"premiumText\" name=\"premiumText\" title=\"\" value=\"\" />\r\n<input type=\"hidden\" id=\"premiumLink\" name=\"premiumLink\" title=\"\" value=\"\" />\r\n<input type=\"hidden\" id=\"statCode\" name=\"statCode\" title=\"\" value=\"\" />\r\n\r\n<div class=\"word-rank-wrap\" style=\"display:none\" id=\"rankDiv\">\r\n<ol id=\"rankArea\"><li style=\"display:none\"></li></ol>\r\n</div>\r\n<dl class=\"realtime\">\r\n<dt>øƽ ˻</dt>\r\n<dd id=\"cmsSearchKeyword\"><a id=\"onclick_semantic01\" href=\"http://search.nate.com/search/all.html?q=%C7%CF%C7%CF+%BE%EE%BB%F6%B4%EB%C8%AD\" onmousedown=\"javascript:setNcCode('NSC11|NSC21|NSC31',idxSvcSemantic);\">  ȭ</a><span>I</span>\r<a id=\"onclick_semantic02\" href=\"http://search.nate.com/search/all.html?q=%BC%F6%C1%F6+%B1%E8%BC%F6%C7%F6+%BF%A9%C7%E0\" onmousedown=\"javascript:setNcCode('NSC12|NSC22|NSC32',idxSvcSemantic);\"> </a><span>I</span>\r<a id=\"onclick_semantic03\" href=\"http://search.nate.com/search/all.html?q=%C1%A6%B4%CF%C6%DB+%BE%D6%B4%CF%BD%BA%C5%E6+%BE%E0%C8%A5\" onmousedown=\"javascript:setNcCode('NSC13|NSC23|NSC33',idxSvcSemantic);\"> ȥ</a><span>I</span>\r<a id=\"onclick_semantic04\" href=\"http://search.nate.com/search/all.html?q=%B9%CC%B7%E1+%B1%D9%C8%B2\" onmousedown=\"javascript:setNcCode('NSC14|NSC24|NSC34',idxSvcSemantic);\">̷ Ȳ</a></dd>\r\n</dl>\r\n<p class=\"search_people\"><a href=\"#\" onclick=\"javascript:onclick_SearchPeople();\" onmousedown=\"nc('NSC02');\">˻</a></p>\r\n</div>\r\n<div class=\"gnb_area\">\r\n    <a class=\"gnb_mail\" title=\" 񽺷 \" href=\"http://mail3.nate.com/\" onmousedown=\"nc('NGB01');\"></a>\r\n    <a class=\"gnb_news\" title=\" 񽺷 \" href=\"http://news.nate.com\" onmousedown=\"nc('NEV31');\"></a>\r\n    <a class=\"gnb_pann\" title=\" 񽺷 \" href=\"http://pann.nate.com\" onmousedown=\"nc('NGB02');\"></a>    \r\n\t<a class=\"gnb_video\" title=\" 񽺷 \" href=\"http://pann.nate.com/video\" onmousedown=\"nc('NGB09');\"></a>\r\n\t<a class=\"gnb_hoppin\" title=\"hoppin 񽺷 \" href=\"http://www.hoppin.nate.com\" onmousedown=\"nc('NGB10');\">hoppin</a>\r\n    <a class=\"gnb_game\" title=\" 񽺷 \" href=\"http://game.nate.com/\" onmousedown=\"nc('NGB06');\"></a>\r\n    <a class=\"gnb_map\" title=\" 񽺷 \" href=\"http://map.nate.com/\" onmousedown=\"nc('NGB08');\"></a>\r\n    <a class=\"gnb_hompy\" title=\"̴Ȩ 񽺷 \" href=\"http://www.cyworld.com/pims/mhsection/mh_index.asp\" onmousedown=\"nc('NGB12');\">̴Ȩ</a>\r\n    <a class=\"gnb_blog\" title=\"α 񽺷 \" href=\"http://blog.cyworld.com/\" onmousedown=\"nc('NGB13');\">α</a>\r\n    <a class=\"gnb_club\" title=\"Ŭ 񽺷 \" href=\"http://club.cyworld.com/club/clubsection2/index.asp\" onmousedown=\"nc('NGB14');\">Ŭ</a>\r\n    <a class=\"gnb_apps\" title=\"۽ 񽺷 \" href=\"http://apps.cy.nate.com/\" onmousedown=\"nc('NGB07');\">۽</a>\r\n    <a class=\"gnb_gift\" title=\" 񽺷 \" href=\"http://www.cyworld.com/mall/mall5_index.asp?inflow=NL00\" onmousedown=\"nc('NGB15');\"></a>\r\n    <a class=\"gnb_music\" title=\" 񽺷 \" href=\"http://music.cyworld.com/\" onmousedown=\"nc('NGB16');\"></a>\r\n    \r\n\t\r\n\t<p id=\"Banggle_GNB\" class=\"svc_cy\"><a href=\"http://cyrang.cyworld.com/\" title=\" 츮 ̾߱ ̶\" onmousedown=\"nc('NGB11');\"><img src=\"http://main2.nateimg.co.kr/img/cms/content_pool/2012/07/svc_cy2.gif\" width=\"26\" height=\"26\" alt=\" 츮 ̾߱ ̶\" /></a></p>\r\n    \r\n\t\r\n\t<!--\r\n\t<p class=\"svc_cy_special2\"><a href=\"http://cyrang.cyworld.com/\" title=\"츮 ̾߱ ̶ ϱ\" onmousedown=\"nc('NGB11');\"><img src=\"http://main.nateimg.co.kr/img/v3/svc_cy_special4_update.gif\" alt=\"츮 ̾߱ ̶ ϱ\" /></a></p>\r\n\t-->\r\n\r\n\t<ul id=\"gnbNewServiceArea\" class=\"gnb_new_service\" onmouseover=\"viewNewServiceLayer();\"  onmouseout=\"expandContractForGnbLayer2();\">\r\n\t\t<li id=\"NewService_GNB\" style=\"display:none;\"><a href=\"http://ask.nate.com/\"><img src=\"http://image.nate.com/img/cms/content_pool/2012/07/gnb_menu_01(1)(0).gif\" width=\"45\" height=\"12\" alt=\" \" /></a></li>\r\n\t</ul>\t\r\n\t\r\n\t<ul id=\"gnbNewServiceLayer\" class=\"gnb_service_add\" style=\"display:none;\" onmouseout=\"expandContractForGnbLayer(this.id,event);\"><li><a onmousedown=\"nc('NEV48');\" href=\"http://ask.nate.com\" title=\" 񽺷 \"></a></li><li><a onmousedown=\"nc('NEV49');\" href=\"http://mobile.nate.com/\" title=\" 񽺷 \"></a></li><li><a onmousedown=\"nc('NEV50');\" href=\"http://movie.nate.com/\" title=\"ȭ 񽺷 \">ȭ</a></li><li><a onmousedown=\"nc('NEV51');\" href=\"http://nateonweb.nate.com/download/messenger/windows/4.1/download.php\" title=\"Ʈ 񽺷 \">Ʈ</a></li></ul>\r\n\t\r\n\t\r\n\t\r\n    <p class=\"ico_up\" title=\"UP\" style=\"left:413px;\" >UP</p>\r\n\t<!--\r\n\t<p class=\"ico_new\" title=\"NEW\">NEW</p>\r\n\t-->\r\n    <div id=\"allViewLayer\" class=\"layer_allsvc_wrap\" style=\"display:none;\"></div>\r\n</div>\r\n\r\n<script async src=\"/main/v1/contents/gnbNewService_v20120719.js?v=201208161206_20110728\" type=\"text/javascript\"></script>\r\n\r\n<dl id=\"whyArea\" class=\"why_area\"><dt> ?</dt>\r<dd id=\"v20_whyimg\" class=\"why_img\" style=\"background:url('http://main2.nateimg.co.kr/img/cms/content_pool/2012/08/0814_8.gif') no-repeat left top;\"><a class=\"why_click\" id=\"why_click\" href=\"http://search.nate.com/search/all.html?q=%C0%CC%BA%B4%C7%E5+%B0%E1%C8%A5+%BA%CE%C0%CE&amp;thr=frw&amp;nq=1\" title=\"\" onmousedown=\"onmousedown_WhyHot();nc2('RWA01');\"></a></dd>\r<dd class=\"why_btn\"><a class=\"why_prev\" title=\" \" href=\"javascript:whyArea_dir('P', whyArea_ver);\" onmousedown=\"nc('NSC91');\"> </a><a class=\"why_next\" title=\" \" href=\"javascript:whyArea_dir('N', whyArea_ver);\" onmousedown=\"nc('NSC92');\"> </a></dd>\r<dd class=\"view_allsvc\"><a id=\"gnb_svcall_button\" class=\"gnb_svcall\" title=\" \" href=\"javascript:showAllService();\">Ʈ ٸ  </a></dd>\r<dd class=\"gnb_banner\" style=\"display:none;\"><a title=\" ø  GO!\" href=\"http://pann.nate.com/event/psypann\"><img src=\"http://main2.nateimg.co.kr/img/v3/gnb_right_psyucc.gif\" alt=\" ø  GO!\" onmousedown=\"nc('NEW01');\"/></a></dd>\r<dd class=\"london_special\" style=\"display:none;\">\r           <ul>\r                     <li class=\"title\"><a href=\"http://search.nate.com/search/all.html?q=%B7%B1%B4%F8%BF%C3%B8%B2%C7%C8+%B8%DE%B4%DE%BC%F8%C0%A7&amp;ddthr=fomr&amp;nq=1\" title=\"ѹα ޴ Ȳ \" onmousedown=\"nc('NEW01');\">ѹα ޴ Ȳ </a></li>\r                     <li id=\"liMedalGrade\" class=\"grade\">\r                     </li>\r                     <li id=\"liMedalGold\" class=\"gold\">\r                     </li>\r                     <li id=\"liMedalSilver\" class=\"silver\">\r                     </li>\r                     <li id=\"liMedalBronze\" class=\"bronze\">\r                     </li>\r           </ul>\r</dd></dl>\r\n</div>\r\n</div>\r\n<hr />\r\n<div id=\"cont_wrap\">\r\n<div class=\"content\">\r\n\r\n\t<div id=\"layerLogout\" class=\"layer_logout\" style=\"display: none\"></div>\r\n\t<script type=\"text/javascript\">\r\n\t//<![CDATA[\r\n\t\tvar bLogout = false;\r\n\t\tif (isLogout()) { fillLogout(); }\r\n\t\ttry { xCookie.setSubCookie(\"NateMain\", \"NcOpen\", \"1\"); } catch (e) { }\r\n\t//]]>\r\n\t</script>\r\n\r\n\r\n\r\n<div class=\"news_wrap\">\r\n\t<script type=\"text/javascript\" charset=\"euc-kr\" src=\"/main/srv/news/data/news_v20120709.js?20120816122632\"></script>\n\n<script type=\"text/javascript\" charset=\"euc-kr\" src=\"/main/srv/news/data/news_data_v20120709.asp?r=20120816122632\"></script><script type=\"text/javascript\" charset=\"euc-kr\" src=\"/main/srv/news/data/news_data_tab1_v20120709.asp?r=20120816122632\"></script>\n\n<div class=\"news_area\" id=\"news_area\">\n<script type=\"text/javascript\">\n\t//<![CDATA[\n\tif(isiPad == true || isTablet == true) {\n\t\tdocument.write('<h4 id=\"tabTit0\" class=\"Selected\" onclick=\"newsBox.changeTab(0);\"><a href=\"#\" onclick=\"ndrclick(\\'NEA01\\');return false;\"></a></h4>');\n\t} else {\n\t\tdocument.write('<h4 id=\"tabTit0\" class=\"Selected\" onmouseover=\"newsBox.changeTab(0);\" onmouseout=\"newsBox.resetTab();\"><a href=\"http://news.nate.com/\" onclick=\"ndrclick(\\'NEA01\\');\"></a></h4>');\n\t}\n\t//]]>\n\t</script>\n\t<div class=\"tabCont tabIn01\" style=\";\">\t\n\t\t<ul class=\"news_list\" id=\"news_text_type_div\" onmouseover=\"newsBox.rollingStop();\" onmouseout=\"newsBox.rollingStart();\">\n\t\t\t<li id=\"newsTxt_0\"><a href=\"http://news.nate.com/section?mid=n0200\" onclick=\"ndrclick('NEB31', 'Live_NH_01_02_0120120816121301');\" target=\"_self\"> &quot;   &quot;  ȭߴ </a><span>|</span><a href=\"http://news.nate.com/section?mid=n0300&amp;n=374561#cid374561\" onclick=\"ndrclick('NEB32', 'Live_NH_01_02_0220120816121301');\" target=\"_self\">'ѱ'  ΰ Ȯ</a></li>\n\t\t\t<li id=\"newsTxt_1\"><a href=\"http://news.nate.com/subsection?mid=n0304&amp;n=374617#cid374617\" onclick=\"ndrclick('NEB33', 'Live_NH_01_02_0320120816121142');\" target=\"_self\">λ, λ޿ Ļ </a><span>|</span><a href=\"http://news.nate.com/subsection?mid=n0404&amp;n=374589#cid374589\" onclick=\"ndrclick('NEB34', 'Live_NH_01_02_2720120816110940');\" target=\"_self\">,  ֺ  帧 Ѵ</a></li>\n\t\t\t<li id=\"newsTxt_2\"><a href=\"http://sports.news.nate.com/abrsoccer/&amp;n=3\" onclick=\"ndrclick('NEB35', 'Live_NH_01_02_0120120816102117');\" target=\"_self\">QPR ϱ  , ⼳ </a><span>|</span><a href=\"http://sports.news.nate.com/abrsoccer/&amp;n=1\" onclick=\"ndrclick('NEB36', 'Live_NH_01_02_0220120816103706');\" target=\"_self\">' 丣 ' Ͽ ֿ</a></li>\n\t\t\t<li id=\"newsTxt_3\"><a href=\"http://news.nate.com/ent/subsection?mid=e0103&amp;n=374556#cid374556\" onclick=\"ndrclick('NED31', 'Live_NH_01_02_0120120816110121');\" target=\"_self\">''   , Ŀ ߰</a><span>|</span><a href=\"http://news.nate.com/ent/section?mid=e0100\" onclick=\"ndrclick('NED32', 'Live_NH_01_02_0220120816110121');\" target=\"_self\">'Ѵ'  ȭ,   </a></li>\n\t\t</ul>\n\t\t<div class=\"news_thumb\" id=\"news_photo_type_div\" style=\"display:none;\" onmouseover=\"newsBox.rollingStop();\" onmouseout=\"newsBox.rollingStart();\">\n\t\t\t<dl class=\"first\">\n\t\t\t\t<dd id=\"newsImgSrc_1\"><!-- article_GenPho_3 --></dd>\n\t\t\t\t<dt id=\"newsImgTit_1\"><!-- article_GenPho_2 --></dt>\n\t\t\t</dl>\n\t\t\t<dl>\n\t\t\t\t<dd id=\"newsImgSrc_2\"><!-- article_GenPho_5 --></dd>\n\t\t\t\t<dt id=\"newsImgTit_2\"><!-- article_GenPho_4 --></dt>\n\t\t\t</dl>\n\t\t\t<dl>\n\t\t\t\t<dd id=\"newsImgSrc_3\"><!-- article_GenPho_7 --></dd>\n\t\t\t\t<dt id=\"newsImgTit_3\"><!-- article_GenPho_6 --></dt>\n\t\t\t</dl>\n\t\t\t<dl>\n\t\t\t\t<dd id=\"newsImgSrc_4\"><!-- article_GenPho_9 --></dd>\n\t\t\t\t<dt id=\"newsImgTit_4\"><!-- article_GenPho_8 --></dt>\n\t\t\t</dl>\n\t\t</div>\n\t\t<dl class=\"news_pic\" onmouseover=\"newsBox.rollingStop();\" onmouseout=\"newsBox.rollingStart();\">\n\t\t\t<dd id=\"newsImgSrc_0\"><a href=\"javascript:OpenPopup('http://ps.news.nate.com/photo/slidePopup?cid=374609&amp;mid=n0411',868,695);\" onclick=\"ndrclick('NEB01', 'Live_NH_01_01_0120120816120234');\" target=\"_self\"><img src=\"http://news.nateimg.co.kr/etc/cms/2012/08/16/1345086471_373.jpg\" width=\"120\" height=\"90\" alt=\"\" /></a></dd>\n\t\t\t<dt id=\"newsImgTit_0\"><a href=\"javascript:OpenPopup('http://ps.news.nate.com/photo/slidePopup?cid=374609&amp;mid=n0411',868,695);\" onclick=\"ndrclick('NEB01', 'Live_NH_01_01_0120120816120234');\" target=\"_self\">'뿪 ' ͽ&quot;  âϰڴ&quot;</a></dt>\n\t\t</dl>\n\t\t<ul class=\"news_list down\" onmouseover=\"newsBox.rollingStop();\" onmouseout=\"newsBox.rollingStart();\">\n\t\t\t<li id=\"newsTxt_4\"><a href=\"http://news.nate.com/subsection?mid=n0203&amp;n=371371#cid371371\" onclick=\"ndrclick('NEB41', 'Live_NH_01_03_0520120816120432');\" target=\"_self\">, 1ʸ ġ ȯ   Ȯ</a></li>\n\t\t\t<li id=\"newsTxt_5\"><a href=\"http://news.nate.com/subsection?mid=n0402&amp;n=374570#cid374570\" onclick=\"ndrclick('NEB43', 'Live_NH_01_03_0720120816120009');\" target=\"_self\">&quot;'뱸 л ڻ' б  13õ  ǰ&quot;</a></li>\n\t\t\t<li id=\"newsTxt_6\"><a href=\"http://news.nate.com/subsection?mid=n0305&amp;n=374582#cid374582\" onclick=\"ndrclick('NEB45', 'Live_NH_01_03_0920120816115455');\" target=\"_self\">ȣŸ̾  ľ</a><span>|</span><a href=\"http://news.nate.com/subsection?mid=n0406&amp;n=374591#cid374591\" onclick=\"ndrclick('NEB46', 'Live_NH_01_03_1020120816120805');\" target=\"_self\"> ް </a></li>\n\t\t\t<li id=\"newsTxt_7\"><a href=\"http://news.nate.com/subsection?mid=n0304&amp;n=368272#cid368272\" onclick=\"ndrclick('NEB47', 'Live_NH_01_03_1120120816120009');\" target=\"_self\">'¾ƺ' ھ ¾ڸ  ?</a></li>\n\t\t\t<li id=\"newsTxt_8\"><a href=\"http://sports.news.nate.com/basketvolley/\" onclick=\"ndrclick('NEB49', 'Live_NH_01_03_0720120816083227');\" target=\"_self\">'100⿡ ñ   õ' 迬 Ͽ</a></li>\n\t\t\t<li id=\"newsTxt_9\"><a href=\"http://news.nate.com/ent/subsection?mid=e0102&amp;n=374584#cid374584\" onclick=\"ndrclick('NEC31', 'Live_NH_01_03_0320120816113553');\" target=\"_self\">ҿ  ۼ, ¼  Գ</a></li>\t\t\t\t\n\t\t</ul>\n\t\t<p class=\"arrow_wrap\" id=\"newsOptBtn\" onmouseover=\"newsBox.rollingStop();\" onmouseout=\"newsBox.rollingStart();\">\n\t\t\t<a class=\"prev\" href=\"javascript:newsBox.showPreNext('P');\" onclick=\"ndrclick('NEJ11');\" title=\" \"></a><a class=\"next\" href=\"javascript:newsBox.showPreNext('N');\" onclick=\"ndrclick('NEJ11');\" title=\" \"></a>\n\t\t</p>\n\t</div>\n\n\n\t<script type=\"text/javascript\">\n\t//<![CDATA[\n\tif(isiPad == true || isTablet == true) {\n\t\tdocument.write('<h4 id=\"tabTit1\" onclick=\"newsBox.changeTab(1);\"><a href=\"#\" onclick=\"ndrclick(\\'NEG03\\');return false;\"></a></h4>');\n\t} else {\n\t\tdocument.write('<h4 id=\"tabTit1\" onmouseover=\"newsBox.changeTab(1);\" onmouseout=\"newsBox.resetTab();\"><a href=\"http://sports.news.nate.com/\" onclick=\"ndrclick(\\'NEG03\\');\"></a></h4>');\n\t}\n\t//]]>\n\t</script>\n\t<div class=\"tabCont tabIn02\" style=\"display:none;\">\t\t\t\n\t</div>\n\n\t<script type=\"text/javascript\">\n\t//<![CDATA[\n\tif(isiPad == true || isTablet == true) {\n\t\tdocument.write('<h4 id=\"tabTit2\" onclick=\"newsBox.changeTab(2);\"><a href=\"#\" onclick=\"ndrclick(\\'NEG04\\');return false;\"></a></h4>');\n\t} else {\n\t\tdocument.write('<h4 id=\"tabTit2\" onmouseover=\"newsBox.changeTab(2);\" onmouseout=\"newsBox.resetTab();\"><a href=\"http://news.nate.com/ent/index\" onclick=\"ndrclick(\\'NEG04\\');\"></a></h4>');\n\t}\n\t//]]>\n\t</script>\n\t<div class=\"tabCont tabIn03\" style=\"display:none;\">\t\t\t\t\t\n\t</div>\n\n\t<script type=\"text/javascript\">\n\t//<![CDATA[\n\tif(isiPad == true || isTablet == true) {\n\t\tdocument.write('<h4 id=\"tabTit3\" onclick=\"newsBox.changeTab(3);\"><a href=\"#\" onclick=\"ndrclick(\\'NEG05\\');return false;\"></a></h4>');\n\t} else {\n\t\tdocument.write('<h4 id=\"tabTit3\" onmouseover=\"newsBox.changeTab(3);\" onmouseout=\"newsBox.resetTab();\"><a href=\"http://pann.nate.com/\" onclick=\"ndrclick(\\'NEG05\\');\"></a></h4>');\n\t}\n\t//]]>\n\t</script>\n\t<div class=\"tabCont tabIn04\" style=\"display:none;\"></div>\n\n\t<script type=\"text/javascript\">\n\t//<![CDATA[\n\tif(isiPad == true || isTablet == true) {\n\t\tdocument.write('<h4 id=\"tabTit4\" onclick=\"newsBox.changeTab(4);\"><a href=\"#\" onclick=\"ndrclick(\\'NEC37\\');return false;\">' + rSpecialTabNmTxt[0].txtTit + '</a></h4>');\n\t} else {\n\t\tdocument.write('<h4 id=\"tabTit4\" onmouseover=\"newsBox.changeTab(4);\" onmouseout=\"newsBox.resetTab();\"><a href=\"' + rSpecialTabNmTxt[0].txtUrl + '\" onclick=\"ndrclick(\\'NEC37\\');\">' + rSpecialTabNmTxt[0].txtTit + '</a></h4>');\n\t}\n\t//]]>\n\t</script>\n\t<div class=\"tabCont tabIn05\" style=\"display:none;\"></div>\n\n\t<script type=\"text/javascript\">\n\t//<![CDATA[\n\t\tdocument.write('<h4 id=\"tabTit5\"><a href=\"javascript:;\" onclick=\"ndrclick(\\'NEK01\\');openTimelineLayer();\">ð</a></h4>');\n\t//]]>\n\t</script>\n</div>\n\n\n<script type=\"text/javascript\">\n//<![CDATA[\ntry {\n\tvar rTotalTxt = new Array();\n\tvar nCntTotalTxt = rSisaNewsTxt.length + rEntNewsTxt.length + rSpoNewsTxt.length;\n\tfor(var i = 0 ; i < nCntTotalTxt ; i++) {\n\t\tif(i == 2 || i == 8 || i == 12 || i == 18 || i == 22 || i == 28) {\n\t\t\trTotalTxt.push(rSpoNewsTxt[0]);\n\t\t\trSpoNewsTxt = rSpoNewsTxt.slice(1, rSpoNewsTxt.length);\n\t\t} else if(i == 3 || i == 9 || i == 13 || i == 19 || i == 23 || i == 29) {\n\t\t\trTotalTxt.push(rEntNewsTxt[0]);\n\t\t\trEntNewsTxt = rEntNewsTxt.slice(1, rEntNewsTxt.length);\n\t\t} else {\n\t\t\trTotalTxt.push(rSisaNewsTxt[0]);\n\t\t\trSisaNewsTxt = rSisaNewsTxt.slice(1, rSisaNewsTxt.length);\n\t\t}\n\t}\n\t\n\tvar rTotalImg = new Array();\n\tvar nCntTotalImg = rSisaNewsImg.length + rEntNewsImg.length + rSpoNewsImg.length;\n\tfor(var i = 0 ; i < nCntTotalImg ; i++) {\n\t\tif(rSpoNewsImg.length > 0 && (i == 2 || i == 6 || i == 9 || i == 11)) {\n\t\t\trTotalImg.push(rSpoNewsImg[0]);\n\t\t\trSpoNewsImg = rSpoNewsImg.slice(1, rSpoNewsImg.length);\n\t\t} else if(rEntNewsImg.length > 0 && (i == 1 || i == 3 || i == 5 || i == 8)) {\n\t\t\trTotalImg.push(rEntNewsImg[0]);\n\t\t\trEntNewsImg = rEntNewsImg.slice(1, rEntNewsImg.length);\n\t\t} else if(rSisaNewsImg.length > 0) {\n\t\t\trTotalImg.push(rSisaNewsImg[0]);\n\t\t\trSisaNewsImg = rSisaNewsImg.slice(1, rSisaNewsImg.length);\n\t\t}\n\t}\n\t\n\tif(sNewsImgRandom == 'E') {\n\t\trTotalImg.push(rTotalImg.shift());\n\t} else if(sNewsImgRandom == 'S') {\n\t\trTotalImg.push(rTotalImg.shift());\n\t\trTotalImg.push(rTotalImg.shift());\n\t}\n\t\n\tvar fifthTabTxtItem = new Array();\n\tvar fifthTabImgItem = new Array();\n\tif(issueTabVisible == 'Y') {\n\t\tfifthTabTxtItem = rSpecialTxt;\n\t\tfifthTabImgItem = rSpecialImg;\n\t} else {\n\t\tfifthTabTxtItem = rSearchTxt;\n\t\tfifthTabImgItem = rMovieImg;\n\t}\n\t\n\t// \n\tvar newsBox = new _classNewsBox({\n\t\t'rMenuItem':rMenuTxt, \n\t\t'rNewsImgItem':rTotalImg, \n\t\t'rNewsTxtItem':rTotalTxt,\n\t\t'rSecondTabTxtItem':rSpoTxt,\n\t\t'rSecondTabImgItem':rSpoImg,\n\t\t'rThirdTabTxtItem':rEntTxt,\n\t\t'rThirdTabImgItem':rEntImg,\n\t\t'rFourthTabTxtItem':rPannTxt,\n\t\t'rFourthTabImgItem':rPannImg,\n\t\t'rFifthTabTxtItem':fifthTabTxtItem,\n\t\t'rFifthTabImgItem':fifthTabImgItem,\n\t\t'sNewsImgRan':sNewsImgRandom, 'isMain':isMain, 'nSpoMenuType': nSpoMenuType, 'nEntMenuType': nEntMenuType, 'nPannMenuType': nPannMenuType, 'nSpecialMenuType': nSpecialMenuType,\n\t\t'nInitTabNum':0, \n\t\t'bIssueTabVisible':issueTabVisible, \n\t\t'objName':'newsBox', \n\t\t'sTagId':'newsTxt' \n\t});\n\t\n\tnewsBox.showMenu();\n\tnewsBox.changeTabDelay(0);\t\n} catch (e) {}\n\n//]]> \n</script>\n<script type=\"text/javascript\" charset=\"euc-kr\" src=\"/main/srv/news/data/issue_v20120709.js?20120816084343\"></script>\n<script type=\"text/javascript\" charset=\"euc-kr\" src=\"/main/srv/news/data/issue_data_v20120709.asp?r=20120816084343\"></script>\n\n<div class=\"issue_area\">\n\t<h4>̽</h4>\n\t<div class=\"todayCont\">\n\t\t<h5></h5>\n\t\t<ul>\n\t\t\t<li class=\"infolist\">\n\t\t\t\t\n\t\t\t\t<dl id=\"RightTopBox01\" style=\"display:none;\">\n\t\t\t\t\t<dt><a href=\"http://newscomm.nate.com/weather\" onmousedown=\"nc('NRD01');\"></a></dt>\n\t\t\t\t\t<dd><a href=\"http://search.nate.com/search/all.html?s=&sc=&afc=&j=&thr=sbma&nq=1&q=%B3%AF%BE%BE\" onmousedown=\"nc('NRD02');\"> </a> | <a href=\"http://news.nate.com/weather/?menu=LongWeek\" onmousedown=\"nc('NRD03');\">ְ </a></dd>\n\t\t\t\t</dl>\n\t\t\t\t\n\t\t\t\t<dl id=\"RightTopBox02\" style=\"display:none;\">\n\t\t\t\t\t<dt><a href=\"http://stock.finance.nate.com/\" onmousedown=\"nc('NRE01');\"></a></dt>\n\t\t\t\t\t<dd><a id=\"titleKospi\" href=\"http://stock.finance.nate.com/\" onmousedown=\"nc('NRE03');\">ڽ</a> | <span id=\"kospiJisu\" class=\"tx_stock\">-</span> <span id=\"kospiRate\" class=\"tx_rate\">-</span></dd>\n\t\t\t\t</dl>\n\t\t\t\t<dl id=\"RightTopBox03\" style=\"display:none;\">\n\t\t\t\t\t<dt><a href=\"http://finance.nate.com/\" onmousedown=\"nc('NRF01');\"></a></dt>\n\t\t\t\t\t<dd><a href=\"http://money.finance.nate.com/\" onmousedown=\"nc('NRF02');\">ְ ݸ</a> | <a href=\"http://search.nate.com/search/all.html?z=A&s=&tq=&sg=&nq=&sc=&afc=&thr=sbus&q=%C8%AF%C0%B2&nq=1\" onmousedown=\"nc('NRF03');\">ȯ ȸ</a></dd>\n\t\t\t\t</dl>\n\t\t\t\t<dl id=\"RightTopBox04\" style=\"display:none;\">\n\t\t\t\t\t<dt><a href=\"http://news.nate.com/ent/tvTable?mid=e0500\" onmousedown=\"nc('NRA01');\">TV</a></dt>\n\t\t\t\t\t<dd><a href=\"http://news.nate.com/ent/tvTable?mid=e0500\" onmousedown=\"nc('NRA02');\">ǥ</a> | <a href=\"http://news.nate.com/ent/TvHolic?mid=e0200\" onmousedown=\"nc('NRA03');\">ȭTV</a></dd>\n\t\t\t\t</dl>\n\t\t\t\t<dl id=\"RightTopBox05\" style=\"display:none;\">\n\t\t\t\t\t<dt><a href=\"http://search.nate.com/search/all.html?thr=sbus&q=%BF%EE%BC%BC\" onmousedown=\"nc('NRB01');\"></a></dt>\n\t\t\t\t\t<dd><a href=\"http://search.nate.com/search/all.html?thr=sbus&q=%B6%EC%BA%B0%BF%EE%BC%BC\" onmousedown=\"nc('NRB02');\">캰 </a> | <a href=\"http://search.nate.com/search/all.html?nq=5&thr=ukkt&q=%BA%B0%C0%DA%B8%AE%BF%EE%BC%BC\" onmousedown=\"nc('NRB03');\">ڸ </a></dd>\n\t\t\t\t</dl>\n\t\t\t\t<dl id=\"RightTopBox06\" style=\"display:none;\">\n\t\t\t\t\t<dt><a href=\"http://sports.news.nate.com/\" onmousedown=\"nc('NRC01');\"></a></dt>\n\t\t\t\t\t<dd><a href=\"http://sports.news.nate.com/video\" onmousedown=\"nc('NRC02');\"></a> | <a href=\"http://sports.news.nate.com/photo\n\" onmousedown=\"nc('NRC03');\"></a></dd>\n\t\t\t\t</dl>\n\t\t\t\t<p class=\"arrow_wrap\">\n\t\t\t\t\t<a class=\"prev\" href=\"#;\" title=\"\" onclick=\"nc('NRA04');fillStockLayer('P');\"></a><a class=\"next\" href=\"#;\" title=\"\" onclick=\"nc('NRA05');fillStockLayer('N');\"></a>\n\t\t\t\t</p>\n\t\t\t</li>\n\t\t\t<li class=\"view\"><a href=\"http://sports.news.nate.com/GoLondon_Video/final?section=3\" onclick=\"ndrclick('NEJ18', '');\" target=\"_self\">ø ' Ʈ'</a></li>\n\t\t</ul>\n\t</div>\n\t<!-- ǽð ˻ -->\n\t<div id=\"SearchRankMax\" class=\"realtime\">\n\t\t<h5><a href=\"http://search.nate.com/keyword/\" onmousedown=\"nc('NRT02')\">ǽð ˻</a></h5>\n\t\t<ol id=\"v20_searchrank\" style=\"display:block\" onmousedown=\"nc('NRT12')\">\n\t\t<li class=\"rank01_select\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank02\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank03\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank04\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank05\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank06\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank07\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank08\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank09\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank10\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\t\t\t\n\t\t<li class=\"rank11\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank12\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\t\t\t\n\t\t<li class=\"rank13\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t<li class=\"rank14\" style=\"display:none\"><a href=\"\" title=\"\"></a><span class=\"\"><em></em></span></li>\n\t\t</ol>\n\t\t<p class=\"arrow_wrap\"><a class=\"prev\" id=\"searchRankPrvBtn\" href=\"javascript:;\" onmousedown=\"javascript:nc('NRT91')\" title=\" \"><img src=\"http://main2.nateimg.co.kr/img/v3/btn_prev2.gif\" alt=\" \" /></a><a class=\"next\" id=\"searchRankNextBtn\" href=\"javascript:;\" onmousedown=\"javascript:nc('NRT92')\" title=\" \"><img src=\"http://main2.nateimg.co.kr/img/v3/btn_next2.gif\" alt=\" \" /></a></p>\n\t</div>\n\t<!-- ̽ ̾ -->\n\t<div class=\"lyr_issue\" id=\"lyr_issue\" style=\"display:none\">\n\t\t<div class=\"newsflash\"><a href=\"\" onclick=\"ndrclick('NEC88', '');\" target=\"_self\"></a></div>\n\t\t<a href=\"#;\" class=\"close\" onclick=\"closeSpecialLayer(nSpecialLayerModDate);return false;\" title=\"ݱ\">ݱ</a>\n\t</div>\n\t<!-- ̽ ̾ : ø -->\n \t<div class=\"lyr_issue_london\" id=\"lyr_issue2\" style=\"display:none\"></div>\n</div>\n<script type=\"text/javascript\">\n//<![CDATA[\ntry {\nif(isMain) viewIssueLayer(nSpecialLayerVisible, nSpecialLayerModDate);\n} catch (e) {}\n//]]> \n</script>\n<!-- Issue Content AREA END -->\n\r\n\r\n<!-- ð ̾ -->\r\n<div class=\"lyr_timeline \" style=\"display:none\" id=\"timelineLayer\"><!-- Ȯ expand Ŭ ߰ -->\t\t\r\n\t<div class=\"inner_timeline\">\r\n\t\t<h5>ð뺰 ֿ</h5>\r\n\t\t<div class=\"updateinfo\">\r\n\t\t\t Ʈ <span id=\"lastUpDtTimeLine\">06.18.14:30</span>\r\n\t\t\t<a href=\"http://www.nate.com/?f=timeline\" class=\"update\" onmousedown=\"nc('NGA01');\" title=\"Ʈ\">Ʈ</a>\r\n\t\t</div>\r\n\t\t<div class=\"timeline\" id=\"divNewsTimeLineList\"></div>\t\t\t\t\t\r\n \r\n\t\t<div class=\"more\">\r\n\t\t\t<a href=\"javascript:;\" onclick=\"newsTimeLineMoreOpen()\" class=\"open\" style=\"display:block;\" onmousedown=\"nc('NGA03');\" title=\"ð ġ\" id=\"timelineMoreBtnOpen\">ħ</a>\r\n\t\t\t<a href=\"javascript:;\" onclick=\"newsTimeLineMoreOpen();\" class=\"close\" style=\"display:none;\" onmousedown=\"nc('NGA04');\" title=\"ð \" id=\"timelineMoreBtnClose\"></a>\r\n\t\t</div>\r\n\t\t<div class=\"lyr_close\"><a href=\"javascript:;\" onclick=\"closeTimelineLayer()\" onmousedown=\"nc('NGA02');\" title=\"ð뺰 ֿ ݱ\">ð뺰 ֿ ݱ</a></div>\r\n \r\n\t</div>\r\n</div>\r\n\r\n\r\n\t<!-- Ŀ´̼ :  -->\r\n\t<div class=\"lyr_open120723_news\">\r\n\t\t<dl>\r\n\t\t\t<dd  id=\"div_lyr_open120723_news\" class=\"desc\" style=\"display:none;\">\t\t\t\t\t\t\t\r\n\t\t\t\t<p>\r\n\t\t\t\t<strong> ð  !</strong>\r\n\t\t\t\t ð뺰 , ο  ˸  ٷ ޾ƺ  ־. ø ҽĵ Ʈ  ϴ!\r\n\t\t\t\t</p>\r\n\t\t\t\t<a href=\"javascript:CloseLayer0723('news');\" class=\"close\" title=\"ݱ\">ݱ</a>\r\n\t\t\t</dd>\r\n\t\t</dl>\r\n\t</div>\r\n</div>\r\n\r\n\r\n\r\n\r\n\r\n<div id=\"div_skt_banner\" class=\"SKT_banner_area\">\r\n\t<script type=\"text/javascript\" src=\"http://cyad1.nate.com/js.kti/nate/main@mband_Position2\"></script>\r\n</div>\r\n\r\n\r\n\r\n<!-- Ŀ´̼ ̾ -->\r\n<div id=\"div_lyr_open120723\" class=\"lyr_open120723\" style=\"display:none;\">\r\n\t<dl>\r\n\t\t<dt>ο Ʈ ø ܺ!</dt>\r\n\t\t<dd>\r\n\t\t\t<strong> ð  !</strong>\r\n\t\t\t ð뺰 , ο  ˸  ٷ ޾ƺ  ־. ø ҽĵ Ʈ  ϴ!\t\t\t\t\t\t\t\r\n\t\t</dd>\r\n\t\t<dd>\r\n\t\t\t<strong>ƺ ģ ҽı!</strong>\r\n\t\t\tƺ⡯ ⺻ ϰ  ҽ  ģ ҽĵ   !  \t\t\t\t\t\t\t\r\n\t\t</dd>\r\n\t\t<dd>\r\n\t\t\t<strong>̷ ! ̽  վȿ</strong>\r\n\t\t\t̽ Ű塯  Hot ̽ Coolϰ ص. ø ҽĵ  Hotϰ ҰԿ!\t\t\t\t\t\t\t\r\n\t\t</dd>\r\n\t\t<dd>\r\n\t\t\t<strong>   .</strong>\r\n\t\t\t  񽺺   ̾ ŷ  Ӱ . ׾߸  ߿!\t\t\t\t\t\t\t\r\n\t\t</dd>\r\n\t</dl>\r\n\t<a href=\"javascript:CloseLayer0723('intro');\" class=\"close\" id=\"lyr_open\" title=\"ݱ\">ݱ</a>\r\n</div>\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n<div class=\"connect_wrap\">\r\n\t<div class=\"connect_top\">\r\n\t\t<h3 class=\"tit_logout\">\r\n\t\t\t<a title=\"ģҽĺ\" href=\"http://xo.nate.com/Login.sk?cpurl=www_ndr.nate.com%2flogin&amp;redirect=http%3A%2F%2Fwww.nate.com&amp;mapper=on\" class=\"myfriendfeed\" onmousedown=\"nc('NCO58');\">ģҽĺ</a>\r\n\t\t\t<span>αϸ ģ ҽ   ֽϴ</span>\r\n\t\t</h3>\t\t\t\t\t\r\n\t</div>\r\n\r\n\t<!-- Ŀ´̼ : ƺ -->\r\n\t<div  class=\"lyr_open120723_moa\">\r\n\t\t<dl>\r\n\t\t\t<dd class=\"desc\" id=\"div_lyr_open120723_moa\" style=\"display:none;\">\t\t\t\t\t\t\r\n\t\t\t\t<p>\r\n\t\t\t\t<strong>ƺ ģ ҽı!</strong>\r\n\t\t\t\tƺ⡯ ⺻ ϰ  ҽ  ģ ҽĵ   !  \r\n\t\t\t\t</p>\r\n\t\t\t\t<a href=\"javascript:CloseLayer0723('moa');\" class=\"close\" title=\"ݱ\">ݱ</a>\r\n\t\t\t</dd>\r\n\t\t</dl>\r\n\t</div>\r\n</div>\r\n\r\n\r\n<div class=\"coverstory_wrap\">\r\n\t<a name=\"coverstory\"></a>\r\n\t<div class=\"cover_wrap\" style=\"background:url('http://c1img.cyworld.co.kr/img/coverstory/upload/2012/0814/120816_main.gif') no-repeat left bottom;\"><h3 id=\"nateConnectTitle\" class=\"\"><a id=\"nateConnectLink\" title=\"\" href=\"\" onmouseup=\"\"></a></h3><p class=\"msg\"><a href=\"#\" id=\"nameConnect\" style=\"color: #e37a48;\"><span id=\"coverstoryName\"><span style='margin-right: 40px; border: 1px solid #red'>&nbsp;</span></span>, ģ    ? </a></p></div><input type=\"hidden\" id=\"coverstory_seq\" value=\"1087\" /><input type=\"hidden\" id=\"mainCoverDate\" value=\"2012-08-16\" />\r\n\r\n\t \r\n\t<script type=\"text/javascript\">\t\tviewCoverFloating();</script>\r\n</div>\r\n\r\n<!-- ̽ť̼ -->\r\n<div class=\"curation_wrap\" id=\"curationDiv\">\r\n\t<h3>̽ť̼</h3>\r\n\t<h4 class=\"issuekeyword\">̽Ű</h4>\r\n\t<ul id=\"curationMenu\" class=\"keyword\"><li class=\"keyword1\"><a href=\"javascript:;\" onclick=\"centerContentDir('1|C');\" onmousedown=\"javascript:nc('NDM01');nc2('');setNDRClickSpotStat('NDM01','http://www.nate.com/');\" target=\"_self\" title=\"Ÿ ִ\">Ÿ ִ</a></li>\r\t\t<li class=\"keyword2\"><a href=\"javascript:;\" onclick=\"centerContentDir('2|C');\" onmousedown=\"javascript:nc('NDM11');nc2('');setNDRClickSpotStat('NDM09','http://www.nate.com/');\" target=\"_self\" title=\" ڹ\"> ڹ</a></li>\r\t\t<li class=\"keyword3\"><a href=\"javascript:;\" onclick=\"centerContentDir('3|C');\" onmousedown=\"javascript:nc('NDM21');nc2('');setNDRClickSpotStat('NDM17','http://www.nate.com/');\" target=\"_self\" title=\" \"> </a></li>\r\t\t<li class=\"keyword4 keyword_selected4\"><a href=\"javascript:;\" onclick=\"centerContentDir('4|C');\" onmousedown=\"javascript:nc('NDM31');nc2('');setNDRClickSpotStat('NDM25','http://www.nate.com/');\" target=\"_self\" title=\" ǳ\"> ǳ</a></li>\r\t\t<li class=\"keyword5\"><a href=\"javascript:;\" onclick=\"centerContentDir('5|C');\" onmousedown=\"javascript:nc('NDM41');nc2('');setNDRClickSpotStat('NDM33','http://www.nate.com/');\" target=\"_self\" title=\"Ÿ \">Ÿ </a></li></ul>\r\n\t<div class=\"keywordcontent\" id=\"divKeywordContents\"></div>\r\n\t<h4 class=\"issueinfo\">̽</h4>\r\n\t<ul class=\"info\" id=\"curationIssueInfoMenu\">\r\n\t\t<li id=\"wellbeing\" class=\"info1\"><a href=\"javascript:;\" onclick=\"centerContentDir('6|wellbeing')\" onmousedown=\"nc('NDH01');\">ǰ/</a></li>\r\n\t\t<li id=\"trend\" class=\"info2\"><a href=\"javascript:;\" onclick=\"centerContentDir('7|trend')\" onmousedown=\"nc('NDH11');\">Ƽ/м</a></li>\r\n\t\t<li id=\"leisure\" class=\"info3\"><a href=\"javascript:;\" onclick=\"centerContentDir('8|leisure')\" onmousedown=\"nc('NDH21');\">/</a></li>\r\n\t\t<li id=\"life\" class=\"info4\"><a href=\"javascript:;\" onclick=\"centerContentDir('9|life')\" onmousedown=\"nc('NDH31');\">ϻ/Ȱ</a></li>\r\n\t\t<li id=\"television\" class=\"info5\"><a href=\"javascript:;\" onclick=\"centerContentDir('10|television')\" onmousedown=\"nc('NDH41');\">/TV</a></li>\r\n\t\t<li id=\"music\" class=\"info6\"><a href=\"javascript:;\" onclick=\"centerContentDir('11|music')\" onmousedown=\"nc('NDH51');\">/</a></li>\r\n\t\t<li id=\"entertainment\" class=\"info7\"><a href=\"javascript:;\" onclick=\"centerContentDir('12|entertainment')\" onmousedown=\"nc('NDH61');\">θƮ</a></li>\r\n\t</ul>\t\t\t\t\r\n\t<div id=\"curationIssueInfo\" class=\"infocontent\">\r\n\t\t<div class=\"issuebox blog\">\r\n\t\t\t<span class=\"svc\">̺α</span>\r\n\t\t\t<dl class=\"thumb\">\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt1\" href=\"http://www.cyworld.com/no1eunju/3727902\" onmousedown=\"javascript:nc('NDM32');nc2('RTC01');setNDRClickSpotStat('NDM32','http://www.cyworld.com/no1eunju/3727902');\" target=\"_blank\" title=\"[̺α] ɸ ° '' !\">ɸ <br />° '' !</a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd1\" href=\"http://www.cyworld.com/no1eunju/3727902\" onmousedown=\"javascript:nc('NDM32');nc2('RTC01');setNDRClickSpotStat('NDM32','http://www.cyworld.com/no1eunju/3727902');\" target=\"_blank\" title=\"[̺α] ɸ ° '' !\"><img src=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_05.jpg\" width=\"128\" height=\"75\" alt=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_05.jpg\" style=\"display:block;\" /><span class=\"thumbframe\" style=\"display:block;\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox egloos\">\r\n\t\t\t<span class=\"svc\">̱۷罺</span>\r\n\t\t\t<dl class=\"txt\">\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt2\" href=\"http://fndnfpt.egloos.com/1209995\" onmousedown=\"javascript:nc('NDM33');nc2('RTC02');setNDRClickSpotStat('NDM33','http://fndnfpt.egloos.com/1209995');\" target=\"_blank\" title=\"[̱۷罺]  100 ְ  ''\"> 100 ְ<br />  ''</a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd2\" href=\"http://fndnfpt.egloos.com/1209995\" onmousedown=\"javascript:nc('NDM33');nc2('RTC02');setNDRClickSpotStat('NDM33','http://fndnfpt.egloos.com/1209995');\" target=\"_blank\" title=\"[̱۷罺] 4  ð   Žϴٰ  1980  '' \">4  ð   Žϴٰ  1980  '' <img src=\"\" width=\"128\" height=\"75\" alt=\"\" style=\"display:none;border-style:hidden\" /><span class=\"thumbframe\" style=\"display:none;border-style:hidden\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox video\">\r\n\t\t\t<span class=\"svc\"></span>\r\n\t\t\t<dl class=\"txt\">\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt3\" href=\"http://pann.nate.com/video/107196492?mainfrom=isscrtnkwd\" onmousedown=\"javascript:nc('NDM34');nc2('RTC09');setNDRClickSpotStat('NDM34','http://pann.nate.com/video/107196492?mainfrom=isscrtnkwd');\" target=\"_blank\" title=\"[] ɽǮ̷ ٴ 'Ǵ' κ ο\">ɽǮ̷ ٴ<br /> 'Ǵ' κ ο</a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd3\" href=\"http://pann.nate.com/video/107196492?mainfrom=isscrtnkwd\" onmousedown=\"javascript:nc('NDM34');nc2('RTC09');setNDRClickSpotStat('NDM34','http://pann.nate.com/video/107196492?mainfrom=isscrtnkwd');\" target=\"_blank\" title=\"[] ڿ ̱  ׷ ϴ ȭ ξ ǻ ٰ?\">ڿ ̱  ׷ ϴ ȭ ξ ǻ ٰ?<img src=\"\" width=\"128\" height=\"75\" alt=\"\" style=\"display:none;border-style:hidden\" /><span class=\"thumbframe\" style=\"display:none;border-style:hidden\"></span></a></dd>\t\t\t\t\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox blog\">\r\n\t\t\t<span class=\"svc\">̺α</span>\r\n\t\t\t<dl class=\"thumb\">\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt4\" href=\"http://www.cyworld.com/LOVE050812/13028872\" onmousedown=\"javascript:nc('NDM35');nc2('RTC01');setNDRClickSpotStat('NDM35','http://www.cyworld.com/LOVE050812/13028872');\" target=\"_blank\" title=\"[̺α]  ν  ŸŸ LED ϼ\"> ν <br /> ŸŸ LED ϼ</a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd4\" href=\"http://www.cyworld.com/LOVE050812/13028872\" onmousedown=\"javascript:nc('NDM35');nc2('RTC01');setNDRClickSpotStat('NDM35','http://www.cyworld.com/LOVE050812/13028872');\" target=\"_blank\" title=\"[̺α]  ν  ŸŸ LED ϼ\"><img src=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_03.jpg\" width=\"128\" height=\"75\" alt=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_03.jpg\" style=\"display:block;\" /><span class=\"thumbframe\" style=\"display:block;\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox blog\">\r\n\t\t\t<span class=\"svc\">̺α</span>\r\n\t\t\t<dl class=\"thumb\">\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt5\" href=\"http://www.cyworld.com/dudcks09/7206449\" onmousedown=\"javascript:nc('NDM36');nc2('RTC01');setNDRClickSpotStat('NDM36','http://www.cyworld.com/dudcks09/7206449');\" target=\"_blank\" title=\"[̺α] '' û Ҵ ī Ž\">'' û Ҵ<br /> ī Ž</a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd5\" href=\"http://www.cyworld.com/dudcks09/7206449\" onmousedown=\"javascript:nc('NDM36');nc2('RTC01');setNDRClickSpotStat('NDM36','http://www.cyworld.com/dudcks09/7206449');\" target=\"_blank\" title=\"[̺α] '' û Ҵ ī Ž\"><img src=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_08.jpg\" width=\"128\" height=\"75\" alt=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_08.jpg\" style=\"display:block;\" /><span class=\"thumbframe\" style=\"display:block;\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox blog\">\r\n\t\t\t<span class=\"svc\">̺α</span>\r\n\t\t\t<dl class=\"thumb\">\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt6\" href=\"http://www.cyworld.com/president_J/8648822\" onmousedown=\"javascript:nc('NDM37');nc2('RTC01');setNDRClickSpotStat('NDM37','http://www.cyworld.com/president_J/8648822');\" target=\"_blank\" title=\"[̺α] ƹ 30 Ѱ '' ǰ \">ƹ 30 Ѱ <br />'' ǰ </a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd6\" href=\"http://www.cyworld.com/president_J/8648822\" onmousedown=\"javascript:nc('NDM37');nc2('RTC01');setNDRClickSpotStat('NDM37','http://www.cyworld.com/president_J/8648822');\" target=\"_blank\" title=\"[̺α] ƹ 30 Ѱ '' ǰ \"><img src=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_04.jpg\" width=\"128\" height=\"75\" alt=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_04.jpg\" style=\"display:block;\" /><span class=\"thumbframe\" style=\"display:block;\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox blog\">\r\n\t\t\t<span class=\"svc\">̺α</span>\r\n\t\t\t<dl class=\"txt\">\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt7\" href=\"http://www.cyworld.com/grizzly2/3883296\" onmousedown=\"javascript:nc('NDM38');nc2('RTC01');setNDRClickSpotStat('NDM38','http://www.cyworld.com/grizzly2/3883296');\" target=\"_blank\" title=\"[̺α] '' ۱⿡ Ѵ \">'' ۱⿡ <br /> </a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd7\" href=\"http://www.cyworld.com/grizzly2/3883296\" onmousedown=\"javascript:nc('NDM38');nc2('RTC01');setNDRClickSpotStat('NDM38','http://www.cyworld.com/grizzly2/3883296');\" target=\"_blank\" title=\"[̺α] ź ŭ  ǰ ۱Ⱑ      ?\">ź ŭ  ǰ ۱Ⱑ      ?<img src=\"\" width=\"128\" height=\"75\" alt=\"\" style=\"display:none;border-style:hidden\" /><span class=\"thumbframe\" style=\"display:none;border-style:hidden\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox pann\">\r\n\t\t\t<span class=\"svc\"></span>\r\n\t\t\t<dl class=\"thumb\">\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt8\" href=\"http://pann.nate.com/talk/120413489?mainfrom=isscrtnkwd\" onmousedown=\"javascript:nc('NDM39');nc2('RTC03');setNDRClickSpotStat('NDM39','http://pann.nate.com/talk/120413489?mainfrom=isscrtnkwd');\" target=\"_blank\" title=\"[]   бγ ģ ''\">  б<br /> ģ ''</a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd8\" href=\"http://pann.nate.com/talk/120413489?mainfrom=isscrtnkwd\" onmousedown=\"javascript:nc('NDM39');nc2('RTC03');setNDRClickSpotStat('NDM39','http://pann.nate.com/talk/120413489?mainfrom=isscrtnkwd');\" target=\"_blank\" title=\"[]   бγ ģ ''\"><img src=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_02.jpg\" width=\"128\" height=\"75\" alt=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_02.jpg\" style=\"display:block;\" /><span class=\"thumbframe\" style=\"display:block;\"></span></a></dd>\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t\t<div class=\"issuebox blog\">\r\n\t\t\t<span class=\"svc\">̺α</span>\r\n\t\t\t<dl class=\"thumb\">\t\t\t\t\t\t\t\r\n\t\t\t\t<dt><a id=\"curationIssueInfo_dt9\" href=\"http://www.cyworld.com/y222/3967677\" onmousedown=\"javascript:nc('NDM40');nc2('RTC01');setNDRClickSpotStat('NDM40','http://www.cyworld.com/y222/3967677');\" target=\"_blank\" title=\"[̺α]   ä   ' ' \">  ä <br />  ' ' </a></dt>\r\n\t\t\t\t<dd><a id=\"curationIssueInfo_dd9\" href=\"http://www.cyworld.com/y222/3967677\" onmousedown=\"javascript:nc('NDM40');nc2('RTC01');setNDRClickSpotStat('NDM40','http://www.cyworld.com/y222/3967677');\" target=\"_blank\" title=\"[̺α]   ä   ' ' \"><img src=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_06.jpg\" width=\"128\" height=\"75\" alt=\"http://image.nate.com/img/cms/content_pool/2012/08/0816_iss4_06.jpg\" style=\"display:block;\" /><span class=\"thumbframe\" style=\"display:block;\"></span></a></dd>\t\t\t\t\r\n\t\t\t</dl>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"infocontent\" id=\"curationIssueInfoCont\" style=\"display:none\"></div>\r\n\r\n\t<!-- Ŀ´̼ : ̽ -->\r\n\t<div class=\"lyr_open120723_curation\">\r\n\t\t<dl>\r\n\t\t\t<dd class=\"desc\" id=\"div_lyr_open120723_curation\" style=\"display:none;\">\t\t\t\t\t\t\r\n\t\t\t\t<p>\r\n\t\t\t\t<strong>̷ ! ̽  վȿ</strong>\r\n\t\t\t\t̽ Ű塯  Hot ̽ Coolϰ ص. ø ҽĵ  Hotϰ ҰԿ!\r\n\t\t\t\t</p>\r\n\t\t\t\t<a href=\"javascript:CloseLayer0723('curation');\" class=\"close\" title=\"ݱ\">ݱ</a>\r\n\t\t\t</dd>\r\n\t\t</dl>\r\n\t</div>\r\n</div>\r\n\r\n<!-- ̽ŷ -->\r\n<div class=\"ranking_wrap\">\r\n\t<h3>̽ŷ</h3>\r\n\t<ul id=\"ulRanking01\" class=\"category\" style=\"display:block;\">\r\n\t\t<li id=\"liRankingNews\" class=\"news_selected\"><a onclick=\"viewRankingNews();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDN01');\" >ǽð ɴ</a></li>\r\n\t\t<li id=\"liRankingTalk\" class=\"tok\"><a onclick=\"viewRankingTalk();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDN18');\" > </a></li>\r\n\t\t<li id=\"liRankingBlog\" class=\"blog\"><a onclick=\"viewRankingSocialUp();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDZ01');\" >ҼUP Ű</a></li>\r\n\t\t<li id=\"liRankingVideo\" class=\"video\"><a onclick=\"viewRankingBestVideo();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDN49');\" >Ʈ </a></li>\r\n\t\t<li id=\"liRankingMusic\" class=\"music\"><a onclick=\"viewRankingMusic();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDN66');\" > ǽð Ʈ</a></li>\r\n\t\t<li id=\"liRankingMovie\" class=\"movie\"><a onclick=\"viewRankingBoxOffice();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDN83');\" >ȭ ż</a></li>\r\n\t</ul>\r\n\t<ul id=\"ulRanking02\" class=\"category\" style=\"display:none;\">\r\n\t\t<li id=\"liRankingNews02\" class=\"news_selected\"><a onclick=\"viewRankingBlog();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDN34');\" >α   / </a></li>\r\n\t\t<li id=\"liRankingTalk02\" class=\"tok\"><a onclick=\"viewRankingWhy();\" style=\"cursor:pointer;\" onmousedown=\"nc('NDZ02');\" >ֶ</a></li>\r\n\t</ul>\r\n\t<!-- ǽð ɴ -->\r\n\t<div id=\"divRankingArea\" class=\"rankcontent\">\r\n\t</div>\r\n\t<p class=\"arrow_wrap\">\r\n\t\t<a class=\"prev\" href=\"javascript:rankingPaging();\" title=\"\" onmousedown=\"nc('NDL93');\"></a><a class=\"next\" href=\"javascript:rankingPaging();\" title=\"\" onmousedown=\"nc('NDL94');\" ></a>\r\n\t</p>\r\n</div>\r\n\r\n\r\n\r\n<div class=\"banner_wrap\">\r\n\t<h3>θ/̺Ʈ </h3>\r\n\t<div>\t\t\t\r\n\t\t<ul id=\"eventBanner\" class=\"promotion1\"><li><a href=\"javascript:openPromotion('http://cytogether.cyworld.com/campaign/event/warm/201207_sports.asp');\" onmousedown=\"javascript:setNcCode('NEV11|NEV13|NEV15',idxEventBanner);\"><img src=\"http://main2.nateimg.co.kr/img/cms/content_pool/2012/07/0802_13740_̺Ʈ_±.gif\" alt=\" ɱ 佺\" width=\"137\" height=\"40\"/></a></li>\r\t\t\t<li><a href=\"javascript:openPromotion('http://music.cyworld.com/event/promotion/2012/bgmstamp_2012/promotion.asp');\" onmousedown=\"javascript:setNcCode('NEV12|NEV14|NEV16',idxEventBanner);\"><img src=\"http://main.nateimg.co.kr/img/cms/content_pool/2012/07/0801_13740_bgme.gif\" alt=\" bgm\" width=\"137\" height=\"40\"/></a></li></ul>\r\n\t\t<div id=\"happynate_new\" class=\"happynate\"><a href=\"http://www.cyworld.com/sk_happynate/5892068\" onmousedown=\"happynateBannerClick(1)\"><img src=\"http://main.nateimg.co.kr/img/cms/content_pool/2012/07/120702_24556_CyApp.jpg\" width=\"246\" height=\"56\" alt=\"   ٷ ε !\" /></a></div>\t\t\t\t\t\r\n\t</div>\r\n\t<p class=\"arrow_wrap3\">\r\n\t\t<a class=\"prev\" href=\"javascript:happyNate_v1_dir('P', happyNate_ver, eventBanner_ver);\" title=\" \" onmousedown=\"nc('NEV91')\"> </a><a class=\"next\" href=\"javascript:happyNate_v1_dir('N', happyNate_ver, eventBanner_ver);\" title=\" \" onmousedown=\"nc('NEV92')\"> </a>\r\n\t</p>\r\n\t\r\n</div>\r\n\r\n\r\n</div>\r\n<div class=\"sidearea\">\r\n<div id=\"UI\" class=\"login_area\">\r\n<ul id=\"tab_login\" class=\"tab_login\">\r\n<li class=\"nate_on\"><a href=\"javascript:onclick_LoginTab('nate');\" onmousedown=\"nc('NLI41');\" onfocus=\"blur();\">Ʈ</a></li>\r\n<li class=\"cyworld_off\"><a href=\"javascript:onclick_LoginTab('cy');\" onmousedown=\"nc('NLI42');\" onfocus=\"blur();\">̿</a></li>\r\n</ul>\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\ndocument.write('<script type=\"text/javascript\" src=\"/common/secure/js/xecure_nate.js?v=20120326\"><\\/script>');\r\ndocument.write('<script type=\"text/javascript\" src=\"/common/secure/js/rsa/secure_common.js\"><\\/script>');\r\n//]]>\r\n</script>\r\n<form id=\"login\" name=\"login\" action=\"https://cyxso.cyworld.com/LoginAuth.sk\" target=\"_top\" method=\"post\" style=\"visibility: hidden; position: absolute;\" onsubmit=\"return SubmitCheck('cy');\">\r\n<input type=\"hidden\" id=\"loginEmail\" name=\"email\" />\r\n<input type=\"hidden\" id=\"loginPasswd\" name=\"passwd\" value=\"\" />\r\n<input type=\"hidden\" id=\"passwd_rsa\" name=\"passwd_rsa\" value=\"\" />\r\n<input type=\"hidden\" id=\"echk\" name=\"echk\" value=\"\" />\r\n<input type=\"hidden\" id=\"loginSafeChk\" name=\"safechk\" value=\"on\" />\r\n<input type=\"hidden\" id=\"loginstr\" name=\"loginstr\" value=\"direct\" />\r\n<input type=\"hidden\" id=\"iplevel\" name=\"iplevel\" value=\"\" />\r\n<input type=\"hidden\" name=\"redirection\" value=\"http://www.nate.com\" />\r\n<input type=\"hidden\" name=\"cpurl\" value=\"www_ndr.nate.com%2flogin\" />\r\n</form>\r\n<form id=\"f_login\" name=\"f_login\" action=\"https://xo.nate.com/LoginAuth.sk\" method=\"post\" target=\"_top\" onsubmit=\"return SubmitCheck('nate');\">\r\n<input type=\"hidden\" id=\"PASSWD_RSA\" name=\"PASSWD_RSA\" value=\"\" />\r\n<input type=\"hidden\" id=\"sso\" name=\"sso\" value=\"false\" />\r\n<input type=\"hidden\" id=\"redirect\" name=\"redirect\" value=\"http://www.nate.com\" />\r\n<input type=\"hidden\" name=\"cpurl\" value=\"www_ndr.nate.com%2flogin\" />\r\n<fieldset>\r\n<legend>αο</legend>\r\n<div class=\"mod_login\">\r\n<p class=\"login_top\">\r\n<input name=\"ID\" id=\"ID\" class=\"login_input\" type=\"text\" value=\"̵\" tabindex=\"2\" style=\"ime-mode:inactive\" onfocus=\"showKeycryptAlert();\" onblur=\"hideKeycryptAlert()\" />\r\n<select name=\"domain\" id=\"domain\" tabindex=\"3\" onkeydown=\"vkeydownDomainInput(event);\" >\r\n<option value=\"nate.com\" selected=\"selected\">nate.com</option>\r\n<option value=\"empas.com\">empas.com</option>\r\n<option value=\"lycos.co.kr\">lycos.co.kr</option>\r\n<option value=\"netsgo.com\">netsgo.com</option>\r\n</select>\r\n</p>\r\n<p class=\"login_bottom\">\r\n<label class=\"save_id\"><input id=\"SAVEID\" name=\"SAVEID\" type=\"checkbox\"  onmousedown=\"nc('NCM94');\"/> ̵ </label>\r\n<label class=\"set_home\" id=\"idStartHP\" style=\"display: none;\"><input type=\"checkbox\" id=\"checkStartHP\"  onmousedown=\"nc('NCM95');\"/>  </label>\r\n<label id=\"nateOnly\" class=\"nate_only\" style=\"display: none;\"><input type=\"checkbox\" id=\"usedNid\" name=\"usedNid\" value=\"on\" /> <a href=\"javascript:openNateLogin();\">Ʈ ̵θ α</a></label>\r\n<input name=\"PASSDM\" id=\"PASSDM\" class=\"login_input\" maxlength=\"20\" type=\"text\" value=\"йȣ\" readonly=\"readonly\" />\r\n<input name=\"PASSWD\" id=\"PASSWD\" class=\"login_input\" maxlength=\"20\" type=\"password\" tabindex=\"4\" style=\"display:none;\" onblur=\"hideKeycryptAlert();vBlurPassInput();\" onfocus=\"showKeycryptAlert()\" enc=\"on\" />\r\n<input name=\"btnLOGIN\" id=\"btnLOGIN\" class=\"btn_login\" type=\"submit\" value=\"α\" tabindex=\"5\" onkeydown=\"vkeydownSubmit(event);\" />\r\n</p>\r\n</div>\r\n<div class=\"mod_secure\">\r\n<p class=\"info_secure\" title=\"Ű庸 ܰ ϱ\" onclick=\"xXecurePop.openWin(1);\"><span id=\"securityText\">1</span>ܰ</p>\r\n<div id=\"securityBar\" class=\"security_bar level1\">\r\n<dl>\r\n<dt>ȷα ܰ </dt>\r\n<dd>\r\n<iframe src=\"\" id=\"xXecureIfrm\" name=\"xXecureIfrm\" frameborder=\"0\" scrolling=\"no\" title=\"OTP Level Bar\" width=\"100\" height=\"100\"></iframe>\r\n</dd>\r\n</dl>\r\n</div>\r\n<a class=\"btn_ip\" href=\"javascript:xXecurePop.openWin(3);\"><span id=\"ipLevelText\" class=\"level2\" title=\"IP ڼ \"></span></a>\r\n</div>\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n\tif (getFValue() == \"cymain\") { setLoginTab(false); }\r\n\tfunction SubmitCheck(svc) {\r\n\t\tchkMobile();\r\n\t\tsetStartPageLginBox();\r\n\t\tif (gLogin) { if (getThisLoginTab() == svc) { return true; } else { return false; } }\r\n\t\telse { return false; }\r\n\t}\r\n\tinitLogin();\r\n\tnateLogin = new NateLogin('f_login', 'btnLOGIN', 'xo.nate.com/servlets/EncLoginServlet', '̵', 'йȣ');\r\n\tExecBlockCyCookie();\r\n\tvar ipvalue = xCookie.getSubCookie(\"LOGIN\", \"iplevel\");\r\n\tif (ipvalue == undefined) { ipvalue = 2; }\r\n\t$(\"iplevel\").value = ipvalue;\r\n\t$('xXecureIfrm').src = \"/common/secure/login_ifrm_level.html?v=2012032601\";\r\n//]]>\r\n</script>\r\n</fieldset>\r\n</form>\r\n<p class=\"login_account\">\r\n<a title=\"̵ йȣ ã\" href=\"javascript:onclick_Find();\">̵ / йȣ ã</a><span>|</span><a title=\"ȸ\" href=\"javascript:onclick_Join();\"><strong>ȸ</strong></a>\r\n</p>\r\n<div id=\"layerXKDisabled\" class=\"otp_layer\" style=\"display: none\">\r\n<div class=\"layer_content\"></div>\r\n<a onclick=\"xXecureLayer.LayerClose();\" class=\"close\">ݱ</a>\r\n</div>\r\n<div id=\"XecureKey\" style=\"visibiltiy: hidden; position: absolute; width: 0px; height: 0px;\"></div>\r\n<div id=\"XecureDiv\" style=\"visibiltiy: hidden; position: absolute; width: 0px; height: 0px;\"></div>\r\n</div>\r\n\r\n\r\n\r\n\r\n\r\n<div id=\"shopLoading\">\r\n<iframe width=\"280\" height=\"598\" scrolling=\"no\" id=\"ifrShopping\" frameborder=\"0\" src=\"\" title=\"ο \"></iframe>\r\n<div id=\"divTodayShopping\" class=\"shop_banner\" style=\"display:none;\">\r\n\t\t <a class=\"banner\" onclick=\"viewTodayShop();\" style=\"cursor:pointer;\"><img id=\"imgTodayShopping\" src=\"\" width=\"278\" height=\"83\" alt=\"\" /></a>\r\n\t\t <p class=\"arrow_wrap\">\r\n\t\t\t\t\t<a class=\"prev\" href=\"#\" title=\" ǰ \" onclick=\"NateContent3.Move('TodayShopping_v1', 'P');return false;\" onmouseover=\"NateContent3.Pause('TodayShopping_v1');\" onmouseout=\"NateContent3.Play('TodayShopping_v1');\" onmousedown=\"nc('NFI05');\"> ǰ </a><a class=\"next\" href=\"#\" title=\" ǰ \"  onclick=\"NateContent3.Move('TodayShopping_v1', 'N');return false;\" onmouseover=\"NateContent3.Pause('TodayShopping_v1');\" onmouseout=\"NateContent3.Play('TodayShopping_v1');\" onmousedown=\"nc('NFI06');\"> ǰ </a>\r\n\t\t </p>\r\n</div>\r\n</div>\r\n<div class=\"gift_wrap\">\r\n<h3><a href=\"http://www.cyworld.com/mall/mall5_index.asp?inflow=NL10\" onmousedown=\"nc('NGS01');\"></a></h3>\r\n<p class=\"gift_cate\"><a href=\"http://www.cyworld.com/mall/mall5_decoration_index.asp?inflow=NL10&amp;effect_cd=2&amp;decodir=minihp\" onmousedown=\"nc('NGS02');\">Ų</a> <a href=\"http://www.cyworld.com/mall/mall5_decoration_index.asp?inflow=NL10&amp;effect_cd=35\" onmousedown=\"nc('NGS04');\">۲</a> <a href=\"http://www.cyworld.com/mall/mall5_index.asp?inflow=NL10&amp;urlstr=/mall/myAvatar/mall7_myAvatar_sub.asp\" onmousedown=\"nc('NGS05');\">̴Ϲ</a></p>\r\n\r\n\r\n<div id=\"giftStore_v2_logout\">\r\n<ul id=\"giftStore_v2\" class=\"gift_list\" onmouseover=\"NateContent2.Pause('GiftStore_v2');\" onmouseout=\"NateContent2.Play('GiftStore_v2');\">\r\n<li>\r\n<p id=\"recommend1\" class=\"recommend\" style=\"display:none;\">õ</p>\r\n<dl class=\"gift_item\">\r\n<dd><span><a href=\"javascript:showGift('152738', '2', 0);\" onmousedown=\"javascript:setNcCode('NGS11|NGS21|NGS31',idxGiftStore_v2);\"><img src=\"http://c1img.nate.com/img/mall/items2/2012/07/1_angrybird_skin_6_s_c.gif\" width=\"80\" height=\"80\" alt=\"[Ų] ƶ \" /></a></span></dd>\r\n<dt><a class=\"cate\" href=\"http://www.cyworld.com/mall/mall5_decoration_index.asp?effect_cd=2&amp;decodir=minihp&amp;inflow=NL10\" onmousedown=\"javascript:setNcCode('NGS09|NGS09|NGS09',idxGiftStore_v2);\"><span>Ų</span></a><a href=\"javascript:showGift('152738', '2', 0);\" onmousedown=\"javascript:setNcCode('NGS11|NGS21|NGS31',idxGiftStore_v2);\">ƶ...</a></dt>\r\n</dl>\r\n</li>\r\n<li>\r\n<p id=\"recommend2\" class=\"recommend\" style=\"display:none;\">õ</p>\r\n<dl class=\"gift_item\">\r\n<dd><span><a href=\"javascript:showGift('17005210', '400', 0);\" onmousedown=\"javascript:setNcCode('NGS12|NGS22|NGS32',idxGiftStore_v2);\"><img src=\"http://c1img.nate.com/img/myAvatar/2012/myAvatar_17005210_1.gif\" alt=\"[̴Ϲ] ޱ׸! \" /></a></span></dd>\r\n<dt><a class=\"cate\" href=\"http://www.cyworld.com/mall/mall5_index.asp?urlstr=/mall/myAvatar/mall7_myAvatar_sub.asp&amp;inflow=NL10\" onmousedown=\"javascript:setNcCode('NGS09|NGS09|NGS09',idxGiftStore_v2);\"><span>̴Ϲ</span></a><a href=\"javascript:showGift('17005210', '400', 0);\" onmousedown=\"javascript:setNcCode('NGS12|NGS22|NGS32',idxGiftStore_v2);\">ޱ׸!...</a></dt>\r\n</dl>\r\n</li>\r\n<li>\r\n<p id=\"recommend3\" class=\"recommend\" style=\"display:none;\">õ</p>\r\n<dl class=\"gift_item\">\r\n<dd><span><a href=\"javascript:showGift('144689', '29', 0);\" onmousedown=\"javascript:setNcCode('NGS13|NGS23|NGS33',idxGiftStore_v2);\"><img src=\"http://c1img.nate.com/img/mall/items/mainstyle/110917_ab4_m_c.gif\" width=\"80\" height=\"80\" alt=\"[޴ȿ]  _s\" /></a></span></dd>\r\n<dt><a class=\"cate\" href=\"http://www.cyworld.com/mall/mall5_decoration_index.asp?inflow=NL10&amp;effect_cd=29&amp;decodir=minihp\" onmousedown=\"javascript:setNcCode('NGS09|NGS09|NGS09',idxGiftStore_v2);\"><span>޴ȿ</span></a><a href=\"javascript:showGift('144689', '29', 0);\" onmousedown=\"javascript:setNcCode('NGS13|NGS23|NGS33',idxGiftStore_v2);\">...</a></dt>\r\n</dl>\r\n</li>\r\n</ul>\r\n</div>\r\n\r\n<p class=\"arrow_wrap\">\r\n<a class=\"prev\" href=\"#\" onclick=\"NateContent2.Move('GiftStore_v2', 'P');return false;\" title=\"  \" onmousedown=\"nc('NGS91');\" onmouseover=\"NateContent2.Pause('GiftStore_v2');\" onmouseout=\"NateContent2.Play('GiftStore_v2');\">  </a><a class=\"next\" href=\"#\" onclick=\"NateContent2.Move('GiftStore_v2', 'N');return false;\" title=\"  \" onmousedown=\"nc('NGS92');\" onmouseover=\"NateContent2.Pause('GiftStore_v2');\" onmouseout=\"NateContent2.Play('GiftStore_v2');\">  </a>\r\n</p>\r\n</div>\r\n<div class=\"sub_svc_download\">\r\n\r\n<h3 class=\"tit_mApplication\"><a href=\"http://mobile.nate.com/apps/index.html\" onmousedown=\"nc('NDL21');\"> ø̼ </a></h3>\r\n<ul id=\"mApplication\" class=\"mApp_list\"><li><a href=\"http://mobile.nate.com/apps/sub.html?type=nateonuc\" onmousedown=\"javascript:setNcCode('NDL22|NDL26|NDL30|NDL34',idxMApplication);\"><img src=\"http://main.nateimg.co.kr/img/cms/content_pool/2012/03/05_nateonuc.gif\" alt=\"ƮUC\" width=\"48\" height=\"45\"/>ƮUC</a></li>\r<li><a href=\"http://mobile.nate.com/apps/sub.html?type=mail\" onmousedown=\"javascript:setNcCode('NDL23|NDL27|NDL31|NDL35',idxMApplication);\"><img src=\"http://main2.nateimg.co.kr/img/cms/content_pool/2011/10/06_mailApp.gif\" alt=\"Ʈ\" width=\"48\" height=\"45\"/>Ʈ</a></li>\r<li><a href=\"http://mobile.nate.com/apps/sub.html?type=starhomepy\" onmousedown=\"javascript:setNcCode('NDL24|NDL28|NDL32|NDL36',idxMApplication);\"><img src=\"http://main.nateimg.co.kr/img/cms/content_pool/2011/10/07_starhompy.jpg\" alt=\"ŸȨ\" width=\"48\" height=\"45\"/>ŸȨ</a></li>\r<li><a href=\"http://mobile.nate.com/apps/sub.html?type=cyflag\" onmousedown=\"javascript:setNcCode('NDL25|NDL29|NDL33|NDL37',idxMApplication);\"><img src=\"http://main2.nateimg.co.kr/img/cms/content_pool/2011/10/08_cyflag.jpg\" alt=\"÷\" width=\"48\" height=\"45\"/>÷</a></li></ul>\r\n<div class=\"nateon_down\"><a href=\"http://nateonweb.nate.com/download/\"  onmousedown=\"nc('NDL01');\">NATEON pcٿε</a></div>\r\n<p class=\"arrow_wrap\">\r\n<a class=\"prev\" href=\"javascript:mApplication_dir('P', mApplication_ver);\" onmousedown=\"nc('NDL91');\" title=\" ø̼ \"> ø̼ </a><a class=\"next\" href=\"javascript:mApplication_dir('N',mApplication_ver);\" onmousedown=\"nc('NDL92');\" title=\" ø̼ \"> ø̼ </a>\r\n</p>\r\n</div>\r\n<div id=\"ad_layer7\" class=\"banner_area\" onmousedown=\"nc('NEV79');\">\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n    document.write('<script type=\"text/javascript\" src=\"http://cyad.nate.com/js.kti/nate/main@band_Position1\"><\\/script>');\r\n//]]>\r\n</script>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n<hr />\r\n<div id=\"footer\">\r\n<dl id=\"cmsNotice\" class=\"notice_list\" style=\"display:block\"><dt><a href=\"http://helpdesk.nate.com/natenotice/list.asp\" onmousedown=\"nc('NFT01')\"></a></dt>\r<dd><a id=\"notice_row\" href=\"http://helpdesk.nate.com/natenotice/view.asp?number_seq=424&amp;page=1\" onmousedown=\"nc('NFT02')\">̴Ȩ ±  ȳ</a></dd></dl>\r\n<dl id=\"cmsSvcInfo\" class=\"happynate_list\"><dt><a href=\"http://clean.nate.com/\" target=\"_blank\" onmousedown=\"nc('NFT03')\">Ŭ ķ</a></dt>\r<dd><a href=\"http://clean.nate.com/contents/good02.asp\" target=\"_blank\" onmousedown=\"nc('NFT04')\"> Ͻô  Ǵ?</a></dd></dl>\r\n<ul class=\"view_all\">\r\n<li>\r\n<a href=\"javascript:;\" id=\"otp_footer\" onclick=\"showHelpDesk();\" class=\"otp\">OTP</a> &nbsp;\r\n<a href=\"http://helpdesk.nate.com/\" onmousedown=\"nc('NFT11')\" class=\"cs_center\">Ʈ/̿ </a><span>I</span>\r\n<a href=\"http://www.nate.com/sitemap/index.aspx\" onmousedown=\"nc('NFT12')\">Ʈ</a>\r\n<div id=\"otp_select\" class=\"otp_select\" style=\"display: none\"></div>\r\n</li>\r\n</ul>\r\n<dl class=\"footer_main\"><dt>Ʈ Ǫ </dt><dd><a href=\"http://www.skcomms.co.kr\" target=\"_blank\" onmousedown=\"nc('NFT21')\">ȸҰ</a><span>I</span><a href=\"https://recruit.nate.com/\" target=\"_blank\" onmousedown=\"nc('NFT22')\">ä</a><span>I</span><a href=\"http://partners.nate.com\" target=\"_blank\" onmousedown=\"nc('NFT23')\">޾ȳ</a><span>I</span><a href=\"http://www.nate.com/footer/legal/index.html\" onmousedown=\"nc('NFT24')\">񽺾</a><span>I</span><a href=\"http://www.nate.com/footer/privacy/index.html\" onmousedown=\"nc('NFT25')\"><strong>޹ħ</strong></a><span>I</span><a href=\"http://www.nate.com/footer/privacy/index.html#footer\" onmousedown=\"nc('NFT26')\">ûҳ⺸ȣå</a><span>I</span><a href=\"http://antispam.nate.com/spam_policy01.html\" onmousedown=\"nc('NFT27')\">Թå</a><span>I</span><a href=\"http://business.nate.com/\" target=\"_blank\" onmousedown=\"nc('NFT29')\"></a><span>I</span><a href=\"http://map.nate.com/register/intro.map\" target=\"_blank\" onmousedown=\"nc('NFT30')\">˻&middot;</a><span>I</span><a href=\"http://devsquare.nate.com/openApi/index\" target=\"_blank\" onmousedown=\"nc('NHA11')\">API</a></dd></dl>\r\n<div class=\"copyright\">Copyright &copy; <a href=\"http://www.skcomms.co.kr\" target=\"_blank\" onmousedown=\"nc('NFT41')\"><strong><span class=\"sk\">SK</span> Communications.</strong></a> All rights reserved.</div>\r\n<p class=\"arrow_wrap_notice\"><a class=\"prev\" href=\"javascript:cmsNotice_dir('P', cmsNotice_ver);\" onmousedown=\"nc('NFT91')\" title=\" \"> </a><a class=\"next\" href=\"javascript:cmsNotice_dir('N', cmsNotice_ver);\" onmousedown=\"nc('NFT92')\" title=\" \"> </a></p>\r\n</div>\r\n\r\n<div id=\"cbLayer\" style=\"display: none;\"></div>\r\n\r\n<div id=\"ad_area\">\r\n<div id=\"ad_layer1\" class=\"default\"><div class=\"loading\">ε~</div></div>\r\n<div id=\"ad_frame1\" style=\"display: none\"></div>\r\n<div id=\"ad_layer2\" class=\"default2\"><div class=\"loading\">ε~</div></div>\r\n<div id=\"ad_layer3\" class=\"default3\"></div>\r\n<div id=\"ad_layer4\"></div>\r\n\r\n<div id=\"gnb_promotion\" class=\"banner_promotion\"><a href=\"http://apps.cy.nate.com/Event/View?event_id=1\" onmousedown=\"nc('NBI11')\" target=\"_blank\"><img src=\"http://main2.nateimg.co.kr/img/cms/content_pool/2012/08/۽_20120813.gif\" width=\"55\" height=\"110\" alt=\" ۽_1Ʈ\" /></a></div>\r\n</div>\r\n<div id=\"plus_footer\" class=\"setting_moblie\" style=\"display: none\"></div>\r\n</div>\r\n<span id=\"layerTemp\"></span>\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\nNateContent3.addItem(\"TodayShopping_v1\", iSvcSeq, '/main/v1/data/jsonTodayShopping.js?v=201208161204', \"todayShopping_fill\", '');\r\n\r\ndocument.write('<script type=\"text/javascript\" src=\"/main/v1/js/browser.js\"><\\/script>');\r\ndocument.write('<script type=\"text/javascript\" src=\"/main/v1/js/nate_contents_v20120719.js?v=201208131402_20120719\"><\\/script>');\r\ndocument.write('<script type=\"text/javascript\" src=\"/main/v1/contents/newstimeline_v20120719.js?v=201208161010_20120207\"><\\/script>');\r\n//]]>\r\n</script>\r\n<div id=\"stock_info\" style=\"display: none; position: absolute\"><script type=\"text/javascript\">\r//<![CDATA[\r\tfillNewsEstate('|¦Ư EUȸ ƽþƿ', 'http://stock.nate.com/news/section/read?section=eco04&amp;date=20111213&amp;page=4&amp;keynum=20111213n20814');\r//]]>\r</script></div>\r\n\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n\t$('search').setAttribute('autocomplete', 'off');\r\n\tdocument.write('<script type=\"text/javascript\" src=\"/main/srv/total/if_search_stock.aspx\"><\\/script>');\r\n\tfunction initSearchStock() { setSearchRank(); NateContent.addItem(\"Stock\", \"\", \"fillStock\", jsonStock, true, true); }\r\n\thappynateEvent(\"\", \"\"); // Ŀ丮 ̺Ʈ\r\n\tsetMainCoverstory(); initLoginArea();\r\n\tvar verShop = \"201208161204\";\r\n\tvar verCss = \"201208021034\";\r\n//]]>\r\n</script>\r\n<script async type=\"text/javascript\" src=\"/main/srv/ad/natead_071.js?v=20120731\"></script>\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n\tfillEarn(); if (getFValue() != \"mnate\") { ExecCommuniBarFrame(true); }\r\n\tNateContent2.addItem(\"GiftStore_v2\", iSvcSeq, '/main/v1/data/jsonGiftStore_v20090930.js?v=201208161203', \"fillGiftStore_v3\", '');\r\n\tgetLonodonOlympicIssueLayer();\r\n\r\n\tvar whyArea_ver = \"201208161206\";\r\n\tvar eventBanner_ver = \"201208161207\";\r\n\tvar cmsNotice_ver = \"201208161206\";\r\n\tvar nc_ver = \"201208161203\";\r\n\tvar mApplication_ver = \"201208161135\";\t\r\n\tvar floatingSearch_ver = \"201208161230\";\r\n\tvar happyNate_ver = \"201208161207\";\r\n\tvar gnbNewService_ver = \"201208161203\";\r\n\tvar todayShopping_ver = \"201208161204\";\r\n\tvar isAutoRefresh = true;\r\n\tvar timeRollingContents;\r\n\r\n\t// ť̼   ߰\r\n\tvar infoMenu_ver = \"201208161230\";\r\n\tvar infoKeyword1_ver = \"201208161205\";\r\n\tvar infoKeyword2_ver = \"201208161205\";\r\n\tvar infoKeyword3_ver = \"201208161230\";\r\n\tvar infoKeyword4_ver = \"201208161205\";\r\n\tvar infoKeyword5_ver = \"201208161205\";\r\n\tvar infoWellbeing_ver = \"201208161201\";\r\n\tvar infoTrend_ver = \"201208161201\";\r\n\tvar infoLeisure_ver = \"201208161201\";\r\n\tvar infoLife_ver = \"201208161202\";\r\n\tvar infoTV_ver = \"201208161202\";\r\n\tvar infoMusic_ver = \"201208161202\";\r\n\tvar infoEntertainment_ver = \"201208161202\";\r\n\t\t\r\n\tvar londonIssue_ver = \"201208122203\";\r\n\tvar centerContent_ver = \"201208131402\";\r\n\r\n\r\n\r\n\ttry { if (isNateLogin && loginType != \"nate\") { CheckJoinLayer(); } } catch (e) { }\r\n\r\n\tfunction onTimedEvent_Nate(nateTime) {\r\n\t\tsetTimeout(\"onTimedEvent_Nate(\" + (++nateTime) + \");\", 1000);\r\n\t\tvar refreshTime = (isNateLogin) ? 240 : 300;\r\n\t\t\r\n\t\tif (refreshTime == nateTime && isAutoRefresh) {\r\n\t\t\ttry {\r\n\t\t\t\tnc4(\"[www_ndretc.nate.com/main/autorefresh/??ndru3=\" + ndru3Status + \"&ndrl3=\" + ndrl3Status + \"]\");\r\n\t\t\t\tlocation.href = \"http://www.nate.com/?f=\" + getAutoRefreshParam();\r\n\r\n\t\t\t}\r\n\t\t\tcatch (e) {\t}\r\n\t\t}\r\n\t\tif (nateTime % 10 == 0) { // 10\r\n\t\t\ttry { newsBox.loadContents(); } catch (e) { }\r\n\t\t\ttry { newsBox2.loadContents(); } catch (e) { }\r\n\t\t\ttry { NateContent.Move('Stock', 'A'); } catch (e) { }\r\n\t\t\ttry { whyUpBox.loadContents(); } catch (e) { }\r\n\t\t\ttry { NateContent2.Move('GiftStore_v2', 'A'); } catch (e) { }\r\n\t\t\ttry { NateContent3.Move('TodayShopping_v1', 'A'); } catch (e) { }\r\n\t\t}\r\n\t}\r\n\t\r\n\tonTimedEvent_Nate(0);\r\n\tif (isiPad) {\r\n\t\tdocument.write('<img src=\"http://stat.nate.com/stat/stat.tiff?cp_url=[www_ndr.nate.com/ipad/]\" width=\"0\"  height=\"0\" border=\"0\" alt=\"\" />');\r\n\t\t$(\"viewMNateBtn\").style.display = \"none\";\r\n\t}\r\n\tif (isGalaxyTab) {\r\n\t\t$(\"viewMNateBtn\").style.display = \"none\";\r\n\t}\r\n\tif (getFValue() == \"mnate\") {\r\n\t\t$(\"viewMNateBtn\").style.display = \"none\";\r\n\t}\r\n\tfunction RenderGameList() { }; function RenderAppList() { };\r\n\r\n\tfunction fnMoveWhPage() {\r\n\t\tnc4(\"[www_ndretc.nate.com/main/replyrefresh/]\");\r\n\t\tdocument.location.href = \"http://www.nate.com?f=whnc\";\r\n\t}\r\n\t\r\n\tfunction fnMovePage(url) {\r\n\t    document.location.href = 'http://www.nate.com' + url;\r\n    }\r\n\t\t\r\n//]]>\r\n</script>\r\n\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\nCFN_type = \"\"; CFN_id = \"\"; CFN_cn = \"\"; CFN_cmn = \"\";\r\nCFN_link = \"\"; CFN_link_id = \"\"; CFN_link_stat_cd = \"\";\r\nid = (CFN_type == \"N\") ? CFN_id : CFN_link_id; cyid = (CFN_type == \"C\") ? CFN_id : CFN_link_id;\r\nname = CFN_cn; isEmpas = (\"False\" == \"True\"); refererDomain = \"\"; isMobile = \"F\";\r\nCFN_cust_tp_cd = \"\"; CFN_link_cust_tp_cd = \"\";\r\nvar ndrLoginStatus = (isNateLogin) ? \"login\" : ((bLogout) ? \"byebye\" : \"logout\");\r\ntry { divReferer(refererDomain); } catch (e) { }\r\ntry { if (isNateLogin) fillPersonInfo(); fnGetMainImage();} catch (e) { }\r\n\r\npageEnd('50.193.8.69', '');\r\n//]]>\r\n</script>\r\n</body>\r\n</html>"
  },
  {
    "path": "testdata/gb18030.html",
    "content": "<!doctype html><html><head><meta http-equiv=\"Content-Type\" content=\"text/html;charset=gb2312\"><title>ٶһ£֪      </title><style>html{overflow-y:auto}body{font:12px arial;text-align:center;background:#fff}body,p,form,ul,li{margin:0;padding:0;list-style:none}body,form,#fm{position:relative}td{text-align:left}img{border:0}a{color:#00c}a:active{color:#f60}#u{color:#999;padding:4px 10px 5px 0;text-align:right}#u a{margin:0 5px}#u .reg{margin:0}#m{width:680px;margin:0 auto;}#nv a,#nv b,.btn,#lk{font-size:14px}#fm{padding-left:90px;text-align:left}input{border:0;padding:0}#nv{height:19px;font-size:16px;margin:0 0 4px;text-align:left;text-indent:117px;}.s_ipt_wr{width:418px;height:30px;display:inline-block;margin-right:5px;background:url(http://s1.bdstatic.com/r/www/img/i-1.0.0.png) no-repeat -304px 0;border:1px solid #b6b6b6;border-color:#9a9a9a #cdcdcd #cdcdcd #9a9a9a;vertical-align:top}.s_ipt{width:405px;height:22px;font:16px/22px arial;margin:5px 0 0 7px;background:#fff;outline:none;-webkit-appearance:none}.s_btn{width:95px;height:32px;padding-top:2px\\9;font-size:14px;background:#ddd url(http://s1.bdstatic.com/r/www/img/i-1.0.0.png);cursor:pointer}.s_btn_h{background-position:-100px 0}.s_btn_wr{width:97px;height:34px;display:inline-block;background:url(http://s1.bdstatic.com/r/www/img/i-1.0.0.png) no-repeat -202px 0;*position:relative;z-index:0;vertical-align:top}#lg img{vertical-align:top;margin-bottom:3px}#lk{margin:33px 0}#lk span{font:14px \"\"}#lm{height:60px}#lh{margin:16px 0 5px;word-spacing:3px}.tools{position:absolute;top:-4px;*top:10px;right:-13px;}#mHolder{width:62px;position:relative;z-index:296;display:none}#mCon{height:18px;line-height:18px;position:absolute;cursor:pointer;padding:0 18px 0 0;background:url(http://s1.bdstatic.com/r/www/img/bg-1.0.0.gif) no-repeat right -134px;background-position:right -136px\\9}#mCon span{color:#00c;cursor:default;display:block}#mCon .hw{text-decoration:underline;cursor:pointer}#mMenu a{width:100%;height:100%;display:block;line-height:22px;text-indent:6px;text-decoration:none;filter:none\\9}#mMenu,#user ul{box-shadow:1px 1px 2px #ccc;-moz-box-shadow:1px 1px 2px #ccc;-webkit-box-shadow:1px 1px 2px #ccc;filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color=\"#cccccc\")\\9;}#mMenu{width:56px;border:1px solid #9b9b9b;list-style:none;position:absolute;right:7px;top:28px;display:none;background:#fff}#mMenu a:hover{background:#ebebeb}#mMenu .ln{height:1px;background:#ebebeb;overflow:hidden;font-size:1px;line-height:1px;margin-top:-1px}#cp,#cp a{color:#77c}#seth{display:none;behavior:url(#default#homepage)}#setf{display:none;}#sekj{margin-left:14px;}</style>\r\n<script type=\"text/javascript\">function h(obj){obj.style.behavior='url(#default#homepage)';var a = obj.setHomePage('http://www.baidu.com/');}</script></head>\r\n\r\n<body><div id=\"u\"><a href=\"http://www.baidu.com/gaoji/preferences.html\" name=\"tj_setting\"></a>|<a href=\"https://passport.baidu.com/v2/?login&tpl=mn&u=http%3A%2F%2Fwww.baidu.com%2F\" name=\"tj_login\" id=\"lb\" onclick=\"return false;\">¼</a><a href=\"https://passport.baidu.com/v2/?reg&regType=1&tpl=mn&u=http%3A%2F%2Fwww.baidu.com%2F\" target=\"_blank\" name=\"tj_reg\" class=\"reg\">ע</a></div>\r\n<div id=\"m\"><p id=\"lg\"><img src=\"http://www.baidu.com/img/baidu_sylogo1.gif\" width=\"270\" height=\"129\" ></p>\r\n<p id=\"nv\"><a href=\"http://news.baidu.com\">&nbsp;</a><b>&nbsp;ҳ</b><a href=\"http://tieba.baidu.com\">&nbsp;</a><a href=\"http://zhidao.baidu.com\">֪&nbsp;</a><a href=\"http://mp3.baidu.com\">MP3</a><a href=\"http://image.baidu.com\">ͼ&nbsp;Ƭ</a><a href=\"http://video.baidu.com\">&nbsp;Ƶ</a><a href=\"http://map.baidu.com\">&nbsp;ͼ</a></p><div id=\"fm\"><form name=\"f\" action=\"/s\"><span class=\"s_ipt_wr\"><input type=\"text\" name=\"wd\" id=\"kw\" maxlength=\"100\" class=\"s_ipt\"></span><input type=\"hidden\" name=\"rsv_bp\" value=\"0\"><input type=\"hidden\" name=\"rsv_spt\" value=\"3\"><span class=\"s_btn_wr\"><input type=\"submit\" value=\"ٶһ\" id=\"su\" class=\"s_btn\" onmousedown=\"this.className='s_btn s_btn_h'\" onmouseout=\"this.className='s_btn'\"></span></form><span class=\"tools\"><span id=\"mHolder\"><div id=\"mCon\"><span>뷨</span></div></span></span><ul id=\"mMenu\"><li><a href=\"#\" name=\"ime_hw\">д</a></li><li><a href=\"#\" name=\"ime_py\">ƴ</a></li><li class=\"ln\"></li><li><a href=\"#\" name=\"ime_cl\">ر</a></li></ul></div>\r\n<p id=\"lk\"><a href=\"http://baike.baidu.com\">ٿ</a><a href=\"http://wenku.baidu.com\">Ŀ</a><a href=\"http://www.hao123.com\">hao123</a><span> | <a href=\"http://www.baidu.com/more/\">&gt;&gt;</a></span></p><p id=\"lm\"></p><p ><a id=\"seth\" onClick=\"h(this)\" href=\"http://utility.baidu.com/traf/click.php?id=215&url=http://www.baidu.com\" onmousedown=\"return ns_c({'fm':'behs','tab':'homepage','pos':0})\">ѰٶΪҳ</a><a id=\"setf\" href=\"http://www.baidu.com/cache/sethelp/index.html\" onmousedown=\"return ns_c({'fm':'behs','tab':'favorites','pos':0})\" target=\"_blank\">ѰٶΪҳ</a><span id=\"sekj\"><a href=\"http://www.baidu.com/search/baidukuijie_mp.html\" target=\"_blank\" onmousedown=\"return ns_c({'fm':'behs','tab':'kuaijie','pos':1})\">Ѱٶӵ</a></span></p>\r\n<p id=\"lh\"><a href=\"http://e.baidu.com/?refer=888\">ٶƹ</a> | <a href=\"http://top.baidu.com\">ư</a> | <a href=\"http://home.baidu.com\">ڰٶ</a> | <a href=\"http://ir.baidu.com\">About Baidu</a></p><p id=\"cp\">&copy;2012 Baidu <a href=\"/duty/\">ʹðٶǰض</a> <a href=\"http://www.miibeian.gov.cn\" target=\"_blank\">ICP֤030173</a> <img src=\"http://www.baidu.com/cache/global/img/gs.gif\"></p></div></body>\r\n\r\n<script>var bds={se:{},comm : {ishome : 1,sid : \"\",user : \"\",username : \"\",sugHost : \"http://suggestion.baidu.com/su\",loginAction : []}}</script><script type=\"text/javascript\" src=\"http://s1.bdstatic.com/r/www/cache/global/js/home-1.3.js\"></script><script>var bdUser = null;var w=window,d=document,n=navigator,k=d.f.wd,a=d.getElementById(\"nv\").getElementsByTagName(\"a\"),isIE=n.userAgent.indexOf(\"MSIE\")!=-1&&!window.opera;(function(){if(/q=([^&]+)/.test(location.search)){k.value=decodeURIComponent(RegExp[\"\\x241\"])}})();if(n.cookieEnabled&&!/sug?=0/.test(d.cookie)){bds.se.sug();};function addEV(o, e, f){if(w.attachEvent){o.attachEvent(\"on\" + e, f);}else if(w.addEventListener){ o.addEventListener(e, f, false);}}function G(id){return d.getElementById(id);}function ns_c(q){var p = encodeURIComponent(window.document.location.href), sQ = '', sV = '', mu='', img = window[\"BD_PS_C\" + (new Date()).getTime()] = new Image();for (v in q) {sV = q[v];sQ += v + \"=\" + sV + \"&\";} mu= \"&mu=\" + p ;img.src = \"http://nsclick.baidu.com/v.gif?pid=201&pj=www&rsv_sid=&\" + sQ + \"path=\"+p+\"&t=\"+new Date().getTime();return true;}if(/\\bbdime=[12]/.test(d.cookie)){document.write('<script src=http://s1.bdstatic.com/r/www/cache/ime/js/openime-1.0.0.js><\\/script>');}(function(){var u = G(\"u\").getElementsByTagName(\"a\"), nv = G(\"nv\").getElementsByTagName(\"a\"), lk = G(\"lk\").getElementsByTagName(\"a\"), un = \"\";var tj_nv = [\"news\",\"tieba\",\"zhidao\",\"mp3\",\"img\",\"video\",\"map\"];var tj_lk = [\"baike\",\"wenku\",\"hao123\",\"more\"];un = bds.comm.user == \"\" ? \"\" : bds.comm.user;function _addTJ(obj){addEV(obj, \"mousedown\", function(e){var e = e || window.event;var target = e.target || e.srcElement;ns_c({'fm':'behs','tab':target.name||'tj_user','un':encodeURIComponent(un)});});}for(var i = 0; i < u.length; i++){_addTJ(u[i]);}for(var i = 0; i < nv.length; i++){nv[i].name = 'tj_' + tj_nv[i];}for(var i = 0; i < lk.length; i++){lk[i].name = 'tj_' + tj_lk[i];}})();(function() {var links = {'tj_news':   ['word', 'http://news.baidu.com/ns?tn=news&cl=2&rn=20&ct=1&ie=utf-8'],'tj_tieba':  ['kw', 'http://tieba.baidu.com/f?ie=utf-8'],'tj_zhidao': ['word', 'http://zhidao.baidu.com/search?pn=0&rn=10&lm=0'],'tj_mp3':    ['word', 'http://mp3.baidu.com/m?f=ms&tn=baidump3&ct=134217728&rn=&lm=-1&pn=30&ie=utf-8'],'tj_img':    ['word', 'http://image.baidu.com/i?ct=201326592&cl=2&nc=1&lm=-1&st=-1&tn=baiduimage&istype=2&fm=&pv=&z=0&ie=utf-8'],'tj_video':  ['word', 'http://video.baidu.com/v?ct=301989888&s=25&ie=utf-8'],'tj_map':    ['wd', 'http://map.baidu.com/?newmap=1&ie=utf-8&s=s'],'tj_baike':  ['word', 'http://baike.baidu.com/search/word?pic=1&sug=1&enc=utf8'],'tj_wenku':  ['word', 'http://wenku.baidu.com/search?ie=utf-8']};var domArr = [G('nv'), G('lk')],kw = G('kw');for (var i = 0, l = domArr.length; i < l;  i++) {domArr[i].onmousedown = function(e) {e = e || window.event;var target = e.target || e.srcElement,name = target.getAttribute('name'),items = links[name],reg = new RegExp('^\\\\s+|\\\\s+\\x24'),key = kw.value.replace(reg, '');if (items) {if (key.length > 0) {var wd = items[0], url = items[1],url = url + ( name === 'tj_map' ? encodeURIComponent('&' + wd + '=' + key)  : ( ( url.indexOf('?') > 0 ? '&' : '?' ) + wd + '=' + encodeURIComponent(key)  ) );target.href = url;} else {target.href = target.href.match(new RegExp('^http://.+\\\\.baidu\\\\.com'))[0];}}name && ns_c({'fm': 'behs','tab': name,'query': encodeURIComponent(key),'un': encodeURIComponent(bds.comm.user || '')    });};}})();addEV(w,\"load\",function(){k.focus()});w.onunload=function(){};</script><script type=\"text/javascript\" src=\"http://s1.bdstatic.com/r/www/cache/global/js/tangram-1.3.4c1.0.js\"></script><script type=\"text/javascript\" src=\"http://s1.bdstatic.com/r/www/cache/user/js/u-1.3.3.js\"></script>\r\n\r\n\r\n\r\n</html>\r\n\r\n\r\n\r\n<!--d44d7baadf42583e-->"
  },
  {
    "path": "testdata/shift_jis.html",
    "content": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\">\n<title>dti services</title>\n<style type=\"text/css\">\n<!--\n.unnamed1 {\n\tcolor: #000000;\n\tbackground-color: #D9ECFF;\n}\na:link {\n\tbackground-color: #D9ECFF;\n}\n-->\n</style>\n<link rel=\"SHORTCUT ICON\" href=\"dtiHP/dtihpNew/image/logo.ico\">\n<script language=\"JavaScript\">\n<!--\nfunction MM_preloadImages() { //v3.0\n  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();\n    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)\n    if (a[i].indexOf(\"#\")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}\n}\n\nfunction MM_findObj(n, d) { //v4.0\n  var p,i,x;  if(!d) d=document; if((p=n.indexOf(\"?\"))>0&&parent.frames.length) {\n    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}\n  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];\n  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);\n  if(!x && document.getElementById) x=document.getElementById(n); return x;\n}\n\nfunction MM_nbGroup(event, grpName) { //v3.0\n  var i,img,nbArr,args=MM_nbGroup.arguments;\n  if (event == \"init\" && args.length > 2) {\n    if ((img = MM_findObj(args[2])) != null && !img.MM_init) {\n      img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;\n      if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();\n      nbArr[nbArr.length] = img;\n      for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {\n        if (!img.MM_up) img.MM_up = img.src;\n        img.src = img.MM_dn = args[i+1];\n        nbArr[nbArr.length] = img;\n    } }\n  } else if (event == \"over\") {\n    document.MM_nbOver = nbArr = new Array();\n    for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {\n      if (!img.MM_up) img.MM_up = img.src;\n      img.src = (img.MM_dn && args[i+2]) ? args[i+2] : args[i+1];\n      nbArr[nbArr.length] = img;\n    }\n  } else if (event == \"out\" ) {\n    for (i=0; i < document.MM_nbOver.length; i++) {\n      img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }\n  } else if (event == \"down\") {\n    if ((nbArr = document[grpName]) != null)\n      for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }\n    document[grpName] = nbArr = new Array();\n    for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {\n      if (!img.MM_up) img.MM_up = img.src;\n      img.src = img.MM_dn = args[i+1];\n      nbArr[nbArr.length] = img;\n  } }\n}\n//-->\n</script>\n</head>\n<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onLoad=\"MM_preloadImages('dtiHP/dtihpNew/image/m_11.gif','dtiHP/dtihpNew/image/m_22.gif','dtiHP/dtihpNew/image/m_33.gif','dtiHP/dtihpNew/image/m_44.gif','dtiHP/dtihpNew/image/m_55.gif','dtiHP/dtihpNew/image/m_66.gif','dtiHP/dtihpNew/image/m_77.gif','dtiHP/dtihpNew/image/m_88.gif')\" background=\"dtiHP/dtihpNew/image/backrightblue.gif\">\n<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"dtiHP/dtihpNew/image/backTop.gif\">\n<!--DWLayoutTable-->\n<tr> \n<td width=\"850\" height=\"90\" valign=\"top\"><img src=\"dtiHP/dtihpNew/image/images/top2_01.jpg\" width=\"665\" height=\"90\"> \n<!-- Start of D&B Web Logo code snippet -->\n<script language='JavaScript'>\nvar strSealURL='weblogos.dnb.com';\nvar sealID='B9170815-A977-42F9-A511-3472F65CBA5B';\nvar strDuns='002687655';\nvar strRWSPath='express.dnbsearch.com';\nvar strCountry='US';\nvar increment='true';\nvar strLang='EN';\n</script> <script language='JavaScript' SRC='https://weblogos.dnb.com/newsi.js'></script> \n<!-- End of D&B Web Logo code snippet -->\n</td>\n<td></td>\n</tr>\n</table>\n<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"dtiHP/dtihpNew/image/003366.gif\">\n<!--DWLayoutTable-->\n<tr> \n<td width=\"800\" height=\"2\" valign=\"top\"><img src=\"dtiHP/dtihpNew/image/003366.gif\" width=\"800\" height=\"2\"></td>\n<td width=\"241\"></td>\n</tr>\n</table>\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"15\" background=\"dtiHP/dtihpNew/image/navi/backmenu.gif\">\n<tr height=\"15\"> \n<td width=\"425\" height=\"15\"><img src=\"dtiHP/dtihpNew/image/spacer.gif\" width=\"425\" height=\"1\"></td>\n<td width=\"75\" height=\"15\"><a href=\"dtiHP/dtihpNew/html/aboutus.htm\"><img src=\"dtiHP/dtihpNew/image/navi/company.gif\" width=\"75\" height=\"15\" border=\"0\"></a></td>\n<td width=\"75\" height=\"15\"><a href=\"dtiHP/dtihpNew/html/job.htm\"><img src=\"dtiHP/dtihpNew/image/navi/hire.gif\" width=\"75\" height=\"15\" border=\"0\"></a></td>\n<td width=\"75\" height=\"15\"><a href=\"dtiHP/dtihpNew/html/news.htm\"><img src=\"dtiHP/dtihpNew/image/navi/news.gif\" width=\"75\" height=\"15\" border=\"0\"></a></td>\n<td width=\"75\" height=\"15\"><a href=\"dtiHP/dtihpNew/html/download.htm\"><img src=\"dtiHP/dtihpNew/image/navi/download.gif\" width=\"75\" height=\"15\" border=\"0\"></a></td>\n<td width=\"75\" height=\"15\"><a href=\"dtiHP/dtihpNew/html/signup1.htm\"><img src=\"dtiHP/dtihpNew/image/navi/omousikomi.gif\" width=\"75\" height=\"15\" border=\"0\"></a></td>\n<td width=\"100%\" height=\"15\"></td>\n</tr>\n</table>\n<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" background=\"dtiHP/dtihpNew/image/bottom_navi/bottomback_02_02.gif\">\n<!--DWLayoutTable-->\n<tr> \n<td width=\"173\" height=\"30\" valign=\"top\"><img src=\"dtiHP/dtihpNew/image/bottom_navi/left.jpg\" width=\"500\" height=\"30\"></td>\n<td width=\"694\" valign=\"top\">@</td>\n<td width=\"263\"></td>\n</tr>\n</table>\n<table width=\"172\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"left\">\n<tr> \n<td width=\"172\" height=\"15\" valign=\"top\"><a href=\"http://www.dtiserv.com/english/index.html\"><img src=\"image/m_eng.gif\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"top\"><a href=\"http://www.dtiserv.com/dtiHP/dtihpNew/kor/html/index.html\"><img src=\"../image/m_kor.gif\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"top\"><a href=\"http://www.dtiserv.com/dtiHP/dtihpNew/chinese/index.html\"><img src=\"../image/m_c_over.gif\" name=\"m_c_over\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<!--DWLayoutTable-->\n<tr> \n<td height=\"27\" valign=\"top\"><a href=\"index.html\"><img src=\"image/m_home.gif\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\" bgcolor=\"#D9ECFF\"><a href=\"dtiHP/dtihpNew/html/hosting.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_1','dtiHP/dtihpNew/image/m_11.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_1','dtiHP/dtihpNew/image/m_11.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_1.gif\" name=\"m_1\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/server_share.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_2','dtiHP/dtihpNew/image/m_22.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_2','dtiHP/dtihpNew/image/m_22.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_2.gif\" name=\"m_2\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/server_rental.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_3','dtiHP/dtihpNew/image/m_33.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_3','dtiHP/dtihpNew/image/m_33.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_3.gif\" name=\"m_3\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/server_private.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_4','dtiHP/dtihpNew/image/m_44.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_4','dtiHP/dtihpNew/image/m_44.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_4.gif\" name=\"m_4\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/getstarted.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_5','dtiHP/dtihpNew/image/m_55.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_5','dtiHP/dtihpNew/image/m_55.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_5.gif\" name=\"m_5\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/services.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_6','dtiHP/dtihpNew/image/m_66.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_6','dtiHP/dtihpNew/image/m_66.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_6.gif\" name=\"m_6\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/price.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_7','dtiHP/dtihpNew/image/m_77.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_7','dtiHP/dtihpNew/image/m_77.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_7.gif\" name=\"m_7\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"15\" valign=\"center\"><a href=\"dtiHP/dtihpNew/html/signup1.htm\" target=\"_top\" onClick=\"MM_nbGroup('down','group1','m_8','dtiHP/dtihpNew/image/m_88.gif',1)\" onMouseOver=\"MM_nbGroup('over','m_8','dtiHP/dtihpNew/image/m_88.gif','',1)\" onMouseOut=\"MM_nbGroup('out')\"><img src=\"dtiHP/dtihpNew/image/m_8.gif\" name=\"m_8\" width=\"172\" height=\"15\" border=\"0\"></a></td>\n</tr>\n<tr> \n<td height=\"55\" valign=\"top\"><!--DWLayoutEmptyCell-->&nbsp; </td>\n</tr>\n<tr> \n<td height=\"69\" valign=\"top\"><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"172\" height=\"69\">\n<param name=\"movie\" value=\"dtiHP/dtihpNew/image/logp6.swf\">\n<param name=\"quality\" value=\"high\">\n<embed src=\"dtiHP/dtihpNew/image/logp6.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"172\" height=\"69\"> \n</embed> </object></td>\n</tr>\n</table>\n<table width=\"628\" border=\"0\" cellpadding=\"0\" cellspacing=\"10\" bgcolor=\"#FFFFFF\">\n<!--DWLayoutTable-->\n<tr> \n<td width=\"218\" height=\"31\" valign=\"top\"><!--DWLayoutEmptyCell-->&nbsp; </td>\n<td colspan=\"2\" valign=\"top\" height=\"31\"><img src=\"dtiHP/dtihpNew/image/small_title/dtiservices_business.gif\" width=\"369\" height=\"30\"></td>\n</tr>\n<tr> \n<td height=\"253\" valign=\"CENTER\" bgcolor=\"#FFFFFF\"> <div align=\"center\"><img src=\"downtown.jpg\" width=\"250\" height=\"282\"></div></td>\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#E1F0FF\"> <blockquote> \n<p> \n<div style=\"font-size:12px; line-height:100%\"> <br>\ndti servicesł́ASAXs[hAmA_bg[ɂql̂j[Yɂo܂悤AӂmȃT[rX񋟒vĂ܂B<br>\n<br>\ndqiGNgjbNR}[XjAIC񋟁AC^NeBufBAioʐMjBC^[lbgɑ\\Rs[^[ƃlbg[N̏[͎̐傫ςĂ܂B<br>\n<br>\ndti services̃T[o[́AC^[lbgrWlXɑΉĂ܂BC[R}[XARecT[rXA摜zMAzMAXg[~ȎIAvtFbVi[YȊ񋟂܂B<br>\n<br>\nЂ̃eNjJ́A펞24ԑ̐őΉĂ܂̂łȂ鎖ԂɂvɑΉvĂ܂BX̃eiXSĂC܂Bɐp񋟂Ă܂̂ŁAGh[U[lɂ͑ł͑̊邱Ƃ̂łȂAC^[lbguEWO񑩒v܂B</div>\n</blockquote></td>\n</tr>\n<tr> \n<td height=\"30\" colspan=\"3\" valign=\"top\" bgcolor=\"#FFFFFF\"><img src=\"dtiHP/dtihpNew/image/small_title/dtiservices_hosting.gif\" width=\"369\" height=\"30\"></td>\n</tr>\n<tr> \n<td height=\"270\" colspan=\"2\" valign=\"top\" bgcolor=\"#EBF5F5\"> <blockquote> \n<div style=\"font-size:12px; line-height:100%\"> \n<div align=\"justify\"><br>\nICNƉƂƂ܂ŁAdti servicesł͂qlITj[Yɂ肨ł悤AX^C̃zXeBO\\[VȂтɊǗT[rX񋟂Ă܂BLxȒmAЂITX^btƊȃCtŁAql̊mȎѐx܂B<br>\n<br>\nЂ̃zXeBOAȂтIPANZX\\[V́A̒ǐȂƎ̃X^C񋟒v܂BrWlXj[YAZpʂ܂ŁAql100% \nmȃT[rXA_A萫Ƃ΂₢Ή񑩂Ă܂B<br>\n<br>\nEFuzXeBOǂ߂ɁÂ鑤ʂ𓖎ЃX^bt₷v܂B߂Ă̕łASĂp܂BЃEFuzXeBO̊{AEFuzXeBÔp@܂ŁAe؁AmɁAT[rX^S߂Ă񋟒v܂B<br>\n</div>\n</div>\n</blockquote></td>\n<td width=\"280\" valign=\"center\" bgcolor=\"#FFFFFF\"> <div align=\"center\"><img src=\"dtiHP/dtihpNew/image/bestbest.gif\" width=\"281\" height=\"276\"></div></td>\n</tr>\n<tr> \n<td height=\"30\" colspan=\"3\" valign=\"top\" bgcolor=\"#FFFFFF\"><font size=\"2\"><strong><img src=\"dtiHP/dtihpNew/image/small_title/hostingsolution.gif\" width=\"369\" height=\"30\"></strong></font></td>\n</tr>\n<tr> \n<td height=\"117\" colspan=\"3\" valign=\"top\" bgcolor=\"#F0F0F0\"> <blockquote> \n<div style=\"font-size:12px; line-height:100%\"> \n<div align=\"justify\"><br>\nЂ͂K͂̊ƂT|[gv܂B<br>\n<br>\n<img src=\"dtiHP/dtihpNew/image/dot4.gif\" width=\"10\" height=\"11\" valign=\"center\"> \n@ICƂ߂Ďn߂ցAȒPŌoϓIȃEFuzXeBO񋟒v܂B<br>\n<img src=\"dtiHP/dtihpNew/image/dot4.gif\" width=\"10\" height=\"11\" valign=\"center\">@荂\\ȃptH[}XKvƂƗlɂ́Aĝ鍂^zXeB<br>\n@@ O񋟒vĂ܂B<br>\n<br>\n܂AGITpɂΉ\\Ȉ肵W[\\[V񋟒v܂BāARP[VAуf[^Z^[̃j[YɑΉ\\ȊǗT[rXƍō̎{݂pӒvĂ܂B</div>\n</div>\n</blockquote></td>\n</tr>\n<tr align=\"center\"> \n<td height=\"117\" colspan=\"3\"><img src=\"images/idnm_white.gif\" width=\"230\" height=\"80\"></td>\n</tr>\n</table>\n<table width=\"800\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tr> \n<td width=\"172\">@</td>\n<td> <div align=\"center\"><img src=\"dtiHP/dtihpNew/image/smallline.gif\" width=\"550\" height=\"5\"><br>\n<img src=\"dtiHP/dtihpNew/image/copyright.gif\" width=\"220\" height=\"9\"> </div></td>\n</tr>\n</table>\n</body>\n</html>\n"
  },
  {
    "path": "testdata/utf8.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html lang=\"en\" dir=\"ltr\" class=\"client-nojs\" xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<title>UTF-8 - Wikipedia, the free encyclopedia</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n<meta http-equiv=\"Content-Style-Type\" content=\"text/css\" />\n<meta name=\"generator\" content=\"MediaWiki 1.20wmf9\" />\n<link rel=\"alternate\" type=\"application/x-wiki\" title=\"Edit this page\" href=\"/w/index.php?title=UTF-8&amp;action=edit\" />\n<link rel=\"edit\" title=\"Edit this page\" href=\"/w/index.php?title=UTF-8&amp;action=edit\" />\n<link rel=\"apple-touch-icon\" href=\"//en.wikipedia.org/apple-touch-icon.png\" />\n<link rel=\"shortcut icon\" href=\"/favicon.ico\" />\n<link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"/w/opensearch_desc.php\" title=\"Wikipedia (en)\" />\n<link rel=\"EditURI\" type=\"application/rsd+xml\" href=\"//en.wikipedia.org/w/api.php?action=rsd\" />\n<link rel=\"copyright\" href=\"//creativecommons.org/licenses/by-sa/3.0/\" />\n<link rel=\"alternate\" type=\"application/atom+xml\" title=\"Wikipedia Atom feed\" href=\"/w/index.php?title=Special:RecentChanges&amp;feed=atom\" />\n<link rel=\"stylesheet\" href=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.ReferenceTooltips%2Cteahouse%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cskins.vector&amp;only=styles&amp;skin=vector&amp;*\" type=\"text/css\" media=\"all\" />\n<meta name=\"ResourceLoaderDynamicStyles\" content=\"\" />\n<link rel=\"stylesheet\" href=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector&amp;*\" type=\"text/css\" media=\"all\" />\n<style type=\"text/css\" media=\"all\">a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}\n\n/* cache key: enwiki:resourceloader:filter:minify-css:7:4edf467d58fee44c83dfe724ca07c179 */</style>\n\n<script src=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector&amp;*\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">if(window.mw){\nmw.config.set({\"wgCanonicalNamespace\":\"\",\"wgCanonicalSpecialPageName\":false,\"wgNamespaceNumber\":0,\"wgPageName\":\"UTF-8\",\"wgTitle\":\"UTF-8\",\"wgCurRevisionId\":507478399,\"wgArticleId\":32188,\"wgIsArticle\":true,\"wgAction\":\"view\",\"wgUserName\":null,\"wgUserGroups\":[\"*\"],\"wgCategories\":[\"All articles with unsourced statements\",\"Articles with unsourced statements from December 2011\",\"All articles with specifically marked weasel-worded phrases\",\"Articles with specifically marked weasel-worded phrases from September 2011\",\"Articles with unsourced statements from February 2012\",\"Articles needing additional references from October 2009\",\"All articles needing additional references\",\"Articles with unsourced statements from December 2009\",\"Character sets\",\"Encodings\",\"Character encoding\",\"Unicode Transformation Formats\"],\"wgBreakFrames\":false,\"wgPageContentLanguage\":\"en\",\"wgSeparatorTransformTable\":[\"\",\"\"],\"wgDigitTransformTable\":[\"\",\"\"],\"wgDefaultDateFormat\":\"dmy\",\"wgMonthNames\":[\"\",\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],\"wgMonthNamesShort\":[\"\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],\"wgRelevantPageName\":\"UTF-8\",\"wgRestrictionEdit\":[],\"wgRestrictionMove\":[],\"wgSearchNamespaces\":[0],\"wgVectorEnabledModules\":{\"collapsiblenav\":true,\"collapsibletabs\":true,\"editwarning\":true,\"expandablesearch\":false,\"footercleanup\":false,\"sectioneditlinks\":false,\"simplesearch\":true,\"experiments\":true},\"wgWikiEditorEnabledModules\":{\"toolbar\":true,\"dialogs\":true,\"hidesig\":true,\"templateEditor\":false,\"templates\":false,\"preview\":false,\"previewDialog\":false,\"publish\":false,\"toc\":false},\"wgTrackingToken\":\"05adb93d1ad4862b032b79a4b4b060fd\",\"wgArticleFeedbackv5Permissions\":{\"oversighter\":false,\"moderator\":false,\"editor\":false},\"wikilove-recipient\":\"\",\"wikilove-anon\":0,\"mbEmailEnabled\":true,\"mbUserEmail\":false,\"mbIsEmailConfirmationPending\":false,\"wgFlaggedRevsParams\":{\"tags\":{\"status\":{\"levels\":1,\"quality\":2,\"pristine\":3}}},\"wgStableRevisionId\":null,\"wgCategoryTreePageCategoryOptions\":\"{\\\"mode\\\":0,\\\"hideprefix\\\":20,\\\"showcount\\\":true,\\\"namespaces\\\":false}\",\"Geo\":{\"city\":\"\",\"country\":\"\"},\"wgNoticeProject\":\"wikipedia\",\"aftv5Whitelist\":false});\n}</script><script type=\"text/javascript\">if(window.mw){\nmw.loader.implement(\"user.options\",function(){mw.user.options.set({\"ccmeonemails\":0,\"cols\":80,\"date\":\"default\",\"diffonly\":0,\"disablemail\":0,\"disablesuggest\":0,\"editfont\":\"default\",\"editondblclick\":0,\"editsection\":1,\"editsectiononrightclick\":0,\"enotifminoredits\":0,\"enotifrevealaddr\":0,\"enotifusertalkpages\":1,\"enotifwatchlistpages\":0,\"extendwatchlist\":0,\"externaldiff\":0,\"externaleditor\":0,\"fancysig\":0,\"forceeditsummary\":0,\"gender\":\"unknown\",\"hideminor\":0,\"hidepatrolled\":0,\"imagesize\":2,\"justify\":0,\"math\":0,\"minordefault\":0,\"newpageshidepatrolled\":0,\"nocache\":0,\"noconvertlink\":0,\"norollbackdiff\":0,\"numberheadings\":0,\"previewonfirst\":0,\"previewontop\":1,\"quickbar\":5,\"rcdays\":7,\"rclimit\":50,\"rememberpassword\":0,\"rows\":25,\"searchlimit\":20,\"showhiddencats\":false,\"showjumplinks\":1,\"shownumberswatching\":1,\"showtoc\":1,\"showtoolbar\":1,\"skin\":\"vector\",\"stubthreshold\":0,\"thumbsize\":4,\"underline\":2,\"uselivepreview\":0,\"usenewrc\":0,\"watchcreations\":1,\"watchdefault\":0,\"watchdeletion\":0,\"watchlistdays\":3\n,\"watchlisthideanons\":0,\"watchlisthidebots\":0,\"watchlisthideliu\":0,\"watchlisthideminor\":0,\"watchlisthideown\":0,\"watchlisthidepatrolled\":0,\"watchmoves\":0,\"wllimit\":250,\"flaggedrevssimpleui\":1,\"flaggedrevsstable\":0,\"flaggedrevseditdiffs\":true,\"flaggedrevsviewdiffs\":false,\"vector-simplesearch\":1,\"useeditwarning\":1,\"vector-collapsiblenav\":1,\"usebetatoolbar\":1,\"usebetatoolbar-cgd\":1,\"wikilove-enabled\":1,\"variant\":\"en\",\"language\":\"en\",\"searchNs0\":true,\"searchNs1\":false,\"searchNs2\":false,\"searchNs3\":false,\"searchNs4\":false,\"searchNs5\":false,\"searchNs6\":false,\"searchNs7\":false,\"searchNs8\":false,\"searchNs9\":false,\"searchNs10\":false,\"searchNs11\":false,\"searchNs12\":false,\"searchNs13\":false,\"searchNs14\":false,\"searchNs15\":false,\"searchNs100\":false,\"searchNs101\":false,\"searchNs108\":false,\"searchNs109\":false,\"gadget-teahouse\":1,\"gadget-ReferenceTooltips\":1,\"gadget-DRN-wizard\":1,\"gadget-mySandbox\":1});;},{},{});mw.loader.implement(\"user.tokens\",function(){mw.user.tokens.set({\"editToken\":\"+\\\\\",\n\"watchToken\":false});;},{},{});\n\n/* cache key: enwiki:resourceloader:filter:minify-js:7:81f7c0502e347822f14be81f96ff03ab */\n}</script>\n<script type=\"text/javascript\">if(window.mw){\nmw.loader.load([\"mediawiki.page.startup\",\"mediawiki.legacy.wikibits\",\"mediawiki.legacy.ajax\",\"ext.wikimediaShopLink.core\"]);\n}</script>\n<!--[if lt IE 7]><style type=\"text/css\">body{behavior:url(\"/w/skins-1.20wmf9/vector/csshover.min.htc\")}</style><![endif]--></head>\n<body class=\"mediawiki ltr sitedir-ltr ns-0 ns-subject page-UTF-8 skin-vector action-view vector-animateLayout\">\n\t\t<div id=\"mw-page-base\" class=\"noprint\"></div>\n\t\t<div id=\"mw-head-base\" class=\"noprint\"></div>\n\t\t<!-- content -->\n\t\t<div id=\"content\" class=\"mw-body\">\n\t\t\t<a id=\"top\"></a>\n\t\t\t<div id=\"mw-js-message\" style=\"display:none;\"></div>\n\t\t\t\t\t\t<!-- sitenotice -->\n\t\t\t<div id=\"siteNotice\"><!-- centralNotice loads here --></div>\n\t\t\t<!-- /sitenotice -->\n\t\t\t\t\t\t<!-- firstHeading -->\n\t\t\t<h1 id=\"firstHeading\" class=\"firstHeading\"><span dir=\"auto\">UTF-8</span></h1>\n\t\t\t<!-- /firstHeading -->\n\t\t\t<!-- bodyContent -->\n\t\t\t<div id=\"bodyContent\">\n\t\t\t\t\t\t\t\t<!-- tagline -->\n\t\t\t\t<div id=\"siteSub\">From Wikipedia, the free encyclopedia</div>\n\t\t\t\t<!-- /tagline -->\n\t\t\t\t\t\t\t\t<!-- subtitle -->\n\t\t\t\t<div id=\"contentSub\"></div>\n\t\t\t\t<!-- /subtitle -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- jumpto -->\n\t\t\t\t<div id=\"jump-to-nav\" class=\"mw-jump\">\n\t\t\t\t\tJump to:\t\t\t\t\t<a href=\"#mw-head\">navigation</a>, \t\t\t\t\t<a href=\"#p-search\">search</a>\n\t\t\t\t</div>\n\t\t\t\t<!-- /jumpto -->\n\t\t\t\t\t\t\t\t<!-- bodycontent -->\n\t\t\t\t<div id=\"mw-content-text\" lang=\"en\" dir=\"ltr\" class=\"mw-content-ltr\"><div style=\"display:none;\" class=\"pef-notification-container\">\n\t<div class=\"pef-notification\">\n\t\t<div class=\"pef-notification-checkmark\">&nbsp;</div>\n\t\t<span></span>\n\t</div>\n</div><p><b>UTF-8</b> (<b><a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">UCS</a> Transformation Format—8-bit</b><sup id=\"cite_ref-0\" class=\"reference\"><a href=\"#cite_note-0\"><span>[</span>1<span>]</span></a></sup>) is a <a href=\"/wiki/Variable-width_encoding\" title=\"Variable-width encoding\">variable-width encoding</a> that can represent every <a href=\"/wiki/Character_(computing)\" title=\"Character (computing)\">character</a> in the <a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> character set. It was designed for <a href=\"/wiki/Backward_compatibility\" title=\"Backward compatibility\">backward compatibility</a> with <a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a> and to avoid the complications of <a href=\"/wiki/Endianness\" title=\"Endianness\">endianness</a> and <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order marks</a> in <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> and <a href=\"/wiki/UTF-32\" title=\"UTF-32\">UTF-32</a>.</p>\n<p>UTF-8 has become the dominant character encoding for the <a href=\"/wiki/World-Wide_Web\" title=\"World-Wide Web\" class=\"mw-redirect\">World-Wide Web</a>, accounting for more than half of all Web pages.<sup id=\"cite_ref-1\" class=\"reference\"><a href=\"#cite_note-1\"><span>[</span>2<span>]</span></a></sup><sup id=\"cite_ref-BuiltWith_2-0\" class=\"reference\"><a href=\"#cite_note-BuiltWith-2\"><span>[</span>3<span>]</span></a></sup><sup id=\"cite_ref-W3Techs_3-0\" class=\"reference\"><a href=\"#cite_note-W3Techs-3\"><span>[</span>4<span>]</span></a></sup> The <a href=\"/wiki/Internet_Engineering_Task_Force\" title=\"Internet Engineering Task Force\">Internet Engineering Task Force</a> (IETF) requires all <a href=\"/wiki/Internet\" title=\"Internet\">Internet</a> <a href=\"/wiki/Protocol_(computing)\" title=\"Protocol (computing)\" class=\"mw-redirect\">protocols</a> to identify the <a href=\"/wiki/Character_encoding\" title=\"Character encoding\">encoding</a> used for character data, and the supported character encodings must include UTF-8.<sup id=\"cite_ref-rfc2277_4-0\" class=\"reference\"><a href=\"#cite_note-rfc2277-4\"><span>[</span>5<span>]</span></a></sup> The <a href=\"/wiki/Internet_Mail_Consortium\" title=\"Internet Mail Consortium\">Internet Mail Consortium</a> (IMC) recommends that all e-mail programs be able to display and create mail using UTF-8.<sup id=\"cite_ref-IMC_5-0\" class=\"reference\"><a href=\"#cite_note-IMC-5\"><span>[</span>6<span>]</span></a></sup> UTF-8 is also increasingly being used as the default character encoding in <a href=\"/wiki/Operating_systems\" title=\"Operating systems\" class=\"mw-redirect\">operating systems</a>, <a href=\"/wiki/Programming_languages\" title=\"Programming languages\" class=\"mw-redirect\">programming languages</a>, <a href=\"/wiki/Application_programming_interface\" title=\"Application programming interface\">APIs</a>, and <a href=\"/wiki/Application_software\" title=\"Application software\">software applications</a>.<sup class=\"Template-Fact\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Citation_needed\" title=\"Wikipedia:Citation needed\"><span title=\"This claim needs references to reliable sources from December 2011\">citation needed</span></a></i>]</sup></p>\n<p>UTF-8 encodes each of the 1,112,064<sup id=\"cite_ref-6\" class=\"reference\"><a href=\"#cite_note-6\"><span>[</span>7<span>]</span></a></sup> <a href=\"/wiki/Code_point\" title=\"Code point\">code points</a> in the Unicode character set using one to four 8-bit <a href=\"/wiki/Byte\" title=\"Byte\">bytes</a> (termed \"<a href=\"/wiki/Octet_(computing)\" title=\"Octet (computing)\">octets</a>\" in the Unicode Standard). Code points with lower numerical values (i.e. earlier code positions in the Unicode character set, which tend to occur more frequently in practice) are encoded using fewer bytes.<sup id=\"cite_ref-7\" class=\"reference\"><a href=\"#cite_note-7\"><span>[</span>8<span>]</span></a></sup> The first 128 characters of Unicode, which correspond one-to-one with <a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a>, are encoded using a single octet with the same binary value as ASCII, making valid ASCII text valid UTF-8-encoded Unicode as well.</p>\n<p>The official <a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">IANA</a> code for the UTF-8 character encoding is <code>UTF-8</code>.<sup id=\"cite_ref-8\" class=\"reference\"><a href=\"#cite_note-8\"><span>[</span>9<span>]</span></a></sup></p>\n<table id=\"toc\" class=\"toc\">\n<tr>\n<td>\n<div id=\"toctitle\">\n<h2>Contents</h2>\n</div>\n<ul>\n<li class=\"toclevel-1 tocsection-1\"><a href=\"#History\"><span class=\"tocnumber\">1</span> <span class=\"toctext\">History</span></a></li>\n<li class=\"toclevel-1 tocsection-2\"><a href=\"#Description\"><span class=\"tocnumber\">2</span> <span class=\"toctext\">Description</span></a>\n<ul>\n<li class=\"toclevel-2 tocsection-3\"><a href=\"#Examples\"><span class=\"tocnumber\">2.1</span> <span class=\"toctext\">Examples</span></a></li>\n<li class=\"toclevel-2 tocsection-4\"><a href=\"#Overlong_encodings\"><span class=\"tocnumber\">2.2</span> <span class=\"toctext\">Overlong encodings</span></a></li>\n<li class=\"toclevel-2 tocsection-5\"><a href=\"#Codepage_layout\"><span class=\"tocnumber\">2.3</span> <span class=\"toctext\">Codepage layout</span></a></li>\n<li class=\"toclevel-2 tocsection-6\"><a href=\"#Invalid_byte_sequences\"><span class=\"tocnumber\">2.4</span> <span class=\"toctext\">Invalid byte sequences</span></a></li>\n<li class=\"toclevel-2 tocsection-7\"><a href=\"#Invalid_code_points\"><span class=\"tocnumber\">2.5</span> <span class=\"toctext\">Invalid code points</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-1 tocsection-8\"><a href=\"#Official_name_and_variants\"><span class=\"tocnumber\">3</span> <span class=\"toctext\">Official name and variants</span></a></li>\n<li class=\"toclevel-1 tocsection-9\"><a href=\"#Derivatives\"><span class=\"tocnumber\">4</span> <span class=\"toctext\">Derivatives</span></a>\n<ul>\n<li class=\"toclevel-2 tocsection-10\"><a href=\"#CESU-8\"><span class=\"tocnumber\">4.1</span> <span class=\"toctext\">CESU-8</span></a></li>\n<li class=\"toclevel-2 tocsection-11\"><a href=\"#Modified_UTF-8\"><span class=\"tocnumber\">4.2</span> <span class=\"toctext\">Modified UTF-8</span></a></li>\n<li class=\"toclevel-2 tocsection-12\"><a href=\"#Extending_from_31_bit_to_36_bit_range\"><span class=\"tocnumber\">4.3</span> <span class=\"toctext\">Extending from 31 bit to 36 bit range</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-1 tocsection-13\"><a href=\"#Byte_order_mark\"><span class=\"tocnumber\">5</span> <span class=\"toctext\">Byte order mark</span></a></li>\n<li class=\"toclevel-1 tocsection-14\"><a href=\"#Advantages_and_disadvantages\"><span class=\"tocnumber\">6</span> <span class=\"toctext\">Advantages and disadvantages</span></a>\n<ul>\n<li class=\"toclevel-2 tocsection-15\"><a href=\"#General\"><span class=\"tocnumber\">6.1</span> <span class=\"toctext\">General</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-16\"><a href=\"#Advantages\"><span class=\"tocnumber\">6.1.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-17\"><a href=\"#Disadvantages\"><span class=\"tocnumber\">6.1.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-2 tocsection-18\"><a href=\"#Compared_to_single-byte_encodings\"><span class=\"tocnumber\">6.2</span> <span class=\"toctext\">Compared to single-byte encodings</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-19\"><a href=\"#Advantages_2\"><span class=\"tocnumber\">6.2.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-20\"><a href=\"#Disadvantages_2\"><span class=\"tocnumber\">6.2.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-2 tocsection-21\"><a href=\"#Compared_to_other_multi-byte_encodings\"><span class=\"tocnumber\">6.3</span> <span class=\"toctext\">Compared to other multi-byte encodings</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-22\"><a href=\"#Advantages_3\"><span class=\"tocnumber\">6.3.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-23\"><a href=\"#Disadvantages_3\"><span class=\"tocnumber\">6.3.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-2 tocsection-24\"><a href=\"#Compared_to_UTF-16\"><span class=\"tocnumber\">6.4</span> <span class=\"toctext\">Compared to UTF-16</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-25\"><a href=\"#Advantages_4\"><span class=\"tocnumber\">6.4.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-26\"><a href=\"#Disadvantages_4\"><span class=\"tocnumber\">6.4.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n</ul>\n</li>\n<li class=\"toclevel-1 tocsection-27\"><a href=\"#See_also\"><span class=\"tocnumber\">7</span> <span class=\"toctext\">See also</span></a></li>\n<li class=\"toclevel-1 tocsection-28\"><a href=\"#References\"><span class=\"tocnumber\">8</span> <span class=\"toctext\">References</span></a></li>\n<li class=\"toclevel-1 tocsection-29\"><a href=\"#External_links\"><span class=\"tocnumber\">9</span> <span class=\"toctext\">External links</span></a></li>\n</ul>\n</td>\n</tr>\n</table>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=1\" title=\"Edit section: History\">edit</a>]</span> <span class=\"mw-headline\" id=\"History\">History</span></h2>\n<p>By early 1992 the search was on for a good byte-stream encoding of multi-byte character sets. The draft <a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">ISO 10646</a> standard contained a non-required <a href=\"/wiki/Addendum\" title=\"Addendum\">annex</a> called <a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a> that provided a byte-stream encoding of its 32-bit code points. This encoding was not satisfactory on performance grounds, but did introduce the notion that bytes in the range of 0–127 continue representing the ASCII characters in UTF, thereby providing backward compatibility with ASCII.</p>\n<p>In July 1992, the <a href=\"/wiki/X/Open\" title=\"X/Open\">X/Open</a> committee XoJIG was looking for a better encoding. Dave Prosser of <a href=\"/wiki/Unix_System_Laboratories\" title=\"Unix System Laboratories\">Unix System Laboratories</a> submitted a proposal for one that had faster implementation characteristics and introduced the improvement that 7-bit ASCII characters would <i>only</i> represent themselves; all multibyte sequences would include only bytes where the high bit was set.</p>\n<p>In August 1992, this proposal was circulated by an <a href=\"/wiki/IBM\" title=\"IBM\">IBM</a> X/Open representative to interested parties. <a href=\"/wiki/Ken_Thompson\" title=\"Ken Thompson\">Ken Thompson</a> of the <a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9</a> <a href=\"/wiki/Operating_system\" title=\"Operating system\">operating system</a> group at <a href=\"/wiki/Bell_Labs\" title=\"Bell Labs\">Bell Labs</a> then made a crucial modification to the encoding to allow it to be self-synchronizing, meaning that it was not necessary to read from the beginning of the string to find code point boundaries. Thompson's design was outlined on September 2, 1992, on a placemat in a New Jersey diner with <a href=\"/wiki/Rob_Pike\" title=\"Rob Pike\">Rob Pike</a>. The following days, Pike and Thompson implemented it and updated <a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9</a> to use it throughout, and then communicated their success back to X/Open.<sup id=\"cite_ref-9\" class=\"reference\"><a href=\"#cite_note-9\"><span>[</span>10<span>]</span></a></sup></p>\n<p>UTF-8 was first officially presented at the <a href=\"/wiki/USENIX\" title=\"USENIX\">USENIX</a> conference in <a href=\"/wiki/San_Diego\" title=\"San Diego\">San Diego</a>, from January 25–29, 1993.</p>\n<p>In November 2003 UTF-8 was restricted by <a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> to four bytes in order to match the constraints of the <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> character encoding.</p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=2\" title=\"Edit section: Description\">edit</a>]</span> <span class=\"mw-headline\" id=\"Description\">Description</span></h2>\n<p>The design of UTF‑8 is most easily seen in the table of the scheme as originally proposed by Dave Prosser and subsequently modified by Ken Thompson (the <code>x</code>'s are replaced by the bits of the code point):</p>\n<table class=\"wikitable\">\n<tr>\n<th>Bits</th>\n<th>Last code point</th>\n<th>Byte 1</th>\n<th>Byte 2</th>\n<th>Byte 3</th>\n<th>Byte 4</th>\n<th>Byte 5</th>\n<th>Byte 6</th>\n</tr>\n<tr>\n<th>&#160;&#160;7</th>\n<td>U+007F</td>\n<td><code>0xxxxxxx</code></td>\n</tr>\n<tr>\n<th>11</th>\n<td>U+07FF</td>\n<td><code>110xxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>16</th>\n<td>U+FFFF</td>\n<td><code>1110xxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>21</th>\n<td>U+1FFFFF</td>\n<td><code>11110xxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>26</th>\n<td>U+3FFFFFF</td>\n<td><code>111110xx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>31</th>\n<td>U+7FFFFFFF</td>\n<td><code>1111110x</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n</table>\n<p>The salient features of the above scheme are as follows:</p>\n<ol>\n<li>One-byte codes are used only for the ASCII values 0 through 127. In this case the UTF-8 code has the same value as the ASCII code. The high-order bit of these codes is always 0.</li>\n<li>Codepoints larger than 127 are represented by multi-byte sequences, composed of a <i>leading byte</i> and one or more <i>continuation bytes</i>. The leading byte has two or more high-order 1s followed by a 0, while continuation bytes all have '10' in the high-order position.</li>\n<li>The remaining bits of the encoding are used for the bits of the codepoint being encoded, padded with high-order 0s if necessary. The number of bytes in the encoding is the minimum required to hold all the significant bits of the codepoint.</li>\n<li>The number of high-order 1s in the leading byte of a multi-byte sequence indicates the number of bytes in the sequence, so that the length of the sequence can be determined without examining the continuation bytes.</li>\n<li>Single bytes, leading bytes, and continuation bytes do not share values. This makes the scheme \"self synchronizing\", allowing the start of a character to be found by backing up at most five bytes (three bytes in actual UTF‑8 as explained below).</li>\n</ol>\n<p>The first 128 characters (US-ASCII) need one byte. The next 1,920 characters need two bytes to encode. This covers the remainder of almost all <a href=\"/wiki/Latin-derived_alphabet\" title=\"Latin-derived alphabet\">Latin-derived alphabets</a>, and also <a href=\"/wiki/Greek_alphabet\" title=\"Greek alphabet\">Greek</a>, <a href=\"/wiki/Cyrillic_script\" title=\"Cyrillic script\">Cyrillic</a>, <a href=\"/wiki/Coptic_alphabet\" title=\"Coptic alphabet\">Coptic</a>, <a href=\"/wiki/Armenian_alphabet\" title=\"Armenian alphabet\">Armenian</a>, <a href=\"/wiki/Hebrew_alphabet\" title=\"Hebrew alphabet\">Hebrew</a>, <a href=\"/wiki/Arabic_alphabet\" title=\"Arabic alphabet\">Arabic</a>, <a href=\"/wiki/Syriac_alphabet\" title=\"Syriac alphabet\">Syriac</a> and <a href=\"/wiki/T%C4%81na\" title=\"Tāna\" class=\"mw-redirect\">Tāna</a> alphabets, as well as <a href=\"/wiki/Combining_Diacritical_Marks\" title=\"Combining Diacritical Marks\" class=\"mw-redirect\">Combining Diacritical Marks</a>. Three bytes are needed for characters in the rest of the <a href=\"/wiki/Mapping_of_Unicode_character_planes\" title=\"Mapping of Unicode character planes\" class=\"mw-redirect\">Basic Multilingual Plane</a> (which contains virtually all characters in common use). Four bytes are needed for characters in the <a href=\"/wiki/Mapping_of_Unicode_characters\" title=\"Mapping of Unicode characters\">other planes of Unicode</a>, which include less common <a href=\"/wiki/CJK_characters\" title=\"CJK characters\">CJK characters</a> and various historic scripts and mathematical symbols.</p>\n<p>The original specification covered numbers up to 31 bits (the original limit of the <a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">Universal Character Set</a>). In November 2003 UTF-8 was restricted by <a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> to end at U+<code>10FFFF</code>, in order to match the constraints of the <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> character encoding. This removed all 5- and 6-byte sequences, and about half of the 4-byte sequences.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=3\" title=\"Edit section: Examples\">edit</a>]</span> <span class=\"mw-headline\" id=\"Examples\">Examples</span></h3>\n<p>Let us consider how to encode the <a href=\"/wiki/Euro_sign\" title=\"Euro sign\">Euro sign</a>, €.</p>\n<ol>\n<li>The Unicode code point for \"€\" is U+20AC.</li>\n<li>According to the scheme table above, this will take three bytes to encode, as it is between U+07FF and U+FFFF.</li>\n<li>Hexadecimal <b><code>20AC</code></b> is binary <b><code>0010000010101100</code></b>. The two leading zeros are added because, as the scheme table shows, a three-byte encoding needs <i>exactly</i> sixteen bits from the code point.</li>\n<li>Because it is a three-byte encoding, the leading byte starts with three 1s, then a 0 (<b><code>1110</code></b>...)</li>\n<li>The remaining bits of this byte are taken from the code point (<b><code>1110<span style=\"color:blue;\">0010</span></code></b>), leaving ...<b><code>000010101100</code></b>.</li>\n<li>Each of the continuation bytes starts with <b><code>10</code></b> and takes six bits of the code point (so <b><code>10<span style=\"color:green;\">000010</span></code></b>, then <b><code>10<span style=\"color:red;\">101100</span></code></b>).</li>\n</ol>\n<p>The three bytes <b><code>1110<span style=\"color:blue;\">0010</span></code></b> <b><code>10<span style=\"color:green;\">000010</span></code></b> <b><code>10<span style=\"color:red;\">101100</span></code></b> can be more concisely written in hexadecimal, as <b><code><span style=\"color:blue;\">E2</span> <span style=\"color:green;\">82</span> <span style=\"color:red;\">AC</span></code></b>.</p>\n<p>The following table summarises this conversion, as well as others with different lengths in UTF-8. The colors indicate how bits from the code point are distributed among the UTF-8 bytes. Additional bits added by the UTF-8 encoding process are shown in black.</p>\n<table class=\"wikitable\" style=\"font-weight: bold\">\n<tr>\n<th colspan=\"2\">Character</th>\n<th>Binary code point</th>\n<th>Binary UTF-8</th>\n<th>Hexadecimal UTF-8</th>\n</tr>\n<tr>\n<td><a href=\"/wiki/$\" title=\"$\" class=\"mw-redirect\">$</a></td>\n<td><code>U+0024</code></td>\n<td align=\"right\"><code><span style=\"color:red;\">0100100</span></code></td>\n<td align=\"right\"><code>0<span style=\"color:red;\">0100100</span></code></td>\n<td align=\"right\"><code><span style=\"color:red;\">24</span></code></td>\n</tr>\n<tr>\n<td><a href=\"/wiki/%C2%A2\" title=\"¢\" class=\"mw-redirect\">¢</a></td>\n<td><code>U+00A2</code></td>\n<td align=\"right\"><code><span style=\"color:green;\">00010</span><span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code>110<span style=\"color:green;\">00010</span> 10<span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code><span style=\"color:green;\">C2</span> <span style=\"color:red;\">A2</span></code></td>\n</tr>\n<tr>\n<td><a href=\"/wiki/%E2%82%AC\" title=\"€\" class=\"mw-redirect\">€</a></td>\n<td><code>U+20AC</code></td>\n<td align=\"right\"><code><span style=\"color:blue;\">0010</span><span style=\"color:green;\">000010</span><span style=\"color:red;\">101100</span></code></td>\n<td align=\"right\"><code>1110<span style=\"color:blue;\">0010</span> 10<span style=\"color:green;\">000010</span> 10<span style=\"color:red;\">101100</span></code></td>\n<td align=\"right\"><code><span style=\"color:blue;\">E2</span> <span style=\"color:green;\">82</span> <span style=\"color:red;\">AC</span></code></td>\n</tr>\n<tr>\n<td><a href=\"/wiki/Chinese_character\" title=\"Chinese character\" class=\"mw-redirect\">𤭢</a></td>\n<td><code>U+24B62</code></td>\n<td align=\"right\"><code><span style=\"color:#C000C0;\">000</span><span style=\"color:blue;\">100100</span><span style=\"color:green;\">101101</span><span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code>11110<span style=\"color:#C000C0;\">000</span> 10<span style=\"color:blue;\">100100</span> 10<span style=\"color:green;\">101101</span> 10<span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code><span style=\"color:#C000C0;\">F0</span> <span style=\"color:blue;\">A4</span> <span style=\"color:green;\">AD</span> <span style=\"color:red;\">A2</span></code></td>\n</tr>\n</table>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=4\" title=\"Edit section: Overlong encodings\">edit</a>]</span> <span class=\"mw-headline\" id=\"Overlong_encodings\">Overlong encodings</span></h3>\n<p>The standard specifies that the correct encoding of a codepoint use only the minimum number of bytes required to hold the significant bits of the codepoint. Longer encodings are called <i>overlong</i> and are not valid UTF-8 representations of the codepoint. This rule maintains a one-to-one correspondence between codepoints and their valid encodings, so that there is a unique valid encoding for each codepoint. Allowing multiple encodings would make testing for string equality difficult to define.</p>\n<p>In principle, it would be possible to inflate the number of bytes in an encoding by padding the codepoint with leading 0s. To encode the Euro sign € from the above example in four bytes instead of three, it could be padded with leading 0s until it was 21 bits long—<b><code>000000010000010101100</code></b>. The leading byte prefix for a four-byte encoding is <b><code>11110</code></b>, and so the complete, overlong encoding is <b><code>11110<span style=\"color:#C000C0;\">000</span></code></b> <b><code>10<span style=\"color:blue;\">000010</span></code></b> <b><code>10<span style=\"color:green;\">000010</span></code></b> <b><code>10<span style=\"color:red;\">101100</span></code></b> (or <b><code><span style=\"color:#C000C0;\">F0</span></code></b> <b><code><span style=\"color:blue;\">82</span></code></b> <b><code><span style=\"color:green;\">82</span></code></b> <b><code><span style=\"color:red;\">AC</span></code></b> in hexadecimal).</p>\n<p>Although overlong encodings are forbidden in UTF-8, at least one derivative makes use of the form. <a href=\"#Modified_UTF-8\">Modified UTF-8</a> requires the Unicode codepoint U+0000 (the NUL character) to be encoded in the overlong form <b><code>110<span style=\"color:green;\">00000</span></code></b> <b><code>10<span style=\"color:red;\">000000</span></code></b> (hex <b><code><span style=\"color:green;\">C0</span></code></b> <b><code><span style=\"color:red;\">80</span></code></b>), rather than <b><code>00000000</code></b> (hex <b><code>00</code></b>). This allows the byte <b><code>00</code></b> to be used as a <a href=\"/wiki/Null-terminated_string\" title=\"Null-terminated string\">string terminator</a>.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=5\" title=\"Edit section: Codepage layout\">edit</a>]</span> <span class=\"mw-headline\" id=\"Codepage_layout\">Codepage layout</span></h3>\n<table class=\"wikitable chset nounderlines\" frame=\"box\" width=\"100%\" style=\"text-align: center; font-family: monospace; border-collapse: collapse\">\n<tr>\n<th colspan=\"17\"><b>UTF-8</b></th>\n</tr>\n<tr>\n<td width=\"4%\"></td>\n<th width=\"6%\">_0</th>\n<th width=\"6%\">_1</th>\n<th width=\"6%\">_2</th>\n<th width=\"6%\">_3</th>\n<th width=\"6%\">_4</th>\n<th width=\"6%\">_5</th>\n<th width=\"6%\">_6</th>\n<th width=\"6%\">_7</th>\n<th width=\"6%\">_8</th>\n<th width=\"6%\">_9</th>\n<th width=\"6%\">_A</th>\n<th width=\"6%\">_B</th>\n<th width=\"6%\">_C</th>\n<th width=\"6%\">_D</th>\n<th width=\"6%\">_E</th>\n<th width=\"6%\">_F</th>\n</tr>\n<tr>\n<th>&#160;<br />\n0_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Null_character\" title=\"Null character\">NUL</a></small><br />\n<small>0000</small><br />\n<i><b>0</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Start_of_heading\" title=\"Start of heading\" class=\"mw-redirect\">SOH</a></small><br />\n<small>0001</small><br />\n<i><b>1</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Start_of_text\" title=\"Start of text\" class=\"mw-redirect\">STX</a></small><br />\n<small>0002</small><br />\n<i><b>2</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_text\" title=\"End of text\" class=\"mw-redirect\">ETX</a></small><br />\n<small>0003</small><br />\n<i><b>3</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_transmission_character\" title=\"End of transmission character\" class=\"mw-redirect\">EOT</a></small><br />\n<small>0004</small><br />\n<i><b>4</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Enquiry_character\" title=\"Enquiry character\">ENQ</a></small><br />\n<small>0005</small><br />\n<i><b>5</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Acknowledge_character\" title=\"Acknowledge character\">ACK</a></small><br />\n<small>0006</small><br />\n<i><b>6</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Bell_character\" title=\"Bell character\">BEL</a></small><br />\n<small>0007</small><br />\n<i><b>7</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Backspace\" title=\"Backspace\">BS</a></small><br />\n<small>0008</small><br />\n<i><b>8</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Tab_key\" title=\"Tab key\">HT</a></small><br />\n<small>0009</small><br />\n<i><b>9</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Line_feed\" title=\"Line feed\" class=\"mw-redirect\">LF</a></small><br />\n<small>000A</small><br />\n<i><b>10</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Vertical_tab\" title=\"Vertical tab\" class=\"mw-redirect\">VT</a></small><br />\n<small>000B</small><br />\n<i><b>11</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Form_feed\" title=\"Form feed\" class=\"mw-redirect\">FF</a></small><br />\n<small>000C</small><br />\n<i><b>12</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Carriage_return\" title=\"Carriage return\">CR</a></small><br />\n<small>000D</small><br />\n<i><b>13</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Shift_out\" title=\"Shift out\" class=\"mw-redirect\">SO</a></small><br />\n<small>000E</small><br />\n<i><b>14</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Shift_in\" title=\"Shift in\" class=\"mw-redirect\">SI</a></small><br />\n<small>000F</small><br />\n<i><b>15</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n1_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Data_link_escape\" title=\"Data link escape\" class=\"mw-redirect\">DLE</a></small><br />\n<small>0010</small><br />\n<i><b>16</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_1\" title=\"Device Control 1\" class=\"mw-redirect\">DC1</a></small><br />\n<small>0011</small><br />\n<i><b>17</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_2\" title=\"Device Control 2\" class=\"mw-redirect\">DC2</a></small><br />\n<small>0012</small><br />\n<i><b>18</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_3\" title=\"Device Control 3\" class=\"mw-redirect\">DC3</a></small><br />\n<small>0013</small><br />\n<i><b>19</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_4\" title=\"Device Control 4\" class=\"mw-redirect\">DC4</a></small><br />\n<small>0014</small><br />\n<i><b>20</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Negative_acknowledge_character\" title=\"Negative acknowledge character\" class=\"mw-redirect\">NAK</a></small><br />\n<small>0015</small><br />\n<i><b>21</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Synchronous_idle\" title=\"Synchronous idle\">SYN</a></small><br />\n<small>0016</small><br />\n<i><b>22</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_transmission_block\" title=\"End of transmission block\" class=\"mw-redirect\">ETB</a></small><br />\n<small>0017</small><br />\n<i><b>23</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Cancel_character\" title=\"Cancel character\">CAN</a></small><br />\n<small>0018</small><br />\n<i><b>24</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_medium\" title=\"End of medium\" class=\"mw-redirect\">EM</a></small><br />\n<small>0019</small><br />\n<i><b>25</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Substitute_character\" title=\"Substitute character\">SUB</a></small><br />\n<small>001A</small><br />\n<i><b>26</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Escape_character\" title=\"Escape character\">ESC</a></small><br />\n<small>001B</small><br />\n<i><b>27</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/File_separator\" title=\"File separator\" class=\"mw-redirect\">FS</a></small><br />\n<small>001C</small><br />\n<i><b>28</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Group_separator\" title=\"Group separator\" class=\"mw-redirect\">GS</a></small><br />\n<small>001D</small><br />\n<i><b>29</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Record_separator\" title=\"Record separator\" class=\"mw-redirect\">RS</a></small><br />\n<small>001E</small><br />\n<i><b>30</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Unit_separator\" title=\"Unit separator\" class=\"mw-redirect\">US</a></small><br />\n<small>001F</small><br />\n<i><b>31</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n2_<br />\n&#160;</th>\n<td style=\"background:#DFF7FF;\"><small><a href=\"/wiki/Space_character\" title=\"Space character\" class=\"mw-redirect\">SP</a></small><br />\n<small>0020</small><br />\n<i><b>32</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Exclamation_mark\" title=\"Exclamation mark\">!</a></span><br />\n<small>0021</small><br />\n<i><b>33</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Quotation_mark\" title=\"Quotation mark\">\"</a></span><br />\n<small>0022</small><br />\n<i><b>34</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Number_sign\" title=\"Number sign\">#</a></span><br />\n<small>0023</small><br />\n<i><b>35</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Dollar_sign\" title=\"Dollar sign\">$</a></span><br />\n<small>0024</small><br />\n<i><b>36</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Percent_sign\" title=\"Percent sign\">%</a></span><br />\n<small>0025</small><br />\n<i><b>37</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Ampersand\" title=\"Ampersand\">&amp;</a></span><br />\n<small>0026</small><br />\n<i><b>38</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Apostrophe\" title=\"Apostrophe\">'</a></span><br />\n<small>0027</small><br />\n<i><b>39</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Bracket\" title=\"Bracket\">(</a></span><br />\n<small>0028</small><br />\n<i><b>40</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Bracket\" title=\"Bracket\">)</a></span><br />\n<small>0029</small><br />\n<i><b>41</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Asterisk\" title=\"Asterisk\">*</a></span><br />\n<small>002A</small><br />\n<i><b>42</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Plus_and_minus_signs\" title=\"Plus and minus signs\">+</a></span><br />\n<small>002B</small><br />\n<i><b>43</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Comma_(punctuation)\" title=\"Comma (punctuation)\" class=\"mw-redirect\">,</a></span><br />\n<small>002C</small><br />\n<i><b>44</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Plus_and_minus_signs\" title=\"Plus and minus signs\">-</a></span><br />\n<small>002D</small><br />\n<i><b>45</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Full_stop\" title=\"Full stop\">.</a></span><br />\n<small>002E</small><br />\n<i><b>46</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Slash_(punctuation)\" title=\"Slash (punctuation)\">/</a></span><br />\n<small>002F</small><br />\n<i><b>47</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n3_<br />\n&#160;</th>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/0_(number)\" title=\"0 (number)\">0</a></span><br />\n<small>0030</small><br />\n<i><b>48</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/1_(number)\" title=\"1 (number)\">1</a></span><br />\n<small>0031</small><br />\n<i><b>49</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/2_(number)\" title=\"2 (number)\">2</a></span><br />\n<small>0032</small><br />\n<i><b>50</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/3_(number)\" title=\"3 (number)\">3</a></span><br />\n<small>0033</small><br />\n<i><b>51</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/4_(number)\" title=\"4 (number)\">4</a></span><br />\n<small>0034</small><br />\n<i><b>52</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/5_(number)\" title=\"5 (number)\">5</a></span><br />\n<small>0035</small><br />\n<i><b>53</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/6_(number)\" title=\"6 (number)\">6</a></span><br />\n<small>0036</small><br />\n<i><b>54</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/7_(number)\" title=\"7 (number)\">7</a></span><br />\n<small>0037</small><br />\n<i><b>55</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/8_(number)\" title=\"8 (number)\">8</a></span><br />\n<small>0038</small><br />\n<i><b>56</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/9_(number)\" title=\"9 (number)\">9</a></span><br />\n<small>0039</small><br />\n<i><b>57</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Colon_(punctuation)\" title=\"Colon (punctuation)\">:</a></span><br />\n<small>003A</small><br />\n<i><b>58</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Semicolon\" title=\"Semicolon\">;</a></span><br />\n<small>003B</small><br />\n<i><b>59</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Angle_bracket\" title=\"Angle bracket\" class=\"mw-redirect\">&lt;</a></span><br />\n<small>003C</small><br />\n<i><b>60</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Equal_sign\" title=\"Equal sign\" class=\"mw-redirect\">=</a></span><br />\n<small>003D</small><br />\n<i><b>61</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Angle_bracket\" title=\"Angle bracket\" class=\"mw-redirect\">&gt;</a></span><br />\n<small>003E</small><br />\n<i><b>62</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Question_mark\" title=\"Question mark\">?</a></span><br />\n<small>003F</small><br />\n<i><b>63</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n4_<br />\n&#160;</th>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/@\" title=\"@\" class=\"mw-redirect\">@</a></span><br />\n<small>0040</small><br />\n<i><b>64</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/A\" title=\"A\">A</a></span><br />\n<small>0041</small><br />\n<i><b>65</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/B\" title=\"B\">B</a></span><br />\n<small>0042</small><br />\n<i><b>66</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/C\" title=\"C\">C</a></span><br />\n<small>0043</small><br />\n<i><b>67</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/D\" title=\"D\">D</a></span><br />\n<small>0044</small><br />\n<i><b>68</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/E\" title=\"E\">E</a></span><br />\n<small>0045</small><br />\n<i><b>69</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/F\" title=\"F\">F</a></span><br />\n<small>0046</small><br />\n<i><b>70</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/G\" title=\"G\">G</a></span><br />\n<small>0047</small><br />\n<i><b>71</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/H\" title=\"H\">H</a></span><br />\n<small>0048</small><br />\n<i><b>72</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/I\" title=\"I\">I</a></span><br />\n<small>0049</small><br />\n<i><b>73</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/J\" title=\"J\">J</a></span><br />\n<small>004A</small><br />\n<i><b>74</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/K\" title=\"K\">K</a></span><br />\n<small>004B</small><br />\n<i><b>75</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/L\" title=\"L\">L</a></span><br />\n<small>004C</small><br />\n<i><b>76</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/M\" title=\"M\">M</a></span><br />\n<small>004D</small><br />\n<i><b>77</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/N\" title=\"N\">N</a></span><br />\n<small>004E</small><br />\n<i><b>78</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/O\" title=\"O\">O</a></span><br />\n<small>004F</small><br />\n<i><b>79</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n5_<br />\n&#160;</th>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/P\" title=\"P\">P</a></span><br />\n<small>0050</small><br />\n<i><b>80</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Q\" title=\"Q\">Q</a></span><br />\n<small>0051</small><br />\n<i><b>81</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/R\" title=\"R\">R</a></span><br />\n<small>0052</small><br />\n<i><b>82</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/S\" title=\"S\">S</a></span><br />\n<small>0053</small><br />\n<i><b>83</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/T\" title=\"T\">T</a></span><br />\n<small>0054</small><br />\n<i><b>84</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/U\" title=\"U\">U</a></span><br />\n<small>0055</small><br />\n<i><b>85</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/V\" title=\"V\">V</a></span><br />\n<small>0056</small><br />\n<i><b>86</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/W\" title=\"W\">W</a></span><br />\n<small>0057</small><br />\n<i><b>87</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/X\" title=\"X\">X</a></span><br />\n<small>0058</small><br />\n<i><b>88</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Y\" title=\"Y\">Y</a></span><br />\n<small>0059</small><br />\n<i><b>89</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Z\" title=\"Z\">Z</a></span><br />\n<small>005A</small><br />\n<i><b>90</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Square_brackets\" title=\"Square brackets\" class=\"mw-redirect\">[</a></span><br />\n<small>005B</small><br />\n<i><b>91</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Backslash\" title=\"Backslash\">\\</a></span><br />\n<small>005C</small><br />\n<i><b>92</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Square_brackets\" title=\"Square brackets\" class=\"mw-redirect\">]</a></span><br />\n<small>005D</small><br />\n<i><b>93</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Circumflex\" title=\"Circumflex\">^</a></span><br />\n<small>005E</small><br />\n<i><b>94</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Underscore\" title=\"Underscore\">_</a></span><br />\n<small>005F</small><br />\n<i><b>95</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n6_<br />\n&#160;</th>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Grave_accent\" title=\"Grave accent\">`</a></span><br />\n<small>0060</small><br />\n<i><b>96</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/A\" title=\"A\">a</a></span><br />\n<small>0061</small><br />\n<i><b>97</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/B\" title=\"B\">b</a></span><br />\n<small>0062</small><br />\n<i><b>98</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/C\" title=\"C\">c</a></span><br />\n<small>0063</small><br />\n<i><b>99</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/D\" title=\"D\">d</a></span><br />\n<small>0064</small><br />\n<i><b>100</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/E\" title=\"E\">e</a></span><br />\n<small>0065</small><br />\n<i><b>101</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/F\" title=\"F\">f</a></span><br />\n<small>0066</small><br />\n<i><b>102</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/G\" title=\"G\">g</a></span><br />\n<small>0067</small><br />\n<i><b>103</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/H\" title=\"H\">h</a></span><br />\n<small>0068</small><br />\n<i><b>104</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/I\" title=\"I\">i</a></span><br />\n<small>0069</small><br />\n<i><b>105</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/J\" title=\"J\">j</a></span><br />\n<small>006A</small><br />\n<i><b>106</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/K\" title=\"K\">k</a></span><br />\n<small>006B</small><br />\n<i><b>107</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/L\" title=\"L\">l</a></span><br />\n<small>006C</small><br />\n<i><b>108</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/M\" title=\"M\">m</a></span><br />\n<small>006D</small><br />\n<i><b>109</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/N\" title=\"N\">n</a></span><br />\n<small>006E</small><br />\n<i><b>110</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/O\" title=\"O\">o</a></span><br />\n<small>006F</small><br />\n<i><b>111</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n7_<br />\n&#160;</th>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/P\" title=\"P\">p</a></span><br />\n<small>0070</small><br />\n<i><b>112</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Q\" title=\"Q\">q</a></span><br />\n<small>0071</small><br />\n<i><b>113</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/R\" title=\"R\">r</a></span><br />\n<small>0072</small><br />\n<i><b>114</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/S\" title=\"S\">s</a></span><br />\n<small>0073</small><br />\n<i><b>115</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/T\" title=\"T\">t</a></span><br />\n<small>0074</small><br />\n<i><b>116</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/U\" title=\"U\">u</a></span><br />\n<small>0075</small><br />\n<i><b>117</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/V\" title=\"V\">v</a></span><br />\n<small>0076</small><br />\n<i><b>118</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/W\" title=\"W\">w</a></span><br />\n<small>0077</small><br />\n<i><b>119</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/X\" title=\"X\">x</a></span><br />\n<small>0078</small><br />\n<i><b>120</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Y\" title=\"Y\">y</a></span><br />\n<small>0079</small><br />\n<i><b>121</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Z\" title=\"Z\">z</a></span><br />\n<small>007A</small><br />\n<i><b>122</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Braces_(punctuation)\" title=\"Braces (punctuation)\" class=\"mw-redirect\">{</a></span><br />\n<small>007B</small><br />\n<i><b>123</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Vertical_bar\" title=\"Vertical bar\">|</a></span><br />\n<small>007C</small><br />\n<i><b>124</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Braces_(punctuation)\" title=\"Braces (punctuation)\" class=\"mw-redirect\">}</a></span><br />\n<small>007D</small><br />\n<i><b>125</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Tilde\" title=\"Tilde\">~</a></span><br />\n<small>007E</small><br />\n<i><b>126</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Delete_character\" title=\"Delete character\">DEL</a></small><br />\n<small>007F</small><br />\n<i><b>127</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n8_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+00</small><br />\n<i><b>128</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+01</small><br />\n<i><b>129</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+02</small><br />\n<i><b>130</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+03</small><br />\n<i><b>131</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+04</small><br />\n<i><b>132</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+05</small><br />\n<i><b>133</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+06</small><br />\n<i><b>134</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+07</small><br />\n<i><b>135</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+08</small><br />\n<i><b>136</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+09</small><br />\n<i><b>137</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0A</small><br />\n<i><b>138</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0B</small><br />\n<i><b>139</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0C</small><br />\n<i><b>140</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0D</small><br />\n<i><b>141</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0E</small><br />\n<i><b>142</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0F</small><br />\n<i><b>143</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n9_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+10</small><br />\n<i><b>144</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+11</small><br />\n<i><b>145</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+12</small><br />\n<i><b>146</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+13</small><br />\n<i><b>147</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+14</small><br />\n<i><b>148</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+15</small><br />\n<i><b>149</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+16</small><br />\n<i><b>150</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+17</small><br />\n<i><b>151</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+18</small><br />\n<i><b>152</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+19</small><br />\n<i><b>153</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1A</small><br />\n<i><b>154</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1B</small><br />\n<i><b>155</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1C</small><br />\n<i><b>156</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1D</small><br />\n<i><b>157</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1E</small><br />\n<i><b>158</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1F</small><br />\n<i><b>159</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\nA_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+20</small><br />\n<i><b>160</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+21</small><br />\n<i><b>161</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+22</small><br />\n<i><b>162</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+23</small><br />\n<i><b>163</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+24</small><br />\n<i><b>164</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+25</small><br />\n<i><b>165</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+26</small><br />\n<i><b>166</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+27</small><br />\n<i><b>167</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+28</small><br />\n<i><b>168</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+29</small><br />\n<i><b>169</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2A</small><br />\n<i><b>170</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2B</small><br />\n<i><b>171</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2C</small><br />\n<i><b>172</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2D</small><br />\n<i><b>173</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2E</small><br />\n<i><b>174</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2F</small><br />\n<i><b>175</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\nB_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+30</small><br />\n<i><b>176</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+31</small><br />\n<i><b>177</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+32</small><br />\n<i><b>178</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+33</small><br />\n<i><b>179</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+34</small><br />\n<i><b>180</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+35</small><br />\n<i><b>181</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+36</small><br />\n<i><b>182</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+37</small><br />\n<i><b>183</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+38</small><br />\n<i><b>184</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+39</small><br />\n<i><b>185</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3A</small><br />\n<i><b>186</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3B</small><br />\n<i><b>187</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3C</small><br />\n<i><b>188</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3D</small><br />\n<i><b>189</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3E</small><br />\n<i><b>190</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3F</small><br />\n<i><b>191</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n2-byte<br />\nC_<br />\n&#160;</th>\n<td bgcolor=\"#FF0000\"><small>2-byte<br />\ninval</small><br />\n<small><small>(0000)</small></small><br />\n<i><b>192</b></i></td>\n<td bgcolor=\"#FF0000\"><small>2-byte<br />\ninval</small><br />\n<small><small>(0040)</small></small><br />\n<i><b>193</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/C1_Controls_and_Latin-1_Supplement\" title=\"C1 Controls and Latin-1 Supplement\" class=\"mw-redirect\">Latin-1</a></small><br />\n<small>0080</small><br />\n<i><b>194</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/C1_Controls_and_Latin-1_Supplement\" title=\"C1 Controls and Latin-1 Supplement\" class=\"mw-redirect\">Latin-1</a></small><br />\n<small>00C0</small><br />\n<i><b>195</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-A\" title=\"Latin Extended-A\">Latin<br />\nExt-A</a></small><br />\n<small>0100</small><br />\n<i><b>196</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-A\" title=\"Latin Extended-A\">Latin<br />\nExt-A</a></small><br />\n<small>0140</small><br />\n<i><b>197</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-B\" title=\"Latin Extended-B\">Latin<br />\nExt-B</a></small><br />\n<small>0180</small><br />\n<i><b>198</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-B\" title=\"Latin Extended-B\">Latin<br />\nExt-B</a></small><br />\n<small>01C0</small><br />\n<i><b>199</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-B\" title=\"Latin Extended-B\">Latin<br />\nExt-B</a></small><br />\n<small>0200</small><br />\n<i><b>200</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/IPA_Extensions_(Unicode_block)\" title=\"IPA Extensions (Unicode block)\">IPA</a></small><br />\n<small>0240</small><br />\n<i><b>201</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/IPA_Extensions_(Unicode_block)\" title=\"IPA Extensions (Unicode block)\">IPA</a></small><br />\n<small>0280</small><br />\n<i><b>202</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Unicode_Phonetic_Symbols#Spacing_Modifier_Letters_.28U.2B02B0.E2.80.9302FF.29\" title=\"Unicode Phonetic Symbols\" class=\"mw-redirect\">Spaci<br />\nModif</a></small><br />\n<small>02C0</small><br />\n<i><b>203</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combi<br />\nDiacr</a></small><br />\n<small>0300</small><br />\n<i><b>204</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combi<br />\nDiacr</a></small><br />\n<small>0340</small><br />\n<i><b>205</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Greek_alphabet#Greek_in_Unicode\" title=\"Greek alphabet\">Greek</a></small><br />\n<small>0380</small><br />\n<i><b>206</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Greek_alphabet#Greek_in_Unicode\" title=\"Greek alphabet\">Greek</a></small><br />\n<small>03C0</small><br />\n<i><b>207</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n2-byte<br />\nD_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0400</small><br />\n<i><b>208</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0440</small><br />\n<i><b>209</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0480</small><br />\n<i><b>210</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>04C0</small><br />\n<i><b>211</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0500</small><br />\n<i><b>212</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Armenian_alphabet\" title=\"Armenian alphabet\">Armen</a></small><br />\n<small>0540</small><br />\n<i><b>213</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet\" title=\"Unicode and HTML for the Hebrew alphabet\">Hebrew</a></small><br />\n<small>0580</small><br />\n<i><b>214</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet\" title=\"Unicode and HTML for the Hebrew alphabet\">Hebrew</a></small><br />\n<small>05C0</small><br />\n<i><b>215</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0600</small><br />\n<i><b>216</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0640</small><br />\n<i><b>217</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0680</small><br />\n<i><b>218</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>06C0</small><br />\n<i><b>219</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Syriac_alphabet\" title=\"Syriac alphabet\">Syriac</a></small><br />\n<small>0700</small><br />\n<i><b>220</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0740</small><br />\n<i><b>221</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/T%C4%81na\" title=\"Tāna\" class=\"mw-redirect\">Thaana</a></small><br />\n<small>0780</small><br />\n<i><b>222</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/N%27Ko\" title=\"N'Ko\" class=\"mw-redirect\">N'Ko</a></small><br />\n<small>07C0</small><br />\n<i><b>223</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n3-byte<br />\nE_<br />\n&#160;</th>\n<td bgcolor=\"#EEEEEE\"><small>Indic</small><br />\n<small>0800*</small><br />\n<i><b>224</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Misc.</small><br />\n<small>1000</small><br />\n<i><b>225</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Symbol</small><br />\n<small>2000</small><br />\n<i><b>226</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Kana\" title=\"Kana\">Kana</a><br />\n<a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>3000</small><br />\n<i><b>227</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>4000</small><br />\n<i><b>228</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>5000</small><br />\n<i><b>229</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>6000</small><br />\n<i><b>230</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>7000</small><br />\n<i><b>231</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>8000</small><br />\n<i><b>232</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>9000</small><br />\n<i><b>233</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Asian</small><br />\n<small>A000</small><br />\n<i><b>234</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a></small><br />\n<small>B000</small><br />\n<i><b>235</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a></small><br />\n<small>C000</small><br />\n<i><b>236</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a><br />\nSurr</small><br />\n<small>D000</small><br />\n<i><b>237</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Private_Use_Area\" title=\"Private Use Area\" class=\"mw-redirect\">Priv Use</a></small><br />\n<small>E000</small><br />\n<i><b>238</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Forms</small><br />\n<small>F000</small><br />\n<i><b>239</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n4-byte<br />\nF_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFFF\"><small>Ancient<br />\nSym,CJK</small><br />\n<small>10000*</small><br />\n<i><b>240</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small>unall</small><br />\n<small>40000</small><br />\n<i><b>241</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small>unall</small><br />\n<small>80000</small><br />\n<i><b>242</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small>Tags<br />\nPriv</small><br />\n<small>C0000</small><br />\n<i><b>243</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Private_Use_Area\" title=\"Private Use Area\" class=\"mw-redirect\">Priv<br />\nUse</a></small><br />\n<small>100000</small><br />\n<i><b>244</b></i></td>\n<td bgcolor=\"#FF0000\"><small>4-byte<br />\ninval</small><br />\n<small><small>140000</small></small><br />\n<i><b>245</b></i></td>\n<td bgcolor=\"#FF0000\"><small>4-byte<br />\ninval</small><br />\n<small><small>180000</small></small><br />\n<i><b>246</b></i></td>\n<td bgcolor=\"#FF0000\"><small>4-byte<br />\ninval</small><br />\n<small><small>1C0000</small></small><br />\n<i><b>247</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>200000*</small></small><br />\n<i><b>248</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>1000000</small></small><br />\n<i><b>249</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>2000000</small></small><br />\n<i><b>250</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>3000000</small></small><br />\n<i><b>251</b></i></td>\n<td bgcolor=\"#FF0000\"><small>6-byte<br />\ninval</small><br />\n<small><small>4000000*</small></small><br />\n<i><b>252</b></i></td>\n<td bgcolor=\"#FF0000\"><small>6-byte<br />\ninval</small><br />\n<small><small>40000000</small></small><br />\n<i><b>253</b></i></td>\n<td bgcolor=\"#FF0000\"><br />\n<br />\n<i><b>254</b></i></td>\n<td bgcolor=\"#FF0000\"><br />\n<br />\n<i><b>255</b></i></td>\n</tr>\n</table>\n<p>Legend: <span style=\"background: #ffffef; color: black\">Yellow</span> cells are control characters, <span style=\"background: rgb(223, 247, 255); color: black\">blue</span> cells are punctuation, <span style=\"background: rgb(247, 231, 255); color: black\">purple</span> cells are <a href=\"/wiki/Numerical_digit\" title=\"Numerical digit\">digits</a> and <span style=\"background: rgb(231, 255, 231); color: black\">green</span> cells are ASCII letters.</p>\n<p><span style=\"background: #ffcc88; color: black\">Orange</span> cells with a large dot are continuation bytes. The hexadecimal number shown after a \"+\" plus sign is the value of the 6 bits they add.</p>\n<p><span style=\"background: #ffffff; color: black\">White</span> cells are the start bytes for a sequence of multiple bytes, the length shown at the left edge of the row. The text shows the Unicode blocks encoded by sequences starting with this byte, and the hexadecimal code point shown in the cell is the lowest character value encoded using that start byte. When a start byte could form both overlong and valid encodings, the lowest non-overlong-encoded codepoint is shown, marked by an asterisk \"*\".</p>\n<p><span style=\"background: Red; color: black\">Red</span> cells must never appear in a valid UTF-8 sequence. The first two (C0 and C1) could only be used for overlong encoding of basic ASCII characters. The remaining red cells indicate start bytes of sequences that could only encode numbers larger than the 0x10FFFF limit of Unicode. The byte 244 (hex 0xF4) could also encode some values greater than 0x10FFFF; such a sequence is also invalid.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=6\" title=\"Edit section: Invalid byte sequences\">edit</a>]</span> <span class=\"mw-headline\" id=\"Invalid_byte_sequences\">Invalid byte sequences</span></h3>\n<p>Not all sequences of bytes are valid UTF-8. A UTF-8 decoder should be prepared for:</p>\n<ul>\n<li>the red invalid bytes in the above table</li>\n<li>an unexpected continuation byte</li>\n<li>a start byte not followed by enough continuation bytes</li>\n<li>a sequence that decodes to a value that should use a shorter sequence (an \"overlong form\")</li>\n<li>A 4-byte sequence (starting with 0xF4) that decodes to a value greater than U+10FFFF</li>\n</ul>\n<p>Many earlier decoders would happily try to decode these. Carefully crafted invalid UTF-8 could make them either skip or create ASCII characters such as NUL, slash, or quotes. Invalid UTF-8 has been used to bypass security validations in high profile products including Microsoft's <a href=\"/wiki/Internet_Information_Services\" title=\"Internet Information Services\">IIS</a> web server<sup id=\"cite_ref-MS00-078_10-0\" class=\"reference\"><a href=\"#cite_note-MS00-078-10\"><span>[</span>11<span>]</span></a></sup> and Apache's Tomcat servlet container.<sup id=\"cite_ref-CVE-2008-2938_11-0\" class=\"reference\"><a href=\"#cite_note-CVE-2008-2938-11\"><span>[</span>12<span>]</span></a></sup></p>\n<p>RFC 3629 states \"Implementations of the decoding algorithm MUST protect against decoding invalid sequences.\"<sup id=\"cite_ref-rfc3629_12-0\" class=\"reference\"><a href=\"#cite_note-rfc3629-12\"><span>[</span>13<span>]</span></a></sup> <i>The Unicode Standard</i> requires decoders to \"...treat any ill-formed code unit sequence as an error condition. This guarantees that it will neither interpret nor emit an ill-formed code unit sequence.\"</p>\n<p>Many UTF-8 decoders throw exceptions on encountering errors,<sup id=\"cite_ref-13\" class=\"reference\"><a href=\"#cite_note-13\"><span>[</span>14<span>]</span></a></sup> since such errors suggest the input is not a UTF-8 string at all. This can turn what would otherwise be harmless errors (producing a message such as \"no such file\") into a <a href=\"/wiki/Denial_of_service\" title=\"Denial of service\" class=\"mw-redirect\">denial of service</a> bug. For instance, Python 3.0 would exit immediately if the command line or <a href=\"/wiki/Environment_variable\" title=\"Environment variable\">environment variables</a> contained invalid UTF-8,<sup id=\"cite_ref-PEP383_14-0\" class=\"reference\"><a href=\"#cite_note-PEP383-14\"><span>[</span>15<span>]</span></a></sup> so it was impossible for any Python program to detect and recover from such an error.</p>\n<p>An increasingly popular option is to detect errors with a separate API, and for converters to translate the first byte to a replacement and continue parsing with the next byte. Popular replacements are:</p>\n<ul>\n<li>The <a href=\"/wiki/Replacement_character\" title=\"Replacement character\" class=\"mw-redirect\">replacement character</a> \"�\" (U+FFFD)</li>\n<li>The invalid Unicode code points U+DC80..U+DCFF where the low 8 bits are the byte's value.</li>\n<li>Interpret the bytes according to <a href=\"/wiki/ISO/IEC_8859-1\" title=\"ISO/IEC 8859-1\">ISO-8859-1</a> or <a href=\"/wiki/Windows-1252\" title=\"Windows-1252\">CP1252</a>.</li>\n</ul>\n<p>Replacing errors is \"lossy\": more than one UTF-8 string converts to the same Unicode result. Therefore the original UTF-8 should be stored, and translation should only be used when displaying the text to the user.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=7\" title=\"Edit section: Invalid code points\">edit</a>]</span> <span class=\"mw-headline\" id=\"Invalid_code_points\">Invalid code points</span></h3>\n<p>According to the UTF-8 definition (<a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a>) the high and low surrogate halves used by <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> (U+D800 through U+DFFF) are not legal Unicode values, and the UTF-8 encoding of them is an invalid byte sequence and thus should be treated as described above.</p>\n<p>Whether an actual application should do this with surrogate halves is debatable.<sup class=\"noprint Inline-Template\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Avoid_weasel_words\" title=\"Wikipedia:Avoid weasel words\" class=\"mw-redirect\"><span title=\"The material in the vicinity of this tag may use weasel words or too-vague attribution. from September 2011\">who?</span></a></i>]</sup> Allowing them allows lossless storage of invalid <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a>, and allows CESU encoding (described below) to be decoded. There are other code points that are far more important to detect and reject, such as the reversed-BOM U+FFFE, or the <a href=\"/wiki/C1_control_code\" title=\"C1 control code\" class=\"mw-redirect\">C1 controls</a>, caused by improper conversion of <a href=\"/wiki/CP1252\" title=\"CP1252\" class=\"mw-redirect\">CP1252</a> text or <a href=\"/wiki/Mojibake\" title=\"Mojibake\">double-encoding</a> of UTF-8. These <i>are</i> invalid in <a href=\"/wiki/HTML\" title=\"HTML\">HTML</a>.</p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=8\" title=\"Edit section: Official name and variants\">edit</a>]</span> <span class=\"mw-headline\" id=\"Official_name_and_variants\">Official name and variants</span></h2>\n<p>The official name is \"UTF-8\". All letters are upper-case, and the name is hyphenated. This spelling is used in all the documents relating to the encoding.</p>\n<p>Alternatively, the name \"utf-8\" may be used by all standards conforming to the <a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">Internet Assigned Numbers Authority</a> (IANA) list (which include <a href=\"/wiki/Cascading_Style_Sheets\" title=\"Cascading Style Sheets\">CSS</a>, <a href=\"/wiki/HTML\" title=\"HTML\">HTML</a>, <a href=\"/wiki/XML\" title=\"XML\">XML</a>, and <a href=\"/wiki/List_of_HTTP_headers\" title=\"List of HTTP headers\" class=\"mw-redirect\">HTTP headers</a>),<sup id=\"cite_ref-15\" class=\"reference\"><a href=\"#cite_note-15\"><span>[</span>16<span>]</span></a></sup> as the declaration is case insensitive.<sup id=\"cite_ref-16\" class=\"reference\"><a href=\"#cite_note-16\"><span>[</span>17<span>]</span></a></sup></p>\n<p>Other descriptions that omit the hyphen or replace it with a space, such as \"utf8\" or \"UTF 8\", are not accepted as correct by the governing standards.<sup id=\"cite_ref-17\" class=\"reference\"><a href=\"#cite_note-17\"><span>[</span>18<span>]</span></a></sup> Despite this, most agents such as browsers can understand them, and so standards intended to describe existing practice (such as HTML5) may effectively require their recognition.</p>\n<p>MySQL omits the hyphen in the following query:</p>\n<pre>\nSET NAMES 'utf8'\n</pre>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=9\" title=\"Edit section: Derivatives\">edit</a>]</span> <span class=\"mw-headline\" id=\"Derivatives\">Derivatives</span></h2>\n<p>The following implementations show slight differences from the UTF-8 specification. They are incompatible with the UTF-8 specification.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=10\" title=\"Edit section: CESU-8\">edit</a>]</span> <span class=\"mw-headline\" id=\"CESU-8\">CESU-8</span></h3>\n<div class=\"rellink relarticle mainarticle\">Main article: <a href=\"/wiki/CESU-8\" title=\"CESU-8\">CESU-8</a></div>\n<p>Many programs added UTF-8 conversions for <a href=\"/wiki/UCS-2\" title=\"UCS-2\" class=\"mw-redirect\">UCS-2</a> data and did not alter this UTF-8 conversion when UCS-2 was replaced with the surrogate-pair using <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a>. In such programs each half of a UTF-16 surrogate pair is encoded as its own 3-byte UTF-8 encoding, resulting in 6-byte sequences rather than 4 bytes for characters outside the <a href=\"/wiki/Mapping_of_Unicode_character_planes\" title=\"Mapping of Unicode character planes\" class=\"mw-redirect\">Basic Multilingual Plane</a>. <a href=\"/wiki/Oracle_Database\" title=\"Oracle Database\">Oracle</a> and <a href=\"/wiki/MySQL\" title=\"MySQL\">MySQL</a> databases use this, as well as Java and Tcl as described below, and probably many Windows programs where the programmers were unaware of the complexities of UTF-16. Although this non-optimal encoding is generally not deliberate, a supposed benefit is that it preserves UTF-16 binary sorting order when CESU-8 is binary sorted.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=11\" title=\"Edit section: Modified UTF-8\">edit</a>]</span> <span class=\"mw-headline\" id=\"Modified_UTF-8\">Modified UTF-8</span></h3>\n<p>In Modified UTF-8,<sup id=\"cite_ref-18\" class=\"reference\"><a href=\"#cite_note-18\"><span>[</span>19<span>]</span></a></sup> the <a href=\"/wiki/Null_character\" title=\"Null character\">null character</a> (U+0000) is encoded as 0xC0,0x80; this is not valid UTF-8<sup id=\"cite_ref-19\" class=\"reference\"><a href=\"#cite_note-19\"><span>[</span>20<span>]</span></a></sup> because it is not the shortest possible representation. Modified UTF-8 strings never contain any actual null bytes but can contain all Unicode code points including U+0000,<sup id=\"cite_ref-20\" class=\"reference\"><a href=\"#cite_note-20\"><span>[</span>21<span>]</span></a></sup> which allows such strings (with a null byte appended) to be processed by traditional <a href=\"/wiki/Null-terminated_string\" title=\"Null-terminated string\">null-terminated string</a> functions.</p>\n<p>All known Modified UTF-8 implementations also treat the surrogate pairs as in <a href=\"/wiki/CESU-8\" title=\"CESU-8\">CESU-8</a>.</p>\n<p>In normal usage, the <a href=\"/wiki/Java_(programming_language)\" title=\"Java (programming language)\">Java programming language</a> supports standard UTF-8 when reading and writing strings through <code><a rel=\"nofollow\" class=\"external text\" href=\"http://download.oracle.com/javase/7/docs/api/java/io/InputStreamReader.html\">InputStreamReader</a></code> and <code><a rel=\"nofollow\" class=\"external text\" href=\"http://download.oracle.com/javase/7/docs/api/java/io/OutputStreamWriter.html\">OutputStreamWriter</a></code>. However it uses Modified UTF-8 for object <a href=\"/wiki/Serialization#Java\" title=\"Serialization\">serialization</a>,<sup id=\"cite_ref-21\" class=\"reference\"><a href=\"#cite_note-21\"><span>[</span>22<span>]</span></a></sup> for the <a href=\"/wiki/Java_Native_Interface\" title=\"Java Native Interface\">Java Native Interface</a>,<sup id=\"cite_ref-22\" class=\"reference\"><a href=\"#cite_note-22\"><span>[</span>23<span>]</span></a></sup> and for embedding constant strings in <a href=\"/wiki/Class_(file_format)\" title=\"Class (file format)\" class=\"mw-redirect\">class files</a>.<sup id=\"cite_ref-23\" class=\"reference\"><a href=\"#cite_note-23\"><span>[</span>24<span>]</span></a></sup> <a href=\"/wiki/Tcl\" title=\"Tcl\">Tcl</a> also uses the same modified UTF-8<sup id=\"cite_ref-24\" class=\"reference\"><a href=\"#cite_note-24\"><span>[</span>25<span>]</span></a></sup> as Java for internal representation of Unicode data, but uses strict CESU-8 for external data.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=12\" title=\"Edit section: Extending from 31 bit to 36 bit range\">edit</a>]</span> <span class=\"mw-headline\" id=\"Extending_from_31_bit_to_36_bit_range\">Extending from 31 bit to 36 bit range</span></h3>\n<p>Extending the accepted input pattern from 6 bytes to 7 bytes would allow over 70 billion code points to be encoded;<sup id=\"cite_ref-25\" class=\"reference\"><a href=\"#cite_note-25\"><span>[</span>26<span>]</span></a></sup> however, this would require an initial byte value of 0xFE to be accepted as a 7-byte sequence indicator (see under Advantages in section \"<a href=\"#Compared_to_single-byte_encodings\">Compared to single-byte encodings</a>\").</p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=13\" title=\"Edit section: Byte order mark\">edit</a>]</span> <span class=\"mw-headline\" id=\"Byte_order_mark\">Byte order mark</span></h2>\n<p>Many <a href=\"/wiki/Microsoft_Windows\" title=\"Microsoft Windows\">Windows</a> programs (including Windows <a href=\"/wiki/Notepad_(Windows)\" title=\"Notepad (Windows)\" class=\"mw-redirect\">Notepad</a>) add the bytes 0xEF, 0xBB, 0xBF at the start of any document saved as UTF-8. This is the UTF-8 encoding of the Unicode <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order mark</a> (BOM), and is commonly referred to as a UTF-8 BOM, even though it is not relevant to byte order. The BOM can also appear if another encoding with a BOM is translated to UTF-8 without stripping it. Older text editors may display the BOM as \"ï»¿\" at the start of the document.</p>\n<p>The Unicode Standard neither requires nor recommends the use of the BOM for UTF-8.<sup id=\"cite_ref-26\" class=\"reference\"><a href=\"#cite_note-26\"><span>[</span>27<span>]</span></a></sup> The presence of the UTF-8 BOM may cause interoperability problems with existing software that could otherwise handle UTF-8; for example:</p>\n<ul>\n<li>Programming language parsers not explicitly designed for UTF-8 can often handle UTF-8 in string constants and comments, but cannot parse the BOM at the start of the file.</li>\n<li>Programs that identify file types by leading characters may fail to identify the file if a BOM is present even if the user of the file could skip the BOM. An example is the Unix <a href=\"/wiki/Shebang_(Unix)\" title=\"Shebang (Unix)\">shebang</a> syntax. Another example is Internet Explorer which will render pages in standards mode only when it starts with a <a href=\"/wiki/Document_type_declaration\" title=\"Document type declaration\" class=\"mw-redirect\">document type declaration</a>.</li>\n</ul>\n<p>If compatibility with existing programs is not important, the BOM <i>could</i> be used to identify UTF-8 encoding. Because checking if text is valid UTF-8 is very reliable (the majority of random byte sequences are <i>not</i> valid UTF-8) such use should not be necessary. Programs that insert information at the start of a file will break this identification (one example is offline browsers that add the originating URL to the start of the file).</p>\n<p>Unofficially, UTF-8-BOM or UTF-8-NOBOM are sometimes used to refer to text files which contain or lack a BOM. In Japan especially, \"UTF-8 encoding without BOM\" is sometimes called \"UTF-8N\".<sup class=\"Template-Fact\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Citation_needed\" title=\"Wikipedia:Citation needed\"><span title=\"This claim needs references to reliable sources from February 2012\">citation needed</span></a></i>]</sup></p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=14\" title=\"Edit section: Advantages and disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_and_disadvantages\">Advantages and disadvantages</span></h2>\n<table class=\"metadata plainlinks ambox mbox-small-left ambox-content ambox-Refimprove\" style=\"\">\n<tr>\n<td class=\"mbox-image\"><img alt=\"\" src=\"//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png\" width=\"50\" height=\"39\" /></td>\n<td class=\"mbox-text\" style=\"\"><span class=\"mbox-text-span\">This section <b>needs additional <a href=\"/wiki/Wikipedia:Citing_sources#Inline_citations\" title=\"Wikipedia:Citing sources\">citations</a> for <a href=\"/wiki/Wikipedia:Verifiability\" title=\"Wikipedia:Verifiability\">verification</a></b>. <small><i>(October 2009)</i></small></span></td>\n</tr>\n</table>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=15\" title=\"Edit section: General\">edit</a>]</span> <span class=\"mw-headline\" id=\"General\">General</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=16\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages\">Advantages</span></h4>\n<ul>\n<li>The <a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a> characters are represented by themselves as single bytes that do not appear anywhere else, which makes UTF-8 work with the majority of existing APIs that take bytes strings but only treat a small number of ASCII codes specially. This removes the need to write a new Unicode version of every API, and makes it much easier to convert existing systems to UTF-8 than any other Unicode encoding.</li>\n<li>UTF-8 is the only encoding for XML entities that does not require a BOM or an indication of the encoding.<sup id=\"cite_ref-27\" class=\"reference\"><a href=\"#cite_note-27\"><span>[</span>28<span>]</span></a></sup></li>\n<li>UTF-8 and UTF-16 are the standard encodings for Unicode text in HTML documents, with UTF-8 as the preferred and most used encoding.</li>\n<li>UTF-8 strings can be fairly reliably recognized as such by a simple <a href=\"/wiki/Heuristic_algorithm\" title=\"Heuristic algorithm\" class=\"mw-redirect\">heuristic algorithm</a>.<sup id=\"cite_ref-28\" class=\"reference\"><a href=\"#cite_note-28\"><span>[</span>29<span>]</span></a></sup> The probability of a random string of bytes which is not pure ASCII being valid UTF-8 is 3.9% for a two-byte sequence,<sup id=\"cite_ref-29\" class=\"reference\"><a href=\"#cite_note-29\"><span>[</span>30<span>]</span></a></sup> and decreases exponentially for longer sequences. <a href=\"/wiki/ISO/IEC_8859-1\" title=\"ISO/IEC 8859-1\">ISO/IEC 8859-1</a> is even less likely to be mis-recognized as UTF-8: the <i>only</i> non-ASCII characters in it would have to be in sequences starting with either an accented letter or the multiplication symbol and ending with a symbol. This is an advantage that most other encodings do not have, causing errors (<a href=\"/wiki/Mojibake\" title=\"Mojibake\">mojibake</a>) if the receiving application isn't told and can't guess the correct encoding. Even word-based UTF-16 can be mistaken for byte encodings (like in the \"<a href=\"/wiki/Bush_hid_the_facts\" title=\"Bush hid the facts\">bush hid the facts</a>\" bug).</li>\n<li><a href=\"/wiki/Lexicographical_order\" title=\"Lexicographical order\">Sorting</a> of UTF-8 strings as arrays of unsigned bytes will produce the same results as sorting them based on Unicode code points.</li>\n<li>Other byte-based encodings can pass through the same API. This means, however, that the encoding must be identified. Because the other encodings are unlikely to be valid UTF-8, a reliable way to implement this is to assume UTF-8 and switch to a legacy encoding only if several invalid UTF-8 byte sequences are encountered.</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=17\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages\">Disadvantages</span></h4>\n<ul>\n<li>A UTF-8 <a href=\"/wiki/Parsing\" title=\"Parsing\">parser</a> that is not compliant with current versions of the standard might accept a number of different pseudo-UTF-8 representations and convert them to the same Unicode output. This provides a way for information to leak past validation routines designed to process data in its eight-bit representation.<sup id=\"cite_ref-30\" class=\"reference\"><a href=\"#cite_note-30\"><span>[</span>31<span>]</span></a></sup></li>\n</ul>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=18\" title=\"Edit section: Compared to single-byte encodings\">edit</a>]</span> <span class=\"mw-headline\" id=\"Compared_to_single-byte_encodings\">Compared to single-byte encodings</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=19\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_2\">Advantages</span></h4>\n<ul>\n<li>UTF-8 can encode any <a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> character, avoiding the need to figure out and set a \"<a href=\"/wiki/Code_page\" title=\"Code page\">code page</a>\" or otherwise indicate what character set is in use, and allowing output in multiple scripts at the same time. For many scripts there have been more than one single-byte encoding in usage, so even knowing the script was insufficient information to display it correctly.</li>\n<li>The bytes 0xFE and 0xFF do not appear, so a valid UTF-8 stream never matches the UTF-16 <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order mark</a> and thus cannot be confused with it. The absence of 0xFF (0377) also eliminates the need to escape this byte in <a href=\"/wiki/Telnet\" title=\"Telnet\">Telnet</a> (and FTP control connection).</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=20\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages_2\">Disadvantages</span></h4>\n<ul>\n<li>UTF-8 encoded text is larger than the appropriate single-byte encoding except for plain ASCII characters. In the case of scripts which used 8-bit character sets with non-Latin scripts encoded in the upper half (such as most <a href=\"/wiki/Cyrillic_script\" title=\"Cyrillic script\">Cyrillic</a> and <a href=\"/wiki/Greek_alphabet\" title=\"Greek alphabet\">Greek alphabet</a> code pages), characters in UTF-8 will be double the size. For some scripts such as <a href=\"/wiki/Thai_alphabet\" title=\"Thai alphabet\">Thai</a> and <a href=\"/wiki/Hindi\" title=\"Hindi\">Hindi</a>'s <a href=\"/wiki/Devanagari\" title=\"Devanagari\">Devanagari</a>, characters will be triple the size (this has caused objections in India and other countries).</li>\n<li>It is possible in UTF-8 (or any other multi-byte encoding) to split or <a href=\"/wiki/Data_truncation\" title=\"Data truncation\">truncate</a> a string in the middle of a character, which may result in an invalid string. This will not happen in correct handling of UTF-8.</li>\n<li>If the code points are all the same size, measurements of a fixed number of them is easy. Due to ASCII-era documentation where \"character\" is used as a synonym for \"byte\" this is often considered important. However, by measuring string positions using bytes instead of \"characters\" most algorithms can be easily and efficiently adapted for UTF-8<sup class=\"Template-Fact\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Citation_needed\" title=\"Wikipedia:Citation needed\"><span title=\"This claim needs references to reliable sources from December 2009\">citation needed</span></a></i>]</sup>.</li>\n<li>Some software such as text editors will refuse to correctly display or interpret UTF-8 unless it starts with a <a href=\"/wiki/Byte_Order_Mark\" title=\"Byte Order Mark\" class=\"mw-redirect\">Byte Order Mark</a>. This has the effect of making it impossible to use UTF-8 with any older software than can handle ASCII-like encodings but cannot handle the byte order mark. This is considered an incorrect implementation of the text editor, not the older software.</li>\n</ul>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=21\" title=\"Edit section: Compared to other multi-byte encodings\">edit</a>]</span> <span class=\"mw-headline\" id=\"Compared_to_other_multi-byte_encodings\">Compared to other multi-byte encodings</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=22\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_3\">Advantages</span></h4>\n<ul>\n<li>UTF-8 uses the codes 0–127 <i>only</i> for the ASCII characters. This means that UTF-8 is an <a href=\"/wiki/Extended_ASCII\" title=\"Extended ASCII\">ASCII extension</a> and can with limited change be supported by software that supports an ASCII extension and handles non-ASCII characters as free text.</li>\n<li>UTF-8 can encode any <a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> character. Files in different scripts can be displayed correctly without having to choose the correct code page or font. For instance Chinese and Arabic can be supported (in the same text) without special codes inserted or manual settings to switch the encoding.</li>\n<li>UTF-8 is \"self-synchronizing\": character boundaries are easily found when searching either forwards or backwards. If bytes are lost due to error or <a href=\"/wiki/Data_corruption\" title=\"Data corruption\">corruption</a>, one can always locate the beginning of the next character and thus limit the damage. Many multi-byte encodings are much harder to resynchronize.</li>\n<li>Any <a href=\"/wiki/Byte_orientation\" title=\"Byte orientation\">byte oriented</a> <a href=\"/wiki/String_searching_algorithm\" title=\"String searching algorithm\">string searching algorithm</a> can be used with UTF-8 data, since the sequence of bytes for a character cannot occur anywhere else. Some older variable-length encodings (such as <a href=\"/wiki/Shift_JIS\" title=\"Shift JIS\">Shift JIS</a>) did not have this property and thus made string-matching algorithms rather complicated. In Shift JIS the end byte of a character and the first byte of the next character could look like another legal character, something that can't happen in UTF-8.</li>\n<li>Efficient to encode using simple <a href=\"/wiki/Bit_operation\" title=\"Bit operation\" class=\"mw-redirect\">bit operations</a>. UTF-8 does not require slower mathematical operations such as multiplication or division (unlike the obsolete <a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a> encoding).</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=23\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages_3\">Disadvantages</span></h4>\n<ul>\n<li>For certain scripts UTF-8 will take more space than an older multi-byte encoding. East Asian scripts generally have two bytes per character in their multi-byte encodings yet take three bytes per character in UTF-8.</li>\n</ul>\n<p><br /></p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=24\" title=\"Edit section: Compared to UTF-16\">edit</a>]</span> <span class=\"mw-headline\" id=\"Compared_to_UTF-16\">Compared to UTF-16</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=25\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_4\">Advantages</span></h4>\n<ul>\n<li>A text byte stream cannot be losslessly converted to UTF-16, due to the possible presence of errors in the byte stream encoding. This causes unexpected and often severe problems attempting to use existing data in a system that uses UTF-16 as an internal encoding. Results are security bugs, <a href=\"/wiki/Denial_of_service\" title=\"Denial of service\" class=\"mw-redirect\">DoS</a> if bad encoding throws an exception, and data loss when different byte streams convert to the same UTF-16. Due to the ASCII compatibility and high degree of pattern recognition in UTF-8, random byte streams can be passed losslessly through a system using it, as interpretation can be deferred until display.</li>\n<li>Converting to UTF-16 while maintaining compatibility with existing programs (such as was done with Windows) requires <i>every</i> API and data structure that takes a string to be duplicated. Invalid encodings make the duplicated APIs not exactly map to each other, often making it impossible to do some action with one of them.</li>\n<li>Characters outside the basic multilingual plane are not a special case. UTF-16 is often mistaken to be the obsolete constant-length <a href=\"/wiki/UCS-2\" title=\"UCS-2\" class=\"mw-redirect\">UCS-2</a> encoding, leading to code that works for most text but suddenly fails for non-<a href=\"/wiki/Mapping_of_Unicode_character_planes\" title=\"Mapping of Unicode character planes\" class=\"mw-redirect\">BMP</a> characters.<sup id=\"cite_ref-31\" class=\"reference\"><a href=\"#cite_note-31\"><span>[</span>32<span>]</span></a></sup></li>\n<li>Text encoded in UTF-8 is often smaller than (or the same size as) the same text encoded in UTF-16.\n<ul>\n<li>This is always true for text using only code points below U+0800 (which includes all modern European scripts), as each code point's UTF-8 encoding is one or two bytes then.</li>\n<li>Even if text contains code points between U+0800 and U+FFFF, it might contain so many code points below U+0080 (which UTF-8 encodes in one byte) that the UTF-8 encoding is still smaller. As HTML markup and line terminators are code points below U+0080, most HTML source is smaller if encoded in UTF-8 even for Asian scripts.</li>\n<li><a href=\"/wiki/Unicode_plane\" title=\"Unicode plane\" class=\"mw-redirect\">Non-BMP</a> characters (U+10000 and above) are encoded in UTF-8 in four bytes, the same size as in UTF-16.</li>\n</ul>\n</li>\n<li>Most communication and storage was designed for a stream of bytes. A UTF-16 string must use a pair of bytes for each code unit:\n<ul>\n<li>The order of those two bytes becomes an issue and must be specified in the UTF-16 protocol, such as with a <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order mark</a>.</li>\n<li>If an odd number of bytes is missing from UTF-16, the whole rest of the string will be meaningless text. Any bytes missing from UTF-8 will still allow the text to be recovered accurately starting with the next character after the missing bytes. If any partial character is removed the corruption is always recognizable.</li>\n</ul>\n</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=26\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages_4\">Disadvantages</span></h4>\n<ul>\n<li>Characters U+0800 through U+FFFF use three bytes in UTF-8, but only two in UTF-16. As a result, text in (for example) Chinese, Japanese or Hindi could take more space in UTF-8 if there are more of these characters than there are ASCII characters. This happens for pure text,<sup id=\"cite_ref-32\" class=\"reference\"><a href=\"#cite_note-32\"><span>[</span>33<span>]</span></a></sup> but rarely for HTML documents. For example, both the Japanese UTF-8 and the Hindi Unicode articles on Wikipedia take more space in UTF-16 than in UTF-8 .<sup id=\"cite_ref-33\" class=\"reference\"><a href=\"#cite_note-33\"><span>[</span>34<span>]</span></a></sup></li>\n</ul>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=27\" title=\"Edit section: See also\">edit</a>]</span> <span class=\"mw-headline\" id=\"See_also\">See also</span></h2>\n<ul>\n<li><a href=\"/wiki/Alt_code\" title=\"Alt code\">Alt code</a></li>\n<li><a href=\"/wiki/Character_encodings_in_HTML\" title=\"Character encodings in HTML\">Character encodings in HTML</a></li>\n<li><a href=\"/wiki/Comparison_of_e-mail_clients#Features\" title=\"Comparison of e-mail clients\" class=\"mw-redirect\">Comparison of e-mail clients#Features</a></li>\n<li><a href=\"/wiki/Comparison_of_Unicode_encodings\" title=\"Comparison of Unicode encodings\">Comparison of Unicode encodings</a></li>\n<li><a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB 18030</a></li>\n<li><a href=\"/wiki/Iconv\" title=\"Iconv\">Iconv</a>—a standardized <a href=\"/wiki/Application_programming_interface\" title=\"Application programming interface\">API</a> used to convert between different <a href=\"/wiki/Character_encoding\" title=\"Character encoding\">character encodings</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859\" title=\"ISO/IEC 8859\">ISO/IEC 8859</a></li>\n<li><a href=\"/wiki/Specials_(Unicode_block)\" title=\"Specials (Unicode block)\">Specials (Unicode block)</a></li>\n<li><a href=\"/wiki/Unicode_and_e-mail\" title=\"Unicode and e-mail\" class=\"mw-redirect\">Unicode and e-mail</a></li>\n<li><a href=\"/wiki/Unicode_and_HTML\" title=\"Unicode and HTML\">Unicode and HTML</a></li>\n<li><a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">Universal Character Set</a></li>\n<li><a href=\"/wiki/Percent-encoding#Current_standard\" title=\"Percent-encoding\">UTF-8 in URIs</a></li>\n<li><a href=\"/wiki/UTF-9_and_UTF-18\" title=\"UTF-9 and UTF-18\">UTF-9 and UTF-18</a></li>\n<li><a href=\"/wiki/UTF-16/UCS-2\" title=\"UTF-16/UCS-2\" class=\"mw-redirect\">UTF-16/UCS-2</a></li>\n</ul>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=28\" title=\"Edit section: References\">edit</a>]</span> <span class=\"mw-headline\" id=\"References\">References</span></h2>\n<div class=\"reflist references-column-count references-column-count-2\" style=\"-moz-column-count: 2; -webkit-column-count: 2; column-count: 2; list-style-type: decimal;\">\n<ol class=\"references\">\n<li id=\"cite_note-0\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation book\">[<a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/\">|The Unicode Consortium</a>]. <a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/versions/Unicode6.0.0/\">\"Chapter 2. General Structure\"</a>. <i>The Unicode Standard</i> (6.0 ed.). Mountain View, California, USA: The Unicode Consortium. <a href=\"/wiki/International_Standard_Book_Number\" title=\"International Standard Book Number\">ISBN</a>&#160;<a href=\"/wiki/Special:BookSources/978-1-936213-01-6\" title=\"Special:BookSources/978-1-936213-01-6\">978-1-936213-01-6</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.unicode.org/versions/Unicode6.0.0/\">http://www.unicode.org/versions/Unicode6.0.0/</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chapter+2.+General+Structure&amp;rft.atitle=The+Unicode+Standard&amp;rft.aulast=The+Unicode+Consortium&amp;rft.au=The+Unicode+Consortium&amp;rft.edition=6.0&amp;rft.place=Mountain+View%2C+California%2C+USA&amp;rft.pub=The+Unicode+Consortium&amp;rft.isbn=978-1-936213-01-6&amp;rft_id=http%3A%2F%2Fwww.unicode.org%2Fversions%2FUnicode6.0.0%2F&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span>. <a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> also refers to UTF-8 as \"UCS transformation format\". Also commonly known as \"Unicode Transformation Format\".</span></li>\n<li id=\"cite_note-1\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-1\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Mark Davis (28 January 2010). <a rel=\"nofollow\" class=\"external text\" href=\"http://googleblog.blogspot.com/2010/01/unicode-nearing-50-of-web.html\">\"Unicode nearing 50% of the web\"</a>. <i>Official Google Blog</i>. <a href=\"/wiki/Google\" title=\"Google\">Google</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://googleblog.blogspot.com/2010/01/unicode-nearing-50-of-web.html\">http://googleblog.blogspot.com/2010/01/unicode-nearing-50-of-web.html</a></span><span class=\"reference-accessdate\">. Retrieved 5 December 2010</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Unicode+nearing+50%25+of+the+web&amp;rft.atitle=Official+Google+Blog&amp;rft.aulast=Mark+Davis&amp;rft.au=Mark+Davis&amp;rft.date=28+January+2010&amp;rft.pub=%5B%5BGoogle%5D%5D&amp;rft_id=http%3A%2F%2Fgoogleblog.blogspot.com%2F2010%2F01%2Funicode-nearing-50-of-web.html&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-BuiltWith-2\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-BuiltWith_2-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://trends.builtwith.com/encoding/UTF-8\">\"UTF-8 Usage Statistics\"</a>. BuiltWith<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://trends.builtwith.com/encoding/UTF-8\">http://trends.builtwith.com/encoding/UTF-8</a></span><span class=\"reference-accessdate\">. Retrieved 2011-03-28</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UTF-8+Usage+Statistics&amp;rft.atitle=&amp;rft.pub=BuiltWith&amp;rft_id=http%3A%2F%2Ftrends.builtwith.com%2Fencoding%2FUTF-8&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-W3Techs-3\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-W3Techs_3-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://w3techs.com/technologies/overview/character_encoding/all\">\"Usage of character encodings for websites\"</a>. W3Techs<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://w3techs.com/technologies/overview/character_encoding/all\">http://w3techs.com/technologies/overview/character_encoding/all</a></span><span class=\"reference-accessdate\">. Retrieved 2010-03-30</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Usage+of+character+encodings+for+websites&amp;rft.atitle=&amp;rft.pub=W3Techs&amp;rft_id=http%3A%2F%2Fw3techs.com%2Ftechnologies%2Foverview%2Fcharacter_encoding%2Fall&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-rfc2277-4\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-rfc2277_4-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation Journal\">Alvestrand, H. (1998). \"IETF Policy on Character Sets and Languages\". <i><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc2277\">RFC 2277</a></i>. <a href=\"/wiki/Internet_Engineering_Task_Force\" title=\"Internet Engineering Task Force\">Internet Engineering Task Force</a>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=IETF+Policy+on+Character+Sets+and+Languages&amp;rft.atitle=RFC+2277&amp;rft.aulast=Alvestrand&amp;rft.aufirst=H.&amp;rft.au=Alvestrand%2C%26%2332%3BH.&amp;rft.date=1998&amp;rft.pub=%5B%5BInternet+Engineering+Task+Force%5D%5D&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-IMC-5\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-IMC_5-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.imc.org/mail-i18n.html\">\"Using International Characters in Internet Mail\"</a>. Internet Mail Consortium. August 1, 1998<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.imc.org/mail-i18n.html\">http://www.imc.org/mail-i18n.html</a></span><span class=\"reference-accessdate\">. Retrieved 2007-11-08</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Using+International+Characters+in+Internet+Mail&amp;rft.atitle=&amp;rft.date=August+1%2C+1998&amp;rft.pub=Internet+Mail+Consortium&amp;rft_id=http%3A%2F%2Fwww.imc.org%2Fmail-i18n.html&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-6\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-6\">^</a></b></span> <span class=\"reference-text\">Not all of the 1,112,064 possible code points have been assigned characters; many are reserved for future use, and some are reserved for private use, while still others are specified as permanently undefined.</span></li>\n<li id=\"cite_note-7\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-7\">^</a></b></span> <span class=\"reference-text\">More precisely, the number of bytes used to encode a character at a given code point is a <a href=\"/wiki/Monotonic_function\" title=\"Monotonic function\">monotonically increasing function</a> of the numerical value of the code point.</span></li>\n<li id=\"cite_note-8\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-8\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Internet Assigned Numbers Authority (4 November 2010). <a rel=\"nofollow\" class=\"external text\" href=\"http://www.iana.org/assignments/character-sets\">\"CHARACTER SETS\"</a>. IANA<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.iana.org/assignments/character-sets\">http://www.iana.org/assignments/character-sets</a></span><span class=\"reference-accessdate\">. Retrieved 5 December 2010</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=CHARACTER+SETS&amp;rft.atitle=&amp;rft.aulast=Internet+Assigned+Numbers+Authority&amp;rft.au=Internet+Assigned+Numbers+Authority&amp;rft.date=4+November+2010&amp;rft.pub=IANA&amp;rft_id=http%3A%2F%2Fwww.iana.org%2Fassignments%2Fcharacter-sets&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-9\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-9\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Pike, Rob (2003-04-03). <a rel=\"nofollow\" class=\"external text\" href=\"http://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt\">\"UTF-8 history\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt\">http://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UTF-8+history&amp;rft.atitle=&amp;rft.aulast=Pike&amp;rft.aufirst=Rob&amp;rft.au=Pike%2C%26%2332%3BRob&amp;rft.date=2003-04-03&amp;rft_id=http%3A%2F%2Fwww.cl.cam.ac.uk%2F%7Emgk25%2Fucs%2Futf-8-history.txt&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-MS00-078-10\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-MS00-078_10-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Marin, Marvin (2000-10-17). <a rel=\"nofollow\" class=\"external text\" href=\"http://www.sans.org/resources/malwarefaq/wnt-unicode.php\">\"Web Server Folder Traversal MS00-078\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.sans.org/resources/malwarefaq/wnt-unicode.php\">http://www.sans.org/resources/malwarefaq/wnt-unicode.php</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Web+Server+Folder+Traversal+MS00-078&amp;rft.atitle=&amp;rft.aulast=Marin&amp;rft.aufirst=Marvin&amp;rft.au=Marin%2C%26%2332%3BMarvin&amp;rft.date=2000-10-17&amp;rft_id=http%3A%2F%2Fwww.sans.org%2Fresources%2Fmalwarefaq%2Fwnt-unicode.php&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-CVE-2008-2938-11\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-CVE-2008-2938_11-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-2938\">\"National Vulnerability Database - Summary for CVE-2008-2938\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-2938\">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-2938</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=National+Vulnerability+Database+-+Summary+for+CVE-2008-2938&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fweb.nvd.nist.gov%2Fview%2Fvuln%2Fdetail%3FvulnId%3DCVE-2008-2938&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-rfc3629-12\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-rfc3629_12-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation Journal\">Yergeau, F. (2003). \"UTF-8, a transformation format of ISO 10646\". <i><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a></i>. <a href=\"/wiki/Internet_Engineering_Task_Force\" title=\"Internet Engineering Task Force\">Internet Engineering Task Force</a></span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UTF-8%2C+a+transformation+format+of+ISO+10646&amp;rft.atitle=RFC+3629&amp;rft.aulast=Yergeau&amp;rft.aufirst=F.&amp;rft.au=Yergeau%2C%26%2332%3BF.&amp;rft.date=2003&amp;rft.pub=%5B%5BInternet+Engineering+Task+Force%5D%5D&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-13\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-13\">^</a></b></span> <span class=\"reference-text\">Examples: <a rel=\"nofollow\" class=\"external text\" href=\"http://gwt-lzma.googlecode.com/svn-history/r8/trunk/publish/javadoc/org/dellroad/lzma/client/UTF8.html\">UTF8 (Java Class Library API)</a> or <a rel=\"nofollow\" class=\"external text\" href=\"http://download.oracle.com/javase/1.4.2/docs/api/java/nio/charset/CharsetDecoder.html#decode(java.nio.ByteBuffer)\">java.nio.charset.CharsetDecoder.decode</a></span></li>\n<li id=\"cite_note-PEP383-14\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-PEP383_14-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.python.org/dev/peps/pep-0383/\">\"Non-decodable Bytes in System Character Interfaces\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.python.org/dev/peps/pep-0383/\">http://www.python.org/dev/peps/pep-0383/</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Non-decodable+Bytes+in+System+Character+Interfaces&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.python.org%2Fdev%2Fpeps%2Fpep-0383%2F&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-15\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-15\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/International/O-HTTP-charset\">W3C: Setting the HTTP charset parameter</a> notes that the <a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">IANA</a> list is used for HTTP</span></li>\n<li id=\"cite_note-16\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-16\">^</a></b></span> <span class=\"reference-text\"><a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">Internet Assigned Numbers Authority</a> <a rel=\"nofollow\" class=\"external text\" href=\"http://www.iana.org/assignments/character-sets\">Character Sets</a></span></li>\n<li id=\"cite_note-17\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-17\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.ietf.org/rfc/rfc3629.txt\">RFC 3629 UTF-8</a> see chapter 8. MIME registration, first paragraph</span></li>\n<li id=\"cite_note-18\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-18\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/javase/6/docs/api/java/io/DataInput.html#modified-utf-8\">\"Java SE 6 documentation for Interface java.io.DataInput, subsection on Modified UTF-8\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 2008<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/javase/6/docs/api/java/io/DataInput.html#modified-utf-8\">http://java.sun.com/javase/6/docs/api/java/io/DataInput.html#modified-utf-8</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+SE+6+documentation+for+Interface+java.io.DataInput%2C+subsection+on+Modified+UTF-8&amp;rft.atitle=&amp;rft.date=2008&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fjavase%2F6%2Fdocs%2Fapi%2Fjava%2Fio%2FDataInput.html%23modified-utf-8&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-19\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-19\">^</a></b></span> <span class=\"reference-text\">\"[...] the overlong UTF-8 sequence C0 80 [...]\", \"[...] the illegal two-octet sequence C0 80 [...]\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.apps.ietf.org/rfc/rfc3629.html#page-5\">\"Request for Comments 3629: \"UTF-8, a transformation format of ISO 10646\"\"</a>. 2003<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.apps.ietf.org/rfc/rfc3629.html#page-5\">http://www.apps.ietf.org/rfc/rfc3629.html#page-5</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Request+for+Comments+3629%3A+%22UTF-8%2C+a+transformation+format+of+ISO+10646%22&amp;rft.atitle=&amp;rft.date=2003&amp;rft_id=http%3A%2F%2Fwww.apps.ietf.org%2Frfc%2Frfc3629.html%23page-5&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-20\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-20\">^</a></b></span> <span class=\"reference-text\">\"[...] Java virtual machine UTF-8 strings never have embedded nulls.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">\"The Java Virtual Machine Specification, 2nd Edition, section 4.4.7: \"The CONSTANT_Utf8_info Structure\"\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 1999<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-24</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=The+Java+Virtual+Machine+Specification%2C+2nd+Edition%2C+section+4.4.7%3A+%22The+CONSTANT_Utf8_info+Structure%22&amp;rft.atitle=&amp;rft.date=1999&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fdocs%2Fbooks%2Fjvms%2Fsecond_edition%2Fhtml%2FClassFile.doc.html%237963&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-21\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-21\">^</a></b></span> <span class=\"reference-text\">\"[...] encoded in modified UTF-8.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html#8299\">\"Java Object Serialization Specification, chapter 6: Object Serialization Stream Protocol, section 2: Stream Elements\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 2005<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html#8299\">http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html#8299</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+Object+Serialization+Specification%2C+chapter+6%3A+Object+Serialization+Stream+Protocol%2C+section+2%3A+Stream+Elements&amp;rft.atitle=&amp;rft.date=2005&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fjavase%2F6%2Fdocs%2Fplatform%2Fserialization%2Fspec%2Fprotocol.html%238299&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-22\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-22\">^</a></b></span> <span class=\"reference-text\">\"The JNI uses modified UTF-8 strings to represent various string types.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16542\">\"Java Native Interface Specification, chapter 3: JNI Types and Data Structures, section: Modified UTF-8 Strings\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 2003<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16542\">http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16542</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+Native+Interface+Specification%2C+chapter+3%3A+JNI+Types+and+Data+Structures%2C+section%3A+Modified+UTF-8+Strings&amp;rft.atitle=&amp;rft.date=2003&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fj2se%2F1.5.0%2Fdocs%2Fguide%2Fjni%2Fspec%2Ftypes.html%23wp16542&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-23\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-23\">^</a></b></span> <span class=\"reference-text\">\"[...] differences between this format and the \"standard\" UTF-8 format.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">\"The Java Virtual Machine Specification, 2nd Edition, section 4.4.7: \"The CONSTANT_Utf8_info Structure\"\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 1999<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-23</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=The+Java+Virtual+Machine+Specification%2C+2nd+Edition%2C+section+4.4.7%3A+%22The+CONSTANT_Utf8_info+Structure%22&amp;rft.atitle=&amp;rft.date=1999&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fdocs%2Fbooks%2Fjvms%2Fsecond_edition%2Fhtml%2FClassFile.doc.html%237963&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-24\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-24\">^</a></b></span> <span class=\"reference-text\">\"In orthodox UTF-8, a NUL byte(\\x00) is represented by a NUL byte. [...] But [...] we [...] want NUL bytes inside [...] strings [...]\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://wiki.tcl.tk/_/revision?N=1211&amp;V=6\">\"Tcler's Wiki: UTF-8 bit by bit (Revision 6)\"</a>. 2009-04-25<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://wiki.tcl.tk/_/revision?N=1211&amp;V=6\">http://wiki.tcl.tk/_/revision?N=1211&amp;V=6</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Tcler%27s+Wiki%3A+UTF-8+bit+by+bit+%28Revision+6%29&amp;rft.atitle=&amp;rft.date=2009-04-25&amp;rft_id=http%3A%2F%2Fwiki.tcl.tk%2F_%2Frevision%3FN%3D1211%26V%3D6&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-25\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-25\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.ling.upenn.edu/courses/Spring_2003/ling538/Lecnotes/Unicode.html\">Computational Methods in Linguistic Research, 2004</a></span></li>\n<li id=\"cite_note-26\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-26\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/versions/Unicode6.0.0/ch02.pdf\">The Unicode Standard - Chapter 2</a>, see chapter 2.6 page 30 bottom.</span></li>\n<li id=\"cite_note-27\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-27\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/TR/REC-xml/#charencoding\">W3.org</a></span></li>\n<li id=\"cite_note-28\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-28\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/International/questions/qa-forms-utf-8\">W3 FAQ: Multilingual Forms</a>: a Perl regular expression to validate a UTF-8 string)</span></li>\n<li id=\"cite_note-29\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-29\">^</a></b></span> <span class=\"reference-text\">There are <span class=\"texhtml\">256 × 256 − 128 × 128</span> not-pure-ASCII two-byte sequences, and of those, only 1920 encode valid UTF-8 characters (the range U+0080 to U+07FF), so the proportion of valid not-pure-ASCII two-byte sequences is 3.9%. Note that this assumes that control characters pass as ASCII; without the control characters, the percentage proportions drop somewhat).</span></li>\n<li id=\"cite_note-30\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-30\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://tools.ietf.org/html/rfc3629#section-10\">Tools.ietf.org</a></span></li>\n<li id=\"cite_note-31\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-31\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful\">\"Should UTF-16 be considered harmful?\"</a>. Stackoverflow.com<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful\">http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful</a></span><span class=\"reference-accessdate\">. Retrieved 2010-09-13</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Should+UTF-16+be+considered+harmful%3F&amp;rft.atitle=&amp;rft.pub=Stackoverflow.com&amp;rft_id=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F1049947%2Fshould-utf-16-be-considered-harmful&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-32\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-32\">^</a></b></span> <span class=\"reference-text\">Although the difference may not be great: the 2010-11-22 version of <a href=\"//hi.wikipedia.org/wiki/%E0%A4%AF%E0%A5%82%E0%A4%A8%E0%A4%BF%E0%A4%95%E0%A5%8B%E0%A4%A1\" class=\"extiw\" title=\"hi:यूनिकोड\">hi:यूनिकोड</a> (Unicode in Hindi), when the pure text was pasted to Notepad, generated 19 KB when saved as UTF-16 and 22 KB when saved as UTF-8.</span></li>\n<li id=\"cite_note-33\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-33\">^</a></b></span> <span class=\"reference-text\">The 2010-10-27 version of <a href=\"//ja.wikipedia.org/wiki/UTF-8\" class=\"extiw\" title=\"ja:UTF-8\">ja:UTF-8</a> generated 169 KB when converted with Notepad to UTF-16, and only 101 KB when converted back to UTF-8. The 2010-11-22 version of <a href=\"//hi.wikipedia.org/wiki/%E0%A4%AF%E0%A5%82%E0%A4%A8%E0%A4%BF%E0%A4%95%E0%A5%8B%E0%A4%A1\" class=\"extiw\" title=\"hi:यूनिकोड\">hi:यूनिकोड</a> (Unicode in Hindi) required 119 KB in UTF-16 and 76 KB in UTF-8.</span></li>\n</ol>\n</div>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=29\" title=\"Edit section: External links\">edit</a>]</span> <span class=\"mw-headline\" id=\"External_links\">External links</span></h2>\n<p>There are several current definitions of UTF-8 in various standards documents:</p>\n<ul>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> / STD 63 (2003), which establishes UTF-8 as a standard Internet protocol element</li>\n<li><i>The Unicode Standard, Version 6.0</i>, <a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/versions/Unicode6.0.0/ch03.pdf\">§3.9 D92, §3.10 D95</a> (2011)</li>\n<li>ISO/IEC 10646:2003 Annex D (2003)</li>\n</ul>\n<p>They supersede the definitions given in the following obsolete works:</p>\n<ul>\n<li>ISO/IEC 10646-1:1993 Amendment 2 / Annex R (1996)</li>\n<li><i>The Unicode Standard, Version 5.0</i>, §3.9 D92, §3.10 D95 (2007)</li>\n<li><i>The Unicode Standard, Version 4.0</i>, §3.9–§3.10 (2003)</li>\n<li><i>The Unicode Standard, Version 2.0</i>, Appendix A (1996)</li>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc2044\">RFC 2044</a> (1996)</li>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc2279\">RFC 2279</a> (1998)</li>\n<li><i>The Unicode Standard, Version 3.0</i>, §2.3 (2000) plus Corrigendum #1&#160;: UTF-8 Shortest Form (2000)</li>\n<li><i>Unicode Standard Annex #27: Unicode 3.1</i> (2001)</li>\n</ul>\n<p>They are all the same in their general mechanics, with the main differences being on issues such as allowed range of code point values and safe handling of invalid input.</p>\n<ul>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://doc.cat-v.org/plan_9/4th_edition/papers/utf\">Original UTF-8 paper</a> (<a rel=\"nofollow\" class=\"external text\" href=\"http://plan9.bell-labs.com/sys/doc/utf.pdf\">or pdf</a>) for <a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9 from Bell Labs</a></li>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc5198\">RFC 5198</a> defines UTF-8 <a href=\"/wiki/Unicode_equivalence\" title=\"Unicode equivalence\">NFC</a> for Network Interchange</li>\n<li>UTF-8 test pages by <a rel=\"nofollow\" class=\"external text\" href=\"http://www.user.uni-hannover.de/nhtcapri/multilingual1.html\">Andreas Prilop</a>, <a rel=\"nofollow\" class=\"external text\" href=\"http://titus.uni-frankfurt.de/indexe.htm?/unicode/unitest.htm\">Jost Gippert</a> and the <a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html\">World Wide Web Consortium</a></li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://dotancohen.com/howto/email-utf8.html\">How to configure e-mail clients to send UTF-8 text</a></li>\n<li>Unix/Linux: <a rel=\"nofollow\" class=\"external text\" href=\"http://www.cl.cam.ac.uk/~mgk25/unicode.html\">UTF-8/Unicode FAQ</a>, <a rel=\"nofollow\" class=\"external text\" href=\"http://www.linux.org/docs/ldp/howto/Unicode-HOWTO.html\">Linux Unicode HOWTO</a>, <a rel=\"nofollow\" class=\"external text\" href=\"http://www.gentoo.org/doc/en/utf-8.xml\">UTF-8 and Gentoo</a></li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://www.utf8-chartable.de/\">The Unicode/UTF-8-character table</a> displays UTF-8 in a variety of formats (with Unicode and HTML encoding information)</li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://www.alanwood.net/unicode/browsers.html\">Unicode and Multilingual Web Browsers</a> from Alan Wood's Unicode Resources describes support and additional configuration of Unicode/UTF-8 in modern browsers</li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://jspwiki.org/wiki/JSPWikiBrowserCompatibility\">JSP Wiki Browser Compatibility page</a> details specific problems with UTF-8 in older browsers</li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://tlt.psu.edu/suggestions/international/bylanguage/math.html#browsers\">Mathematical Symbols in Unicode</a></li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://demo.icu-project.org/icu-bin/convexp?conv=UTF-8\">Graphical View of UTF-8 in ICU's Converter Explorer</a></li>\n</ul>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible collapsed navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Unicode_navigation\" title=\"Template:Unicode navigation\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/wiki/Template_talk:Unicode_navigation\" title=\"Template talk:Unicode navigation\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Unicode_navigation&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Unicode</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unicode_Consortium\" title=\"Unicode Consortium\">Unicode Consortium</a></li>\n<li><a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">ISO/IEC 10646 (Universal Character Set)</a></li>\n<li><a href=\"/wiki/Unicode#Versions\" title=\"Unicode\">Versions</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Code_point\" title=\"Code point\">Code points</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unicode_block\" title=\"Unicode block\">Block</a></li>\n<li><a href=\"/wiki/Category:Unicode_charts\" title=\"Category:Unicode charts\">Character charts</a></li>\n<li><a href=\"/wiki/Unicode_character_property\" title=\"Unicode character property\">Character property</a></li>\n<li><a href=\"/wiki/Mapping_of_Unicode_characters\" title=\"Mapping of Unicode characters\">Mapping characters</a></li>\n<li><a href=\"/wiki/Plane_(Unicode)\" title=\"Plane (Unicode)\">Plane</a></li>\n<li><a href=\"/wiki/Private_Use_(Unicode)\" title=\"Private Use (Unicode)\">Private Use Area</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Characters</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\"></div>\n<table cellspacing=\"0\" class=\"nowraplinks navbox-subgroup\" style=\"border-spacing:0;;;;\">\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\"><a href=\"/wiki/Mapping_of_Unicode_characters#Special-purpose_characters\" title=\"Mapping of Unicode characters\">Special purpose</a></div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">BOM</a></li>\n<li><a href=\"/wiki/Combining_grapheme_joiner\" title=\"Combining grapheme joiner\">Combining grapheme joiner</a></li>\n<li><a href=\"/wiki/Left-to-right_mark\" title=\"Left-to-right mark\">Left-to-right mark</a> / <a href=\"/wiki/Right-to-left_mark\" title=\"Right-to-left mark\">Right-to-left mark</a></li>\n<li><a href=\"/wiki/Soft_hyphen\" title=\"Soft hyphen\">Soft hyphen</a></li>\n<li><a href=\"/wiki/Zero-width_joiner\" title=\"Zero-width joiner\">Zero-width joiner</a></li>\n<li><a href=\"/wiki/Zero-width_non-breaking_space\" title=\"Zero-width non-breaking space\">Zero-width non-breaking space</a></li>\n<li><a href=\"/wiki/Zero-width_non-joiner\" title=\"Zero-width non-joiner\">Zero-width non-joiner</a></li>\n<li><a href=\"/wiki/Zero-width_space\" title=\"Zero-width space\">Zero-width space</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\">Lists</div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK Unified Ideographs</a></li>\n<li><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combining character</a></li>\n<li><a href=\"/wiki/Duplicate_characters_in_Unicode\" title=\"Duplicate characters in Unicode\">Duplicate characters</a></li>\n<li><a href=\"/wiki/Numerals_in_Unicode\" title=\"Numerals in Unicode\">Numerals</a></li>\n<li><a href=\"/wiki/Script_(Unicode)\" title=\"Script (Unicode)\">Scripts</a></li>\n<li><a href=\"/wiki/Space_(punctuation)#Spaces_in_Unicode\" title=\"Space (punctuation)\">Spaces</a></li>\n<li><a href=\"/wiki/Unicode_symbols\" title=\"Unicode symbols\">Symbols</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Processing</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\"></div>\n<table cellspacing=\"0\" class=\"nowraplinks navbox-subgroup\" style=\"border-spacing:0;;;;\">\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\">Algorithms</div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Bi-directional_text\" title=\"Bi-directional text\">Bi-directional text</a></li>\n<li><a href=\"/wiki/Unicode_collation_algorithm\" title=\"Unicode collation algorithm\">Collation</a>\n<ul>\n<li><a href=\"/wiki/ISO_14651\" title=\"ISO 14651\">ISO 14651</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Unicode_equivalence\" title=\"Unicode equivalence\">Equivalence</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\"><a href=\"/wiki/Comparison_of_Unicode_encodings\" title=\"Comparison of Unicode encodings\">Comparison</a></div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Binary_Ordered_Compression_for_Unicode\" title=\"Binary Ordered Compression for Unicode\">BOCU-1</a></li>\n<li><a href=\"/wiki/CESU-8\" title=\"CESU-8\">CESU-8</a></li>\n<li><a href=\"/wiki/Punycode\" title=\"Punycode\">Punycode</a></li>\n<li><a href=\"/wiki/Standard_Compression_Scheme_for_Unicode\" title=\"Standard Compression Scheme for Unicode\">SCSU</a></li>\n<li><a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a></li>\n<li><a href=\"/wiki/UTF-7\" title=\"UTF-7\">UTF-7</a></li>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n<li><a href=\"/wiki/UTF-9_and_UTF-18\" title=\"UTF-9 and UTF-18\">UTF-9/UTF-18</a></li>\n<li><a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16/UCS-2</a></li>\n<li><a href=\"/wiki/UTF-32\" title=\"UTF-32\">UTF-32/UCS-4</a></li>\n<li><a href=\"/wiki/UTF-EBCDIC\" title=\"UTF-EBCDIC\">UTF-EBCDIC</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">On pairs of<br />\ncode points</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combining character</a></li>\n<li><a href=\"/wiki/Unicode_compatibility_characters\" title=\"Unicode compatibility characters\">Compatibility characters</a></li>\n<li><a href=\"/wiki/Duplicate_characters_in_Unicode\" title=\"Duplicate characters in Unicode\">Duplicate characters</a></li>\n<li><a href=\"/wiki/Unicode_equivalence\" title=\"Unicode equivalence\">Equivalence</a></li>\n<li><a href=\"/wiki/Homoglyph\" title=\"Homoglyph\">Homoglyph</a></li>\n<li><a href=\"/wiki/Precomposed_character\" title=\"Precomposed character\">Precomposed character</a>\n<ul>\n<li><a href=\"/wiki/List_of_precomposed_Latin_characters_in_Unicode\" title=\"List of precomposed Latin characters in Unicode\">list</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Z-variant\" title=\"Z-variant\">Z-variant</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Usage</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Internationalized_domain_name\" title=\"Internationalized domain name\">Domain names (IDN)</a></li>\n<li><a href=\"/wiki/Unicode_and_email\" title=\"Unicode and email\">Email</a></li>\n<li><a href=\"/wiki/Unicode_font\" title=\"Unicode font\">Fonts</a></li>\n<li><a href=\"/wiki/Unicode_and_HTML\" title=\"Unicode and HTML\">HTML</a>\n<ul>\n<li><a href=\"/wiki/List_of_XML_and_HTML_character_entity_references\" title=\"List of XML and HTML character entity references\">entity references</a></li>\n<li><a href=\"/wiki/Numeric_character_reference\" title=\"Numeric character reference\">numeric reference</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Unicode_input\" title=\"Unicode input\">Input</a></li>\n<li><a href=\"/wiki/Private_Character_Editor\" title=\"Private Character Editor\">Private Character Editor (MS)</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Related standards</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Common_Locale_Data_Repository\" title=\"Common Locale Data Repository\">Common Locale Data Repository (CLDR)</a></li>\n<li><a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB 18030</a></li>\n<li><a href=\"/wiki/Han_unification\" title=\"Han unification\">Han unification</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859\" title=\"ISO/IEC 8859\">ISO/IEC 8859</a></li>\n<li><a href=\"/wiki/ISO_15924\" title=\"ISO 15924\">ISO 15924</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Related topics</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unicode_anomaly\" title=\"Unicode anomaly\">Anomalies</a></li>\n<li><a href=\"/wiki/ConScript_Unicode_Registry\" title=\"ConScript Unicode Registry\">ConScript Unicode Registry</a></li>\n<li><a href=\"/wiki/Ideographic_Rapporteur_Group\" title=\"Ideographic Rapporteur Group\">Ideographic Rapporteur Group</a></li>\n<li><a href=\"/wiki/International_Components_for_Unicode\" title=\"International Components for Unicode\">International Components for Unicode</a></li>\n<li><a href=\"/wiki/Category:People_involved_with_Unicode\" title=\"Category:People involved with Unicode\">People involved with Unicode</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<td colspan=\"2\" style=\"width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\"></div>\n<table cellspacing=\"0\" class=\"nowraplinks collapsible collapsed navbox-subgroup\" style=\"border-spacing:0;;;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\"><span style=\"float:left;width:6em;\">&#160;</span>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Script_(Unicode)\" title=\"Script (Unicode)\">Scripts</a> and symbols in Unicode</div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Script_(Unicode)#Common_and_inherited_scripts\" title=\"Script (Unicode)\">Common and<br />\ninherited scripts</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combining marks</a></li>\n<li><a href=\"/wiki/Diacritic\" title=\"Diacritic\">Diacritics</a></li>\n<li><a href=\"/wiki/Punctuation\" title=\"Punctuation\">Punctuation</a></li>\n<li><a href=\"/wiki/Space_(punctuation)#Spaces_in_Unicode\" title=\"Space (punctuation)\">Space</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Modern scripts</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Arabic_script\" title=\"Arabic script\">Arabic</a>\n<ul>\n<li><a href=\"/wiki/Arabic_diacritics\" title=\"Arabic diacritics\">diacritics</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Armenian_alphabet\" title=\"Armenian alphabet\">Armenian</a></li>\n<li><a href=\"/wiki/Balinese_alphabet\" title=\"Balinese alphabet\">Balinese</a></li>\n<li><a href=\"/wiki/Bamum_script\" title=\"Bamum script\">Bamum</a></li>\n<li><a href=\"/wiki/Batak_alphabet\" title=\"Batak alphabet\">Batak</a></li>\n<li><a href=\"/wiki/Bengali_alphabet\" title=\"Bengali alphabet\">Bengali</a></li>\n<li><a href=\"/wiki/Bopomofo\" title=\"Bopomofo\">Bopomofo</a></li>\n<li><a href=\"/wiki/Braille\" title=\"Braille\">Braille</a></li>\n<li><a href=\"/wiki/Buhid_alphabet\" title=\"Buhid alphabet\">Buhid</a></li>\n<li><a href=\"/wiki/Burmese_alphabet\" title=\"Burmese alphabet\">Burmese</a></li>\n<li><a href=\"/wiki/Canadian_Aboriginal_syllabics\" title=\"Canadian Aboriginal syllabics\">Canadian Aboriginal</a></li>\n<li><a href=\"/wiki/Chakma_alphabet\" title=\"Chakma alphabet\">Chakma</a></li>\n<li><a href=\"/wiki/Cham_alphabet\" title=\"Cham alphabet\">Cham</a></li>\n<li><a href=\"/wiki/Cherokee_syllabary\" title=\"Cherokee syllabary\">Cherokee</a></li>\n<li><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK Unified Ideographs (Han)</a></li>\n<li><a href=\"/wiki/Cyrillic_script\" title=\"Cyrillic script\">Cyrillic</a></li>\n<li><a href=\"/wiki/Deseret_alphabet\" title=\"Deseret alphabet\">Deseret</a></li>\n<li><a href=\"/wiki/Devanagari\" title=\"Devanagari\">Devanagari</a></li>\n<li><a href=\"/wiki/Ge%27ez_script\" title=\"Ge'ez script\">Ge'ez</a></li>\n<li><a href=\"/wiki/Georgian_alphabet\" title=\"Georgian alphabet\">Georgian</a></li>\n<li><a href=\"/wiki/Greek_alphabet\" title=\"Greek alphabet\">Greek</a></li>\n<li><a href=\"/wiki/Gujarati_alphabet\" title=\"Gujarati alphabet\">Gujarati</a></li>\n<li><a href=\"/wiki/Gurmukh%C4%AB_alphabet\" title=\"Gurmukhī alphabet\">Gurmukhī</a></li>\n<li><a href=\"/wiki/Han_tu\" title=\"Han tu\">Han tu</a></li>\n<li><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a></li>\n<li><a href=\"/wiki/Hanja\" title=\"Hanja\">Hanja</a></li>\n<li><a href=\"/wiki/Hanun%C3%B3%27o_alphabet\" title=\"Hanunó'o alphabet\">Hanunó'o</a></li>\n<li><a href=\"/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet\" title=\"Unicode and HTML for the Hebrew alphabet\">Hebrew</a>\n<ul>\n<li><a href=\"/wiki/Hebrew_diacritics\" title=\"Hebrew diacritics\">diacritics</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Hiragana\" title=\"Hiragana\">Hiragana</a></li>\n<li><a href=\"/wiki/Javanese_alphabet\" title=\"Javanese alphabet\">Javanese</a></li>\n<li><a href=\"/wiki/Kanji\" title=\"Kanji\">Kanji</a></li>\n<li><a href=\"/wiki/Kannada_alphabet\" title=\"Kannada alphabet\">Kannada</a></li>\n<li><a href=\"/wiki/Katakana\" title=\"Katakana\">Katakana</a></li>\n<li><a href=\"/wiki/Kayah_Li_alphabet\" title=\"Kayah Li alphabet\">Kayah Li</a></li>\n<li><a href=\"/wiki/Khmer_alphabet\" title=\"Khmer alphabet\">Khmer</a></li>\n<li><a href=\"/wiki/Lao_alphabet\" title=\"Lao alphabet\">Lao</a></li>\n<li><a href=\"/wiki/Latin_script_in_Unicode\" title=\"Latin script in Unicode\">Latin</a></li>\n<li><a href=\"/wiki/Lepcha_alphabet\" title=\"Lepcha alphabet\">Lepcha</a></li>\n<li><a href=\"/wiki/Limbu_alphabet\" title=\"Limbu alphabet\">Limbu</a></li>\n<li><a href=\"/wiki/Fraser_alphabet\" title=\"Fraser alphabet\">Lisu (Fraser)</a></li>\n<li><a href=\"/wiki/Lontara_alphabet\" title=\"Lontara alphabet\">Lontara</a></li>\n<li><a href=\"/wiki/Malayalam_alphabet\" title=\"Malayalam alphabet\">Malayalam</a></li>\n<li><a href=\"/wiki/Manchu_alphabet\" title=\"Manchu alphabet\">Manchu</a></li>\n<li><a href=\"/wiki/Mandaic_alphabet\" title=\"Mandaic alphabet\">Mandaic</a></li>\n<li><a href=\"/wiki/Meitei_Mayek_alphabet\" title=\"Meitei Mayek alphabet\">Meetei Mayek</a></li>\n<li><a href=\"/wiki/Pollard_script\" title=\"Pollard script\">Miao (Pollard)</a></li>\n<li><a href=\"/wiki/Mongolian_script\" title=\"Mongolian script\">Mongolian</a></li>\n<li><a href=\"/wiki/N%27Ko_alphabet\" title=\"N'Ko alphabet\">N'Ko</a></li>\n<li><a href=\"/wiki/New_Tai_Lue_alphabet\" title=\"New Tai Lue alphabet\">New Tai Lue</a></li>\n<li><a href=\"/wiki/Ol_Chiki_alphabet\" title=\"Ol Chiki alphabet\">Ol Chiki</a></li>\n<li><a href=\"/wiki/Oriya_alphabet\" title=\"Oriya alphabet\">Oriya</a></li>\n<li><a href=\"/wiki/Osmanya_alphabet\" title=\"Osmanya alphabet\">Osmanya</a></li>\n<li><a href=\"/wiki/Rejang_alphabet\" title=\"Rejang alphabet\">Rejang</a></li>\n<li><a href=\"/wiki/Samaritan_alphabet\" title=\"Samaritan alphabet\">Samaritan</a></li>\n<li><a href=\"/wiki/%C5%9A%C4%81rad%C4%81_script\" title=\"Śāradā script\">Śāradā</a></li>\n<li><a href=\"/wiki/Saurashtra_alphabet\" title=\"Saurashtra alphabet\">Saurashtra</a></li>\n<li><a href=\"/wiki/Shavian_alphabet\" title=\"Shavian alphabet\">Shavian</a></li>\n<li><a href=\"/wiki/Sinhala_alphabet\" title=\"Sinhala alphabet\">Sinhala</a></li>\n<li><a href=\"/wiki/Sorang_Sompeng_alphabet\" title=\"Sorang Sompeng alphabet\">Sorang Sompeng</a></li>\n<li><a href=\"/wiki/Sundanese_alphabet\" title=\"Sundanese alphabet\">Sundanese</a></li>\n<li><a href=\"/wiki/Sylheti_Nagari\" title=\"Sylheti Nagari\">Sylheti Nagari</a></li>\n<li><a href=\"/wiki/Syriac_alphabet\" title=\"Syriac alphabet\">Syriac</a></li>\n<li><a href=\"/wiki/Baybayin\" title=\"Baybayin\">Tagalog (Baybayin)</a></li>\n<li><a href=\"/wiki/Tagbanwa_alphabet\" title=\"Tagbanwa alphabet\">Tagbanwa</a></li>\n<li><a href=\"/wiki/Tai_Le_alphabet\" title=\"Tai Le alphabet\">Tai Le</a></li>\n<li><a href=\"/wiki/Tai_Tham_alphabet\" title=\"Tai Tham alphabet\">Tai Tham</a></li>\n<li><a href=\"/wiki/Tai_Dam_language#Writing_system\" title=\"Tai Dam language\">Tai Viet</a></li>\n<li><a href=\"/wiki/Takri_alphabet\" title=\"Takri alphabet\">Takri</a></li>\n<li><a href=\"/wiki/Tamil_script\" title=\"Tamil script\">Tamil</a></li>\n<li><a href=\"/wiki/Telugu_alphabet\" title=\"Telugu alphabet\">Telugu</a></li>\n<li><a href=\"/wiki/Thaana\" title=\"Thaana\">Thaana</a></li>\n<li><a href=\"/wiki/Thai_alphabet\" title=\"Thai alphabet\">Thai</a></li>\n<li><a href=\"/wiki/Tibetan_alphabet\" title=\"Tibetan alphabet\">Tibetan</a></li>\n<li><a href=\"/wiki/Tifinagh\" title=\"Tifinagh\">Tifinagh</a></li>\n<li><a href=\"/wiki/Vai_syllabary\" title=\"Vai syllabary\">Vai</a></li>\n<li><a href=\"/wiki/Yi_script\" title=\"Yi script\">Yi</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Ancient and<br />\nhistoric scripts</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Avestan_alphabet\" title=\"Avestan alphabet\">Avestan</a></li>\n<li><a href=\"/wiki/Br%C4%81hm%C4%AB_script\" title=\"Brāhmī script\">Brāhmī</a></li>\n<li><a href=\"/wiki/Carian_alphabets\" title=\"Carian alphabets\">Carian</a></li>\n<li><a href=\"/wiki/Coptic_alphabet\" title=\"Coptic alphabet\">Coptic</a></li>\n<li><a href=\"/wiki/Cuneiform\" title=\"Cuneiform\">Cuneiform</a></li>\n<li><a href=\"/wiki/Cypriot_syllabary\" title=\"Cypriot syllabary\">Cypriot</a></li>\n<li><a href=\"/wiki/Egyptian_hieroglyphs\" title=\"Egyptian hieroglyphs\">Egyptian hieroglyphs</a></li>\n<li><a href=\"/wiki/Glagolitic_alphabet\" title=\"Glagolitic alphabet\">Glagolitic</a></li>\n<li><a href=\"/wiki/Gothic_alphabet\" title=\"Gothic alphabet\">Gothic</a></li>\n<li><a href=\"/wiki/Aramaic_language#Imperial_Aramaic\" title=\"Aramaic language\">Imperial Aramaic</a></li>\n<li><a href=\"/wiki/Pahlavi_scripts#Inscriptional_Pahlavi\" title=\"Pahlavi scripts\">Inscriptional Pahlavi</a></li>\n<li><a href=\"/wiki/Parthian_language#Written_Parthian\" title=\"Parthian language\">Inscriptional Parthian</a></li>\n<li><a href=\"/wiki/Kaithi\" title=\"Kaithi\">Kaithi</a></li>\n<li><a href=\"/wiki/Kharosthi\" title=\"Kharosthi\">Kharosthi</a></li>\n<li><a href=\"/wiki/Linear_B\" title=\"Linear B\">Linear B</a></li>\n<li><a href=\"/wiki/Lycian_alphabet\" title=\"Lycian alphabet\">Lycian</a></li>\n<li><a href=\"/wiki/Lydian_alphabet\" title=\"Lydian alphabet\">Lydian</a></li>\n<li><a href=\"/wiki/Meroitic_alphabet\" title=\"Meroitic alphabet\">Meroitic</a></li>\n<li><a href=\"/wiki/Ogham\" title=\"Ogham\">Ogham</a></li>\n<li><a href=\"/wiki/Old_Italic_script\" title=\"Old Italic script\">Old Italic</a></li>\n<li><a href=\"/wiki/Old_Persian_cuneiform\" title=\"Old Persian cuneiform\">Old Persian cuneiform</a></li>\n<li><a href=\"/wiki/Old_Turkic_alphabet\" title=\"Old Turkic alphabet\">Old Turkic</a></li>\n<li><a href=\"/wiki/%27Phags-pa_script\" title=\"'Phags-pa script\">'Phags-pa</a></li>\n<li><a href=\"/wiki/Phoenician_alphabet\" title=\"Phoenician alphabet\">Phoenician</a></li>\n<li><a href=\"/wiki/Runes\" title=\"Runes\">Runic</a></li>\n<li><a href=\"/wiki/South_Arabian_alphabet\" title=\"South Arabian alphabet\">South Arabian</a></li>\n<li><a href=\"/wiki/Ugaritic_alphabet\" title=\"Ugaritic alphabet\">Ugaritic</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Symbols</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Cultural,_political,_and_religious_symbols_in_Unicode\" title=\"Cultural, political, and religious symbols in Unicode\">Cultural, political, and religious symbols</a></li>\n<li><a href=\"/wiki/Currency_sign\" title=\"Currency sign\">Currency</a></li>\n<li><a href=\"/wiki/Mathematical_operators_and_symbols_in_Unicode\" title=\"Mathematical operators and symbols in Unicode\">Mathematical operators and symbols</a></li>\n<li><a href=\"/wiki/Phonetic_symbols_in_Unicode\" title=\"Phonetic symbols in Unicode\">Phonetic symbols (including IPA)</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Character_encoding\" title=\"Template:Character encoding\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/wiki/Template_talk:Character_encoding\" title=\"Template talk:Character encoding\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Character_encoding&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Character_encoding\" title=\"Character encoding\">Character encodings</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<td class=\"navbox-abovebelow\" style=\";\" colspan=\"2\">\n<div><img alt=\"Category\" src=\"//upload.wikimedia.org/wikipedia/en/thumb/4/48/Folder_Hexagonal_Icon.svg/16px-Folder_Hexagonal_Icon.svg.png\" width=\"16\" height=\"14\" /> <a href=\"/wiki/Category:Character_sets\" title=\"Category:Character sets\">Character sets</a></div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Early telecommunications</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a></li>\n<li><a href=\"/wiki/ISO/IEC_646\" title=\"ISO/IEC 646\">ISO/IEC 646</a></li>\n<li><a href=\"/wiki/ISO/IEC_6937\" title=\"ISO/IEC 6937\">ISO/IEC 6937</a></li>\n<li><a href=\"/wiki/T.61_(ITU-T_recommendation)\" title=\"T.61 (ITU-T recommendation)\" class=\"mw-redirect\">T.61</a></li>\n<li><a href=\"/wiki/BCD_(6-bit)\" title=\"BCD (6-bit)\">BCD (6-bit)</a></li>\n<li><a href=\"/wiki/Baudot_code\" title=\"Baudot code\">Baudot code</a></li>\n<li><a href=\"/wiki/Morse_code\" title=\"Morse code\">Morse code</a></li>\n<li><a href=\"/wiki/Chinese_telegraph_code\" title=\"Chinese telegraph code\">Chinese telegraph code</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/ISO/IEC_8859\" title=\"ISO/IEC 8859\">ISO/IEC 8859</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ISO/IEC_8859-1\" title=\"ISO/IEC 8859-1\">-1</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-2\" title=\"ISO/IEC 8859-2\">-2</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-3\" title=\"ISO/IEC 8859-3\">-3</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-4\" title=\"ISO/IEC 8859-4\">-4</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-5\" title=\"ISO/IEC 8859-5\">-5</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-6\" title=\"ISO/IEC 8859-6\">-6</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-7\" title=\"ISO/IEC 8859-7\">-7</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-8\" title=\"ISO/IEC 8859-8\">-8</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-9\" title=\"ISO/IEC 8859-9\">-9</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-10\" title=\"ISO/IEC 8859-10\">-10</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-11\" title=\"ISO/IEC 8859-11\">-11</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-12\" title=\"ISO/IEC 8859-12\">-12</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-13\" title=\"ISO/IEC 8859-13\">-13</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-14\" title=\"ISO/IEC 8859-14\">-14</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-15\" title=\"ISO/IEC 8859-15\">-15</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-16\" title=\"ISO/IEC 8859-16\">-16</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Bibliographic use</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ANSEL\" title=\"ANSEL\">ANSEL</a></li>\n<li>ISO 5426 / 5426-2 / 5427 / 5428 / <a href=\"/wiki/ISO_6438\" title=\"ISO 6438\">6438</a> / 6861 / 6862 / 10585 / 10586 / 10754 / 11822</li>\n<li><a href=\"/wiki/MARC-8\" title=\"MARC-8\">MARC-8</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">National standards</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ArmSCII\" title=\"ArmSCII\">ArmSCII</a></li>\n<li><a href=\"/wiki/CNS_11643\" title=\"CNS 11643\">CNS 11643</a></li>\n<li><a href=\"/wiki/GOST_10859\" title=\"GOST 10859\">GOST 10859</a></li>\n<li><a href=\"/wiki/GB_2312\" title=\"GB 2312\">GB 2312</a></li>\n<li><a href=\"/wiki/HKSCS\" title=\"HKSCS\">HKSCS</a></li>\n<li><a href=\"/wiki/ISCII\" title=\"ISCII\" class=\"mw-redirect\">ISCII</a></li>\n<li><a href=\"/wiki/JIS_X_0201\" title=\"JIS X 0201\">JIS X 0201</a></li>\n<li><a href=\"/wiki/JIS_X_0208\" title=\"JIS X 0208\">JIS X 0208</a></li>\n<li><a href=\"/wiki/JIS_X_0212\" title=\"JIS X 0212\">JIS X 0212</a></li>\n<li><a href=\"/wiki/JIS_X_0213\" title=\"JIS X 0213\">JIS X 0213</a></li>\n<li><a href=\"/wiki/KPS_9566\" title=\"KPS 9566\">KPS 9566</a></li>\n<li><a href=\"/wiki/KS_X_1001\" title=\"KS X 1001\">KS X 1001</a></li>\n<li><a href=\"/wiki/Perso-Arabic_Script_Code_for_Information_Interchange\" title=\"Perso-Arabic Script Code for Information Interchange\">PASCII</a></li>\n<li><a href=\"/wiki/TIS-620\" title=\"TIS-620\" class=\"mw-redirect\">TIS-620</a></li>\n<li><a href=\"/wiki/TSCII\" title=\"TSCII\" class=\"mw-redirect\">TSCII</a></li>\n<li><a href=\"/wiki/VISCII\" title=\"VISCII\" class=\"mw-redirect\">VISCII</a></li>\n<li><a href=\"/wiki/YUSCII\" title=\"YUSCII\">YUSCII</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Extended_Unix_Code\" title=\"Extended Unix Code\">EUC</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/EUC-CN\" title=\"EUC-CN\" class=\"mw-redirect\">CN</a></li>\n<li><a href=\"/wiki/EUC-JP\" title=\"EUC-JP\" class=\"mw-redirect\">JP</a></li>\n<li><a href=\"/wiki/EUC-KR\" title=\"EUC-KR\" class=\"mw-redirect\">KR</a></li>\n<li><a href=\"/wiki/EUC-TW\" title=\"EUC-TW\" class=\"mw-redirect\">TW</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/ISO/IEC_2022\" title=\"ISO/IEC 2022\">ISO/IEC 2022</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li>CN</li>\n<li><a href=\"/wiki/ISO-2022-JP\" title=\"ISO-2022-JP\" class=\"mw-redirect\">JP</a></li>\n<li><a href=\"/wiki/ISO-2022-KR\" title=\"ISO-2022-KR\" class=\"mw-redirect\">KR</a></li>\n<li><a href=\"/wiki/CCCII\" title=\"CCCII\" class=\"mw-redirect\">CCCII</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:Mac_OS_character_encodings\" title=\"Category:Mac OS character encodings\">MacOS codepages (\"scripts\")</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/MacArabic_encoding\" title=\"MacArabic encoding\">Arabic</a></li>\n<li><a href=\"/wiki/Macintosh_Central_European_encoding\" title=\"Macintosh Central European encoding\">CentralEurRoman</a></li>\n<li>ChineseSimp / <a href=\"/wiki/EUC-CN\" title=\"EUC-CN\" class=\"mw-redirect\">EUC-CN</a></li>\n<li>ChineseTrad / <a href=\"/wiki/Big5\" title=\"Big5\">Big5</a></li>\n<li>Croatian</li>\n<li><a href=\"/wiki/Macintosh_Cyrillic_encoding\" title=\"Macintosh Cyrillic encoding\">Cyrillic</a></li>\n<li>Devanagari</li>\n<li>Dingbats</li>\n<li>Farsi</li>\n<li>Greek</li>\n<li>Gujarati</li>\n<li>Gurmukhi</li>\n<li>Hebrew</li>\n<li><a href=\"/wiki/Mac_Icelandic_encoding\" title=\"Mac Icelandic encoding\">Icelandic</a></li>\n<li>Japanese / <a href=\"/wiki/Shift_JIS\" title=\"Shift JIS\">ShiftJIS</a></li>\n<li>Korean / <a href=\"/wiki/EUC-KR\" title=\"EUC-KR\" class=\"mw-redirect\">EUC-KR</a></li>\n<li><a href=\"/wiki/Mac_OS_Roman\" title=\"Mac OS Roman\">Roman</a></li>\n<li>Romanian</li>\n<li>Symbol</li>\n<li>Thai / <a href=\"/wiki/TIS-620\" title=\"TIS-620\" class=\"mw-redirect\">TIS-620</a></li>\n<li>Turkish</li>\n<li><a href=\"/wiki/Macintosh_Ukrainian_encoding\" title=\"Macintosh Ukrainian encoding\">Ukrainian</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:DOS_code_pages\" title=\"Category:DOS code pages\">DOS codepages</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Code_page_437\" title=\"Code page 437\">437</a></li>\n<li><a href=\"/wiki/Code_page_720\" title=\"Code page 720\">720</a></li>\n<li><a href=\"/wiki/Code_page_737\" title=\"Code page 737\">737</a></li>\n<li><a href=\"/wiki/Code_page_775\" title=\"Code page 775\">775</a></li>\n<li><a href=\"/wiki/Code_page_850\" title=\"Code page 850\">850</a></li>\n<li><a href=\"/wiki/Code_page_852\" title=\"Code page 852\">852</a></li>\n<li><a href=\"/wiki/Code_page_855\" title=\"Code page 855\">855</a></li>\n<li><a href=\"/wiki/Code_page_857\" title=\"Code page 857\">857</a></li>\n<li><a href=\"/wiki/Code_page_858\" title=\"Code page 858\">858</a></li>\n<li><a href=\"/wiki/Code_page_860\" title=\"Code page 860\">860</a></li>\n<li><a href=\"/wiki/Code_page_861\" title=\"Code page 861\">861</a></li>\n<li><a href=\"/wiki/Code_page_862\" title=\"Code page 862\">862</a></li>\n<li><a href=\"/wiki/Code_page_863\" title=\"Code page 863\">863</a></li>\n<li><a href=\"/wiki/Code_page_864\" title=\"Code page 864\">864</a></li>\n<li><a href=\"/wiki/Code_page_865\" title=\"Code page 865\">865</a></li>\n<li><a href=\"/wiki/Code_page_866\" title=\"Code page 866\">866</a></li>\n<li><a href=\"/wiki/Code_page_869\" title=\"Code page 869\">869</a></li>\n<li><a href=\"/wiki/Kamenick%C3%BD_encoding\" title=\"Kamenický encoding\">Kamenický</a></li>\n<li><a href=\"/wiki/Mazovia_encoding\" title=\"Mazovia encoding\">Mazovia</a></li>\n<li><a href=\"/wiki/MIK_Code_page\" title=\"MIK Code page\" class=\"mw-redirect\">MIK</a></li>\n<li><a href=\"/wiki/Iran_System_encoding_standard\" title=\"Iran System encoding standard\">Iran System</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:Windows_code_pages\" title=\"Category:Windows code pages\">Windows codepages</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Windows-874\" title=\"Windows-874\" class=\"mw-redirect\">874</a> / <a href=\"/wiki/TIS-620\" title=\"TIS-620\" class=\"mw-redirect\">TIS-620</a></li>\n<li><a href=\"/wiki/Code_page_932\" title=\"Code page 932\">932</a> / <a href=\"/wiki/Shift_JIS\" title=\"Shift JIS\">Shift JIS</a></li>\n<li><a href=\"/wiki/Code_page_936\" title=\"Code page 936\">936</a> / <a href=\"/wiki/GBK\" title=\"GBK\">GBK</a></li>\n<li><a href=\"/wiki/Code_page_949\" title=\"Code page 949\">949</a> / <a href=\"/wiki/EUC-KR\" title=\"EUC-KR\" class=\"mw-redirect\">EUC-KR</a></li>\n<li><a href=\"/wiki/Code_page_950\" title=\"Code page 950\">950</a> / <a href=\"/wiki/Big5\" title=\"Big5\">Big5</a></li>\n<li><a href=\"/wiki/Windows-1250\" title=\"Windows-1250\">1250</a></li>\n<li><a href=\"/wiki/Windows-1251\" title=\"Windows-1251\">1251</a></li>\n<li><a href=\"/wiki/Windows-1252\" title=\"Windows-1252\">1252</a></li>\n<li><a href=\"/wiki/Windows-1253\" title=\"Windows-1253\">1253</a></li>\n<li><a href=\"/wiki/Windows-1254\" title=\"Windows-1254\">1254</a></li>\n<li><a href=\"/wiki/Windows-1255\" title=\"Windows-1255\">1255</a></li>\n<li><a href=\"/wiki/Windows-1256\" title=\"Windows-1256\">1256</a></li>\n<li><a href=\"/wiki/Windows-1257\" title=\"Windows-1257\">1257</a></li>\n<li><a href=\"/wiki/Windows-1258\" title=\"Windows-1258\">1258</a></li>\n<li><a href=\"/w/index.php?title=Code_page_1361&amp;action=edit&amp;redlink=1\" class=\"new\" title=\"Code page 1361 (page does not exist)\">1361</a></li>\n<li><a href=\"/wiki/Windows-54936\" title=\"Windows-54936\" class=\"mw-redirect\">54936</a> / <a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB18030</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:EBCDIC_code_pages\" title=\"Category:EBCDIC code pages\">EBCDIC codepages</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/EBCDIC_037\" title=\"EBCDIC 037\">37/1140</a></li>\n<li>273/1141</li>\n<li>277/1142</li>\n<li>278/1143</li>\n<li>280/1144</li>\n<li>284/1145</li>\n<li><a href=\"/wiki/EBCDIC_285\" title=\"EBCDIC 285\">285/1146</a></li>\n<li>297/1147</li>\n<li>420/16804</li>\n<li>424/12712</li>\n<li><a href=\"/wiki/EBCDIC_500\" title=\"EBCDIC 500\">500/1148</a></li>\n<li>838/1160</li>\n<li>871/1149</li>\n<li><a href=\"/wiki/EBCDIC_875\" title=\"EBCDIC 875\">875/9067</a></li>\n<li><a href=\"/wiki/EBCDIC_930\" title=\"EBCDIC 930\">930/1390</a></li>\n<li>933/1364</li>\n<li>937/1371</li>\n<li>935/1388</li>\n<li>939/1399</li>\n<li>1025/1154</li>\n<li>1026/1155</li>\n<li><a href=\"/wiki/EBCDIC_1047\" title=\"EBCDIC 1047\">1047/924</a></li>\n<li>1112/1156</li>\n<li>1122/1157</li>\n<li>1123/1158</li>\n<li>1130/1164</li>\n<li><a href=\"/wiki/JEF_codepage\" title=\"JEF codepage\">JEF</a></li>\n<li><a href=\"/wiki/KEIS\" title=\"KEIS\">KEIS</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Platform specific</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ATASCII\" title=\"ATASCII\">ATASCII</a></li>\n<li><a href=\"/wiki/CDC_display_code\" title=\"CDC display code\">CDC display code</a></li>\n<li><a href=\"/wiki/Multinational_Character_Set\" title=\"Multinational Character Set\">DEC-MCS</a></li>\n<li><a href=\"/wiki/DEC_Radix-50\" title=\"DEC Radix-50\">DEC Radix-50</a></li>\n<li><a href=\"/wiki/Fieldata\" title=\"Fieldata\">Fieldata</a></li>\n<li><a href=\"/wiki/GSM_03.38\" title=\"GSM 03.38\">GSM 03.38</a></li>\n<li><a href=\"/wiki/HP_roman8\" title=\"HP roman8\">HP roman8</a></li>\n<li><a href=\"/wiki/PETSCII\" title=\"PETSCII\">PETSCII</a></li>\n<li><a href=\"/wiki/TI_calculator_character_sets\" title=\"TI calculator character sets\">TI calculator character sets</a></li>\n<li><a href=\"/wiki/Wang_International_Standard_Code_for_Information_Interchange\" title=\"Wang International Standard Code for Information Interchange\">WISCII</a></li>\n<li><a href=\"/wiki/ZX_Spectrum_character_set\" title=\"ZX Spectrum character set\">ZX Spectrum character set</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> / <a href=\"/wiki/ISO/IEC_10646\" title=\"ISO/IEC 10646\" class=\"mw-redirect\">ISO/IEC 10646</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n<li><a href=\"/wiki/UTF-16/UCS-2\" title=\"UTF-16/UCS-2\" class=\"mw-redirect\">UTF-16/UCS-2</a></li>\n<li><a href=\"/wiki/UTF-32/UCS-4\" title=\"UTF-32/UCS-4\" class=\"mw-redirect\">UTF-32/UCS-4</a></li>\n<li><a href=\"/wiki/UTF-7\" title=\"UTF-7\">UTF-7</a></li>\n<li><a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a></li>\n<li><a href=\"/wiki/UTF-EBCDIC\" title=\"UTF-EBCDIC\">UTF-EBCDIC</a></li>\n<li><a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB 18030</a></li>\n<li><a href=\"/wiki/Standard_Compression_Scheme_for_Unicode\" title=\"Standard Compression Scheme for Unicode\">SCSU</a></li>\n<li><a href=\"/wiki/Binary_Ordered_Compression_for_Unicode\" title=\"Binary Ordered Compression for Unicode\">BOCU-1</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Miscellaneous codepages</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/APL_(codepage)\" title=\"APL (codepage)\">APL</a></li>\n<li><a href=\"/wiki/Cork_encoding\" title=\"Cork encoding\">Cork</a></li>\n<li><a href=\"/wiki/HZ_(character_encoding)\" title=\"HZ (character encoding)\">HZ</a></li>\n<li><a href=\"/wiki/Code_page_1133\" title=\"Code page 1133\">IBM code page 1133</a></li>\n<li><a href=\"/wiki/KOI_character_encodings\" title=\"KOI character encodings\">KOI8</a></li>\n<li><a href=\"/wiki/TRON_(encoding)\" title=\"TRON (encoding)\">TRON</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Related topics</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Control_character\" title=\"Control character\">control character</a>&#160;(<a href=\"/wiki/C0_and_C1_control_codes\" title=\"C0 and C1 control codes\">C0 C1</a>)</li>\n<li><a href=\"/wiki/CCSID\" title=\"CCSID\">CCSID</a></li>\n<li><a href=\"/wiki/Character_encodings_in_HTML\" title=\"Character encodings in HTML\">Character encodings in HTML</a></li>\n<li><a href=\"/wiki/Charset_detection\" title=\"Charset detection\">charset detection</a></li>\n<li><a href=\"/wiki/Han_unification\" title=\"Han unification\">Han unification</a></li>\n<li><a href=\"/wiki/ISO/IEC_6429\" title=\"ISO/IEC 6429\" class=\"mw-redirect\">ISO 6429/IEC 6429/ANSI X3.64</a></li>\n<li><a href=\"/wiki/Mojibake\" title=\"Mojibake\">mojibake</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks hlist collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Rob_Pike_navbox\" title=\"Template:Rob Pike navbox\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/w/index.php?title=Template_talk:Rob_Pike_navbox&amp;action=edit&amp;redlink=1\" class=\"new\" title=\"Template talk:Rob Pike navbox (page does not exist)\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Rob_Pike_navbox&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Rob_Pike\" title=\"Rob Pike\">Rob Pike</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Operating systems</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9 from Bell Labs</a></li>\n<li><a href=\"/wiki/Inferno_(operating_system)\" title=\"Inferno (operating system)\">Inferno</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Programming languages</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Newsqueak\" title=\"Newsqueak\">Newsqueak</a></li>\n<li><a href=\"/wiki/Limbo_(programming_language)\" title=\"Limbo (programming language)\">Limbo</a></li>\n<li><a href=\"/wiki/Go_(programming_language)\" title=\"Go (programming language)\">Go</a></li>\n<li><a href=\"/wiki/Sawzall_(programming_language)\" title=\"Sawzall (programming language)\">Sawzall</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Software</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Acme_(text_editor)\" title=\"Acme (text editor)\">acme</a></li>\n<li><a href=\"/wiki/Blit_(computer_terminal)\" title=\"Blit (computer terminal)\">Blit</a></li>\n<li><a href=\"/wiki/Sam_(text_editor)\" title=\"Sam (text editor)\">sam</a></li>\n<li><a href=\"/wiki/Rio_(windowing_system)\" title=\"Rio (windowing system)\">rio</a></li>\n<li><a href=\"/wiki/8%C2%BD_(Plan_9)\" title=\"8½ (Plan 9)\">8½</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Publications</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><i><a href=\"/wiki/The_Practice_of_Programming\" title=\"The Practice of Programming\">The Practice of Programming</a></i></li>\n<li><i><a href=\"/wiki/The_Unix_Programming_Environment\" title=\"The Unix Programming Environment\">The Unix Programming Environment</a></i></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Other</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Ren%C3%A9e_French\" title=\"Renée French\">Renée French</a></li>\n<li><a href=\"/wiki/Mark_V_Shaney\" title=\"Mark V Shaney\">Mark V Shaney</a></li>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks hlist collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Ken_Thompson_navbox\" title=\"Template:Ken Thompson navbox\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/w/index.php?title=Template_talk:Ken_Thompson_navbox&amp;action=edit&amp;redlink=1\" class=\"new\" title=\"Template talk:Ken Thompson navbox (page does not exist)\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Ken_Thompson_navbox&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Ken_Thompson\" title=\"Ken Thompson\">Ken Thompson</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Operating systems</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unix\" title=\"Unix\">Unix</a></li>\n<li><a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9 from Bell Labs</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Programming languages</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/B_(programming_language)\" title=\"B (programming language)\">B</a></li>\n<li><a href=\"/wiki/Bon_(programming_language)\" title=\"Bon (programming language)\">Bon</a></li>\n<li><a href=\"/wiki/Go_(programming_language)\" title=\"Go (programming language)\">Go</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Software</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Belle_(chess_machine)\" title=\"Belle (chess machine)\">Belle</a></li>\n<li><a href=\"/wiki/Ed_(text_editor)\" title=\"Ed (text editor)\">ed</a></li>\n<li><a href=\"/wiki/Sam_(text_editor)\" title=\"Sam (text editor)\">sam</a></li>\n<li><a href=\"/wiki/Space_Travel_(video_game)\" title=\"Space Travel (video game)\">Space Travel</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Other</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n\n\n<!-- \nNewPP limit report\nPreprocessor node count: 22444/1000000\nPost-expand include size: 235354/2048000 bytes\nTemplate argument size: 87024/2048000 bytes\nHighest expansion depth: 21/40\nExpensive parser function count: 5/500\n-->\n\n<!-- Saved in parser cache with key enwiki:pcache:idhash:32188-0!*!0!!en!4!* and timestamp 20120815033327 -->\n</div>\t\t\t\t<!-- /bodycontent -->\n\t\t\t\t\t\t\t\t<!-- printfooter -->\n\t\t\t\t<div class=\"printfooter\">\n\t\t\t\tRetrieved from \"<a href=\"http://en.wikipedia.org/w/index.php?title=UTF-8&amp;oldid=507478399\">http://en.wikipedia.org/w/index.php?title=UTF-8&amp;oldid=507478399</a>\"\t\t\t\t</div>\n\t\t\t\t<!-- /printfooter -->\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- catlinks -->\n\t\t\t\t<div id='catlinks' class='catlinks'><div id=\"mw-normal-catlinks\" class=\"mw-normal-catlinks\"><a href=\"/wiki/Special:Categories\" title=\"Special:Categories\">Categories</a>: <ul><li><a href=\"/wiki/Category:Character_sets\" title=\"Category:Character sets\">Character sets</a></li><li><a href=\"/wiki/Category:Encodings\" title=\"Category:Encodings\">Encodings</a></li><li><a href=\"/wiki/Category:Character_encoding\" title=\"Category:Character encoding\">Character encoding</a></li><li><a href=\"/wiki/Category:Unicode_Transformation_Formats\" title=\"Category:Unicode Transformation Formats\">Unicode Transformation Formats</a></li></ul></div><div id=\"mw-hidden-catlinks\" class=\"mw-hidden-catlinks mw-hidden-cats-hidden\">Hidden categories: <ul><li><a href=\"/wiki/Category:All_articles_with_unsourced_statements\" title=\"Category:All articles with unsourced statements\">All articles with unsourced statements</a></li><li><a href=\"/wiki/Category:Articles_with_unsourced_statements_from_December_2011\" title=\"Category:Articles with unsourced statements from December 2011\">Articles with unsourced statements from December 2011</a></li><li><a href=\"/wiki/Category:All_articles_with_specifically_marked_weasel-worded_phrases\" title=\"Category:All articles with specifically marked weasel-worded phrases\">All articles with specifically marked weasel-worded phrases</a></li><li><a href=\"/wiki/Category:Articles_with_specifically_marked_weasel-worded_phrases_from_September_2011\" title=\"Category:Articles with specifically marked weasel-worded phrases from September 2011\">Articles with specifically marked weasel-worded phrases from September 2011</a></li><li><a href=\"/wiki/Category:Articles_with_unsourced_statements_from_February_2012\" title=\"Category:Articles with unsourced statements from February 2012\">Articles with unsourced statements from February 2012</a></li><li><a href=\"/wiki/Category:Articles_needing_additional_references_from_October_2009\" title=\"Category:Articles needing additional references from October 2009\">Articles needing additional references from October 2009</a></li><li><a href=\"/wiki/Category:All_articles_needing_additional_references\" title=\"Category:All articles needing additional references\">All articles needing additional references</a></li><li><a href=\"/wiki/Category:Articles_with_unsourced_statements_from_December_2009\" title=\"Category:Articles with unsourced statements from December 2009\">Articles with unsourced statements from December 2009</a></li></ul></div></div>\t\t\t\t<!-- /catlinks -->\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"visualClear\"></div>\n\t\t\t\t<!-- debughtml -->\n\t\t\t\t\t\t\t\t<!-- /debughtml -->\n\t\t\t</div>\n\t\t\t<!-- /bodyContent -->\n\t\t</div>\n\t\t<!-- /content -->\n\t\t<!-- header -->\n\t\t<div id=\"mw-head\" class=\"noprint\">\n\t\t\t\n<!-- 0 -->\n<div id=\"p-personal\" class=\"\">\n\t<h5>Personal tools</h5>\n\t<ul>\n\t\t<li id=\"pt-createaccount\"><a href=\"/w/index.php?title=Special:UserLogin&amp;returnto=UTF-8&amp;type=signup\">Create account</a></li>\n\t\t<li id=\"pt-login\"><a href=\"/w/index.php?title=Special:UserLogin&amp;returnto=UTF-8\" title=\"You are encouraged to log in; however, it is not mandatory. [o]\" accesskey=\"o\">Log in</a></li>\n\t</ul>\n</div>\n\n<!-- /0 -->\n\t\t\t<div id=\"left-navigation\">\n\t\t\t\t\n<!-- 0 -->\n<div id=\"p-namespaces\" class=\"vectorTabs\">\n\t<h5>Namespaces</h5>\n\t<ul>\n\t\t\t\t\t<li  id=\"ca-nstab-main\" class=\"selected\"><span><a href=\"/wiki/UTF-8\"  title=\"View the content page [c]\" accesskey=\"c\">Article</a></span></li>\n\t\t\t\t\t<li  id=\"ca-talk\"><span><a href=\"/wiki/Talk:UTF-8\"  title=\"Discussion about the content page [t]\" accesskey=\"t\">Talk</a></span></li>\n\t\t\t</ul>\n</div>\n\n<!-- /0 -->\n\n<!-- 1 -->\n<div id=\"p-variants\" class=\"vectorMenu emptyPortlet\">\n\t<h4>\n\t\t</h4>\n\t<h5><span>Variants</span><a href=\"#\"></a></h5>\n\t<div class=\"menu\">\n\t\t<ul>\n\t\t\t\t\t</ul>\n\t</div>\n</div>\n\n<!-- /1 -->\n\t\t\t</div>\n\t\t\t<div id=\"right-navigation\">\n\t\t\t\t\n<!-- 0 -->\n<div id=\"p-views\" class=\"vectorTabs\">\n\t<h5>Views</h5>\n\t<ul>\n\t\t\t\t\t<li id=\"ca-view\" class=\"selected\"><span><a href=\"/wiki/UTF-8\" >Read</a></span></li>\n\t\t\t\t\t<li id=\"ca-edit\"><span><a href=\"/w/index.php?title=UTF-8&amp;action=edit\"  title=\"You can edit this page. &#10;Please use the preview button before saving. [e]\" accesskey=\"e\">Edit</a></span></li>\n\t\t\t\t\t<li id=\"ca-history\" class=\"collapsible\"><span><a href=\"/w/index.php?title=UTF-8&amp;action=history\"  title=\"Past versions of this page [h]\" accesskey=\"h\">View history</a></span></li>\n\t\t\t</ul>\n</div>\n\n<!-- /0 -->\n\n<!-- 1 -->\n<div id=\"p-cactions\" class=\"vectorMenu emptyPortlet\">\n\t<h5><span>Actions</span><a href=\"#\"></a></h5>\n\t<div class=\"menu\">\n\t\t<ul>\n\t\t\t\t\t</ul>\n\t</div>\n</div>\n\n<!-- /1 -->\n\n<!-- 2 -->\n<div id=\"p-search\">\n\t<h5><label for=\"searchInput\">Search</label></h5>\n\t<form action=\"/w/index.php\" id=\"searchform\">\n\t\t\t\t<div id=\"simpleSearch\">\n\t\t\t\t\t\t<input type=\"text\" name=\"search\" value=\"\" title=\"Search Wikipedia [f]\" accesskey=\"f\" id=\"searchInput\" />\t\t\t\t\t\t<button type=\"submit\" name=\"button\" title=\"Search Wikipedia for this text\" id=\"searchButton\" width=\"12\" height=\"13\"><img src=\"//bits.wikimedia.org/static-1.20wmf9/skins/vector/images/search-ltr.png?303-4\" alt=\"Search\" /></button>\t\t\t\t\t\t\t\t<input type='hidden' name=\"title\" value=\"Special:Search\"/>\n\t\t</div>\n\t</form>\n</div>\n\n<!-- /2 -->\n\t\t\t</div>\n\t\t</div>\n\t\t<!-- /header -->\n\t\t<!-- panel -->\n\t\t\t<div id=\"mw-panel\" class=\"noprint\">\n\t\t\t\t<!-- logo -->\n\t\t\t\t\t<div id=\"p-logo\"><a style=\"background-image: url(//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);\" href=\"/wiki/Main_Page\"  title=\"Visit the main page\"></a></div>\n\t\t\t\t<!-- /logo -->\n\t\t\t\t\n<!-- navigation -->\n<div class=\"portal\" id='p-navigation'>\n\t<h5>Navigation</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li id=\"n-mainpage-description\"><a href=\"/wiki/Main_Page\" title=\"Visit the main page [z]\" accesskey=\"z\">Main page</a></li>\n\t\t\t<li id=\"n-contents\"><a href=\"/wiki/Portal:Contents\" title=\"Guides to browsing Wikipedia\">Contents</a></li>\n\t\t\t<li id=\"n-featuredcontent\"><a href=\"/wiki/Portal:Featured_content\" title=\"Featured content – the best of Wikipedia\">Featured content</a></li>\n\t\t\t<li id=\"n-currentevents\"><a href=\"/wiki/Portal:Current_events\" title=\"Find background information on current events\">Current events</a></li>\n\t\t\t<li id=\"n-randompage\"><a href=\"/wiki/Special:Random\" title=\"Load a random article [x]\" accesskey=\"x\">Random article</a></li>\n\t\t\t<li id=\"n-sitesupport\"><a href=\"//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=20120717SB001&amp;uselang=en\" title=\"Support us\">Donate to Wikipedia</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n<!-- /navigation -->\n\n<!-- SEARCH -->\n\n<!-- /SEARCH -->\n\n<!-- interaction -->\n<div class=\"portal\" id='p-interaction'>\n\t<h5>Interaction</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li id=\"n-help\"><a href=\"/wiki/Help:Contents\" title=\"Guidance on how to use and edit Wikipedia\">Help</a></li>\n\t\t\t<li id=\"n-aboutsite\"><a href=\"/wiki/Wikipedia:About\" title=\"Find out about Wikipedia\">About Wikipedia</a></li>\n\t\t\t<li id=\"n-portal\"><a href=\"/wiki/Wikipedia:Community_portal\" title=\"About the project, what you can do, where to find things\">Community portal</a></li>\n\t\t\t<li id=\"n-recentchanges\"><a href=\"/wiki/Special:RecentChanges\" title=\"A list of recent changes in the wiki [r]\" accesskey=\"r\">Recent changes</a></li>\n\t\t\t<li id=\"n-contact\"><a href=\"/wiki/Wikipedia:Contact_us\" title=\"How to contact Wikipedia\">Contact Wikipedia</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n<!-- /interaction -->\n\n<!-- TOOLBOX -->\n<div class=\"portal\" id='p-tb'>\n\t<h5>Toolbox</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li id=\"t-whatlinkshere\"><a href=\"/wiki/Special:WhatLinksHere/UTF-8\" title=\"List of all English Wikipedia pages containing links to this page [j]\" accesskey=\"j\">What links here</a></li>\n\t\t\t<li id=\"t-recentchangeslinked\"><a href=\"/wiki/Special:RecentChangesLinked/UTF-8\" title=\"Recent changes in pages linked from this page [k]\" accesskey=\"k\">Related changes</a></li>\n\t\t\t<li id=\"t-upload\"><a href=\"/wiki/Wikipedia:Upload\" title=\"Upload files [u]\" accesskey=\"u\">Upload file</a></li>\n\t\t\t<li id=\"t-specialpages\"><a href=\"/wiki/Special:SpecialPages\" title=\"A list of all special pages [q]\" accesskey=\"q\">Special pages</a></li>\n\t\t\t<li id=\"t-permalink\"><a href=\"/w/index.php?title=UTF-8&amp;oldid=507478399\" title=\"Permanent link to this revision of the page\">Permanent link</a></li>\n<li id=\"t-cite\"><a href=\"/w/index.php?title=Special:Cite&amp;page=UTF-8&amp;id=507478399\" title=\"Information on how to cite this page\">Cite this page</a></li>\t\t</ul>\n\t</div>\n</div>\n\n<!-- /TOOLBOX -->\n\n<!-- coll-print_export -->\n<div class=\"portal\" id='p-coll-print_export'>\n\t<h5>Print/export</h5>\n\t<div class=\"body\">\n\t\t<ul id=\"collectionPortletList\"><li id=\"coll-create_a_book\"><a href=\"/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=UTF-8\" title=\"Create a book or page collection\" rel=\"nofollow\">Create a book</a></li><li id=\"coll-download-as-rl\"><a href=\"/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=UTF-8&amp;oldid=507478399&amp;writer=rl\" title=\"Download a PDF version of this wiki page\" rel=\"nofollow\">Download as PDF</a></li><li id=\"t-print\"><a href=\"/w/index.php?title=UTF-8&amp;printable=yes\" title=\"Printable version of this page [p]\" accesskey=\"p\">Printable version</a></li></ul>\t</div>\n</div>\n\n<!-- /coll-print_export -->\n\n<!-- LANGUAGES -->\n<div class=\"portal\" id='p-lang'>\n\t<h5>Languages</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li class=\"interwiki-ar\"><a href=\"//ar.wikipedia.org/wiki/%D8%B5%D9%8A%D8%BA%D8%A9_%D8%A7%D9%84%D8%AA%D8%AD%D9%88%D9%8A%D9%84_%D8%A7%D9%84%D9%85%D9%88%D8%AD%D8%AF-8\" title=\"صيغة التحويل الموحد-8\" lang=\"ar\" hreflang=\"ar\">العربية</a></li>\n\t\t\t<li class=\"interwiki-bg\"><a href=\"//bg.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"bg\" hreflang=\"bg\">Български</a></li>\n\t\t\t<li class=\"interwiki-ca\"><a href=\"//ca.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ca\" hreflang=\"ca\">Català</a></li>\n\t\t\t<li class=\"interwiki-cs\"><a href=\"//cs.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"cs\" hreflang=\"cs\">Česky</a></li>\n\t\t\t<li class=\"interwiki-da\"><a href=\"//da.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"da\" hreflang=\"da\">Dansk</a></li>\n\t\t\t<li class=\"interwiki-de\"><a href=\"//de.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"de\" hreflang=\"de\">Deutsch</a></li>\n\t\t\t<li class=\"interwiki-el\"><a href=\"//el.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"el\" hreflang=\"el\">Ελληνικά</a></li>\n\t\t\t<li class=\"interwiki-es\"><a href=\"//es.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"es\" hreflang=\"es\">Español</a></li>\n\t\t\t<li class=\"interwiki-eo\"><a href=\"//eo.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"eo\" hreflang=\"eo\">Esperanto</a></li>\n\t\t\t<li class=\"interwiki-fa\"><a href=\"//fa.wikipedia.org/wiki/%DB%8C%D9%88%D8%AA%DB%8C%E2%80%8C%D8%A7%D9%81-%DB%B8\" title=\"یوتی‌اف-۸\" lang=\"fa\" hreflang=\"fa\">فارسی</a></li>\n\t\t\t<li class=\"interwiki-fr\"><a href=\"//fr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"fr\" hreflang=\"fr\">Français</a></li>\n\t\t\t<li class=\"interwiki-ko\"><a href=\"//ko.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ko\" hreflang=\"ko\">한국어</a></li>\n\t\t\t<li class=\"interwiki-hr\"><a href=\"//hr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"hr\" hreflang=\"hr\">Hrvatski</a></li>\n\t\t\t<li class=\"interwiki-it\"><a href=\"//it.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"it\" hreflang=\"it\">Italiano</a></li>\n\t\t\t<li class=\"interwiki-he\"><a href=\"//he.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"he\" hreflang=\"he\">עברית</a></li>\n\t\t\t<li class=\"interwiki-lv\"><a href=\"//lv.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"lv\" hreflang=\"lv\">Latviešu</a></li>\n\t\t\t<li class=\"interwiki-lt\"><a href=\"//lt.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"lt\" hreflang=\"lt\">Lietuvių</a></li>\n\t\t\t<li class=\"interwiki-hu\"><a href=\"//hu.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"hu\" hreflang=\"hu\">Magyar</a></li>\n\t\t\t<li class=\"interwiki-ml\"><a href=\"//ml.wikipedia.org/wiki/%E0%B4%AF%E0%B5%81.%E0%B4%9F%E0%B4%BF.%E0%B4%8E%E0%B4%AB%E0%B5%8D-8\" title=\"യു.ടി.എഫ്-8\" lang=\"ml\" hreflang=\"ml\">മലയാളം</a></li>\n\t\t\t<li class=\"interwiki-ms\"><a href=\"//ms.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ms\" hreflang=\"ms\">Bahasa Melayu</a></li>\n\t\t\t<li class=\"interwiki-nl\"><a href=\"//nl.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"nl\" hreflang=\"nl\">Nederlands</a></li>\n\t\t\t<li class=\"interwiki-ja\"><a href=\"//ja.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ja\" hreflang=\"ja\">日本語</a></li>\n\t\t\t<li class=\"interwiki-no\"><a href=\"//no.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"no\" hreflang=\"no\">‪norsk (bokmål)‬</a></li>\n\t\t\t<li class=\"interwiki-nn\"><a href=\"//nn.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"nn\" hreflang=\"nn\">‪norsk (nynorsk)‬</a></li>\n\t\t\t<li class=\"interwiki-pl\"><a href=\"//pl.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"pl\" hreflang=\"pl\">Polski</a></li>\n\t\t\t<li class=\"interwiki-pt\"><a href=\"//pt.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"pt\" hreflang=\"pt\">Português</a></li>\n\t\t\t<li class=\"interwiki-ru\"><a href=\"//ru.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ru\" hreflang=\"ru\">Русский</a></li>\n\t\t\t<li class=\"interwiki-sk\"><a href=\"//sk.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sk\" hreflang=\"sk\">Slovenčina</a></li>\n\t\t\t<li class=\"interwiki-sl\"><a href=\"//sl.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sl\" hreflang=\"sl\">Slovenščina</a></li>\n\t\t\t<li class=\"interwiki-sr\"><a href=\"//sr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sr\" hreflang=\"sr\">Српски / srpski</a></li>\n\t\t\t<li class=\"interwiki-fi\"><a href=\"//fi.wikipedia.org/wiki/Unicode#UTF-8\" title=\"Unicode\" lang=\"fi\" hreflang=\"fi\">Suomi</a></li>\n\t\t\t<li class=\"interwiki-sv\"><a href=\"//sv.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sv\" hreflang=\"sv\">Svenska</a></li>\n\t\t\t<li class=\"interwiki-tr\"><a href=\"//tr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"tr\" hreflang=\"tr\">Türkçe</a></li>\n\t\t\t<li class=\"interwiki-uk\"><a href=\"//uk.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"uk\" hreflang=\"uk\">Українська</a></li>\n\t\t\t<li class=\"interwiki-vi\"><a href=\"//vi.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"vi\" hreflang=\"vi\">Tiếng Việt</a></li>\n\t\t\t<li class=\"interwiki-zh\"><a href=\"//zh.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"zh\" hreflang=\"zh\">中文</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n<!-- /LANGUAGES -->\n\t\t\t</div>\n\t\t<!-- /panel -->\n\t\t<!-- footer -->\n\t\t<div id=\"footer\">\n\t\t\t\t\t\t\t<ul id=\"footer-info\">\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-info-lastmod\"> This page was last modified on 15 August 2012 at 03:33.<br /></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-info-copyright\">Text is available under the <a rel=\"license\" href=\"//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License\">Creative Commons Attribution-ShareAlike License</a><a rel=\"license\" href=\"//creativecommons.org/licenses/by-sa/3.0/\" style=\"display:none;\"></a>;\nadditional terms may apply.\nSee <a href=\"//wikimediafoundation.org/wiki/Terms_of_use\">Terms of use</a> for details.<br/>\nWikipedia&reg; is a registered trademark of the <a href=\"//www.wikimediafoundation.org/\">Wikimedia Foundation, Inc.</a>, a non-profit organization.<br /></li><li class=\"noprint\"><a class='internal' href=\"//en.wikipedia.org/wiki/Wikipedia:Contact_us\">Contact us</a></li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<ul id=\"footer-places\">\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-privacy\"><a href=\"//wikimediafoundation.org/wiki/Privacy_policy\" title=\"wikimedia:Privacy policy\">Privacy policy</a></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-about\"><a href=\"/wiki/Wikipedia:About\" title=\"Wikipedia:About\">About Wikipedia</a></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-disclaimer\"><a href=\"/wiki/Wikipedia:General_disclaimer\" title=\"Wikipedia:General disclaimer\">Disclaimers</a></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-mobileview\"><a href=\"http://en.m.wikipedia.org/w/index.php?title=UTF-8&amp;mobileaction=toggle_view_mobile\" class=\"noprint\">Mobile view</a></li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<ul id=\"footer-icons\" class=\"noprint\">\n\t\t\t\t\t<li id=\"footer-copyrightico\">\n\t\t\t\t\t\t<a href=\"//wikimediafoundation.org/\"><img src=\"//bits.wikimedia.org/images/wikimedia-button.png\" width=\"88\" height=\"31\" alt=\"Wikimedia Foundation\"/></a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li id=\"footer-poweredbyico\">\n\t\t\t\t\t\t<a href=\"//www.mediawiki.org/\"><img src=\"//bits.wikimedia.org/static-1.20wmf9/skins/common/images/poweredby_mediawiki_88x31.png\" alt=\"Powered by MediaWiki\" width=\"88\" height=\"31\" /></a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t\t\t<div style=\"clear:both\"></div>\n\t\t</div>\n\t\t<!-- /footer -->\n\t\t<script type=\"text/javascript\">if(window.mw){\nmw.loader.state({\"site\":\"loading\",\"user\":\"ready\",\"user.groups\":\"ready\"});\n}</script>\n<script src=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=skins.vector&amp;only=scripts&amp;skin=vector&amp;*\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">if(window.mw){\nmw.loader.load([\"mediawiki.user\",\"mediawiki.page.ready\",\"mediawiki.legacy.mwsuggest\",\"ext.gadget.teahouse\",\"ext.gadget.ReferenceTooltips\",\"ext.vector.collapsibleNav\",\"ext.vector.collapsibleTabs\",\"ext.vector.editWarning\",\"ext.vector.simpleSearch\",\"ext.UserBuckets\",\"ext.articleFeedback.startup\",\"ext.articleFeedbackv5.startup\",\"ext.markAsHelpful\",\"ext.Experiments.lib\",\"ext.Experiments.experiments\"], null, true);\n}</script>\n<script src=\"/w/index.php?title=MediaWiki:Gadget-ReferenceTooltips.js&amp;action=raw&amp;ctype=text/javascript&amp;500778781\" type=\"text/javascript\"></script>\n<script src=\"/w/index.php?title=MediaWiki:Gadget-DRN-wizard-loader.js&amp;action=raw&amp;ctype=text/javascript&amp;504341206\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">\nwindow._reg = \"\";\n</script>\n<script src=\"/w/index.php?title=Special:BannerController&amp;cache=/cn.js&amp;303-4\" type=\"text/javascript\"></script>\n<script src=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=scripts&amp;skin=vector&amp;*\" type=\"text/javascript\"></script>\n<script src=\"//bits.wikimedia.org/geoiplookup\" type=\"text/javascript\"></script><!-- Served by srv241 in 0.156 secs. -->\n\t</body>\n</html>\n"
  },
  {
    "path": "testdata/utf8_bom.html",
    "content": "﻿<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html lang=\"en\" dir=\"ltr\" class=\"client-nojs\" xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<title>UTF-8 - Wikipedia, the free encyclopedia</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n<meta http-equiv=\"Content-Style-Type\" content=\"text/css\" />\n<meta name=\"generator\" content=\"MediaWiki 1.20wmf9\" />\n<link rel=\"alternate\" type=\"application/x-wiki\" title=\"Edit this page\" href=\"/w/index.php?title=UTF-8&amp;action=edit\" />\n<link rel=\"edit\" title=\"Edit this page\" href=\"/w/index.php?title=UTF-8&amp;action=edit\" />\n<link rel=\"apple-touch-icon\" href=\"//en.wikipedia.org/apple-touch-icon.png\" />\n<link rel=\"shortcut icon\" href=\"/favicon.ico\" />\n<link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"/w/opensearch_desc.php\" title=\"Wikipedia (en)\" />\n<link rel=\"EditURI\" type=\"application/rsd+xml\" href=\"//en.wikipedia.org/w/api.php?action=rsd\" />\n<link rel=\"copyright\" href=\"//creativecommons.org/licenses/by-sa/3.0/\" />\n<link rel=\"alternate\" type=\"application/atom+xml\" title=\"Wikipedia Atom feed\" href=\"/w/index.php?title=Special:RecentChanges&amp;feed=atom\" />\n<link rel=\"stylesheet\" href=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=ext.gadget.ReferenceTooltips%2Cteahouse%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cskins.vector&amp;only=styles&amp;skin=vector&amp;*\" type=\"text/css\" media=\"all\" />\n<meta name=\"ResourceLoaderDynamicStyles\" content=\"\" />\n<link rel=\"stylesheet\" href=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector&amp;*\" type=\"text/css\" media=\"all\" />\n<style type=\"text/css\" media=\"all\">a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}\n\n/* cache key: enwiki:resourceloader:filter:minify-css:7:4edf467d58fee44c83dfe724ca07c179 */</style>\n\n<script src=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector&amp;*\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">if(window.mw){\nmw.config.set({\"wgCanonicalNamespace\":\"\",\"wgCanonicalSpecialPageName\":false,\"wgNamespaceNumber\":0,\"wgPageName\":\"UTF-8\",\"wgTitle\":\"UTF-8\",\"wgCurRevisionId\":507478399,\"wgArticleId\":32188,\"wgIsArticle\":true,\"wgAction\":\"view\",\"wgUserName\":null,\"wgUserGroups\":[\"*\"],\"wgCategories\":[\"All articles with unsourced statements\",\"Articles with unsourced statements from December 2011\",\"All articles with specifically marked weasel-worded phrases\",\"Articles with specifically marked weasel-worded phrases from September 2011\",\"Articles with unsourced statements from February 2012\",\"Articles needing additional references from October 2009\",\"All articles needing additional references\",\"Articles with unsourced statements from December 2009\",\"Character sets\",\"Encodings\",\"Character encoding\",\"Unicode Transformation Formats\"],\"wgBreakFrames\":false,\"wgPageContentLanguage\":\"en\",\"wgSeparatorTransformTable\":[\"\",\"\"],\"wgDigitTransformTable\":[\"\",\"\"],\"wgDefaultDateFormat\":\"dmy\",\"wgMonthNames\":[\"\",\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],\"wgMonthNamesShort\":[\"\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],\"wgRelevantPageName\":\"UTF-8\",\"wgRestrictionEdit\":[],\"wgRestrictionMove\":[],\"wgSearchNamespaces\":[0],\"wgVectorEnabledModules\":{\"collapsiblenav\":true,\"collapsibletabs\":true,\"editwarning\":true,\"expandablesearch\":false,\"footercleanup\":false,\"sectioneditlinks\":false,\"simplesearch\":true,\"experiments\":true},\"wgWikiEditorEnabledModules\":{\"toolbar\":true,\"dialogs\":true,\"hidesig\":true,\"templateEditor\":false,\"templates\":false,\"preview\":false,\"previewDialog\":false,\"publish\":false,\"toc\":false},\"wgTrackingToken\":\"05adb93d1ad4862b032b79a4b4b060fd\",\"wgArticleFeedbackv5Permissions\":{\"oversighter\":false,\"moderator\":false,\"editor\":false},\"wikilove-recipient\":\"\",\"wikilove-anon\":0,\"mbEmailEnabled\":true,\"mbUserEmail\":false,\"mbIsEmailConfirmationPending\":false,\"wgFlaggedRevsParams\":{\"tags\":{\"status\":{\"levels\":1,\"quality\":2,\"pristine\":3}}},\"wgStableRevisionId\":null,\"wgCategoryTreePageCategoryOptions\":\"{\\\"mode\\\":0,\\\"hideprefix\\\":20,\\\"showcount\\\":true,\\\"namespaces\\\":false}\",\"Geo\":{\"city\":\"\",\"country\":\"\"},\"wgNoticeProject\":\"wikipedia\",\"aftv5Whitelist\":false});\n}</script><script type=\"text/javascript\">if(window.mw){\nmw.loader.implement(\"user.options\",function(){mw.user.options.set({\"ccmeonemails\":0,\"cols\":80,\"date\":\"default\",\"diffonly\":0,\"disablemail\":0,\"disablesuggest\":0,\"editfont\":\"default\",\"editondblclick\":0,\"editsection\":1,\"editsectiononrightclick\":0,\"enotifminoredits\":0,\"enotifrevealaddr\":0,\"enotifusertalkpages\":1,\"enotifwatchlistpages\":0,\"extendwatchlist\":0,\"externaldiff\":0,\"externaleditor\":0,\"fancysig\":0,\"forceeditsummary\":0,\"gender\":\"unknown\",\"hideminor\":0,\"hidepatrolled\":0,\"imagesize\":2,\"justify\":0,\"math\":0,\"minordefault\":0,\"newpageshidepatrolled\":0,\"nocache\":0,\"noconvertlink\":0,\"norollbackdiff\":0,\"numberheadings\":0,\"previewonfirst\":0,\"previewontop\":1,\"quickbar\":5,\"rcdays\":7,\"rclimit\":50,\"rememberpassword\":0,\"rows\":25,\"searchlimit\":20,\"showhiddencats\":false,\"showjumplinks\":1,\"shownumberswatching\":1,\"showtoc\":1,\"showtoolbar\":1,\"skin\":\"vector\",\"stubthreshold\":0,\"thumbsize\":4,\"underline\":2,\"uselivepreview\":0,\"usenewrc\":0,\"watchcreations\":1,\"watchdefault\":0,\"watchdeletion\":0,\"watchlistdays\":3\n,\"watchlisthideanons\":0,\"watchlisthidebots\":0,\"watchlisthideliu\":0,\"watchlisthideminor\":0,\"watchlisthideown\":0,\"watchlisthidepatrolled\":0,\"watchmoves\":0,\"wllimit\":250,\"flaggedrevssimpleui\":1,\"flaggedrevsstable\":0,\"flaggedrevseditdiffs\":true,\"flaggedrevsviewdiffs\":false,\"vector-simplesearch\":1,\"useeditwarning\":1,\"vector-collapsiblenav\":1,\"usebetatoolbar\":1,\"usebetatoolbar-cgd\":1,\"wikilove-enabled\":1,\"variant\":\"en\",\"language\":\"en\",\"searchNs0\":true,\"searchNs1\":false,\"searchNs2\":false,\"searchNs3\":false,\"searchNs4\":false,\"searchNs5\":false,\"searchNs6\":false,\"searchNs7\":false,\"searchNs8\":false,\"searchNs9\":false,\"searchNs10\":false,\"searchNs11\":false,\"searchNs12\":false,\"searchNs13\":false,\"searchNs14\":false,\"searchNs15\":false,\"searchNs100\":false,\"searchNs101\":false,\"searchNs108\":false,\"searchNs109\":false,\"gadget-teahouse\":1,\"gadget-ReferenceTooltips\":1,\"gadget-DRN-wizard\":1,\"gadget-mySandbox\":1});;},{},{});mw.loader.implement(\"user.tokens\",function(){mw.user.tokens.set({\"editToken\":\"+\\\\\",\n\"watchToken\":false});;},{},{});\n\n/* cache key: enwiki:resourceloader:filter:minify-js:7:81f7c0502e347822f14be81f96ff03ab */\n}</script>\n<script type=\"text/javascript\">if(window.mw){\nmw.loader.load([\"mediawiki.page.startup\",\"mediawiki.legacy.wikibits\",\"mediawiki.legacy.ajax\",\"ext.wikimediaShopLink.core\"]);\n}</script>\n<!--[if lt IE 7]><style type=\"text/css\">body{behavior:url(\"/w/skins-1.20wmf9/vector/csshover.min.htc\")}</style><![endif]--></head>\n<body class=\"mediawiki ltr sitedir-ltr ns-0 ns-subject page-UTF-8 skin-vector action-view vector-animateLayout\">\n\t\t<div id=\"mw-page-base\" class=\"noprint\"></div>\n\t\t<div id=\"mw-head-base\" class=\"noprint\"></div>\n\t\t<!-- content -->\n\t\t<div id=\"content\" class=\"mw-body\">\n\t\t\t<a id=\"top\"></a>\n\t\t\t<div id=\"mw-js-message\" style=\"display:none;\"></div>\n\t\t\t\t\t\t<!-- sitenotice -->\n\t\t\t<div id=\"siteNotice\"><!-- centralNotice loads here --></div>\n\t\t\t<!-- /sitenotice -->\n\t\t\t\t\t\t<!-- firstHeading -->\n\t\t\t<h1 id=\"firstHeading\" class=\"firstHeading\"><span dir=\"auto\">UTF-8</span></h1>\n\t\t\t<!-- /firstHeading -->\n\t\t\t<!-- bodyContent -->\n\t\t\t<div id=\"bodyContent\">\n\t\t\t\t\t\t\t\t<!-- tagline -->\n\t\t\t\t<div id=\"siteSub\">From Wikipedia, the free encyclopedia</div>\n\t\t\t\t<!-- /tagline -->\n\t\t\t\t\t\t\t\t<!-- subtitle -->\n\t\t\t\t<div id=\"contentSub\"></div>\n\t\t\t\t<!-- /subtitle -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- jumpto -->\n\t\t\t\t<div id=\"jump-to-nav\" class=\"mw-jump\">\n\t\t\t\t\tJump to:\t\t\t\t\t<a href=\"#mw-head\">navigation</a>, \t\t\t\t\t<a href=\"#p-search\">search</a>\n\t\t\t\t</div>\n\t\t\t\t<!-- /jumpto -->\n\t\t\t\t\t\t\t\t<!-- bodycontent -->\n\t\t\t\t<div id=\"mw-content-text\" lang=\"en\" dir=\"ltr\" class=\"mw-content-ltr\"><div style=\"display:none;\" class=\"pef-notification-container\">\n\t<div class=\"pef-notification\">\n\t\t<div class=\"pef-notification-checkmark\">&nbsp;</div>\n\t\t<span></span>\n\t</div>\n</div><p><b>UTF-8</b> (<b><a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">UCS</a> Transformation Format—8-bit</b><sup id=\"cite_ref-0\" class=\"reference\"><a href=\"#cite_note-0\"><span>[</span>1<span>]</span></a></sup>) is a <a href=\"/wiki/Variable-width_encoding\" title=\"Variable-width encoding\">variable-width encoding</a> that can represent every <a href=\"/wiki/Character_(computing)\" title=\"Character (computing)\">character</a> in the <a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> character set. It was designed for <a href=\"/wiki/Backward_compatibility\" title=\"Backward compatibility\">backward compatibility</a> with <a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a> and to avoid the complications of <a href=\"/wiki/Endianness\" title=\"Endianness\">endianness</a> and <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order marks</a> in <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> and <a href=\"/wiki/UTF-32\" title=\"UTF-32\">UTF-32</a>.</p>\n<p>UTF-8 has become the dominant character encoding for the <a href=\"/wiki/World-Wide_Web\" title=\"World-Wide Web\" class=\"mw-redirect\">World-Wide Web</a>, accounting for more than half of all Web pages.<sup id=\"cite_ref-1\" class=\"reference\"><a href=\"#cite_note-1\"><span>[</span>2<span>]</span></a></sup><sup id=\"cite_ref-BuiltWith_2-0\" class=\"reference\"><a href=\"#cite_note-BuiltWith-2\"><span>[</span>3<span>]</span></a></sup><sup id=\"cite_ref-W3Techs_3-0\" class=\"reference\"><a href=\"#cite_note-W3Techs-3\"><span>[</span>4<span>]</span></a></sup> The <a href=\"/wiki/Internet_Engineering_Task_Force\" title=\"Internet Engineering Task Force\">Internet Engineering Task Force</a> (IETF) requires all <a href=\"/wiki/Internet\" title=\"Internet\">Internet</a> <a href=\"/wiki/Protocol_(computing)\" title=\"Protocol (computing)\" class=\"mw-redirect\">protocols</a> to identify the <a href=\"/wiki/Character_encoding\" title=\"Character encoding\">encoding</a> used for character data, and the supported character encodings must include UTF-8.<sup id=\"cite_ref-rfc2277_4-0\" class=\"reference\"><a href=\"#cite_note-rfc2277-4\"><span>[</span>5<span>]</span></a></sup> The <a href=\"/wiki/Internet_Mail_Consortium\" title=\"Internet Mail Consortium\">Internet Mail Consortium</a> (IMC) recommends that all e-mail programs be able to display and create mail using UTF-8.<sup id=\"cite_ref-IMC_5-0\" class=\"reference\"><a href=\"#cite_note-IMC-5\"><span>[</span>6<span>]</span></a></sup> UTF-8 is also increasingly being used as the default character encoding in <a href=\"/wiki/Operating_systems\" title=\"Operating systems\" class=\"mw-redirect\">operating systems</a>, <a href=\"/wiki/Programming_languages\" title=\"Programming languages\" class=\"mw-redirect\">programming languages</a>, <a href=\"/wiki/Application_programming_interface\" title=\"Application programming interface\">APIs</a>, and <a href=\"/wiki/Application_software\" title=\"Application software\">software applications</a>.<sup class=\"Template-Fact\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Citation_needed\" title=\"Wikipedia:Citation needed\"><span title=\"This claim needs references to reliable sources from December 2011\">citation needed</span></a></i>]</sup></p>\n<p>UTF-8 encodes each of the 1,112,064<sup id=\"cite_ref-6\" class=\"reference\"><a href=\"#cite_note-6\"><span>[</span>7<span>]</span></a></sup> <a href=\"/wiki/Code_point\" title=\"Code point\">code points</a> in the Unicode character set using one to four 8-bit <a href=\"/wiki/Byte\" title=\"Byte\">bytes</a> (termed \"<a href=\"/wiki/Octet_(computing)\" title=\"Octet (computing)\">octets</a>\" in the Unicode Standard). Code points with lower numerical values (i.e. earlier code positions in the Unicode character set, which tend to occur more frequently in practice) are encoded using fewer bytes.<sup id=\"cite_ref-7\" class=\"reference\"><a href=\"#cite_note-7\"><span>[</span>8<span>]</span></a></sup> The first 128 characters of Unicode, which correspond one-to-one with <a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a>, are encoded using a single octet with the same binary value as ASCII, making valid ASCII text valid UTF-8-encoded Unicode as well.</p>\n<p>The official <a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">IANA</a> code for the UTF-8 character encoding is <code>UTF-8</code>.<sup id=\"cite_ref-8\" class=\"reference\"><a href=\"#cite_note-8\"><span>[</span>9<span>]</span></a></sup></p>\n<table id=\"toc\" class=\"toc\">\n<tr>\n<td>\n<div id=\"toctitle\">\n<h2>Contents</h2>\n</div>\n<ul>\n<li class=\"toclevel-1 tocsection-1\"><a href=\"#History\"><span class=\"tocnumber\">1</span> <span class=\"toctext\">History</span></a></li>\n<li class=\"toclevel-1 tocsection-2\"><a href=\"#Description\"><span class=\"tocnumber\">2</span> <span class=\"toctext\">Description</span></a>\n<ul>\n<li class=\"toclevel-2 tocsection-3\"><a href=\"#Examples\"><span class=\"tocnumber\">2.1</span> <span class=\"toctext\">Examples</span></a></li>\n<li class=\"toclevel-2 tocsection-4\"><a href=\"#Overlong_encodings\"><span class=\"tocnumber\">2.2</span> <span class=\"toctext\">Overlong encodings</span></a></li>\n<li class=\"toclevel-2 tocsection-5\"><a href=\"#Codepage_layout\"><span class=\"tocnumber\">2.3</span> <span class=\"toctext\">Codepage layout</span></a></li>\n<li class=\"toclevel-2 tocsection-6\"><a href=\"#Invalid_byte_sequences\"><span class=\"tocnumber\">2.4</span> <span class=\"toctext\">Invalid byte sequences</span></a></li>\n<li class=\"toclevel-2 tocsection-7\"><a href=\"#Invalid_code_points\"><span class=\"tocnumber\">2.5</span> <span class=\"toctext\">Invalid code points</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-1 tocsection-8\"><a href=\"#Official_name_and_variants\"><span class=\"tocnumber\">3</span> <span class=\"toctext\">Official name and variants</span></a></li>\n<li class=\"toclevel-1 tocsection-9\"><a href=\"#Derivatives\"><span class=\"tocnumber\">4</span> <span class=\"toctext\">Derivatives</span></a>\n<ul>\n<li class=\"toclevel-2 tocsection-10\"><a href=\"#CESU-8\"><span class=\"tocnumber\">4.1</span> <span class=\"toctext\">CESU-8</span></a></li>\n<li class=\"toclevel-2 tocsection-11\"><a href=\"#Modified_UTF-8\"><span class=\"tocnumber\">4.2</span> <span class=\"toctext\">Modified UTF-8</span></a></li>\n<li class=\"toclevel-2 tocsection-12\"><a href=\"#Extending_from_31_bit_to_36_bit_range\"><span class=\"tocnumber\">4.3</span> <span class=\"toctext\">Extending from 31 bit to 36 bit range</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-1 tocsection-13\"><a href=\"#Byte_order_mark\"><span class=\"tocnumber\">5</span> <span class=\"toctext\">Byte order mark</span></a></li>\n<li class=\"toclevel-1 tocsection-14\"><a href=\"#Advantages_and_disadvantages\"><span class=\"tocnumber\">6</span> <span class=\"toctext\">Advantages and disadvantages</span></a>\n<ul>\n<li class=\"toclevel-2 tocsection-15\"><a href=\"#General\"><span class=\"tocnumber\">6.1</span> <span class=\"toctext\">General</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-16\"><a href=\"#Advantages\"><span class=\"tocnumber\">6.1.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-17\"><a href=\"#Disadvantages\"><span class=\"tocnumber\">6.1.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-2 tocsection-18\"><a href=\"#Compared_to_single-byte_encodings\"><span class=\"tocnumber\">6.2</span> <span class=\"toctext\">Compared to single-byte encodings</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-19\"><a href=\"#Advantages_2\"><span class=\"tocnumber\">6.2.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-20\"><a href=\"#Disadvantages_2\"><span class=\"tocnumber\">6.2.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-2 tocsection-21\"><a href=\"#Compared_to_other_multi-byte_encodings\"><span class=\"tocnumber\">6.3</span> <span class=\"toctext\">Compared to other multi-byte encodings</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-22\"><a href=\"#Advantages_3\"><span class=\"tocnumber\">6.3.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-23\"><a href=\"#Disadvantages_3\"><span class=\"tocnumber\">6.3.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n<li class=\"toclevel-2 tocsection-24\"><a href=\"#Compared_to_UTF-16\"><span class=\"tocnumber\">6.4</span> <span class=\"toctext\">Compared to UTF-16</span></a>\n<ul>\n<li class=\"toclevel-3 tocsection-25\"><a href=\"#Advantages_4\"><span class=\"tocnumber\">6.4.1</span> <span class=\"toctext\">Advantages</span></a></li>\n<li class=\"toclevel-3 tocsection-26\"><a href=\"#Disadvantages_4\"><span class=\"tocnumber\">6.4.2</span> <span class=\"toctext\">Disadvantages</span></a></li>\n</ul>\n</li>\n</ul>\n</li>\n<li class=\"toclevel-1 tocsection-27\"><a href=\"#See_also\"><span class=\"tocnumber\">7</span> <span class=\"toctext\">See also</span></a></li>\n<li class=\"toclevel-1 tocsection-28\"><a href=\"#References\"><span class=\"tocnumber\">8</span> <span class=\"toctext\">References</span></a></li>\n<li class=\"toclevel-1 tocsection-29\"><a href=\"#External_links\"><span class=\"tocnumber\">9</span> <span class=\"toctext\">External links</span></a></li>\n</ul>\n</td>\n</tr>\n</table>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=1\" title=\"Edit section: History\">edit</a>]</span> <span class=\"mw-headline\" id=\"History\">History</span></h2>\n<p>By early 1992 the search was on for a good byte-stream encoding of multi-byte character sets. The draft <a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">ISO 10646</a> standard contained a non-required <a href=\"/wiki/Addendum\" title=\"Addendum\">annex</a> called <a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a> that provided a byte-stream encoding of its 32-bit code points. This encoding was not satisfactory on performance grounds, but did introduce the notion that bytes in the range of 0–127 continue representing the ASCII characters in UTF, thereby providing backward compatibility with ASCII.</p>\n<p>In July 1992, the <a href=\"/wiki/X/Open\" title=\"X/Open\">X/Open</a> committee XoJIG was looking for a better encoding. Dave Prosser of <a href=\"/wiki/Unix_System_Laboratories\" title=\"Unix System Laboratories\">Unix System Laboratories</a> submitted a proposal for one that had faster implementation characteristics and introduced the improvement that 7-bit ASCII characters would <i>only</i> represent themselves; all multibyte sequences would include only bytes where the high bit was set.</p>\n<p>In August 1992, this proposal was circulated by an <a href=\"/wiki/IBM\" title=\"IBM\">IBM</a> X/Open representative to interested parties. <a href=\"/wiki/Ken_Thompson\" title=\"Ken Thompson\">Ken Thompson</a> of the <a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9</a> <a href=\"/wiki/Operating_system\" title=\"Operating system\">operating system</a> group at <a href=\"/wiki/Bell_Labs\" title=\"Bell Labs\">Bell Labs</a> then made a crucial modification to the encoding to allow it to be self-synchronizing, meaning that it was not necessary to read from the beginning of the string to find code point boundaries. Thompson's design was outlined on September 2, 1992, on a placemat in a New Jersey diner with <a href=\"/wiki/Rob_Pike\" title=\"Rob Pike\">Rob Pike</a>. The following days, Pike and Thompson implemented it and updated <a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9</a> to use it throughout, and then communicated their success back to X/Open.<sup id=\"cite_ref-9\" class=\"reference\"><a href=\"#cite_note-9\"><span>[</span>10<span>]</span></a></sup></p>\n<p>UTF-8 was first officially presented at the <a href=\"/wiki/USENIX\" title=\"USENIX\">USENIX</a> conference in <a href=\"/wiki/San_Diego\" title=\"San Diego\">San Diego</a>, from January 25–29, 1993.</p>\n<p>In November 2003 UTF-8 was restricted by <a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> to four bytes in order to match the constraints of the <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> character encoding.</p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=2\" title=\"Edit section: Description\">edit</a>]</span> <span class=\"mw-headline\" id=\"Description\">Description</span></h2>\n<p>The design of UTF‑8 is most easily seen in the table of the scheme as originally proposed by Dave Prosser and subsequently modified by Ken Thompson (the <code>x</code>'s are replaced by the bits of the code point):</p>\n<table class=\"wikitable\">\n<tr>\n<th>Bits</th>\n<th>Last code point</th>\n<th>Byte 1</th>\n<th>Byte 2</th>\n<th>Byte 3</th>\n<th>Byte 4</th>\n<th>Byte 5</th>\n<th>Byte 6</th>\n</tr>\n<tr>\n<th>&#160;&#160;7</th>\n<td>U+007F</td>\n<td><code>0xxxxxxx</code></td>\n</tr>\n<tr>\n<th>11</th>\n<td>U+07FF</td>\n<td><code>110xxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>16</th>\n<td>U+FFFF</td>\n<td><code>1110xxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>21</th>\n<td>U+1FFFFF</td>\n<td><code>11110xxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>26</th>\n<td>U+3FFFFFF</td>\n<td><code>111110xx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n<tr>\n<th>31</th>\n<td>U+7FFFFFFF</td>\n<td><code>1111110x</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n<td><code>10xxxxxx</code></td>\n</tr>\n</table>\n<p>The salient features of the above scheme are as follows:</p>\n<ol>\n<li>One-byte codes are used only for the ASCII values 0 through 127. In this case the UTF-8 code has the same value as the ASCII code. The high-order bit of these codes is always 0.</li>\n<li>Codepoints larger than 127 are represented by multi-byte sequences, composed of a <i>leading byte</i> and one or more <i>continuation bytes</i>. The leading byte has two or more high-order 1s followed by a 0, while continuation bytes all have '10' in the high-order position.</li>\n<li>The remaining bits of the encoding are used for the bits of the codepoint being encoded, padded with high-order 0s if necessary. The number of bytes in the encoding is the minimum required to hold all the significant bits of the codepoint.</li>\n<li>The number of high-order 1s in the leading byte of a multi-byte sequence indicates the number of bytes in the sequence, so that the length of the sequence can be determined without examining the continuation bytes.</li>\n<li>Single bytes, leading bytes, and continuation bytes do not share values. This makes the scheme \"self synchronizing\", allowing the start of a character to be found by backing up at most five bytes (three bytes in actual UTF‑8 as explained below).</li>\n</ol>\n<p>The first 128 characters (US-ASCII) need one byte. The next 1,920 characters need two bytes to encode. This covers the remainder of almost all <a href=\"/wiki/Latin-derived_alphabet\" title=\"Latin-derived alphabet\">Latin-derived alphabets</a>, and also <a href=\"/wiki/Greek_alphabet\" title=\"Greek alphabet\">Greek</a>, <a href=\"/wiki/Cyrillic_script\" title=\"Cyrillic script\">Cyrillic</a>, <a href=\"/wiki/Coptic_alphabet\" title=\"Coptic alphabet\">Coptic</a>, <a href=\"/wiki/Armenian_alphabet\" title=\"Armenian alphabet\">Armenian</a>, <a href=\"/wiki/Hebrew_alphabet\" title=\"Hebrew alphabet\">Hebrew</a>, <a href=\"/wiki/Arabic_alphabet\" title=\"Arabic alphabet\">Arabic</a>, <a href=\"/wiki/Syriac_alphabet\" title=\"Syriac alphabet\">Syriac</a> and <a href=\"/wiki/T%C4%81na\" title=\"Tāna\" class=\"mw-redirect\">Tāna</a> alphabets, as well as <a href=\"/wiki/Combining_Diacritical_Marks\" title=\"Combining Diacritical Marks\" class=\"mw-redirect\">Combining Diacritical Marks</a>. Three bytes are needed for characters in the rest of the <a href=\"/wiki/Mapping_of_Unicode_character_planes\" title=\"Mapping of Unicode character planes\" class=\"mw-redirect\">Basic Multilingual Plane</a> (which contains virtually all characters in common use). Four bytes are needed for characters in the <a href=\"/wiki/Mapping_of_Unicode_characters\" title=\"Mapping of Unicode characters\">other planes of Unicode</a>, which include less common <a href=\"/wiki/CJK_characters\" title=\"CJK characters\">CJK characters</a> and various historic scripts and mathematical symbols.</p>\n<p>The original specification covered numbers up to 31 bits (the original limit of the <a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">Universal Character Set</a>). In November 2003 UTF-8 was restricted by <a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> to end at U+<code>10FFFF</code>, in order to match the constraints of the <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> character encoding. This removed all 5- and 6-byte sequences, and about half of the 4-byte sequences.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=3\" title=\"Edit section: Examples\">edit</a>]</span> <span class=\"mw-headline\" id=\"Examples\">Examples</span></h3>\n<p>Let us consider how to encode the <a href=\"/wiki/Euro_sign\" title=\"Euro sign\">Euro sign</a>, €.</p>\n<ol>\n<li>The Unicode code point for \"€\" is U+20AC.</li>\n<li>According to the scheme table above, this will take three bytes to encode, as it is between U+07FF and U+FFFF.</li>\n<li>Hexadecimal <b><code>20AC</code></b> is binary <b><code>0010000010101100</code></b>. The two leading zeros are added because, as the scheme table shows, a three-byte encoding needs <i>exactly</i> sixteen bits from the code point.</li>\n<li>Because it is a three-byte encoding, the leading byte starts with three 1s, then a 0 (<b><code>1110</code></b>...)</li>\n<li>The remaining bits of this byte are taken from the code point (<b><code>1110<span style=\"color:blue;\">0010</span></code></b>), leaving ...<b><code>000010101100</code></b>.</li>\n<li>Each of the continuation bytes starts with <b><code>10</code></b> and takes six bits of the code point (so <b><code>10<span style=\"color:green;\">000010</span></code></b>, then <b><code>10<span style=\"color:red;\">101100</span></code></b>).</li>\n</ol>\n<p>The three bytes <b><code>1110<span style=\"color:blue;\">0010</span></code></b> <b><code>10<span style=\"color:green;\">000010</span></code></b> <b><code>10<span style=\"color:red;\">101100</span></code></b> can be more concisely written in hexadecimal, as <b><code><span style=\"color:blue;\">E2</span> <span style=\"color:green;\">82</span> <span style=\"color:red;\">AC</span></code></b>.</p>\n<p>The following table summarises this conversion, as well as others with different lengths in UTF-8. The colors indicate how bits from the code point are distributed among the UTF-8 bytes. Additional bits added by the UTF-8 encoding process are shown in black.</p>\n<table class=\"wikitable\" style=\"font-weight: bold\">\n<tr>\n<th colspan=\"2\">Character</th>\n<th>Binary code point</th>\n<th>Binary UTF-8</th>\n<th>Hexadecimal UTF-8</th>\n</tr>\n<tr>\n<td><a href=\"/wiki/$\" title=\"$\" class=\"mw-redirect\">$</a></td>\n<td><code>U+0024</code></td>\n<td align=\"right\"><code><span style=\"color:red;\">0100100</span></code></td>\n<td align=\"right\"><code>0<span style=\"color:red;\">0100100</span></code></td>\n<td align=\"right\"><code><span style=\"color:red;\">24</span></code></td>\n</tr>\n<tr>\n<td><a href=\"/wiki/%C2%A2\" title=\"¢\" class=\"mw-redirect\">¢</a></td>\n<td><code>U+00A2</code></td>\n<td align=\"right\"><code><span style=\"color:green;\">00010</span><span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code>110<span style=\"color:green;\">00010</span> 10<span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code><span style=\"color:green;\">C2</span> <span style=\"color:red;\">A2</span></code></td>\n</tr>\n<tr>\n<td><a href=\"/wiki/%E2%82%AC\" title=\"€\" class=\"mw-redirect\">€</a></td>\n<td><code>U+20AC</code></td>\n<td align=\"right\"><code><span style=\"color:blue;\">0010</span><span style=\"color:green;\">000010</span><span style=\"color:red;\">101100</span></code></td>\n<td align=\"right\"><code>1110<span style=\"color:blue;\">0010</span> 10<span style=\"color:green;\">000010</span> 10<span style=\"color:red;\">101100</span></code></td>\n<td align=\"right\"><code><span style=\"color:blue;\">E2</span> <span style=\"color:green;\">82</span> <span style=\"color:red;\">AC</span></code></td>\n</tr>\n<tr>\n<td><a href=\"/wiki/Chinese_character\" title=\"Chinese character\" class=\"mw-redirect\">𤭢</a></td>\n<td><code>U+24B62</code></td>\n<td align=\"right\"><code><span style=\"color:#C000C0;\">000</span><span style=\"color:blue;\">100100</span><span style=\"color:green;\">101101</span><span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code>11110<span style=\"color:#C000C0;\">000</span> 10<span style=\"color:blue;\">100100</span> 10<span style=\"color:green;\">101101</span> 10<span style=\"color:red;\">100010</span></code></td>\n<td align=\"right\"><code><span style=\"color:#C000C0;\">F0</span> <span style=\"color:blue;\">A4</span> <span style=\"color:green;\">AD</span> <span style=\"color:red;\">A2</span></code></td>\n</tr>\n</table>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=4\" title=\"Edit section: Overlong encodings\">edit</a>]</span> <span class=\"mw-headline\" id=\"Overlong_encodings\">Overlong encodings</span></h3>\n<p>The standard specifies that the correct encoding of a codepoint use only the minimum number of bytes required to hold the significant bits of the codepoint. Longer encodings are called <i>overlong</i> and are not valid UTF-8 representations of the codepoint. This rule maintains a one-to-one correspondence between codepoints and their valid encodings, so that there is a unique valid encoding for each codepoint. Allowing multiple encodings would make testing for string equality difficult to define.</p>\n<p>In principle, it would be possible to inflate the number of bytes in an encoding by padding the codepoint with leading 0s. To encode the Euro sign € from the above example in four bytes instead of three, it could be padded with leading 0s until it was 21 bits long—<b><code>000000010000010101100</code></b>. The leading byte prefix for a four-byte encoding is <b><code>11110</code></b>, and so the complete, overlong encoding is <b><code>11110<span style=\"color:#C000C0;\">000</span></code></b> <b><code>10<span style=\"color:blue;\">000010</span></code></b> <b><code>10<span style=\"color:green;\">000010</span></code></b> <b><code>10<span style=\"color:red;\">101100</span></code></b> (or <b><code><span style=\"color:#C000C0;\">F0</span></code></b> <b><code><span style=\"color:blue;\">82</span></code></b> <b><code><span style=\"color:green;\">82</span></code></b> <b><code><span style=\"color:red;\">AC</span></code></b> in hexadecimal).</p>\n<p>Although overlong encodings are forbidden in UTF-8, at least one derivative makes use of the form. <a href=\"#Modified_UTF-8\">Modified UTF-8</a> requires the Unicode codepoint U+0000 (the NUL character) to be encoded in the overlong form <b><code>110<span style=\"color:green;\">00000</span></code></b> <b><code>10<span style=\"color:red;\">000000</span></code></b> (hex <b><code><span style=\"color:green;\">C0</span></code></b> <b><code><span style=\"color:red;\">80</span></code></b>), rather than <b><code>00000000</code></b> (hex <b><code>00</code></b>). This allows the byte <b><code>00</code></b> to be used as a <a href=\"/wiki/Null-terminated_string\" title=\"Null-terminated string\">string terminator</a>.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=5\" title=\"Edit section: Codepage layout\">edit</a>]</span> <span class=\"mw-headline\" id=\"Codepage_layout\">Codepage layout</span></h3>\n<table class=\"wikitable chset nounderlines\" frame=\"box\" width=\"100%\" style=\"text-align: center; font-family: monospace; border-collapse: collapse\">\n<tr>\n<th colspan=\"17\"><b>UTF-8</b></th>\n</tr>\n<tr>\n<td width=\"4%\"></td>\n<th width=\"6%\">_0</th>\n<th width=\"6%\">_1</th>\n<th width=\"6%\">_2</th>\n<th width=\"6%\">_3</th>\n<th width=\"6%\">_4</th>\n<th width=\"6%\">_5</th>\n<th width=\"6%\">_6</th>\n<th width=\"6%\">_7</th>\n<th width=\"6%\">_8</th>\n<th width=\"6%\">_9</th>\n<th width=\"6%\">_A</th>\n<th width=\"6%\">_B</th>\n<th width=\"6%\">_C</th>\n<th width=\"6%\">_D</th>\n<th width=\"6%\">_E</th>\n<th width=\"6%\">_F</th>\n</tr>\n<tr>\n<th>&#160;<br />\n0_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Null_character\" title=\"Null character\">NUL</a></small><br />\n<small>0000</small><br />\n<i><b>0</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Start_of_heading\" title=\"Start of heading\" class=\"mw-redirect\">SOH</a></small><br />\n<small>0001</small><br />\n<i><b>1</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Start_of_text\" title=\"Start of text\" class=\"mw-redirect\">STX</a></small><br />\n<small>0002</small><br />\n<i><b>2</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_text\" title=\"End of text\" class=\"mw-redirect\">ETX</a></small><br />\n<small>0003</small><br />\n<i><b>3</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_transmission_character\" title=\"End of transmission character\" class=\"mw-redirect\">EOT</a></small><br />\n<small>0004</small><br />\n<i><b>4</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Enquiry_character\" title=\"Enquiry character\">ENQ</a></small><br />\n<small>0005</small><br />\n<i><b>5</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Acknowledge_character\" title=\"Acknowledge character\">ACK</a></small><br />\n<small>0006</small><br />\n<i><b>6</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Bell_character\" title=\"Bell character\">BEL</a></small><br />\n<small>0007</small><br />\n<i><b>7</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Backspace\" title=\"Backspace\">BS</a></small><br />\n<small>0008</small><br />\n<i><b>8</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Tab_key\" title=\"Tab key\">HT</a></small><br />\n<small>0009</small><br />\n<i><b>9</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Line_feed\" title=\"Line feed\" class=\"mw-redirect\">LF</a></small><br />\n<small>000A</small><br />\n<i><b>10</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Vertical_tab\" title=\"Vertical tab\" class=\"mw-redirect\">VT</a></small><br />\n<small>000B</small><br />\n<i><b>11</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Form_feed\" title=\"Form feed\" class=\"mw-redirect\">FF</a></small><br />\n<small>000C</small><br />\n<i><b>12</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Carriage_return\" title=\"Carriage return\">CR</a></small><br />\n<small>000D</small><br />\n<i><b>13</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Shift_out\" title=\"Shift out\" class=\"mw-redirect\">SO</a></small><br />\n<small>000E</small><br />\n<i><b>14</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Shift_in\" title=\"Shift in\" class=\"mw-redirect\">SI</a></small><br />\n<small>000F</small><br />\n<i><b>15</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n1_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Data_link_escape\" title=\"Data link escape\" class=\"mw-redirect\">DLE</a></small><br />\n<small>0010</small><br />\n<i><b>16</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_1\" title=\"Device Control 1\" class=\"mw-redirect\">DC1</a></small><br />\n<small>0011</small><br />\n<i><b>17</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_2\" title=\"Device Control 2\" class=\"mw-redirect\">DC2</a></small><br />\n<small>0012</small><br />\n<i><b>18</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_3\" title=\"Device Control 3\" class=\"mw-redirect\">DC3</a></small><br />\n<small>0013</small><br />\n<i><b>19</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Device_Control_4\" title=\"Device Control 4\" class=\"mw-redirect\">DC4</a></small><br />\n<small>0014</small><br />\n<i><b>20</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Negative_acknowledge_character\" title=\"Negative acknowledge character\" class=\"mw-redirect\">NAK</a></small><br />\n<small>0015</small><br />\n<i><b>21</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Synchronous_idle\" title=\"Synchronous idle\">SYN</a></small><br />\n<small>0016</small><br />\n<i><b>22</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_transmission_block\" title=\"End of transmission block\" class=\"mw-redirect\">ETB</a></small><br />\n<small>0017</small><br />\n<i><b>23</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Cancel_character\" title=\"Cancel character\">CAN</a></small><br />\n<small>0018</small><br />\n<i><b>24</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/End_of_medium\" title=\"End of medium\" class=\"mw-redirect\">EM</a></small><br />\n<small>0019</small><br />\n<i><b>25</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Substitute_character\" title=\"Substitute character\">SUB</a></small><br />\n<small>001A</small><br />\n<i><b>26</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Escape_character\" title=\"Escape character\">ESC</a></small><br />\n<small>001B</small><br />\n<i><b>27</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/File_separator\" title=\"File separator\" class=\"mw-redirect\">FS</a></small><br />\n<small>001C</small><br />\n<i><b>28</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Group_separator\" title=\"Group separator\" class=\"mw-redirect\">GS</a></small><br />\n<small>001D</small><br />\n<i><b>29</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Record_separator\" title=\"Record separator\" class=\"mw-redirect\">RS</a></small><br />\n<small>001E</small><br />\n<i><b>30</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Unit_separator\" title=\"Unit separator\" class=\"mw-redirect\">US</a></small><br />\n<small>001F</small><br />\n<i><b>31</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n2_<br />\n&#160;</th>\n<td style=\"background:#DFF7FF;\"><small><a href=\"/wiki/Space_character\" title=\"Space character\" class=\"mw-redirect\">SP</a></small><br />\n<small>0020</small><br />\n<i><b>32</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Exclamation_mark\" title=\"Exclamation mark\">!</a></span><br />\n<small>0021</small><br />\n<i><b>33</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Quotation_mark\" title=\"Quotation mark\">\"</a></span><br />\n<small>0022</small><br />\n<i><b>34</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Number_sign\" title=\"Number sign\">#</a></span><br />\n<small>0023</small><br />\n<i><b>35</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Dollar_sign\" title=\"Dollar sign\">$</a></span><br />\n<small>0024</small><br />\n<i><b>36</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Percent_sign\" title=\"Percent sign\">%</a></span><br />\n<small>0025</small><br />\n<i><b>37</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Ampersand\" title=\"Ampersand\">&amp;</a></span><br />\n<small>0026</small><br />\n<i><b>38</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Apostrophe\" title=\"Apostrophe\">'</a></span><br />\n<small>0027</small><br />\n<i><b>39</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Bracket\" title=\"Bracket\">(</a></span><br />\n<small>0028</small><br />\n<i><b>40</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Bracket\" title=\"Bracket\">)</a></span><br />\n<small>0029</small><br />\n<i><b>41</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Asterisk\" title=\"Asterisk\">*</a></span><br />\n<small>002A</small><br />\n<i><b>42</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Plus_and_minus_signs\" title=\"Plus and minus signs\">+</a></span><br />\n<small>002B</small><br />\n<i><b>43</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Comma_(punctuation)\" title=\"Comma (punctuation)\" class=\"mw-redirect\">,</a></span><br />\n<small>002C</small><br />\n<i><b>44</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Plus_and_minus_signs\" title=\"Plus and minus signs\">-</a></span><br />\n<small>002D</small><br />\n<i><b>45</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Full_stop\" title=\"Full stop\">.</a></span><br />\n<small>002E</small><br />\n<i><b>46</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Slash_(punctuation)\" title=\"Slash (punctuation)\">/</a></span><br />\n<small>002F</small><br />\n<i><b>47</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n3_<br />\n&#160;</th>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/0_(number)\" title=\"0 (number)\">0</a></span><br />\n<small>0030</small><br />\n<i><b>48</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/1_(number)\" title=\"1 (number)\">1</a></span><br />\n<small>0031</small><br />\n<i><b>49</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/2_(number)\" title=\"2 (number)\">2</a></span><br />\n<small>0032</small><br />\n<i><b>50</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/3_(number)\" title=\"3 (number)\">3</a></span><br />\n<small>0033</small><br />\n<i><b>51</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/4_(number)\" title=\"4 (number)\">4</a></span><br />\n<small>0034</small><br />\n<i><b>52</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/5_(number)\" title=\"5 (number)\">5</a></span><br />\n<small>0035</small><br />\n<i><b>53</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/6_(number)\" title=\"6 (number)\">6</a></span><br />\n<small>0036</small><br />\n<i><b>54</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/7_(number)\" title=\"7 (number)\">7</a></span><br />\n<small>0037</small><br />\n<i><b>55</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/8_(number)\" title=\"8 (number)\">8</a></span><br />\n<small>0038</small><br />\n<i><b>56</b></i></td>\n<td style=\"background:#F7E7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/9_(number)\" title=\"9 (number)\">9</a></span><br />\n<small>0039</small><br />\n<i><b>57</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Colon_(punctuation)\" title=\"Colon (punctuation)\">:</a></span><br />\n<small>003A</small><br />\n<i><b>58</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Semicolon\" title=\"Semicolon\">;</a></span><br />\n<small>003B</small><br />\n<i><b>59</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Angle_bracket\" title=\"Angle bracket\" class=\"mw-redirect\">&lt;</a></span><br />\n<small>003C</small><br />\n<i><b>60</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Equal_sign\" title=\"Equal sign\" class=\"mw-redirect\">=</a></span><br />\n<small>003D</small><br />\n<i><b>61</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Angle_bracket\" title=\"Angle bracket\" class=\"mw-redirect\">&gt;</a></span><br />\n<small>003E</small><br />\n<i><b>62</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Question_mark\" title=\"Question mark\">?</a></span><br />\n<small>003F</small><br />\n<i><b>63</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n4_<br />\n&#160;</th>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/@\" title=\"@\" class=\"mw-redirect\">@</a></span><br />\n<small>0040</small><br />\n<i><b>64</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/A\" title=\"A\">A</a></span><br />\n<small>0041</small><br />\n<i><b>65</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/B\" title=\"B\">B</a></span><br />\n<small>0042</small><br />\n<i><b>66</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/C\" title=\"C\">C</a></span><br />\n<small>0043</small><br />\n<i><b>67</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/D\" title=\"D\">D</a></span><br />\n<small>0044</small><br />\n<i><b>68</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/E\" title=\"E\">E</a></span><br />\n<small>0045</small><br />\n<i><b>69</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/F\" title=\"F\">F</a></span><br />\n<small>0046</small><br />\n<i><b>70</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/G\" title=\"G\">G</a></span><br />\n<small>0047</small><br />\n<i><b>71</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/H\" title=\"H\">H</a></span><br />\n<small>0048</small><br />\n<i><b>72</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/I\" title=\"I\">I</a></span><br />\n<small>0049</small><br />\n<i><b>73</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/J\" title=\"J\">J</a></span><br />\n<small>004A</small><br />\n<i><b>74</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/K\" title=\"K\">K</a></span><br />\n<small>004B</small><br />\n<i><b>75</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/L\" title=\"L\">L</a></span><br />\n<small>004C</small><br />\n<i><b>76</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/M\" title=\"M\">M</a></span><br />\n<small>004D</small><br />\n<i><b>77</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/N\" title=\"N\">N</a></span><br />\n<small>004E</small><br />\n<i><b>78</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/O\" title=\"O\">O</a></span><br />\n<small>004F</small><br />\n<i><b>79</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n5_<br />\n&#160;</th>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/P\" title=\"P\">P</a></span><br />\n<small>0050</small><br />\n<i><b>80</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Q\" title=\"Q\">Q</a></span><br />\n<small>0051</small><br />\n<i><b>81</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/R\" title=\"R\">R</a></span><br />\n<small>0052</small><br />\n<i><b>82</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/S\" title=\"S\">S</a></span><br />\n<small>0053</small><br />\n<i><b>83</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/T\" title=\"T\">T</a></span><br />\n<small>0054</small><br />\n<i><b>84</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/U\" title=\"U\">U</a></span><br />\n<small>0055</small><br />\n<i><b>85</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/V\" title=\"V\">V</a></span><br />\n<small>0056</small><br />\n<i><b>86</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/W\" title=\"W\">W</a></span><br />\n<small>0057</small><br />\n<i><b>87</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/X\" title=\"X\">X</a></span><br />\n<small>0058</small><br />\n<i><b>88</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Y\" title=\"Y\">Y</a></span><br />\n<small>0059</small><br />\n<i><b>89</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Z\" title=\"Z\">Z</a></span><br />\n<small>005A</small><br />\n<i><b>90</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Square_brackets\" title=\"Square brackets\" class=\"mw-redirect\">[</a></span><br />\n<small>005B</small><br />\n<i><b>91</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Backslash\" title=\"Backslash\">\\</a></span><br />\n<small>005C</small><br />\n<i><b>92</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Square_brackets\" title=\"Square brackets\" class=\"mw-redirect\">]</a></span><br />\n<small>005D</small><br />\n<i><b>93</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Circumflex\" title=\"Circumflex\">^</a></span><br />\n<small>005E</small><br />\n<i><b>94</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Underscore\" title=\"Underscore\">_</a></span><br />\n<small>005F</small><br />\n<i><b>95</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n6_<br />\n&#160;</th>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Grave_accent\" title=\"Grave accent\">`</a></span><br />\n<small>0060</small><br />\n<i><b>96</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/A\" title=\"A\">a</a></span><br />\n<small>0061</small><br />\n<i><b>97</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/B\" title=\"B\">b</a></span><br />\n<small>0062</small><br />\n<i><b>98</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/C\" title=\"C\">c</a></span><br />\n<small>0063</small><br />\n<i><b>99</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/D\" title=\"D\">d</a></span><br />\n<small>0064</small><br />\n<i><b>100</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/E\" title=\"E\">e</a></span><br />\n<small>0065</small><br />\n<i><b>101</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/F\" title=\"F\">f</a></span><br />\n<small>0066</small><br />\n<i><b>102</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/G\" title=\"G\">g</a></span><br />\n<small>0067</small><br />\n<i><b>103</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/H\" title=\"H\">h</a></span><br />\n<small>0068</small><br />\n<i><b>104</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/I\" title=\"I\">i</a></span><br />\n<small>0069</small><br />\n<i><b>105</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/J\" title=\"J\">j</a></span><br />\n<small>006A</small><br />\n<i><b>106</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/K\" title=\"K\">k</a></span><br />\n<small>006B</small><br />\n<i><b>107</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/L\" title=\"L\">l</a></span><br />\n<small>006C</small><br />\n<i><b>108</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/M\" title=\"M\">m</a></span><br />\n<small>006D</small><br />\n<i><b>109</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/N\" title=\"N\">n</a></span><br />\n<small>006E</small><br />\n<i><b>110</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/O\" title=\"O\">o</a></span><br />\n<small>006F</small><br />\n<i><b>111</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n7_<br />\n&#160;</th>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/P\" title=\"P\">p</a></span><br />\n<small>0070</small><br />\n<i><b>112</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Q\" title=\"Q\">q</a></span><br />\n<small>0071</small><br />\n<i><b>113</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/R\" title=\"R\">r</a></span><br />\n<small>0072</small><br />\n<i><b>114</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/S\" title=\"S\">s</a></span><br />\n<small>0073</small><br />\n<i><b>115</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/T\" title=\"T\">t</a></span><br />\n<small>0074</small><br />\n<i><b>116</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/U\" title=\"U\">u</a></span><br />\n<small>0075</small><br />\n<i><b>117</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/V\" title=\"V\">v</a></span><br />\n<small>0076</small><br />\n<i><b>118</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/W\" title=\"W\">w</a></span><br />\n<small>0077</small><br />\n<i><b>119</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/X\" title=\"X\">x</a></span><br />\n<small>0078</small><br />\n<i><b>120</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Y\" title=\"Y\">y</a></span><br />\n<small>0079</small><br />\n<i><b>121</b></i></td>\n<td style=\"background:#E7FFE7;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Z\" title=\"Z\">z</a></span><br />\n<small>007A</small><br />\n<i><b>122</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Braces_(punctuation)\" title=\"Braces (punctuation)\" class=\"mw-redirect\">{</a></span><br />\n<small>007B</small><br />\n<i><b>123</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Vertical_bar\" title=\"Vertical bar\">|</a></span><br />\n<small>007C</small><br />\n<i><b>124</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Braces_(punctuation)\" title=\"Braces (punctuation)\" class=\"mw-redirect\">}</a></span><br />\n<small>007D</small><br />\n<i><b>125</b></i></td>\n<td style=\"background:#DFF7FF;\"><span style=\"font-size: large; font-family: monospace\"><a href=\"/wiki/Tilde\" title=\"Tilde\">~</a></span><br />\n<small>007E</small><br />\n<i><b>126</b></i></td>\n<td bgcolor=\"#FFFFEF\"><small><a href=\"/wiki/Delete_character\" title=\"Delete character\">DEL</a></small><br />\n<small>007F</small><br />\n<i><b>127</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n8_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+00</small><br />\n<i><b>128</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+01</small><br />\n<i><b>129</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+02</small><br />\n<i><b>130</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+03</small><br />\n<i><b>131</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+04</small><br />\n<i><b>132</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+05</small><br />\n<i><b>133</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+06</small><br />\n<i><b>134</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+07</small><br />\n<i><b>135</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+08</small><br />\n<i><b>136</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+09</small><br />\n<i><b>137</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0A</small><br />\n<i><b>138</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0B</small><br />\n<i><b>139</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0C</small><br />\n<i><b>140</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0D</small><br />\n<i><b>141</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0E</small><br />\n<i><b>142</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+0F</small><br />\n<i><b>143</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n9_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+10</small><br />\n<i><b>144</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+11</small><br />\n<i><b>145</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+12</small><br />\n<i><b>146</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+13</small><br />\n<i><b>147</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+14</small><br />\n<i><b>148</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+15</small><br />\n<i><b>149</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+16</small><br />\n<i><b>150</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+17</small><br />\n<i><b>151</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+18</small><br />\n<i><b>152</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+19</small><br />\n<i><b>153</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1A</small><br />\n<i><b>154</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1B</small><br />\n<i><b>155</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1C</small><br />\n<i><b>156</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1D</small><br />\n<i><b>157</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1E</small><br />\n<i><b>158</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+1F</small><br />\n<i><b>159</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\nA_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+20</small><br />\n<i><b>160</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+21</small><br />\n<i><b>161</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+22</small><br />\n<i><b>162</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+23</small><br />\n<i><b>163</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+24</small><br />\n<i><b>164</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+25</small><br />\n<i><b>165</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+26</small><br />\n<i><b>166</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+27</small><br />\n<i><b>167</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+28</small><br />\n<i><b>168</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+29</small><br />\n<i><b>169</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2A</small><br />\n<i><b>170</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2B</small><br />\n<i><b>171</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2C</small><br />\n<i><b>172</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2D</small><br />\n<i><b>173</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2E</small><br />\n<i><b>174</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+2F</small><br />\n<i><b>175</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\nB_<br />\n&#160;</th>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+30</small><br />\n<i><b>176</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+31</small><br />\n<i><b>177</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+32</small><br />\n<i><b>178</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+33</small><br />\n<i><b>179</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+34</small><br />\n<i><b>180</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+35</small><br />\n<i><b>181</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+36</small><br />\n<i><b>182</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+37</small><br />\n<i><b>183</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+38</small><br />\n<i><b>184</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+39</small><br />\n<i><b>185</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3A</small><br />\n<i><b>186</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3B</small><br />\n<i><b>187</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3C</small><br />\n<i><b>188</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3D</small><br />\n<i><b>189</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3E</small><br />\n<i><b>190</b></i></td>\n<td bgcolor=\"#FFCC88\"><span style=\"font-size: large; font-family: monospace\">•</span><br />\n<small>+3F</small><br />\n<i><b>191</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n2-byte<br />\nC_<br />\n&#160;</th>\n<td bgcolor=\"#FF0000\"><small>2-byte<br />\ninval</small><br />\n<small><small>(0000)</small></small><br />\n<i><b>192</b></i></td>\n<td bgcolor=\"#FF0000\"><small>2-byte<br />\ninval</small><br />\n<small><small>(0040)</small></small><br />\n<i><b>193</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/C1_Controls_and_Latin-1_Supplement\" title=\"C1 Controls and Latin-1 Supplement\" class=\"mw-redirect\">Latin-1</a></small><br />\n<small>0080</small><br />\n<i><b>194</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/C1_Controls_and_Latin-1_Supplement\" title=\"C1 Controls and Latin-1 Supplement\" class=\"mw-redirect\">Latin-1</a></small><br />\n<small>00C0</small><br />\n<i><b>195</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-A\" title=\"Latin Extended-A\">Latin<br />\nExt-A</a></small><br />\n<small>0100</small><br />\n<i><b>196</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-A\" title=\"Latin Extended-A\">Latin<br />\nExt-A</a></small><br />\n<small>0140</small><br />\n<i><b>197</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-B\" title=\"Latin Extended-B\">Latin<br />\nExt-B</a></small><br />\n<small>0180</small><br />\n<i><b>198</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-B\" title=\"Latin Extended-B\">Latin<br />\nExt-B</a></small><br />\n<small>01C0</small><br />\n<i><b>199</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Latin_Extended-B\" title=\"Latin Extended-B\">Latin<br />\nExt-B</a></small><br />\n<small>0200</small><br />\n<i><b>200</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/IPA_Extensions_(Unicode_block)\" title=\"IPA Extensions (Unicode block)\">IPA</a></small><br />\n<small>0240</small><br />\n<i><b>201</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/IPA_Extensions_(Unicode_block)\" title=\"IPA Extensions (Unicode block)\">IPA</a></small><br />\n<small>0280</small><br />\n<i><b>202</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Unicode_Phonetic_Symbols#Spacing_Modifier_Letters_.28U.2B02B0.E2.80.9302FF.29\" title=\"Unicode Phonetic Symbols\" class=\"mw-redirect\">Spaci<br />\nModif</a></small><br />\n<small>02C0</small><br />\n<i><b>203</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combi<br />\nDiacr</a></small><br />\n<small>0300</small><br />\n<i><b>204</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combi<br />\nDiacr</a></small><br />\n<small>0340</small><br />\n<i><b>205</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Greek_alphabet#Greek_in_Unicode\" title=\"Greek alphabet\">Greek</a></small><br />\n<small>0380</small><br />\n<i><b>206</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Greek_alphabet#Greek_in_Unicode\" title=\"Greek alphabet\">Greek</a></small><br />\n<small>03C0</small><br />\n<i><b>207</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n2-byte<br />\nD_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0400</small><br />\n<i><b>208</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0440</small><br />\n<i><b>209</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0480</small><br />\n<i><b>210</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>04C0</small><br />\n<i><b>211</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Cyrillic_(Unicode_block)\" title=\"Cyrillic (Unicode block)\" class=\"mw-redirect\">Cyril</a></small><br />\n<small>0500</small><br />\n<i><b>212</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Armenian_alphabet\" title=\"Armenian alphabet\">Armen</a></small><br />\n<small>0540</small><br />\n<i><b>213</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet\" title=\"Unicode and HTML for the Hebrew alphabet\">Hebrew</a></small><br />\n<small>0580</small><br />\n<i><b>214</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet\" title=\"Unicode and HTML for the Hebrew alphabet\">Hebrew</a></small><br />\n<small>05C0</small><br />\n<i><b>215</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0600</small><br />\n<i><b>216</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0640</small><br />\n<i><b>217</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0680</small><br />\n<i><b>218</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>06C0</small><br />\n<i><b>219</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Syriac_alphabet\" title=\"Syriac alphabet\">Syriac</a></small><br />\n<small>0700</small><br />\n<i><b>220</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Arabic_(Unicode_block)\" title=\"Arabic (Unicode block)\" class=\"mw-redirect\">Arabic</a></small><br />\n<small>0740</small><br />\n<i><b>221</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/T%C4%81na\" title=\"Tāna\" class=\"mw-redirect\">Thaana</a></small><br />\n<small>0780</small><br />\n<i><b>222</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/N%27Ko\" title=\"N'Ko\" class=\"mw-redirect\">N'Ko</a></small><br />\n<small>07C0</small><br />\n<i><b>223</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n3-byte<br />\nE_<br />\n&#160;</th>\n<td bgcolor=\"#EEEEEE\"><small>Indic</small><br />\n<small>0800*</small><br />\n<i><b>224</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Misc.</small><br />\n<small>1000</small><br />\n<i><b>225</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Symbol</small><br />\n<small>2000</small><br />\n<i><b>226</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Kana\" title=\"Kana\">Kana</a><br />\n<a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>3000</small><br />\n<i><b>227</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>4000</small><br />\n<i><b>228</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>5000</small><br />\n<i><b>229</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>6000</small><br />\n<i><b>230</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>7000</small><br />\n<i><b>231</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>8000</small><br />\n<i><b>232</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK</a></small><br />\n<small>9000</small><br />\n<i><b>233</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Asian</small><br />\n<small>A000</small><br />\n<i><b>234</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a></small><br />\n<small>B000</small><br />\n<i><b>235</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a></small><br />\n<small>C000</small><br />\n<i><b>236</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a><br />\nSurr</small><br />\n<small>D000</small><br />\n<i><b>237</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small><a href=\"/wiki/Private_Use_Area\" title=\"Private Use Area\" class=\"mw-redirect\">Priv Use</a></small><br />\n<small>E000</small><br />\n<i><b>238</b></i></td>\n<td bgcolor=\"#EEEEEE\"><small>Forms</small><br />\n<small>F000</small><br />\n<i><b>239</b></i></td>\n</tr>\n<tr>\n<th>&#160;<br />\n4-byte<br />\nF_<br />\n&#160;</th>\n<td bgcolor=\"#FFFFFF\"><small>Ancient<br />\nSym,CJK</small><br />\n<small>10000*</small><br />\n<i><b>240</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small>unall</small><br />\n<small>40000</small><br />\n<i><b>241</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small>unall</small><br />\n<small>80000</small><br />\n<i><b>242</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small>Tags<br />\nPriv</small><br />\n<small>C0000</small><br />\n<i><b>243</b></i></td>\n<td bgcolor=\"#FFFFFF\"><small><a href=\"/wiki/Private_Use_Area\" title=\"Private Use Area\" class=\"mw-redirect\">Priv<br />\nUse</a></small><br />\n<small>100000</small><br />\n<i><b>244</b></i></td>\n<td bgcolor=\"#FF0000\"><small>4-byte<br />\ninval</small><br />\n<small><small>140000</small></small><br />\n<i><b>245</b></i></td>\n<td bgcolor=\"#FF0000\"><small>4-byte<br />\ninval</small><br />\n<small><small>180000</small></small><br />\n<i><b>246</b></i></td>\n<td bgcolor=\"#FF0000\"><small>4-byte<br />\ninval</small><br />\n<small><small>1C0000</small></small><br />\n<i><b>247</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>200000*</small></small><br />\n<i><b>248</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>1000000</small></small><br />\n<i><b>249</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>2000000</small></small><br />\n<i><b>250</b></i></td>\n<td bgcolor=\"#DD0000\"><small>5-byte<br />\ninval</small><br />\n<small><small>3000000</small></small><br />\n<i><b>251</b></i></td>\n<td bgcolor=\"#FF0000\"><small>6-byte<br />\ninval</small><br />\n<small><small>4000000*</small></small><br />\n<i><b>252</b></i></td>\n<td bgcolor=\"#FF0000\"><small>6-byte<br />\ninval</small><br />\n<small><small>40000000</small></small><br />\n<i><b>253</b></i></td>\n<td bgcolor=\"#FF0000\"><br />\n<br />\n<i><b>254</b></i></td>\n<td bgcolor=\"#FF0000\"><br />\n<br />\n<i><b>255</b></i></td>\n</tr>\n</table>\n<p>Legend: <span style=\"background: #ffffef; color: black\">Yellow</span> cells are control characters, <span style=\"background: rgb(223, 247, 255); color: black\">blue</span> cells are punctuation, <span style=\"background: rgb(247, 231, 255); color: black\">purple</span> cells are <a href=\"/wiki/Numerical_digit\" title=\"Numerical digit\">digits</a> and <span style=\"background: rgb(231, 255, 231); color: black\">green</span> cells are ASCII letters.</p>\n<p><span style=\"background: #ffcc88; color: black\">Orange</span> cells with a large dot are continuation bytes. The hexadecimal number shown after a \"+\" plus sign is the value of the 6 bits they add.</p>\n<p><span style=\"background: #ffffff; color: black\">White</span> cells are the start bytes for a sequence of multiple bytes, the length shown at the left edge of the row. The text shows the Unicode blocks encoded by sequences starting with this byte, and the hexadecimal code point shown in the cell is the lowest character value encoded using that start byte. When a start byte could form both overlong and valid encodings, the lowest non-overlong-encoded codepoint is shown, marked by an asterisk \"*\".</p>\n<p><span style=\"background: Red; color: black\">Red</span> cells must never appear in a valid UTF-8 sequence. The first two (C0 and C1) could only be used for overlong encoding of basic ASCII characters. The remaining red cells indicate start bytes of sequences that could only encode numbers larger than the 0x10FFFF limit of Unicode. The byte 244 (hex 0xF4) could also encode some values greater than 0x10FFFF; such a sequence is also invalid.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=6\" title=\"Edit section: Invalid byte sequences\">edit</a>]</span> <span class=\"mw-headline\" id=\"Invalid_byte_sequences\">Invalid byte sequences</span></h3>\n<p>Not all sequences of bytes are valid UTF-8. A UTF-8 decoder should be prepared for:</p>\n<ul>\n<li>the red invalid bytes in the above table</li>\n<li>an unexpected continuation byte</li>\n<li>a start byte not followed by enough continuation bytes</li>\n<li>a sequence that decodes to a value that should use a shorter sequence (an \"overlong form\")</li>\n<li>A 4-byte sequence (starting with 0xF4) that decodes to a value greater than U+10FFFF</li>\n</ul>\n<p>Many earlier decoders would happily try to decode these. Carefully crafted invalid UTF-8 could make them either skip or create ASCII characters such as NUL, slash, or quotes. Invalid UTF-8 has been used to bypass security validations in high profile products including Microsoft's <a href=\"/wiki/Internet_Information_Services\" title=\"Internet Information Services\">IIS</a> web server<sup id=\"cite_ref-MS00-078_10-0\" class=\"reference\"><a href=\"#cite_note-MS00-078-10\"><span>[</span>11<span>]</span></a></sup> and Apache's Tomcat servlet container.<sup id=\"cite_ref-CVE-2008-2938_11-0\" class=\"reference\"><a href=\"#cite_note-CVE-2008-2938-11\"><span>[</span>12<span>]</span></a></sup></p>\n<p>RFC 3629 states \"Implementations of the decoding algorithm MUST protect against decoding invalid sequences.\"<sup id=\"cite_ref-rfc3629_12-0\" class=\"reference\"><a href=\"#cite_note-rfc3629-12\"><span>[</span>13<span>]</span></a></sup> <i>The Unicode Standard</i> requires decoders to \"...treat any ill-formed code unit sequence as an error condition. This guarantees that it will neither interpret nor emit an ill-formed code unit sequence.\"</p>\n<p>Many UTF-8 decoders throw exceptions on encountering errors,<sup id=\"cite_ref-13\" class=\"reference\"><a href=\"#cite_note-13\"><span>[</span>14<span>]</span></a></sup> since such errors suggest the input is not a UTF-8 string at all. This can turn what would otherwise be harmless errors (producing a message such as \"no such file\") into a <a href=\"/wiki/Denial_of_service\" title=\"Denial of service\" class=\"mw-redirect\">denial of service</a> bug. For instance, Python 3.0 would exit immediately if the command line or <a href=\"/wiki/Environment_variable\" title=\"Environment variable\">environment variables</a> contained invalid UTF-8,<sup id=\"cite_ref-PEP383_14-0\" class=\"reference\"><a href=\"#cite_note-PEP383-14\"><span>[</span>15<span>]</span></a></sup> so it was impossible for any Python program to detect and recover from such an error.</p>\n<p>An increasingly popular option is to detect errors with a separate API, and for converters to translate the first byte to a replacement and continue parsing with the next byte. Popular replacements are:</p>\n<ul>\n<li>The <a href=\"/wiki/Replacement_character\" title=\"Replacement character\" class=\"mw-redirect\">replacement character</a> \"�\" (U+FFFD)</li>\n<li>The invalid Unicode code points U+DC80..U+DCFF where the low 8 bits are the byte's value.</li>\n<li>Interpret the bytes according to <a href=\"/wiki/ISO/IEC_8859-1\" title=\"ISO/IEC 8859-1\">ISO-8859-1</a> or <a href=\"/wiki/Windows-1252\" title=\"Windows-1252\">CP1252</a>.</li>\n</ul>\n<p>Replacing errors is \"lossy\": more than one UTF-8 string converts to the same Unicode result. Therefore the original UTF-8 should be stored, and translation should only be used when displaying the text to the user.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=7\" title=\"Edit section: Invalid code points\">edit</a>]</span> <span class=\"mw-headline\" id=\"Invalid_code_points\">Invalid code points</span></h3>\n<p>According to the UTF-8 definition (<a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a>) the high and low surrogate halves used by <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a> (U+D800 through U+DFFF) are not legal Unicode values, and the UTF-8 encoding of them is an invalid byte sequence and thus should be treated as described above.</p>\n<p>Whether an actual application should do this with surrogate halves is debatable.<sup class=\"noprint Inline-Template\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Avoid_weasel_words\" title=\"Wikipedia:Avoid weasel words\" class=\"mw-redirect\"><span title=\"The material in the vicinity of this tag may use weasel words or too-vague attribution. from September 2011\">who?</span></a></i>]</sup> Allowing them allows lossless storage of invalid <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a>, and allows CESU encoding (described below) to be decoded. There are other code points that are far more important to detect and reject, such as the reversed-BOM U+FFFE, or the <a href=\"/wiki/C1_control_code\" title=\"C1 control code\" class=\"mw-redirect\">C1 controls</a>, caused by improper conversion of <a href=\"/wiki/CP1252\" title=\"CP1252\" class=\"mw-redirect\">CP1252</a> text or <a href=\"/wiki/Mojibake\" title=\"Mojibake\">double-encoding</a> of UTF-8. These <i>are</i> invalid in <a href=\"/wiki/HTML\" title=\"HTML\">HTML</a>.</p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=8\" title=\"Edit section: Official name and variants\">edit</a>]</span> <span class=\"mw-headline\" id=\"Official_name_and_variants\">Official name and variants</span></h2>\n<p>The official name is \"UTF-8\". All letters are upper-case, and the name is hyphenated. This spelling is used in all the documents relating to the encoding.</p>\n<p>Alternatively, the name \"utf-8\" may be used by all standards conforming to the <a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">Internet Assigned Numbers Authority</a> (IANA) list (which include <a href=\"/wiki/Cascading_Style_Sheets\" title=\"Cascading Style Sheets\">CSS</a>, <a href=\"/wiki/HTML\" title=\"HTML\">HTML</a>, <a href=\"/wiki/XML\" title=\"XML\">XML</a>, and <a href=\"/wiki/List_of_HTTP_headers\" title=\"List of HTTP headers\" class=\"mw-redirect\">HTTP headers</a>),<sup id=\"cite_ref-15\" class=\"reference\"><a href=\"#cite_note-15\"><span>[</span>16<span>]</span></a></sup> as the declaration is case insensitive.<sup id=\"cite_ref-16\" class=\"reference\"><a href=\"#cite_note-16\"><span>[</span>17<span>]</span></a></sup></p>\n<p>Other descriptions that omit the hyphen or replace it with a space, such as \"utf8\" or \"UTF 8\", are not accepted as correct by the governing standards.<sup id=\"cite_ref-17\" class=\"reference\"><a href=\"#cite_note-17\"><span>[</span>18<span>]</span></a></sup> Despite this, most agents such as browsers can understand them, and so standards intended to describe existing practice (such as HTML5) may effectively require their recognition.</p>\n<p>MySQL omits the hyphen in the following query:</p>\n<pre>\nSET NAMES 'utf8'\n</pre>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=9\" title=\"Edit section: Derivatives\">edit</a>]</span> <span class=\"mw-headline\" id=\"Derivatives\">Derivatives</span></h2>\n<p>The following implementations show slight differences from the UTF-8 specification. They are incompatible with the UTF-8 specification.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=10\" title=\"Edit section: CESU-8\">edit</a>]</span> <span class=\"mw-headline\" id=\"CESU-8\">CESU-8</span></h3>\n<div class=\"rellink relarticle mainarticle\">Main article: <a href=\"/wiki/CESU-8\" title=\"CESU-8\">CESU-8</a></div>\n<p>Many programs added UTF-8 conversions for <a href=\"/wiki/UCS-2\" title=\"UCS-2\" class=\"mw-redirect\">UCS-2</a> data and did not alter this UTF-8 conversion when UCS-2 was replaced with the surrogate-pair using <a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16</a>. In such programs each half of a UTF-16 surrogate pair is encoded as its own 3-byte UTF-8 encoding, resulting in 6-byte sequences rather than 4 bytes for characters outside the <a href=\"/wiki/Mapping_of_Unicode_character_planes\" title=\"Mapping of Unicode character planes\" class=\"mw-redirect\">Basic Multilingual Plane</a>. <a href=\"/wiki/Oracle_Database\" title=\"Oracle Database\">Oracle</a> and <a href=\"/wiki/MySQL\" title=\"MySQL\">MySQL</a> databases use this, as well as Java and Tcl as described below, and probably many Windows programs where the programmers were unaware of the complexities of UTF-16. Although this non-optimal encoding is generally not deliberate, a supposed benefit is that it preserves UTF-16 binary sorting order when CESU-8 is binary sorted.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=11\" title=\"Edit section: Modified UTF-8\">edit</a>]</span> <span class=\"mw-headline\" id=\"Modified_UTF-8\">Modified UTF-8</span></h3>\n<p>In Modified UTF-8,<sup id=\"cite_ref-18\" class=\"reference\"><a href=\"#cite_note-18\"><span>[</span>19<span>]</span></a></sup> the <a href=\"/wiki/Null_character\" title=\"Null character\">null character</a> (U+0000) is encoded as 0xC0,0x80; this is not valid UTF-8<sup id=\"cite_ref-19\" class=\"reference\"><a href=\"#cite_note-19\"><span>[</span>20<span>]</span></a></sup> because it is not the shortest possible representation. Modified UTF-8 strings never contain any actual null bytes but can contain all Unicode code points including U+0000,<sup id=\"cite_ref-20\" class=\"reference\"><a href=\"#cite_note-20\"><span>[</span>21<span>]</span></a></sup> which allows such strings (with a null byte appended) to be processed by traditional <a href=\"/wiki/Null-terminated_string\" title=\"Null-terminated string\">null-terminated string</a> functions.</p>\n<p>All known Modified UTF-8 implementations also treat the surrogate pairs as in <a href=\"/wiki/CESU-8\" title=\"CESU-8\">CESU-8</a>.</p>\n<p>In normal usage, the <a href=\"/wiki/Java_(programming_language)\" title=\"Java (programming language)\">Java programming language</a> supports standard UTF-8 when reading and writing strings through <code><a rel=\"nofollow\" class=\"external text\" href=\"http://download.oracle.com/javase/7/docs/api/java/io/InputStreamReader.html\">InputStreamReader</a></code> and <code><a rel=\"nofollow\" class=\"external text\" href=\"http://download.oracle.com/javase/7/docs/api/java/io/OutputStreamWriter.html\">OutputStreamWriter</a></code>. However it uses Modified UTF-8 for object <a href=\"/wiki/Serialization#Java\" title=\"Serialization\">serialization</a>,<sup id=\"cite_ref-21\" class=\"reference\"><a href=\"#cite_note-21\"><span>[</span>22<span>]</span></a></sup> for the <a href=\"/wiki/Java_Native_Interface\" title=\"Java Native Interface\">Java Native Interface</a>,<sup id=\"cite_ref-22\" class=\"reference\"><a href=\"#cite_note-22\"><span>[</span>23<span>]</span></a></sup> and for embedding constant strings in <a href=\"/wiki/Class_(file_format)\" title=\"Class (file format)\" class=\"mw-redirect\">class files</a>.<sup id=\"cite_ref-23\" class=\"reference\"><a href=\"#cite_note-23\"><span>[</span>24<span>]</span></a></sup> <a href=\"/wiki/Tcl\" title=\"Tcl\">Tcl</a> also uses the same modified UTF-8<sup id=\"cite_ref-24\" class=\"reference\"><a href=\"#cite_note-24\"><span>[</span>25<span>]</span></a></sup> as Java for internal representation of Unicode data, but uses strict CESU-8 for external data.</p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=12\" title=\"Edit section: Extending from 31 bit to 36 bit range\">edit</a>]</span> <span class=\"mw-headline\" id=\"Extending_from_31_bit_to_36_bit_range\">Extending from 31 bit to 36 bit range</span></h3>\n<p>Extending the accepted input pattern from 6 bytes to 7 bytes would allow over 70 billion code points to be encoded;<sup id=\"cite_ref-25\" class=\"reference\"><a href=\"#cite_note-25\"><span>[</span>26<span>]</span></a></sup> however, this would require an initial byte value of 0xFE to be accepted as a 7-byte sequence indicator (see under Advantages in section \"<a href=\"#Compared_to_single-byte_encodings\">Compared to single-byte encodings</a>\").</p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=13\" title=\"Edit section: Byte order mark\">edit</a>]</span> <span class=\"mw-headline\" id=\"Byte_order_mark\">Byte order mark</span></h2>\n<p>Many <a href=\"/wiki/Microsoft_Windows\" title=\"Microsoft Windows\">Windows</a> programs (including Windows <a href=\"/wiki/Notepad_(Windows)\" title=\"Notepad (Windows)\" class=\"mw-redirect\">Notepad</a>) add the bytes 0xEF, 0xBB, 0xBF at the start of any document saved as UTF-8. This is the UTF-8 encoding of the Unicode <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order mark</a> (BOM), and is commonly referred to as a UTF-8 BOM, even though it is not relevant to byte order. The BOM can also appear if another encoding with a BOM is translated to UTF-8 without stripping it. Older text editors may display the BOM as \"ï»¿\" at the start of the document.</p>\n<p>The Unicode Standard neither requires nor recommends the use of the BOM for UTF-8.<sup id=\"cite_ref-26\" class=\"reference\"><a href=\"#cite_note-26\"><span>[</span>27<span>]</span></a></sup> The presence of the UTF-8 BOM may cause interoperability problems with existing software that could otherwise handle UTF-8; for example:</p>\n<ul>\n<li>Programming language parsers not explicitly designed for UTF-8 can often handle UTF-8 in string constants and comments, but cannot parse the BOM at the start of the file.</li>\n<li>Programs that identify file types by leading characters may fail to identify the file if a BOM is present even if the user of the file could skip the BOM. An example is the Unix <a href=\"/wiki/Shebang_(Unix)\" title=\"Shebang (Unix)\">shebang</a> syntax. Another example is Internet Explorer which will render pages in standards mode only when it starts with a <a href=\"/wiki/Document_type_declaration\" title=\"Document type declaration\" class=\"mw-redirect\">document type declaration</a>.</li>\n</ul>\n<p>If compatibility with existing programs is not important, the BOM <i>could</i> be used to identify UTF-8 encoding. Because checking if text is valid UTF-8 is very reliable (the majority of random byte sequences are <i>not</i> valid UTF-8) such use should not be necessary. Programs that insert information at the start of a file will break this identification (one example is offline browsers that add the originating URL to the start of the file).</p>\n<p>Unofficially, UTF-8-BOM or UTF-8-NOBOM are sometimes used to refer to text files which contain or lack a BOM. In Japan especially, \"UTF-8 encoding without BOM\" is sometimes called \"UTF-8N\".<sup class=\"Template-Fact\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Citation_needed\" title=\"Wikipedia:Citation needed\"><span title=\"This claim needs references to reliable sources from February 2012\">citation needed</span></a></i>]</sup></p>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=14\" title=\"Edit section: Advantages and disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_and_disadvantages\">Advantages and disadvantages</span></h2>\n<table class=\"metadata plainlinks ambox mbox-small-left ambox-content ambox-Refimprove\" style=\"\">\n<tr>\n<td class=\"mbox-image\"><img alt=\"\" src=\"//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png\" width=\"50\" height=\"39\" /></td>\n<td class=\"mbox-text\" style=\"\"><span class=\"mbox-text-span\">This section <b>needs additional <a href=\"/wiki/Wikipedia:Citing_sources#Inline_citations\" title=\"Wikipedia:Citing sources\">citations</a> for <a href=\"/wiki/Wikipedia:Verifiability\" title=\"Wikipedia:Verifiability\">verification</a></b>. <small><i>(October 2009)</i></small></span></td>\n</tr>\n</table>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=15\" title=\"Edit section: General\">edit</a>]</span> <span class=\"mw-headline\" id=\"General\">General</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=16\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages\">Advantages</span></h4>\n<ul>\n<li>The <a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a> characters are represented by themselves as single bytes that do not appear anywhere else, which makes UTF-8 work with the majority of existing APIs that take bytes strings but only treat a small number of ASCII codes specially. This removes the need to write a new Unicode version of every API, and makes it much easier to convert existing systems to UTF-8 than any other Unicode encoding.</li>\n<li>UTF-8 is the only encoding for XML entities that does not require a BOM or an indication of the encoding.<sup id=\"cite_ref-27\" class=\"reference\"><a href=\"#cite_note-27\"><span>[</span>28<span>]</span></a></sup></li>\n<li>UTF-8 and UTF-16 are the standard encodings for Unicode text in HTML documents, with UTF-8 as the preferred and most used encoding.</li>\n<li>UTF-8 strings can be fairly reliably recognized as such by a simple <a href=\"/wiki/Heuristic_algorithm\" title=\"Heuristic algorithm\" class=\"mw-redirect\">heuristic algorithm</a>.<sup id=\"cite_ref-28\" class=\"reference\"><a href=\"#cite_note-28\"><span>[</span>29<span>]</span></a></sup> The probability of a random string of bytes which is not pure ASCII being valid UTF-8 is 3.9% for a two-byte sequence,<sup id=\"cite_ref-29\" class=\"reference\"><a href=\"#cite_note-29\"><span>[</span>30<span>]</span></a></sup> and decreases exponentially for longer sequences. <a href=\"/wiki/ISO/IEC_8859-1\" title=\"ISO/IEC 8859-1\">ISO/IEC 8859-1</a> is even less likely to be mis-recognized as UTF-8: the <i>only</i> non-ASCII characters in it would have to be in sequences starting with either an accented letter or the multiplication symbol and ending with a symbol. This is an advantage that most other encodings do not have, causing errors (<a href=\"/wiki/Mojibake\" title=\"Mojibake\">mojibake</a>) if the receiving application isn't told and can't guess the correct encoding. Even word-based UTF-16 can be mistaken for byte encodings (like in the \"<a href=\"/wiki/Bush_hid_the_facts\" title=\"Bush hid the facts\">bush hid the facts</a>\" bug).</li>\n<li><a href=\"/wiki/Lexicographical_order\" title=\"Lexicographical order\">Sorting</a> of UTF-8 strings as arrays of unsigned bytes will produce the same results as sorting them based on Unicode code points.</li>\n<li>Other byte-based encodings can pass through the same API. This means, however, that the encoding must be identified. Because the other encodings are unlikely to be valid UTF-8, a reliable way to implement this is to assume UTF-8 and switch to a legacy encoding only if several invalid UTF-8 byte sequences are encountered.</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=17\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages\">Disadvantages</span></h4>\n<ul>\n<li>A UTF-8 <a href=\"/wiki/Parsing\" title=\"Parsing\">parser</a> that is not compliant with current versions of the standard might accept a number of different pseudo-UTF-8 representations and convert them to the same Unicode output. This provides a way for information to leak past validation routines designed to process data in its eight-bit representation.<sup id=\"cite_ref-30\" class=\"reference\"><a href=\"#cite_note-30\"><span>[</span>31<span>]</span></a></sup></li>\n</ul>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=18\" title=\"Edit section: Compared to single-byte encodings\">edit</a>]</span> <span class=\"mw-headline\" id=\"Compared_to_single-byte_encodings\">Compared to single-byte encodings</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=19\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_2\">Advantages</span></h4>\n<ul>\n<li>UTF-8 can encode any <a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> character, avoiding the need to figure out and set a \"<a href=\"/wiki/Code_page\" title=\"Code page\">code page</a>\" or otherwise indicate what character set is in use, and allowing output in multiple scripts at the same time. For many scripts there have been more than one single-byte encoding in usage, so even knowing the script was insufficient information to display it correctly.</li>\n<li>The bytes 0xFE and 0xFF do not appear, so a valid UTF-8 stream never matches the UTF-16 <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order mark</a> and thus cannot be confused with it. The absence of 0xFF (0377) also eliminates the need to escape this byte in <a href=\"/wiki/Telnet\" title=\"Telnet\">Telnet</a> (and FTP control connection).</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=20\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages_2\">Disadvantages</span></h4>\n<ul>\n<li>UTF-8 encoded text is larger than the appropriate single-byte encoding except for plain ASCII characters. In the case of scripts which used 8-bit character sets with non-Latin scripts encoded in the upper half (such as most <a href=\"/wiki/Cyrillic_script\" title=\"Cyrillic script\">Cyrillic</a> and <a href=\"/wiki/Greek_alphabet\" title=\"Greek alphabet\">Greek alphabet</a> code pages), characters in UTF-8 will be double the size. For some scripts such as <a href=\"/wiki/Thai_alphabet\" title=\"Thai alphabet\">Thai</a> and <a href=\"/wiki/Hindi\" title=\"Hindi\">Hindi</a>'s <a href=\"/wiki/Devanagari\" title=\"Devanagari\">Devanagari</a>, characters will be triple the size (this has caused objections in India and other countries).</li>\n<li>It is possible in UTF-8 (or any other multi-byte encoding) to split or <a href=\"/wiki/Data_truncation\" title=\"Data truncation\">truncate</a> a string in the middle of a character, which may result in an invalid string. This will not happen in correct handling of UTF-8.</li>\n<li>If the code points are all the same size, measurements of a fixed number of them is easy. Due to ASCII-era documentation where \"character\" is used as a synonym for \"byte\" this is often considered important. However, by measuring string positions using bytes instead of \"characters\" most algorithms can be easily and efficiently adapted for UTF-8<sup class=\"Template-Fact\" style=\"white-space:nowrap;\">[<i><a href=\"/wiki/Wikipedia:Citation_needed\" title=\"Wikipedia:Citation needed\"><span title=\"This claim needs references to reliable sources from December 2009\">citation needed</span></a></i>]</sup>.</li>\n<li>Some software such as text editors will refuse to correctly display or interpret UTF-8 unless it starts with a <a href=\"/wiki/Byte_Order_Mark\" title=\"Byte Order Mark\" class=\"mw-redirect\">Byte Order Mark</a>. This has the effect of making it impossible to use UTF-8 with any older software than can handle ASCII-like encodings but cannot handle the byte order mark. This is considered an incorrect implementation of the text editor, not the older software.</li>\n</ul>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=21\" title=\"Edit section: Compared to other multi-byte encodings\">edit</a>]</span> <span class=\"mw-headline\" id=\"Compared_to_other_multi-byte_encodings\">Compared to other multi-byte encodings</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=22\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_3\">Advantages</span></h4>\n<ul>\n<li>UTF-8 uses the codes 0–127 <i>only</i> for the ASCII characters. This means that UTF-8 is an <a href=\"/wiki/Extended_ASCII\" title=\"Extended ASCII\">ASCII extension</a> and can with limited change be supported by software that supports an ASCII extension and handles non-ASCII characters as free text.</li>\n<li>UTF-8 can encode any <a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> character. Files in different scripts can be displayed correctly without having to choose the correct code page or font. For instance Chinese and Arabic can be supported (in the same text) without special codes inserted or manual settings to switch the encoding.</li>\n<li>UTF-8 is \"self-synchronizing\": character boundaries are easily found when searching either forwards or backwards. If bytes are lost due to error or <a href=\"/wiki/Data_corruption\" title=\"Data corruption\">corruption</a>, one can always locate the beginning of the next character and thus limit the damage. Many multi-byte encodings are much harder to resynchronize.</li>\n<li>Any <a href=\"/wiki/Byte_orientation\" title=\"Byte orientation\">byte oriented</a> <a href=\"/wiki/String_searching_algorithm\" title=\"String searching algorithm\">string searching algorithm</a> can be used with UTF-8 data, since the sequence of bytes for a character cannot occur anywhere else. Some older variable-length encodings (such as <a href=\"/wiki/Shift_JIS\" title=\"Shift JIS\">Shift JIS</a>) did not have this property and thus made string-matching algorithms rather complicated. In Shift JIS the end byte of a character and the first byte of the next character could look like another legal character, something that can't happen in UTF-8.</li>\n<li>Efficient to encode using simple <a href=\"/wiki/Bit_operation\" title=\"Bit operation\" class=\"mw-redirect\">bit operations</a>. UTF-8 does not require slower mathematical operations such as multiplication or division (unlike the obsolete <a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a> encoding).</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=23\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages_3\">Disadvantages</span></h4>\n<ul>\n<li>For certain scripts UTF-8 will take more space than an older multi-byte encoding. East Asian scripts generally have two bytes per character in their multi-byte encodings yet take three bytes per character in UTF-8.</li>\n</ul>\n<p><br /></p>\n<h3><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=24\" title=\"Edit section: Compared to UTF-16\">edit</a>]</span> <span class=\"mw-headline\" id=\"Compared_to_UTF-16\">Compared to UTF-16</span></h3>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=25\" title=\"Edit section: Advantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Advantages_4\">Advantages</span></h4>\n<ul>\n<li>A text byte stream cannot be losslessly converted to UTF-16, due to the possible presence of errors in the byte stream encoding. This causes unexpected and often severe problems attempting to use existing data in a system that uses UTF-16 as an internal encoding. Results are security bugs, <a href=\"/wiki/Denial_of_service\" title=\"Denial of service\" class=\"mw-redirect\">DoS</a> if bad encoding throws an exception, and data loss when different byte streams convert to the same UTF-16. Due to the ASCII compatibility and high degree of pattern recognition in UTF-8, random byte streams can be passed losslessly through a system using it, as interpretation can be deferred until display.</li>\n<li>Converting to UTF-16 while maintaining compatibility with existing programs (such as was done with Windows) requires <i>every</i> API and data structure that takes a string to be duplicated. Invalid encodings make the duplicated APIs not exactly map to each other, often making it impossible to do some action with one of them.</li>\n<li>Characters outside the basic multilingual plane are not a special case. UTF-16 is often mistaken to be the obsolete constant-length <a href=\"/wiki/UCS-2\" title=\"UCS-2\" class=\"mw-redirect\">UCS-2</a> encoding, leading to code that works for most text but suddenly fails for non-<a href=\"/wiki/Mapping_of_Unicode_character_planes\" title=\"Mapping of Unicode character planes\" class=\"mw-redirect\">BMP</a> characters.<sup id=\"cite_ref-31\" class=\"reference\"><a href=\"#cite_note-31\"><span>[</span>32<span>]</span></a></sup></li>\n<li>Text encoded in UTF-8 is often smaller than (or the same size as) the same text encoded in UTF-16.\n<ul>\n<li>This is always true for text using only code points below U+0800 (which includes all modern European scripts), as each code point's UTF-8 encoding is one or two bytes then.</li>\n<li>Even if text contains code points between U+0800 and U+FFFF, it might contain so many code points below U+0080 (which UTF-8 encodes in one byte) that the UTF-8 encoding is still smaller. As HTML markup and line terminators are code points below U+0080, most HTML source is smaller if encoded in UTF-8 even for Asian scripts.</li>\n<li><a href=\"/wiki/Unicode_plane\" title=\"Unicode plane\" class=\"mw-redirect\">Non-BMP</a> characters (U+10000 and above) are encoded in UTF-8 in four bytes, the same size as in UTF-16.</li>\n</ul>\n</li>\n<li>Most communication and storage was designed for a stream of bytes. A UTF-16 string must use a pair of bytes for each code unit:\n<ul>\n<li>The order of those two bytes becomes an issue and must be specified in the UTF-16 protocol, such as with a <a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">byte order mark</a>.</li>\n<li>If an odd number of bytes is missing from UTF-16, the whole rest of the string will be meaningless text. Any bytes missing from UTF-8 will still allow the text to be recovered accurately starting with the next character after the missing bytes. If any partial character is removed the corruption is always recognizable.</li>\n</ul>\n</li>\n</ul>\n<h4><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=26\" title=\"Edit section: Disadvantages\">edit</a>]</span> <span class=\"mw-headline\" id=\"Disadvantages_4\">Disadvantages</span></h4>\n<ul>\n<li>Characters U+0800 through U+FFFF use three bytes in UTF-8, but only two in UTF-16. As a result, text in (for example) Chinese, Japanese or Hindi could take more space in UTF-8 if there are more of these characters than there are ASCII characters. This happens for pure text,<sup id=\"cite_ref-32\" class=\"reference\"><a href=\"#cite_note-32\"><span>[</span>33<span>]</span></a></sup> but rarely for HTML documents. For example, both the Japanese UTF-8 and the Hindi Unicode articles on Wikipedia take more space in UTF-16 than in UTF-8 .<sup id=\"cite_ref-33\" class=\"reference\"><a href=\"#cite_note-33\"><span>[</span>34<span>]</span></a></sup></li>\n</ul>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=27\" title=\"Edit section: See also\">edit</a>]</span> <span class=\"mw-headline\" id=\"See_also\">See also</span></h2>\n<ul>\n<li><a href=\"/wiki/Alt_code\" title=\"Alt code\">Alt code</a></li>\n<li><a href=\"/wiki/Character_encodings_in_HTML\" title=\"Character encodings in HTML\">Character encodings in HTML</a></li>\n<li><a href=\"/wiki/Comparison_of_e-mail_clients#Features\" title=\"Comparison of e-mail clients\" class=\"mw-redirect\">Comparison of e-mail clients#Features</a></li>\n<li><a href=\"/wiki/Comparison_of_Unicode_encodings\" title=\"Comparison of Unicode encodings\">Comparison of Unicode encodings</a></li>\n<li><a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB 18030</a></li>\n<li><a href=\"/wiki/Iconv\" title=\"Iconv\">Iconv</a>—a standardized <a href=\"/wiki/Application_programming_interface\" title=\"Application programming interface\">API</a> used to convert between different <a href=\"/wiki/Character_encoding\" title=\"Character encoding\">character encodings</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859\" title=\"ISO/IEC 8859\">ISO/IEC 8859</a></li>\n<li><a href=\"/wiki/Specials_(Unicode_block)\" title=\"Specials (Unicode block)\">Specials (Unicode block)</a></li>\n<li><a href=\"/wiki/Unicode_and_e-mail\" title=\"Unicode and e-mail\" class=\"mw-redirect\">Unicode and e-mail</a></li>\n<li><a href=\"/wiki/Unicode_and_HTML\" title=\"Unicode and HTML\">Unicode and HTML</a></li>\n<li><a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">Universal Character Set</a></li>\n<li><a href=\"/wiki/Percent-encoding#Current_standard\" title=\"Percent-encoding\">UTF-8 in URIs</a></li>\n<li><a href=\"/wiki/UTF-9_and_UTF-18\" title=\"UTF-9 and UTF-18\">UTF-9 and UTF-18</a></li>\n<li><a href=\"/wiki/UTF-16/UCS-2\" title=\"UTF-16/UCS-2\" class=\"mw-redirect\">UTF-16/UCS-2</a></li>\n</ul>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=28\" title=\"Edit section: References\">edit</a>]</span> <span class=\"mw-headline\" id=\"References\">References</span></h2>\n<div class=\"reflist references-column-count references-column-count-2\" style=\"-moz-column-count: 2; -webkit-column-count: 2; column-count: 2; list-style-type: decimal;\">\n<ol class=\"references\">\n<li id=\"cite_note-0\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation book\">[<a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/\">|The Unicode Consortium</a>]. <a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/versions/Unicode6.0.0/\">\"Chapter 2. General Structure\"</a>. <i>The Unicode Standard</i> (6.0 ed.). Mountain View, California, USA: The Unicode Consortium. <a href=\"/wiki/International_Standard_Book_Number\" title=\"International Standard Book Number\">ISBN</a>&#160;<a href=\"/wiki/Special:BookSources/978-1-936213-01-6\" title=\"Special:BookSources/978-1-936213-01-6\">978-1-936213-01-6</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.unicode.org/versions/Unicode6.0.0/\">http://www.unicode.org/versions/Unicode6.0.0/</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chapter+2.+General+Structure&amp;rft.atitle=The+Unicode+Standard&amp;rft.aulast=The+Unicode+Consortium&amp;rft.au=The+Unicode+Consortium&amp;rft.edition=6.0&amp;rft.place=Mountain+View%2C+California%2C+USA&amp;rft.pub=The+Unicode+Consortium&amp;rft.isbn=978-1-936213-01-6&amp;rft_id=http%3A%2F%2Fwww.unicode.org%2Fversions%2FUnicode6.0.0%2F&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span>. <a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> also refers to UTF-8 as \"UCS transformation format\". Also commonly known as \"Unicode Transformation Format\".</span></li>\n<li id=\"cite_note-1\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-1\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Mark Davis (28 January 2010). <a rel=\"nofollow\" class=\"external text\" href=\"http://googleblog.blogspot.com/2010/01/unicode-nearing-50-of-web.html\">\"Unicode nearing 50% of the web\"</a>. <i>Official Google Blog</i>. <a href=\"/wiki/Google\" title=\"Google\">Google</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://googleblog.blogspot.com/2010/01/unicode-nearing-50-of-web.html\">http://googleblog.blogspot.com/2010/01/unicode-nearing-50-of-web.html</a></span><span class=\"reference-accessdate\">. Retrieved 5 December 2010</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Unicode+nearing+50%25+of+the+web&amp;rft.atitle=Official+Google+Blog&amp;rft.aulast=Mark+Davis&amp;rft.au=Mark+Davis&amp;rft.date=28+January+2010&amp;rft.pub=%5B%5BGoogle%5D%5D&amp;rft_id=http%3A%2F%2Fgoogleblog.blogspot.com%2F2010%2F01%2Funicode-nearing-50-of-web.html&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-BuiltWith-2\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-BuiltWith_2-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://trends.builtwith.com/encoding/UTF-8\">\"UTF-8 Usage Statistics\"</a>. BuiltWith<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://trends.builtwith.com/encoding/UTF-8\">http://trends.builtwith.com/encoding/UTF-8</a></span><span class=\"reference-accessdate\">. Retrieved 2011-03-28</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UTF-8+Usage+Statistics&amp;rft.atitle=&amp;rft.pub=BuiltWith&amp;rft_id=http%3A%2F%2Ftrends.builtwith.com%2Fencoding%2FUTF-8&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-W3Techs-3\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-W3Techs_3-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://w3techs.com/technologies/overview/character_encoding/all\">\"Usage of character encodings for websites\"</a>. W3Techs<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://w3techs.com/technologies/overview/character_encoding/all\">http://w3techs.com/technologies/overview/character_encoding/all</a></span><span class=\"reference-accessdate\">. Retrieved 2010-03-30</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Usage+of+character+encodings+for+websites&amp;rft.atitle=&amp;rft.pub=W3Techs&amp;rft_id=http%3A%2F%2Fw3techs.com%2Ftechnologies%2Foverview%2Fcharacter_encoding%2Fall&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-rfc2277-4\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-rfc2277_4-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation Journal\">Alvestrand, H. (1998). \"IETF Policy on Character Sets and Languages\". <i><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc2277\">RFC 2277</a></i>. <a href=\"/wiki/Internet_Engineering_Task_Force\" title=\"Internet Engineering Task Force\">Internet Engineering Task Force</a>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=IETF+Policy+on+Character+Sets+and+Languages&amp;rft.atitle=RFC+2277&amp;rft.aulast=Alvestrand&amp;rft.aufirst=H.&amp;rft.au=Alvestrand%2C%26%2332%3BH.&amp;rft.date=1998&amp;rft.pub=%5B%5BInternet+Engineering+Task+Force%5D%5D&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-IMC-5\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-IMC_5-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.imc.org/mail-i18n.html\">\"Using International Characters in Internet Mail\"</a>. Internet Mail Consortium. August 1, 1998<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.imc.org/mail-i18n.html\">http://www.imc.org/mail-i18n.html</a></span><span class=\"reference-accessdate\">. Retrieved 2007-11-08</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Using+International+Characters+in+Internet+Mail&amp;rft.atitle=&amp;rft.date=August+1%2C+1998&amp;rft.pub=Internet+Mail+Consortium&amp;rft_id=http%3A%2F%2Fwww.imc.org%2Fmail-i18n.html&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-6\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-6\">^</a></b></span> <span class=\"reference-text\">Not all of the 1,112,064 possible code points have been assigned characters; many are reserved for future use, and some are reserved for private use, while still others are specified as permanently undefined.</span></li>\n<li id=\"cite_note-7\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-7\">^</a></b></span> <span class=\"reference-text\">More precisely, the number of bytes used to encode a character at a given code point is a <a href=\"/wiki/Monotonic_function\" title=\"Monotonic function\">monotonically increasing function</a> of the numerical value of the code point.</span></li>\n<li id=\"cite_note-8\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-8\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Internet Assigned Numbers Authority (4 November 2010). <a rel=\"nofollow\" class=\"external text\" href=\"http://www.iana.org/assignments/character-sets\">\"CHARACTER SETS\"</a>. IANA<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.iana.org/assignments/character-sets\">http://www.iana.org/assignments/character-sets</a></span><span class=\"reference-accessdate\">. Retrieved 5 December 2010</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=CHARACTER+SETS&amp;rft.atitle=&amp;rft.aulast=Internet+Assigned+Numbers+Authority&amp;rft.au=Internet+Assigned+Numbers+Authority&amp;rft.date=4+November+2010&amp;rft.pub=IANA&amp;rft_id=http%3A%2F%2Fwww.iana.org%2Fassignments%2Fcharacter-sets&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-9\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-9\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Pike, Rob (2003-04-03). <a rel=\"nofollow\" class=\"external text\" href=\"http://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt\">\"UTF-8 history\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt\">http://www.cl.cam.ac.uk/~mgk25/ucs/utf-8-history.txt</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UTF-8+history&amp;rft.atitle=&amp;rft.aulast=Pike&amp;rft.aufirst=Rob&amp;rft.au=Pike%2C%26%2332%3BRob&amp;rft.date=2003-04-03&amp;rft_id=http%3A%2F%2Fwww.cl.cam.ac.uk%2F%7Emgk25%2Fucs%2Futf-8-history.txt&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-MS00-078-10\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-MS00-078_10-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\">Marin, Marvin (2000-10-17). <a rel=\"nofollow\" class=\"external text\" href=\"http://www.sans.org/resources/malwarefaq/wnt-unicode.php\">\"Web Server Folder Traversal MS00-078\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.sans.org/resources/malwarefaq/wnt-unicode.php\">http://www.sans.org/resources/malwarefaq/wnt-unicode.php</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Web+Server+Folder+Traversal+MS00-078&amp;rft.atitle=&amp;rft.aulast=Marin&amp;rft.aufirst=Marvin&amp;rft.au=Marin%2C%26%2332%3BMarvin&amp;rft.date=2000-10-17&amp;rft_id=http%3A%2F%2Fwww.sans.org%2Fresources%2Fmalwarefaq%2Fwnt-unicode.php&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-CVE-2008-2938-11\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-CVE-2008-2938_11-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-2938\">\"National Vulnerability Database - Summary for CVE-2008-2938\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-2938\">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-2938</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=National+Vulnerability+Database+-+Summary+for+CVE-2008-2938&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fweb.nvd.nist.gov%2Fview%2Fvuln%2Fdetail%3FvulnId%3DCVE-2008-2938&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-rfc3629-12\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-rfc3629_12-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation Journal\">Yergeau, F. (2003). \"UTF-8, a transformation format of ISO 10646\". <i><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a></i>. <a href=\"/wiki/Internet_Engineering_Task_Force\" title=\"Internet Engineering Task Force\">Internet Engineering Task Force</a></span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UTF-8%2C+a+transformation+format+of+ISO+10646&amp;rft.atitle=RFC+3629&amp;rft.aulast=Yergeau&amp;rft.aufirst=F.&amp;rft.au=Yergeau%2C%26%2332%3BF.&amp;rft.date=2003&amp;rft.pub=%5B%5BInternet+Engineering+Task+Force%5D%5D&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-13\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-13\">^</a></b></span> <span class=\"reference-text\">Examples: <a rel=\"nofollow\" class=\"external text\" href=\"http://gwt-lzma.googlecode.com/svn-history/r8/trunk/publish/javadoc/org/dellroad/lzma/client/UTF8.html\">UTF8 (Java Class Library API)</a> or <a rel=\"nofollow\" class=\"external text\" href=\"http://download.oracle.com/javase/1.4.2/docs/api/java/nio/charset/CharsetDecoder.html#decode(java.nio.ByteBuffer)\">java.nio.charset.CharsetDecoder.decode</a></span></li>\n<li id=\"cite_note-PEP383-14\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-PEP383_14-0\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.python.org/dev/peps/pep-0383/\">\"Non-decodable Bytes in System Character Interfaces\"</a><span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.python.org/dev/peps/pep-0383/\">http://www.python.org/dev/peps/pep-0383/</a></span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Non-decodable+Bytes+in+System+Character+Interfaces&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.python.org%2Fdev%2Fpeps%2Fpep-0383%2F&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-15\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-15\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/International/O-HTTP-charset\">W3C: Setting the HTTP charset parameter</a> notes that the <a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">IANA</a> list is used for HTTP</span></li>\n<li id=\"cite_note-16\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-16\">^</a></b></span> <span class=\"reference-text\"><a href=\"/wiki/Internet_Assigned_Numbers_Authority\" title=\"Internet Assigned Numbers Authority\">Internet Assigned Numbers Authority</a> <a rel=\"nofollow\" class=\"external text\" href=\"http://www.iana.org/assignments/character-sets\">Character Sets</a></span></li>\n<li id=\"cite_note-17\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-17\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.ietf.org/rfc/rfc3629.txt\">RFC 3629 UTF-8</a> see chapter 8. MIME registration, first paragraph</span></li>\n<li id=\"cite_note-18\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-18\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/javase/6/docs/api/java/io/DataInput.html#modified-utf-8\">\"Java SE 6 documentation for Interface java.io.DataInput, subsection on Modified UTF-8\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 2008<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/javase/6/docs/api/java/io/DataInput.html#modified-utf-8\">http://java.sun.com/javase/6/docs/api/java/io/DataInput.html#modified-utf-8</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+SE+6+documentation+for+Interface+java.io.DataInput%2C+subsection+on+Modified+UTF-8&amp;rft.atitle=&amp;rft.date=2008&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fjavase%2F6%2Fdocs%2Fapi%2Fjava%2Fio%2FDataInput.html%23modified-utf-8&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-19\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-19\">^</a></b></span> <span class=\"reference-text\">\"[...] the overlong UTF-8 sequence C0 80 [...]\", \"[...] the illegal two-octet sequence C0 80 [...]\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.apps.ietf.org/rfc/rfc3629.html#page-5\">\"Request for Comments 3629: \"UTF-8, a transformation format of ISO 10646\"\"</a>. 2003<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://www.apps.ietf.org/rfc/rfc3629.html#page-5\">http://www.apps.ietf.org/rfc/rfc3629.html#page-5</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Request+for+Comments+3629%3A+%22UTF-8%2C+a+transformation+format+of+ISO+10646%22&amp;rft.atitle=&amp;rft.date=2003&amp;rft_id=http%3A%2F%2Fwww.apps.ietf.org%2Frfc%2Frfc3629.html%23page-5&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-20\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-20\">^</a></b></span> <span class=\"reference-text\">\"[...] Java virtual machine UTF-8 strings never have embedded nulls.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">\"The Java Virtual Machine Specification, 2nd Edition, section 4.4.7: \"The CONSTANT_Utf8_info Structure\"\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 1999<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-24</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=The+Java+Virtual+Machine+Specification%2C+2nd+Edition%2C+section+4.4.7%3A+%22The+CONSTANT_Utf8_info+Structure%22&amp;rft.atitle=&amp;rft.date=1999&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fdocs%2Fbooks%2Fjvms%2Fsecond_edition%2Fhtml%2FClassFile.doc.html%237963&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-21\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-21\">^</a></b></span> <span class=\"reference-text\">\"[...] encoded in modified UTF-8.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html#8299\">\"Java Object Serialization Specification, chapter 6: Object Serialization Stream Protocol, section 2: Stream Elements\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 2005<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html#8299\">http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html#8299</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+Object+Serialization+Specification%2C+chapter+6%3A+Object+Serialization+Stream+Protocol%2C+section+2%3A+Stream+Elements&amp;rft.atitle=&amp;rft.date=2005&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fjavase%2F6%2Fdocs%2Fplatform%2Fserialization%2Fspec%2Fprotocol.html%238299&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-22\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-22\">^</a></b></span> <span class=\"reference-text\">\"The JNI uses modified UTF-8 strings to represent various string types.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16542\">\"Java Native Interface Specification, chapter 3: JNI Types and Data Structures, section: Modified UTF-8 Strings\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 2003<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16542\">http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/types.html#wp16542</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+Native+Interface+Specification%2C+chapter+3%3A+JNI+Types+and+Data+Structures%2C+section%3A+Modified+UTF-8+Strings&amp;rft.atitle=&amp;rft.date=2003&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fj2se%2F1.5.0%2Fdocs%2Fguide%2Fjni%2Fspec%2Ftypes.html%23wp16542&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-23\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-23\">^</a></b></span> <span class=\"reference-text\">\"[...] differences between this format and the \"standard\" UTF-8 format.\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">\"The Java Virtual Machine Specification, 2nd Edition, section 4.4.7: \"The CONSTANT_Utf8_info Structure\"\"</a>. <a href=\"/wiki/Sun_Microsystems\" title=\"Sun Microsystems\">Sun Microsystems</a>. 1999<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963\">http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#7963</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-23</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=The+Java+Virtual+Machine+Specification%2C+2nd+Edition%2C+section+4.4.7%3A+%22The+CONSTANT_Utf8_info+Structure%22&amp;rft.atitle=&amp;rft.date=1999&amp;rft.pub=%5B%5BSun+Microsystems%5D%5D&amp;rft_id=http%3A%2F%2Fjava.sun.com%2Fdocs%2Fbooks%2Fjvms%2Fsecond_edition%2Fhtml%2FClassFile.doc.html%237963&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-24\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-24\">^</a></b></span> <span class=\"reference-text\">\"In orthodox UTF-8, a NUL byte(\\x00) is represented by a NUL byte. [...] But [...] we [...] want NUL bytes inside [...] strings [...]\"<span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://wiki.tcl.tk/_/revision?N=1211&amp;V=6\">\"Tcler's Wiki: UTF-8 bit by bit (Revision 6)\"</a>. 2009-04-25<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://wiki.tcl.tk/_/revision?N=1211&amp;V=6\">http://wiki.tcl.tk/_/revision?N=1211&amp;V=6</a></span><span class=\"reference-accessdate\">. Retrieved 2009-05-22</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Tcler%27s+Wiki%3A+UTF-8+bit+by+bit+%28Revision+6%29&amp;rft.atitle=&amp;rft.date=2009-04-25&amp;rft_id=http%3A%2F%2Fwiki.tcl.tk%2F_%2Frevision%3FN%3D1211%26V%3D6&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-25\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-25\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.ling.upenn.edu/courses/Spring_2003/ling538/Lecnotes/Unicode.html\">Computational Methods in Linguistic Research, 2004</a></span></li>\n<li id=\"cite_note-26\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-26\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/versions/Unicode6.0.0/ch02.pdf\">The Unicode Standard - Chapter 2</a>, see chapter 2.6 page 30 bottom.</span></li>\n<li id=\"cite_note-27\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-27\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/TR/REC-xml/#charencoding\">W3.org</a></span></li>\n<li id=\"cite_note-28\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-28\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/International/questions/qa-forms-utf-8\">W3 FAQ: Multilingual Forms</a>: a Perl regular expression to validate a UTF-8 string)</span></li>\n<li id=\"cite_note-29\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-29\">^</a></b></span> <span class=\"reference-text\">There are <span class=\"texhtml\">256 × 256 − 128 × 128</span> not-pure-ASCII two-byte sequences, and of those, only 1920 encode valid UTF-8 characters (the range U+0080 to U+07FF), so the proportion of valid not-pure-ASCII two-byte sequences is 3.9%. Note that this assumes that control characters pass as ASCII; without the control characters, the percentage proportions drop somewhat).</span></li>\n<li id=\"cite_note-30\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-30\">^</a></b></span> <span class=\"reference-text\"><a rel=\"nofollow\" class=\"external text\" href=\"http://tools.ietf.org/html/rfc3629#section-10\">Tools.ietf.org</a></span></li>\n<li id=\"cite_note-31\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-31\">^</a></b></span> <span class=\"reference-text\"><span class=\"citation web\"><a rel=\"nofollow\" class=\"external text\" href=\"http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful\">\"Should UTF-16 be considered harmful?\"</a>. Stackoverflow.com<span class=\"printonly\">. <a rel=\"nofollow\" class=\"external free\" href=\"http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful\">http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful</a></span><span class=\"reference-accessdate\">. Retrieved 2010-09-13</span>.</span><span class=\"Z3988\" title=\"ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Should+UTF-16+be+considered+harmful%3F&amp;rft.atitle=&amp;rft.pub=Stackoverflow.com&amp;rft_id=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F1049947%2Fshould-utf-16-be-considered-harmful&amp;rfr_id=info:sid/en.wikipedia.org:UTF-8\"><span style=\"display: none;\">&#160;</span></span></span></li>\n<li id=\"cite_note-32\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-32\">^</a></b></span> <span class=\"reference-text\">Although the difference may not be great: the 2010-11-22 version of <a href=\"//hi.wikipedia.org/wiki/%E0%A4%AF%E0%A5%82%E0%A4%A8%E0%A4%BF%E0%A4%95%E0%A5%8B%E0%A4%A1\" class=\"extiw\" title=\"hi:यूनिकोड\">hi:यूनिकोड</a> (Unicode in Hindi), when the pure text was pasted to Notepad, generated 19 KB when saved as UTF-16 and 22 KB when saved as UTF-8.</span></li>\n<li id=\"cite_note-33\"><span class=\"mw-cite-backlink\"><b><a href=\"#cite_ref-33\">^</a></b></span> <span class=\"reference-text\">The 2010-10-27 version of <a href=\"//ja.wikipedia.org/wiki/UTF-8\" class=\"extiw\" title=\"ja:UTF-8\">ja:UTF-8</a> generated 169 KB when converted with Notepad to UTF-16, and only 101 KB when converted back to UTF-8. The 2010-11-22 version of <a href=\"//hi.wikipedia.org/wiki/%E0%A4%AF%E0%A5%82%E0%A4%A8%E0%A4%BF%E0%A4%95%E0%A5%8B%E0%A4%A1\" class=\"extiw\" title=\"hi:यूनिकोड\">hi:यूनिकोड</a> (Unicode in Hindi) required 119 KB in UTF-16 and 76 KB in UTF-8.</span></li>\n</ol>\n</div>\n<h2><span class=\"editsection\">[<a href=\"/w/index.php?title=UTF-8&amp;action=edit&amp;section=29\" title=\"Edit section: External links\">edit</a>]</span> <span class=\"mw-headline\" id=\"External_links\">External links</span></h2>\n<p>There are several current definitions of UTF-8 in various standards documents:</p>\n<ul>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc3629\">RFC 3629</a> / STD 63 (2003), which establishes UTF-8 as a standard Internet protocol element</li>\n<li><i>The Unicode Standard, Version 6.0</i>, <a rel=\"nofollow\" class=\"external text\" href=\"http://www.unicode.org/versions/Unicode6.0.0/ch03.pdf\">§3.9 D92, §3.10 D95</a> (2011)</li>\n<li>ISO/IEC 10646:2003 Annex D (2003)</li>\n</ul>\n<p>They supersede the definitions given in the following obsolete works:</p>\n<ul>\n<li>ISO/IEC 10646-1:1993 Amendment 2 / Annex R (1996)</li>\n<li><i>The Unicode Standard, Version 5.0</i>, §3.9 D92, §3.10 D95 (2007)</li>\n<li><i>The Unicode Standard, Version 4.0</i>, §3.9–§3.10 (2003)</li>\n<li><i>The Unicode Standard, Version 2.0</i>, Appendix A (1996)</li>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc2044\">RFC 2044</a> (1996)</li>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc2279\">RFC 2279</a> (1998)</li>\n<li><i>The Unicode Standard, Version 3.0</i>, §2.3 (2000) plus Corrigendum #1&#160;: UTF-8 Shortest Form (2000)</li>\n<li><i>Unicode Standard Annex #27: Unicode 3.1</i> (2001)</li>\n</ul>\n<p>They are all the same in their general mechanics, with the main differences being on issues such as allowed range of code point values and safe handling of invalid input.</p>\n<ul>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://doc.cat-v.org/plan_9/4th_edition/papers/utf\">Original UTF-8 paper</a> (<a rel=\"nofollow\" class=\"external text\" href=\"http://plan9.bell-labs.com/sys/doc/utf.pdf\">or pdf</a>) for <a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9 from Bell Labs</a></li>\n<li><a class=\"external mw-magiclink-rfc\" href=\"//tools.ietf.org/html/rfc5198\">RFC 5198</a> defines UTF-8 <a href=\"/wiki/Unicode_equivalence\" title=\"Unicode equivalence\">NFC</a> for Network Interchange</li>\n<li>UTF-8 test pages by <a rel=\"nofollow\" class=\"external text\" href=\"http://www.user.uni-hannover.de/nhtcapri/multilingual1.html\">Andreas Prilop</a>, <a rel=\"nofollow\" class=\"external text\" href=\"http://titus.uni-frankfurt.de/indexe.htm?/unicode/unitest.htm\">Jost Gippert</a> and the <a rel=\"nofollow\" class=\"external text\" href=\"http://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html\">World Wide Web Consortium</a></li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://dotancohen.com/howto/email-utf8.html\">How to configure e-mail clients to send UTF-8 text</a></li>\n<li>Unix/Linux: <a rel=\"nofollow\" class=\"external text\" href=\"http://www.cl.cam.ac.uk/~mgk25/unicode.html\">UTF-8/Unicode FAQ</a>, <a rel=\"nofollow\" class=\"external text\" href=\"http://www.linux.org/docs/ldp/howto/Unicode-HOWTO.html\">Linux Unicode HOWTO</a>, <a rel=\"nofollow\" class=\"external text\" href=\"http://www.gentoo.org/doc/en/utf-8.xml\">UTF-8 and Gentoo</a></li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://www.utf8-chartable.de/\">The Unicode/UTF-8-character table</a> displays UTF-8 in a variety of formats (with Unicode and HTML encoding information)</li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://www.alanwood.net/unicode/browsers.html\">Unicode and Multilingual Web Browsers</a> from Alan Wood's Unicode Resources describes support and additional configuration of Unicode/UTF-8 in modern browsers</li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://jspwiki.org/wiki/JSPWikiBrowserCompatibility\">JSP Wiki Browser Compatibility page</a> details specific problems with UTF-8 in older browsers</li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://tlt.psu.edu/suggestions/international/bylanguage/math.html#browsers\">Mathematical Symbols in Unicode</a></li>\n<li><a rel=\"nofollow\" class=\"external text\" href=\"http://demo.icu-project.org/icu-bin/convexp?conv=UTF-8\">Graphical View of UTF-8 in ICU's Converter Explorer</a></li>\n</ul>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible collapsed navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Unicode_navigation\" title=\"Template:Unicode navigation\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/wiki/Template_talk:Unicode_navigation\" title=\"Template talk:Unicode navigation\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Unicode_navigation&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Unicode</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unicode_Consortium\" title=\"Unicode Consortium\">Unicode Consortium</a></li>\n<li><a href=\"/wiki/Universal_Character_Set\" title=\"Universal Character Set\">ISO/IEC 10646 (Universal Character Set)</a></li>\n<li><a href=\"/wiki/Unicode#Versions\" title=\"Unicode\">Versions</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Code_point\" title=\"Code point\">Code points</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unicode_block\" title=\"Unicode block\">Block</a></li>\n<li><a href=\"/wiki/Category:Unicode_charts\" title=\"Category:Unicode charts\">Character charts</a></li>\n<li><a href=\"/wiki/Unicode_character_property\" title=\"Unicode character property\">Character property</a></li>\n<li><a href=\"/wiki/Mapping_of_Unicode_characters\" title=\"Mapping of Unicode characters\">Mapping characters</a></li>\n<li><a href=\"/wiki/Plane_(Unicode)\" title=\"Plane (Unicode)\">Plane</a></li>\n<li><a href=\"/wiki/Private_Use_(Unicode)\" title=\"Private Use (Unicode)\">Private Use Area</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Characters</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\"></div>\n<table cellspacing=\"0\" class=\"nowraplinks navbox-subgroup\" style=\"border-spacing:0;;;;\">\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\"><a href=\"/wiki/Mapping_of_Unicode_characters#Special-purpose_characters\" title=\"Mapping of Unicode characters\">Special purpose</a></div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Byte_order_mark\" title=\"Byte order mark\">BOM</a></li>\n<li><a href=\"/wiki/Combining_grapheme_joiner\" title=\"Combining grapheme joiner\">Combining grapheme joiner</a></li>\n<li><a href=\"/wiki/Left-to-right_mark\" title=\"Left-to-right mark\">Left-to-right mark</a> / <a href=\"/wiki/Right-to-left_mark\" title=\"Right-to-left mark\">Right-to-left mark</a></li>\n<li><a href=\"/wiki/Soft_hyphen\" title=\"Soft hyphen\">Soft hyphen</a></li>\n<li><a href=\"/wiki/Zero-width_joiner\" title=\"Zero-width joiner\">Zero-width joiner</a></li>\n<li><a href=\"/wiki/Zero-width_non-breaking_space\" title=\"Zero-width non-breaking space\">Zero-width non-breaking space</a></li>\n<li><a href=\"/wiki/Zero-width_non-joiner\" title=\"Zero-width non-joiner\">Zero-width non-joiner</a></li>\n<li><a href=\"/wiki/Zero-width_space\" title=\"Zero-width space\">Zero-width space</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\">Lists</div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK Unified Ideographs</a></li>\n<li><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combining character</a></li>\n<li><a href=\"/wiki/Duplicate_characters_in_Unicode\" title=\"Duplicate characters in Unicode\">Duplicate characters</a></li>\n<li><a href=\"/wiki/Numerals_in_Unicode\" title=\"Numerals in Unicode\">Numerals</a></li>\n<li><a href=\"/wiki/Script_(Unicode)\" title=\"Script (Unicode)\">Scripts</a></li>\n<li><a href=\"/wiki/Space_(punctuation)#Spaces_in_Unicode\" title=\"Space (punctuation)\">Spaces</a></li>\n<li><a href=\"/wiki/Unicode_symbols\" title=\"Unicode symbols\">Symbols</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Processing</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\"></div>\n<table cellspacing=\"0\" class=\"nowraplinks navbox-subgroup\" style=\"border-spacing:0;;;;\">\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\">Algorithms</div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Bi-directional_text\" title=\"Bi-directional text\">Bi-directional text</a></li>\n<li><a href=\"/wiki/Unicode_collation_algorithm\" title=\"Unicode collation algorithm\">Collation</a>\n<ul>\n<li><a href=\"/wiki/ISO_14651\" title=\"ISO 14651\">ISO 14651</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Unicode_equivalence\" title=\"Unicode equivalence\">Equivalence</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";width:12em;padding-left:0em;padding-right:0em;;\">\n<div style=\"padding:0em 0.75em;\"><a href=\"/wiki/Comparison_of_Unicode_encodings\" title=\"Comparison of Unicode encodings\">Comparison</a></div>\n</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Binary_Ordered_Compression_for_Unicode\" title=\"Binary Ordered Compression for Unicode\">BOCU-1</a></li>\n<li><a href=\"/wiki/CESU-8\" title=\"CESU-8\">CESU-8</a></li>\n<li><a href=\"/wiki/Punycode\" title=\"Punycode\">Punycode</a></li>\n<li><a href=\"/wiki/Standard_Compression_Scheme_for_Unicode\" title=\"Standard Compression Scheme for Unicode\">SCSU</a></li>\n<li><a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a></li>\n<li><a href=\"/wiki/UTF-7\" title=\"UTF-7\">UTF-7</a></li>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n<li><a href=\"/wiki/UTF-9_and_UTF-18\" title=\"UTF-9 and UTF-18\">UTF-9/UTF-18</a></li>\n<li><a href=\"/wiki/UTF-16\" title=\"UTF-16\">UTF-16/UCS-2</a></li>\n<li><a href=\"/wiki/UTF-32\" title=\"UTF-32\">UTF-32/UCS-4</a></li>\n<li><a href=\"/wiki/UTF-EBCDIC\" title=\"UTF-EBCDIC\">UTF-EBCDIC</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">On pairs of<br />\ncode points</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combining character</a></li>\n<li><a href=\"/wiki/Unicode_compatibility_characters\" title=\"Unicode compatibility characters\">Compatibility characters</a></li>\n<li><a href=\"/wiki/Duplicate_characters_in_Unicode\" title=\"Duplicate characters in Unicode\">Duplicate characters</a></li>\n<li><a href=\"/wiki/Unicode_equivalence\" title=\"Unicode equivalence\">Equivalence</a></li>\n<li><a href=\"/wiki/Homoglyph\" title=\"Homoglyph\">Homoglyph</a></li>\n<li><a href=\"/wiki/Precomposed_character\" title=\"Precomposed character\">Precomposed character</a>\n<ul>\n<li><a href=\"/wiki/List_of_precomposed_Latin_characters_in_Unicode\" title=\"List of precomposed Latin characters in Unicode\">list</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Z-variant\" title=\"Z-variant\">Z-variant</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Usage</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Internationalized_domain_name\" title=\"Internationalized domain name\">Domain names (IDN)</a></li>\n<li><a href=\"/wiki/Unicode_and_email\" title=\"Unicode and email\">Email</a></li>\n<li><a href=\"/wiki/Unicode_font\" title=\"Unicode font\">Fonts</a></li>\n<li><a href=\"/wiki/Unicode_and_HTML\" title=\"Unicode and HTML\">HTML</a>\n<ul>\n<li><a href=\"/wiki/List_of_XML_and_HTML_character_entity_references\" title=\"List of XML and HTML character entity references\">entity references</a></li>\n<li><a href=\"/wiki/Numeric_character_reference\" title=\"Numeric character reference\">numeric reference</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Unicode_input\" title=\"Unicode input\">Input</a></li>\n<li><a href=\"/wiki/Private_Character_Editor\" title=\"Private Character Editor\">Private Character Editor (MS)</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Related standards</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Common_Locale_Data_Repository\" title=\"Common Locale Data Repository\">Common Locale Data Repository (CLDR)</a></li>\n<li><a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB 18030</a></li>\n<li><a href=\"/wiki/Han_unification\" title=\"Han unification\">Han unification</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859\" title=\"ISO/IEC 8859\">ISO/IEC 8859</a></li>\n<li><a href=\"/wiki/ISO_15924\" title=\"ISO 15924\">ISO 15924</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Related topics</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unicode_anomaly\" title=\"Unicode anomaly\">Anomalies</a></li>\n<li><a href=\"/wiki/ConScript_Unicode_Registry\" title=\"ConScript Unicode Registry\">ConScript Unicode Registry</a></li>\n<li><a href=\"/wiki/Ideographic_Rapporteur_Group\" title=\"Ideographic Rapporteur Group\">Ideographic Rapporteur Group</a></li>\n<li><a href=\"/wiki/International_Components_for_Unicode\" title=\"International Components for Unicode\">International Components for Unicode</a></li>\n<li><a href=\"/wiki/Category:People_involved_with_Unicode\" title=\"Category:People involved with Unicode\">People involved with Unicode</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<td colspan=\"2\" style=\"width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\"></div>\n<table cellspacing=\"0\" class=\"nowraplinks collapsible collapsed navbox-subgroup\" style=\"border-spacing:0;;;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\"><span style=\"float:left;width:6em;\">&#160;</span>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Script_(Unicode)\" title=\"Script (Unicode)\">Scripts</a> and symbols in Unicode</div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Script_(Unicode)#Common_and_inherited_scripts\" title=\"Script (Unicode)\">Common and<br />\ninherited scripts</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Combining_character\" title=\"Combining character\">Combining marks</a></li>\n<li><a href=\"/wiki/Diacritic\" title=\"Diacritic\">Diacritics</a></li>\n<li><a href=\"/wiki/Punctuation\" title=\"Punctuation\">Punctuation</a></li>\n<li><a href=\"/wiki/Space_(punctuation)#Spaces_in_Unicode\" title=\"Space (punctuation)\">Space</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Modern scripts</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Arabic_script\" title=\"Arabic script\">Arabic</a>\n<ul>\n<li><a href=\"/wiki/Arabic_diacritics\" title=\"Arabic diacritics\">diacritics</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Armenian_alphabet\" title=\"Armenian alphabet\">Armenian</a></li>\n<li><a href=\"/wiki/Balinese_alphabet\" title=\"Balinese alphabet\">Balinese</a></li>\n<li><a href=\"/wiki/Bamum_script\" title=\"Bamum script\">Bamum</a></li>\n<li><a href=\"/wiki/Batak_alphabet\" title=\"Batak alphabet\">Batak</a></li>\n<li><a href=\"/wiki/Bengali_alphabet\" title=\"Bengali alphabet\">Bengali</a></li>\n<li><a href=\"/wiki/Bopomofo\" title=\"Bopomofo\">Bopomofo</a></li>\n<li><a href=\"/wiki/Braille\" title=\"Braille\">Braille</a></li>\n<li><a href=\"/wiki/Buhid_alphabet\" title=\"Buhid alphabet\">Buhid</a></li>\n<li><a href=\"/wiki/Burmese_alphabet\" title=\"Burmese alphabet\">Burmese</a></li>\n<li><a href=\"/wiki/Canadian_Aboriginal_syllabics\" title=\"Canadian Aboriginal syllabics\">Canadian Aboriginal</a></li>\n<li><a href=\"/wiki/Chakma_alphabet\" title=\"Chakma alphabet\">Chakma</a></li>\n<li><a href=\"/wiki/Cham_alphabet\" title=\"Cham alphabet\">Cham</a></li>\n<li><a href=\"/wiki/Cherokee_syllabary\" title=\"Cherokee syllabary\">Cherokee</a></li>\n<li><a href=\"/wiki/CJK_Unified_Ideographs\" title=\"CJK Unified Ideographs\">CJK Unified Ideographs (Han)</a></li>\n<li><a href=\"/wiki/Cyrillic_script\" title=\"Cyrillic script\">Cyrillic</a></li>\n<li><a href=\"/wiki/Deseret_alphabet\" title=\"Deseret alphabet\">Deseret</a></li>\n<li><a href=\"/wiki/Devanagari\" title=\"Devanagari\">Devanagari</a></li>\n<li><a href=\"/wiki/Ge%27ez_script\" title=\"Ge'ez script\">Ge'ez</a></li>\n<li><a href=\"/wiki/Georgian_alphabet\" title=\"Georgian alphabet\">Georgian</a></li>\n<li><a href=\"/wiki/Greek_alphabet\" title=\"Greek alphabet\">Greek</a></li>\n<li><a href=\"/wiki/Gujarati_alphabet\" title=\"Gujarati alphabet\">Gujarati</a></li>\n<li><a href=\"/wiki/Gurmukh%C4%AB_alphabet\" title=\"Gurmukhī alphabet\">Gurmukhī</a></li>\n<li><a href=\"/wiki/Han_tu\" title=\"Han tu\">Han tu</a></li>\n<li><a href=\"/wiki/Hangul\" title=\"Hangul\">Hangul</a></li>\n<li><a href=\"/wiki/Hanja\" title=\"Hanja\">Hanja</a></li>\n<li><a href=\"/wiki/Hanun%C3%B3%27o_alphabet\" title=\"Hanunó'o alphabet\">Hanunó'o</a></li>\n<li><a href=\"/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet\" title=\"Unicode and HTML for the Hebrew alphabet\">Hebrew</a>\n<ul>\n<li><a href=\"/wiki/Hebrew_diacritics\" title=\"Hebrew diacritics\">diacritics</a></li>\n</ul>\n</li>\n<li><a href=\"/wiki/Hiragana\" title=\"Hiragana\">Hiragana</a></li>\n<li><a href=\"/wiki/Javanese_alphabet\" title=\"Javanese alphabet\">Javanese</a></li>\n<li><a href=\"/wiki/Kanji\" title=\"Kanji\">Kanji</a></li>\n<li><a href=\"/wiki/Kannada_alphabet\" title=\"Kannada alphabet\">Kannada</a></li>\n<li><a href=\"/wiki/Katakana\" title=\"Katakana\">Katakana</a></li>\n<li><a href=\"/wiki/Kayah_Li_alphabet\" title=\"Kayah Li alphabet\">Kayah Li</a></li>\n<li><a href=\"/wiki/Khmer_alphabet\" title=\"Khmer alphabet\">Khmer</a></li>\n<li><a href=\"/wiki/Lao_alphabet\" title=\"Lao alphabet\">Lao</a></li>\n<li><a href=\"/wiki/Latin_script_in_Unicode\" title=\"Latin script in Unicode\">Latin</a></li>\n<li><a href=\"/wiki/Lepcha_alphabet\" title=\"Lepcha alphabet\">Lepcha</a></li>\n<li><a href=\"/wiki/Limbu_alphabet\" title=\"Limbu alphabet\">Limbu</a></li>\n<li><a href=\"/wiki/Fraser_alphabet\" title=\"Fraser alphabet\">Lisu (Fraser)</a></li>\n<li><a href=\"/wiki/Lontara_alphabet\" title=\"Lontara alphabet\">Lontara</a></li>\n<li><a href=\"/wiki/Malayalam_alphabet\" title=\"Malayalam alphabet\">Malayalam</a></li>\n<li><a href=\"/wiki/Manchu_alphabet\" title=\"Manchu alphabet\">Manchu</a></li>\n<li><a href=\"/wiki/Mandaic_alphabet\" title=\"Mandaic alphabet\">Mandaic</a></li>\n<li><a href=\"/wiki/Meitei_Mayek_alphabet\" title=\"Meitei Mayek alphabet\">Meetei Mayek</a></li>\n<li><a href=\"/wiki/Pollard_script\" title=\"Pollard script\">Miao (Pollard)</a></li>\n<li><a href=\"/wiki/Mongolian_script\" title=\"Mongolian script\">Mongolian</a></li>\n<li><a href=\"/wiki/N%27Ko_alphabet\" title=\"N'Ko alphabet\">N'Ko</a></li>\n<li><a href=\"/wiki/New_Tai_Lue_alphabet\" title=\"New Tai Lue alphabet\">New Tai Lue</a></li>\n<li><a href=\"/wiki/Ol_Chiki_alphabet\" title=\"Ol Chiki alphabet\">Ol Chiki</a></li>\n<li><a href=\"/wiki/Oriya_alphabet\" title=\"Oriya alphabet\">Oriya</a></li>\n<li><a href=\"/wiki/Osmanya_alphabet\" title=\"Osmanya alphabet\">Osmanya</a></li>\n<li><a href=\"/wiki/Rejang_alphabet\" title=\"Rejang alphabet\">Rejang</a></li>\n<li><a href=\"/wiki/Samaritan_alphabet\" title=\"Samaritan alphabet\">Samaritan</a></li>\n<li><a href=\"/wiki/%C5%9A%C4%81rad%C4%81_script\" title=\"Śāradā script\">Śāradā</a></li>\n<li><a href=\"/wiki/Saurashtra_alphabet\" title=\"Saurashtra alphabet\">Saurashtra</a></li>\n<li><a href=\"/wiki/Shavian_alphabet\" title=\"Shavian alphabet\">Shavian</a></li>\n<li><a href=\"/wiki/Sinhala_alphabet\" title=\"Sinhala alphabet\">Sinhala</a></li>\n<li><a href=\"/wiki/Sorang_Sompeng_alphabet\" title=\"Sorang Sompeng alphabet\">Sorang Sompeng</a></li>\n<li><a href=\"/wiki/Sundanese_alphabet\" title=\"Sundanese alphabet\">Sundanese</a></li>\n<li><a href=\"/wiki/Sylheti_Nagari\" title=\"Sylheti Nagari\">Sylheti Nagari</a></li>\n<li><a href=\"/wiki/Syriac_alphabet\" title=\"Syriac alphabet\">Syriac</a></li>\n<li><a href=\"/wiki/Baybayin\" title=\"Baybayin\">Tagalog (Baybayin)</a></li>\n<li><a href=\"/wiki/Tagbanwa_alphabet\" title=\"Tagbanwa alphabet\">Tagbanwa</a></li>\n<li><a href=\"/wiki/Tai_Le_alphabet\" title=\"Tai Le alphabet\">Tai Le</a></li>\n<li><a href=\"/wiki/Tai_Tham_alphabet\" title=\"Tai Tham alphabet\">Tai Tham</a></li>\n<li><a href=\"/wiki/Tai_Dam_language#Writing_system\" title=\"Tai Dam language\">Tai Viet</a></li>\n<li><a href=\"/wiki/Takri_alphabet\" title=\"Takri alphabet\">Takri</a></li>\n<li><a href=\"/wiki/Tamil_script\" title=\"Tamil script\">Tamil</a></li>\n<li><a href=\"/wiki/Telugu_alphabet\" title=\"Telugu alphabet\">Telugu</a></li>\n<li><a href=\"/wiki/Thaana\" title=\"Thaana\">Thaana</a></li>\n<li><a href=\"/wiki/Thai_alphabet\" title=\"Thai alphabet\">Thai</a></li>\n<li><a href=\"/wiki/Tibetan_alphabet\" title=\"Tibetan alphabet\">Tibetan</a></li>\n<li><a href=\"/wiki/Tifinagh\" title=\"Tifinagh\">Tifinagh</a></li>\n<li><a href=\"/wiki/Vai_syllabary\" title=\"Vai syllabary\">Vai</a></li>\n<li><a href=\"/wiki/Yi_script\" title=\"Yi script\">Yi</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Ancient and<br />\nhistoric scripts</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Avestan_alphabet\" title=\"Avestan alphabet\">Avestan</a></li>\n<li><a href=\"/wiki/Br%C4%81hm%C4%AB_script\" title=\"Brāhmī script\">Brāhmī</a></li>\n<li><a href=\"/wiki/Carian_alphabets\" title=\"Carian alphabets\">Carian</a></li>\n<li><a href=\"/wiki/Coptic_alphabet\" title=\"Coptic alphabet\">Coptic</a></li>\n<li><a href=\"/wiki/Cuneiform\" title=\"Cuneiform\">Cuneiform</a></li>\n<li><a href=\"/wiki/Cypriot_syllabary\" title=\"Cypriot syllabary\">Cypriot</a></li>\n<li><a href=\"/wiki/Egyptian_hieroglyphs\" title=\"Egyptian hieroglyphs\">Egyptian hieroglyphs</a></li>\n<li><a href=\"/wiki/Glagolitic_alphabet\" title=\"Glagolitic alphabet\">Glagolitic</a></li>\n<li><a href=\"/wiki/Gothic_alphabet\" title=\"Gothic alphabet\">Gothic</a></li>\n<li><a href=\"/wiki/Aramaic_language#Imperial_Aramaic\" title=\"Aramaic language\">Imperial Aramaic</a></li>\n<li><a href=\"/wiki/Pahlavi_scripts#Inscriptional_Pahlavi\" title=\"Pahlavi scripts\">Inscriptional Pahlavi</a></li>\n<li><a href=\"/wiki/Parthian_language#Written_Parthian\" title=\"Parthian language\">Inscriptional Parthian</a></li>\n<li><a href=\"/wiki/Kaithi\" title=\"Kaithi\">Kaithi</a></li>\n<li><a href=\"/wiki/Kharosthi\" title=\"Kharosthi\">Kharosthi</a></li>\n<li><a href=\"/wiki/Linear_B\" title=\"Linear B\">Linear B</a></li>\n<li><a href=\"/wiki/Lycian_alphabet\" title=\"Lycian alphabet\">Lycian</a></li>\n<li><a href=\"/wiki/Lydian_alphabet\" title=\"Lydian alphabet\">Lydian</a></li>\n<li><a href=\"/wiki/Meroitic_alphabet\" title=\"Meroitic alphabet\">Meroitic</a></li>\n<li><a href=\"/wiki/Ogham\" title=\"Ogham\">Ogham</a></li>\n<li><a href=\"/wiki/Old_Italic_script\" title=\"Old Italic script\">Old Italic</a></li>\n<li><a href=\"/wiki/Old_Persian_cuneiform\" title=\"Old Persian cuneiform\">Old Persian cuneiform</a></li>\n<li><a href=\"/wiki/Old_Turkic_alphabet\" title=\"Old Turkic alphabet\">Old Turkic</a></li>\n<li><a href=\"/wiki/%27Phags-pa_script\" title=\"'Phags-pa script\">'Phags-pa</a></li>\n<li><a href=\"/wiki/Phoenician_alphabet\" title=\"Phoenician alphabet\">Phoenician</a></li>\n<li><a href=\"/wiki/Runes\" title=\"Runes\">Runic</a></li>\n<li><a href=\"/wiki/South_Arabian_alphabet\" title=\"South Arabian alphabet\">South Arabian</a></li>\n<li><a href=\"/wiki/Ugaritic_alphabet\" title=\"Ugaritic alphabet\">Ugaritic</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Symbols</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Cultural,_political,_and_religious_symbols_in_Unicode\" title=\"Cultural, political, and religious symbols in Unicode\">Cultural, political, and religious symbols</a></li>\n<li><a href=\"/wiki/Currency_sign\" title=\"Currency sign\">Currency</a></li>\n<li><a href=\"/wiki/Mathematical_operators_and_symbols_in_Unicode\" title=\"Mathematical operators and symbols in Unicode\">Mathematical operators and symbols</a></li>\n<li><a href=\"/wiki/Phonetic_symbols_in_Unicode\" title=\"Phonetic symbols in Unicode\">Phonetic symbols (including IPA)</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Character_encoding\" title=\"Template:Character encoding\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/wiki/Template_talk:Character_encoding\" title=\"Template talk:Character encoding\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Character_encoding&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Character_encoding\" title=\"Character encoding\">Character encodings</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<td class=\"navbox-abovebelow\" style=\";\" colspan=\"2\">\n<div><img alt=\"Category\" src=\"//upload.wikimedia.org/wikipedia/en/thumb/4/48/Folder_Hexagonal_Icon.svg/16px-Folder_Hexagonal_Icon.svg.png\" width=\"16\" height=\"14\" /> <a href=\"/wiki/Category:Character_sets\" title=\"Category:Character sets\">Character sets</a></div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Early telecommunications</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ASCII\" title=\"ASCII\">ASCII</a></li>\n<li><a href=\"/wiki/ISO/IEC_646\" title=\"ISO/IEC 646\">ISO/IEC 646</a></li>\n<li><a href=\"/wiki/ISO/IEC_6937\" title=\"ISO/IEC 6937\">ISO/IEC 6937</a></li>\n<li><a href=\"/wiki/T.61_(ITU-T_recommendation)\" title=\"T.61 (ITU-T recommendation)\" class=\"mw-redirect\">T.61</a></li>\n<li><a href=\"/wiki/BCD_(6-bit)\" title=\"BCD (6-bit)\">BCD (6-bit)</a></li>\n<li><a href=\"/wiki/Baudot_code\" title=\"Baudot code\">Baudot code</a></li>\n<li><a href=\"/wiki/Morse_code\" title=\"Morse code\">Morse code</a></li>\n<li><a href=\"/wiki/Chinese_telegraph_code\" title=\"Chinese telegraph code\">Chinese telegraph code</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/ISO/IEC_8859\" title=\"ISO/IEC 8859\">ISO/IEC 8859</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ISO/IEC_8859-1\" title=\"ISO/IEC 8859-1\">-1</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-2\" title=\"ISO/IEC 8859-2\">-2</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-3\" title=\"ISO/IEC 8859-3\">-3</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-4\" title=\"ISO/IEC 8859-4\">-4</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-5\" title=\"ISO/IEC 8859-5\">-5</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-6\" title=\"ISO/IEC 8859-6\">-6</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-7\" title=\"ISO/IEC 8859-7\">-7</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-8\" title=\"ISO/IEC 8859-8\">-8</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-9\" title=\"ISO/IEC 8859-9\">-9</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-10\" title=\"ISO/IEC 8859-10\">-10</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-11\" title=\"ISO/IEC 8859-11\">-11</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-12\" title=\"ISO/IEC 8859-12\">-12</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-13\" title=\"ISO/IEC 8859-13\">-13</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-14\" title=\"ISO/IEC 8859-14\">-14</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-15\" title=\"ISO/IEC 8859-15\">-15</a></li>\n<li><a href=\"/wiki/ISO/IEC_8859-16\" title=\"ISO/IEC 8859-16\">-16</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Bibliographic use</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ANSEL\" title=\"ANSEL\">ANSEL</a></li>\n<li>ISO 5426 / 5426-2 / 5427 / 5428 / <a href=\"/wiki/ISO_6438\" title=\"ISO 6438\">6438</a> / 6861 / 6862 / 10585 / 10586 / 10754 / 11822</li>\n<li><a href=\"/wiki/MARC-8\" title=\"MARC-8\">MARC-8</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">National standards</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ArmSCII\" title=\"ArmSCII\">ArmSCII</a></li>\n<li><a href=\"/wiki/CNS_11643\" title=\"CNS 11643\">CNS 11643</a></li>\n<li><a href=\"/wiki/GOST_10859\" title=\"GOST 10859\">GOST 10859</a></li>\n<li><a href=\"/wiki/GB_2312\" title=\"GB 2312\">GB 2312</a></li>\n<li><a href=\"/wiki/HKSCS\" title=\"HKSCS\">HKSCS</a></li>\n<li><a href=\"/wiki/ISCII\" title=\"ISCII\" class=\"mw-redirect\">ISCII</a></li>\n<li><a href=\"/wiki/JIS_X_0201\" title=\"JIS X 0201\">JIS X 0201</a></li>\n<li><a href=\"/wiki/JIS_X_0208\" title=\"JIS X 0208\">JIS X 0208</a></li>\n<li><a href=\"/wiki/JIS_X_0212\" title=\"JIS X 0212\">JIS X 0212</a></li>\n<li><a href=\"/wiki/JIS_X_0213\" title=\"JIS X 0213\">JIS X 0213</a></li>\n<li><a href=\"/wiki/KPS_9566\" title=\"KPS 9566\">KPS 9566</a></li>\n<li><a href=\"/wiki/KS_X_1001\" title=\"KS X 1001\">KS X 1001</a></li>\n<li><a href=\"/wiki/Perso-Arabic_Script_Code_for_Information_Interchange\" title=\"Perso-Arabic Script Code for Information Interchange\">PASCII</a></li>\n<li><a href=\"/wiki/TIS-620\" title=\"TIS-620\" class=\"mw-redirect\">TIS-620</a></li>\n<li><a href=\"/wiki/TSCII\" title=\"TSCII\" class=\"mw-redirect\">TSCII</a></li>\n<li><a href=\"/wiki/VISCII\" title=\"VISCII\" class=\"mw-redirect\">VISCII</a></li>\n<li><a href=\"/wiki/YUSCII\" title=\"YUSCII\">YUSCII</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Extended_Unix_Code\" title=\"Extended Unix Code\">EUC</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/EUC-CN\" title=\"EUC-CN\" class=\"mw-redirect\">CN</a></li>\n<li><a href=\"/wiki/EUC-JP\" title=\"EUC-JP\" class=\"mw-redirect\">JP</a></li>\n<li><a href=\"/wiki/EUC-KR\" title=\"EUC-KR\" class=\"mw-redirect\">KR</a></li>\n<li><a href=\"/wiki/EUC-TW\" title=\"EUC-TW\" class=\"mw-redirect\">TW</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/ISO/IEC_2022\" title=\"ISO/IEC 2022\">ISO/IEC 2022</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li>CN</li>\n<li><a href=\"/wiki/ISO-2022-JP\" title=\"ISO-2022-JP\" class=\"mw-redirect\">JP</a></li>\n<li><a href=\"/wiki/ISO-2022-KR\" title=\"ISO-2022-KR\" class=\"mw-redirect\">KR</a></li>\n<li><a href=\"/wiki/CCCII\" title=\"CCCII\" class=\"mw-redirect\">CCCII</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:Mac_OS_character_encodings\" title=\"Category:Mac OS character encodings\">MacOS codepages (\"scripts\")</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/MacArabic_encoding\" title=\"MacArabic encoding\">Arabic</a></li>\n<li><a href=\"/wiki/Macintosh_Central_European_encoding\" title=\"Macintosh Central European encoding\">CentralEurRoman</a></li>\n<li>ChineseSimp / <a href=\"/wiki/EUC-CN\" title=\"EUC-CN\" class=\"mw-redirect\">EUC-CN</a></li>\n<li>ChineseTrad / <a href=\"/wiki/Big5\" title=\"Big5\">Big5</a></li>\n<li>Croatian</li>\n<li><a href=\"/wiki/Macintosh_Cyrillic_encoding\" title=\"Macintosh Cyrillic encoding\">Cyrillic</a></li>\n<li>Devanagari</li>\n<li>Dingbats</li>\n<li>Farsi</li>\n<li>Greek</li>\n<li>Gujarati</li>\n<li>Gurmukhi</li>\n<li>Hebrew</li>\n<li><a href=\"/wiki/Mac_Icelandic_encoding\" title=\"Mac Icelandic encoding\">Icelandic</a></li>\n<li>Japanese / <a href=\"/wiki/Shift_JIS\" title=\"Shift JIS\">ShiftJIS</a></li>\n<li>Korean / <a href=\"/wiki/EUC-KR\" title=\"EUC-KR\" class=\"mw-redirect\">EUC-KR</a></li>\n<li><a href=\"/wiki/Mac_OS_Roman\" title=\"Mac OS Roman\">Roman</a></li>\n<li>Romanian</li>\n<li>Symbol</li>\n<li>Thai / <a href=\"/wiki/TIS-620\" title=\"TIS-620\" class=\"mw-redirect\">TIS-620</a></li>\n<li>Turkish</li>\n<li><a href=\"/wiki/Macintosh_Ukrainian_encoding\" title=\"Macintosh Ukrainian encoding\">Ukrainian</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:DOS_code_pages\" title=\"Category:DOS code pages\">DOS codepages</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Code_page_437\" title=\"Code page 437\">437</a></li>\n<li><a href=\"/wiki/Code_page_720\" title=\"Code page 720\">720</a></li>\n<li><a href=\"/wiki/Code_page_737\" title=\"Code page 737\">737</a></li>\n<li><a href=\"/wiki/Code_page_775\" title=\"Code page 775\">775</a></li>\n<li><a href=\"/wiki/Code_page_850\" title=\"Code page 850\">850</a></li>\n<li><a href=\"/wiki/Code_page_852\" title=\"Code page 852\">852</a></li>\n<li><a href=\"/wiki/Code_page_855\" title=\"Code page 855\">855</a></li>\n<li><a href=\"/wiki/Code_page_857\" title=\"Code page 857\">857</a></li>\n<li><a href=\"/wiki/Code_page_858\" title=\"Code page 858\">858</a></li>\n<li><a href=\"/wiki/Code_page_860\" title=\"Code page 860\">860</a></li>\n<li><a href=\"/wiki/Code_page_861\" title=\"Code page 861\">861</a></li>\n<li><a href=\"/wiki/Code_page_862\" title=\"Code page 862\">862</a></li>\n<li><a href=\"/wiki/Code_page_863\" title=\"Code page 863\">863</a></li>\n<li><a href=\"/wiki/Code_page_864\" title=\"Code page 864\">864</a></li>\n<li><a href=\"/wiki/Code_page_865\" title=\"Code page 865\">865</a></li>\n<li><a href=\"/wiki/Code_page_866\" title=\"Code page 866\">866</a></li>\n<li><a href=\"/wiki/Code_page_869\" title=\"Code page 869\">869</a></li>\n<li><a href=\"/wiki/Kamenick%C3%BD_encoding\" title=\"Kamenický encoding\">Kamenický</a></li>\n<li><a href=\"/wiki/Mazovia_encoding\" title=\"Mazovia encoding\">Mazovia</a></li>\n<li><a href=\"/wiki/MIK_Code_page\" title=\"MIK Code page\" class=\"mw-redirect\">MIK</a></li>\n<li><a href=\"/wiki/Iran_System_encoding_standard\" title=\"Iran System encoding standard\">Iran System</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:Windows_code_pages\" title=\"Category:Windows code pages\">Windows codepages</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Windows-874\" title=\"Windows-874\" class=\"mw-redirect\">874</a> / <a href=\"/wiki/TIS-620\" title=\"TIS-620\" class=\"mw-redirect\">TIS-620</a></li>\n<li><a href=\"/wiki/Code_page_932\" title=\"Code page 932\">932</a> / <a href=\"/wiki/Shift_JIS\" title=\"Shift JIS\">Shift JIS</a></li>\n<li><a href=\"/wiki/Code_page_936\" title=\"Code page 936\">936</a> / <a href=\"/wiki/GBK\" title=\"GBK\">GBK</a></li>\n<li><a href=\"/wiki/Code_page_949\" title=\"Code page 949\">949</a> / <a href=\"/wiki/EUC-KR\" title=\"EUC-KR\" class=\"mw-redirect\">EUC-KR</a></li>\n<li><a href=\"/wiki/Code_page_950\" title=\"Code page 950\">950</a> / <a href=\"/wiki/Big5\" title=\"Big5\">Big5</a></li>\n<li><a href=\"/wiki/Windows-1250\" title=\"Windows-1250\">1250</a></li>\n<li><a href=\"/wiki/Windows-1251\" title=\"Windows-1251\">1251</a></li>\n<li><a href=\"/wiki/Windows-1252\" title=\"Windows-1252\">1252</a></li>\n<li><a href=\"/wiki/Windows-1253\" title=\"Windows-1253\">1253</a></li>\n<li><a href=\"/wiki/Windows-1254\" title=\"Windows-1254\">1254</a></li>\n<li><a href=\"/wiki/Windows-1255\" title=\"Windows-1255\">1255</a></li>\n<li><a href=\"/wiki/Windows-1256\" title=\"Windows-1256\">1256</a></li>\n<li><a href=\"/wiki/Windows-1257\" title=\"Windows-1257\">1257</a></li>\n<li><a href=\"/wiki/Windows-1258\" title=\"Windows-1258\">1258</a></li>\n<li><a href=\"/w/index.php?title=Code_page_1361&amp;action=edit&amp;redlink=1\" class=\"new\" title=\"Code page 1361 (page does not exist)\">1361</a></li>\n<li><a href=\"/wiki/Windows-54936\" title=\"Windows-54936\" class=\"mw-redirect\">54936</a> / <a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB18030</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Category:EBCDIC_code_pages\" title=\"Category:EBCDIC code pages\">EBCDIC codepages</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/EBCDIC_037\" title=\"EBCDIC 037\">37/1140</a></li>\n<li>273/1141</li>\n<li>277/1142</li>\n<li>278/1143</li>\n<li>280/1144</li>\n<li>284/1145</li>\n<li><a href=\"/wiki/EBCDIC_285\" title=\"EBCDIC 285\">285/1146</a></li>\n<li>297/1147</li>\n<li>420/16804</li>\n<li>424/12712</li>\n<li><a href=\"/wiki/EBCDIC_500\" title=\"EBCDIC 500\">500/1148</a></li>\n<li>838/1160</li>\n<li>871/1149</li>\n<li><a href=\"/wiki/EBCDIC_875\" title=\"EBCDIC 875\">875/9067</a></li>\n<li><a href=\"/wiki/EBCDIC_930\" title=\"EBCDIC 930\">930/1390</a></li>\n<li>933/1364</li>\n<li>937/1371</li>\n<li>935/1388</li>\n<li>939/1399</li>\n<li>1025/1154</li>\n<li>1026/1155</li>\n<li><a href=\"/wiki/EBCDIC_1047\" title=\"EBCDIC 1047\">1047/924</a></li>\n<li>1112/1156</li>\n<li>1122/1157</li>\n<li>1123/1158</li>\n<li>1130/1164</li>\n<li><a href=\"/wiki/JEF_codepage\" title=\"JEF codepage\">JEF</a></li>\n<li><a href=\"/wiki/KEIS\" title=\"KEIS\">KEIS</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Platform specific</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/ATASCII\" title=\"ATASCII\">ATASCII</a></li>\n<li><a href=\"/wiki/CDC_display_code\" title=\"CDC display code\">CDC display code</a></li>\n<li><a href=\"/wiki/Multinational_Character_Set\" title=\"Multinational Character Set\">DEC-MCS</a></li>\n<li><a href=\"/wiki/DEC_Radix-50\" title=\"DEC Radix-50\">DEC Radix-50</a></li>\n<li><a href=\"/wiki/Fieldata\" title=\"Fieldata\">Fieldata</a></li>\n<li><a href=\"/wiki/GSM_03.38\" title=\"GSM 03.38\">GSM 03.38</a></li>\n<li><a href=\"/wiki/HP_roman8\" title=\"HP roman8\">HP roman8</a></li>\n<li><a href=\"/wiki/PETSCII\" title=\"PETSCII\">PETSCII</a></li>\n<li><a href=\"/wiki/TI_calculator_character_sets\" title=\"TI calculator character sets\">TI calculator character sets</a></li>\n<li><a href=\"/wiki/Wang_International_Standard_Code_for_Information_Interchange\" title=\"Wang International Standard Code for Information Interchange\">WISCII</a></li>\n<li><a href=\"/wiki/ZX_Spectrum_character_set\" title=\"ZX Spectrum character set\">ZX Spectrum character set</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\"><a href=\"/wiki/Unicode\" title=\"Unicode\">Unicode</a> / <a href=\"/wiki/ISO/IEC_10646\" title=\"ISO/IEC 10646\" class=\"mw-redirect\">ISO/IEC 10646</a></th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n<li><a href=\"/wiki/UTF-16/UCS-2\" title=\"UTF-16/UCS-2\" class=\"mw-redirect\">UTF-16/UCS-2</a></li>\n<li><a href=\"/wiki/UTF-32/UCS-4\" title=\"UTF-32/UCS-4\" class=\"mw-redirect\">UTF-32/UCS-4</a></li>\n<li><a href=\"/wiki/UTF-7\" title=\"UTF-7\">UTF-7</a></li>\n<li><a href=\"/wiki/UTF-1\" title=\"UTF-1\">UTF-1</a></li>\n<li><a href=\"/wiki/UTF-EBCDIC\" title=\"UTF-EBCDIC\">UTF-EBCDIC</a></li>\n<li><a href=\"/wiki/GB_18030\" title=\"GB 18030\">GB 18030</a></li>\n<li><a href=\"/wiki/Standard_Compression_Scheme_for_Unicode\" title=\"Standard Compression Scheme for Unicode\">SCSU</a></li>\n<li><a href=\"/wiki/Binary_Ordered_Compression_for_Unicode\" title=\"Binary Ordered Compression for Unicode\">BOCU-1</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Miscellaneous codepages</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/APL_(codepage)\" title=\"APL (codepage)\">APL</a></li>\n<li><a href=\"/wiki/Cork_encoding\" title=\"Cork encoding\">Cork</a></li>\n<li><a href=\"/wiki/HZ_(character_encoding)\" title=\"HZ (character encoding)\">HZ</a></li>\n<li><a href=\"/wiki/Code_page_1133\" title=\"Code page 1133\">IBM code page 1133</a></li>\n<li><a href=\"/wiki/KOI_character_encodings\" title=\"KOI character encodings\">KOI8</a></li>\n<li><a href=\"/wiki/TRON_(encoding)\" title=\"TRON (encoding)\">TRON</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Related topics</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd hlist\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Control_character\" title=\"Control character\">control character</a>&#160;(<a href=\"/wiki/C0_and_C1_control_codes\" title=\"C0 and C1 control codes\">C0 C1</a>)</li>\n<li><a href=\"/wiki/CCSID\" title=\"CCSID\">CCSID</a></li>\n<li><a href=\"/wiki/Character_encodings_in_HTML\" title=\"Character encodings in HTML\">Character encodings in HTML</a></li>\n<li><a href=\"/wiki/Charset_detection\" title=\"Charset detection\">charset detection</a></li>\n<li><a href=\"/wiki/Han_unification\" title=\"Han unification\">Han unification</a></li>\n<li><a href=\"/wiki/ISO/IEC_6429\" title=\"ISO/IEC 6429\" class=\"mw-redirect\">ISO 6429/IEC 6429/ANSI X3.64</a></li>\n<li><a href=\"/wiki/Mojibake\" title=\"Mojibake\">mojibake</a></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks hlist collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Rob_Pike_navbox\" title=\"Template:Rob Pike navbox\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/w/index.php?title=Template_talk:Rob_Pike_navbox&amp;action=edit&amp;redlink=1\" class=\"new\" title=\"Template talk:Rob Pike navbox (page does not exist)\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Rob_Pike_navbox&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Rob_Pike\" title=\"Rob Pike\">Rob Pike</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Operating systems</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9 from Bell Labs</a></li>\n<li><a href=\"/wiki/Inferno_(operating_system)\" title=\"Inferno (operating system)\">Inferno</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Programming languages</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Newsqueak\" title=\"Newsqueak\">Newsqueak</a></li>\n<li><a href=\"/wiki/Limbo_(programming_language)\" title=\"Limbo (programming language)\">Limbo</a></li>\n<li><a href=\"/wiki/Go_(programming_language)\" title=\"Go (programming language)\">Go</a></li>\n<li><a href=\"/wiki/Sawzall_(programming_language)\" title=\"Sawzall (programming language)\">Sawzall</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Software</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Acme_(text_editor)\" title=\"Acme (text editor)\">acme</a></li>\n<li><a href=\"/wiki/Blit_(computer_terminal)\" title=\"Blit (computer terminal)\">Blit</a></li>\n<li><a href=\"/wiki/Sam_(text_editor)\" title=\"Sam (text editor)\">sam</a></li>\n<li><a href=\"/wiki/Rio_(windowing_system)\" title=\"Rio (windowing system)\">rio</a></li>\n<li><a href=\"/wiki/8%C2%BD_(Plan_9)\" title=\"8½ (Plan 9)\">8½</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Publications</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><i><a href=\"/wiki/The_Practice_of_Programming\" title=\"The Practice of Programming\">The Practice of Programming</a></i></li>\n<li><i><a href=\"/wiki/The_Unix_Programming_Environment\" title=\"The Unix Programming Environment\">The Unix Programming Environment</a></i></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Other</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Ren%C3%A9e_French\" title=\"Renée French\">Renée French</a></li>\n<li><a href=\"/wiki/Mark_V_Shaney\" title=\"Mark V Shaney\">Mark V Shaney</a></li>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n<table cellspacing=\"0\" class=\"navbox\" style=\"border-spacing:0;;\">\n<tr>\n<td style=\"padding:2px;\">\n<table cellspacing=\"0\" class=\"nowraplinks hlist collapsible autocollapse navbox-inner\" style=\"border-spacing:0;background:transparent;color:inherit;;\">\n<tr>\n<th scope=\"col\" style=\";\" class=\"navbox-title\" colspan=\"2\">\n<div class=\"noprint plainlinks hlist navbar mini\" style=\"\">\n<ul>\n<li class=\"nv-view\"><a href=\"/wiki/Template:Ken_Thompson_navbox\" title=\"Template:Ken Thompson navbox\"><span title=\"View this template\" style=\";;background:none transparent;border:none;\">v</span></a></li>\n<li class=\"nv-talk\"><a href=\"/w/index.php?title=Template_talk:Ken_Thompson_navbox&amp;action=edit&amp;redlink=1\" class=\"new\" title=\"Template talk:Ken Thompson navbox (page does not exist)\"><span title=\"Discuss this template\" style=\";;background:none transparent;border:none;\">t</span></a></li>\n<li class=\"nv-edit\"><a class=\"external text\" href=\"//en.wikipedia.org/w/index.php?title=Template:Ken_Thompson_navbox&amp;action=edit\"><span title=\"Edit this template\" style=\";;background:none transparent;border:none;\">e</span></a></li>\n</ul>\n</div>\n<div class=\"\" style=\"font-size:110%;\"><a href=\"/wiki/Ken_Thompson\" title=\"Ken Thompson\">Ken Thompson</a></div>\n</th>\n</tr>\n<tr style=\"height:2px;\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Operating systems</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Unix\" title=\"Unix\">Unix</a></li>\n<li><a href=\"/wiki/Plan_9_from_Bell_Labs\" title=\"Plan 9 from Bell Labs\">Plan 9 from Bell Labs</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Programming languages</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/B_(programming_language)\" title=\"B (programming language)\">B</a></li>\n<li><a href=\"/wiki/Bon_(programming_language)\" title=\"Bon (programming language)\">Bon</a></li>\n<li><a href=\"/wiki/Go_(programming_language)\" title=\"Go (programming language)\">Go</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Software</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-odd\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><a href=\"/wiki/Belle_(chess_machine)\" title=\"Belle (chess machine)\">Belle</a></li>\n<li><a href=\"/wiki/Ed_(text_editor)\" title=\"Ed (text editor)\">ed</a></li>\n<li><a href=\"/wiki/Sam_(text_editor)\" title=\"Sam (text editor)\">sam</a></li>\n<li><a href=\"/wiki/Space_Travel_(video_game)\" title=\"Space Travel (video game)\">Space Travel</a></li>\n</ul>\n</div>\n</td>\n</tr>\n<tr style=\"height:2px\">\n<td></td>\n</tr>\n<tr>\n<th scope=\"row\" class=\"navbox-group\" style=\";;\">Other</th>\n<td style=\"text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;\" class=\"navbox-list navbox-even\">\n<div style=\"padding:0em 0.25em\">\n<ul>\n<li><strong class=\"selflink\">UTF-8</strong></li>\n</ul>\n</div>\n</td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n\n\n<!-- \nNewPP limit report\nPreprocessor node count: 22444/1000000\nPost-expand include size: 235354/2048000 bytes\nTemplate argument size: 87024/2048000 bytes\nHighest expansion depth: 21/40\nExpensive parser function count: 5/500\n-->\n\n<!-- Saved in parser cache with key enwiki:pcache:idhash:32188-0!*!0!!en!4!* and timestamp 20120815033327 -->\n</div>\t\t\t\t<!-- /bodycontent -->\n\t\t\t\t\t\t\t\t<!-- printfooter -->\n\t\t\t\t<div class=\"printfooter\">\n\t\t\t\tRetrieved from \"<a href=\"http://en.wikipedia.org/w/index.php?title=UTF-8&amp;oldid=507478399\">http://en.wikipedia.org/w/index.php?title=UTF-8&amp;oldid=507478399</a>\"\t\t\t\t</div>\n\t\t\t\t<!-- /printfooter -->\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- catlinks -->\n\t\t\t\t<div id='catlinks' class='catlinks'><div id=\"mw-normal-catlinks\" class=\"mw-normal-catlinks\"><a href=\"/wiki/Special:Categories\" title=\"Special:Categories\">Categories</a>: <ul><li><a href=\"/wiki/Category:Character_sets\" title=\"Category:Character sets\">Character sets</a></li><li><a href=\"/wiki/Category:Encodings\" title=\"Category:Encodings\">Encodings</a></li><li><a href=\"/wiki/Category:Character_encoding\" title=\"Category:Character encoding\">Character encoding</a></li><li><a href=\"/wiki/Category:Unicode_Transformation_Formats\" title=\"Category:Unicode Transformation Formats\">Unicode Transformation Formats</a></li></ul></div><div id=\"mw-hidden-catlinks\" class=\"mw-hidden-catlinks mw-hidden-cats-hidden\">Hidden categories: <ul><li><a href=\"/wiki/Category:All_articles_with_unsourced_statements\" title=\"Category:All articles with unsourced statements\">All articles with unsourced statements</a></li><li><a href=\"/wiki/Category:Articles_with_unsourced_statements_from_December_2011\" title=\"Category:Articles with unsourced statements from December 2011\">Articles with unsourced statements from December 2011</a></li><li><a href=\"/wiki/Category:All_articles_with_specifically_marked_weasel-worded_phrases\" title=\"Category:All articles with specifically marked weasel-worded phrases\">All articles with specifically marked weasel-worded phrases</a></li><li><a href=\"/wiki/Category:Articles_with_specifically_marked_weasel-worded_phrases_from_September_2011\" title=\"Category:Articles with specifically marked weasel-worded phrases from September 2011\">Articles with specifically marked weasel-worded phrases from September 2011</a></li><li><a href=\"/wiki/Category:Articles_with_unsourced_statements_from_February_2012\" title=\"Category:Articles with unsourced statements from February 2012\">Articles with unsourced statements from February 2012</a></li><li><a href=\"/wiki/Category:Articles_needing_additional_references_from_October_2009\" title=\"Category:Articles needing additional references from October 2009\">Articles needing additional references from October 2009</a></li><li><a href=\"/wiki/Category:All_articles_needing_additional_references\" title=\"Category:All articles needing additional references\">All articles needing additional references</a></li><li><a href=\"/wiki/Category:Articles_with_unsourced_statements_from_December_2009\" title=\"Category:Articles with unsourced statements from December 2009\">Articles with unsourced statements from December 2009</a></li></ul></div></div>\t\t\t\t<!-- /catlinks -->\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"visualClear\"></div>\n\t\t\t\t<!-- debughtml -->\n\t\t\t\t\t\t\t\t<!-- /debughtml -->\n\t\t\t</div>\n\t\t\t<!-- /bodyContent -->\n\t\t</div>\n\t\t<!-- /content -->\n\t\t<!-- header -->\n\t\t<div id=\"mw-head\" class=\"noprint\">\n\t\t\t\n<!-- 0 -->\n<div id=\"p-personal\" class=\"\">\n\t<h5>Personal tools</h5>\n\t<ul>\n\t\t<li id=\"pt-createaccount\"><a href=\"/w/index.php?title=Special:UserLogin&amp;returnto=UTF-8&amp;type=signup\">Create account</a></li>\n\t\t<li id=\"pt-login\"><a href=\"/w/index.php?title=Special:UserLogin&amp;returnto=UTF-8\" title=\"You are encouraged to log in; however, it is not mandatory. [o]\" accesskey=\"o\">Log in</a></li>\n\t</ul>\n</div>\n\n<!-- /0 -->\n\t\t\t<div id=\"left-navigation\">\n\t\t\t\t\n<!-- 0 -->\n<div id=\"p-namespaces\" class=\"vectorTabs\">\n\t<h5>Namespaces</h5>\n\t<ul>\n\t\t\t\t\t<li  id=\"ca-nstab-main\" class=\"selected\"><span><a href=\"/wiki/UTF-8\"  title=\"View the content page [c]\" accesskey=\"c\">Article</a></span></li>\n\t\t\t\t\t<li  id=\"ca-talk\"><span><a href=\"/wiki/Talk:UTF-8\"  title=\"Discussion about the content page [t]\" accesskey=\"t\">Talk</a></span></li>\n\t\t\t</ul>\n</div>\n\n<!-- /0 -->\n\n<!-- 1 -->\n<div id=\"p-variants\" class=\"vectorMenu emptyPortlet\">\n\t<h4>\n\t\t</h4>\n\t<h5><span>Variants</span><a href=\"#\"></a></h5>\n\t<div class=\"menu\">\n\t\t<ul>\n\t\t\t\t\t</ul>\n\t</div>\n</div>\n\n<!-- /1 -->\n\t\t\t</div>\n\t\t\t<div id=\"right-navigation\">\n\t\t\t\t\n<!-- 0 -->\n<div id=\"p-views\" class=\"vectorTabs\">\n\t<h5>Views</h5>\n\t<ul>\n\t\t\t\t\t<li id=\"ca-view\" class=\"selected\"><span><a href=\"/wiki/UTF-8\" >Read</a></span></li>\n\t\t\t\t\t<li id=\"ca-edit\"><span><a href=\"/w/index.php?title=UTF-8&amp;action=edit\"  title=\"You can edit this page. &#10;Please use the preview button before saving. [e]\" accesskey=\"e\">Edit</a></span></li>\n\t\t\t\t\t<li id=\"ca-history\" class=\"collapsible\"><span><a href=\"/w/index.php?title=UTF-8&amp;action=history\"  title=\"Past versions of this page [h]\" accesskey=\"h\">View history</a></span></li>\n\t\t\t</ul>\n</div>\n\n<!-- /0 -->\n\n<!-- 1 -->\n<div id=\"p-cactions\" class=\"vectorMenu emptyPortlet\">\n\t<h5><span>Actions</span><a href=\"#\"></a></h5>\n\t<div class=\"menu\">\n\t\t<ul>\n\t\t\t\t\t</ul>\n\t</div>\n</div>\n\n<!-- /1 -->\n\n<!-- 2 -->\n<div id=\"p-search\">\n\t<h5><label for=\"searchInput\">Search</label></h5>\n\t<form action=\"/w/index.php\" id=\"searchform\">\n\t\t\t\t<div id=\"simpleSearch\">\n\t\t\t\t\t\t<input type=\"text\" name=\"search\" value=\"\" title=\"Search Wikipedia [f]\" accesskey=\"f\" id=\"searchInput\" />\t\t\t\t\t\t<button type=\"submit\" name=\"button\" title=\"Search Wikipedia for this text\" id=\"searchButton\" width=\"12\" height=\"13\"><img src=\"//bits.wikimedia.org/static-1.20wmf9/skins/vector/images/search-ltr.png?303-4\" alt=\"Search\" /></button>\t\t\t\t\t\t\t\t<input type='hidden' name=\"title\" value=\"Special:Search\"/>\n\t\t</div>\n\t</form>\n</div>\n\n<!-- /2 -->\n\t\t\t</div>\n\t\t</div>\n\t\t<!-- /header -->\n\t\t<!-- panel -->\n\t\t\t<div id=\"mw-panel\" class=\"noprint\">\n\t\t\t\t<!-- logo -->\n\t\t\t\t\t<div id=\"p-logo\"><a style=\"background-image: url(//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);\" href=\"/wiki/Main_Page\"  title=\"Visit the main page\"></a></div>\n\t\t\t\t<!-- /logo -->\n\t\t\t\t\n<!-- navigation -->\n<div class=\"portal\" id='p-navigation'>\n\t<h5>Navigation</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li id=\"n-mainpage-description\"><a href=\"/wiki/Main_Page\" title=\"Visit the main page [z]\" accesskey=\"z\">Main page</a></li>\n\t\t\t<li id=\"n-contents\"><a href=\"/wiki/Portal:Contents\" title=\"Guides to browsing Wikipedia\">Contents</a></li>\n\t\t\t<li id=\"n-featuredcontent\"><a href=\"/wiki/Portal:Featured_content\" title=\"Featured content – the best of Wikipedia\">Featured content</a></li>\n\t\t\t<li id=\"n-currentevents\"><a href=\"/wiki/Portal:Current_events\" title=\"Find background information on current events\">Current events</a></li>\n\t\t\t<li id=\"n-randompage\"><a href=\"/wiki/Special:Random\" title=\"Load a random article [x]\" accesskey=\"x\">Random article</a></li>\n\t\t\t<li id=\"n-sitesupport\"><a href=\"//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=20120717SB001&amp;uselang=en\" title=\"Support us\">Donate to Wikipedia</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n<!-- /navigation -->\n\n<!-- SEARCH -->\n\n<!-- /SEARCH -->\n\n<!-- interaction -->\n<div class=\"portal\" id='p-interaction'>\n\t<h5>Interaction</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li id=\"n-help\"><a href=\"/wiki/Help:Contents\" title=\"Guidance on how to use and edit Wikipedia\">Help</a></li>\n\t\t\t<li id=\"n-aboutsite\"><a href=\"/wiki/Wikipedia:About\" title=\"Find out about Wikipedia\">About Wikipedia</a></li>\n\t\t\t<li id=\"n-portal\"><a href=\"/wiki/Wikipedia:Community_portal\" title=\"About the project, what you can do, where to find things\">Community portal</a></li>\n\t\t\t<li id=\"n-recentchanges\"><a href=\"/wiki/Special:RecentChanges\" title=\"A list of recent changes in the wiki [r]\" accesskey=\"r\">Recent changes</a></li>\n\t\t\t<li id=\"n-contact\"><a href=\"/wiki/Wikipedia:Contact_us\" title=\"How to contact Wikipedia\">Contact Wikipedia</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n<!-- /interaction -->\n\n<!-- TOOLBOX -->\n<div class=\"portal\" id='p-tb'>\n\t<h5>Toolbox</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li id=\"t-whatlinkshere\"><a href=\"/wiki/Special:WhatLinksHere/UTF-8\" title=\"List of all English Wikipedia pages containing links to this page [j]\" accesskey=\"j\">What links here</a></li>\n\t\t\t<li id=\"t-recentchangeslinked\"><a href=\"/wiki/Special:RecentChangesLinked/UTF-8\" title=\"Recent changes in pages linked from this page [k]\" accesskey=\"k\">Related changes</a></li>\n\t\t\t<li id=\"t-upload\"><a href=\"/wiki/Wikipedia:Upload\" title=\"Upload files [u]\" accesskey=\"u\">Upload file</a></li>\n\t\t\t<li id=\"t-specialpages\"><a href=\"/wiki/Special:SpecialPages\" title=\"A list of all special pages [q]\" accesskey=\"q\">Special pages</a></li>\n\t\t\t<li id=\"t-permalink\"><a href=\"/w/index.php?title=UTF-8&amp;oldid=507478399\" title=\"Permanent link to this revision of the page\">Permanent link</a></li>\n<li id=\"t-cite\"><a href=\"/w/index.php?title=Special:Cite&amp;page=UTF-8&amp;id=507478399\" title=\"Information on how to cite this page\">Cite this page</a></li>\t\t</ul>\n\t</div>\n</div>\n\n<!-- /TOOLBOX -->\n\n<!-- coll-print_export -->\n<div class=\"portal\" id='p-coll-print_export'>\n\t<h5>Print/export</h5>\n\t<div class=\"body\">\n\t\t<ul id=\"collectionPortletList\"><li id=\"coll-create_a_book\"><a href=\"/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=UTF-8\" title=\"Create a book or page collection\" rel=\"nofollow\">Create a book</a></li><li id=\"coll-download-as-rl\"><a href=\"/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=UTF-8&amp;oldid=507478399&amp;writer=rl\" title=\"Download a PDF version of this wiki page\" rel=\"nofollow\">Download as PDF</a></li><li id=\"t-print\"><a href=\"/w/index.php?title=UTF-8&amp;printable=yes\" title=\"Printable version of this page [p]\" accesskey=\"p\">Printable version</a></li></ul>\t</div>\n</div>\n\n<!-- /coll-print_export -->\n\n<!-- LANGUAGES -->\n<div class=\"portal\" id='p-lang'>\n\t<h5>Languages</h5>\n\t<div class=\"body\">\n\t\t<ul>\n\t\t\t<li class=\"interwiki-ar\"><a href=\"//ar.wikipedia.org/wiki/%D8%B5%D9%8A%D8%BA%D8%A9_%D8%A7%D9%84%D8%AA%D8%AD%D9%88%D9%8A%D9%84_%D8%A7%D9%84%D9%85%D9%88%D8%AD%D8%AF-8\" title=\"صيغة التحويل الموحد-8\" lang=\"ar\" hreflang=\"ar\">العربية</a></li>\n\t\t\t<li class=\"interwiki-bg\"><a href=\"//bg.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"bg\" hreflang=\"bg\">Български</a></li>\n\t\t\t<li class=\"interwiki-ca\"><a href=\"//ca.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ca\" hreflang=\"ca\">Català</a></li>\n\t\t\t<li class=\"interwiki-cs\"><a href=\"//cs.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"cs\" hreflang=\"cs\">Česky</a></li>\n\t\t\t<li class=\"interwiki-da\"><a href=\"//da.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"da\" hreflang=\"da\">Dansk</a></li>\n\t\t\t<li class=\"interwiki-de\"><a href=\"//de.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"de\" hreflang=\"de\">Deutsch</a></li>\n\t\t\t<li class=\"interwiki-el\"><a href=\"//el.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"el\" hreflang=\"el\">Ελληνικά</a></li>\n\t\t\t<li class=\"interwiki-es\"><a href=\"//es.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"es\" hreflang=\"es\">Español</a></li>\n\t\t\t<li class=\"interwiki-eo\"><a href=\"//eo.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"eo\" hreflang=\"eo\">Esperanto</a></li>\n\t\t\t<li class=\"interwiki-fa\"><a href=\"//fa.wikipedia.org/wiki/%DB%8C%D9%88%D8%AA%DB%8C%E2%80%8C%D8%A7%D9%81-%DB%B8\" title=\"یوتی‌اف-۸\" lang=\"fa\" hreflang=\"fa\">فارسی</a></li>\n\t\t\t<li class=\"interwiki-fr\"><a href=\"//fr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"fr\" hreflang=\"fr\">Français</a></li>\n\t\t\t<li class=\"interwiki-ko\"><a href=\"//ko.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ko\" hreflang=\"ko\">한국어</a></li>\n\t\t\t<li class=\"interwiki-hr\"><a href=\"//hr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"hr\" hreflang=\"hr\">Hrvatski</a></li>\n\t\t\t<li class=\"interwiki-it\"><a href=\"//it.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"it\" hreflang=\"it\">Italiano</a></li>\n\t\t\t<li class=\"interwiki-he\"><a href=\"//he.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"he\" hreflang=\"he\">עברית</a></li>\n\t\t\t<li class=\"interwiki-lv\"><a href=\"//lv.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"lv\" hreflang=\"lv\">Latviešu</a></li>\n\t\t\t<li class=\"interwiki-lt\"><a href=\"//lt.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"lt\" hreflang=\"lt\">Lietuvių</a></li>\n\t\t\t<li class=\"interwiki-hu\"><a href=\"//hu.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"hu\" hreflang=\"hu\">Magyar</a></li>\n\t\t\t<li class=\"interwiki-ml\"><a href=\"//ml.wikipedia.org/wiki/%E0%B4%AF%E0%B5%81.%E0%B4%9F%E0%B4%BF.%E0%B4%8E%E0%B4%AB%E0%B5%8D-8\" title=\"യു.ടി.എഫ്-8\" lang=\"ml\" hreflang=\"ml\">മലയാളം</a></li>\n\t\t\t<li class=\"interwiki-ms\"><a href=\"//ms.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ms\" hreflang=\"ms\">Bahasa Melayu</a></li>\n\t\t\t<li class=\"interwiki-nl\"><a href=\"//nl.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"nl\" hreflang=\"nl\">Nederlands</a></li>\n\t\t\t<li class=\"interwiki-ja\"><a href=\"//ja.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ja\" hreflang=\"ja\">日本語</a></li>\n\t\t\t<li class=\"interwiki-no\"><a href=\"//no.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"no\" hreflang=\"no\">‪norsk (bokmål)‬</a></li>\n\t\t\t<li class=\"interwiki-nn\"><a href=\"//nn.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"nn\" hreflang=\"nn\">‪norsk (nynorsk)‬</a></li>\n\t\t\t<li class=\"interwiki-pl\"><a href=\"//pl.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"pl\" hreflang=\"pl\">Polski</a></li>\n\t\t\t<li class=\"interwiki-pt\"><a href=\"//pt.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"pt\" hreflang=\"pt\">Português</a></li>\n\t\t\t<li class=\"interwiki-ru\"><a href=\"//ru.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"ru\" hreflang=\"ru\">Русский</a></li>\n\t\t\t<li class=\"interwiki-sk\"><a href=\"//sk.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sk\" hreflang=\"sk\">Slovenčina</a></li>\n\t\t\t<li class=\"interwiki-sl\"><a href=\"//sl.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sl\" hreflang=\"sl\">Slovenščina</a></li>\n\t\t\t<li class=\"interwiki-sr\"><a href=\"//sr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sr\" hreflang=\"sr\">Српски / srpski</a></li>\n\t\t\t<li class=\"interwiki-fi\"><a href=\"//fi.wikipedia.org/wiki/Unicode#UTF-8\" title=\"Unicode\" lang=\"fi\" hreflang=\"fi\">Suomi</a></li>\n\t\t\t<li class=\"interwiki-sv\"><a href=\"//sv.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"sv\" hreflang=\"sv\">Svenska</a></li>\n\t\t\t<li class=\"interwiki-tr\"><a href=\"//tr.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"tr\" hreflang=\"tr\">Türkçe</a></li>\n\t\t\t<li class=\"interwiki-uk\"><a href=\"//uk.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"uk\" hreflang=\"uk\">Українська</a></li>\n\t\t\t<li class=\"interwiki-vi\"><a href=\"//vi.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"vi\" hreflang=\"vi\">Tiếng Việt</a></li>\n\t\t\t<li class=\"interwiki-zh\"><a href=\"//zh.wikipedia.org/wiki/UTF-8\" title=\"UTF-8\" lang=\"zh\" hreflang=\"zh\">中文</a></li>\n\t\t</ul>\n\t</div>\n</div>\n\n<!-- /LANGUAGES -->\n\t\t\t</div>\n\t\t<!-- /panel -->\n\t\t<!-- footer -->\n\t\t<div id=\"footer\">\n\t\t\t\t\t\t\t<ul id=\"footer-info\">\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-info-lastmod\"> This page was last modified on 15 August 2012 at 03:33.<br /></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-info-copyright\">Text is available under the <a rel=\"license\" href=\"//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License\">Creative Commons Attribution-ShareAlike License</a><a rel=\"license\" href=\"//creativecommons.org/licenses/by-sa/3.0/\" style=\"display:none;\"></a>;\nadditional terms may apply.\nSee <a href=\"//wikimediafoundation.org/wiki/Terms_of_use\">Terms of use</a> for details.<br/>\nWikipedia&reg; is a registered trademark of the <a href=\"//www.wikimediafoundation.org/\">Wikimedia Foundation, Inc.</a>, a non-profit organization.<br /></li><li class=\"noprint\"><a class='internal' href=\"//en.wikipedia.org/wiki/Wikipedia:Contact_us\">Contact us</a></li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t<ul id=\"footer-places\">\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-privacy\"><a href=\"//wikimediafoundation.org/wiki/Privacy_policy\" title=\"wikimedia:Privacy policy\">Privacy policy</a></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-about\"><a href=\"/wiki/Wikipedia:About\" title=\"Wikipedia:About\">About Wikipedia</a></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-disclaimer\"><a href=\"/wiki/Wikipedia:General_disclaimer\" title=\"Wikipedia:General disclaimer\">Disclaimers</a></li>\n\t\t\t\t\t\t\t\t\t\t\t<li id=\"footer-places-mobileview\"><a href=\"http://en.m.wikipedia.org/w/index.php?title=UTF-8&amp;mobileaction=toggle_view_mobile\" class=\"noprint\">Mobile view</a></li>\n\t\t\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t\t\t\t<ul id=\"footer-icons\" class=\"noprint\">\n\t\t\t\t\t<li id=\"footer-copyrightico\">\n\t\t\t\t\t\t<a href=\"//wikimediafoundation.org/\"><img src=\"//bits.wikimedia.org/images/wikimedia-button.png\" width=\"88\" height=\"31\" alt=\"Wikimedia Foundation\"/></a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li id=\"footer-poweredbyico\">\n\t\t\t\t\t\t<a href=\"//www.mediawiki.org/\"><img src=\"//bits.wikimedia.org/static-1.20wmf9/skins/common/images/poweredby_mediawiki_88x31.png\" alt=\"Powered by MediaWiki\" width=\"88\" height=\"31\" /></a>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t\t\t<div style=\"clear:both\"></div>\n\t\t</div>\n\t\t<!-- /footer -->\n\t\t<script type=\"text/javascript\">if(window.mw){\nmw.loader.state({\"site\":\"loading\",\"user\":\"ready\",\"user.groups\":\"ready\"});\n}</script>\n<script src=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=skins.vector&amp;only=scripts&amp;skin=vector&amp;*\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">if(window.mw){\nmw.loader.load([\"mediawiki.user\",\"mediawiki.page.ready\",\"mediawiki.legacy.mwsuggest\",\"ext.gadget.teahouse\",\"ext.gadget.ReferenceTooltips\",\"ext.vector.collapsibleNav\",\"ext.vector.collapsibleTabs\",\"ext.vector.editWarning\",\"ext.vector.simpleSearch\",\"ext.UserBuckets\",\"ext.articleFeedback.startup\",\"ext.articleFeedbackv5.startup\",\"ext.markAsHelpful\",\"ext.Experiments.lib\",\"ext.Experiments.experiments\"], null, true);\n}</script>\n<script src=\"/w/index.php?title=MediaWiki:Gadget-ReferenceTooltips.js&amp;action=raw&amp;ctype=text/javascript&amp;500778781\" type=\"text/javascript\"></script>\n<script src=\"/w/index.php?title=MediaWiki:Gadget-DRN-wizard-loader.js&amp;action=raw&amp;ctype=text/javascript&amp;504341206\" type=\"text/javascript\"></script>\n<script type=\"text/javascript\">\nwindow._reg = \"\";\n</script>\n<script src=\"/w/index.php?title=Special:BannerController&amp;cache=/cn.js&amp;303-4\" type=\"text/javascript\"></script>\n<script src=\"//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=scripts&amp;skin=vector&amp;*\" type=\"text/javascript\"></script>\n<script src=\"//bits.wikimedia.org/geoiplookup\" type=\"text/javascript\"></script><!-- Served by srv241 in 0.156 secs. -->\n\t</body>\n</html>\n"
  },
  {
    "path": "unicode.go",
    "content": "package chardet\n\nimport (\n\t\"bytes\"\n)\n\nvar (\n\tutf16beBom = []byte{0xFE, 0xFF}\n\tutf16leBom = []byte{0xFF, 0xFE}\n\tutf32beBom = []byte{0x00, 0x00, 0xFE, 0xFF}\n\tutf32leBom = []byte{0xFF, 0xFE, 0x00, 0x00}\n)\n\ntype recognizerUtf16be struct {\n}\n\nfunc newRecognizer_utf16be() *recognizerUtf16be {\n\treturn &recognizerUtf16be{}\n}\n\nfunc (*recognizerUtf16be) Match(input *recognizerInput) (output recognizerOutput) {\n\toutput = recognizerOutput{\n\t\tCharset: \"UTF-16BE\",\n\t}\n\tif bytes.HasPrefix(input.raw, utf16beBom) {\n\t\toutput.Confidence = 100\n\t}\n\treturn\n}\n\ntype recognizerUtf16le struct {\n}\n\nfunc newRecognizer_utf16le() *recognizerUtf16le {\n\treturn &recognizerUtf16le{}\n}\n\nfunc (*recognizerUtf16le) Match(input *recognizerInput) (output recognizerOutput) {\n\toutput = recognizerOutput{\n\t\tCharset: \"UTF-16LE\",\n\t}\n\tif bytes.HasPrefix(input.raw, utf16leBom) && !bytes.HasPrefix(input.raw, utf32leBom) {\n\t\toutput.Confidence = 100\n\t}\n\treturn\n}\n\ntype recognizerUtf32 struct {\n\tname       string\n\tbom        []byte\n\tdecodeChar func(input []byte) uint32\n}\n\nfunc decodeUtf32be(input []byte) uint32 {\n\treturn uint32(input[0])<<24 | uint32(input[1])<<16 | uint32(input[2])<<8 | uint32(input[3])\n}\n\nfunc decodeUtf32le(input []byte) uint32 {\n\treturn uint32(input[3])<<24 | uint32(input[2])<<16 | uint32(input[1])<<8 | uint32(input[0])\n}\n\nfunc newRecognizer_utf32be() *recognizerUtf32 {\n\treturn &recognizerUtf32{\n\t\t\"UTF-32BE\",\n\t\tutf32beBom,\n\t\tdecodeUtf32be,\n\t}\n}\n\nfunc newRecognizer_utf32le() *recognizerUtf32 {\n\treturn &recognizerUtf32{\n\t\t\"UTF-32LE\",\n\t\tutf32leBom,\n\t\tdecodeUtf32le,\n\t}\n}\n\nfunc (r *recognizerUtf32) Match(input *recognizerInput) (output recognizerOutput) {\n\toutput = recognizerOutput{\n\t\tCharset: r.name,\n\t}\n\thasBom := bytes.HasPrefix(input.raw, r.bom)\n\tvar numValid, numInvalid uint32\n\tfor b := input.raw; len(b) >= 4; b = b[4:] {\n\t\tif c := r.decodeChar(b); c >= 0x10FFFF || (c >= 0xD800 && c <= 0xDFFF) {\n\t\t\tnumInvalid++\n\t\t} else {\n\t\t\tnumValid++\n\t\t}\n\t}\n\tif hasBom && numInvalid == 0 {\n\t\toutput.Confidence = 100\n\t} else if hasBom && numValid > numInvalid*10 {\n\t\toutput.Confidence = 80\n\t} else if numValid > 3 && numInvalid == 0 {\n\t\toutput.Confidence = 100\n\t} else if numValid > 0 && numInvalid == 0 {\n\t\toutput.Confidence = 80\n\t} else if numValid > numInvalid*10 {\n\t\toutput.Confidence = 25\n\t}\n\treturn\n}\n"
  },
  {
    "path": "utf8.go",
    "content": "package chardet\n\nimport (\n\t\"bytes\"\n)\n\nvar utf8Bom = []byte{0xEF, 0xBB, 0xBF}\n\ntype recognizerUtf8 struct {\n}\n\nfunc newRecognizer_utf8() *recognizerUtf8 {\n\treturn &recognizerUtf8{}\n}\n\nfunc (*recognizerUtf8) Match(input *recognizerInput) (output recognizerOutput) {\n\toutput = recognizerOutput{\n\t\tCharset: \"UTF-8\",\n\t}\n\thasBom := bytes.HasPrefix(input.raw, utf8Bom)\n\tinputLen := len(input.raw)\n\tvar numValid, numInvalid uint32\n\tvar trailBytes uint8\n\tfor i := 0; i < inputLen; i++ {\n\t\tc := input.raw[i]\n\t\tif c&0x80 == 0 {\n\t\t\tcontinue\n\t\t}\n\t\tif c&0xE0 == 0xC0 {\n\t\t\ttrailBytes = 1\n\t\t} else if c&0xF0 == 0xE0 {\n\t\t\ttrailBytes = 2\n\t\t} else if c&0xF8 == 0xF0 {\n\t\t\ttrailBytes = 3\n\t\t} else {\n\t\t\tnumInvalid++\n\t\t\tif numInvalid > 5 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t\ttrailBytes = 0\n\t\t}\n\n\t\tfor i++; i < inputLen; i++ {\n\t\t\tc = input.raw[i]\n\t\t\tif c&0xC0 != 0x80 {\n\t\t\t\tnumInvalid++\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tif trailBytes--; trailBytes == 0 {\n\t\t\t\tnumValid++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif hasBom && numInvalid == 0 {\n\t\toutput.Confidence = 100\n\t} else if hasBom && numValid > numInvalid*10 {\n\t\toutput.Confidence = 80\n\t} else if numValid > 3 && numInvalid == 0 {\n\t\toutput.Confidence = 100\n\t} else if numValid > 0 && numInvalid == 0 {\n\t\toutput.Confidence = 80\n\t} else if numValid == 0 && numInvalid == 0 {\n\t\t// Plain ASCII\n\t\toutput.Confidence = 10\n\t} else if numValid > numInvalid*10 {\n\t\toutput.Confidence = 25\n\t}\n\treturn\n}\n"
  }
]