// source --> https://www.nypavers.com/wp-content/plugins/wp-yelp-review-slider/public/js/wprev-public.js?ver=9.0 
(function( $ ) {
	'use strict';

	/**
	 * All of the code for your public-facing JavaScript source
	 * should reside in this file.
	 *
	 * Note: It has been assumed you will write jQuery code here, so the
	 * $ function reference has been prepared for usage within the scope
	 * of this function.
	 *
	 * This enables you to define handlers, for when the DOM is ready:
	 *
	 * $(function() {
	 *
	 * });
	 *
	 * When the window is loaded:
	 *
	 * $( window ).load(function() {
	 *
	 * });
	 *
	 * ...and/or other possibilities.
	 *
	 * Ideally, it is not considered best practise to attach more than a
	 * single DOM-ready or window-load handler for a particular page.
	 * Although scripts in the WordPress core, Plugins and Themes may be
	 * practising this, we should strive to set a better example in our own work.
	 */
	//document ready
	$(function(){
	 
		$( ".wprs_rd_more" ).click(function() {
			$(this ).hide();
			$(this ).next("span").show();
			
			//change height of wprev-slider-widget
			$(this ).closest( ".wprev-slider-widget" ).css( "height", "auto" );
			
			//change height of wprev-slider
			$(this ).closest( ".wprev-slider" ).css( "height", "auto" );
			
			
		});
		
		//check to see if we need to create slider;
		$( ".wprev-slider" ).each(function( index ) {
			createaslider(this,'shortcode');
		});
		$( ".wprev-slider-widget" ).each(function( index ) {
			createaslider(this,'widget');
		});
		function createaslider(thissliderdiv,type){

			var $slider = $( thissliderdiv );
			//slider options passed via data-attributes from the template settings
			var sliderhideprevnext = $slider.attr( "data-sliderhideprevnext" );
			var sliderhidedots = $slider.attr( "data-sliderhidedots" );
			var sliderautoplay = $slider.attr( "data-sliderautoplay" );
			var slidespeed = $slider.attr( "data-slidespeed" );
			var slideautodelay = $slider.attr( "data-slideautodelay" );
			var sliderfixedheight = $slider.attr( "data-sliderfixedheight" );
			var revsameheight = $slider.attr( "data-revsameheight" );

			var showarrows = true;
			if(type=='widget'){
				showarrows = false;
			}
			if(sliderhideprevnext=="yes"){
				showarrows = false;
			}
			var shownav = true;
			if(sliderhidedots=="yes"){
				shownav = false;
			}
			var sautoplay = false;
			if(sliderautoplay=="yes"){
				sautoplay = true;
			}
			var sspeed = parseFloat(slidespeed) * 1000;
			if(isNaN(sspeed) || sspeed<=0){ sspeed = 750; }
			var sdelay = parseFloat(slideautodelay) * 1000;
			if(isNaN(sdelay) || sdelay<=0){ sdelay = 5000; }
			if(sdelay<sspeed){ sdelay = sspeed; }
			var sanimate = true;
			if(sliderfixedheight=="yes"){
				sanimate = false;
			}

			//unhide other rows.
			$slider.find('li').show();
			var slider = $slider.wprs_unslider(
					{
					autoplay:sautoplay,
					infinite:false,
					delay: sdelay,
					speed: sspeed,
					animation: 'horizontal',
					arrows: showarrows,
					nav: shownav,
					animateHeight: sanimate,
					activeClass: 'wprs_unslider-active',
					}
				);

			if(sanimate==true){
				setTimeout(function(){
					//height of active slide
					var firstheight = $slider.find('.wprs_unslider-active').height();
					$slider.css( 'height', firstheight );
				}, 500);
			}

			if(sautoplay==true){
				slider.on('mouseover', function() {slider.data('wprs_unslider').stop();}).on('mouseout', function() {slider.data('wprs_unslider').start();});
			}

			//force equal review-box heights when "Reviews Same Height" is on
			if(revsameheight=='yes'){
				var maxheights = $slider.find(".indrevdiv").map(function (){return $(this).outerHeight();}).get();
				var maxHeightofslide = Math.max.apply(null, maxheights);
				if(maxHeightofslide>0){ $slider.find(".indrevdiv").css( "min-height", maxHeightofslide ); }
			}

		};

		//simple tooltip for the "Verified on..." badge (and other .wprevtooltip elements)
		var wprevTooltipRoots = ".wpyelp_t1_outer_div, .wprevpro_t6_outer_div, .wpyelp_t1_outer_div_widget, .wprevpro_t6_outer_div_widget";
		$( wprevTooltipRoots ).on('mouseenter touchstart', '.wprevtooltip', function(e) {
			var titleText = $(this).attr('data-wprevtooltip');
			$(this).data('tiptext', titleText).removeAttr('data-wprevtooltip');
			$('<p class="wprevpro_tooltip"></p>').text(titleText).appendTo('body').css('top', (e.pageY - 15) + 'px').css('left', (e.pageX + 10) + 'px').fadeIn('slow');
		});
		$( wprevTooltipRoots ).on('mouseleave touchend', '.wprevtooltip', function(e) {
			$(this).attr('data-wprevtooltip', $(this).data('tiptext'));
			$('.wprevpro_tooltip').remove();
		});
		$( wprevTooltipRoots ).on('mousemove', '.wprevtooltip', function(e) {
			$('.wprevpro_tooltip').css('top', (e.pageY - 15) + 'px').css('left', (e.pageX + 10) + 'px');
		});

		// Lazy-load Lity only when review media thumbnails are on the page.
		// Use a manual open so we don't also fire Lity's built-in [data-lity] handler (double lightbox).
		function wprevBindMediaLightbox($root) {
			var $scope = $root && $root.length ? $root : $(document);
			$scope.off('click.wprevlity', 'a.wprev_media_img_a').on('click.wprevlity', 'a.wprev_media_img_a', function(e) {
				e.preventDefault();
				e.stopImmediatePropagation();
				var href = $(this).attr('href');
				if (!href || typeof lity !== 'function') {
					return;
				}
				lity(href);
			});
		}

		function wprevEnsureLity(callback) {
			if (typeof lity === 'function') {
				callback();
				return;
			}
			var base = (typeof wprevpublicjs_script_vars !== 'undefined' && wprevpublicjs_script_vars.wprevplugin_url)
				? wprevpublicjs_script_vars.wprevplugin_url
				: '';
			if (!base) {
				return;
			}
			if (!document.getElementById('wprev_lity_css')) {
				var head = document.getElementsByTagName('head')[0];
				var link = document.createElement('link');
				link.id = 'wprev_lity_css';
				link.rel = 'stylesheet';
				link.type = 'text/css';
				link.href = base + '/public/css/lity.min.css';
				link.media = 'all';
				head.appendChild(link);
			}
			$.getScript(base + '/public/js/lity.min.js', callback);
		}

		if ($('.wprev_media_div a.wprev_media_img_a').length > 0) {
			wprevEnsureLity(function() {
				wprevBindMediaLightbox($(document));
			});
		}

	});

})( jQuery );
// source --> https://www.nypavers.com/wp-content/plugins/fb-reviews-widget/assets/2.8/js/public-main.js?ver=2.8 
var rpi=rpi||{};
rpi.Time={getFormatTime:function(a,c,b){a=new Date(this._ms(a));var e=b||"en";b=function(h){return 10>h?"0"+h:""+h};var k=a.getHours(),l=((new Intl.DateTimeFormat(e,{day:"numeric",month:"short"})).formatToParts(a).find(function(h){return"month"===h.type})||{}).value;e=(new Intl.DateTimeFormat(e,{day:"numeric",month:"long"})).formatToParts(a).find(function(h){return"month"===h.type}).value;var u=a.getFullYear(),f=String(u).slice(-2),p={yyyy:u,Y:u,yy:f,y:f,MMMM:e,MMM:l,M:l,MM:b(a.getMonth()+1),m:b(a.getMonth()+
1),dd:b(a.getDate()),d:b(a.getDate()),HH:b(k),H:k,hh:b(k%12||12),h:k%12||12,mm:b(a.getMinutes()),i:b(a.getMinutes()),ss:b(a.getSeconds()),s:b(a.getSeconds()),a:12<=k?"pm":"am",A:12<=k?"PM":"AM"};return c.replace(/(MMMM|MMM|yyyy|HH|hh|MM|mm|dd|ss|yy|H|h|M|m|d|Y|y|i|s|a|A)/g,h=>null!=p[h]?p[h]:h)},getTimeAgo:function(a,c){a=(this._ms(a)-Date.now())/1E3;var b=Math.abs(a);c=new Intl.RelativeTimeFormat(c||"en",{numeric:"auto"});return 60>b?c.format(Math.round(a),"second"):3600>b?c.format(Math.round(a/
60),"minute"):86400>b?c.format(Math.round(a/3600),"hour"):2592E3>b?c.format(Math.round(a/86400),"day"):31536E3>b?c.format(Math.round(a/2592E3),"month"):c.format(Math.round(a/31536E3),"year")},_ms:function(a){a=parseInt(a,10);return 1E10>a?1E3*a:a}};var TrustReviews=TrustReviews||{};TrustReviews.slg="trustreviews";
TrustReviews.Plugin={next:function(a,c){a=this.parentNode;var b="."+TrustReviews.slg+"-hide";reviews=a.querySelectorAll(b);for(var e=0;e<c&&e<reviews.length;e++)reviews[e]&&(reviews[e].className=reviews[e].className.replace(TrustReviews.slg+"-hide"," "));reviews=a.querySelectorAll(b);reviews.length||a.removeChild(this);return!1},leave_popup:function(){TrustReviews.Plugin.popup(this.getAttribute("href"),620,500);return!1},lang:function(){var a=navigator;return(a.language||a.systemLanguage||a.userLanguage||
"en").substr(0,2).toLowerCase()},popup:function(a,c,b,e,k,l){k=k||screen.height/2-b/2;l=l||screen.width/2-c/2;return window.open(a,"","location=1,status=1,resizable=yes,width="+c+",height="+b+",top="+k+",left="+l)},timeago:function(){let a=document.querySelectorAll("."+TrustReviews.slg+" [data-rev]");for(var c=0;c<a.length;c++){let b=a[c].querySelector("[data-time]");b.innerHTML=rpi.Time.getTimeAgo(b.dataset.time,this.lang())}},read_more:function(){for(var a=document.querySelectorAll(".wp-more-toggle"),
c=0;c<a.length;c++)(function(b){b.onclick=function(){b.parentNode.removeChild(b.previousSibling.previousSibling);b.previousSibling.className="";b.textContent=""}})(a[c])},get_parent:function(a,c){c=c||TrustReviews.slg;if(0>a.className.split(" ").indexOf(c))for(;(a=a.parentElement)&&0>a.className.split(" ").indexOf(c););return a},init_slider:function(a,c){function b(d){var g=f("row",1);for(let v=0;v<g.length;v++){let w=g[v],m=w.offsetWidth;var r=510>m?"xs":750>m?"x":1100>m?"s":1450>m?"m":1800>m?"l":
"xl";w.className=a+"-row "+a+"-row-"+r}n.length&&C!=r&&setTimeout(function(){q.scrollLeft!=d*n[0].offsetWidth&&(q.scrollLeft=d*n[0].offsetWidth);e();C=r},200)}function e(){var d=f("reviews"),g=f("review",1),r=Math.round(d.offsetWidth/g[0].offsetWidth),v=Math.ceil(g.length/r),w=f("dots");if(w){w.innerHTML="";for(var m=0;m<v;m++){var y=document.createElement("div");y.className=a+"-dot";x=Math.ceil((d.scrollLeft+(d.scrollLeft+g[0].offsetWidth*r))/2*v/d.scrollWidth);x==m+1&&(y.className=a+"-dot active");
y.setAttribute("data-index",m+1);y.setAttribute("data-visible",r);w.appendChild(y);y.onclick=function(){var z=f("dot.active");z=parseInt(z.getAttribute("data-index"));var B=parseInt(this.getAttribute("data-index")),D=parseInt(this.getAttribute("data-visible"));z<B?l(D*Math.abs(B-z)):k(D*Math.abs(B-z));f("dot.active").className=a+"-dot";this.className=a+"-dot active";t&&clearInterval(t)}}}}function k(d){q.scrollBy(-n[0].offsetWidth*d,0)}function l(d){q.scrollBy(n[0].offsetWidth*d,0)}function u(){var d=
f("review:last-child"),g=d.getBoundingClientRect();d=d.parentNode.getBoundingClientRect();(2>Math.abs(d.left-g.left)||d.left<=g.left)&&g.left<d.right&&(2>Math.abs(d.right-g.right)||d.right>=g.right)&&g.right>d.left?k(n.length-Math.round(q.offsetWidth/n[0].offsetWidth)):l(1);t=setTimeout(u,E)}function f(d,g){return g?c.querySelectorAll("."+a+"-"+d):c.querySelector("."+a+"-"+d)}const p=f("row"),h=JSON.parse(p.getAttribute("data-options")),E=1E3*h.speed,q=f("reviews"),n=f("review",1);var C="",F=null,
t=null,G=function(){(p.offsetWidth||p.offsetHeight||p.getClientRects().length)&&"hidden"!==window.getComputedStyle(p).visibility?(setTimeout(b,1),n.length&&h.autoplay&&setTimeout(u,E)):setTimeout(G,300)};G();window.addEventListener("resize",function(){var d=Math.round(q.scrollLeft/n[0].offsetWidth);clearTimeout(F);F=setTimeout(b,150,d)});q&&q.addEventListener("scroll",function(){setTimeout(e,200)});var A=f("prev");A&&(A.onclick=function(){k(1);t&&clearInterval(t)});if(A=f("next"))A.onclick=function(){l(1);
t&&clearInterval(t)}},init:function(a,c,b){this.timeago();this.read_more();!(c=this.get_parent(c,a))||"true"==c.getAttribute("data-exec")||"slider"!=b&&"grid"!=b||(c.setAttribute("data-exec","true"),this.init_slider(a,c))}};document.addEventListener("DOMContentLoaded",function(){for(var a=document.querySelectorAll("."+TrustReviews.slg+'[data-exec="false"]'),c=0;c<a.length;c++){var b=a[c];TrustReviews.Plugin.init(TrustReviews.slg,b,b.getAttribute("data-layout"))}});
// source --> https://www.nypavers.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.2.1 
/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
(function(){var l,a;l=this,a=function(){"use strict";var l={},a={};try{"undefined"!=typeof window&&(l=window),"undefined"!=typeof document&&(a=document)}catch(l){}var e=(l.navigator||{}).userAgent,r=void 0===e?"":e,n=l,o=a,u=(n.document,!!o.documentElement&&!!o.head&&"function"==typeof o.addEventListener&&o.createElement,~r.indexOf("MSIE")||r.indexOf("Trident/"),"___FONT_AWESOME___"),t=function(){try{return"production"===process.env.NODE_ENV}catch(l){return!1}}();var f=n||{};f[u]||(f[u]={}),f[u].styles||(f[u].styles={}),f[u].hooks||(f[u].hooks={}),f[u].shims||(f[u].shims=[]);var i=f[u],s=[["glass",null,"glass-martini"],["meetup","fab",null],["star-o","far","star"],["remove",null,"times"],["close",null,"times"],["gear",null,"cog"],["trash-o","far","trash-alt"],["file-o","far","file"],["clock-o","far","clock"],["arrow-circle-o-down","far","arrow-alt-circle-down"],["arrow-circle-o-up","far","arrow-alt-circle-up"],["play-circle-o","far","play-circle"],["repeat",null,"redo"],["rotate-right",null,"redo"],["refresh",null,"sync"],["list-alt","far",null],["dedent",null,"outdent"],["video-camera",null,"video"],["picture-o","far","image"],["photo","far","image"],["image","far","image"],["pencil",null,"pencil-alt"],["map-marker",null,"map-marker-alt"],["pencil-square-o","far","edit"],["share-square-o","far","share-square"],["check-square-o","far","check-square"],["arrows",null,"arrows-alt"],["times-circle-o","far","times-circle"],["check-circle-o","far","check-circle"],["mail-forward",null,"share"],["expand",null,"expand-alt"],["compress",null,"compress-alt"],["eye","far",null],["eye-slash","far",null],["warning",null,"exclamation-triangle"],["calendar",null,"calendar-alt"],["arrows-v",null,"arrows-alt-v"],["arrows-h",null,"arrows-alt-h"],["bar-chart","far","chart-bar"],["bar-chart-o","far","chart-bar"],["twitter-square","fab",null],["facebook-square","fab",null],["gears",null,"cogs"],["thumbs-o-up","far","thumbs-up"],["thumbs-o-down","far","thumbs-down"],["heart-o","far","heart"],["sign-out",null,"sign-out-alt"],["linkedin-square","fab","linkedin"],["thumb-tack",null,"thumbtack"],["external-link",null,"external-link-alt"],["sign-in",null,"sign-in-alt"],["github-square","fab",null],["lemon-o","far","lemon"],["square-o","far","square"],["bookmark-o","far","bookmark"],["twitter","fab",null],["facebook","fab","facebook-f"],["facebook-f","fab","facebook-f"],["github","fab",null],["credit-card","far",null],["feed",null,"rss"],["hdd-o","far","hdd"],["hand-o-right","far","hand-point-right"],["hand-o-left","far","hand-point-left"],["hand-o-up","far","hand-point-up"],["hand-o-down","far","hand-point-down"],["arrows-alt",null,"expand-arrows-alt"],["group",null,"users"],["chain",null,"link"],["scissors",null,"cut"],["files-o","far","copy"],["floppy-o","far","save"],["navicon",null,"bars"],["reorder",null,"bars"],["pinterest","fab",null],["pinterest-square","fab",null],["google-plus-square","fab",null],["google-plus","fab","google-plus-g"],["money","far","money-bill-alt"],["unsorted",null,"sort"],["sort-desc",null,"sort-down"],["sort-asc",null,"sort-up"],["linkedin","fab","linkedin-in"],["rotate-left",null,"undo"],["legal",null,"gavel"],["tachometer",null,"tachometer-alt"],["dashboard",null,"tachometer-alt"],["comment-o","far","comment"],["comments-o","far","comments"],["flash",null,"bolt"],["clipboard","far",null],["paste","far","clipboard"],["lightbulb-o","far","lightbulb"],["exchange",null,"exchange-alt"],["cloud-download",null,"cloud-download-alt"],["cloud-upload",null,"cloud-upload-alt"],["bell-o","far","bell"],["cutlery",null,"utensils"],["file-text-o","far","file-alt"],["building-o","far","building"],["hospital-o","far","hospital"],["tablet",null,"tablet-alt"],["mobile",null,"mobile-alt"],["mobile-phone",null,"mobile-alt"],["circle-o","far","circle"],["mail-reply",null,"reply"],["github-alt","fab",null],["folder-o","far","folder"],["folder-open-o","far","folder-open"],["smile-o","far","smile"],["frown-o","far","frown"],["meh-o","far","meh"],["keyboard-o","far","keyboard"],["flag-o","far","flag"],["mail-reply-all",null,"reply-all"],["star-half-o","far","star-half"],["star-half-empty","far","star-half"],["star-half-full","far","star-half"],["code-fork",null,"code-branch"],["chain-broken",null,"unlink"],["shield",null,"shield-alt"],["calendar-o","far","calendar"],["maxcdn","fab",null],["html5","fab",null],["css3","fab",null],["ticket",null,"ticket-alt"],["minus-square-o","far","minus-square"],["level-up",null,"level-up-alt"],["level-down",null,"level-down-alt"],["pencil-square",null,"pen-square"],["external-link-square",null,"external-link-square-alt"],["compass","far",null],["caret-square-o-down","far","caret-square-down"],["toggle-down","far","caret-square-down"],["caret-square-o-up","far","caret-square-up"],["toggle-up","far","caret-square-up"],["caret-square-o-right","far","caret-square-right"],["toggle-right","far","caret-square-right"],["eur",null,"euro-sign"],["euro",null,"euro-sign"],["gbp",null,"pound-sign"],["usd",null,"dollar-sign"],["dollar",null,"dollar-sign"],["inr",null,"rupee-sign"],["rupee",null,"rupee-sign"],["jpy",null,"yen-sign"],["cny",null,"yen-sign"],["rmb",null,"yen-sign"],["yen",null,"yen-sign"],["rub",null,"ruble-sign"],["ruble",null,"ruble-sign"],["rouble",null,"ruble-sign"],["krw",null,"won-sign"],["won",null,"won-sign"],["btc","fab",null],["bitcoin","fab","btc"],["file-text",null,"file-alt"],["sort-alpha-asc",null,"sort-alpha-down"],["sort-alpha-desc",null,"sort-alpha-down-alt"],["sort-amount-asc",null,"sort-amount-down"],["sort-amount-desc",null,"sort-amount-down-alt"],["sort-numeric-asc",null,"sort-numeric-down"],["sort-numeric-desc",null,"sort-numeric-down-alt"],["youtube-square","fab",null],["youtube","fab",null],["xing","fab",null],["xing-square","fab",null],["youtube-play","fab","youtube"],["dropbox","fab",null],["stack-overflow","fab",null],["instagram","fab",null],["flickr","fab",null],["adn","fab",null],["bitbucket","fab",null],["bitbucket-square","fab","bitbucket"],["tumblr","fab",null],["tumblr-square","fab",null],["long-arrow-down",null,"long-arrow-alt-down"],["long-arrow-up",null,"long-arrow-alt-up"],["long-arrow-left",null,"long-arrow-alt-left"],["long-arrow-right",null,"long-arrow-alt-right"],["apple","fab",null],["windows","fab",null],["android","fab",null],["linux","fab",null],["dribbble","fab",null],["skype","fab",null],["foursquare","fab",null],["trello","fab",null],["gratipay","fab",null],["gittip","fab","gratipay"],["sun-o","far","sun"],["moon-o","far","moon"],["vk","fab",null],["weibo","fab",null],["renren","fab",null],["pagelines","fab",null],["stack-exchange","fab",null],["arrow-circle-o-right","far","arrow-alt-circle-right"],["arrow-circle-o-left","far","arrow-alt-circle-left"],["caret-square-o-left","far","caret-square-left"],["toggle-left","far","caret-square-left"],["dot-circle-o","far","dot-circle"],["vimeo-square","fab",null],["try",null,"lira-sign"],["turkish-lira",null,"lira-sign"],["plus-square-o","far","plus-square"],["slack","fab",null],["wordpress","fab",null],["openid","fab",null],["institution",null,"university"],["bank",null,"university"],["mortar-board",null,"graduation-cap"],["yahoo","fab",null],["google","fab",null],["reddit","fab",null],["reddit-square","fab",null],["stumbleupon-circle","fab",null],["stumbleupon","fab",null],["delicious","fab",null],["digg","fab",null],["pied-piper-pp","fab",null],["pied-piper-alt","fab",null],["drupal","fab",null],["joomla","fab",null],["spoon",null,"utensil-spoon"],["behance","fab",null],["behance-square","fab",null],["steam","fab",null],["steam-square","fab",null],["automobile",null,"car"],["envelope-o","far","envelope"],["spotify","fab",null],["deviantart","fab",null],["soundcloud","fab",null],["file-pdf-o","far","file-pdf"],["file-word-o","far","file-word"],["file-excel-o","far","file-excel"],["file-powerpoint-o","far","file-powerpoint"],["file-image-o","far","file-image"],["file-photo-o","far","file-image"],["file-picture-o","far","file-image"],["file-archive-o","far","file-archive"],["file-zip-o","far","file-archive"],["file-audio-o","far","file-audio"],["file-sound-o","far","file-audio"],["file-video-o","far","file-video"],["file-movie-o","far","file-video"],["file-code-o","far","file-code"],["vine","fab",null],["codepen","fab",null],["jsfiddle","fab",null],["life-ring","far",null],["life-bouy","far","life-ring"],["life-buoy","far","life-ring"],["life-saver","far","life-ring"],["support","far","life-ring"],["circle-o-notch",null,"circle-notch"],["rebel","fab",null],["ra","fab","rebel"],["resistance","fab","rebel"],["empire","fab",null],["ge","fab","empire"],["git-square","fab",null],["git","fab",null],["hacker-news","fab",null],["y-combinator-square","fab","hacker-news"],["yc-square","fab","hacker-news"],["tencent-weibo","fab",null],["qq","fab",null],["weixin","fab",null],["wechat","fab","weixin"],["send",null,"paper-plane"],["paper-plane-o","far","paper-plane"],["send-o","far","paper-plane"],["circle-thin","far","circle"],["header",null,"heading"],["sliders",null,"sliders-h"],["futbol-o","far","futbol"],["soccer-ball-o","far","futbol"],["slideshare","fab",null],["twitch","fab",null],["yelp","fab",null],["newspaper-o","far","newspaper"],["paypal","fab",null],["google-wallet","fab",null],["cc-visa","fab",null],["cc-mastercard","fab",null],["cc-discover","fab",null],["cc-amex","fab",null],["cc-paypal","fab",null],["cc-stripe","fab",null],["bell-slash-o","far","bell-slash"],["trash",null,"trash-alt"],["copyright","far",null],["eyedropper",null,"eye-dropper"],["area-chart",null,"chart-area"],["pie-chart",null,"chart-pie"],["line-chart",null,"chart-line"],["lastfm","fab",null],["lastfm-square","fab",null],["ioxhost","fab",null],["angellist","fab",null],["cc","far","closed-captioning"],["ils",null,"shekel-sign"],["shekel",null,"shekel-sign"],["sheqel",null,"shekel-sign"],["meanpath","fab","font-awesome"],["buysellads","fab",null],["connectdevelop","fab",null],["dashcube","fab",null],["forumbee","fab",null],["leanpub","fab",null],["sellsy","fab",null],["shirtsinbulk","fab",null],["simplybuilt","fab",null],["skyatlas","fab",null],["diamond","far","gem"],["intersex",null,"transgender"],["facebook-official","fab","facebook"],["pinterest-p","fab",null],["whatsapp","fab",null],["hotel",null,"bed"],["viacoin","fab",null],["medium","fab",null],["y-combinator","fab",null],["yc","fab","y-combinator"],["optin-monster","fab",null],["opencart","fab",null],["expeditedssl","fab",null],["battery-4",null,"battery-full"],["battery",null,"battery-full"],["battery-3",null,"battery-three-quarters"],["battery-2",null,"battery-half"],["battery-1",null,"battery-quarter"],["battery-0",null,"battery-empty"],["object-group","far",null],["object-ungroup","far",null],["sticky-note-o","far","sticky-note"],["cc-jcb","fab",null],["cc-diners-club","fab",null],["clone","far",null],["hourglass-o","far","hourglass"],["hourglass-1",null,"hourglass-start"],["hourglass-2",null,"hourglass-half"],["hourglass-3",null,"hourglass-end"],["hand-rock-o","far","hand-rock"],["hand-grab-o","far","hand-rock"],["hand-paper-o","far","hand-paper"],["hand-stop-o","far","hand-paper"],["hand-scissors-o","far","hand-scissors"],["hand-lizard-o","far","hand-lizard"],["hand-spock-o","far","hand-spock"],["hand-pointer-o","far","hand-pointer"],["hand-peace-o","far","hand-peace"],["registered","far",null],["creative-commons","fab",null],["gg","fab",null],["gg-circle","fab",null],["tripadvisor","fab",null],["odnoklassniki","fab",null],["odnoklassniki-square","fab",null],["get-pocket","fab",null],["wikipedia-w","fab",null],["safari","fab",null],["chrome","fab",null],["firefox","fab",null],["opera","fab",null],["internet-explorer","fab",null],["television",null,"tv"],["contao","fab",null],["500px","fab",null],["amazon","fab",null],["calendar-plus-o","far","calendar-plus"],["calendar-minus-o","far","calendar-minus"],["calendar-times-o","far","calendar-times"],["calendar-check-o","far","calendar-check"],["map-o","far","map"],["commenting",null,"comment-dots"],["commenting-o","far","comment-dots"],["houzz","fab",null],["vimeo","fab","vimeo-v"],["black-tie","fab",null],["fonticons","fab",null],["reddit-alien","fab",null],["edge","fab",null],["credit-card-alt",null,"credit-card"],["codiepie","fab",null],["modx","fab",null],["fort-awesome","fab",null],["usb","fab",null],["product-hunt","fab",null],["mixcloud","fab",null],["scribd","fab",null],["pause-circle-o","far","pause-circle"],["stop-circle-o","far","stop-circle"],["bluetooth","fab",null],["bluetooth-b","fab",null],["gitlab","fab",null],["wpbeginner","fab",null],["wpforms","fab",null],["envira","fab",null],["wheelchair-alt","fab","accessible-icon"],["question-circle-o","far","question-circle"],["volume-control-phone",null,"phone-volume"],["asl-interpreting",null,"american-sign-language-interpreting"],["deafness",null,"deaf"],["hard-of-hearing",null,"deaf"],["glide","fab",null],["glide-g","fab",null],["signing",null,"sign-language"],["viadeo","fab",null],["viadeo-square","fab",null],["snapchat","fab",null],["snapchat-ghost","fab",null],["snapchat-square","fab",null],["pied-piper","fab",null],["first-order","fab",null],["yoast","fab",null],["themeisle","fab",null],["google-plus-official","fab","google-plus"],["google-plus-circle","fab","google-plus"],["font-awesome","fab",null],["fa","fab","font-awesome"],["handshake-o","far","handshake"],["envelope-open-o","far","envelope-open"],["linode","fab",null],["address-book-o","far","address-book"],["vcard",null,"address-card"],["address-card-o","far","address-card"],["vcard-o","far","address-card"],["user-circle-o","far","user-circle"],["user-o","far","user"],["id-badge","far",null],["drivers-license",null,"id-card"],["id-card-o","far","id-card"],["drivers-license-o","far","id-card"],["quora","fab",null],["free-code-camp","fab",null],["telegram","fab",null],["thermometer-4",null,"thermometer-full"],["thermometer",null,"thermometer-full"],["thermometer-3",null,"thermometer-three-quarters"],["thermometer-2",null,"thermometer-half"],["thermometer-1",null,"thermometer-quarter"],["thermometer-0",null,"thermometer-empty"],["bathtub",null,"bath"],["s15",null,"bath"],["window-maximize","far",null],["window-restore","far",null],["times-rectangle",null,"window-close"],["window-close-o","far","window-close"],["times-rectangle-o","far","window-close"],["bandcamp","fab",null],["grav","fab",null],["etsy","fab",null],["imdb","fab",null],["ravelry","fab",null],["eercast","fab","sellcast"],["snowflake-o","far","snowflake"],["superpowers","fab",null],["wpexplorer","fab",null],["cab",null,"taxi"]];return function(l){try{l()}catch(l){if(!t)throw l}}(function(){var l;"function"==typeof i.hooks.addShims?i.hooks.addShims(s):(l=i.shims).push.apply(l,s)}),s},"object"==typeof exports&&"undefined"!=typeof module?module.exports=a():"function"==typeof define&&define.amd?define(a):l["fontawesome-free-shims"]=a();})();