{"id":259286,"student_id":6526,"content":"/*var re = /apples/gi;\r\nvar str = 'Apples are round, and apples are juicy.';\r\nvar newstr = str.replace(re, 'oranges');\r\n// 輸出 'oranges are round, and oranges are juicy.'\r\nconsole.log(newstr);\r\n\r\n\r\nvar re = /(\\w+)\\s(\\w+)/;\r\nvar str = 'John Smith';\r\nvar newstr = str.replace(re, '$2, $1');\r\n// 輸出 'Smith, John'\r\nconsole.log(newstr);\r\n\r\n\r\n\r\nvar str = 'hello world!4';\r\n\r\nvar result = /hello world!4/.test(str);\r\nalert(result)\r\n\r\nfunction replacer(match, p1, p2, p3, offset, string) {\r\n return [p1, p2, p3].join(' - ');\r\n}\r\n// 輸出 'abc - 12345 - #$*%'\r\nconsole.log('abc12345#$*%'.replace(/([^\\d]*)(\\d*)([^\\w]*)/, replacer));\r\nvar m=/rdgfd/gi\r\nconsole.log(m)\r\n\r\nvar str = 'a,b,c,d,e';\r\n\r\nvar strAry = str.split('|')\r\n// 輸出 [\"a\", \"b\", \"c\", \"d\", \"e\"]\r\nconsole.log(strAry);\r\n\r\n// 輸出 [\"a\", \"b\"]\r\nconsole.log(str.split('|', 3));\r\n\r\nvar fruits = ['Apple', 'Banana'];\r\nvar d=[\"d\",\"55\",\"2\"]\r\n// Apple\r\nvar first = fruits[0];\r\n// Banana\r\nvar last = d[d.length- 1];\r\n\r\nconsole.log(first)\r\nconsole.log(last)\r\nconsole.log()\r\nconsole.log()\r\nconsole.log()\r\n\r\nvar num1 = [1, 2, 3];\r\nvar num2 = [4, 5, 6];\r\nvar num3 = [7, 8, 9];\r\n\r\nvar nums = num1.concat(num2, num3);\r\n\r\n// 輸出 [1, 2, 3, 4, 5, 6, 7, 8, 9]\r\nconsole.log(nums); \r\n\r\nfunction isBigEnough(element, index, array) {\r\n return element\u003e=400;\r\n}\r\n\r\n// false\r\n[12, 5, 8, 130, 44].every(isBigEnough);\r\n\r\nconsole.log([1200, 500, 800, 1000, 4400].every(isBigEnough))\r\n\r\nvar str = 'The morning is upon us.';\r\n// 輸出 'he morn'\r\nconsole.log(str.slice(1, 8));\r\nconsole.log(str.substr(1, 8));\r\nvar a=1\r\nvar b=2\r\nloop:\r\nfor(i=0;a\u003cb;i++){\r\nvar numbers = [10, 50, 1, 80, 250, 500, 101, 300];\r\n\r\nnumbers.sort(function(a, b) {\r\n return 0.5 - Math.random();\r\n});\r\n\r\n// 每次執行排序後的結果都會不一樣\r\nconsole.log(numbers);\r\n\r\n}\r\n\r\n*/\r\nvar m=\"https://www.google.com/search?q=%3C%3Fxml+version%3D%221.0%22+encoding%3D%22utf-8%22%3F%3E+%3C!--+WARNING%3A+Parsing+of+this+file+by+third-party+apps+is+not+supported.+The+file%2C+and+the+font+files+it+refers+to%2C+will+be+renamed+and%2For+moved+out+from+their+respective+location+in+the+next+Android+release%2C+and%2For+the+format+or+syntax+of+the+file+may+change+significantly.+If+you+parse+this+file+for+information+about+system+fonts%2C+do+it+at+your+own+risk.+Your+application+will+almost+certainly+break+with+the+next+major+Android+release.+In+this+file%2C+all+fonts+without+names+are+added+to+the+default+list.+Fonts+are+chosen+based+on+a+match%3A+full+BCP-47+language+tag+including+script%2C+then+just+language%2C+and+finally+order+(the+first+font+containing+the+glyph).+Order+of+appearance+is+also+the+tiebreaker+for+weight+matching.+This+is+the+reason+why+the+900+weights+of+Roboto+precede+the+700+weights+-+we+prefer+the+former+when+an+800+weight+is+requested.+Since+bold+spans+effectively+add+300+to+the+weight%2C+this+ensures+that+900+is+the+bold+paired+with+the+500+weight%2C+ensuring+adequate+contrast.+--%3E+%3Cfamilyset+version%3D%2223%22%3E+%3C!--+first+font+is+default+--%3E+%3Cfamily+name%3D%22sans-serif%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ERoboto-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22100%22+style%3D%22italic%22%3ERoboto-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ERoboto-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22italic%22%3ERoboto-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ERoboto-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22italic%22%3ERoboto-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ERoboto-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22italic%22%3ERoboto-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ERoboto-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22italic%22%3ERoboto-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+Note+that+aliases+must+come+after+the+fonts+they+reference.+--%3E+%3Calias+name%3D%22sans-serif-thin%22+to%3D%22sans-serif%22+weight%3D%22100%22+%2F%3E+%3Calias+name%3D%22sans-serif-light%22+to%3D%22sans-serif%22+weight%3D%22300%22+%2F%3E+%3Calias+name%3D%22sans-serif-regular%22+to%3D%22sans-serif%22+weight%3D%22400%22+%2F%3E+%3Calias+name%3D%22sans-serif-medium%22+to%3D%22sans-serif%22+weight%3D%22500%22+%2F%3E+%3Calias+name%3D%22sans-serif-bold%22+to%3D%22sans-serif%22+weight%3D%22700%22+%2F%3E+%3Calias+name%3D%22sans-serif-black%22+to%3D%22sans-serif%22+weight%3D%22900%22+%2F%3E+%3Calias+name%3D%22arial%22+to%3D%22sans-serif%22+%2F%3E+%3Calias+name%3D%22helvetica%22+to%3D%22sans-serif%22+%2F%3E+%3Calias+name%3D%22tahoma%22+to%3D%22sans-serif%22+%2F%3E+%3Calias+name%3D%22verdana%22+to%3D%22sans-serif%22+%2F%3E+%3Cfamily+name%3D%22sans-serif-condensed%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ERobotoCondensed-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22100%22+style%3D%22italic%22%3ERobotoCondensed-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ERobotoCondensed-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22italic%22%3ERobotoCondensed-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ERobotoCondensed-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22italic%22%3ERobotoCondensed-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ERobotoCondensed-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22italic%22%3ERobotoCondensed-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ERobotoCondensed-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22italic%22%3ERobotoCondensed-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22sans-serif-condensed-light%22+to%3D%22sans-serif-condensed%22+weight%3D%22300%22+%2F%3E+%3Calias+name%3D%22sans-serif-condensed-medium%22+to%3D%22sans-serif-condensed%22+weight%3D%22500%22+%2F%3E+%3Cfamily+name%3D%22serif%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSerif-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSerif-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22italic%22%3ENotoSerif-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22italic%22%3ENotoSerif-BoldItalic.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22times%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22times+new+roman%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22palatino%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22georgia%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22baskerville%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22goudy%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22fantasy%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22ITC+Stone+Serif%22+to%3D%22serif%22+%2F%3E+%3Cfamily+name%3D%22monospace%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3EDroidSansMono.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22sans-serif-monospace%22+to%3D%22monospace%22+%2F%3E+%3Calias+name%3D%22monaco%22+to%3D%22monospace%22+%2F%3E+%3Cfamily+name%3D%22serif-monospace%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ECutiveMono.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22courier%22+to%3D%22serif-monospace%22+%2F%3E+%3Calias+name%3D%22courier+new%22+to%3D%22serif-monospace%22+%2F%3E+%3Cfamily+name%3D%22casual%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3EComingSoon.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+name%3D%22cursive%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3EDancingScript-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3EDancingScript-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+name%3D%22sans-serif-smallcaps%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ECarroisGothicSC-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+fallback+fonts+--%3E+%3Cfamily+lang%3D%22und-Arab%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoNaskhArabic-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoNaskhArabic-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Arab%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoNaskhArabicUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoNaskhArabicUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ethi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansEthiopic-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansEthiopic-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifEthiopic-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifEthiopic-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hebr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansHebrew-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansHebrew-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifHebrew-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifHebrew-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Thai%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansThai-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansThai-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifThai-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifThai-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Thai%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansThaiUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansThaiUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Armn%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansArmenian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansArmenian-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifArmenian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifArmenian-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Geor+und-Geok%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGeorgian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGeorgian-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGeorgian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGeorgian-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Deva%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansDevanagari-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansDevanagari-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifDevanagari-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifDevanagari-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Deva%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansDevanagariUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansDevanagariUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+All+scripts+of+India+should+come+after+Devanagari%2C+due+to+shared+danda+characters.+--%3E+%3Cfamily+lang%3D%22und-Gujr%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGujarati-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGujarati-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGujarati-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGujarati-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Gujr%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGujaratiUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGujaratiUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Guru%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGurmukhi-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGurmukhi-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGurmukhi-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGurmukhi-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Guru%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGurmukhiUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGurmukhiUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Taml%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTamil-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTamil-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTamil-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTamil-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Taml%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTamilUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTamilUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mlym%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMalayalam-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMalayalam-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMalayalam-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMalayalam-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mlym%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMalayalamUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMalayalamUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Beng%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBengali-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansBengali-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifBengali-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifBengali-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Beng%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBengaliUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansBengaliUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Telu%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTelugu-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTelugu-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTelugu-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTelugu-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Telu%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTeluguUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTeluguUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Knda%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKannada-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKannada-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKannada-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKannada-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Knda%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKannadaUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKannadaUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Orya%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOriya-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansOriya-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Orya%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOriyaUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansOriyaUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sinh%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSinhala-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSinhala-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifSinhala-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifSinhala-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sinh%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSinhalaUI-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSinhalaUI-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Khmr%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2226.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2239.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2258.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2290.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22108.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22128.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22151.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22169.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22190.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKhmer-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKhmer-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Khmr%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKhmerUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKhmerUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Laoo%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLao-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansLao-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifLao-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifLao-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Laoo%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLaoUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansLaoUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mymr%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMyanmar-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMyanmar-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMyanmar-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMyanmar-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mymr%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMyanmarUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMyanmarUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Thaa%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansThaana-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansThaana-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cham%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCham-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansCham-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ahom%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAhom-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Adlm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAdlam-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Avst%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAvestan-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bali%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBalinese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bamu%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBamum-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Batk%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBatak-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Brah%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBrahmi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bugi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBuginese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Buhd%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBuhid-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cans%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCanadianAboriginal-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cari%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCarian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cakm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansChakma-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cher%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCherokee-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Copt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCoptic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Xsux%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCuneiform-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cprt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCypriot-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Dsrt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansDeseret-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Egyp%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansEgyptianHieroglyphs-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Elba%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansElbasan-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Glag%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGlagolitic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Goth%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGothic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hano%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansHanunoo-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Armi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansImperialAramaic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Phli%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansInscriptionalPahlavi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Prti%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansInscriptionalParthian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Java%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansJavanese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Kthi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKaithi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Kali%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKayahLi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Khar%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKharoshthi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lepc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLepcha-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Limb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLimbu-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Linb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLinearB-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lisu%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLisu-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lyci%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLycian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lydi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLydian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mand%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMandaic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mtei%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMeeteiMayek-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Talu%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNewTaiLue-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Nkoo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNKo-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ogam%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOgham-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Olck%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOlChiki-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ital%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldItalic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Xpeo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldPersian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sarb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldSouthArabian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Orkh%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldTurkic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Osge%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOsage-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Osma%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOsmanya-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Phnx%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPhoenician-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Rjng%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansRejang-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Runr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansRunic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Samr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSamaritan-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Saur%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSaurashtra-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Shaw%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansShavian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sund%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSundanese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sylo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSylotiNagri-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+Esrangela+should+precede+Eastern+and+Western+Syriac%2C+since+it%27s+our+default+form.+--%3E+%3Cfamily+lang%3D%22und-Syre%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSyriacEstrangela-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Syrn%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSyriacEastern-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Syrj%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSyriacWestern-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tglg%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTagalog-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tagb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTagbanwa-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lana%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTaiTham-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tavt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTaiViet-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tibt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTibetan-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTibetan-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tfng%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTifinagh-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ugar%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansUgaritic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Vaii%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansVai-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSymbols-Regular-Subsetted.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22zh-Hans%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%222%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22zh-Hant+zh-Bopo%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%223%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22ja%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%220%22%3ENotoSansCJK-Regular.ttc%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%220%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22ko%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%221%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Zsye%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoColorEmoji.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Zsym%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSymbols-Regular-Subsetted2.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+Tai+Le%2C+Yi%2C+Mongolian%2C+and+Phags-pa+are+intentionally+kept+last%2C+to+make+sure+they+don%27t+override+the+East+Asian+punctuation+for+Chinese.+--%3E+%3Cfamily+lang%3D%22und-Tale%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTaiLe-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Yiii%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansYi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mong%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMongolian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Phag%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPhagsPa-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hluw%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAnatolianHieroglyphs-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bass%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBassaVah-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bhks%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBhaiksuki-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hatr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansHatran-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lina%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLinearA-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mani%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansManichaean-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Marc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMarchen-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Merc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMeroitic-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Plrd%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMiao-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mroo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMro-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mult%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMultani-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Nbat%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNabataean-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Newa%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNewa-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Narb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldNorthArabian-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Perm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldPermic-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hmng%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPahawhHmong-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Palm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPalmyrene-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Pauc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPauCinHau-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Shrd%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSharada-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sora%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSoraSompeng-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C%2Ffamilyset%3E\u0026rlz=1C1SQJL_zh-TWTW944TW944\u0026oq=%3C%3Fxml+version%3D%221.0%22+encoding%3D%22utf-8%22%3F%3E+%3C!--+WARNING%3A+Parsing+of+this+file+by+third-party+apps+is+not+supported.+The+file%2C+and+the+font+files+it+refers+to%2C+will+be+renamed+and%2For+moved+out+from+their+respective+location+in+the+next+Android+release%2C+and%2For+the+format+or+syntax+of+the+file+may+change+significantly.+If+you+parse+this+file+for+information+about+system+fonts%2C+do+it+at+your+own+risk.+Your+application+will+almost+certainly+break+with+the+next+major+Android+release.+In+this+file%2C+all+fonts+without+names+are+added+to+the+default+list.+Fonts+are+chosen+based+on+a+match%3A+full+BCP-47+language+tag+including+script%2C+then+just+language%2C+and+finally+order+(the+first+font+containing+the+glyph).+Order+of+appearance+is+also+the+tiebreaker+for+weight+matching.+This+is+the+reason+why+the+900+weights+of+Roboto+precede+the+700+weights+-+we+prefer+the+former+when+an+800+weight+is+requested.+Since+bold+spans+effectively+add+300+to+the+weight%2C+this+ensures+that+900+is+the+bold+paired+with+the+500+weight%2C+ensuring+adequate+contrast.+--%3E+%3Cfamilyset+version%3D%2223%22%3E+%3C!--+first+font+is+default+--%3E+%3Cfamily+name%3D%22sans-serif%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ERoboto-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22100%22+style%3D%22italic%22%3ERoboto-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ERoboto-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22italic%22%3ERoboto-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ERoboto-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22italic%22%3ERoboto-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ERoboto-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22italic%22%3ERoboto-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ERoboto-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22italic%22%3ERoboto-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ERoboto-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22italic%22%3ERoboto-BoldItalic.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+Note+that+aliases+must+come+after+the+fonts+they+reference.+--%3E+%3Calias+name%3D%22sans-serif-thin%22+to%3D%22sans-serif%22+weight%3D%22100%22+%2F%3E+%3Calias+name%3D%22sans-serif-light%22+to%3D%22sans-serif%22+weight%3D%22300%22+%2F%3E+%3Calias+name%3D%22sans-serif-regular%22+to%3D%22sans-serif%22+weight%3D%22400%22+%2F%3E+%3Calias+name%3D%22sans-serif-medium%22+to%3D%22sans-serif%22+weight%3D%22500%22+%2F%3E+%3Calias+name%3D%22sans-serif-bold%22+to%3D%22sans-serif%22+weight%3D%22700%22+%2F%3E+%3Calias+name%3D%22sans-serif-black%22+to%3D%22sans-serif%22+weight%3D%22900%22+%2F%3E+%3Calias+name%3D%22arial%22+to%3D%22sans-serif%22+%2F%3E+%3Calias+name%3D%22helvetica%22+to%3D%22sans-serif%22+%2F%3E+%3Calias+name%3D%22tahoma%22+to%3D%22sans-serif%22+%2F%3E+%3Calias+name%3D%22verdana%22+to%3D%22sans-serif%22+%2F%3E+%3Cfamily+name%3D%22sans-serif-condensed%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ERobotoCondensed-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22100%22+style%3D%22italic%22%3ERobotoCondensed-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ERobotoCondensed-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22italic%22%3ERobotoCondensed-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ERobotoCondensed-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22italic%22%3ERobotoCondensed-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ERobotoCondensed-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22italic%22%3ERobotoCondensed-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ERobotoCondensed-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22italic%22%3ERobotoCondensed-MediumItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ERobotoCondensed-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22italic%22%3ERobotoCondensed-BoldItalic.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22sans-serif-condensed-light%22+to%3D%22sans-serif-condensed%22+weight%3D%22300%22+%2F%3E+%3Calias+name%3D%22sans-serif-condensed-medium%22+to%3D%22sans-serif-condensed%22+weight%3D%22500%22+%2F%3E+%3Cfamily+name%3D%22serif%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSerif-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSerif-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22italic%22%3ENotoSerif-Italic.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22italic%22%3ENotoSerif-BoldItalic.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22times%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22times+new+roman%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22palatino%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22georgia%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22baskerville%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22goudy%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22fantasy%22+to%3D%22serif%22+%2F%3E+%3Calias+name%3D%22ITC+Stone+Serif%22+to%3D%22serif%22+%2F%3E+%3Cfamily+name%3D%22monospace%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3EDroidSansMono.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22sans-serif-monospace%22+to%3D%22monospace%22+%2F%3E+%3Calias+name%3D%22monaco%22+to%3D%22monospace%22+%2F%3E+%3Cfamily+name%3D%22serif-monospace%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ECutiveMono.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Calias+name%3D%22courier%22+to%3D%22serif-monospace%22+%2F%3E+%3Calias+name%3D%22courier+new%22+to%3D%22serif-monospace%22+%2F%3E+%3Cfamily+name%3D%22casual%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3EComingSoon.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+name%3D%22cursive%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3EDancingScript-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3EDancingScript-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+name%3D%22sans-serif-smallcaps%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ECarroisGothicSC-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+fallback+fonts+--%3E+%3Cfamily+lang%3D%22und-Arab%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoNaskhArabic-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoNaskhArabic-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Arab%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoNaskhArabicUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoNaskhArabicUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ethi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansEthiopic-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansEthiopic-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifEthiopic-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifEthiopic-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hebr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansHebrew-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansHebrew-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifHebrew-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifHebrew-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Thai%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansThai-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansThai-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifThai-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifThai-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Thai%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansThaiUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansThaiUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Armn%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansArmenian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansArmenian-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifArmenian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifArmenian-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Geor+und-Geok%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGeorgian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGeorgian-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGeorgian-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGeorgian-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Deva%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansDevanagari-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansDevanagari-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifDevanagari-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifDevanagari-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Deva%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansDevanagariUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansDevanagariUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+All+scripts+of+India+should+come+after+Devanagari%2C+due+to+shared+danda+characters.+--%3E+%3Cfamily+lang%3D%22und-Gujr%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGujarati-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGujarati-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGujarati-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGujarati-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Gujr%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGujaratiUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGujaratiUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Guru%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGurmukhi-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGurmukhi-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGurmukhi-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifGurmukhi-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Guru%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGurmukhiUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansGurmukhiUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Taml%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTamil-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTamil-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTamil-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTamil-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Taml%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTamilUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTamilUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mlym%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMalayalam-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMalayalam-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMalayalam-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMalayalam-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mlym%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMalayalamUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMalayalamUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Beng%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBengali-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansBengali-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifBengali-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifBengali-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Beng%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBengaliUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansBengaliUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Telu%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTelugu-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTelugu-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTelugu-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifTelugu-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Telu%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTeluguUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTeluguUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Knda%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKannada-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKannada-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKannada-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKannada-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Knda%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKannadaUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKannadaUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Orya%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOriya-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansOriya-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Orya%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOriyaUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansOriyaUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sinh%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSinhala-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSinhala-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifSinhala-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifSinhala-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sinh%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSinhalaUI-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSinhalaUI-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Khmr%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2226.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2239.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2258.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%2290.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22108.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22128.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22151.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22169.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansKhmer-VF.ttf+%3Caxis+tag%3D%22wdth%22+stylevalue%3D%22100.0%22+%2F%3E+%3Caxis+tag%3D%22wght%22+stylevalue%3D%22190.0%22+%2F%3E+%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKhmer-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifKhmer-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Khmr%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKhmerUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansKhmerUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Laoo%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLao-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansLao-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifLao-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifLao-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Laoo%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLaoUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansLaoUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mymr%22+variant%3D%22elegant%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMyanmar-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMyanmar-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMyanmar-Regular.otf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22+fallbackFor%3D%22serif%22%3ENotoSerifMyanmar-Bold.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mymr%22+variant%3D%22compact%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMyanmarUI-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansMyanmarUI-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Thaa%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansThaana-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansThaana-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cham%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCham-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansCham-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ahom%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAhom-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Adlm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAdlam-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Avst%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAvestan-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bali%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBalinese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bamu%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBamum-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Batk%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBatak-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Brah%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBrahmi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bugi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBuginese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Buhd%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBuhid-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cans%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCanadianAboriginal-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cari%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCarian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cakm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansChakma-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cher%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCherokee-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Copt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCoptic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Xsux%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCuneiform-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Cprt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansCypriot-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Dsrt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansDeseret-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Egyp%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansEgyptianHieroglyphs-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Elba%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansElbasan-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Glag%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGlagolitic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Goth%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansGothic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hano%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansHanunoo-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Armi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansImperialAramaic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Phli%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansInscriptionalPahlavi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Prti%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansInscriptionalParthian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Java%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansJavanese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Kthi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKaithi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Kali%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKayahLi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Khar%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansKharoshthi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lepc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLepcha-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Limb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLimbu-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Linb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLinearB-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lisu%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLisu-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lyci%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLycian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lydi%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLydian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mand%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMandaic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mtei%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMeeteiMayek-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Talu%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNewTaiLue-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Nkoo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNKo-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ogam%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOgham-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Olck%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOlChiki-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ital%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldItalic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Xpeo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldPersian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sarb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldSouthArabian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Orkh%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldTurkic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Osge%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOsage-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Osma%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOsmanya-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Phnx%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPhoenician-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Rjng%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansRejang-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Runr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansRunic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Samr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSamaritan-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Saur%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSaurashtra-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Shaw%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansShavian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sund%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSundanese-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sylo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSylotiNagri-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+Esrangela+should+precede+Eastern+and+Western+Syriac%2C+since+it%27s+our+default+form.+--%3E+%3Cfamily+lang%3D%22und-Syre%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSyriacEstrangela-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Syrn%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSyriacEastern-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Syrj%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSyriacWestern-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tglg%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTagalog-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tagb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTagbanwa-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lana%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTaiTham-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tavt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTaiViet-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tibt%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTibetan-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansTibetan-Bold.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Tfng%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTifinagh-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Ugar%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansUgaritic-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Vaii%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansVai-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSymbols-Regular-Subsetted.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22zh-Hans%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%222%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22zh-Hant+zh-Bopo%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%223%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22ja%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%220%22%3ENotoSansCJK-Regular.ttc%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%220%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22ko%22%3E+%3Cfont+weight%3D%22100%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22200%22+style%3D%22normal%22%3ENotoSansSC-Regular.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22300%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22500%22+style%3D%22normal%22%3ENotoSansSC-Medium.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22600%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22700%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22800%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22900%22+style%3D%22normal%22%3ENotoSansSC-Bold.ttf%3C%2Ffont%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22+index%3D%221%22+fallbackFor%3D%22serif%22%3ENotoSerifCJK-Regular.ttc%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Zsye%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoColorEmoji.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Zsym%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSymbols-Regular-Subsetted2.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C!--+Tai+Le%2C+Yi%2C+Mongolian%2C+and+Phags-pa+are+intentionally+kept+last%2C+to+make+sure+they+don%27t+override+the+East+Asian+punctuation+for+Chinese.+--%3E+%3Cfamily+lang%3D%22und-Tale%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansTaiLe-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Yiii%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansYi-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mong%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMongolian-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Phag%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPhagsPa-Regular.ttf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hluw%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansAnatolianHieroglyphs-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bass%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBassaVah-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Bhks%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansBhaiksuki-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hatr%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansHatran-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Lina%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansLinearA-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mani%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansManichaean-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Marc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMarchen-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Merc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMeroitic-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Plrd%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMiao-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mroo%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMro-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Mult%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansMultani-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Nbat%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNabataean-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Newa%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansNewa-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Narb%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldNorthArabian-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Perm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansOldPermic-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Hmng%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPahawhHmong-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Palm%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPalmyrene-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Pauc%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansPauCinHau-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Shrd%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSharada-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3Cfamily+lang%3D%22und-Sora%22%3E+%3Cfont+weight%3D%22400%22+style%3D%22normal%22%3ENotoSansSoraSompeng-Regular.otf%3C%2Ffont%3E+%3C%2Ffamily%3E+%3C%2Ffamilyset%3E\u0026aqs=chrome..69i57.884j0j7\u0026sourceid=chrome\u0026ie=UTF-8\"\r\nvar r=/1006/g\r\nvar f=m.length\r\n\r\n\r\n\r\nconsole.log(f)\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n","created_at":"2021-06-04T23:52:01.263+08:00","updated_at":"2021-07-30T05:22:11.382+08:00","name":"RS","language":"javascript","screenshot":{"url":"https://cdn6.koding.school/uploads/project/screenshot/259286/9a2602154c461dab9ff9c73cf51c9a62.jpg"},"parent_id":2,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":25,"hashid":"meyswqr3r","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":4955406,"file_name":"Gymnopedie_No_1.mp3","project_id":259286,"asset_id":302341,"created_at":"2021-06-04T23:52:01.268+08:00","updated_at":"2021-06-04T23:52:01.268+08:00"},{"id":4955407,"file_name":"koding.png","project_id":259286,"asset_id":302340,"created_at":"2021-06-04T23:52:01.270+08:00","updated_at":"2021-06-04T23:52:01.270+08:00"},{"id":4955408,"file_name":"space_bg.jpg","project_id":259286,"asset_id":302339,"created_at":"2021-06-04T23:52:01.271+08:00","updated_at":"2021-06-04T23:52:01.271+08:00"},{"id":4955409,"file_name":"earth.png","project_id":259286,"asset_id":302338,"created_at":"2021-06-04T23:52:01.272+08:00","updated_at":"2021-06-04T23:52:01.272+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
下載 Android APP (APK)
截圖
1:1:1
1:1
full
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦