{"id":4029,"date":"2017-02-09T08:02:27","date_gmt":"2017-02-09T13:02:27","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=4029"},"modified":"2024-02-20T16:45:58","modified_gmt":"2024-02-20T13:45:58","slug":"enable-gzip-compression-website","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/","title":{"rendered":"How to Enable Gzip Compression on Your Website"},"content":{"rendered":"\n

No one in their right mind enjoys the experience of being tormented by a slow-loading website and that is why we cannot help but help out with a guide on gzip compression.<\/p>\n\n\n\n

You as the website developer would be most concerned in keeping visitors on your website knowing they have short attention spans. Visitors to are notorious for abandoning websites if the page does not load in a few seconds in the least so this puts a lot of pressure on the developer to ensure this does not happen.<\/p>\n\n\n\n

There are several ways to make your website run faster but this one method of gzip compression returns great rewards of up to 70% response size all for relatively little effort. I say little effort on the server end because you really need to configure this once and let the technology work itself.<\/p>\n\n\n\n

On the side of the user, it is important to note that all modern web browsers support gzip compression so there is really nothing to be done on that end.<\/p>\n\n\n\n

Enabling Gzip Compression for Your Apache Driven Website<\/h2>\n\n\n\n

Apache<\/a> is a popular web server primarily used on Linux<\/a> and Unix-based operating systems even though it is fully usable on Windows operating systems. To start you need to edit the .htaccess file on your root. Next, you need to check for the deflate module, and if it is there tell the server which types of files should be compressed and that is as much as there is to it.<\/p>\n\n\n\n

You can check the deflate module using:<\/p>\n\n\n\n

<ifmodule mod_deflate.c><\/strong>
 … add your directive here<\/strong>
<\/ifmodule><\/strong><\/p>\n\n\n\n

The directive then looks something like this:<\/p>\n\n\n\n

AddOutputFilterByType DEFLATE [file mime types seperated with spaces]<\/em><\/strong> like this text\/css application\/x-javascript application\/javascript<\/em><\/strong>.<\/p>\n\n\n\n

Believe it or not, that’s it. save the .htaccess file and you are done.<\/p>\n\n\n\n

Here is a comprehensive list of mime types in a working .htaccess file that you can adopt for your website. You can add or remove any mime types you wish to or not compress. It was originally posted here on GitHub where you can go in a fork it.<\/p>\n\n\n\n

# ----------------------------------------------------------------------\n# | Compression                                                        |\n# ----------------------------------------------------------------------\n\n<IfModule mod_deflate.c>\n\n    # Force compression for mangled `Accept-Encoding` request headers\n    # https:\/\/developer.yahoo.com\/blogs\/ydn\/pushing-beyond-gzipping-25601.html\n\n    <IfModule mod_setenvif.c>\n        <IfModule mod_headers.c>\n            SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\\s*,?\\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding\n            RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding\n        <\/IfModule>\n    <\/IfModule>\n\n    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n    # Compress all output labeled with one of the following media types.\n    #\n    # (!) For Apache versions below version 2.3.7 you don't need to\n    # enable `mod_filter` and can remove the `<IfModule mod_filter.c>`\n    # and `<\/IfModule>` lines as `AddOutputFilterByType` is still in\n    # the core directives.\n    #\n    # https:\/\/httpd.apache.org\/docs\/current\/mod\/mod_filter.html#addoutputfilterbytype\n\n    <IfModule mod_filter.c>\n        AddOutputFilterByType DEFLATE "application\/atom+xml" \\\n                                      "application\/javascript" \\\n                                      "application\/json" \\\n                                      "application\/ld+json" \\\n                                      "application\/manifest+json" \\\n                                      "application\/rdf+xml" \\\n                                      "application\/rss+xml" \\\n                                      "application\/schema+json" \\\n                                      "application\/vnd.geo+json" \\\n                                      "application\/vnd.ms-fontobject" \\\n                                      "application\/x-font-ttf" \\\n                                      "application\/x-javascript" \\\n                                      "application\/x-web-app-manifest+json" \\\n                                      "application\/xhtml+xml" \\\n                                      "application\/xml" \\\n                                      "font\/eot" \\\n                                      "font\/opentype" \\\n                                      "image\/bmp" \\\n                                      "image\/svg+xml" \\\n                                      "image\/vnd.microsoft.icon" \\\n                                      "image\/x-icon" \\\n                                      "text\/cache-manifest" \\\n                                      "text\/css" \\\n                                      "text\/html" \\\n                                      "text\/javascript" \\\n                                      "text\/plain" \\\n                                      "text\/vcard" \\\n                                      "text\/vnd.rim.location.xloc" \\\n                                      "text\/vtt" \\\n                                      "text\/x-component" \\\n                                      "text\/x-cross-domain-policy" \\\n                                      "text\/xml"\n\n    <\/IfModule>\n\n    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n    # Map the following filename extensions to the specified\n    # encoding type in order to make Apache serve the file types\n    # with the appropriate `Content-Encoding` response header\n    # (do note that this will NOT make Apache compress them!).\n    #\n    # If these files types would be served without an appropriate\n    # `Content-Enable` response header, client applications (e.g.:\n    # browsers) wouldn't know that they first need to uncompress\n    # the response, and thus, wouldn't be able to understand the\n    # content.\n    #\n    # https:\/\/httpd.apache.org\/docs\/current\/mod\/mod_mime.html#addencoding\n\n    <IfModule mod_mime.c>\n        AddEncoding gzip              svgz\n    <\/IfModule>\n\n<\/IfModule><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"

No one in their right mind enjoys the experience of being tormented by a slow-loading website and that is why we cannot help but help out with a guide on…<\/p>\n","protected":false},"author":1,"featured_media":4030,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23],"tags":[58,287,301,433,449,591,635,636,638,643],"yoast_head":"\nHow to Speed up Your Website Using Gzip Compression<\/title>\n<meta name=\"description\" content=\"Here's how to enable Gzip Compression and speed up your website to better your users' experience and to increase your page ranking\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Speed up Your Website Using Gzip Compression\" \/>\n<meta property=\"og:description\" content=\"Here's how to enable Gzip Compression and speed up your website to better your users' experience and to increase your page ranking\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-02-09T13:02:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-20T13:45:58+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Enable Gzip Compression on Your Website\",\"datePublished\":\"2017-02-09T13:02:27+00:00\",\"dateModified\":\"2024-02-20T13:45:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\"},\"wordCount\":365,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg\",\"keywords\":[\"Apache\",\"Gzip\",\"htaccess\",\"Optimization\",\"Performance\",\"Tools\",\"Web\",\"Web Applications\",\"Web Development\",\"Websites\"],\"articleSection\":[\"Articles\",\"Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\",\"url\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\",\"name\":\"How to Speed up Your Website Using Gzip Compression\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg\",\"datePublished\":\"2017-02-09T13:02:27+00:00\",\"dateModified\":\"2024-02-20T13:45:58+00:00\",\"description\":\"Here's how to enable Gzip Compression and speed up your website to better your users' experience and to increase your page ranking\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg\",\"width\":1200,\"height\":630,\"caption\":\"Gzip Compression\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable Gzip Compression on Your Website\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Speed up Your Website Using Gzip Compression","description":"Here's how to enable Gzip Compression and speed up your website to better your users' experience and to increase your page ranking","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/","og_locale":"en_US","og_type":"article","og_title":"How to Speed up Your Website Using Gzip Compression","og_description":"Here's how to enable Gzip Compression and speed up your website to better your users' experience and to increase your page ranking","og_url":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2017-02-09T13:02:27+00:00","article_modified_time":"2024-02-20T13:45:58+00:00","og_image":[{"width":1200,"height":630,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Enable Gzip Compression on Your Website","datePublished":"2017-02-09T13:02:27+00:00","dateModified":"2024-02-20T13:45:58+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/"},"wordCount":365,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg","keywords":["Apache","Gzip","htaccess","Optimization","Performance","Tools","Web","Web Applications","Web Development","Websites"],"articleSection":["Articles","Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/","url":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/","name":"How to Speed up Your Website Using Gzip Compression","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg","datePublished":"2017-02-09T13:02:27+00:00","dateModified":"2024-02-20T13:45:58+00:00","description":"Here's how to enable Gzip Compression and speed up your website to better your users' experience and to increase your page ranking","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/enable-gzip-compression-website\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2017\/02\/Gzip-Compression.jpg","width":1200,"height":630,"caption":"Gzip Compression"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/enable-gzip-compression-website\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Enable Gzip Compression on Your Website"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/4029"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=4029"}],"version-history":[{"count":1,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/4029\/revisions"}],"predecessor-version":[{"id":13568,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/4029\/revisions\/13568"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/4030"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=4029"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=4029"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=4029"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}