/* Widget Name: Button Description: Create a custom button with flexible styling, icon support, and click tracking functionality. Author: SiteOrigin Author URI: https://siteorigin.com Documentation: https://siteorigin.com/widgets-bundle/button-widget-documentation/ Keywords: event, icon, link */ class SiteOrigin_Widget_Button_Widget extends SiteOrigin_Widget { public function __construct() { parent::__construct( 'sow-button', __( 'SiteOrigin Button', 'so-widgets-bundle' ), array( 'description' => __( 'Create a custom button with flexible styling, icon support, and click tracking functionality.', 'so-widgets-bundle' ), 'help' => 'https://siteorigin.com/widgets-bundle/button-widget-documentation/', ), array( ), false, plugin_dir_path( __FILE__ ) ); } public function get_settings_form() { return array( 'responsive_breakpoint' => array( 'type' => 'measurement', 'label' => __( 'Responsive Breakpoint', 'so-widgets-bundle' ), 'default' => '780px', 'description' => __( 'This setting controls when the Mobile Align setting will be used. The default value is 780px.', 'so-widgets-bundle' ), ), ); } public function initialize() { $this->register_frontend_styles( array( array( 'sow-button-base', plugin_dir_url( __FILE__ ) . 'css/style.css', array(), SOW_BUNDLE_VERSION, ), ) ); } public function get_widget_form() { return array( 'text' => array( 'type' => 'text', 'label' => __( 'Button Text', 'so-widgets-bundle' ), ), 'url' => array( 'type' => 'link', 'label' => __( 'Destination URL', 'so-widgets-bundle' ), 'allow_shortcode' => true, ), 'new_window' => array( 'type' => 'checkbox', 'default' => false, 'label' => __( 'Open in a new window', 'so-widgets-bundle' ), ), 'download' => array( 'type' => 'checkbox', 'default' => false, 'label' => __( 'Download', 'so-widgets-bundle' ), 'description' => __( 'The Destination URL will be downloaded when a user clicks on the button.', 'so-widgets-bundle' ), ), 'button_icon' => array( 'type' => 'section', 'label' => __( 'Icon', 'so-widgets-bundle' ), 'fields' => array( 'icon_selected' => array( 'type' => 'icon', 'label' => __( 'Icon', 'so-widgets-bundle' ), ), 'icon_color' => array( 'type' => 'color', 'label' => __( 'Icon Color', 'so-widgets-bundle' ), ), 'icon' => array( 'type' => 'media', 'label' => __( 'Image Icon', 'so-widgets-bundle' ), 'description' => __( 'Replaces the icon with your own image icon.', 'so-widgets-bundle' ), ), 'icon_placement' => array( 'type' => 'select', 'label' => __( 'Icon Placement', 'so-widgets-bundle' ), 'default' => 'left', 'options' => array( 'top' => __( 'Top', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'bottom' => __( 'Bottom', 'so-widgets-bundle' ), 'left' => __( 'Left', 'so-widgets-bundle' ), ), ), ), ), 'design' => array( 'type' => 'section', 'label' => __( 'Design and Layout', 'so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'width' => array( 'type' => 'measurement', 'label' => __( 'Width', 'so-widgets-bundle' ), 'description' => __( 'Leave blank to let the button resize according to content.', 'so-widgets-bundle' ), ), 'align' => array( 'type' => 'select', 'label' => __( 'Align', 'so-widgets-bundle' ), 'default' => 'center', 'options' => array( 'left' => __( 'Left', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'center' => __( 'Center', 'so-widgets-bundle' ), 'justify' => __( 'Full Width', 'so-widgets-bundle' ), ), ), 'mobile_align' => array( 'type' => 'select', 'label' => __( 'Mobile Align', 'so-widgets-bundle' ), 'default' => 'center', 'options' => array( 'left' => __( 'Left', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'center' => __( 'Center', 'so-widgets-bundle' ), 'justify' => __( 'Full Width', 'so-widgets-bundle' ), ), ), 'theme' => array( 'type' => 'select', 'label' => __( 'Button Theme', 'so-widgets-bundle' ), 'default' => 'flat', 'options' => array( 'atom' => __( 'Atom', 'so-widgets-bundle' ), 'flat' => __( 'Flat', 'so-widgets-bundle' ), 'wire' => __( 'Wire', 'so-widgets-bundle' ), ), ), 'button_color' => array( 'type' => 'color', 'label' => __( 'Button Color', 'so-widgets-bundle' ), ), 'text_color' => array( 'type' => 'color', 'label' => __( 'Text Color', 'so-widgets-bundle' ), ), 'hover' => array( 'type' => 'checkbox', 'default' => true, 'label' => __( 'Use hover effects', 'so-widgets-bundle' ), 'state_emitter' => array( 'callback' => 'conditional', 'args' => array( 'hover[show]: val', 'hover[hide]: ! val', ), ), ), 'hover_background_color' => array( 'type' => 'color', 'label' => __( 'Hover Background Color', 'so-widgets-bundle' ), 'state_handler' => array( 'hover[show]' => array( 'show' ), 'hover[hide]' => array( 'hide' ), ), ), 'hover_text_color' => array( 'type' => 'color', 'label' => __( 'Hover Text Color', 'so-widgets-bundle' ), 'state_handler' => array( 'hover[show]' => array( 'show' ), 'hover[hide]' => array( 'hide' ), ), ), 'font' => array( 'type' => 'font', 'label' => __( 'Font', 'so-widgets-bundle' ), 'default' => 'default', ), 'font_size' => array( 'type' => 'measurement', 'label' => __( 'Font Size', 'so-widgets-bundle' ), 'default' => '1em', ), 'icon_size' => array( 'type' => 'measurement', 'label' => __( 'Icon Size', 'so-widgets-bundle' ), 'default' => '1.3em', ), 'padding' => array( 'type' => 'measurement', 'label' => __( 'Padding', 'so-widgets-bundle' ), 'default' => '1em', ), 'rounding' => array( 'type' => 'multi-measurement', 'label' => __( 'Rounding', 'so-widgets-bundle' ), 'default' => '0.25em 0.25em 0.25em 0.25em', 'measurements' => array( 'top' => array( 'label' => __( 'Top', 'so-widgets-bundle' ), ), 'right' => array( 'label' => __( 'Right', 'so-widgets-bundle' ), ), 'bottom' => array( 'label' => __( 'Bottom', 'so-widgets-bundle' ), ), 'left' => array( 'label' => __( 'Left', 'so-widgets-bundle' ), ), ), ), ), ), 'attributes' => array( 'type' => 'section', 'label' => __( 'Other Attributes and SEO', 'so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'id' => array( 'type' => 'text', 'label' => __( 'Button ID', 'so-widgets-bundle' ), 'description' => __( 'An ID attribute allows you to target this button in JavaScript.', 'so-widgets-bundle' ), ), 'classes' => array( 'type' => 'text', 'label' => __( 'Button Classes', 'so-widgets-bundle' ), 'description' => __( 'Additional CSS classes added to the button link.', 'so-widgets-bundle' ), ), 'title' => array( 'type' => 'text', 'label' => __( 'Title Attribute', 'so-widgets-bundle' ), 'description' => __( 'Adds a title attribute to the button link.', 'so-widgets-bundle' ), ), 'on_click' => array( 'type' => 'text', 'label' => __( 'Onclick', 'so-widgets-bundle' ), 'description' => __( 'Run this JavaScript when the button is clicked. Ideal for tracking.', 'so-widgets-bundle' ), 'onclick' => true, ), 'rel' => array( 'type' => 'text', 'label' => __( 'Rel Attribute', 'so-widgets-bundle' ), 'description' => __( 'Adds a rel attribute to the button link.', 'so-widgets-bundle' ), ), ), ), ); } public function get_style_name( $instance ) { if ( empty( $instance['design']['theme'] ) ) { return 'atom'; } return $instance['design']['theme']; } /** * Get the variables for the Button Widget. * * @return array */ public function get_template_variables( $instance, $args ) { $button_attributes = array(); $attributes = $instance['attributes']; $classes = ! empty( $attributes['classes'] ) ? $attributes['classes'] : ''; if ( ! empty( $classes ) ) { $classes .= ' '; } $classes .= 'sowb-button ow-icon-placement-' . $instance['button_icon']['icon_placement']; if ( ! empty( $instance['design']['hover'] ) ) { $classes .= ' ow-button-hover'; } $button_attributes['class'] = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $classes ) ) ); if ( ! empty( $instance['new_window'] ) ) { $button_attributes['target'] = '_blank'; $button_attributes['rel'] = 'noopener noreferrer'; } if ( ! empty( $instance['download'] ) ) { $button_attributes['download'] = null; } if ( ! empty( $attributes['id'] ) ) { $button_attributes['id'] = $attributes['id']; } if ( ! empty( $attributes['title'] ) ) { $button_attributes['title'] = $attributes['title']; } if ( ! empty( $attributes['rel'] ) ) { if ( isset( $button_attributes['rel'] ) ) { $button_attributes['rel'] .= " $attributes[rel]"; } else { $button_attributes['rel'] = $attributes['rel']; } } $icon_image_url = ''; if ( ! empty( $instance['button_icon']['icon'] ) ) { $attachment = wp_get_attachment_image_src( $instance['button_icon']['icon'] ); if ( ! empty( $attachment ) ) { $icon_image_url = $attachment[0]; } } return array( 'button_attributes' => apply_filters( 'siteorigin_widgets_button_attributes', $button_attributes, $instance ), 'href' => ! empty( $instance['url'] ) ? $instance['url'] : '', 'on_click' => ! empty( $attributes['on_click'] ) ? $attributes['on_click'] : '', 'align' => $instance['design']['align'], 'icon_image_url' => $icon_image_url, 'icon' => $instance['button_icon']['icon_selected'], 'icon_color' => $instance['button_icon']['icon_color'], 'text' => $instance['text'], ); } /** * Get the variables that we'll be injecting into the less stylesheet. * * @return array */ public function get_less_variables( $instance ) { if ( empty( $instance ) || empty( $instance['design'] ) ) { return array(); } $text_color = isset( $instance['design']['text_color'] ) ? $instance['design']['text_color'] : ''; $button_color = isset( $instance['design']['button_color'] ) ? $instance['design']['button_color'] : ''; $less_vars = array( 'button_width' => isset( $instance['design']['width'] ) ? $instance['design']['width'] : '', 'button_color' => $button_color, 'text_color' => $text_color, 'icon_size' => ! empty( $instance['design']['icon_size'] ) ? $instance['design']['icon_size'] : '1.3em', 'hover_text_color' => ! empty( $instance['design']['hover_text_color'] ) ? $instance['design']['hover_text_color'] : $text_color, 'hover_background_color' => ! empty( $instance['design']['hover_background_color'] ) ? $instance['design']['hover_background_color'] : $button_color, 'font_size' => isset( $instance['design']['font_size'] ) ? $instance['design']['font_size'] : '', 'rounding' => isset( $instance['design']['rounding'] ) ? $instance['design']['rounding'] : '', 'padding' => isset( $instance['design']['padding'] ) ? $instance['design']['padding'] : '', 'has_text' => empty( $instance['text'] ) ? 'false' : 'true', 'responsive_breakpoint' => $this->get_global_settings( 'responsive_breakpoint' ), 'align' => ! empty( $instance['design']['align'] ) ? $instance['design']['align'] : 'center', 'mobile_align' => ! empty( $instance['design']['mobile_align'] ) ? $instance['design']['mobile_align'] : 'center', 'has_button_icon' => empty( $instance['button_icon']['icon_selected'] ) ? 'false' : 'true', ); if ( ! empty( $instance['design']['font'] ) ) { $font = siteorigin_widget_get_font( $instance['design']['font'] ); $less_vars['button_font'] = $font['family']; if ( ! empty( $font['weight'] ) ) { $less_vars['button_font_weight'] = $font['weight_raw']; $less_vars['button_font_style'] = $font['style']; } } return $less_vars; } /** * Make sure the instance is the most up to date version. * * @return mixed */ public function modify_instance( $instance ) { if ( empty( $instance ) ) { return array(); } $migrate_props = array( 'button_icon' => array( 'icon_selected', 'icon_color', 'icon', ), 'design' => array( 'align', 'theme', 'button_color', 'text_color', 'hover', 'hover_text_color', 'hover_background_color', 'font_size', 'rounding', 'padding', ), 'attributes' => array( 'id', ), ); foreach ( $migrate_props as $prop => $sub_props ) { if ( empty( $instance[ $prop ] ) ) { $instance[ $prop ] = array(); foreach ( $sub_props as $sub_prop ) { if ( isset( $instance[ $sub_prop ] ) ) { $instance[ $prop ][ $sub_prop ] = $instance[ $sub_prop ]; unset( $instance[ $sub_prop ] ); } } } } // Migrate onclick setting to prevent Wordfence flag. if ( ! empty( $instance['attributes'] ) && ! empty( $instance['attributes']['onclick'] ) ) { $instance['attributes']['on_click'] = $instance['attributes']['onclick']; } // If the mobile_align setting isn't set, set it to the same value as the align value. if ( ! empty( $instance['design'] ) && ! empty( $instance['design']['align'] ) && empty( $instance['design']['mobile_align'] ) ) { $instance['design']['mobile_align'] = $instance['design']['align']; } // Migrate predefined settings to more customizable settings. if ( ! empty( $instance['design']['font_size'] ) && is_numeric( $instance['design']['font_size'] ) ) { $instance['design']['font_size'] .= 'em'; } if ( ! empty( $instance['design']['padding'] ) && is_numeric( $instance['design']['padding'] ) ) { $instance['design']['padding'] .= 'em'; } if ( ! empty( $instance['design']['rounding'] ) && is_numeric( $instance['design']['rounding'] ) ) { $instance['design']['rounding'] = $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em'; } if ( empty( $instance['design']['icon_size'] ) ) { $instance['design']['icon_size'] = '1.3em'; } return $instance; } public function get_form_teaser() { if ( class_exists( 'SiteOrigin_Premium' ) ) { return false; } return array( sprintf( __( 'Add a beautiful tooltip to the Button Widget with %sSiteOrigin Premium%s', 'so-widgets-bundle' ), '', '' ), ); } } siteorigin_widget_register( 'sow-button', __FILE__, 'SiteOrigin_Widget_Button_Widget' );{"id":95810,"date":"2026-05-24T02:46:44","date_gmt":"2026-05-24T02:46:44","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=95810"},"modified":"2026-05-24T02:46:46","modified_gmt":"2026-05-24T02:46:46","slug":"white-and-you-may-ask-yourself-ports-enjoy-totally-free-light-and-you-can-wonder-position-online-game-demonstrations","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/white-and-you-may-ask-yourself-ports-enjoy-totally-free-light-and-you-can-wonder-position-online-game-demonstrations\/","title":{"rendered":"White and you may Ask yourself Ports Enjoy Totally free Light and you can Wonder Position Online game Demonstrations"},"content":{"rendered":"

An informed combos occurs whenever surrounding symbols fall into line anyplace for the grid, which then enhances the probability to have huge winnings. Below are an instant site table reflecting a knowledgeable Light & Ponder slots, its key has actually, and you will templates. The business at some point decided to move the attract in order to gambling establishment betting during the a strategic opinion inside the 2020, offering the lottery and wagering organizations. The business originated in 2000, whenever Autotote, based for the 1917, gotten Scientific Game, which was established in 1973. Light & Inquire supplies on line position games, offering a diverse collection out-of titles filled with antique harbors and you may Megaways titles. Given that company we realize as the White & Inquire now provides work lower than you to title once the 2022, i shade their root into early twentieth millennium.<\/p>\n

Earlier also known as Scientific Online game https:\/\/crazytimegame-ca.com\/<\/a> , Light & Inquire try the leading mix-system in the world games company. Once the an excellent, globally chief for the mix-program supply, the organization prides alone for the starting the new worlds out of betting experiences. Within the 2022, in concert with Real Playing, the firm established their purpose to provide a live casino experience. These are typically classics like Three card Casino poker and you will Best Texas Hold\u2019em and you will alternatives that have customisable options instance Monopoly Roulette Tycoon.<\/p>\n

Until the business been able to release their biggest online game, it was required to construct it more than dozens of years. The primary element you to distinguishes Light & Wonder off their team are their very unique themes. With more than 170+ harbors, 25+ gambling enterprises, and imaginative graphics pass on around the 40+ nations all over the world, Light & Ask yourself is the in the world chief regarding the iGaming industry. Scoring per games centered on decimal and you will qualitative parameters particularly RTP, multipliers, profits, 100 percent free spins, and you will wager philosophy, which have decisive outputs from our, in-domestic wise algorithm equipment CasinoMeta™.<\/p>\n

If you’d like some other Megaways label with a high level of an effective way to victory, IGT\u2019s Wheel off Chance Megaways includes as much as one million Megaways and you can 82,700 x choice earnings. In the first place from the WMS, it\u2019s played towards the 5 reels and you may 31 paylines regarding 30p for every spin. Laden up with identity and you will amaze bonus has, Wizard from Ounce Ruby Slippers originates from the latest legendary flick. Colourful, fun and you may aesthetically very simple, you go to brand new emerald green hills out of Ireland in which fortune awaits.<\/p>\n

A step i introduced to your mission to make a global self-different program, that’ll create insecure participants in order to cut-off their usage of every gambling on line possibilities. In the center of one’s team, you will find White & Inquire slot machines instance Forest off Money and you may Best Fire Hook Explosion \u2013 innovative cupboards located around the world. The firm now offers an array of betting affairs, including Light & Wonder slot machines, table online game, shuffling servers, and you can local casino management possibilities. Of numerous profiles also install short assistant tools to manage such option places significantly more safely and keep track of software position. Window or macOS isn\u2019t a local program for the Gamble Store, but you can accessibility the content playing with emulators such as BlueStacks, and therefore copy an android system.<\/p>\n

Its range boasts epic titles such as the Cleopatra show, which, comparable to L&W’s Zeus, enjoys outlined the Egyptian slots genre for a long time. When your blend of vintage property-built tradition and you may modern on the web possess from inside the Light & Inquire slots that suits you, there are other developers with the exact same concepts worthy of investigating. I recommend the fresh new provider’s ports so you can professionals which take pleasure in the experience away from classic casino betting and luxuriate in enjoying how those people amazing principles try blended with progressive keeps.<\/p>\n

In certain extra games, if the an arduous Cap symbol lands when you look at the a spot in place of good frame, it will create a-frame with respect to the newest bonus games, and if there already was a-frame, it will attempt to posting they or any other frame. Level as well as the step three Little Piggies while they make an empire out-of house and you will fortune. The nuts bell ‘s the higher-investing icon and you may replacements into the base online game symbols to create a whole lot more winning combos. Click the Play for Totally free option in order to weight the Huff N’ Alot more Puff Hard hat Edition demonstration, decide to try the keeps and winnings and decide if it is an effective online game you prefer. Played on the a beneficial 5×3 grid which have 243 an effective way to earn, the fresh core mechanics rotate up to gathering Difficult Caps.<\/p>\n

Our very own reviews is actually unbiased, clear, and you will clearly authored, and that means you constantly know who composed them and exactly why you might believe the new pointers provided. Demoslot is a different trial harbors program, with all blogs written in-domestic by the experienced position professionals. No software, no subscription and no software packages are expected. All the position opens directly in the web browser with virtual credits, in order to attempt the new game play, added bonus provides and you will cellular abilities before you choose what to play second. With over 100 position studios available on Demoslot, this type of team was ranked by genuine pro passion along the system and they are upgraded daily according to just what someone is participating in.<\/p>\n

If you’re the individuals is actually one another illustrations of classic White & Ask yourself video slot launches, they\u2019ve including revealed their ability to produce more recent content. The firm very first build lotto expertise, slot machines, or other gaming innovation. As well as being packed with amazing bonus features, there are also jackpots to play getting – the most significant you to are worthy of $dos,500! White & Question offer a wonderful range of ports and online casino games which have innovative extra provides and many layouts. The newest designer\u2019s collection has numerous types of imaginative slots and therefore offer a varied range of layouts.<\/p>\n

It actually was zero easy task so you’re able to restrict the big five free position studios, once we did a lot more than. The business focuses on clean math models, frequent extra triggers, and easy auto mechanics you to translate extremely well on promotion-big sweeps environment. It\u2019s the fresh business at the rear of this new all those J Mania harbors and you can Giga Matches ports, both of and this focus on bright video picture, non-traditional paylines, and you may flowing reels. The top online slots to play 100percent free often already been out-of finest position studios. Spin a number of cycles and you will move forward when it\u2019s perhaps not pressing.<\/p>\n

This money, part of Light & Wonder\u2019s Ignite system, is designed to \u201cservice emerging studios by providing all of them with systems and field supply\u201d, although it is still around viewed exactly how this will bowl out as it\u2019s very early months. Light & Ponder is well known for the innovative distinct on the web slot video game, offering a diverse set of themes, aspects, and you may incentive has actually. Light & Wonder would imaginative harbors having varied posts and themes, and gambling enterprise desk games having fun with cutting-edge technical. Zero membership otherwise download is needed to supply a complete game, in addition to the incentive possess.<\/p>\n

Play the Moving Guitar Connect™ slot machine from the well known online casinos and find out this new worthwhile belongings in this new pots. We\u2019ve mentioned the wonderful graphics once or twice, and we also\u2019ll talk about them again. Most other Asian-driven games are the Beauty of the newest Eastern position because of the Gamefish Globally and also the China Charm position from CQ9 Gambling. Gamble Dancing Drums Link™ 100percent free in this post out of VegasSlotsOnline after that twist the newest reels which have 18 gold coins out of 0.18 in order to 88.00. It breathtaking vision comes from brand new studios regarding Light & Inquire, and you will appreciate their whole assortment from inside the pc and you may cellular systems a maximum of prominent online casinos. You could struck successful combos having only about three coordinating symbols, if you are four-of-a-kind Pantheons otherwise Zeus give you the greatest symbol payouts.<\/p>\n","protected":false},"excerpt":{"rendered":"

An informed combos occurs whenever surrounding symbols fall into line anyplace for the grid, which then enhances the probability to have huge winnings. Below are an instant site table reflecting a knowledgeable Light & Ponder slots, its key has actually, and you will templates. The business at some point decided\u2026<\/p>\n

Continue reading<\/span><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-95810","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95810","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/comments?post=95810"}],"version-history":[{"count":1,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95810\/revisions"}],"predecessor-version":[{"id":95811,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/posts\/95810\/revisions\/95811"}],"wp:attachment":[{"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/media?parent=95810"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/categories?post=95810"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/klecet.edu.in\/alumni\/wp-json\/wp\/v2\/tags?post=95810"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}