diff --git a/cmd/analyze-callgrind.go b/cmd/analyze-callgrind.go index 788b806..0e8955c 100644 --- a/cmd/analyze-callgrind.go +++ b/cmd/analyze-callgrind.go @@ -2,6 +2,7 @@ package cmd import ( "fmt" + "strings" "github.com/tideways/toolkit/xhprof" @@ -10,8 +11,8 @@ import ( func init() { RootCmd.AddCommand(analyzeCallgrindCmd) - analyzeCallgrindCmd.Flags().StringVarP(&field, "field", "f", "excl_wt", "Field to view/sort (wt, excl_wt)") - analyzeCallgrindCmd.Flags().Float32VarP(&minPercent, "min", "m", 1, "Display items having minimum percentage (default 1%) of --field, with respect to main()") + analyzeCallgrindCmd.Flags().StringVarP(&field, "dimension", "d", "excl_wt", "Dimension to view/sort (wt, excl_wt)") + analyzeCallgrindCmd.Flags().Float32VarP(&minPercent, "min", "m", 1, "Display items having minimum percentage (default 1%) of --dimension, with respect to main()") } var analyzeCallgrindCmd = &cobra.Command{ @@ -23,18 +24,19 @@ var analyzeCallgrindCmd = &cobra.Command{ } func analyzeCallgrind(cmd *cobra.Command, args []string) error { - profiles := make([]*xhprof.Profile, 0, len(args)) + maps := make([]*xhprof.PairCallMap, 0, len(args)) for _, arg := range args { f := xhprof.NewFile(arg, "callgrind") - profile, err := f.GetProfile() + m, err := f.GetPairCallMap() if err != nil { return err } - profiles = append(profiles, profile) + maps = append(maps, m) } - profile := xhprof.AvgProfiles(profiles) + avgMap := xhprof.AvgPairCallMaps(maps) + profile := avgMap.Flatten() fieldInfo, ok := fieldsMap[field] if !ok { @@ -43,9 +45,16 @@ func analyzeCallgrind(cmd *cobra.Command, args []string) error { fieldInfo = fieldsMap[field] } + profile.SortBy(fieldInfo.Name) + + // Change default to 10 for exclusive fields, only when user + // hasn't manually provided 1% + if strings.HasPrefix(field, "excl_") && !cmd.Flags().Changed("min") { + minPercent = float32(10) + } minPercent = minPercent / 100.0 - main := profile.GetMain() - minValue := minPercent * main.GetFloat32Field(fieldInfo.Name) + minValue := minPercent * profile.Calls[0].GetFloat32Field(fieldInfo.Name) + profile = profile.SelectGreater(fieldInfo.Name, minValue) err := renderProfile(profile, field, fieldInfo, minValue) if err != nil { return err diff --git a/cmd/analyze-xhprof.go b/cmd/analyze-xhprof.go index 0abd6b1..683d73c 100644 --- a/cmd/analyze-xhprof.go +++ b/cmd/analyze-xhprof.go @@ -3,6 +3,7 @@ package cmd import ( "errors" "fmt" + "strings" "github.com/tideways/toolkit/xhprof" @@ -11,8 +12,8 @@ import ( func init() { RootCmd.AddCommand(xhprofCmd) - xhprofCmd.Flags().StringVarP(&field, "field", "f", "excl_wt", "Field to view/sort (wt, excl_wt, cpu, excl_cpu, memory, excl_memory, io, excl_io)") - xhprofCmd.Flags().Float32VarP(&minPercent, "min", "m", 1, "Display items having minimum percentage (default 1%) of --field, with respect to main()") + xhprofCmd.Flags().StringVarP(&field, "dimension", "d", "excl_wt", "Dimension to view/sort (wt, excl_wt, cpu, excl_cpu, memory, excl_memory, io, excl_io)") + xhprofCmd.Flags().Float32VarP(&minPercent, "min", "m", 1, "Display items having minimum percentage (default 1% for inclusive, and 10% for exclusive dimensions) of --dimension, with respect to main()") xhprofCmd.Flags().StringVarP(&outFile, "out-file", "o", "", "If provided, the path to store the resulting profile (e.g. after averaging)") xhprofCmd.Flags().StringVarP(&function, "function", "", "", "If provided, one table for parents, and one for children of this function will be displayed") } @@ -55,7 +56,14 @@ func analyzeXhprof(cmd *cobra.Command, args []string) error { } profile := avgMap.Flatten() + + // Change default to 10 for exclusive fields, only when user + // hasn't manually provided 1% + if strings.HasPrefix(field, "excl_") && !cmd.Flags().Changed("min") { + minPercent = float32(10) + } minPercent = minPercent / 100.0 + if function == "" { fieldInfo, ok := fieldsMap[field] if !ok { @@ -64,8 +72,9 @@ func analyzeXhprof(cmd *cobra.Command, args []string) error { fieldInfo = fieldsMap[field] } - main := profile.GetMain() - minValue := minPercent * main.GetFloat32Field(fieldInfo.Name) + profile.SortBy(fieldInfo.Name) + minValue := minPercent * profile.Calls[0].GetFloat32Field(fieldInfo.Name) + profile = profile.SelectGreater(fieldInfo.Name, minValue) err := renderProfile(profile, field, fieldInfo, minValue) if err != nil { return err @@ -77,12 +86,15 @@ func analyzeXhprof(cmd *cobra.Command, args []string) error { field = "wt" fieldInfo := fieldsMap[field] + minPercent = 0.1 functionCall := profile.GetCall(function) if functionCall == nil { return errors.New("Profile doesn't contain function") } minValue := minPercent * functionCall.GetFloat32Field(fieldInfo.Name) + profile.SortBy(fieldInfo.Name) + profile = profile.SelectGreater(fieldInfo.Name, minValue) fmt.Printf("Parents of %s:\n", function) err := renderProfile(parentsProfile, field, fieldInfo, minValue) diff --git a/cmd/utils.go b/cmd/utils.go index 4fec2e2..0628bee 100644 --- a/cmd/utils.go +++ b/cmd/utils.go @@ -79,22 +79,20 @@ var fieldsMap map[string]FieldInfo = map[string]FieldInfo{ } func renderProfile(profile *xhprof.Profile, field string, fieldInfo FieldInfo, minValue float32) error { - profile.SortBy(fieldInfo.Name) - + header := fieldInfo.Header + exclHeader := "Excl. " + fieldInfo.Header var fields []FieldInfo if strings.HasPrefix(field, "excl_") { fields = []FieldInfo{fieldsMap[strings.TrimPrefix(field, "excl_")], fieldInfo} + exclHeader = fmt.Sprintf("%s (>= %2.2f %s)", exclHeader, minValue/fieldInfo.Unit.Divisor, fieldInfo.Unit.Name) } else { fields = []FieldInfo{fieldInfo, fieldsMap["excl_"+field]} + header = fmt.Sprintf("%s (>= %2.2f %s)", header, minValue/fieldInfo.Unit.Divisor, fieldInfo.Unit.Name) } table := tablewriter.NewWriter(os.Stdout) - table.SetHeader([]string{"Function", "Count", fieldInfo.Header, fmt.Sprintf("Excl. %s", fieldInfo.Header)}) + table.SetHeader([]string{"Function", "Count", header, exclHeader}) for _, call := range profile.Calls { - if call.GetFloat32Field(fieldInfo.Name) < minValue { - break - } - table.Append(getRow(call, fields)) } diff --git a/tests/data/wp-index2.xhprof b/tests/data/wp-index2.xhprof new file mode 100644 index 0000000..c1b1123 --- /dev/null +++ b/tests/data/wp-index2.xhprof @@ -0,0 +1 @@ +{"load_textdomain==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wpdb::prepare==>strpos":{"ct":11,"wt":16,"cpu":17,"mu":112,"pmu":0},"load_textdomain==>apply_filters@1":{"ct":4,"wt":2,"cpu":4,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>WP_Locale_Switcher::filter_locale":{"ct":7,"wt":13,"cpu":14,"mu":384,"pmu":0},"feed_links_extra==>is_search":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Session_Tokens::verify==>WP_User_Meta_Session_Tokens::get_session":{"ct":1,"wt":39,"cpu":38,"mu":1560,"pmu":9960},"WP_Widget_Recent_Posts::__construct==>WP_Widget::__construct":{"ct":1,"wt":18,"cpu":18,"mu":912,"pmu":1200},"load_default_textdomain==>is_admin":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"rest_api_init==>WP::add_query_var":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>esc_url":{"ct":1,"wt":190,"cpu":191,"mu":112,"pmu":840},"wp_script_is==>WP_Dependencies::query":{"ct":1,"wt":33,"cpu":36,"mu":1008,"pmu":0},"wp_cache_get_last_changed==>wp_cache_set":{"ct":3,"wt":7,"cpu":9,"mu":1184,"pmu":0},"twentyseventeen_time_link==>esc_url":{"ct":1,"wt":48,"cpu":49,"mu":112,"pmu":0},"add_query_arg==>build_query":{"ct":25,"wt":203,"cpu":204,"mu":1832,"pmu":760},"main()==>version_compare":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"update_object_term_cache==>wp_get_object_terms":{"ct":1,"wt":905,"cpu":608,"mu":18072,"pmu":22240},"get_background_color==>get_theme_mod":{"ct":1,"wt":49,"cpu":49,"mu":224,"pmu":992},"get_network_option==>is_multisite":{"ct":8,"wt":5,"cpu":8,"mu":112,"pmu":112},"get_header_image_tag==>apply_filters":{"ct":1,"wt":12,"cpu":12,"mu":976,"pmu":0},"twentyseventeen_body_classes==>is_archive":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_comment_link==>user_trailingslashit":{"ct":1,"wt":4,"cpu":4,"mu":192,"pmu":0},"twentyseventeen_fonts_url==>add_query_arg":{"ct":2,"wt":86,"cpu":86,"mu":2672,"pmu":1728},"wp_get_update_data==>get_site_transient":{"ct":2,"wt":2441,"cpu":1374,"mu":12664,"pmu":22680},"wp_get_sidebars_widgets==>apply_filters":{"ct":4,"wt":4,"cpu":3,"mu":112,"pmu":0},"wp_get_sidebars_widgets==>apply_filters@1":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"rsd_link==>esc_url":{"ct":1,"wt":65,"cpu":65,"mu":112,"pmu":0},"wpdb::get_results==>wpdb::check_safe_collation":{"ct":10,"wt":187,"cpu":190,"mu":672,"pmu":776},"WP_Hook::apply_filters==>_post_format_request":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP::main==>WP::parse_request":{"ct":1,"wt":251,"cpu":251,"mu":25192,"pmu":3216},"wp_create_nonce==>wp_hash":{"ct":5,"wt":57,"cpu":56,"mu":560,"pmu":0},"WP_Query::get_posts==>current_user_can":{"ct":1,"wt":43,"cpu":43,"mu":448,"pmu":3744},"main()==>ini_set":{"ct":2,"wt":3,"cpu":2,"mu":176,"pmu":144},"WP_Locale_Switcher::__construct==>get_available_languages":{"ct":1,"wt":11,"cpu":12,"mu":336,"pmu":0},"twentyseventeen_content_width==>is_single":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"wpdb::prepare==>vsprintf":{"ct":11,"wt":29,"cpu":35,"mu":3632,"pmu":56},"WP_Query::get_posts==>array_merge":{"ct":1,"wt":3,"cpu":2,"mu":488,"pmu":0},"sanitize_key==>strtolower":{"ct":42,"wt":39,"cpu":45,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_wp_customize_include":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":200},"get_body_class==>get_background_color":{"ct":1,"wt":52,"cpu":52,"mu":448,"pmu":992},"WP::handle_404==>is_robots":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":0},"validate_file==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_template_directory==>get_theme_root":{"ct":8,"wt":42,"cpu":44,"mu":1072,"pmu":0},"WP_Rewrite::init==>strpos":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":112},"get_comment_link==>get_option":{"ct":3,"wt":59,"cpu":58,"mu":112,"pmu":0},"_prime_post_caches==>join":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"get_post_modified_time==>get_post":{"ct":3,"wt":6,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Factory::_register_widgets==>WP_Widget::_register":{"ct":17,"wt":6775,"cpu":6742,"mu":189040,"pmu":193840},"WP_Widget_Recent_Comments::widget==>_prime_post_caches":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"WP_Embed::autoembed==>wp_replace_in_html_tags":{"ct":1,"wt":13,"cpu":13,"mu":1120,"pmu":0},"register_default_headers==>array_merge":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"number_format_i18n==>apply_filters@2":{"ct":3,"wt":4,"cpu":7,"mu":112,"pmu":0},"get_template_directory_uri==>get_template":{"ct":17,"wt":366,"cpu":373,"mu":224,"pmu":0},"WP_Admin_Bar::_render_item@1==>esc_attr":{"ct":18,"wt":120,"cpu":127,"mu":112,"pmu":0},"wp_head==>do_action":{"ct":1,"wt":10747,"cpu":9469,"mu":56040,"pmu":84288},"load_default_textdomain==>load_textdomain":{"ct":1,"wt":14,"cpu":14,"mu":688,"pmu":0},"WP_Widget::display_callback==>WP_Widget::is_preview":{"ct":12,"wt":11,"cpu":14,"mu":112,"pmu":0},"_wp_admin_bar_init==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_templating_constants==>get_template_directory":{"ct":1,"wt":38,"cpu":39,"mu":1088,"pmu":0},"check_theme_switched==>get_option":{"ct":1,"wt":386,"cpu":236,"mu":-10608,"pmu":0},"is_post_type_archive==>WP_Query::is_post_type_archive":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::parse_query==>wp_parse_args":{"ct":2,"wt":4,"cpu":5,"mu":4064,"pmu":1448},"WP_Dependencies::all_deps==>WP_Scripts::set_group":{"ct":10,"wt":60,"cpu":61,"mu":1032,"pmu":0},"get_parent_theme_file_path==>get_template_directory":{"ct":6,"wt":195,"cpu":195,"mu":592,"pmu":0},"WP_User_Meta_Session_Tokens::get_sessions==>get_user_meta":{"ct":1,"wt":26,"cpu":26,"mu":1248,"pmu":9960},"wp_list_categories==>is_tag":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::init_charset==>wpdb::determine_charset":{"ct":1,"wt":58,"cpu":58,"mu":1848,"pmu":200},"WP_Dependencies::do_items==>WP_Scripts::all_deps":{"ct":2,"wt":444,"cpu":444,"mu":4064,"pmu":18552},"get_post_class==>array_map":{"ct":1,"wt":44,"cpu":45,"mu":488,"pmu":0},"wp_resource_hints==>esc_url":{"ct":8,"wt":398,"cpu":403,"mu":632,"pmu":0},"locate_template@1==>load_template@1":{"ct":3,"wt":2988,"cpu":2989,"mu":22936,"pmu":22984},"wp_get_update_data==>implode":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"do_action_ref_array==>array_pop":{"ct":4,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Widget::__construct==>wp_parse_args":{"ct":34,"wt":100,"cpu":107,"mu":112,"pmu":4688},"wp_default_scripts==>get_locale":{"ct":1,"wt":15,"cpu":16,"mu":336,"pmu":0},"WP_Hook::apply_filters==>wp_widgets_init":{"ct":1,"wt":10127,"cpu":10086,"mu":233000,"pmu":242848},"get_metadata==>absint":{"ct":18,"wt":35,"cpu":37,"mu":112,"pmu":0},"get_categories==>wp_parse_args":{"ct":1,"wt":3,"cpu":2,"mu":1448,"pmu":0},"feed_links==>get_bloginfo":{"ct":2,"wt":89,"cpu":89,"mu":112,"pmu":0},"get_blogs_of_user==>get_current_blog_id":{"ct":3,"wt":8,"cpu":8,"mu":112,"pmu":0},"twentyseventeen_fonts_url==>esc_url_raw":{"ct":2,"wt":132,"cpu":132,"mu":5192,"pmu":0},"wp_cookie_constants==>get_option":{"ct":2,"wt":81,"cpu":82,"mu":976,"pmu":2360},"_wp_render_title_tag==>wp_get_document_title":{"ct":1,"wt":291,"cpu":291,"mu":4368,"pmu":512},"current_user_can==>array_merge":{"ct":22,"wt":19,"cpu":21,"mu":8384,"pmu":0},"print_late_styles==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>_e":{"ct":2,"wt":14,"cpu":14,"mu":112,"pmu":0},"get_terms==>WP_Term_Query::__construct":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"WP_Query::get_queried_object==>WP_Query::__isset":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_set_current_user==>setup_userdata":{"ct":1,"wt":79,"cpu":79,"mu":4408,"pmu":328},"remove_filter==>WP_Hook::remove_filter":{"ct":10,"wt":20,"cpu":18,"mu":224,"pmu":0},"WP_User::get_data_by==>sanitize_user":{"ct":1,"wt":18,"cpu":21,"mu":1152,"pmu":0},"get_header_video_url==>absint":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_User::__construct==>is_numeric":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"_register_widget_update_callback==>array_slice":{"ct":17,"wt":16,"cpu":18,"mu":6504,"pmu":0},"register_post_type==>WP_Post_Type::register_meta_boxes":{"ct":16,"wt":15,"cpu":20,"mu":112,"pmu":0},"WP_Term::get_instance==>WP_Term::__construct":{"ct":4,"wt":13,"cpu":13,"mu":112,"pmu":0},"utf8_uri_encode==>chr":{"ct":120,"wt":61,"cpu":59,"mu":112,"pmu":112},"get_taxonomy_labels==>__":{"ct":300,"wt":1705,"cpu":1707,"mu":560,"pmu":560},"WP_Query::parse_tax_query==>do_action":{"ct":4,"wt":7,"cpu":9,"mu":112,"pmu":0},"get_avatar==>array_merge":{"ct":2,"wt":2,"cpu":1,"mu":1504,"pmu":0},"main()==>date_default_timezone_set":{"ct":1,"wt":9,"cpu":9,"mu":120,"pmu":88},"WP_Admin_Bar::_render_item@1==>trim":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_wp_render_title_tag":{"ct":1,"wt":296,"cpu":296,"mu":4432,"pmu":512},"WP_Hook::apply_filters==>wp_redirect_admin_locations":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"register_theme_directory==>untrailingslashit":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_scripts==>wp_enqueue_script":{"ct":4,"wt":62,"cpu":62,"mu":2216,"pmu":0},"wpdb::get_var==>get_object_vars":{"ct":4,"wt":7,"cpu":9,"mu":112,"pmu":0},"WP_Widget_Categories::widget==>wp_list_categories":{"ct":1,"wt":1333,"cpu":966,"mu":9112,"pmu":0},"is_page==>WP_Query::is_page":{"ct":5,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_body_class==>get_background_image":{"ct":1,"wt":52,"cpu":52,"mu":336,"pmu":560},"load_default_textdomain==>unload_textdomain":{"ct":1,"wt":5,"cpu":5,"mu":336,"pmu":0},"print_late_styles==>_print_styles":{"ct":1,"wt":8,"cpu":8,"mu":336,"pmu":0},"print_head_scripts==>script_concat_settings":{"ct":1,"wt":2743,"cpu":1519,"mu":1856,"pmu":0},"register_sidebar==>count":{"ct":3,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_style_add_data==>WP_Dependencies::add_data":{"ct":1,"wt":3,"cpu":3,"mu":488,"pmu":0},"get_header_image==>is_random_header_image":{"ct":3,"wt":1189,"cpu":1188,"mu":1184,"pmu":3104},"get_stylesheet_uri==>get_stylesheet_directory_uri":{"ct":1,"wt":89,"cpu":89,"mu":1088,"pmu":568},"main()==>spl_autoload_call":{"ct":1,"wt":44,"cpu":43,"mu":2328,"pmu":2568},"WP_Hook::apply_filters@1==>wp_admin_bar_wp_menu":{"ct":1,"wt":210,"cpu":211,"mu":4000,"pmu":0},"WP_Term_Query::get_terms==>wp_cache_add":{"ct":2,"wt":16,"cpu":17,"mu":112,"pmu":0},"do_action==>WP_Hook::do_action":{"ct":11,"wt":42459,"cpu":39143,"mu":625480,"pmu":584920},"date_i18n==>implode":{"ct":4,"wt":4,"cpu":4,"mu":272,"pmu":0},"wp_admin_bar_search_menu==>esc_url":{"ct":1,"wt":45,"cpu":44,"mu":112,"pmu":0},"WP_Admin_Bar::_render_item@1==>is_numeric":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::set_sql_mode==>implode":{"ct":1,"wt":1,"cpu":2,"mu":240,"pmu":0},"WP_Hook::apply_filters@2==>array_slice":{"ct":49,"wt":42,"cpu":40,"mu":18536,"pmu":376},"WP_Hook::apply_filters==>esc_html":{"ct":9,"wt":91,"cpu":92,"mu":448,"pmu":0},"WP_Query::get_posts==>implode":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>WP_Admin_Bar::add_menu":{"ct":3,"wt":32,"cpu":32,"mu":344,"pmu":0},"WP_Widget_Media_Gallery::__construct==>__":{"ct":3,"wt":22,"cpu":23,"mu":112,"pmu":0},"load_template==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_my_account_menu":{"ct":1,"wt":1161,"cpu":1162,"mu":10040,"pmu":16608},"get_stylesheet_directory==>get_theme_root":{"ct":7,"wt":36,"cpu":39,"mu":672,"pmu":0},"is_active_sidebar==>sanitize_title":{"ct":4,"wt":365,"cpu":368,"mu":528,"pmu":400},"feed_links==>_x":{"ct":1,"wt":10,"cpu":10,"mu":112,"pmu":0},"wp_widgets_init==>register_widget":{"ct":17,"wt":2821,"cpu":2833,"mu":39264,"pmu":49008},"get_admin_url==>ltrim":{"ct":27,"wt":15,"cpu":13,"mu":112,"pmu":0},"load_template==>twentyseventeen_time_link":{"ct":1,"wt":688,"cpu":688,"mu":18816,"pmu":0},"the_permalink==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_archives==>sprintf":{"ct":1,"wt":2,"cpu":1,"mu":432,"pmu":0},"get_available_languages==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"Requests::autoloader==>dirname":{"ct":2,"wt":1,"cpu":1,"mu":272,"pmu":192},"WP_Widget::display_callback==>WP_Widget_Categories::widget":{"ct":1,"wt":1403,"cpu":1035,"mu":9848,"pmu":0},"is_search==>WP_Query::is_search":{"ct":5,"wt":1,"cpu":2,"mu":112,"pmu":0},"timer_start==>microtime":{"ct":1,"wt":1,"cpu":4,"mu":112,"pmu":0},"twentyseventeen_scripts==>get_theme_file_uri":{"ct":5,"wt":562,"cpu":562,"mu":1408,"pmu":0},"twentyseventeen_setup==>add_theme_support":{"ct":8,"wt":125,"cpu":127,"mu":4424,"pmu":0},"redirect_canonical==>is_single":{"ct":3,"wt":5,"cpu":5,"mu":112,"pmu":0},"site_url==>get_site_url":{"ct":12,"wt":765,"cpu":769,"mu":3288,"pmu":1528},"WP_Hook::apply_filters==>adjacent_posts_rel_link_wp_head":{"ct":1,"wt":8,"cpu":9,"mu":224,"pmu":0},"WP_Query::parse_query==>get_option":{"ct":2,"wt":82,"cpu":82,"mu":112,"pmu":112},"WP_Query::setup_postdata==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"Requests::autoloader==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"the_title==>get_the_title":{"ct":1,"wt":52,"cpu":52,"mu":152,"pmu":0},"wp_get_object_terms==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>admin_url":{"ct":1,"wt":81,"cpu":82,"mu":192,"pmu":0},"get_queried_object_id==>WP_Query::get_queried_object_id":{"ct":1,"wt":7,"cpu":6,"mu":336,"pmu":0},"WP_Admin_Bar::add_menus==>do_action@1":{"ct":1,"wt":1,"cpu":1,"mu":1392,"pmu":2560},"wp_admin_bar_wp_menu==>__":{"ct":10,"wt":52,"cpu":53,"mu":112,"pmu":0},"_register_widget_update_callback==>func_get_args":{"ct":17,"wt":17,"cpu":27,"mu":6504,"pmu":0},"get_term_link==>user_trailingslashit":{"ct":1,"wt":8,"cpu":8,"mu":168,"pmu":0},"WP_Widget_Media_Gallery::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":228,"cpu":228,"mu":1928,"pmu":2320},"wp_get_document_title==>implode":{"ct":1,"wt":1,"cpu":1,"mu":192,"pmu":0},"twentyseventeen_get_svg==>esc_attr":{"ct":5,"wt":36,"cpu":36,"mu":224,"pmu":0},"WP_Widget_Recent_Comments::widget==>apply_filters":{"ct":2,"wt":51,"cpu":50,"mu":152,"pmu":0},"wp_parse_auth_cookie==>explode":{"ct":6,"wt":6,"cpu":8,"mu":3856,"pmu":0},"twentyseventeen_include_svg_icons==>get_parent_theme_file_path":{"ct":1,"wt":45,"cpu":45,"mu":336,"pmu":0},"WP_Comment_Query::get_comments==>apply_filters_ref_array":{"ct":1,"wt":2,"cpu":3,"mu":-288,"pmu":0},"get_site_url==>apply_filters":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_site_url==>apply_filters@1":{"ct":11,"wt":12,"cpu":10,"mu":112,"pmu":0},"get_site_url==>apply_filters@2":{"ct":20,"wt":16,"cpu":16,"mu":112,"pmu":0},"get_site_url==>apply_filters@3":{"ct":8,"wt":2,"cpu":5,"mu":112,"pmu":0},"get_site_url==>apply_filters@4":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Post::get_instance==>WP_Post::__construct":{"ct":16,"wt":61,"cpu":61,"mu":224,"pmu":0},"wp_get_update_data==>sprintf":{"ct":1,"wt":4,"cpu":5,"mu":432,"pmu":0},"WP_Term_Query::parse_query==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"WP_Post::get_instance==>wp_cache_get":{"ct":16,"wt":93,"cpu":83,"mu":752,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>get_object_term_cache":{"ct":6,"wt":180,"cpu":177,"mu":2544,"pmu":0},"get_custom_header_markup==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"redirect_canonical==>is_year":{"ct":1,"wt":1,"cpu":2,"mu":224,"pmu":0},"WP_Widget::_register_one==>WP_Widget::_get_form_callback":{"ct":17,"wt":20,"cpu":23,"mu":6504,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_javascript_detection":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_magic_quotes==>add_magic_quotes":{"ct":4,"wt":49,"cpu":47,"mu":3512,"pmu":3512},"date_i18n==>substr":{"ct":4,"wt":0,"cpu":3,"mu":288,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_site_menu":{"ct":1,"wt":888,"cpu":888,"mu":6776,"pmu":3592},"get_body_class==>is_admin_bar_showing":{"ct":1,"wt":7,"cpu":8,"mu":224,"pmu":0},"register_taxonomy==>WP_Taxonomy::add_rewrite_rules":{"ct":10,"wt":144,"cpu":144,"mu":8168,"pmu":0},"twentyseventeen_scripts==>get_theme_mod":{"ct":1,"wt":206,"cpu":206,"mu":1104,"pmu":32224},"WP_Dependencies::enqueue==>explode":{"ct":10,"wt":4,"cpu":5,"mu":3872,"pmu":752},"WP_Embed::__construct==>add_filter":{"ct":4,"wt":34,"cpu":35,"mu":2688,"pmu":2568},"WP_Scripts::add_inline_script==>WP_Dependencies::get_data":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"register_nav_menus==>add_theme_support":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_post_modified_time==>apply_filters":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"register_sidebar==>do_action@2":{"ct":3,"wt":15,"cpu":15,"mu":112,"pmu":0},"get_categories==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"mysql2date==>date_i18n":{"ct":4,"wt":360,"cpu":360,"mu":4128,"pmu":0},"wp_admin_bar_site_menu==>is_admin":{"ct":2,"wt":2,"cpu":4,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>WP_Locale_Switcher::filter_locale":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_user_by==>WP_User::get_data_by":{"ct":9,"wt":594,"cpu":363,"mu":6616,"pmu":0},"WP_Hook::add_filter==>ksort":{"ct":82,"wt":52,"cpu":63,"mu":112,"pmu":640},"status_header==>get_status_header_desc":{"ct":1,"wt":4,"cpu":4,"mu":248,"pmu":0},"WP_Meta_Query::get_sql==>strpos":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"get_avatar_data==>strtolower":{"ct":8,"wt":4,"cpu":7,"mu":240,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>wp_json_encode":{"ct":1,"wt":7,"cpu":8,"mu":368,"pmu":0},"twentyseventeen_time_link==>get_the_modified_time":{"ct":1,"wt":15,"cpu":15,"mu":784,"pmu":0},"get_theme_root_uri==>get_option":{"ct":40,"wt":1362,"cpu":1365,"mu":336,"pmu":568},"WP_Styles::do_item==>WP_Styles::print_inline_style":{"ct":5,"wt":54,"cpu":55,"mu":224,"pmu":0},"get_post_type_labels==>__":{"ct":528,"wt":3361,"cpu":3359,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>WP_Widget::__construct":{"ct":4,"wt":35,"cpu":37,"mu":3312,"pmu":592},"WP_Widget_Media_Image::__construct==>_x":{"ct":3,"wt":15,"cpu":16,"mu":112,"pmu":0},"WP_Widget_Media_Audio::__construct==>admin_url":{"ct":1,"wt":57,"cpu":57,"mu":176,"pmu":0},"add_rewrite_rule==>WP_Rewrite::add_rule":{"ct":4,"wt":22,"cpu":24,"mu":824,"pmu":0},"wp_parse_auth_cookie==>is_ssl":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"apply_filters==>func_get_args":{"ct":94,"wt":72,"cpu":76,"mu":35456,"pmu":1496},"Walker_Category::start_el==>get_term_link":{"ct":1,"wt":173,"cpu":174,"mu":2512,"pmu":0},"get_search_form==>_x":{"ct":2,"wt":31,"cpu":32,"mu":112,"pmu":0},"get_theme_file_uri==>get_stylesheet_directory_uri":{"ct":5,"wt":375,"cpu":375,"mu":512,"pmu":0},"WP_Hook::apply_filters==>next":{"ct":134,"wt":76,"cpu":81,"mu":112,"pmu":0},"load_theme_textdomain==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>WP_Admin_Bar::add_menu":{"ct":5,"wt":56,"cpu":56,"mu":312,"pmu":0},"WP_Widget_RSS::__construct==>__":{"ct":2,"wt":23,"cpu":23,"mu":112,"pmu":0},"wptexturize==>array_merge":{"ct":2,"wt":1,"cpu":2,"mu":1504,"pmu":0},"add_theme_support==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"WP_Widget_Custom_HTML::__construct==>WP_Widget::__construct":{"ct":1,"wt":18,"cpu":23,"mu":912,"pmu":0},"wp_get_archives==>strtoupper":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Rewrite::using_index_permalinks==>preg_match":{"ct":5,"wt":7,"cpu":8,"mu":112,"pmu":112},"get_taxonomy_labels==>array_merge":{"ct":10,"wt":13,"cpu":15,"mu":13472,"pmu":656},"sanitize_title_with_dashes==>function_exists":{"ct":13,"wt":16,"cpu":17,"mu":112,"pmu":112},"get_stylesheet_directory_uri==>rawurlencode":{"ct":23,"wt":10,"cpu":13,"mu":1032,"pmu":0},"get_footer==>do_action":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_replace_in_html_tags==>count":{"ct":4,"wt":2,"cpu":2,"mu":112,"pmu":0},"load_default_textdomain==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>is_ssl":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"add_theme_support==>did_action":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_template_part==>do_action":{"ct":4,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Dependencies::all_deps@2==>WP_Scripts::set_group":{"ct":2,"wt":16,"cpu":17,"mu":112,"pmu":0},"sanitize_user==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_edit_link==>sprintf":{"ct":1,"wt":0,"cpu":1,"mu":432,"pmu":0},"wp_validate_auth_cookie==>WP_User::__get":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Styles::_css_href==>apply_filters@1":{"ct":5,"wt":397,"cpu":349,"mu":1112,"pmu":0},"_register_widget_update_callback==>array_merge":{"ct":17,"wt":21,"cpu":23,"mu":6504,"pmu":0},"WP_Hook::apply_filters@1==>wp_maybe_grant_install_languages_cap":{"ct":2,"wt":4,"cpu":4,"mu":5344,"pmu":0},"load_template==>the_content":{"ct":1,"wt":247,"cpu":247,"mu":6256,"pmu":0},"WP_Widget_Media::_register_one==>add_action":{"ct":8,"wt":203,"cpu":208,"mu":5584,"pmu":0},"WP_Rewrite::add_rewrite_tag==>array_search":{"ct":3,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_validate_auth_cookie==>do_action":{"ct":2,"wt":48,"cpu":48,"mu":2536,"pmu":0},"is_admin_bar_showing==>is_embed":{"ct":3,"wt":7,"cpu":7,"mu":224,"pmu":0},"WP_Post_Type::set_props==>array_merge":{"ct":16,"wt":36,"cpu":39,"mu":21488,"pmu":0},"WP_Hook::apply_filters==>kses_init":{"ct":2,"wt":130,"cpu":132,"mu":3480,"pmu":0},"get_home_url==>apply_filters":{"ct":11,"wt":5,"cpu":7,"mu":112,"pmu":0},"get_home_url==>apply_filters@1":{"ct":6,"wt":5,"cpu":3,"mu":112,"pmu":0},"WP_Query::get_posts==>absint":{"ct":4,"wt":10,"cpu":12,"mu":112,"pmu":0},"get_home_url==>apply_filters@2":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"get_home_url==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_object_in_taxonomy==>in_array":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"is_serialized==>trim":{"ct":374,"wt":171,"cpu":216,"mu":112,"pmu":112},"wpdb::get_var==>array_values":{"ct":4,"wt":4,"cpu":5,"mu":1616,"pmu":0},"add_query_arg==>explode":{"ct":3,"wt":1,"cpu":1,"mu":1504,"pmu":0},"WP_Widget_Media_Gallery::__construct==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"WP_Widget_Recent_Comments::__construct==>add_action":{"ct":1,"wt":47,"cpu":48,"mu":568,"pmu":0},"apply_filters@3==>array_pop":{"ct":12,"wt":4,"cpu":6,"mu":112,"pmu":0},"WP_Hook::apply_filters==>locale_stylesheet":{"ct":1,"wt":197,"cpu":198,"mu":1120,"pmu":0},"is_user_logged_in==>wp_get_current_user":{"ct":11,"wt":26,"cpu":26,"mu":112,"pmu":0},"load_theme_textdomain==>load_textdomain":{"ct":2,"wt":16,"cpu":16,"mu":144,"pmu":0},"wp_kses_normalize_entities==>str_replace":{"ct":86,"wt":58,"cpu":58,"mu":1744,"pmu":0},"_wp_admin_bar_init==>is_admin_bar_showing":{"ct":1,"wt":150,"cpu":150,"mu":2376,"pmu":16680},"WP_Hook::apply_filters==>_wp_specialchars":{"ct":3,"wt":9,"cpu":10,"mu":224,"pmu":0},"is_singular==>WP_Query::is_singular":{"ct":12,"wt":9,"cpu":8,"mu":112,"pmu":0},"WP_Comment::__construct==>get_object_vars":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_script_add_data==>WP_Dependencies::add_data":{"ct":1,"wt":3,"cpu":3,"mu":488,"pmu":0},"get_avatar_data==>get_user_by":{"ct":4,"wt":243,"cpu":242,"mu":14832,"pmu":23208},"WP_Term_Query::get_terms==>update_term_cache":{"ct":2,"wt":27,"cpu":27,"mu":1600,"pmu":0},"WP_Session_Tokens::get_instance==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_make_content_images_responsive":{"ct":1,"wt":5,"cpu":5,"mu":224,"pmu":0},"get_default_feed==>apply_filters":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"get_default_feed==>apply_filters@1":{"ct":5,"wt":5,"cpu":6,"mu":112,"pmu":0},"_print_emoji_detection_script==>wp_json_encode":{"ct":1,"wt":42,"cpu":44,"mu":4208,"pmu":0},"wp_kses_bad_protocol_once==>trim":{"ct":83,"wt":43,"cpu":50,"mu":112,"pmu":0},"main()==>wp_start_object_cache":{"ct":1,"wt":76,"cpu":76,"mu":4464,"pmu":0},"WP_Comment_Query::get_comments==>wp_cache_get":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>array_merge":{"ct":1,"wt":0,"cpu":0,"mu":488,"pmu":0},"get_terms==>taxonomy_exists":{"ct":4,"wt":1,"cpu":3,"mu":112,"pmu":88},"wp_admin_bar_wp_menu==>current_user_can":{"ct":1,"wt":37,"cpu":37,"mu":112,"pmu":0},"load_template@1==>esc_url":{"ct":1,"wt":47,"cpu":47,"mu":160,"pmu":0},"rest_cookie_collect_status==>current_action":{"ct":2,"wt":6,"cpu":6,"mu":336,"pmu":0},"get_avatar==>sprintf":{"ct":2,"wt":2,"cpu":2,"mu":1136,"pmu":0},"WP_Taxonomy::set_props==>is_admin":{"ct":9,"wt":15,"cpu":17,"mu":112,"pmu":112},"WP_Embed::run_shortcode==>remove_all_shortcodes":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_robots==>WP_Query::is_robots":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"set_url_scheme==>is_ssl":{"ct":86,"wt":113,"cpu":115,"mu":112,"pmu":0},"apply_filters@2==>array_shift":{"ct":54,"wt":35,"cpu":35,"mu":112,"pmu":0},"redirect_canonical==>preg_quote":{"ct":1,"wt":1,"cpu":1,"mu":152,"pmu":0},"rest_output_link_header==>esc_url_raw":{"ct":1,"wt":52,"cpu":52,"mu":168,"pmu":0},"WP_Term_Query::get_terms==>implode":{"ct":7,"wt":3,"cpu":5,"mu":496,"pmu":168},"wpdb::set_prefix==>wpdb::tables":{"ct":3,"wt":60,"cpu":61,"mu":2736,"pmu":0},"wp_maybe_decline_date==>_x":{"ct":4,"wt":25,"cpu":26,"mu":112,"pmu":0},"is_blog_installed==>wp_load_alloptions":{"ct":1,"wt":936,"cpu":593,"mu":114752,"pmu":115376},"WP_Query::setup_postdata==>WP_Query::is_feed":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"is_active_sidebar==>wp_get_sidebars_widgets":{"ct":4,"wt":29,"cpu":30,"mu":224,"pmu":0},"wp_admin_bar_site_menu==>is_user_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_prime_comment_caches==>join":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"WP_Hook::apply_filters==>wp_post_preview_js":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"get_search_form==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>esc_url":{"ct":3,"wt":143,"cpu":142,"mu":160,"pmu":0},"main()==>wp_ssl_constants":{"ct":1,"wt":43,"cpu":43,"mu":992,"pmu":360},"wp_logout_url==>add_query_arg":{"ct":3,"wt":94,"cpu":96,"mu":184,"pmu":0},"get_site_transient==>wp_using_ext_object_cache":{"ct":5,"wt":8,"cpu":9,"mu":112,"pmu":0},"get_header_image==>set_url_scheme":{"ct":3,"wt":39,"cpu":41,"mu":448,"pmu":0},"wp_admin_bar_my_account_menu==>__":{"ct":2,"wt":14,"cpu":15,"mu":112,"pmu":0},"get_body_class==>array_map":{"ct":1,"wt":39,"cpu":38,"mu":600,"pmu":0},"wpdb::set_sql_mode==>mysqli_fetch_array":{"ct":1,"wt":4,"cpu":5,"mu":680,"pmu":408},"WP_Admin_Bar::_render==>esc_attr_e":{"ct":1,"wt":18,"cpu":19,"mu":112,"pmu":0},"update_object_term_cache==>array_map":{"ct":3,"wt":7,"cpu":8,"mu":1240,"pmu":488},"set_url_scheme==>trim":{"ct":110,"wt":54,"cpu":69,"mu":112,"pmu":0},"shortcode_unautop==>preg_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"date_i18n==>WP_Locale::get_month_abbrev":{"ct":4,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::do_items==>in_array":{"ct":18,"wt":14,"cpu":19,"mu":112,"pmu":0},"is_tax==>WP_Query::is_tax":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Session_Tokens::verify==>WP_Session_Tokens::hash_token":{"ct":1,"wt":4,"cpu":4,"mu":432,"pmu":0},"wp_make_content_images_responsive==>preg_match_all":{"ct":1,"wt":2,"cpu":2,"mu":544,"pmu":0},"WP_Hook::apply_filters@1==>wp_localize_jquery_ui_datepicker":{"ct":1,"wt":46,"cpu":47,"mu":1456,"pmu":0},"wptexturize==>implode":{"ct":19,"wt":12,"cpu":15,"mu":112,"pmu":0},"_get_non_cached_ids==>wp_cache_get":{"ct":7,"wt":55,"cpu":54,"mu":312,"pmu":0},"wp_get_document_title==>is_search":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"apply_filters==>WP_Hook::apply_filters":{"ct":94,"wt":5764,"cpu":5391,"mu":87848,"pmu":84328},"wpdb::db_connect==>wpdb::init_charset":{"ct":1,"wt":66,"cpu":66,"mu":1808,"pmu":200},"wp_admin_bar_my_account_item==>__":{"ct":1,"wt":7,"cpu":6,"mu":112,"pmu":0},"get_custom_header==>current_theme_supports":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_comment_author_link==>get_comment_author_url":{"ct":1,"wt":64,"cpu":63,"mu":496,"pmu":0},"wptexturize==>array_intersect":{"ct":19,"wt":53,"cpu":52,"mu":7256,"pmu":0},"main()==>WP_Widget_Factory::__construct":{"ct":1,"wt":14,"cpu":15,"mu":1936,"pmu":1936},"sanitize_user==>preg_replace":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"user_trailingslashit==>apply_filters":{"ct":9,"wt":10,"cpu":10,"mu":112,"pmu":0},"sanitize_title_with_dashes==>utf8_uri_encode":{"ct":13,"wt":301,"cpu":304,"mu":1064,"pmu":296},"is_user_member_of_blog==>get_userdata":{"ct":1,"wt":58,"cpu":58,"mu":3792,"pmu":3592},"user_trailingslashit==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wptexturize":{"ct":2,"wt":45,"cpu":45,"mu":320,"pmu":0},"get_rest_url==>rest_get_url_prefix":{"ct":3,"wt":11,"cpu":12,"mu":224,"pmu":0},"get_option==>func_num_args":{"ct":363,"wt":176,"cpu":189,"mu":112,"pmu":112},"post_class==>join":{"ct":1,"wt":1,"cpu":1,"mu":224,"pmu":0},"main()==>is_search":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::check_ascii==>function_exists":{"ct":22,"wt":37,"cpu":38,"mu":112,"pmu":112},"WP_Admin_Bar::initialize==>do_action@1":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Widget_Archives::__construct==>WP_Widget::__construct":{"ct":1,"wt":5,"cpu":6,"mu":904,"pmu":0},"main()==>get_footer":{"ct":1,"wt":13664,"cpu":11821,"mu":108272,"pmu":77968},"get_user_option==>WP_User::get":{"ct":1,"wt":16,"cpu":17,"mu":224,"pmu":0},"get_theme_root==>get_raw_theme_root":{"ct":15,"wt":24,"cpu":25,"mu":224,"pmu":0},"wpdb::set_charset==>wpdb::prepare":{"ct":2,"wt":223,"cpu":223,"mu":7480,"pmu":10184},"get_comment_link==>get_page_of_comment":{"ct":1,"wt":37,"cpu":38,"mu":560,"pmu":0},"add_query_arg==>trim":{"ct":25,"wt":14,"cpu":14,"mu":112,"pmu":0},"load_template@1==>get_template_part@1":{"ct":1,"wt":501,"cpu":501,"mu":11376,"pmu":11832},"load_template@2==>get_bloginfo":{"ct":1,"wt":66,"cpu":65,"mu":168,"pmu":0},"rest_api_register_rewrites==>rest_get_url_prefix":{"ct":4,"wt":6,"cpu":8,"mu":224,"pmu":0},"wp_parse_auth_cookie==>compact":{"ct":6,"wt":11,"cpu":10,"mu":2368,"pmu":0},"get_post_type_labels==>array_merge":{"ct":16,"wt":29,"cpu":37,"mu":21488,"pmu":656},"redirect_canonical==>preg_replace":{"ct":4,"wt":8,"cpu":7,"mu":144,"pmu":0},"wp_html_excerpt==>mb_substr":{"ct":1,"wt":2,"cpu":3,"mu":152,"pmu":0},"wptexturize==>preg_split":{"ct":19,"wt":26,"cpu":26,"mu":8144,"pmu":0},"get_search_query==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_cron==>microtime":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::flush==>mysqli_free_result":{"ct":21,"wt":227,"cpu":239,"mu":-356896,"pmu":0},"current_user_can==>wp_get_current_user":{"ct":21,"wt":59,"cpu":68,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Recent_Comments::__construct":{"ct":1,"wt":289,"cpu":290,"mu":4768,"pmu":35424},"get_search_form==>get_search_query":{"ct":1,"wt":18,"cpu":18,"mu":424,"pmu":0},"current_user_can==>wp_get_current_user@1":{"ct":1,"wt":3,"cpu":2,"mu":224,"pmu":0},"twentyseventeen_scripts==>get_stylesheet_uri":{"ct":1,"wt":92,"cpu":92,"mu":1328,"pmu":568},"twentyseventeen_body_classes==>twentyseventeen_sanitize_colorscheme":{"ct":1,"wt":5,"cpu":5,"mu":224,"pmu":0},"translate==>NOOP_Translations::translate":{"ct":1302,"wt":716,"cpu":706,"mu":112,"pmu":112},"get_feed_link==>WP_Rewrite::get_feed_permastruct":{"ct":4,"wt":8,"cpu":9,"mu":152,"pmu":0},"WP::register_globals==>WP_Query::is_single":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"_get_cron_array==>get_option":{"ct":4,"wt":111,"cpu":110,"mu":26160,"pmu":21544},"is_main_site==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":64},"WP_Comment_Query::get_comment_ids==>wpdb::get_col":{"ct":1,"wt":451,"cpu":159,"mu":296,"pmu":0},"main()==>the_posts_pagination":{"ct":1,"wt":4,"cpu":4,"mu":-704,"pmu":0},"get_header_image_tag==>array_map":{"ct":1,"wt":27,"cpu":28,"mu":552,"pmu":0},"update_meta_cache==>join":{"ct":4,"wt":4,"cpu":5,"mu":240,"pmu":0},"WP_Comment_Query::get_comment_ids==>implode":{"ct":3,"wt":5,"cpu":4,"mu":208,"pmu":0},"WP_Metadata_Lazyloader::queue_objects==>do_action":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_sidebar==>locate_template":{"ct":1,"wt":11960,"cpu":9064,"mu":41312,"pmu":71072},"dynamic_sidebar==>is_callable":{"ct":6,"wt":14,"cpu":13,"mu":112,"pmu":112},"wp_nonce_tick==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_nonce_tick==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget::display_callback==>array_key_exists":{"ct":6,"wt":6,"cpu":9,"mu":112,"pmu":0},"wpdb::check_ascii==>mb_check_encoding":{"ct":22,"wt":317,"cpu":326,"mu":112,"pmu":952},"wp_nonce_tick==>apply_filters@2":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_nonce_tick==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_nonce_tick==>apply_filters@4":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"the_generator==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Roles::init_roles==>WP_Role::__construct":{"ct":5,"wt":3,"cpu":2,"mu":112,"pmu":0},"feed_links_extra==>is_post_type_archive":{"ct":2,"wt":5,"cpu":4,"mu":224,"pmu":0},"get_header_image_tag==>get_bloginfo":{"ct":1,"wt":26,"cpu":25,"mu":112,"pmu":0},"wp_print_head_scripts==>print_head_scripts":{"ct":1,"wt":3609,"cpu":2384,"mu":8504,"pmu":18552},"get_home_url==>parse_url":{"ct":20,"wt":45,"cpu":44,"mu":752,"pmu":0},"register_post_type==>sanitize_key":{"ct":16,"wt":141,"cpu":145,"mu":448,"pmu":0},"get_term_link==>WP_Rewrite::get_extra_permastruct":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_spaces_regexp==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_get_sidebars_widgets==>get_option":{"ct":1,"wt":119,"cpu":119,"mu":1480,"pmu":34096},"rest_get_url_prefix==>apply_filters@1":{"ct":6,"wt":4,"cpu":10,"mu":112,"pmu":0},"load_template==>wp_footer":{"ct":1,"wt":13232,"cpu":11389,"mu":107304,"pmu":75128},"rest_get_url_prefix==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"metadata_exists==>absint":{"ct":2,"wt":2,"cpu":5,"mu":112,"pmu":0},"wp_default_scripts==>is_admin":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"_prime_post_caches==>_get_non_cached_ids":{"ct":3,"wt":51,"cpu":55,"mu":600,"pmu":0},"wp_next_scheduled==>md5":{"ct":3,"wt":3,"cpu":3,"mu":304,"pmu":0},"rest_output_link_header==>header":{"ct":1,"wt":2,"cpu":2,"mu":216,"pmu":0},"WP_Scripts::do_item==>WP_Scripts::print_inline_script":{"ct":18,"wt":34,"cpu":39,"mu":224,"pmu":0},"is_sticky==>absint":{"ct":2,"wt":3,"cpu":2,"mu":112,"pmu":0},"esc_url==>strtolower":{"ct":166,"wt":101,"cpu":89,"mu":1584,"pmu":0},"WP_Widget::_register_one==>_register_widget_form_callback":{"ct":17,"wt":247,"cpu":257,"mu":14792,"pmu":0},"get_home_url==>in_array":{"ct":20,"wt":20,"cpu":16,"mu":112,"pmu":0},"wpdb::prepare==>is_scalar":{"ct":11,"wt":6,"cpu":10,"mu":112,"pmu":88},"sanitize_post==>array_keys":{"ct":16,"wt":13,"cpu":14,"mu":21488,"pmu":0},"set_url_scheme==>preg_replace":{"ct":110,"wt":160,"cpu":164,"mu":6032,"pmu":0},"apply_filters@4==>func_get_args":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"WP_Comment_Query::get_comment_ids==>preg_split":{"ct":1,"wt":1,"cpu":1,"mu":520,"pmu":0},"is_author==>WP_Query::is_author":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"array_map==>WP_User_Meta_Session_Tokens::prepare_session":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_get_random_header_data==>get_theme_mod":{"ct":4,"wt":768,"cpu":768,"mu":1392,"pmu":1488},"WP_Query::get_posts==>is_user_logged_in":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>next":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_User::get_role_caps==>array_merge":{"ct":20,"wt":35,"cpu":35,"mu":52432,"pmu":0},"get_avatar_data==>sprintf":{"ct":4,"wt":5,"cpu":3,"mu":1392,"pmu":0},"WP_Admin_Bar::_render_item@1==>esc_url":{"ct":17,"wt":765,"cpu":768,"mu":1256,"pmu":0},"_print_styles==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_document_title==>convert_chars":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"wp_admin_bar_site_menu==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_feed_link==>get_default_feed":{"ct":4,"wt":12,"cpu":15,"mu":224,"pmu":0},"get_object_term_cache==>_prime_term_caches":{"ct":11,"wt":31,"cpu":33,"mu":224,"pmu":0},"wp_admin_bar_my_account_item==>WP_Admin_Bar::add_menu":{"ct":1,"wt":9,"cpu":9,"mu":152,"pmu":0},"wp_dependencies_unique_hosts==>in_array":{"ct":7,"wt":3,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_setup==>add_image_size":{"ct":2,"wt":15,"cpu":13,"mu":1376,"pmu":0},"load_textdomain==>is_readable":{"ct":3,"wt":14,"cpu":15,"mu":112,"pmu":0},"WP_Widget::display_callback==>WP_Widget::get_settings":{"ct":6,"wt":500,"cpu":500,"mu":5256,"pmu":53992},"seems_utf8==>mbstring_binary_safe_encoding":{"ct":13,"wt":20,"cpu":19,"mu":760,"pmu":760},"wp_get_archives==>get_month_link":{"ct":1,"wt":113,"cpu":113,"mu":1456,"pmu":0},"WP_User::__construct==>WP_User::get_data_by":{"ct":10,"wt":27,"cpu":29,"mu":288,"pmu":0},"WP_Widget_Media_Audio::__construct==>_x":{"ct":3,"wt":15,"cpu":17,"mu":112,"pmu":0},"get_template_directory==>apply_filters":{"ct":6,"wt":2,"cpu":4,"mu":112,"pmu":0},"redirect_canonical==>get_query_var":{"ct":4,"wt":8,"cpu":8,"mu":224,"pmu":0},"get_template_directory==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"add_query_arg==>preg_replace":{"ct":25,"wt":32,"cpu":32,"mu":112,"pmu":0},"get_the_ID==>get_post":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"is_blog_installed==>wp_cache_get":{"ct":2,"wt":11,"cpu":12,"mu":336,"pmu":128},"redirect_canonical==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"seems_utf8==>ord":{"ct":120,"wt":46,"cpu":54,"mu":112,"pmu":112},"get_translations_for_domain==>_load_textdomain_just_in_time":{"ct":1739,"wt":1101,"cpu":1214,"mu":2120,"pmu":0},"is_preview==>WP_Query::is_preview":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>current_user_can":{"ct":1,"wt":45,"cpu":46,"mu":448,"pmu":0},"get_body_class==>WP_Query::get":{"ct":2,"wt":2,"cpu":1,"mu":88,"pmu":0},"WP_Roles::get_roles_data==>get_option":{"ct":1,"wt":46,"cpu":46,"mu":14304,"pmu":47048},"wp_register==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"add_permastruct==>func_num_args":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_count_comments==>wp_cache_get":{"ct":1,"wt":7,"cpu":8,"mu":72,"pmu":0},"add_shortcode==>preg_match":{"ct":8,"wt":6,"cpu":6,"mu":112,"pmu":112},"WP_Scripts::print_inline_script==>WP_Dependencies::get_data":{"ct":18,"wt":12,"cpu":11,"mu":112,"pmu":0},"WP::handle_404==>is_singular":{"ct":1,"wt":3,"cpu":2,"mu":224,"pmu":0},"get_avatar_data==>absint":{"ct":16,"wt":22,"cpu":23,"mu":112,"pmu":0},"WP::parse_request==>get_taxonomies":{"ct":2,"wt":25,"cpu":26,"mu":1048,"pmu":0},"WP_Taxonomy::set_props==>sanitize_title_with_dashes":{"ct":4,"wt":272,"cpu":272,"mu":2808,"pmu":2704},"get_query_template==>apply_filters":{"ct":4,"wt":18,"cpu":17,"mu":896,"pmu":0},"wpautop==>strpos":{"ct":7,"wt":4,"cpu":3,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>esc_url":{"ct":4,"wt":294,"cpu":294,"mu":448,"pmu":1456},"wp_admin_bar_my_account_item==>current_user_can":{"ct":1,"wt":39,"cpu":38,"mu":112,"pmu":0},"wp_debug_mode==>apply_filters":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":8},"twentyseventeen_body_classes==>is_multi_author":{"ct":1,"wt":50,"cpu":50,"mu":896,"pmu":0},"wp_resource_hints==>apply_filters@1":{"ct":5,"wt":111,"cpu":112,"mu":1800,"pmu":0},"WP_Hook::apply_filters==>array_keys":{"ct":106,"wt":64,"cpu":62,"mu":40288,"pmu":2360},"includes_url==>apply_filters@1":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"includes_url==>apply_filters@3":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_site_url==>ltrim":{"ct":40,"wt":22,"cpu":27,"mu":312,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_front_page_template":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"main()==>is_trackback":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"trailingslashit==>untrailingslashit":{"ct":16,"wt":31,"cpu":32,"mu":744,"pmu":0},"wp_localize_jquery_ui_datepicker==>wp_script_is":{"ct":1,"wt":44,"cpu":44,"mu":1344,"pmu":0},"WP_Widget::display_callback==>wp_suspend_cache_addition":{"ct":6,"wt":7,"cpu":8,"mu":112,"pmu":0},"maybe_unserialize==>unserialize":{"ct":80,"wt":434,"cpu":457,"mu":117280,"pmu":615232},"WP_Scripts::set_group==>WP_Dependencies::get_data":{"ct":12,"wt":20,"cpu":21,"mu":112,"pmu":0},"twentyseventeen_scripts==>twentyseventeen_get_svg":{"ct":1,"wt":27,"cpu":27,"mu":864,"pmu":0},"WP_Admin_Bar::initialize==>is_multisite":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_ssl_constants==>define":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"WP_Widget::_register==>array_keys":{"ct":17,"wt":11,"cpu":20,"mu":2984,"pmu":0},"wp_set_lang_dir==>file_exists":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":112},"WP_Taxonomy::set_props==>array_unique":{"ct":10,"wt":7,"cpu":6,"mu":112,"pmu":112},"redirect_canonical==>is_category":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wp_cookie_constants==>md5":{"ct":1,"wt":2,"cpu":2,"mu":176,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Pages::__construct":{"ct":1,"wt":22,"cpu":25,"mu":1352,"pmu":0},"get_custom_header_markup==>get_header_image_tag":{"ct":1,"wt":1347,"cpu":1347,"mu":2816,"pmu":2400},"WP_Hook::apply_filters@2==>_config_wp_siteurl":{"ct":30,"wt":25,"cpu":21,"mu":112,"pmu":0},"WP_Taxonomy::add_rewrite_rules==>WP::add_query_var":{"ct":3,"wt":8,"cpu":8,"mu":2840,"pmu":0},"mysql2date==>strtotime":{"ct":8,"wt":66,"cpu":67,"mu":728,"pmu":0},"wp_get_document_title==>is_404":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Query::parse_query==>strpos":{"ct":2,"wt":3,"cpu":5,"mu":112,"pmu":112},"get_template_directory_uri==>rawurlencode":{"ct":17,"wt":8,"cpu":17,"mu":792,"pmu":0},"wp_next_scheduled==>serialize":{"ct":3,"wt":3,"cpu":3,"mu":880,"pmu":0},"wp_default_styles==>function_exists":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_set_internal_encoding==>get_option":{"ct":1,"wt":59,"cpu":60,"mu":1312,"pmu":0},"rsd_link==>site_url":{"ct":1,"wt":77,"cpu":76,"mu":168,"pmu":0},"main()==>wp_magic_quotes":{"ct":1,"wt":55,"cpu":55,"mu":1232,"pmu":3536},"WP_Widget_Archives::widget==>wp_get_archives":{"ct":1,"wt":799,"cpu":535,"mu":4560,"pmu":0},"get_metadata==>wp_cache_get":{"ct":18,"wt":70,"cpu":68,"mu":-608,"pmu":0},"main()==>is_404":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_User::get_role_caps==>WP_Roles::get_role":{"ct":10,"wt":9,"cpu":6,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>wp_enqueue_script":{"ct":1,"wt":12,"cpu":12,"mu":1048,"pmu":0},"WP_Widget_Search::__construct==>WP_Widget::__construct":{"ct":1,"wt":15,"cpu":15,"mu":904,"pmu":1192},"load_textdomain==>do_action":{"ct":1,"wt":2,"cpu":2,"mu":432,"pmu":0},"load_textdomain==>do_action@1":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::get_blog_prefix==>is_multisite":{"ct":16,"wt":13,"cpu":12,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>absint":{"ct":4,"wt":7,"cpu":6,"mu":112,"pmu":0},"twentyseventeen_setup==>__":{"ct":4,"wt":60,"cpu":60,"mu":2152,"pmu":0},"load_template@1==>printf":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"apply_filters@2==>WP_Hook::apply_filters@2":{"ct":54,"wt":882,"cpu":889,"mu":45256,"pmu":568},"wp_get_custom_css==>get_stylesheet":{"ct":1,"wt":22,"cpu":23,"mu":112,"pmu":0},"WP_Dependencies::all_deps@1==>explode":{"ct":6,"wt":7,"cpu":9,"mu":2368,"pmu":0},"WP_Roles::for_site==>get_current_blog_id":{"ct":1,"wt":4,"cpu":4,"mu":336,"pmu":336},"wp_admin_bar_appearance_menu==>__":{"ct":4,"wt":39,"cpu":40,"mu":112,"pmu":0},"wpdb::query==>mysqli_fetch_object":{"ct":162,"wt":292,"cpu":285,"mu":96104,"pmu":71792},"get_categories==>array_keys":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"WP_Widget_Recent_Comments::__construct==>__":{"ct":2,"wt":16,"cpu":17,"mu":112,"pmu":112},"wp_maybe_load_widgets==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_language_attributes==>esc_attr":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"wp_get_archives==>get_archives_link":{"ct":1,"wt":146,"cpu":146,"mu":656,"pmu":0},"redirect_canonical==>WP_Rewrite::using_permalinks":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template==>has_nav_menu":{"ct":2,"wt":110,"cpu":109,"mu":112,"pmu":2840},"twentyseventeen_scripts==>wp_script_add_data":{"ct":1,"wt":5,"cpu":5,"mu":712,"pmu":0},"wp_widgets_init==>get_option":{"ct":1,"wt":22,"cpu":23,"mu":112,"pmu":0},"WP_Styles::_css_href==>preg_match":{"ct":5,"wt":16,"cpu":18,"mu":112,"pmu":0},"wp_get_current_user@1==>_wp_get_current_user@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_theme_support==>array_intersect_key":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_stylesheet_directory==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"get_stylesheet_directory==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_stylesheet_directory==>apply_filters@2":{"ct":5,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_option==>untrailingslashit":{"ct":115,"wt":204,"cpu":229,"mu":224,"pmu":224},"wp_maintenance==>file_exists":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"the_custom_header_markup==>is_header_video_active":{"ct":1,"wt":38,"cpu":39,"mu":560,"pmu":0},"wp_start_object_cache==>function_exists":{"ct":3,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Roles::__construct==>WP_Roles::for_site":{"ct":1,"wt":75,"cpu":74,"mu":16728,"pmu":47648},"WP_Hook::apply_filters@1==>wp_customize_support_script":{"ct":1,"wt":123,"cpu":123,"mu":560,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_option":{"ct":1,"wt":26,"cpu":26,"mu":112,"pmu":0},"wp_dependencies_unique_hosts==>wp_parse_url":{"ct":9,"wt":79,"cpu":78,"mu":5912,"pmu":0},"WP_Hook::resort_active_iterations==>next":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"WP_Dependencies::add_data==>_WP_Dependency::add_data":{"ct":97,"wt":148,"cpu":152,"mu":24288,"pmu":5424},"wp_default_scripts==>esc_url":{"ct":1,"wt":62,"cpu":62,"mu":112,"pmu":0},"get_site_url==>get_option":{"ct":43,"wt":1946,"cpu":1958,"mu":3872,"pmu":4744},"date_i18n==>WP_Locale::get_weekday":{"ct":4,"wt":2,"cpu":2,"mu":-912,"pmu":0},"backslashit==>addcslashes":{"ct":24,"wt":16,"cpu":17,"mu":944,"pmu":0},"Walker_Category::start_el==>implode":{"ct":1,"wt":1,"cpu":3,"mu":168,"pmu":0},"includes_url==>site_url":{"ct":5,"wt":384,"cpu":385,"mu":176,"pmu":1528},"get_object_term_cache==>wp_cache_get":{"ct":11,"wt":34,"cpu":34,"mu":-456,"pmu":0},"Walker::walk==>array_slice":{"ct":1,"wt":1,"cpu":0,"mu":488,"pmu":0},"convert_smilies==>preg_split":{"ct":1,"wt":2,"cpu":2,"mu":728,"pmu":0},"get_background_image==>get_theme_support":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_load_alloptions==>wp_cache_get":{"ct":366,"wt":1057,"cpu":1085,"mu":272,"pmu":136},"WP_Meta_Query::get_sql_clauses==>WP_Meta_Query::get_sql_for_query":{"ct":2,"wt":8,"cpu":8,"mu":336,"pmu":608},"wp_loginout==>esc_url":{"ct":1,"wt":58,"cpu":59,"mu":48,"pmu":0},"WP_Admin_Bar::render==>WP_Admin_Bar::_bind":{"ct":1,"wt":108,"cpu":108,"mu":12328,"pmu":0},"WP_Session_Tokens::hash_token==>hash":{"ct":1,"wt":2,"cpu":1,"mu":208,"pmu":0},"WP::parse_request==>do_action_ref_array":{"ct":1,"wt":13,"cpu":13,"mu":688,"pmu":0},"WP_Dependencies::recurse_deps==>WP_Dependencies::recurse_deps@1":{"ct":5,"wt":17,"cpu":18,"mu":560,"pmu":0},"WP_Query::parse_query==>md5":{"ct":2,"wt":22,"cpu":20,"mu":240,"pmu":176},"WP_Dependencies::recurse_deps@2==>in_array":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"update_comment_cache==>wp_cache_add":{"ct":1,"wt":9,"cpu":9,"mu":152,"pmu":0},"has_nav_menu==>get_registered_nav_menus":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_kses_bad_protocol==>wp_kses_bad_protocol_once":{"ct":83,"wt":1690,"cpu":1707,"mu":7680,"pmu":0},"load_template==>is_single":{"ct":4,"wt":7,"cpu":8,"mu":112,"pmu":0},"_wp_admin_bar_init==>WP_Admin_Bar::initialize":{"ct":1,"wt":666,"cpu":666,"mu":35800,"pmu":6336},"WP_List_Util::filter==>in_array":{"ct":9,"wt":5,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Text::__construct==>__":{"ct":2,"wt":20,"cpu":21,"mu":112,"pmu":112},"WP_Hook::apply_filters@1==>current":{"ct":86,"wt":50,"cpu":57,"mu":112,"pmu":0},"status_header==>function_exists":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Admin_Bar::add_menu==>WP_Admin_Bar::add_node":{"ct":25,"wt":270,"cpu":270,"mu":11472,"pmu":0},"create_initial_taxonomies==>register_taxonomy":{"ct":10,"wt":3441,"cpu":3445,"mu":40584,"pmu":55240},"WP_Locale_Switcher::__construct==>get_locale":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP::main==>WP::register_globals":{"ct":1,"wt":13,"cpu":13,"mu":4544,"pmu":0},"WP_Widget_Factory::register==>WP_Nav_Menu_Widget::__construct":{"ct":1,"wt":42,"cpu":48,"mu":1128,"pmu":0},"WP_Hook::apply_filters==>count":{"ct":106,"wt":49,"cpu":67,"mu":112,"pmu":112},"get_home_url==>ltrim":{"ct":16,"wt":11,"cpu":12,"mu":632,"pmu":0},"absint==>abs":{"ct":93,"wt":46,"cpu":54,"mu":112,"pmu":112},"main()==>get_post_format":{"ct":1,"wt":113,"cpu":113,"mu":760,"pmu":0},"WP_User::has_cap==>map_meta_cap":{"ct":22,"wt":317,"cpu":320,"mu":9728,"pmu":0},"WP_Query::get_posts==>apply_filters_ref_array":{"ct":46,"wt":79,"cpu":87,"mu":-17088,"pmu":0},"wpdb::__construct==>register_shutdown_function":{"ct":1,"wt":5,"cpu":5,"mu":520,"pmu":520},"WP::send_headers==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"untrailingslashit==>rtrim":{"ct":132,"wt":72,"cpu":89,"mu":744,"pmu":112},"WP_Comment_Query::get_comment_ids==>strtoupper":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"sanitize_title_with_dashes==>strip_tags":{"ct":13,"wt":14,"cpu":18,"mu":616,"pmu":224},"WP_Term::filter==>sanitize_term":{"ct":10,"wt":181,"cpu":180,"mu":112,"pmu":112},"get_post_class==>get_the_terms":{"ct":3,"wt":327,"cpu":328,"mu":712,"pmu":0},"has_custom_logo==>is_multisite":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"load_template@2==>twentyseventeen_is_frontpage":{"ct":1,"wt":26,"cpu":26,"mu":336,"pmu":0},"wp_cookie_constants==>define":{"ct":12,"wt":10,"cpu":11,"mu":1112,"pmu":0},"_prime_post_caches==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"wp_admin_bar_updates_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":47,"cpu":48,"mu":152,"pmu":0},"WP_Hook::apply_filters==>wp_shortlink_header":{"ct":1,"wt":9,"cpu":9,"mu":560,"pmu":0},"WP_Widget_Recent_Comments::widget==>_x":{"ct":1,"wt":13,"cpu":14,"mu":112,"pmu":0},"get_post_format_slugs==>array_combine":{"ct":1,"wt":2,"cpu":1,"mu":808,"pmu":0},"wp_admin_bar_edit_menu==>WP_Query::get_queried_object":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"array_map==>_wp_add_global_attributes":{"ct":82,"wt":138,"cpu":139,"mu":42896,"pmu":42896},"get_post_modified_time==>mysql2date":{"ct":3,"wt":176,"cpu":175,"mu":624,"pmu":0},"wp_get_nocache_headers==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_validate_logged_in_cookie":{"ct":1,"wt":1156,"cpu":775,"mu":38232,"pmu":56144},"WP_Widget_Factory::register==>WP_Widget_Archives::__construct":{"ct":1,"wt":19,"cpu":19,"mu":1128,"pmu":0},"WP_Post::__construct==>get_object_vars":{"ct":16,"wt":5,"cpu":8,"mu":112,"pmu":0},"get_post==>WP_Post::filter":{"ct":44,"wt":28,"cpu":37,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>get_comment":{"ct":1,"wt":18,"cpu":17,"mu":1056,"pmu":0},"get_metadata==>is_numeric":{"ct":18,"wt":7,"cpu":10,"mu":112,"pmu":0},"main()==>wp_start_scraping_edited_file_errors":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"get_post_class==>is_sticky":{"ct":1,"wt":32,"cpu":32,"mu":448,"pmu":10720},"wp_get_archives==>wp_cache_get":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_the_title":{"ct":1,"wt":149,"cpu":149,"mu":152,"pmu":0},"Walker::display_element==>Walker_Category::end_el":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"convert_chars==>preg_replace":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>wp_list_pluck":{"ct":1,"wt":8,"cpu":7,"mu":712,"pmu":0},"Walker::walk==>func_get_args":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wp_resource_hints==>in_array":{"ct":13,"wt":2,"cpu":12,"mu":112,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::_set_node":{"ct":4,"wt":15,"cpu":14,"mu":2888,"pmu":0},"main()==>get_home_template":{"ct":1,"wt":21,"cpu":21,"mu":320,"pmu":0},"wp_html_split==>preg_split":{"ct":2,"wt":1,"cpu":2,"mu":1088,"pmu":0},"main()==>wp_set_lang_dir":{"ct":1,"wt":10,"cpu":11,"mu":576,"pmu":576},"get_body_class==>is_attachment":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_enqueue_style==>WP_Dependencies::add":{"ct":3,"wt":10,"cpu":10,"mu":592,"pmu":8},"get_month_link==>WP_Rewrite::get_month_permastruct":{"ct":1,"wt":16,"cpu":17,"mu":824,"pmu":0},"load_template==>twentyseventeen_edit_link":{"ct":1,"wt":415,"cpu":415,"mu":3640,"pmu":0},"create_initial_taxonomies==>current_theme_supports":{"ct":2,"wt":8,"cpu":10,"mu":248,"pmu":0},"get_post_type_capabilities==>_post_type_meta_capabilities":{"ct":14,"wt":300,"cpu":302,"mu":624,"pmu":0},"wp_admin_bar_my_account_menu==>WP_User::__get":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::add_node==>wp_parse_args":{"ct":30,"wt":68,"cpu":72,"mu":11392,"pmu":0},"wp_default_scripts==>esc_url_raw":{"ct":1,"wt":57,"cpu":57,"mu":336,"pmu":0},"WP_Widget_Media_Video::__construct==>admin_url":{"ct":1,"wt":209,"cpu":211,"mu":176,"pmu":264},"get_avatar_data==>set_url_scheme":{"ct":4,"wt":28,"cpu":29,"mu":496,"pmu":0},"load_template==>esc_attr":{"ct":4,"wt":17,"cpu":18,"mu":224,"pmu":0},"WP_Tax_Query::get_sql==>WP_Tax_Query::get_sql_clauses":{"ct":2,"wt":20,"cpu":23,"mu":336,"pmu":0},"WP_Dependencies::all_deps==>WP_Styles::all_deps@1":{"ct":2,"wt":44,"cpu":43,"mu":936,"pmu":0},"wp_enqueue_script==>WP_Dependencies::enqueue":{"ct":6,"wt":21,"cpu":22,"mu":712,"pmu":0},"update_meta_cache==>wp_cache_add":{"ct":4,"wt":30,"cpu":31,"mu":1616,"pmu":488},"WP_User::get_data_by==>update_user_caches":{"ct":1,"wt":33,"cpu":32,"mu":1768,"pmu":0},"WP_Admin_Bar::initialize==>get_blogs_of_user":{"ct":1,"wt":91,"cpu":91,"mu":1784,"pmu":0},"wp_list_pluck==>WP_List_Util::pluck":{"ct":2,"wt":2,"cpu":3,"mu":864,"pmu":0},"WP::main==>WP::send_headers":{"ct":1,"wt":101,"cpu":100,"mu":1632,"pmu":0},"print_head_scripts==>wp_scripts":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_home_url==>get_option":{"ct":20,"wt":839,"cpu":842,"mu":448,"pmu":0},"WP_Scripts::all_deps==>WP_Dependencies::all_deps":{"ct":2,"wt":393,"cpu":393,"mu":2640,"pmu":18552},"the_content==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_heartbeat_settings==>wp_create_nonce":{"ct":1,"wt":24,"cpu":25,"mu":376,"pmu":0},"WP_User::has_cap==>is_numeric":{"ct":22,"wt":19,"cpu":18,"mu":112,"pmu":0},"dynamic_sidebar==>apply_filters":{"ct":7,"wt":8,"cpu":10,"mu":112,"pmu":112},"wp_get_mu_plugins==>is_dir":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_taxonomy==>taxonomy_exists":{"ct":8,"wt":6,"cpu":4,"mu":112,"pmu":112},"wpdb::db_connect==>wpdb::set_charset":{"ct":1,"wt":407,"cpu":300,"mu":7400,"pmu":11016},"get_object_term_cache==>is_numeric":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"twentyseventeen_custom_header_setup==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"main()==>wp_doing_ajax":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":112},"load_default_textdomain==>wp_installing":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::parse_query==>serialize":{"ct":2,"wt":20,"cpu":20,"mu":8304,"pmu":4208},"WP_Hook::apply_filters==>wp_generator":{"ct":1,"wt":19,"cpu":20,"mu":784,"pmu":0},"wp_cache_add==>WP_Object_Cache::add":{"ct":25,"wt":217,"cpu":221,"mu":6272,"pmu":792},"WP_Hook::apply_filters==>twentyseventeen_include_svg_icons":{"ct":1,"wt":98,"cpu":98,"mu":37312,"pmu":16208},"WP_Locale::init==>__":{"ct":58,"wt":330,"cpu":338,"mu":112,"pmu":0},"wp_admin_bar_appearance_menu==>current_user_can":{"ct":2,"wt":96,"cpu":98,"mu":112,"pmu":0},"_print_scripts==>trim":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"add_rewrite_tag==>WP_Rewrite::add_rewrite_tag":{"ct":3,"wt":8,"cpu":9,"mu":2312,"pmu":0},"WP_Widget_Meta::widget==>wp_register":{"ct":1,"wt":117,"cpu":117,"mu":672,"pmu":0},"get_bloginfo==>get_locale":{"ct":1,"wt":18,"cpu":18,"mu":224,"pmu":0},"wp_admin_bar_my_account_item==>sprintf":{"ct":1,"wt":0,"cpu":0,"mu":432,"pmu":0},"_prime_comment_caches==>_get_non_cached_ids":{"ct":1,"wt":10,"cpu":11,"mu":488,"pmu":0},"twentyseventeen_pingback_header==>is_singular":{"ct":1,"wt":1,"cpu":4,"mu":112,"pmu":0},"wp_get_update_data==>esc_attr":{"ct":1,"wt":31,"cpu":32,"mu":112,"pmu":0},"wp_register==>admin_url":{"ct":1,"wt":54,"cpu":55,"mu":168,"pmu":0},"get_template_part@1==>locate_template@2":{"ct":1,"wt":497,"cpu":498,"mu":11072,"pmu":11832},"is_user_member_of_blog==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_customize_url==>esc_url":{"ct":1,"wt":99,"cpu":100,"mu":176,"pmu":0},"is_embed==>WP_Query::is_embed":{"ct":4,"wt":2,"cpu":4,"mu":112,"pmu":0},"wp_widgets_init==>do_action@1":{"ct":1,"wt":7244,"cpu":7202,"mu":193400,"pmu":193840},"WP_Hook::apply_filters==>_admin_bar_bump_cb":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_my_sites_menu==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template==>extract":{"ct":4,"wt":23,"cpu":24,"mu":112,"pmu":0},"main()==>get_locale":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"_wp_get_current_user==>apply_filters":{"ct":1,"wt":1205,"cpu":824,"mu":41120,"pmu":56144},"WP_Widget_Media_Image::__construct==>_n_noop":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"wp_convert_hr_to_bytes==>trim":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":112},"twentyseventeen_body_classes==>is_page":{"ct":2,"wt":3,"cpu":5,"mu":112,"pmu":0},"WP_Term_Query::parse_query==>do_action":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"register_post_type==>do_action":{"ct":8,"wt":22,"cpu":23,"mu":112,"pmu":0},"register_post_type==>do_action@1":{"ct":8,"wt":8,"cpu":8,"mu":112,"pmu":0},"twentyseventeen_scripts==>wp_localize_script":{"ct":1,"wt":33,"cpu":33,"mu":480,"pmu":0},"get_current_blog_id==>absint":{"ct":16,"wt":30,"cpu":32,"mu":224,"pmu":224},"date_i18n==>WP_Locale::get_meridiem":{"ct":8,"wt":3,"cpu":5,"mu":-1936,"pmu":0},"_http_build_query==>implode":{"ct":25,"wt":21,"cpu":23,"mu":864,"pmu":192},"wp_logout_url==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_logout_url==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_logout_url==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"mbstring_binary_safe_encoding==>ini_get":{"ct":1,"wt":2,"cpu":5,"mu":144,"pmu":144},"wpdb::set_sql_mode==>explode":{"ct":1,"wt":2,"cpu":3,"mu":816,"pmu":608},"WP_Hook::has_filter==>_wp_filter_build_unique_id":{"ct":50,"wt":326,"cpu":330,"mu":5072,"pmu":2048},"is_category==>WP_Query::is_category":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>add_action":{"ct":3,"wt":17,"cpu":18,"mu":2344,"pmu":0},"wp_doing_ajax==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"wp_get_shortlink==>is_singular":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_doing_ajax==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"has_custom_logo==>get_theme_mod":{"ct":1,"wt":47,"cpu":47,"mu":112,"pmu":336},"WP_Query::get_posts==>explode":{"ct":1,"wt":3,"cpu":4,"mu":488,"pmu":0},"wp_fix_server_vars==>preg_replace":{"ct":1,"wt":4,"cpu":5,"mu":144,"pmu":0},"register_nav_menus==>array_merge":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wpdb::set_prefix==>wpdb::get_blog_prefix":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"update_post_caches==>update_postmeta_cache":{"ct":3,"wt":382,"cpu":209,"mu":-120,"pmu":0},"sanitize_term_field==>in_array":{"ct":98,"wt":42,"cpu":40,"mu":112,"pmu":40},"get_search_form==>home_url":{"ct":1,"wt":81,"cpu":82,"mu":160,"pmu":0},"feed_links_extra==>is_category":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_validate_auth_cookie==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_content==>post_password_required":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"apply_filters@4==>WP_Hook::apply_filters@4":{"ct":1,"wt":9,"cpu":8,"mu":784,"pmu":0},"WP_Hook::apply_filters==>wp_old_slug_redirect":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"get_term_link==>home_url":{"ct":1,"wt":63,"cpu":63,"mu":136,"pmu":0},"wp_admin_bar_customize_menu==>add_action":{"ct":1,"wt":12,"cpu":13,"mu":1368,"pmu":0},"get_term==>WP_Term::get_instance":{"ct":4,"wt":121,"cpu":122,"mu":1344,"pmu":0},"get_object_taxonomies==>array_intersect":{"ct":40,"wt":34,"cpu":29,"mu":15152,"pmu":1024},"wp_link_pages==>__":{"ct":3,"wt":16,"cpu":16,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>apply_filters":{"ct":2,"wt":54,"cpu":55,"mu":144,"pmu":0},"wp_admin_bar_render==>is_admin_bar_showing":{"ct":1,"wt":8,"cpu":7,"mu":112,"pmu":0},"apply_filters_ref_array==>array_pop":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_body_classes==>get_option":{"ct":1,"wt":18,"cpu":18,"mu":112,"pmu":0},"get_custom_logo==>is_customize_preview":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_resource_hints==>wp_parse_url":{"ct":4,"wt":29,"cpu":30,"mu":2256,"pmu":0},"wp_print_footer_scripts==>do_action@1":{"ct":1,"wt":685,"cpu":684,"mu":3856,"pmu":0},"map_meta_cap==>get_post":{"ct":1,"wt":78,"cpu":78,"mu":560,"pmu":0},"capital_P_dangit==>current_filter":{"ct":7,"wt":12,"cpu":14,"mu":112,"pmu":0},"WP_Taxonomy::set_props==>wp_parse_args":{"ct":13,"wt":9,"cpu":15,"mu":112,"pmu":112},"WP_Roles::get_roles_data==>is_multisite":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":112},"get_body_class==>is_paged":{"ct":1,"wt":5,"cpu":6,"mu":224,"pmu":0},"get_avatar_url==>get_avatar_data":{"ct":2,"wt":471,"cpu":470,"mu":3920,"pmu":22112},"the_generator==>get_the_generator":{"ct":1,"wt":10,"cpu":11,"mu":416,"pmu":0},"WP_Locale::init==>version_compare":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"do_action_ref_array==>WP_Hook::do_action":{"ct":1,"wt":10,"cpu":10,"mu":976,"pmu":0},"do_action_ref_array==>WP_Hook::do_action@1":{"ct":2,"wt":10672,"cpu":8830,"mu":74744,"pmu":64480},"main()==>get_sidebar":{"ct":1,"wt":11964,"cpu":9068,"mu":41536,"pmu":71072},"do_action_ref_array==>WP_Hook::do_action@2":{"ct":1,"wt":3669,"cpu":3629,"mu":88464,"pmu":70064},"wp_is_mobile==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_active_widget==>wp_get_sidebars_widgets":{"ct":1,"wt":143,"cpu":144,"mu":2240,"pmu":34096},"wp_admin_bar_customize_menu==>urlencode":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"register_sidebar==>add_theme_support":{"ct":3,"wt":24,"cpu":24,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>wp_get_current_user":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_random_header_image==>get_theme_support":{"ct":4,"wt":16,"cpu":17,"mu":112,"pmu":0},"require_wp_db==>wpdb::__construct":{"ct":1,"wt":1051,"cpu":674,"mu":14096,"pmu":32824},"WP_Admin_Bar::initialize==>home_url":{"ct":1,"wt":59,"cpu":60,"mu":384,"pmu":0},"array_map==>esc_sql":{"ct":7,"wt":162,"cpu":163,"mu":616,"pmu":1624},"twentyseventeen_scripts==>wp_style_add_data":{"ct":1,"wt":6,"cpu":6,"mu":712,"pmu":0},"wpdb::db_version==>preg_replace":{"ct":5,"wt":8,"cpu":11,"mu":312,"pmu":40},"WP_Query::get_posts==>wp_using_ext_object_cache":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps@2==>WP_Dependencies::recurse_deps@3":{"ct":4,"wt":2,"cpu":4,"mu":112,"pmu":0},"map_deep@1==>urlencode":{"ct":3,"wt":1,"cpu":3,"mu":208,"pmu":0},"get_rest_url==>WP_Rewrite::using_index_permalinks":{"ct":3,"wt":10,"cpu":11,"mu":112,"pmu":0},"wpdb::prepare==>func_get_args":{"ct":11,"wt":9,"cpu":12,"mu":4248,"pmu":0},"add_image_size==>absint":{"ct":4,"wt":5,"cpu":8,"mu":112,"pmu":0},"get_theme_mod==>sprintf":{"ct":15,"wt":11,"cpu":9,"mu":4912,"pmu":0},"wp_admin_bar_site_menu==>WP_Admin_Bar::add_menu":{"ct":2,"wt":25,"cpu":35,"mu":192,"pmu":0},"wp_admin_bar_my_account_item==>wp_get_current_user":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>wp_parse_args":{"ct":8,"wt":14,"cpu":13,"mu":336,"pmu":32},"WP_Widget_Media_Audio::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":219,"cpu":219,"mu":4392,"pmu":0},"locale_stylesheet==>get_locale_stylesheet_uri":{"ct":1,"wt":195,"cpu":195,"mu":1008,"pmu":0},"register_widget==>WP_Widget_Factory::register":{"ct":17,"wt":2783,"cpu":2788,"mu":39128,"pmu":49008},"wpdb::placeholder_escape==>hash_hmac":{"ct":1,"wt":9,"cpu":9,"mu":208,"pmu":240},"WP_User::get_data_by==>wp_cache_get":{"ct":10,"wt":35,"cpu":39,"mu":472,"pmu":0},"is_active_widget==>substr":{"ct":1,"wt":2,"cpu":2,"mu":152,"pmu":0},"main()==>wp_set_wpdb_vars":{"ct":1,"wt":118,"cpu":118,"mu":4936,"pmu":0},"wp_logout_url==>site_url":{"ct":3,"wt":163,"cpu":164,"mu":280,"pmu":0},"WP_Rewrite::get_month_permastruct==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":160,"pmu":0},"WP_Admin_Bar::_render_item==>esc_attr":{"ct":15,"wt":81,"cpu":87,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>count":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wpdb::db_connect==>mysqli_real_connect":{"ct":1,"wt":265,"cpu":107,"mu":432,"pmu":1904},"wpdb::set_prefix==>wpdb::__set":{"ct":3,"wt":13,"cpu":13,"mu":2840,"pmu":0},"WP_Dependencies::all_deps@2==>in_array":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>trailingslashit":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"get_admin_url==>get_site_url":{"ct":31,"wt":2103,"cpu":2103,"mu":4472,"pmu":3216},"wp_admin_bar_comments_menu==>_n":{"ct":1,"wt":23,"cpu":23,"mu":112,"pmu":0},"map_deep==>map_deep@1":{"ct":15,"wt":28,"cpu":32,"mu":816,"pmu":0},"WP_Post_Type::set_props==>get_post_type_labels":{"ct":16,"wt":5856,"cpu":5865,"mu":29232,"pmu":47048},"add_theme_support==>get_post_format_slugs":{"ct":1,"wt":77,"cpu":77,"mu":1368,"pmu":0},"WP_Admin_Bar::add_node==>WP_Admin_Bar::get_node":{"ct":30,"wt":64,"cpu":63,"mu":224,"pmu":0},"locate_template==>load_template":{"ct":4,"wt":43940,"cpu":37910,"mu":287592,"pmu":277472},"WP::query_posts==>WP::build_query_string":{"ct":1,"wt":8,"cpu":8,"mu":336,"pmu":0},"get_post_thumbnail_id==>get_post":{"ct":2,"wt":136,"cpu":125,"mu":560,"pmu":0},"load_template==>_e":{"ct":1,"wt":10,"cpu":10,"mu":224,"pmu":0},"WP_Comment_Query::get_comments==>WP_Meta_Query::parse_query_vars":{"ct":2,"wt":8,"cpu":8,"mu":112,"pmu":0},"esc_html==>apply_filters":{"ct":9,"wt":6,"cpu":7,"mu":112,"pmu":0},"esc_html==>apply_filters@1":{"ct":11,"wt":8,"cpu":11,"mu":112,"pmu":0},"esc_html==>apply_filters@2":{"ct":5,"wt":2,"cpu":3,"mu":112,"pmu":0},"load_theme_textdomain==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>wp_is_mobile":{"ct":1,"wt":11,"cpu":11,"mu":336,"pmu":0},"WP_Styles::do_footer_items==>WP_Dependencies::do_items":{"ct":1,"wt":26,"cpu":26,"mu":224,"pmu":0},"includes_url==>ltrim":{"ct":5,"wt":3,"cpu":5,"mu":160,"pmu":0},"WP_Hook::resort_active_iterations==>array_keys":{"ct":23,"wt":18,"cpu":65,"mu":8760,"pmu":1616},"load_template==>get_post_type":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"get_body_class==>is_front_page":{"ct":1,"wt":25,"cpu":26,"mu":112,"pmu":0},"add_theme_support==>func_num_args":{"ct":15,"wt":10,"cpu":11,"mu":112,"pmu":0},"get_comment_link==>get_permalink":{"ct":1,"wt":235,"cpu":235,"mu":192,"pmu":0},"add_theme_support==>define":{"ct":5,"wt":3,"cpu":7,"mu":384,"pmu":0},"get_avatar==>esc_attr":{"ct":4,"wt":23,"cpu":24,"mu":112,"pmu":0},"get_bloginfo==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"WP_Widget::_register_one==>_register_widget_update_callback":{"ct":17,"wt":143,"cpu":148,"mu":14568,"pmu":0},"date_i18n==>date":{"ct":20,"wt":24,"cpu":28,"mu":5232,"pmu":0},"WP_Query::get_posts==>is_numeric":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"body_class==>get_body_class":{"ct":1,"wt":1707,"cpu":1707,"mu":9592,"pmu":8688},"get_parent_theme_file_uri==>apply_filters@1":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_default_scripts==>strtok":{"ct":1,"wt":1,"cpu":1,"mu":176,"pmu":0},"wpdb::get_results==>wpdb::query":{"ct":11,"wt":3953,"cpu":1756,"mu":123344,"pmu":110464},"wp_admin_bar_render==>WP_Admin_Bar::render":{"ct":1,"wt":2019,"cpu":2018,"mu":15576,"pmu":0},"WP_Query::get_posts==>WP_Query::__isset":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"rest_output_link_wp_head==>esc_url":{"ct":1,"wt":70,"cpu":70,"mu":168,"pmu":0},"get_post_format==>get_post":{"ct":2,"wt":83,"cpu":83,"mu":536,"pmu":0},"wp_enqueue_script==>WP_Dependencies::add_data":{"ct":3,"wt":8,"cpu":8,"mu":1240,"pmu":0},"wp_salt==>defined":{"ct":14,"wt":9,"cpu":12,"mu":112,"pmu":0},"get_body_class==>is_home":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"load_template@2==>is_front_page":{"ct":2,"wt":43,"cpu":43,"mu":112,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::add_node":{"ct":1,"wt":8,"cpu":9,"mu":528,"pmu":0},"WP::parse_request==>sprintf":{"ct":1,"wt":1,"cpu":0,"mu":432,"pmu":0},"WP_Scripts::do_item==>WP_Dependencies::do_item":{"ct":13,"wt":12,"cpu":11,"mu":112,"pmu":0},"wp_unregister_GLOBALS==>ini_get":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"WP_Hook::apply_filters==>sanitize_comment_cookies":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>wp_maintenance":{"ct":1,"wt":7,"cpu":7,"mu":224,"pmu":0},"sanitize_title_with_dashes==>strtolower":{"ct":13,"wt":8,"cpu":10,"mu":112,"pmu":72},"WP_Admin_Bar::_render_item==>trim":{"ct":6,"wt":1,"cpu":5,"mu":208,"pmu":0},"current_action==>current_filter":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"wp_list_categories==>taxonomy_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"print_footer_scripts==>script_concat_settings":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_start_object_cache==>wp_cache_add_non_persistent_groups":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Admin_Bar::add_menus==>add_action":{"ct":13,"wt":77,"cpu":72,"mu":10360,"pmu":10056},"WP_Widget_Recent_Posts::widget==>apply_filters":{"ct":2,"wt":285,"cpu":286,"mu":152,"pmu":0},"wp_html_excerpt==>wp_strip_all_tags":{"ct":1,"wt":11,"cpu":12,"mu":160,"pmu":0},"twentyseventeen_get_svg==>wp_parse_args":{"ct":5,"wt":17,"cpu":17,"mu":1992,"pmu":0},"wpdb::escape_by_ref==>wpdb::_real_escape":{"ct":11,"wt":553,"cpu":558,"mu":5944,"pmu":5864},"_prime_term_caches==>_get_non_cached_ids":{"ct":11,"wt":20,"cpu":20,"mu":112,"pmu":0},"twentyseventeen_setup==>add_editor_style":{"ct":1,"wt":6,"cpu":6,"mu":120,"pmu":0},"WP_Comment_Query::get_comment_ids==>apply_filters_ref_array":{"ct":1,"wt":0,"cpu":1,"mu":-288,"pmu":0},"get_language_attributes==>is_rtl":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>_config_wp_home":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":296,"cpu":297,"mu":1928,"pmu":2976},"twentyseventeen_fonts_url==>_x":{"ct":2,"wt":15,"cpu":16,"mu":112,"pmu":0},"wp_cache_add_global_groups==>WP_Object_Cache::add_global_groups":{"ct":1,"wt":8,"cpu":9,"mu":1032,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::get_comment_ids":{"ct":1,"wt":588,"cpu":296,"mu":4032,"pmu":0},"WP_Scripts::all_deps@2==>WP_Dependencies::all_deps@2":{"ct":1,"wt":34,"cpu":34,"mu":448,"pmu":0},"metadata_exists==>wp_cache_get":{"ct":2,"wt":6,"cpu":6,"mu":32,"pmu":0},"WP_Admin_Bar::_render_item==>is_numeric":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_template@2==>is_home":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_parse_str==>parse_str":{"ct":28,"wt":73,"cpu":80,"mu":3224,"pmu":72},"WP_Scripts::add_inline_script==>WP_Dependencies::add_data":{"ct":4,"wt":7,"cpu":16,"mu":864,"pmu":0},"WP_Hook::apply_filters@1==>array_slice":{"ct":46,"wt":32,"cpu":39,"mu":17408,"pmu":1104},"wp_maybe_decline_date==>function_exists":{"ct":4,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_comment_author_link":{"ct":1,"wt":75,"cpu":75,"mu":1248,"pmu":0},"set_url_scheme==>force_ssl_admin":{"ct":32,"wt":26,"cpu":29,"mu":112,"pmu":0},"WP_User::get_data_by==>trim":{"ct":10,"wt":3,"cpu":5,"mu":112,"pmu":0},"wp_initial_constants==>ini_get":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":144},"WP_Taxonomy::set_props==>apply_filters":{"ct":5,"wt":5,"cpu":5,"mu":-1768,"pmu":0},"WP_Taxonomy::set_props==>apply_filters@1":{"ct":5,"wt":4,"cpu":7,"mu":-1768,"pmu":0},"_prime_comment_caches==>update_comment_cache":{"ct":1,"wt":291,"cpu":146,"mu":400,"pmu":0},"WP_Hook::apply_filters==>rest_api_loaded":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>_x":{"ct":3,"wt":23,"cpu":25,"mu":112,"pmu":0},"_prime_comment_caches==>sprintf":{"ct":1,"wt":1,"cpu":2,"mu":432,"pmu":0},"_print_styles==>wp_styles":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_search_form==>twentyseventeen_get_svg":{"ct":1,"wt":45,"cpu":45,"mu":272,"pmu":0},"feed_links==>get_feed_link":{"ct":2,"wt":245,"cpu":245,"mu":1496,"pmu":0},"main()==>class_exists":{"ct":11,"wt":11,"cpu":11,"mu":112,"pmu":48},"WP_List_Util::filter==>count":{"ct":9,"wt":3,"cpu":7,"mu":112,"pmu":0},"_canonical_charset==>strtolower":{"ct":4,"wt":4,"cpu":4,"mu":240,"pmu":0},"get_header_image_tag==>get_header_image":{"ct":1,"wt":624,"cpu":624,"mu":224,"pmu":2384},"register_post_type==>WP_Post_Type::__construct":{"ct":16,"wt":6763,"cpu":6764,"mu":43120,"pmu":47048},"Requests::register_autoloader==>spl_autoload_register":{"ct":1,"wt":3,"cpu":4,"mu":584,"pmu":280},"WP_Hook::apply_filters@3==>wp_heartbeat_settings":{"ct":1,"wt":92,"cpu":91,"mu":3592,"pmu":0},"get_user_option==>wpdb::get_blog_prefix":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"sanitize_post_field==>in_array":{"ct":736,"wt":342,"cpu":354,"mu":112,"pmu":0},"get_theme_mods==>get_option":{"ct":58,"wt":1278,"cpu":1287,"mu":10784,"pmu":127840},"edit_post_link==>esc_attr":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"wpdb::get_col==>wpdb::check_safe_collation":{"ct":2,"wt":94,"cpu":98,"mu":112,"pmu":512},"WP_Hook::apply_filters==>feed_links":{"ct":1,"wt":621,"cpu":622,"mu":3448,"pmu":0},"date_i18n==>preg_replace":{"ct":24,"wt":14,"cpu":16,"mu":224,"pmu":0},"WP_User::get_data_by==>is_numeric":{"ct":9,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_User::get_data_by==>wpdb::prepare":{"ct":1,"wt":101,"cpu":100,"mu":672,"pmu":0},"get_permalink==>explode":{"ct":4,"wt":6,"cpu":4,"mu":2384,"pmu":0},"WP_Hook::apply_filters==>redirect_canonical":{"ct":1,"wt":298,"cpu":298,"mu":6384,"pmu":0},"WP_Meta_Query::parse_query_vars==>WP_Meta_Query::__construct":{"ct":8,"wt":8,"cpu":7,"mu":112,"pmu":0},"wpdb::__construct==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"wpdb::__construct==>wpdb::db_connect":{"ct":1,"wt":1030,"cpu":655,"mu":12752,"pmu":31528},"twentyseventeen_colors_css_wrap==>is_customize_preview":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>get_current_user_id":{"ct":1,"wt":7,"cpu":7,"mu":336,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Meta::__construct":{"ct":1,"wt":66,"cpu":66,"mu":1128,"pmu":216},"wp_admin_bar_search_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":9,"cpu":9,"mu":152,"pmu":0},"map_meta_cap==>apply_filters":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"map_meta_cap==>apply_filters@1":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"map_meta_cap==>apply_filters@2":{"ct":17,"wt":21,"cpu":21,"mu":112,"pmu":0},"WP_Query::have_posts==>WP_Query::rewind_posts":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Post_Type::set_props==>get_post_type_capabilities":{"ct":16,"wt":535,"cpu":543,"mu":18896,"pmu":0},"WP_Term_Query::get_terms==>wp_cache_get":{"ct":2,"wt":9,"cpu":9,"mu":112,"pmu":0},"wp_script_add_data==>wp_scripts":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_maybe_load_embeds==>apply_filters@1":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":112},"wpdb::_real_escape==>wpdb::add_placeholder_escape":{"ct":18,"wt":583,"cpu":585,"mu":5176,"pmu":7104},"wp_admin_bar_updates_menu==>number_format_i18n":{"ct":1,"wt":46,"cpu":47,"mu":480,"pmu":0},"WP_Rewrite::get_month_permastruct==>preg_replace":{"ct":1,"wt":2,"cpu":2,"mu":208,"pmu":0},"WP_Taxonomy::add_rewrite_rules==>get_option":{"ct":3,"wt":59,"cpu":61,"mu":112,"pmu":0},"get_rest_url==>is_ssl":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"twentyseventeen_content_width==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_close_comments_for_old_posts":{"ct":2,"wt":4,"cpu":6,"mu":224,"pmu":0},"WP_Tax_Query::__construct==>WP_Tax_Query::sanitize_query":{"ct":4,"wt":3,"cpu":6,"mu":112,"pmu":0},"wp_cron==>_get_cron_array":{"ct":1,"wt":32,"cpu":32,"mu":6704,"pmu":18632},"date_i18n==>WP_Locale::get_weekday_abbrev":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Query::get_posts==>compact":{"ct":4,"wt":20,"cpu":21,"mu":9168,"pmu":3744},"_custom_header_background_just_in_time==>current_theme_supports":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP::init==>wp_get_current_user":{"ct":2,"wt":1430,"cpu":1050,"mu":54360,"pmu":56472},"WP_Widget_Recent_Comments::widget==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP::handle_404==>is_404":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Hook::apply_filters==>_show_post_preview":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Scripts::do_item==>WP_Scripts::print_extra_script":{"ct":9,"wt":19,"cpu":19,"mu":224,"pmu":0},"wptexturize==>explode":{"ct":2,"wt":3,"cpu":3,"mu":2304,"pmu":0},"load_template@2==>home_url":{"ct":1,"wt":54,"cpu":54,"mu":160,"pmu":0},"WP_Locale_Switcher::__construct==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_is_ini_value_changeable==>ini_get_all":{"ct":1,"wt":91,"cpu":91,"mu":129576,"pmu":129576},"sanitize_title==>apply_filters":{"ct":7,"wt":627,"cpu":627,"mu":536,"pmu":1464},"sanitize_title==>apply_filters@1":{"ct":2,"wt":196,"cpu":197,"mu":1064,"pmu":0},"WP_Widget_Media_Audio::__construct==>_n_noop":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_ancestors==>is_wp_error":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"sanitize_key==>preg_replace":{"ct":42,"wt":61,"cpu":62,"mu":112,"pmu":0},"twentyseventeen_edit_link==>edit_post_link":{"ct":1,"wt":343,"cpu":343,"mu":1584,"pmu":0},"wp_admin_bar_comments_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":14,"cpu":13,"mu":152,"pmu":0},"wp_functionality_constants==>define":{"ct":4,"wt":3,"cpu":2,"mu":240,"pmu":0},"_get_custom_object_labels==>array_merge":{"ct":26,"wt":53,"cpu":61,"mu":34848,"pmu":10688},"require_wp_db==>define":{"ct":6,"wt":7,"cpu":6,"mu":304,"pmu":304},"WP_Hook::apply_filters==>smilies_init":{"ct":1,"wt":168,"cpu":167,"mu":4584,"pmu":0},"is_taxonomy_hierarchical==>get_taxonomy":{"ct":4,"wt":5,"cpu":6,"mu":112,"pmu":112},"WP_Query::parse_query==>is_scalar":{"ct":6,"wt":16,"cpu":13,"mu":112,"pmu":0},"get_body_class==>is_date":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"get_terms==>wp_parse_args":{"ct":4,"wt":17,"cpu":18,"mu":2384,"pmu":512},"is_taxonomy_hierarchical==>taxonomy_exists":{"ct":4,"wt":1,"cpu":3,"mu":112,"pmu":112},"wp_initial_constants==>wp_is_ini_value_changeable":{"ct":2,"wt":101,"cpu":100,"mu":130200,"pmu":130200},"wp_print_styles==>_wp_scripts_maybe_doing_it_wrong":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Calendar::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":7,"mu":904,"pmu":0},"add_query_arg==>strstr":{"ct":25,"wt":34,"cpu":33,"mu":112,"pmu":0},"WP_User::__isset==>metadata_exists":{"ct":2,"wt":20,"cpu":20,"mu":560,"pmu":0},"apply_filters_ref_array==>WP_Hook::apply_filters":{"ct":2,"wt":26,"cpu":28,"mu":1088,"pmu":0},"esc_html==>_wp_specialchars":{"ct":25,"wt":127,"cpu":129,"mu":2048,"pmu":0},"WP_Styles::all_deps@1==>WP_Dependencies::all_deps@1":{"ct":2,"wt":35,"cpu":35,"mu":824,"pmu":0},"main()==>_e":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"is_feed==>WP_Query::is_feed":{"ct":3,"wt":1,"cpu":5,"mu":112,"pmu":0},"get_query_var==>WP_Query::get":{"ct":5,"wt":6,"cpu":9,"mu":88,"pmu":0},"WP_Query::have_posts==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"get_permalink==>str_replace":{"ct":4,"wt":10,"cpu":11,"mu":336,"pmu":0},"is_header_video_active==>is_callable":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_User::for_site==>wpdb::get_blog_prefix":{"ct":10,"wt":17,"cpu":19,"mu":112,"pmu":0},"wp_admin_bar_my_account_item==>WP_User::__get":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_header_video_url==>esc_url":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_get_svg==>esc_html":{"ct":10,"wt":64,"cpu":64,"mu":224,"pmu":0},"WP_Hook::apply_filters==>create_initial_post_types":{"ct":1,"wt":3222,"cpu":3221,"mu":712,"pmu":0},"get_the_content==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_option==>wp_cache_add":{"ct":4,"wt":116,"cpu":119,"mu":112,"pmu":0},"metadata_exists==>is_numeric":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_my_sites_menu":{"ct":1,"wt":7,"cpu":8,"mu":336,"pmu":0},"sanitize_post==>get_object_vars":{"ct":16,"wt":9,"cpu":14,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>wp_prototype_before_jquery":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"the_custom_header_markup==>get_custom_header_markup":{"ct":1,"wt":2001,"cpu":2000,"mu":3984,"pmu":9872},"get_feed_link==>str_replace":{"ct":6,"wt":7,"cpu":5,"mu":320,"pmu":0},"main()==>timer_start":{"ct":1,"wt":5,"cpu":6,"mu":248,"pmu":0},"WP_Comment_Query::get_comment_ids==>explode":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wp_default_scripts==>apply_filters@3":{"ct":3,"wt":108,"cpu":108,"mu":4456,"pmu":0},"main()==>WP_Roles::__construct":{"ct":1,"wt":76,"cpu":77,"mu":16864,"pmu":47672},"get_avatar_data==>is_ssl":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>number_format_i18n":{"ct":2,"wt":17,"cpu":16,"mu":176,"pmu":0},"wp_admin_bar_site_menu==>admin_url":{"ct":2,"wt":126,"cpu":127,"mu":224,"pmu":0},"dynamic_sidebar==>ltrim":{"ct":6,"wt":4,"cpu":7,"mu":376,"pmu":0},"wptexturize==>str_replace":{"ct":19,"wt":40,"cpu":41,"mu":112,"pmu":0},"wp_just_in_time_script_localization==>array_keys":{"ct":2,"wt":7,"cpu":8,"mu":864,"pmu":0},"twentyseventeen_body_classes==>get_header_textcolor":{"ct":1,"wt":200,"cpu":200,"mu":432,"pmu":1040},"WP_Hook::apply_filters==>noindex":{"ct":1,"wt":27,"cpu":28,"mu":336,"pmu":0},"get_the_time==>get_post":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_loginout==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>includes_url":{"ct":3,"wt":180,"cpu":180,"mu":680,"pmu":1608},"wp_is_file_mod_allowed==>apply_filters@2":{"ct":3,"wt":3,"cpu":4,"mu":112,"pmu":0},"is_single==>WP_Query::is_single":{"ct":9,"wt":3,"cpu":7,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_grant_install_languages_cap":{"ct":3,"wt":9,"cpu":9,"mu":7960,"pmu":2352},"current_theme_supports==>in_array":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_metadata==>update_meta_cache":{"ct":3,"wt":386,"cpu":239,"mu":22040,"pmu":15376},"wp_admin_bar_customize_menu==>__":{"ct":1,"wt":12,"cpu":12,"mu":112,"pmu":0},"WP_Hook::apply_filters==>rest_output_link_header":{"ct":1,"wt":141,"cpu":141,"mu":776,"pmu":0},"WP::parse_request==>wp_resolve_numeric_slug_conflicts":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"dynamic_sidebar==>WP_Widget::display_callback":{"ct":6,"wt":11194,"cpu":8298,"mu":39272,"pmu":68992},"wpdb::__construct==>phpversion":{"ct":1,"wt":0,"cpu":1,"mu":176,"pmu":176},"WP_Hook::apply_filters@1==>_wp_filter_taxonomy_base":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_permalink==>date":{"ct":4,"wt":13,"cpu":11,"mu":1136,"pmu":0},"get_avatar_data==>trim":{"ct":4,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::parse_query":{"ct":1,"wt":7,"cpu":7,"mu":2952,"pmu":0},"sanitize_user==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wptexturize==>trim":{"ct":19,"wt":13,"cpu":10,"mu":112,"pmu":0},"_wp_specialchars==>htmlspecialchars":{"ct":7,"wt":38,"cpu":38,"mu":1232,"pmu":0},"WP_Styles::_css_href==>strpos":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Embed::autoembed==>preg_match":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_trackback==>WP_Query::is_trackback":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>esc_attr__":{"ct":1,"wt":13,"cpu":14,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_print_footer_scripts":{"ct":1,"wt":686,"cpu":686,"mu":3968,"pmu":0},"_wp_specialchars==>in_array":{"ct":14,"wt":15,"cpu":12,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_cron":{"ct":1,"wt":39,"cpu":40,"mu":672,"pmu":18632},"WP_Query::the_post==>WP_Query::next_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"apply_filters@2==>array_pop":{"ct":54,"wt":35,"cpu":53,"mu":112,"pmu":0},"wp_old_slug_redirect==>is_404":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_colors_css_wrap":{"ct":1,"wt":63,"cpu":63,"mu":336,"pmu":17296},"twentyseventeen_scripts==>is_singular":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_avatar_data==>is_numeric":{"ct":16,"wt":9,"cpu":7,"mu":112,"pmu":0},"WP_Scripts::__construct==>add_action":{"ct":1,"wt":20,"cpu":21,"mu":712,"pmu":0},"wp_get_object_terms==>array_merge":{"ct":1,"wt":0,"cpu":3,"mu":488,"pmu":0},"get_bloginfo==>is_admin":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_site_transient==>get_site_option":{"ct":5,"wt":4023,"cpu":2433,"mu":28584,"pmu":32120},"WP_Widget::_register==>WP_Widget_Media::_register_one":{"ct":4,"wt":745,"cpu":745,"mu":29816,"pmu":0},"WP_Query::parse_tax_query==>get_taxonomies":{"ct":4,"wt":48,"cpu":50,"mu":112,"pmu":0},"get_theme_root_uri==>content_url":{"ct":40,"wt":425,"cpu":422,"mu":3792,"pmu":0},"WP::main==>do_action_ref_array":{"ct":1,"wt":1,"cpu":2,"mu":-288,"pmu":0},"Requests::autoloader@1==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":152,"pmu":152},"is_random_header_image==>get_random_header_image":{"ct":4,"wt":810,"cpu":809,"mu":848,"pmu":1488},"wp_admin_bar_render==>do_action@1":{"ct":2,"wt":138,"cpu":139,"mu":1424,"pmu":0},"wpdb::determine_charset==>wpdb::has_cap":{"ct":3,"wt":49,"cpu":49,"mu":1168,"pmu":0},"load_template==>esc_url":{"ct":1,"wt":44,"cpu":44,"mu":112,"pmu":0},"main()==>is_admin":{"ct":25,"wt":16,"cpu":19,"mu":112,"pmu":112},"load_template==>bloginfo":{"ct":1,"wt":253,"cpu":253,"mu":12392,"pmu":0},"kses_init==>current_user_can":{"ct":2,"wt":86,"cpu":86,"mu":2992,"pmu":0},"wpdb::remove_placeholder_escape==>wpdb::placeholder_escape":{"ct":22,"wt":868,"cpu":877,"mu":26752,"pmu":6928},"WP_Admin_Bar::initialize==>add_action":{"ct":3,"wt":16,"cpu":15,"mu":2760,"pmu":0},"wp_parse_url==>substr":{"ct":26,"wt":19,"cpu":20,"mu":944,"pmu":0},"map_meta_cap==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"apply_filters@1==>array_shift":{"ct":63,"wt":49,"cpu":50,"mu":112,"pmu":0},"script_concat_settings==>is_admin":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"translate==>get_translations_for_domain":{"ct":1302,"wt":2318,"cpu":2356,"mu":2040,"pmu":112},"wp_default_scripts==>site_url":{"ct":2,"wt":105,"cpu":109,"mu":1968,"pmu":0},"Requests::autoloader==>spl_autoload_call@1":{"ct":1,"wt":16,"cpu":16,"mu":992,"pmu":1080},"wp_nonce_url==>str_replace":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"spl_autoload_call@1==>Requests::autoloader@1":{"ct":1,"wt":14,"cpu":14,"mu":880,"pmu":1080},"is_admin_bar_showing==>is_user_logged_in":{"ct":1,"wt":6,"cpu":5,"mu":112,"pmu":0},"get_terms==>apply_filters":{"ct":2,"wt":40,"cpu":39,"mu":1088,"pmu":1120},"wp_magic_quotes==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"WP::handle_404==>status_header":{"ct":1,"wt":15,"cpu":15,"mu":936,"pmu":0},"wp_strip_all_tags==>strip_tags":{"ct":2,"wt":2,"cpu":3,"mu":184,"pmu":0},"main()==>Requests::set_certificate_path":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":56},"wpdb::_real_escape==>mysqli_real_escape_string":{"ct":18,"wt":52,"cpu":58,"mu":856,"pmu":192},"rel_canonical==>is_singular":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Term_Query::parse_orderby":{"ct":2,"wt":14,"cpu":15,"mu":512,"pmu":480},"WP_Admin_Bar::_render==>is_user_logged_in":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_customize_support_script==>parse_url":{"ct":2,"wt":7,"cpu":7,"mu":1208,"pmu":0},"main()==>WP::init":{"ct":1,"wt":1430,"cpu":1050,"mu":54472,"pmu":56472},"WP_User::get_data_by==>wpdb::get_row":{"ct":1,"wt":375,"cpu":142,"mu":2320,"pmu":0},"twentyseventeen_custom_header_setup==>get_parent_theme_file_uri":{"ct":1,"wt":130,"cpu":130,"mu":2800,"pmu":0},"wp_check_php_mysql_versions==>extension_loaded":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"array_map==>esc_attr":{"ct":16,"wt":102,"cpu":98,"mu":176,"pmu":0},"map_deep@1==>rawurlencode":{"ct":12,"wt":8,"cpu":10,"mu":624,"pmu":0},"validate_file==>substr":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"load_template@2==>twentyseventeen_get_svg":{"ct":1,"wt":26,"cpu":26,"mu":416,"pmu":0},"WP_Rewrite::init==>substr":{"ct":2,"wt":2,"cpu":2,"mu":176,"pmu":176},"get_stylesheet_directory_uri==>str_replace":{"ct":23,"wt":9,"cpu":13,"mu":112,"pmu":0},"get_custom_header==>wp_parse_args":{"ct":1,"wt":3,"cpu":2,"mu":488,"pmu":0},"wp_get_custom_css==>wp_get_custom_css_post":{"ct":1,"wt":224,"cpu":222,"mu":1648,"pmu":4104},"bloginfo==>get_bloginfo":{"ct":2,"wt":333,"cpu":333,"mu":12376,"pmu":0},"get_post_types==>wp_filter_object_list":{"ct":6,"wt":136,"cpu":136,"mu":11512,"pmu":0},"wp_kses_normalize_entities==>preg_replace_callback":{"ct":258,"wt":362,"cpu":385,"mu":1560,"pmu":0},"wp_list_categories==>is_category":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_default_scripts==>wp_installing":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_kses_bad_protocol_once2==>wp_kses_decode_entities":{"ct":83,"wt":334,"cpu":352,"mu":224,"pmu":0},"wp_script_is==>_wp_scripts_maybe_doing_it_wrong":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"set_url_scheme==>apply_filters":{"ct":34,"wt":20,"cpu":21,"mu":112,"pmu":0},"set_url_scheme==>apply_filters@1":{"ct":32,"wt":22,"cpu":50,"mu":112,"pmu":0},"set_url_scheme==>apply_filters@2":{"ct":34,"wt":21,"cpu":27,"mu":112,"pmu":0},"is_404==>WP_Query::is_404":{"ct":8,"wt":4,"cpu":8,"mu":112,"pmu":0},"wp_filter_object_list==>WP_List_Util::filter":{"ct":17,"wt":166,"cpu":175,"mu":13128,"pmu":0},"set_url_scheme==>apply_filters@3":{"ct":9,"wt":4,"cpu":6,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wptexturize":{"ct":16,"wt":655,"cpu":658,"mu":11216,"pmu":0},"set_url_scheme==>apply_filters@4":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"date_i18n==>backslashit":{"ct":24,"wt":38,"cpu":36,"mu":1056,"pmu":0},"wp_kses_named_entities==>in_array":{"ct":7,"wt":25,"cpu":27,"mu":112,"pmu":0},"wp_just_in_time_script_localization==>_x":{"ct":1,"wt":24,"cpu":24,"mu":112,"pmu":0},"get_feed_link==>preg_replace":{"ct":4,"wt":7,"cpu":7,"mu":288,"pmu":0},"WP_Term_Query::get_terms==>compact":{"ct":2,"wt":6,"cpu":7,"mu":2784,"pmu":2528},"WP_Rewrite::add_permastruct==>wp_parse_args":{"ct":3,"wt":11,"cpu":11,"mu":1240,"pmu":0},"WP_Widget_Categories::widget==>__":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"load_template==>get_template_part":{"ct":3,"wt":3027,"cpu":3028,"mu":23624,"pmu":22984},"WP_Admin_Bar::initialize==>get_current_blog_id":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_site_icon==>is_customize_preview":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_register_sidebar_widget==>is_callable":{"ct":17,"wt":34,"cpu":38,"mu":112,"pmu":0},"get_header_image==>esc_url_raw":{"ct":3,"wt":146,"cpu":144,"mu":224,"pmu":0},"wptexturize==>preg_replace":{"ct":21,"wt":28,"cpu":25,"mu":192,"pmu":0},"wpdb::prepare==>wpdb::add_placeholder_escape":{"ct":11,"wt":281,"cpu":285,"mu":336,"pmu":1016},"WP_Widget_Text::_register_one==>wp_json_encode":{"ct":1,"wt":13,"cpu":12,"mu":704,"pmu":0},"wpdb::set_sql_mode==>mysqli_query":{"ct":2,"wt":143,"cpu":55,"mu":16768,"pmu":14048},"twentyseventeen_scripts==>is_customize_preview":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Scripts::localize==>WP_Dependencies::get_data":{"ct":25,"wt":32,"cpu":34,"mu":112,"pmu":0},"WP_Locale::__construct==>WP_Locale::register_globals":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>parse_url":{"ct":1,"wt":2,"cpu":3,"mu":144,"pmu":0},"get_object_term_cache==>is_wp_error":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_validate_auth_cookie==>time":{"ct":2,"wt":2,"cpu":0,"mu":112,"pmu":0},"print_head_scripts==>_print_scripts":{"ct":1,"wt":5,"cpu":7,"mu":224,"pmu":0},"get_site_transient==>apply_filters@2":{"ct":10,"wt":11,"cpu":15,"mu":-480,"pmu":0},"WP_Widget_Meta::__construct==>__":{"ct":2,"wt":20,"cpu":26,"mu":112,"pmu":0},"wp_validate_auth_cookie==>WP_Session_Tokens::verify":{"ct":1,"wt":46,"cpu":46,"mu":1344,"pmu":9960},"WP_Admin_Bar::_bind==>WP_Admin_Bar::remove_node":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":0},"WP_Widget_Media::__construct==>admin_url":{"ct":4,"wt":269,"cpu":270,"mu":1376,"pmu":2864},"array_filter==>WP_Session_Tokens::is_still_valid":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"WP_Widget_Meta::widget==>get_bloginfo":{"ct":2,"wt":189,"cpu":188,"mu":552,"pmu":0},"wpdb::tables==>in_array":{"ct":15,"wt":13,"cpu":13,"mu":112,"pmu":0},"wp_get_object_terms==>implode":{"ct":2,"wt":2,"cpu":2,"mu":208,"pmu":0},"wp_validate_auth_cookie==>WP_Session_Tokens::get_instance":{"ct":1,"wt":5,"cpu":5,"mu":392,"pmu":0},"get_rest_url==>is_admin":{"ct":3,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_set_internal_encoding==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_prime_comment_caches==>wpdb::get_results":{"ct":1,"wt":258,"cpu":146,"mu":2128,"pmu":0},"wp_style_add_data==>wp_styles":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Hook::do_action@1==>WP_Hook::apply_filters@1":{"ct":8,"wt":20300,"cpu":18419,"mu":289408,"pmu":301136},"WP_Hook::apply_filters==>_post_format_link":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Embed::__construct==>add_shortcode":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":112},"get_term_link==>get_ancestors":{"ct":1,"wt":64,"cpu":64,"mu":448,"pmu":0},"wp_plugin_directory_constants==>get_option":{"ct":1,"wt":68,"cpu":68,"mu":2544,"pmu":3888},"smilies_init==>substr":{"ct":86,"wt":39,"cpu":31,"mu":2888,"pmu":0},"wp_admin_bar_add_secondary_groups==>WP_Admin_Bar::add_group":{"ct":2,"wt":17,"cpu":19,"mu":944,"pmu":0},"feed_links_extra==>wp_parse_args":{"ct":1,"wt":12,"cpu":13,"mu":488,"pmu":0},"register_post_status==>wp_parse_args":{"ct":16,"wt":30,"cpu":30,"mu":11360,"pmu":0},"has_filter==>WP_Hook::has_filter":{"ct":50,"wt":485,"cpu":499,"mu":544,"pmu":2048},"wp_admin_bar_customize_menu==>current_user_can":{"ct":1,"wt":70,"cpu":70,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_active_sidebar":{"ct":1,"wt":97,"cpu":97,"mu":448,"pmu":0},"wp_add_inline_script==>WP_Scripts::add_inline_script":{"ct":2,"wt":6,"cpu":7,"mu":112,"pmu":0},"wp_add_inline_script==>_wp_scripts_maybe_doing_it_wrong":{"ct":2,"wt":5,"cpu":4,"mu":224,"pmu":0},"get_locale==>apply_filters":{"ct":4,"wt":17,"cpu":17,"mu":224,"pmu":0},"get_locale==>apply_filters@1":{"ct":7,"wt":95,"cpu":97,"mu":2144,"pmu":0},"get_locale==>apply_filters@3":{"ct":1,"wt":14,"cpu":14,"mu":224,"pmu":0},"wp_parse_args==>array_merge":{"ct":166,"wt":186,"cpu":292,"mu":77568,"pmu":6688},"twentyseventeen_body_classes==>get_theme_mod":{"ct":1,"wt":188,"cpu":188,"mu":432,"pmu":112},"get_edit_post_link==>get_post_type_object":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_the_time==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Scripts::do_item==>WP_Dependencies::get_data":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_parent_theme_file_uri==>ltrim":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"get_avatar_data==>hexdec":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"register_sidebar==>__":{"ct":3,"wt":22,"cpu":24,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>get_bloginfo":{"ct":1,"wt":27,"cpu":27,"mu":112,"pmu":0},"_make_cat_compat==>is_wp_error":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_cron==>array_keys":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"get_post_class==>get_taxonomies":{"ct":1,"wt":23,"cpu":23,"mu":488,"pmu":0},"do_action==>func_get_arg":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_customize_support_script==>admin_url":{"ct":1,"wt":52,"cpu":53,"mu":168,"pmu":0},"WP_Query::the_post==>do_action_ref_array":{"ct":1,"wt":1,"cpu":2,"mu":-288,"pmu":0},"_wp_specialchars==>preg_match":{"ct":121,"wt":105,"cpu":116,"mu":112,"pmu":0},"WP::send_headers==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"redirect_canonical==>parse_url":{"ct":2,"wt":3,"cpu":4,"mu":1200,"pmu":0},"feed_content_type==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"array_map==>preg_quote":{"ct":31,"wt":12,"cpu":11,"mu":1136,"pmu":0},"apply_filters@3==>func_get_args":{"ct":12,"wt":6,"cpu":8,"mu":4624,"pmu":368},"wp_admin_bar_updates_menu==>network_admin_url":{"ct":1,"wt":360,"cpu":362,"mu":416,"pmu":0},"WP_Hook::apply_filters@3==>next":{"ct":12,"wt":8,"cpu":5,"mu":112,"pmu":0},"wp_load_alloptions==>wpdb::suppress_errors":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"wpdb::get_col==>wpdb::get_var":{"ct":3,"wt":133,"cpu":137,"mu":-272,"pmu":0},"main()==>wp":{"ct":1,"wt":3398,"cpu":2558,"mu":153008,"pmu":122928},"get_the_post_thumbnail==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"feed_links==>__":{"ct":2,"wt":15,"cpu":16,"mu":112,"pmu":0},"WP_Admin_Bar::_render_item==>esc_url":{"ct":7,"wt":309,"cpu":309,"mu":616,"pmu":0},"redirect_canonical==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wptexturize==>preg_match_all":{"ct":19,"wt":28,"cpu":29,"mu":9384,"pmu":0},"get_theme_support==>func_num_args":{"ct":17,"wt":6,"cpu":7,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_style_loader_src":{"ct":5,"wt":52,"cpu":48,"mu":248,"pmu":0},"load_template==>get_the_post_thumbnail":{"ct":1,"wt":48,"cpu":48,"mu":448,"pmu":0},"WP_Comment_Query::get_comment_ids==>compact":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":0},"WP_Widget::display_callback==>WP_Widget::_set":{"ct":6,"wt":33,"cpu":31,"mu":352,"pmu":152},"Walker_Category::start_el==>esc_attr":{"ct":1,"wt":15,"cpu":14,"mu":112,"pmu":0},"WP_Dependencies::enqueue==>in_array":{"ct":10,"wt":7,"cpu":6,"mu":112,"pmu":0},"print_head_scripts==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>_x":{"ct":1,"wt":7,"cpu":6,"mu":112,"pmu":0},"get_custom_header==>get_theme_support":{"ct":4,"wt":16,"cpu":14,"mu":112,"pmu":0},"wp_get_session_token==>wp_parse_auth_cookie":{"ct":5,"wt":38,"cpu":39,"mu":3232,"pmu":0},"wp_resource_hints==>wp_dependencies_unique_hosts":{"ct":1,"wt":107,"cpu":108,"mu":1136,"pmu":0},"WP_Hook::apply_filters==>rsd_link":{"ct":1,"wt":145,"cpu":144,"mu":336,"pmu":0},"main()==>get_theme_root":{"ct":1,"wt":4,"cpu":4,"mu":312,"pmu":0},"print_head_scripts==>WP_Scripts::reset":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"esc_url==>str_replace":{"ct":330,"wt":207,"cpu":223,"mu":1248,"pmu":0},"dynamic_sidebar==>do_action":{"ct":8,"wt":14,"cpu":15,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_custom_header_background_just_in_time":{"ct":1,"wt":38,"cpu":38,"mu":1480,"pmu":0},"get_post_meta==>get_metadata":{"ct":2,"wt":54,"cpu":53,"mu":112,"pmu":0},"get_the_date==>get_post":{"ct":2,"wt":4,"cpu":3,"mu":112,"pmu":0},"wp_default_scripts==>admin_url":{"ct":3,"wt":151,"cpu":152,"mu":416,"pmu":0},"get_month_link==>zeroise":{"ct":1,"wt":3,"cpu":4,"mu":432,"pmu":0},"wp_styles==>WP_Styles::__construct":{"ct":1,"wt":442,"cpu":442,"mu":27232,"pmu":5560},"wp_custom_css_cb==>wp_get_custom_css":{"ct":1,"wt":250,"cpu":250,"mu":1984,"pmu":4104},"wp_scripts==>WP_Scripts::__construct":{"ct":1,"wt":3701,"cpu":3660,"mu":90000,"pmu":70064},"get_avatar==>esc_url":{"ct":4,"wt":178,"cpu":179,"mu":560,"pmu":0},"get_locale_stylesheet_uri==>get_locale":{"ct":1,"wt":17,"cpu":18,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_front_page":{"ct":1,"wt":22,"cpu":22,"mu":112,"pmu":0},"WP_Widget_Search::__construct==>_x":{"ct":1,"wt":10,"cpu":10,"mu":112,"pmu":112},"_custom_header_background_just_in_time==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"content_url==>set_url_scheme":{"ct":40,"wt":275,"cpu":286,"mu":2912,"pmu":0},"get_avatar==>get_avatar_url":{"ct":2,"wt":474,"cpu":474,"mu":1184,"pmu":22112},"main()==>add_filter":{"ct":267,"wt":1071,"cpu":1087,"mu":258496,"pmu":243264},"_register_widget_form_callback==>wp_parse_args":{"ct":17,"wt":50,"cpu":51,"mu":6504,"pmu":0},"get_taxonomies==>wp_filter_object_list":{"ct":7,"wt":81,"cpu":83,"mu":1312,"pmu":0},"is_header_video_active==>get_theme_support":{"ct":2,"wt":7,"cpu":8,"mu":112,"pmu":0},"wpdb::get_var==>wpdb::check_safe_collation":{"ct":3,"wt":92,"cpu":91,"mu":112,"pmu":0},"get_option==>maybe_unserialize":{"ct":361,"wt":1937,"cpu":1962,"mu":112544,"pmu":531024},"WP_Hook::resort_active_iterations==>min":{"ct":23,"wt":31,"cpu":33,"mu":112,"pmu":112},"_WP_Dependency::__construct==>func_get_args":{"ct":198,"wt":99,"cpu":98,"mu":74560,"pmu":10280},"wpdb::has_cap==>strpos":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>is_customize_preview":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP::send_headers==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_ancestors==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Audio::__construct":{"ct":1,"wt":390,"cpu":390,"mu":5664,"pmu":0},"WP_Hook::apply_filters@3==>_wp_specialchars":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_get_archives==>wpdb::prepare":{"ct":1,"wt":70,"cpu":70,"mu":432,"pmu":0},"WP_Widget_Recent_Posts::__construct==>__":{"ct":2,"wt":16,"cpu":16,"mu":112,"pmu":112},"is_header_video_active==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_day==>WP_Query::is_day":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>is_month":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wp_footer==>do_action":{"ct":1,"wt":13228,"cpu":11385,"mu":107192,"pmu":75128},"twentyseventeen_scripts==>wp_enqueue_style":{"ct":3,"wt":41,"cpu":41,"mu":816,"pmu":384},"add_query_arg==>stripos":{"ct":27,"wt":22,"cpu":30,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>is_taxonomy_hierarchical":{"ct":4,"wt":15,"cpu":16,"mu":336,"pmu":336},"create_initial_post_types==>register_post_type":{"ct":16,"wt":7595,"cpu":7596,"mu":34456,"pmu":54560},"WP_Hook::apply_filters==>wp_schedule_update_checks":{"ct":1,"wt":103,"cpu":102,"mu":560,"pmu":2912},"load_default_textdomain==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"the_content==>get_the_content":{"ct":1,"wt":16,"cpu":16,"mu":808,"pmu":0},"WP_Hook::apply_filters@1==>_config_wp_siteurl":{"ct":26,"wt":27,"cpu":31,"mu":112,"pmu":0},"main()==>get_template_part":{"ct":1,"wt":2750,"cpu":2738,"mu":35424,"pmu":12472},"wp_kses_normalize_entities2==>valid_unicode":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_register_sidebar_widget==>wp_parse_args":{"ct":17,"wt":160,"cpu":163,"mu":6504,"pmu":0},"locate_template@2==>file_exists":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"wp_default_scripts==>esc_attr__":{"ct":2,"wt":87,"cpu":87,"mu":1656,"pmu":328},"WP_Admin_Bar::add_node==>WP_Admin_Bar::_set_node":{"ct":30,"wt":32,"cpu":32,"mu":2648,"pmu":0},"WP_Widget_Recent_Posts::widget==>the_permalink":{"ct":1,"wt":322,"cpu":324,"mu":448,"pmu":0},"WP_Taxonomy::set_props==>get_option":{"ct":3,"wt":61,"cpu":64,"mu":112,"pmu":0},"twentyseventeen_widgets_init==>__":{"ct":6,"wt":90,"cpu":90,"mu":224,"pmu":0},"get_user_by==>WP_User::init":{"ct":9,"wt":809,"cpu":663,"mu":54976,"pmu":90088},"WP_Widget_Media_Image::__construct==>__":{"ct":5,"wt":38,"cpu":38,"mu":112,"pmu":0},"get_site_transient==>in_array":{"ct":5,"wt":3,"cpu":6,"mu":112,"pmu":0},"get_edit_profile_url==>is_user_admin":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_time_link==>get_the_modified_date":{"ct":2,"wt":212,"cpu":212,"mu":1072,"pmu":0},"get_header==>do_action":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_localize_script==>WP_Scripts::localize":{"ct":4,"wt":212,"cpu":217,"mu":1880,"pmu":0},"WP_Post_Type::add_supports==>add_post_type_support":{"ct":16,"wt":139,"cpu":139,"mu":4272,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_edit_menu":{"ct":1,"wt":9,"cpu":10,"mu":384,"pmu":0},"edit_post_link==>esc_url":{"ct":1,"wt":50,"cpu":50,"mu":208,"pmu":0},"WP_Dependencies::all_deps==>explode":{"ct":19,"wt":23,"cpu":32,"mu":7256,"pmu":0},"WP_Hook::apply_filters@1==>wpdb::remove_placeholder_escape":{"ct":4,"wt":176,"cpu":176,"mu":5216,"pmu":0},"get_post_thumbnail_id==>get_post_meta":{"ct":2,"wt":55,"cpu":56,"mu":224,"pmu":0},"get_term_link==>array_reverse":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"update_post_caches==>array_unique":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":112},"map_meta_cap==>get_option":{"ct":1,"wt":28,"cpu":29,"mu":112,"pmu":0},"has_custom_header==>has_header_image":{"ct":1,"wt":648,"cpu":648,"mu":672,"pmu":7472},"get_month_link==>str_replace":{"ct":2,"wt":1,"cpu":2,"mu":200,"pmu":0},"wp_get_current_user==>_wp_get_current_user":{"ct":49,"wt":1481,"cpu":1104,"mu":54248,"pmu":56472},"get_theme_root==>apply_filters":{"ct":8,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_theme_root==>apply_filters@1":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_theme_root==>apply_filters@2":{"ct":5,"wt":1,"cpu":2,"mu":112,"pmu":0},"redirect_canonical==>is_tax":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":0},"main()==>Requests::register_autoloader":{"ct":1,"wt":5,"cpu":5,"mu":696,"pmu":392},"wpdb::db_version==>mysqli_get_server_info":{"ct":5,"wt":3,"cpu":6,"mu":352,"pmu":8},"WP_Comment_Query::get_comments==>WP_Meta_Query::__construct":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>WP_Metadata_Lazyloader::queue_objects":{"ct":2,"wt":36,"cpu":35,"mu":2424,"pmu":0},"WP_Tax_Query::get_sql_clauses==>WP_Tax_Query::get_sql_for_query":{"ct":2,"wt":16,"cpu":16,"mu":336,"pmu":0},"the_permalink==>get_permalink":{"ct":1,"wt":255,"cpu":256,"mu":192,"pmu":0},"_get_path_to_translation_from_lang_dir==>get_locale":{"ct":1,"wt":18,"cpu":17,"mu":192,"pmu":0},"wp_initial_constants==>is_multisite":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":112},"WP_Comment_Query::query==>wp_parse_args":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_count_comments==>apply_filters@2":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"esc_url==>preg_replace":{"ct":86,"wt":93,"cpu":99,"mu":112,"pmu":0},"WP_Rewrite::get_month_permastruct==>WP_Rewrite::get_date_permastruct":{"ct":1,"wt":10,"cpu":11,"mu":392,"pmu":0},"wp_custom_css_cb==>is_customize_preview":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps@1==>in_array":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Query::query==>wp_parse_args":{"ct":2,"wt":3,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Recent_Posts::widget==>get_the_title":{"ct":1,"wt":168,"cpu":168,"mu":152,"pmu":0},"kses_remove_filters==>remove_filter":{"ct":12,"wt":31,"cpu":34,"mu":264,"pmu":0},"print_head_scripts==>WP_Scripts::do_head_items":{"ct":1,"wt":830,"cpu":829,"mu":5840,"pmu":18552},"WP_Hook::apply_filters==>create_initial_taxonomies":{"ct":1,"wt":1873,"cpu":1873,"mu":11672,"pmu":4816},"WP_Comment_Query::parse_query==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"user_trailingslashit==>trailingslashit":{"ct":11,"wt":42,"cpu":43,"mu":752,"pmu":0},"rest_output_link_header==>get_rest_url":{"ct":1,"wt":82,"cpu":82,"mu":280,"pmu":0},"WP_Hook::apply_filters==>current":{"ct":134,"wt":66,"cpu":80,"mu":112,"pmu":112},"WP::parse_request==>explode":{"ct":2,"wt":1,"cpu":2,"mu":864,"pmu":0},"WP_Widget_Media::__construct==>array_filter":{"ct":4,"wt":4,"cpu":5,"mu":336,"pmu":0},"WP_Query::parse_query==>do_action_ref_array":{"ct":2,"wt":4,"cpu":4,"mu":-688,"pmu":0},"is_serialized==>preg_match":{"ct":80,"wt":135,"cpu":125,"mu":112,"pmu":0},"wp_list_categories==>walk_category_tree":{"ct":1,"wt":317,"cpu":318,"mu":4800,"pmu":0},"shortcode_unautop==>wp_spaces_regexp":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_User::get_role_caps==>wp_roles":{"ct":10,"wt":8,"cpu":8,"mu":136,"pmu":0},"get_edit_profile_url==>get_dashboard_url":{"ct":2,"wt":306,"cpu":305,"mu":1024,"pmu":0},"wp_html_split==>get_html_split_regex":{"ct":2,"wt":5,"cpu":6,"mu":672,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"get_user_by==>WP_User::__construct":{"ct":9,"wt":41,"cpu":41,"mu":1184,"pmu":0},"get_the_post_thumbnail==>apply_filters":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_header_image_tag":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Term_Query::parse_orderby==>apply_filters":{"ct":2,"wt":4,"cpu":5,"mu":112,"pmu":112},"wp_customize_url==>admin_url":{"ct":1,"wt":68,"cpu":68,"mu":176,"pmu":0},"update_post_cache==>wp_cache_add":{"ct":3,"wt":18,"cpu":19,"mu":528,"pmu":528},"get_avatar==>is_wp_error":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_default_scripts==>did_action":{"ct":24,"wt":8,"cpu":15,"mu":112,"pmu":0},"main()==>wp_fix_server_vars":{"ct":1,"wt":21,"cpu":22,"mu":3232,"pmu":3920},"shortcode_unautop==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"has_nav_menu==>get_nav_menu_locations":{"ct":4,"wt":208,"cpu":208,"mu":224,"pmu":10664},"get_edit_post_link==>current_user_can":{"ct":1,"wt":124,"cpu":124,"mu":448,"pmu":0},"wp_kses_bad_protocol_once==>preg_match":{"ct":83,"wt":74,"cpu":82,"mu":112,"pmu":0},"get_template_directory_uri==>str_replace":{"ct":17,"wt":7,"cpu":15,"mu":112,"pmu":0},"twentyseventeen_body_classes==>has_header_image":{"ct":1,"wt":805,"cpu":806,"mu":1856,"pmu":5648},"get_archives_link==>esc_url":{"ct":1,"wt":112,"cpu":112,"mu":168,"pmu":0},"wp_get_archives==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":808,"pmu":0},"WP_Widget_Media::__construct==>_x":{"ct":12,"wt":70,"cpu":70,"mu":112,"pmu":0},"WP_Widget_Text::_register_one==>WP_Widget::_register_one":{"ct":1,"wt":29,"cpu":29,"mu":4248,"pmu":0},"WP_Widget_Archives::widget==>apply_filters":{"ct":2,"wt":50,"cpu":51,"mu":152,"pmu":0},"wp_parse_args==>wp_parse_str":{"ct":3,"wt":25,"cpu":27,"mu":784,"pmu":0},"WP_Widget_Media_Video::__construct==>_n_noop":{"ct":1,"wt":3,"cpu":4,"mu":488,"pmu":0},"wp_admin_bar_appearance_menu==>current_theme_supports":{"ct":4,"wt":8,"cpu":7,"mu":112,"pmu":0},"get_the_date==>apply_filters":{"ct":2,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_sidebar_toggle":{"ct":1,"wt":3,"cpu":4,"mu":224,"pmu":0},"get_userdata==>get_user_by":{"ct":4,"wt":248,"cpu":248,"mu":14832,"pmu":20696},"WP_Dependencies::all_deps==>WP_Scripts::all_deps@1":{"ct":4,"wt":128,"cpu":128,"mu":1120,"pmu":600},"get_language_attributes==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_load_embeds":{"ct":1,"wt":24,"cpu":24,"mu":3432,"pmu":3432},"add_theme_support==>array_slice":{"ct":6,"wt":8,"cpu":8,"mu":2368,"pmu":0},"is_blog_installed==>wpdb::suppress_errors":{"ct":2,"wt":2,"cpu":5,"mu":112,"pmu":112},"get_metadata==>apply_filters":{"ct":6,"wt":4,"cpu":5,"mu":-176,"pmu":0},"get_metadata==>apply_filters@1":{"ct":5,"wt":5,"cpu":5,"mu":-128,"pmu":0},"get_metadata==>apply_filters@2":{"ct":7,"wt":6,"cpu":5,"mu":-224,"pmu":0},"wp_enqueue_scripts==>do_action@1":{"ct":1,"wt":1286,"cpu":1286,"mu":12816,"pmu":42816},"WP_Query::get_posts==>update_post_caches":{"ct":2,"wt":123,"cpu":126,"mu":112,"pmu":0},"wp_default_scripts==>get_bloginfo":{"ct":1,"wt":5,"cpu":6,"mu":248,"pmu":0},"wp_get_document_title==>capital_P_dangit":{"ct":1,"wt":13,"cpu":13,"mu":848,"pmu":512},"shortcode_unautop==>array_map":{"ct":1,"wt":9,"cpu":9,"mu":728,"pmu":0},"wp_oembed_add_discovery_links==>is_singular":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_background_image==>get_theme_mod":{"ct":1,"wt":48,"cpu":47,"mu":112,"pmu":560},"array_map==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_avatar_data==>add_query_arg":{"ct":4,"wt":112,"cpu":113,"mu":-1712,"pmu":0},"WP_User_Meta_Session_Tokens::get_session==>WP_User_Meta_Session_Tokens::get_sessions":{"ct":1,"wt":37,"cpu":37,"mu":1920,"pmu":9960},"WP_Dependencies::all_deps@1==>array_diff":{"ct":1,"wt":13,"cpu":14,"mu":168,"pmu":600},"wp_json_encode==>version_compare":{"ct":60,"wt":108,"cpu":109,"mu":112,"pmu":880},"WP_Query::setup_postdata==>get_queried_object_id":{"ct":1,"wt":8,"cpu":8,"mu":448,"pmu":0},"wpdb::get_row==>wpdb::check_safe_collation":{"ct":7,"wt":233,"cpu":248,"mu":112,"pmu":0},"get_site_option==>get_network_option":{"ct":8,"wt":6751,"cpu":3942,"mu":30504,"pmu":34288},"redirect_canonical==>is_page":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"body_class==>join":{"ct":1,"wt":1,"cpu":1,"mu":240,"pmu":0},"get_header_video_url==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::all_deps@1==>WP_Dependencies::set_group":{"ct":2,"wt":6,"cpu":8,"mu":112,"pmu":0},"array_walk==>wpdb::escape_by_ref":{"ct":11,"wt":579,"cpu":586,"mu":6056,"pmu":5976},"wp_enqueue_script==>WP_Dependencies::add":{"ct":4,"wt":14,"cpu":13,"mu":752,"pmu":0},"WP::parse_request==>str_replace":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::__construct==>WP_Widget::__construct":{"ct":1,"wt":13,"cpu":14,"mu":912,"pmu":1200},"get_current_user_id==>function_exists":{"ct":8,"wt":11,"cpu":9,"mu":112,"pmu":0},"wp_initial_constants==>strpos":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":64},"get_edit_profile_url==>is_network_admin":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"get_comment==>apply_filters":{"ct":7,"wt":3,"cpu":5,"mu":112,"pmu":0},"WP::main==>WP::init":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"wpdb::set_sql_mode==>array_change_key_case":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":488},"rest_api_init==>rest_api_register_rewrites":{"ct":1,"wt":40,"cpu":41,"mu":1456,"pmu":0},"is_blog_installed==>wp_installing":{"ct":1,"wt":2,"cpu":2,"mu":512,"pmu":512},"redirect_canonical==>array_map":{"ct":1,"wt":23,"cpu":25,"mu":2344,"pmu":0},"WP_User::has_cap==>apply_filters":{"ct":3,"wt":47,"cpu":50,"mu":8072,"pmu":3744},"WP_User::has_cap==>apply_filters@1":{"ct":2,"wt":34,"cpu":35,"mu":6208,"pmu":0},"WP_User::has_cap==>apply_filters@2":{"ct":17,"wt":371,"cpu":375,"mu":44696,"pmu":0},"WP_List_Util::filter==>array_key_exists":{"ct":66,"wt":37,"cpu":36,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>convert_chars":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"_wp_specialchars==>wp_kses_normalize_entities":{"ct":7,"wt":113,"cpu":114,"mu":1336,"pmu":0},"wp_kses_bad_protocol_once2==>strtolower":{"ct":179,"wt":102,"cpu":102,"mu":112,"pmu":0},"get_post_class==>post_type_supports":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"set_url_scheme==>ltrim":{"ct":4,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP::parse_request==>trim":{"ct":7,"wt":2,"cpu":3,"mu":176,"pmu":0},"WP_Widget_Media_Image::__construct==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"wp_load_alloptions==>apply_filters":{"ct":153,"wt":96,"cpu":93,"mu":112,"pmu":0},"wp_load_alloptions==>apply_filters@1":{"ct":109,"wt":72,"cpu":64,"mu":112,"pmu":0},"get_the_content==>preg_match":{"ct":1,"wt":2,"cpu":1,"mu":168,"pmu":0},"wp_load_alloptions==>apply_filters@2":{"ct":93,"wt":67,"cpu":78,"mu":112,"pmu":0},"wp_load_alloptions==>apply_filters@3":{"ct":11,"wt":8,"cpu":7,"mu":112,"pmu":0},"wp_load_alloptions==>apply_filters@4":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_validate_auth_cookie==>get_user_by":{"ct":1,"wt":984,"cpu":605,"mu":35176,"pmu":46184},"WP_Admin_Bar::_render_group==>WP_Admin_Bar::_render_item":{"ct":8,"wt":1509,"cpu":1510,"mu":1456,"pmu":0},"WP_Admin_Bar::_render_item==>WP_Admin_Bar::_render_group@1":{"ct":6,"wt":1060,"cpu":1062,"mu":896,"pmu":0},"get_footer==>locate_template":{"ct":1,"wt":13660,"cpu":11816,"mu":108048,"pmu":77968},"WP_Hook::apply_filters@3==>array_keys":{"ct":12,"wt":5,"cpu":7,"mu":4624,"pmu":376},"WP_Taxonomy::add_rewrite_rules==>add_permastruct":{"ct":3,"wt":32,"cpu":32,"mu":2176,"pmu":0},"get_header_image==>get_theme_support":{"ct":3,"wt":11,"cpu":12,"mu":112,"pmu":0},"add_theme_support==>func_get_args":{"ct":6,"wt":4,"cpu":5,"mu":2368,"pmu":0},"wpdb::get_results==>get_object_vars":{"ct":19,"wt":11,"cpu":8,"mu":112,"pmu":56},"wp_kses_bad_protocol==>wp_kses_no_null":{"ct":83,"wt":335,"cpu":349,"mu":224,"pmu":0},"wp_default_scripts==>_x":{"ct":10,"wt":54,"cpu":54,"mu":224,"pmu":0},"get_template_part==>locate_template":{"ct":1,"wt":2747,"cpu":2735,"mu":35232,"pmu":12472},"get_template_part==>locate_template@1":{"ct":3,"wt":3014,"cpu":3015,"mu":23160,"pmu":22984},"wp_not_installed==>is_multisite":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Term_Query::parse_order":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":192},"update_user_caches==>wp_cache_add":{"ct":4,"wt":25,"cpu":26,"mu":1656,"pmu":0},"walk_category_tree==>Walker::walk":{"ct":1,"wt":312,"cpu":312,"mu":4576,"pmu":0},"main()==>wp_plugin_directory_constants":{"ct":1,"wt":80,"cpu":80,"mu":3320,"pmu":3888},"WP_User::get==>WP_User::__get":{"ct":1,"wt":15,"cpu":15,"mu":112,"pmu":0},"esc_url==>_deep_replace":{"ct":86,"wt":231,"cpu":244,"mu":224,"pmu":0},"WP::handle_404==>is_admin":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::render==>WP_Admin_Bar::_render":{"ct":1,"wt":1908,"cpu":1908,"mu":3136,"pmu":0},"esc_attr==>apply_filters":{"ct":36,"wt":15,"cpu":24,"mu":112,"pmu":0},"esc_attr==>apply_filters@1":{"ct":60,"wt":46,"cpu":39,"mu":112,"pmu":0},"esc_attr==>apply_filters@2":{"ct":6,"wt":4,"cpu":8,"mu":112,"pmu":0},"update_meta_cache==>wp_cache_get":{"ct":8,"wt":26,"cpu":26,"mu":112,"pmu":0},"esc_attr==>apply_filters@3":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::get_posts==>_prime_post_caches":{"ct":2,"wt":1585,"cpu":1020,"mu":23976,"pmu":27840},"the_content==>apply_filters":{"ct":1,"wt":225,"cpu":226,"mu":5784,"pmu":0},"unload_textdomain==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_theme_root==>in_array":{"ct":15,"wt":11,"cpu":8,"mu":112,"pmu":0},"esc_attr_e==>esc_attr":{"ct":2,"wt":21,"cpu":21,"mu":112,"pmu":0},"wp_metadata_lazyloader==>WP_Metadata_Lazyloader::__construct":{"ct":1,"wt":2,"cpu":2,"mu":1992,"pmu":0},"WP_Hook::apply_filters==>wp_custom_css_cb":{"ct":1,"wt":253,"cpu":253,"mu":2208,"pmu":4104},"WP::parse_request==>preg_quote":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_nonce_url==>add_query_arg":{"ct":3,"wt":120,"cpu":122,"mu":616,"pmu":0},"wp_allowed_protocols==>array_unique":{"ct":10,"wt":63,"cpu":63,"mu":13472,"pmu":3136},"WP_Comment_Query::get_comment_ids==>array_unique":{"ct":2,"wt":2,"cpu":1,"mu":488,"pmu":0},"wpdb::get_col==>count":{"ct":3,"wt":5,"cpu":2,"mu":112,"pmu":0},"wpdb::__construct==>version_compare":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":112},"register_taxonomy==>WP_Taxonomy::__construct":{"ct":10,"wt":3078,"cpu":3084,"mu":34744,"pmu":54656},"wp_parse_auth_cookie==>count":{"ct":6,"wt":0,"cpu":3,"mu":112,"pmu":0},"WP_Meta_Query::get_sql_for_query==>array_filter":{"ct":4,"wt":2,"cpu":4,"mu":336,"pmu":224},"wp_hash==>hash_hmac":{"ct":6,"wt":21,"cpu":22,"mu":496,"pmu":0},"is_admin_bar_showing==>_get_admin_bar_pref":{"ct":1,"wt":134,"cpu":135,"mu":1680,"pmu":16680},"get_page_of_comment==>get_comment":{"ct":1,"wt":11,"cpu":11,"mu":496,"pmu":0},"print_late_styles==>WP_Styles::reset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template@2==>the_custom_logo":{"ct":1,"wt":55,"cpu":56,"mu":672,"pmu":10184},"WP_User::get_caps_data==>get_user_meta":{"ct":10,"wt":575,"cpu":431,"mu":27096,"pmu":90088},"main()==>file_exists":{"ct":2,"wt":13,"cpu":17,"mu":112,"pmu":0},"wp_get_archives==>apply_filters":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"main()":{"ct":1,"wt":83813,"cpu":75500,"mu":2739328,"pmu":2741536},"WP_Query::get_posts==>get_current_user_id":{"ct":2,"wt":22,"cpu":22,"mu":112,"pmu":0},"wp_list_categories==>get_categories":{"ct":1,"wt":981,"cpu":612,"mu":4896,"pmu":0},"WP_Comment_Query::get_comments==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":2728,"pmu":0},"WP_Term_Query::parse_orderby==>in_array":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":112},"WP_Hook::apply_filters==>WP_Locale_Switcher::filter_locale":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"mbstring_binary_safe_encoding==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"wpautop==>preg_split":{"ct":1,"wt":0,"cpu":1,"mu":600,"pmu":0},"wp_admin_bar_search_menu==>home_url":{"ct":1,"wt":66,"cpu":66,"mu":384,"pmu":0},"wp_list_categories==>wp_parse_args":{"ct":1,"wt":3,"cpu":2,"mu":1448,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Search::__construct":{"ct":1,"wt":42,"cpu":43,"mu":1240,"pmu":1432},"wpdb::set_charset==>mysqli_query":{"ct":1,"wt":79,"cpu":23,"mu":112,"pmu":0},"update_object_term_cache==>wp_cache_add":{"ct":3,"wt":15,"cpu":15,"mu":1240,"pmu":0},"WP_Roles::init_roles==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"wp_count_comments==>get_comment_count":{"ct":1,"wt":596,"cpu":348,"mu":488,"pmu":0},"get_parent_theme_file_uri==>get_template_directory_uri":{"ct":1,"wt":122,"cpu":121,"mu":2432,"pmu":0},"is_month==>WP_Query::is_month":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media_Audio::__construct==>__":{"ct":6,"wt":31,"cpu":34,"mu":112,"pmu":0},"register_post_status==>sanitize_key":{"ct":16,"wt":70,"cpu":66,"mu":112,"pmu":0},"get_search_form==>locate_template@1":{"ct":1,"wt":14,"cpu":14,"mu":208,"pmu":0},"register_sidebar==>sprintf":{"ct":3,"wt":12,"cpu":14,"mu":1072,"pmu":0},"add_action==>add_filter":{"ct":251,"wt":1304,"cpu":1344,"mu":229272,"pmu":185688},"WP_Hook::apply_filters@1==>wp_default_styles":{"ct":1,"wt":426,"cpu":427,"mu":26144,"pmu":5536},"wp_get_update_data==>apply_filters@2":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"update_termmeta_cache==>update_meta_cache":{"ct":1,"wt":298,"cpu":151,"mu":752,"pmu":0},"WP::parse_request==>preg_replace":{"ct":3,"wt":4,"cpu":5,"mu":208,"pmu":0},"register_taxonomy==>wp_parse_args":{"ct":10,"wt":9,"cpu":9,"mu":112,"pmu":112},"create_initial_taxonomies==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render_group@1==>esc_attr":{"ct":12,"wt":83,"cpu":83,"mu":112,"pmu":0},"get_avatar==>wp_parse_args":{"ct":2,"wt":4,"cpu":5,"mu":1504,"pmu":0},"WP_Object_Cache::add==>WP_Object_Cache::set":{"ct":22,"wt":34,"cpu":38,"mu":5536,"pmu":792},"wpdb::__set==>in_array":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_maybe_load_embeds==>wp_embed_register_handler":{"ct":3,"wt":7,"cpu":7,"mu":2504,"pmu":2400},"wp_load_alloptions==>wp_installing":{"ct":367,"wt":208,"cpu":243,"mu":112,"pmu":112},"load_template@1==>is_active_sidebar":{"ct":2,"wt":188,"cpu":188,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>array_map":{"ct":2,"wt":5,"cpu":6,"mu":976,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_add_secondary_groups":{"ct":1,"wt":20,"cpu":20,"mu":1056,"pmu":0},"WP_User::__construct==>WP_User::init":{"ct":1,"wt":42,"cpu":43,"mu":3672,"pmu":0},"wp_is_mobile==>strpos":{"ct":7,"wt":6,"cpu":1,"mu":112,"pmu":0},"WP_Post_Type::__construct==>WP_Post_Type::set_props":{"ct":16,"wt":6727,"cpu":6731,"mu":43008,"pmu":47048},"get_term_link==>implode":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>current":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_validate_auth_cookie==>substr":{"ct":1,"wt":0,"cpu":1,"mu":144,"pmu":0},"feed_links==>sprintf":{"ct":2,"wt":5,"cpu":5,"mu":752,"pmu":0},"WP_Widget::_register_one==>WP_Widget::_get_display_callback":{"ct":17,"wt":18,"cpu":24,"mu":6504,"pmu":0},"get_ancestors==>get_term":{"ct":1,"wt":57,"cpu":57,"mu":336,"pmu":0},"wp_register_sidebar_widget==>in_array":{"ct":17,"wt":22,"cpu":21,"mu":112,"pmu":0},"feed_links_extra==>is_tax":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_comments_menu":{"ct":1,"wt":908,"cpu":659,"mu":3536,"pmu":0},"WP_Hook::apply_filters@3==>count":{"ct":12,"wt":6,"cpu":6,"mu":112,"pmu":0},"sanitize_title_with_dashes==>seems_utf8":{"ct":13,"wt":194,"cpu":194,"mu":1208,"pmu":1208},"wpdb::placeholder_escape==>uniqid":{"ct":1,"wt":12,"cpu":13,"mu":368,"pmu":368},"self_admin_url==>is_user_admin":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Dependencies::all_deps@1==>in_array":{"ct":12,"wt":16,"cpu":10,"mu":112,"pmu":0},"WP::query_posts==>WP_Query::query":{"ct":1,"wt":2976,"cpu":2136,"mu":118752,"pmu":119712},"WP_Widget::display_callback==>WP_Widget_Recent_Posts::widget":{"ct":1,"wt":4731,"cpu":3072,"mu":1728,"pmu":14248},"get_locale==>get_option":{"ct":1,"wt":409,"cpu":265,"mu":-58816,"pmu":0},"wpdb::flush==>mysqli_more_results":{"ct":21,"wt":28,"cpu":32,"mu":112,"pmu":0},"feed_links==>get_default_feed":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_template_directory==>get_template":{"ct":8,"wt":194,"cpu":194,"mu":672,"pmu":0},"script_concat_settings==>get_site_option":{"ct":2,"wt":2696,"cpu":1471,"mu":1360,"pmu":0},"capital_P_dangit==>str_replace":{"ct":7,"wt":7,"cpu":7,"mu":112,"pmu":112},"WP_Admin_Bar::_render==>_e":{"ct":2,"wt":53,"cpu":54,"mu":112,"pmu":0},"print_head_scripts==>did_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_just_in_time_script_localization":{"ct":1,"wt":268,"cpu":269,"mu":2048,"pmu":0},"edit_post_link==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>WP_Query::__construct":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_edit_post_link==>sprintf":{"ct":1,"wt":0,"cpu":1,"mu":432,"pmu":0},"get_comment_count==>wpdb::get_results":{"ct":1,"wt":575,"cpu":327,"mu":248,"pmu":0},"load_template==>post_class":{"ct":1,"wt":906,"cpu":897,"mu":3696,"pmu":10720},"twentyseventeen_time_link==>get_the_time":{"ct":1,"wt":16,"cpu":16,"mu":784,"pmu":0},"date_i18n==>apply_filters":{"ct":4,"wt":137,"cpu":138,"mu":1312,"pmu":0},"wp_initial_constants==>define":{"ct":20,"wt":15,"cpu":15,"mu":808,"pmu":520},"get_the_time==>get_post_time":{"ct":1,"wt":11,"cpu":10,"mu":448,"pmu":0},"wpdb::set_sql_mode==>apply_filters":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_set_lang_dir==>define":{"ct":2,"wt":2,"cpu":1,"mu":240,"pmu":192},"WP_Admin_Bar::_render_group@1==>trim":{"ct":6,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Rewrite::get_date_permastruct==>preg_match_all":{"ct":1,"wt":3,"cpu":3,"mu":1008,"pmu":0},"esc_html==>wp_check_invalid_utf8":{"ct":25,"wt":66,"cpu":68,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>current_user_can":{"ct":1,"wt":125,"cpu":128,"mu":112,"pmu":0},"get_transient==>wp_load_alloptions":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Query::get_posts==>apply_filters":{"ct":4,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_cron==>strpos":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_the_content==>count":{"ct":2,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Dependencies::do_items==>WP_Styles::do_item":{"ct":5,"wt":1700,"cpu":1652,"mu":2328,"pmu":0},"add_query_arg==>count":{"ct":25,"wt":13,"cpu":14,"mu":112,"pmu":0},"WP_Scripts::localize==>html_entity_decode":{"ct":193,"wt":101,"cpu":119,"mu":13320,"pmu":4136},"get_post_class==>has_post_thumbnail":{"ct":1,"wt":157,"cpu":145,"mu":560,"pmu":0},"is_random_header_image==>get_theme_mod":{"ct":4,"wt":757,"cpu":757,"mu":1392,"pmu":1632},"wp_create_nonce==>wp_nonce_tick":{"ct":5,"wt":27,"cpu":30,"mu":896,"pmu":0},"map_meta_cap==>is_multisite":{"ct":6,"wt":6,"cpu":6,"mu":112,"pmu":0},"wpdb::has_cap==>mysqli_get_client_info":{"ct":2,"wt":2,"cpu":2,"mu":336,"pmu":0},"WP_Locale::init==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_generator==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":64,"pmu":0},"WP_Widget_Recent_Comments::__construct==>is_active_widget":{"ct":1,"wt":191,"cpu":191,"mu":2688,"pmu":34096},"Walker_Category::start_el==>esc_url":{"ct":1,"wt":54,"cpu":55,"mu":112,"pmu":0},"wp_redirect_admin_locations==>is_404":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_body_class==>is_singular":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::placeholder_escape==>add_filter":{"ct":51,"wt":798,"cpu":795,"mu":10560,"pmu":8568},"get_term==>WP_Term::filter":{"ct":6,"wt":111,"cpu":112,"mu":224,"pmu":224},"wpdb::parse_db_host==>substr_count":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":112},"wp_get_document_title==>esc_html":{"ct":1,"wt":40,"cpu":40,"mu":1568,"pmu":0},"get_permalink==>get_post":{"ct":4,"wt":178,"cpu":176,"mu":1008,"pmu":0},"translate_with_gettext_context==>apply_filters":{"ct":197,"wt":162,"cpu":171,"mu":112,"pmu":0},"translate_with_gettext_context==>apply_filters@1":{"ct":216,"wt":126,"cpu":149,"mu":112,"pmu":0},"translate_with_gettext_context==>apply_filters@2":{"ct":6,"wt":5,"cpu":10,"mu":112,"pmu":0},"translate_with_gettext_context==>apply_filters@3":{"ct":10,"wt":6,"cpu":7,"mu":112,"pmu":0},"esc_attr==>_wp_specialchars":{"ct":104,"wt":327,"cpu":343,"mu":816,"pmu":0},"get_stylesheet_directory==>get_stylesheet":{"ct":7,"wt":153,"cpu":153,"mu":336,"pmu":0},"wpdb::placeholder_escape==>has_filter":{"ct":51,"wt":617,"cpu":636,"mu":-18360,"pmu":2048},"create_initial_post_types==>register_post_status":{"ct":16,"wt":158,"cpu":165,"mu":832,"pmu":0},"update_term_cache==>wp_cache_add":{"ct":2,"wt":20,"cpu":20,"mu":152,"pmu":0},"WP_Query::set_found_posts==>ceil":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"sanitize_key==>apply_filters":{"ct":25,"wt":28,"cpu":32,"mu":112,"pmu":0},"is_paged==>WP_Query::is_paged":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"sanitize_key==>apply_filters@1":{"ct":17,"wt":10,"cpu":12,"mu":112,"pmu":0},"main()==>wp_unregister_GLOBALS":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":224},"main()==>have_posts":{"ct":3,"wt":13,"cpu":13,"mu":448,"pmu":0},"wp_get_document_title==>apply_filters@1":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>_config_wp_home":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_style_is==>WP_Dependencies::query":{"ct":4,"wt":11,"cpu":11,"mu":112,"pmu":0},"get_bloginfo==>apply_filters":{"ct":3,"wt":303,"cpu":306,"mu":12208,"pmu":0},"WP::parse_request==>is_admin":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::db_connect==>wpdb::parse_db_host":{"ct":1,"wt":14,"cpu":15,"mu":1640,"pmu":2040},"twentyseventeen_time_link==>get_permalink":{"ct":1,"wt":138,"cpu":138,"mu":12336,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_body_classes":{"ct":1,"wt":1405,"cpu":1404,"mu":5168,"pmu":6800},"get_bloginfo==>apply_filters@1":{"ct":2,"wt":92,"cpu":92,"mu":768,"pmu":0},"WP_Hook::apply_filters==>wp_print_styles":{"ct":1,"wt":2014,"cpu":1963,"mu":6848,"pmu":0},"_wp_footer_scripts==>print_late_styles":{"ct":1,"wt":58,"cpu":59,"mu":1120,"pmu":0},"get_option==>wp_load_alloptions":{"ct":363,"wt":2359,"cpu":2384,"mu":720,"pmu":112},"WP_Widget_Factory::register==>WP_Widget_Calendar::__construct":{"ct":1,"wt":19,"cpu":19,"mu":1128,"pmu":0},"WP_Hook::apply_filters==>array_slice":{"ct":103,"wt":62,"cpu":58,"mu":38840,"pmu":2728},"status_header==>wp_get_server_protocol":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wpdb::query==>mysqli_error":{"ct":22,"wt":22,"cpu":24,"mu":816,"pmu":144},"wp_list_categories==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::query==>apply_filters":{"ct":14,"wt":770,"cpu":772,"mu":2944,"pmu":10432},"main()==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::query==>apply_filters@1":{"ct":4,"wt":254,"cpu":262,"mu":624,"pmu":0},"wpdb::query==>apply_filters@2":{"ct":4,"wt":374,"cpu":382,"mu":224,"pmu":0},"WP_Widget_Media_Image::__construct==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP::register_globals==>WP_Query::is_page":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Text::_register_one==>add_action":{"ct":2,"wt":12,"cpu":12,"mu":1024,"pmu":0},"feed_links==>feed_content_type":{"ct":2,"wt":13,"cpu":13,"mu":448,"pmu":0},"wp_get_object_terms==>get_terms":{"ct":1,"wt":784,"cpu":488,"mu":15976,"pmu":20704},"redirect_canonical==>basename":{"ct":1,"wt":2,"cpu":3,"mu":144,"pmu":0},"load_template==>the_ID":{"ct":1,"wt":8,"cpu":9,"mu":336,"pmu":0},"wp_filter_object_list==>WP_List_Util::__construct":{"ct":17,"wt":16,"cpu":16,"mu":112,"pmu":0},"sanitize_title_with_dashes==>str_replace":{"ct":71,"wt":59,"cpu":59,"mu":112,"pmu":112},"is_admin_bar_showing==>is_admin":{"ct":3,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP::send_headers==>is_user_logged_in":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_generator==>the_generator":{"ct":1,"wt":13,"cpu":14,"mu":560,"pmu":0},"wp_admin_bar_my_account_menu==>get_avatar":{"ct":1,"wt":659,"cpu":660,"mu":4096,"pmu":16608},"WP_Query::parse_query==>absint":{"ct":14,"wt":27,"cpu":26,"mu":112,"pmu":0},"wpdb::prepare==>str_replace":{"ct":22,"wt":23,"cpu":27,"mu":112,"pmu":112},"wp_set_internal_encoding==>mb_internal_encoding":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"sanitize_post==>sanitize_post_field":{"ct":368,"wt":887,"cpu":891,"mu":224,"pmu":0},"main()==>WP_Embed::__construct":{"ct":1,"wt":67,"cpu":67,"mu":7952,"pmu":7456},"get_avatar==>apply_filters@2":{"ct":4,"wt":2,"cpu":5,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_theme_support==>array_intersect":{"ct":1,"wt":4,"cpu":4,"mu":488,"pmu":0},"main()==>extension_loaded":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_sanitize_colorscheme==>in_array":{"ct":1,"wt":0,"cpu":4,"mu":112,"pmu":0},"wpdb::_do_query==>mysqli_query":{"ct":22,"wt":9575,"cpu":1852,"mu":376416,"pmu":22496},"sanitize_title_with_dashes==>mb_strtolower":{"ct":13,"wt":127,"cpu":127,"mu":616,"pmu":1352},"WP_Widget_Media_Audio::__construct==>array_merge":{"ct":1,"wt":0,"cpu":1,"mu":808,"pmu":0},"_get_path_to_translation==>_get_path_to_translation_from_lang_dir":{"ct":1,"wt":30,"cpu":31,"mu":1040,"pmu":0},"wp_admin_bar_my_account_item==>get_avatar":{"ct":1,"wt":565,"cpu":565,"mu":624,"pmu":6600},"WP_Query::is_front_page==>get_option":{"ct":14,"wt":273,"cpu":276,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>apply_filters_ref_array":{"ct":2,"wt":2,"cpu":3,"mu":-640,"pmu":0},"get_avatar_data==>wp_parse_args":{"ct":4,"wt":19,"cpu":20,"mu":112,"pmu":0},"sanitize_title_with_dashes==>trim":{"ct":13,"wt":10,"cpu":9,"mu":112,"pmu":112},"WP_Query::get_posts==>WP_Tax_Query::get_sql":{"ct":2,"wt":27,"cpu":26,"mu":448,"pmu":0},"twentyseventeen_scripts==>has_nav_menu":{"ct":1,"wt":65,"cpu":65,"mu":560,"pmu":6176},"WP_Widget::_register_one==>wp_register_sidebar_widget":{"ct":17,"wt":686,"cpu":694,"mu":15904,"pmu":0},"WP_Hook::resort_active_iterations==>current":{"ct":47,"wt":38,"cpu":47,"mu":112,"pmu":112},"wpdb::tables==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"do_action@1==>array_pop":{"ct":6,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>__":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"wp_script_is==>wp_scripts":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"register_post_type==>WP_Post_Type::register_taxonomies":{"ct":16,"wt":14,"cpu":19,"mu":112,"pmu":0},"wp==>WP::main":{"ct":1,"wt":3396,"cpu":2555,"mu":152848,"pmu":122928},"_get_path_to_translation_from_lang_dir==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_editor_style==>add_theme_support":{"ct":1,"wt":3,"cpu":3,"mu":432,"pmu":0},"the_ID==>get_the_ID":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"self_admin_url==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_fonts_url==>urlencode":{"ct":4,"wt":3,"cpu":4,"mu":400,"pmu":272},"wp_get_archives==>is_post_type_viewable":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_default_scripts==>get_rest_url":{"ct":1,"wt":95,"cpu":96,"mu":2184,"pmu":0},"get_network_option==>wp_cache_get":{"ct":8,"wt":70,"cpu":83,"mu":112,"pmu":80},"wp_plugin_directory_constants==>define":{"ct":7,"wt":3,"cpu":3,"mu":664,"pmu":0},"wp_resource_hints==>is_scalar":{"ct":9,"wt":3,"cpu":8,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>wp_enqueue_style":{"ct":1,"wt":453,"cpu":452,"mu":28400,"pmu":6336},"wp_heartbeat_settings==>is_user_logged_in":{"ct":1,"wt":6,"cpu":5,"mu":336,"pmu":0},"WP_Dependencies::query==>in_array":{"ct":5,"wt":4,"cpu":4,"mu":112,"pmu":0},"main()==>wp_get_mu_plugins":{"ct":1,"wt":5,"cpu":5,"mu":224,"pmu":0},"main()==>WP_Rewrite::__construct":{"ct":1,"wt":47,"cpu":47,"mu":928,"pmu":928},"noindex==>wp_no_robots":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"translate_with_gettext_context==>NOOP_Translations::translate":{"ct":429,"wt":264,"cpu":273,"mu":112,"pmu":0},"sanitize_html_class==>preg_replace":{"ct":4,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Post_Type::set_props==>wp_parse_args":{"ct":16,"wt":28,"cpu":26,"mu":112,"pmu":0},"Requests::autoloader@1==>file_exists":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":112},"WP_Roles::init_roles==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>wp_metadata_lazyloader":{"ct":2,"wt":5,"cpu":5,"mu":2584,"pmu":0},"wp_fix_server_vars==>preg_match":{"ct":1,"wt":6,"cpu":5,"mu":112,"pmu":0},"wpdb::set_charset==>wpdb::has_cap":{"ct":2,"wt":16,"cpu":16,"mu":112,"pmu":48},"wp_kses_no_null==>preg_replace":{"ct":332,"wt":274,"cpu":289,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wlwmanifest_link":{"ct":1,"wt":78,"cpu":78,"mu":224,"pmu":0},"WP_Hook::apply_filters@1==>twentyseventeen_scripts":{"ct":1,"wt":1222,"cpu":1222,"mu":10520,"pmu":42008},"wp_debug_mode==>error_reporting":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":144},"wp_style_is==>_wp_scripts_maybe_doing_it_wrong":{"ct":4,"wt":7,"cpu":8,"mu":112,"pmu":0},"WP_Admin_Bar::add_node==>func_num_args":{"ct":30,"wt":14,"cpu":21,"mu":112,"pmu":0},"wp_schedule_update_checks==>wp_next_scheduled":{"ct":3,"wt":98,"cpu":101,"mu":448,"pmu":2912},"WP_Hook::apply_filters@1==>wp_admin_bar_updates_menu":{"ct":1,"wt":5056,"cpu":3464,"mu":9856,"pmu":32120},"load_template==>body_class":{"ct":1,"wt":1711,"cpu":1711,"mu":9080,"pmu":8688},"create_initial_post_types==>_x":{"ct":32,"wt":214,"cpu":222,"mu":112,"pmu":0},"is_blog_installed==>wp_cache_set":{"ct":1,"wt":9,"cpu":9,"mu":600,"pmu":0},"get_rest_url==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_validate_auth_cookie==>hash_hmac":{"ct":1,"wt":5,"cpu":4,"mu":208,"pmu":0},"get_rest_url==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::get_col==>wpdb::query":{"ct":3,"wt":3046,"cpu":863,"mu":736,"pmu":2288},"edit_post_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>wp_json_encode":{"ct":2,"wt":78,"cpu":37,"mu":-2232,"pmu":4560},"WP::build_query_string==>has_filter":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP::parse_request==>WP_Rewrite::wp_rewrite_rules":{"ct":1,"wt":45,"cpu":45,"mu":20016,"pmu":3216},"the_custom_logo==>get_custom_logo":{"ct":1,"wt":54,"cpu":54,"mu":560,"pmu":10184},"wp_count_comments==>wp_cache_set":{"ct":1,"wt":4,"cpu":5,"mu":1168,"pmu":0},"metadata_exists==>apply_filters@1":{"ct":2,"wt":1,"cpu":2,"mu":16,"pmu":0},"wp_add_inline_script==>wp_scripts":{"ct":2,"wt":3704,"cpu":3663,"mu":90520,"pmu":70064},"twentyseventeen_is_frontpage==>is_front_page":{"ct":1,"wt":22,"cpu":22,"mu":112,"pmu":0},"twentyseventeen_content_width==>get_theme_mod":{"ct":1,"wt":57,"cpu":57,"mu":448,"pmu":32520},"wpdb::set_sql_mode==>in_array":{"ct":7,"wt":6,"cpu":7,"mu":112,"pmu":0},"is_active_sidebar==>apply_filters":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"is_active_sidebar==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"feed_links_extra==>_x":{"ct":1,"wt":11,"cpu":12,"mu":112,"pmu":0},"WP_Object_Cache::add_global_groups==>array_fill_keys":{"ct":1,"wt":2,"cpu":2,"mu":808,"pmu":0},"get_object_term_cache==>get_term":{"ct":3,"wt":181,"cpu":180,"mu":1344,"pmu":0},"main()==>wp_installing":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::get_posts==>in_array":{"ct":9,"wt":9,"cpu":2,"mu":112,"pmu":0},"wp_print_styles==>wp_styles":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"esc_attr__==>esc_attr":{"ct":3,"wt":81,"cpu":82,"mu":1432,"pmu":328},"wp_validate_logged_in_cookie==>is_network_admin":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Locale_Switcher::filter_locale==>end":{"ct":9,"wt":4,"cpu":6,"mu":168,"pmu":0},"WP_Hook::apply_filters@1==>wp_prototype_before_jquery":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"rest_output_link_header==>headers_sent":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"date_i18n==>WP_Locale::get_month":{"ct":4,"wt":14,"cpu":14,"mu":-688,"pmu":0},"WP_Term::get_instance==>wp_cache_get":{"ct":4,"wt":14,"cpu":13,"mu":272,"pmu":0},"get_terms==>array_intersect_key":{"ct":2,"wt":4,"cpu":4,"mu":544,"pmu":488},"get_edit_profile_url==>apply_filters@2":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"redirect_canonical==>is_attachment":{"ct":1,"wt":2,"cpu":5,"mu":224,"pmu":0},"sanitize_term==>sanitize_term_field":{"ct":98,"wt":147,"cpu":153,"mu":224,"pmu":152},"WP_Dependencies::all_deps@1==>array_keys":{"ct":1,"wt":12,"cpu":13,"mu":12456,"pmu":0},"WP_Widget_Archives::__construct==>__":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":0},"get_theme_support==>array_slice":{"ct":16,"wt":7,"cpu":8,"mu":6128,"pmu":0},"wp_admin_bar_new_content_menu==>admin_url":{"ct":5,"wt":279,"cpu":280,"mu":448,"pmu":0},"WP_Dependencies::all_deps@1==>WP_Scripts::set_group":{"ct":2,"wt":17,"cpu":19,"mu":112,"pmu":0},"array_map==>get_post":{"ct":4,"wt":396,"cpu":398,"mu":2128,"pmu":0},"WP_Widget_Media::_register_one==>WP_Widget::is_preview":{"ct":4,"wt":8,"cpu":7,"mu":136,"pmu":0},"WP_Hook::apply_filters==>do_shortcode":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"twentyseventeen_is_frontpage==>is_home":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::query==>wp_parse_args":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":112},"_prime_post_caches==>update_post_caches":{"ct":1,"wt":1305,"cpu":835,"mu":19848,"pmu":25320},"get_permalink==>apply_filters":{"ct":8,"wt":4,"cpu":5,"mu":112,"pmu":0},"main()==>stripos":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":224},"wp_default_scripts==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"sanitize_title_with_dashes==>preg_replace":{"ct":78,"wt":83,"cpu":87,"mu":592,"pmu":112},"get_language_attributes==>get_bloginfo":{"ct":1,"wt":38,"cpu":38,"mu":704,"pmu":0},"wp_print_styles==>WP_Dependencies::do_items":{"ct":1,"wt":1955,"cpu":1904,"mu":5136,"pmu":0},"wpdb::prepare==>preg_replace":{"ct":33,"wt":94,"cpu":93,"mu":1488,"pmu":168},"WP_Term_Query::get_terms==>apply_filters":{"ct":8,"wt":5,"cpu":6,"mu":112,"pmu":112},"WP_Query::setup_postdata==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_rtl==>WP_Locale::is_rtl":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_the_date==>get_option":{"ct":1,"wt":20,"cpu":20,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Categories::__construct":{"ct":1,"wt":39,"cpu":39,"mu":1136,"pmu":1328},"get_language_attributes==>get_option":{"ct":2,"wt":41,"cpu":41,"mu":112,"pmu":0},"the_posts_pagination==>get_the_posts_pagination":{"ct":1,"wt":1,"cpu":1,"mu":88,"pmu":0},"get_option==>wp_cache_get":{"ct":372,"wt":1515,"cpu":1542,"mu":384,"pmu":224},"wpdb::check_safe_collation==>wpdb::check_ascii":{"ct":22,"wt":428,"cpu":432,"mu":336,"pmu":1064},"get_comment==>WP_Comment::get_instance":{"ct":2,"wt":20,"cpu":20,"mu":1216,"pmu":0},"is_year==>WP_Query::is_year":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_salt==>strtoupper":{"ct":4,"wt":4,"cpu":5,"mu":272,"pmu":0},"main()==>wp_set_internal_encoding":{"ct":1,"wt":68,"cpu":67,"mu":1648,"pmu":0},"get_feed_link==>apply_filters":{"ct":2,"wt":2,"cpu":0,"mu":112,"pmu":0},"get_transient==>wp_using_ext_object_cache":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_feed_link==>apply_filters@1":{"ct":2,"wt":6,"cpu":8,"mu":112,"pmu":0},"wp_kses_normalize_entities2==>str_pad":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"apply_filters@1==>array_pop":{"ct":63,"wt":33,"cpu":51,"mu":112,"pmu":0},"register_post_type==>WP_Post_Type::add_hooks":{"ct":16,"wt":204,"cpu":208,"mu":18832,"pmu":7512},"get_avatar_data==>apply_filters@2":{"ct":12,"wt":5,"cpu":9,"mu":112,"pmu":0},"current_theme_supports==>func_num_args":{"ct":16,"wt":9,"cpu":8,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Query::set_found_posts":{"ct":2,"wt":208,"cpu":170,"mu":608,"pmu":1768},"_custom_header_background_just_in_time==>get_theme_support":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wptexturize==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_maybe_load_widgets==>add_action":{"ct":1,"wt":8,"cpu":9,"mu":1368,"pmu":168},"wptexturize==>apply_filters@1":{"ct":33,"wt":24,"cpu":19,"mu":112,"pmu":0},"wptexturize==>apply_filters@2":{"ct":4,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>sprintf":{"ct":1,"wt":1,"cpu":2,"mu":432,"pmu":0},"twentyseventeen_custom_header_setup==>add_theme_support":{"ct":1,"wt":12,"cpu":12,"mu":808,"pmu":0},"get_archives_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>prepend_attachment":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"WP_Hook::remove_filter==>_wp_filter_build_unique_id":{"ct":10,"wt":4,"cpu":6,"mu":112,"pmu":0},"get_taxonomy_labels==>apply_filters":{"ct":5,"wt":9,"cpu":9,"mu":-168,"pmu":0},"get_taxonomy_labels==>apply_filters@1":{"ct":5,"wt":1,"cpu":6,"mu":-168,"pmu":0},"main()==>get_front_page_template":{"ct":1,"wt":35,"cpu":36,"mu":1648,"pmu":0},"wp_loginout==>wp_logout_url":{"ct":1,"wt":184,"cpu":185,"mu":1728,"pmu":0},"WP_Hook::apply_filters==>rel_canonical":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"wp_check_invalid_utf8==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_date==>mysql2date":{"ct":2,"wt":204,"cpu":204,"mu":3728,"pmu":0},"Requests::autoloader==>str_replace":{"ct":1,"wt":2,"cpu":2,"mu":152,"pmu":152},"WP_Widget_Recent_Posts::widget==>WP_Query::__construct":{"ct":1,"wt":3873,"cpu":2213,"mu":10120,"pmu":14248},"WP_Admin_Bar::_render==>esc_url":{"ct":1,"wt":51,"cpu":51,"mu":48,"pmu":0},"WP_Widget_RSS::__construct==>WP_Widget::__construct":{"ct":1,"wt":24,"cpu":24,"mu":904,"pmu":0},"wp_nonce_tick==>time":{"ct":5,"wt":3,"cpu":6,"mu":112,"pmu":0},"_n==>apply_filters@2":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"_n==>apply_filters@3":{"ct":6,"wt":4,"cpu":2,"mu":112,"pmu":0},"smilies_init==>preg_quote":{"ct":46,"wt":27,"cpu":21,"mu":1616,"pmu":0},"WP_Scripts::localize==>WP_Dependencies::add_data":{"ct":25,"wt":86,"cpu":84,"mu":9360,"pmu":0},"redirect_canonical==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_start_object_cache==>wp_cache_init":{"ct":1,"wt":15,"cpu":16,"mu":1016,"pmu":0},"apply_filters==>array_shift":{"ct":94,"wt":64,"cpu":67,"mu":112,"pmu":112},"wp_get_object_terms==>get_taxonomy":{"ct":3,"wt":4,"cpu":6,"mu":224,"pmu":224},"wp_validate_logged_in_cookie==>wp_validate_auth_cookie":{"ct":1,"wt":1149,"cpu":769,"mu":37896,"pmu":56144},"WP_Styles::do_item==>WP_Styles::_css_href":{"ct":5,"wt":1404,"cpu":1354,"mu":2264,"pmu":0},"WP_Scripts::do_item==>esc_url":{"ct":8,"wt":470,"cpu":470,"mu":976,"pmu":0},"WP_Widget::__construct==>strtolower":{"ct":17,"wt":13,"cpu":21,"mu":112,"pmu":0},"wp_get_object_terms==>taxonomy_exists":{"ct":3,"wt":1,"cpu":3,"mu":112,"pmu":112},"get_theme_support==>func_get_args":{"ct":16,"wt":8,"cpu":8,"mu":6128,"pmu":0},"WP_Widget_Media::_register_one==>add_filter":{"ct":4,"wt":55,"cpu":60,"mu":2816,"pmu":0},"WP_Post_Type::set_props==>apply_filters":{"ct":8,"wt":13,"cpu":14,"mu":112,"pmu":0},"WP_Post_Type::set_props==>apply_filters@1":{"ct":8,"wt":6,"cpu":4,"mu":112,"pmu":0},"get_search_form==>ob_start":{"ct":1,"wt":2,"cpu":3,"mu":16576,"pmu":0},"do_action@1==>WP_Hook::do_action@1":{"ct":6,"wt":9652,"cpu":9610,"mu":214888,"pmu":236656},"is_user_logged_in==>WP_User::exists":{"ct":11,"wt":8,"cpu":9,"mu":112,"pmu":0},"get_template==>apply_filters":{"ct":15,"wt":10,"cpu":4,"mu":112,"pmu":0},"get_template==>apply_filters@1":{"ct":9,"wt":8,"cpu":3,"mu":112,"pmu":0},"get_template==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>array_slice":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"load_template==>is_page":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Embed::__construct==>add_action":{"ct":2,"wt":16,"cpu":16,"mu":2784,"pmu":2784},"wp_admin_bar_site_menu==>wp_html_excerpt":{"ct":1,"wt":20,"cpu":20,"mu":488,"pmu":0},"get_locale==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::get_node==>WP_Admin_Bar::_get_node":{"ct":30,"wt":30,"cpu":30,"mu":112,"pmu":0},"wpdb::prepare==>preg_match_all":{"ct":11,"wt":80,"cpu":87,"mu":22200,"pmu":2120},"WP_User::for_site==>get_current_blog_id":{"ct":10,"wt":29,"cpu":32,"mu":112,"pmu":0},"wp_kses_bad_protocol_once2==>wp_kses_no_null":{"ct":83,"wt":246,"cpu":257,"mu":112,"pmu":0},"WP_Scripts::do_item==>add_query_arg":{"ct":8,"wt":264,"cpu":266,"mu":976,"pmu":0},"wp_kses_decode_entities==>preg_replace_callback":{"ct":166,"wt":184,"cpu":192,"mu":112,"pmu":0},"WP_Tax_Query::get_sql_for_query==>array_filter":{"ct":4,"wt":4,"cpu":6,"mu":336,"pmu":0},"WP_Roles::for_site==>WP_Roles::get_roles_data":{"ct":1,"wt":49,"cpu":49,"mu":14528,"pmu":47160},"wp_nonce_url==>esc_html":{"ct":3,"wt":68,"cpu":69,"mu":304,"pmu":0},"_get_path_to_translation_from_lang_dir==>glob":{"ct":2,"wt":5,"cpu":5,"mu":224,"pmu":0},"WP_Widget_Media::__construct==>_n_noop":{"ct":4,"wt":8,"cpu":8,"mu":1616,"pmu":0},"wp_allowed_protocols==>apply_filters@1":{"ct":8,"wt":8,"cpu":7,"mu":112,"pmu":0},"wp_allowed_protocols==>apply_filters@3":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"wp_templating_constants==>get_stylesheet_directory":{"ct":1,"wt":33,"cpu":33,"mu":752,"pmu":0},"get_post_class==>get_post_format":{"ct":1,"wt":168,"cpu":168,"mu":112,"pmu":0},"get_comment_author_link==>get_comment_author":{"ct":1,"wt":4,"cpu":5,"mu":336,"pmu":0},"wlwmanifest_link==>includes_url":{"ct":1,"wt":74,"cpu":75,"mu":192,"pmu":0},"wp_default_styles==>WP_Dependencies::add_data":{"ct":64,"wt":156,"cpu":158,"mu":12144,"pmu":5424},"wpdb::init_charset==>is_multisite":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Widget_Recent_Comments::recent_comments_style":{"ct":1,"wt":5,"cpu":5,"mu":336,"pmu":0},"get_option==>trim":{"ct":363,"wt":187,"cpu":229,"mu":112,"pmu":112},"WP_Widget::get_settings==>get_option":{"ct":23,"wt":1448,"cpu":1446,"mu":14960,"pmu":177768},"update_comment_cache==>update_meta_cache":{"ct":1,"wt":278,"cpu":133,"mu":136,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_load_widgets":{"ct":1,"wt":102,"cpu":103,"mu":113256,"pmu":84240},"WP_Widget_Media_Audio::__construct==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_pingback_header":{"ct":1,"wt":5,"cpu":6,"mu":224,"pmu":0},"wpdb::query==>mysqli_errno":{"ct":22,"wt":37,"cpu":46,"mu":112,"pmu":112},"have_posts==>WP_Query::have_posts":{"ct":3,"wt":8,"cpu":10,"mu":336,"pmu":0},"wp_default_scripts==>_n":{"ct":6,"wt":31,"cpu":32,"mu":448,"pmu":0},"date_i18n==>preg_match":{"ct":4,"wt":5,"cpu":4,"mu":112,"pmu":0},"WP_Widget::display_callback==>is_numeric":{"ct":6,"wt":4,"cpu":9,"mu":112,"pmu":112},"print_footer_scripts==>_print_scripts":{"ct":1,"wt":2,"cpu":8,"mu":112,"pmu":0},"is_sticky==>get_the_ID":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>is_user_logged_in":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_page_of_comment==>wp_parse_args":{"ct":1,"wt":3,"cpu":2,"mu":488,"pmu":0},"get_body_class==>is_search":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"validate_file==>preg_match_all":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"WP_Comment_Query::get_comments==>wp_array_slice_assoc":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"script_concat_settings==>ini_get":{"ct":6,"wt":14,"cpu":13,"mu":304,"pmu":0},"get_stylesheet_directory_uri==>apply_filters":{"ct":9,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_stylesheet_directory_uri==>apply_filters@1":{"ct":7,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_stylesheet_directory_uri==>apply_filters@2":{"ct":7,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_user_option==>get_current_user_id":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_dashboard_url==>apply_filters@2":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"create_initial_taxonomies==>did_action":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Scripts::localize==>wp_json_encode":{"ct":25,"wt":277,"cpu":287,"mu":33392,"pmu":13608},"is_sticky==>in_array":{"ct":2,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_get_archives==>wp_cache_set":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_custom_header==>get_template_directory_uri":{"ct":1,"wt":83,"cpu":84,"mu":192,"pmu":0},"wpdb::db_connect==>mysqli_init":{"ct":1,"wt":14,"cpu":15,"mu":576,"pmu":576},"get_post_time==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Dependencies::add==>_WP_Dependency::__construct":{"ct":198,"wt":305,"cpu":305,"mu":224,"pmu":10280},"_load_textdomain_just_in_time==>_get_path_to_translation":{"ct":32,"wt":66,"cpu":67,"mu":1928,"pmu":0},"main()==>get_header":{"ct":1,"wt":15621,"cpu":14343,"mu":103672,"pmu":115960},"WP_Widget_Search::widget==>apply_filters":{"ct":1,"wt":33,"cpu":33,"mu":864,"pmu":0},"get_the_content==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Session_Tokens::get_instance==>WP_Session_Tokens::__construct":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_query_arg==>strpos":{"ct":25,"wt":15,"cpu":16,"mu":112,"pmu":0},"wp_list_categories==>is_tax":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_header_image_tag==>get_custom_header":{"ct":1,"wt":641,"cpu":642,"mu":2064,"pmu":16},"WP_Rewrite::add_permastruct==>array_intersect_key":{"ct":3,"wt":1,"cpu":2,"mu":1240,"pmu":0},"get_the_modified_time==>get_post":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_User::for_site==>WP_User::get_role_caps":{"ct":10,"wt":152,"cpu":153,"mu":30840,"pmu":0},"print_footer_scripts==>WP_Scripts::reset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_customize_support_script==>home_url":{"ct":1,"wt":55,"cpu":55,"mu":160,"pmu":0},"wpdb::check_safe_collation==>preg_match":{"ct":22,"wt":51,"cpu":55,"mu":112,"pmu":112},"get_permalink==>in_array":{"ct":8,"wt":4,"cpu":2,"mu":112,"pmu":0},"get_header_image_tag==>absint":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"zeroise==>sprintf":{"ct":6,"wt":6,"cpu":6,"mu":2032,"pmu":0},"redirect_canonical==>is_front_page":{"ct":3,"wt":69,"cpu":69,"mu":448,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>wp_add_inline_script":{"ct":1,"wt":10,"cpu":10,"mu":-208,"pmu":0},"WP_Widget_Recent_Posts::widget==>WP_Query::have_posts":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>is_ssl":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"redirect_canonical==>is_day":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Widget_Factory::_register_widgets==>in_array":{"ct":17,"wt":17,"cpu":21,"mu":112,"pmu":0},"get_post_type_labels==>apply_filters":{"ct":8,"wt":12,"cpu":16,"mu":-328,"pmu":0},"rawurlencode_deep==>map_deep":{"ct":4,"wt":35,"cpu":34,"mu":2112,"pmu":0},"get_post_type_labels==>apply_filters@1":{"ct":8,"wt":7,"cpu":8,"mu":-328,"pmu":0},"WP_Embed::run_shortcode==>add_shortcode":{"ct":1,"wt":4,"cpu":5,"mu":488,"pmu":0},"create_initial_taxonomies==>get_option":{"ct":4,"wt":165,"cpu":166,"mu":1728,"pmu":0},"get_the_title==>is_admin":{"ct":5,"wt":5,"cpu":7,"mu":112,"pmu":0},"get_post_format==>get_the_terms":{"ct":2,"wt":190,"cpu":191,"mu":448,"pmu":0},"get_locale_stylesheet_uri==>get_stylesheet_directory":{"ct":1,"wt":36,"cpu":36,"mu":304,"pmu":0},"the_custom_header_markup==>is_customize_preview":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wpdb::query==>preg_match":{"ct":44,"wt":113,"cpu":126,"mu":112,"pmu":112},"main()==>preg_match":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":168},"WP_Styles::__construct==>do_action_ref_array":{"ct":1,"wt":440,"cpu":441,"mu":26720,"pmu":5560},"apply_filters@2==>func_get_args":{"ct":54,"wt":40,"cpu":47,"mu":20416,"pmu":0},"wp_register_sidebar_widget==>do_action@2":{"ct":17,"wt":54,"cpu":46,"mu":752,"pmu":0},"WP_Hook::apply_filters==>_canonical_charset":{"ct":3,"wt":7,"cpu":8,"mu":224,"pmu":0},"add_filter==>WP_Hook::add_filter":{"ct":590,"wt":2513,"cpu":2494,"mu":455384,"pmu":376232},"redirect_canonical==>is_home":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wpdb::check_safe_collation==>ltrim":{"ct":22,"wt":25,"cpu":32,"mu":240,"pmu":112},"number_format_i18n==>absint":{"ct":3,"wt":10,"cpu":8,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>next":{"ct":55,"wt":35,"cpu":34,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>get_current_user_id":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>__":{"ct":6,"wt":63,"cpu":64,"mu":112,"pmu":0},"wp_initial_constants==>wp_convert_hr_to_bytes":{"ct":2,"wt":20,"cpu":21,"mu":640,"pmu":672},"wp_check_invalid_utf8==>preg_match":{"ct":118,"wt":102,"cpu":106,"mu":112,"pmu":0},"wp_start_object_cache==>wp_using_ext_object_cache":{"ct":1,"wt":1,"cpu":1,"mu":136,"pmu":0},"print_footer_scripts==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_time_link==>__":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"do_action@1==>func_num_args":{"ct":6,"wt":8,"cpu":8,"mu":112,"pmu":0},"wp_widgets_init==>is_blog_installed":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Locale::__construct==>WP_Locale::init":{"ct":1,"wt":630,"cpu":630,"mu":4528,"pmu":0},"WP_Widget_Text::__construct==>WP_Widget::__construct":{"ct":1,"wt":14,"cpu":14,"mu":904,"pmu":1192},"wp_get_archives==>wpdb::get_results":{"ct":1,"wt":398,"cpu":135,"mu":1008,"pmu":0},"load_template==>get_the_title":{"ct":1,"wt":52,"cpu":52,"mu":152,"pmu":0},"wp_just_in_time_script_localization==>get_current_blog_id":{"ct":1,"wt":11,"cpu":11,"mu":112,"pmu":0},"wp_admin_bar_my_account_item==>get_current_user_id":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Widget::display_callback==>WP_Widget_Recent_Comments::widget":{"ct":1,"wt":2064,"cpu":1512,"mu":13504,"pmu":0},"rest_output_link_wp_head==>get_rest_url":{"ct":1,"wt":153,"cpu":153,"mu":168,"pmu":0},"WP_Styles::do_item==>esc_attr":{"ct":3,"wt":58,"cpu":67,"mu":112,"pmu":0},"wp_cache_get_last_changed==>wp_cache_get":{"ct":4,"wt":15,"cpu":16,"mu":112,"pmu":0},"WP_Query::get_posts==>array_map":{"ct":4,"wt":413,"cpu":412,"mu":3744,"pmu":0},"get_comments==>WP_Comment_Query::query":{"ct":1,"wt":1280,"cpu":728,"mu":14400,"pmu":0},"WP_Widget::_register==>WP_Widget_Custom_HTML::_register_one":{"ct":1,"wt":73,"cpu":74,"mu":9336,"pmu":0},"_get_random_header_data==>current_theme_supports":{"ct":4,"wt":19,"cpu":18,"mu":112,"pmu":0},"get_custom_header==>get_stylesheet_directory_uri":{"ct":1,"wt":70,"cpu":70,"mu":192,"pmu":0},"date_i18n==>get_option":{"ct":2,"wt":41,"cpu":41,"mu":112,"pmu":0},"get_user_option==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":48,"pmu":0},"main()==>the_post":{"ct":1,"wt":162,"cpu":163,"mu":7480,"pmu":96},"mysql2date==>date":{"ct":2,"wt":4,"cpu":5,"mu":624,"pmu":0},"WP_Post_Type::set_props==>in_array":{"ct":4,"wt":4,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_get_svg==>array_key_exists":{"ct":5,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_comment_author_link==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>register_theme_directory":{"ct":1,"wt":19,"cpu":19,"mu":824,"pmu":0},"wp_get_update_data==>count":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"array_filter==>WP_Roles::is_role":{"ct":10,"wt":7,"cpu":7,"mu":112,"pmu":0},"wp_validate_auth_cookie==>wp_doing_ajax":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wp_get_custom_css_post==>get_theme_mod":{"ct":1,"wt":54,"cpu":54,"mu":112,"pmu":4104},"create_initial_taxonomies==>_x":{"ct":4,"wt":38,"cpu":38,"mu":112,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::_get_node":{"ct":46,"wt":24,"cpu":24,"mu":112,"pmu":0},"wpdb::add_placeholder_escape==>str_replace":{"ct":29,"wt":17,"cpu":24,"mu":112,"pmu":112},"WP_Query::get_posts==>get_option":{"ct":6,"wt":168,"cpu":169,"mu":224,"pmu":43152},"wp_just_in_time_script_localization==>wp_localize_script":{"ct":3,"wt":203,"cpu":204,"mu":-256,"pmu":0},"WP_Comment_Query::get_comments==>md5":{"ct":1,"wt":3,"cpu":4,"mu":176,"pmu":0},"get_blogs_of_user==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_blogs_of_user==>apply_filters@2":{"ct":2,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_register==>__":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Embed::run_shortcode":{"ct":1,"wt":14,"cpu":14,"mu":560,"pmu":0},"get_the_generator==>get_bloginfo":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>_x":{"ct":2,"wt":16,"cpu":16,"mu":112,"pmu":0},"wpdb::_escape==>wpdb::_real_escape":{"ct":7,"wt":144,"cpu":147,"mu":392,"pmu":1624},"wp_load_alloptions==>wpdb::get_results":{"ct":1,"wt":857,"cpu":514,"mu":104136,"pmu":104136},"get_raw_theme_root==>count":{"ct":55,"wt":19,"cpu":35,"mu":112,"pmu":0},"is_attachment==>WP_Query::is_attachment":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"wp_enqueue_script==>_wp_scripts_maybe_doing_it_wrong":{"ct":6,"wt":12,"cpu":13,"mu":112,"pmu":0},"load_theme_textdomain==>get_template_directory":{"ct":1,"wt":29,"cpu":29,"mu":752,"pmu":0},"wpdb::parse_db_host==>preg_match":{"ct":1,"wt":4,"cpu":4,"mu":640,"pmu":832},"redirect_canonical==>home_url":{"ct":1,"wt":53,"cpu":53,"mu":160,"pmu":0},"get_page_of_comment==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"unload_textdomain==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>in_array":{"ct":3,"wt":1,"cpu":1,"mu":112,"pmu":0},"script_concat_settings==>did_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"esc_url==>apply_filters":{"ct":17,"wt":12,"cpu":10,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_singular":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"esc_url==>apply_filters@1":{"ct":55,"wt":55,"cpu":39,"mu":112,"pmu":0},"esc_url==>apply_filters@2":{"ct":12,"wt":9,"cpu":5,"mu":112,"pmu":0},"esc_url==>apply_filters@3":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_locale_stylesheet_uri==>file_exists":{"ct":2,"wt":13,"cpu":14,"mu":112,"pmu":0},"wp_get_document_title==>get_bloginfo":{"ct":2,"wt":140,"cpu":140,"mu":880,"pmu":0},"self_admin_url==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_body_class==>is_user_logged_in":{"ct":1,"wt":9,"cpu":8,"mu":112,"pmu":0},"convert_smilies==>preg_replace_callback":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>array_map":{"ct":1,"wt":198,"cpu":199,"mu":51256,"pmu":51256},"WP_Query::query==>WP_Query::get_posts":{"ct":2,"wt":6801,"cpu":4303,"mu":128200,"pmu":133960},"setup_userdata==>get_userdata":{"ct":1,"wt":54,"cpu":53,"mu":3904,"pmu":328},"WP_Taxonomy::add_rewrite_rules==>add_rewrite_tag":{"ct":3,"wt":14,"cpu":14,"mu":2424,"pmu":0},"get_post_class==>current_theme_supports":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"apply_filters@4==>array_shift":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_custom_header==>vsprintf":{"ct":3,"wt":2,"cpu":3,"mu":1072,"pmu":0},"WP_Hook::apply_filters==>_config_wp_siteurl":{"ct":25,"wt":17,"cpu":13,"mu":112,"pmu":0},"get_bloginfo==>get_option":{"ct":9,"wt":223,"cpu":224,"mu":112,"pmu":0},"WP_Object_Cache::add==>WP_Object_Cache::_exists":{"ct":25,"wt":50,"cpu":57,"mu":112,"pmu":0},"get_custom_header==>get_theme_mod":{"ct":1,"wt":48,"cpu":49,"mu":112,"pmu":0},"feed_links==>current_theme_supports":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"twentyseventeen_resource_hints==>wp_style_is":{"ct":4,"wt":33,"cpu":34,"mu":448,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Video::__construct":{"ct":1,"wt":862,"cpu":864,"mu":3936,"pmu":4360},"locate_template@1==>file_exists":{"ct":4,"wt":27,"cpu":27,"mu":112,"pmu":0},"esc_url==>wp_allowed_protocols":{"ct":78,"wt":281,"cpu":289,"mu":2296,"pmu":3136},"Walker_Category::start_el==>apply_filters":{"ct":2,"wt":42,"cpu":42,"mu":904,"pmu":0},"WP_Widget_Recent_Comments::widget==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_decline_date":{"ct":4,"wt":89,"cpu":89,"mu":448,"pmu":0},"redirect_canonical==>trailingslashit":{"ct":4,"wt":8,"cpu":8,"mu":112,"pmu":0},"twentyseventeen_front_page_template==>is_home":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>get_post_types":{"ct":1,"wt":29,"cpu":28,"mu":488,"pmu":0},"register_theme_directory==>file_exists":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"WP::handle_404==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_post_thumbnail==>get_post_thumbnail_id":{"ct":1,"wt":41,"cpu":41,"mu":112,"pmu":0},"wp_default_scripts==>wp_create_nonce":{"ct":1,"wt":52,"cpu":52,"mu":1432,"pmu":0},"get_avatar_data==>rawurlencode_deep":{"ct":4,"wt":38,"cpu":41,"mu":720,"pmu":0},"wp_create_nonce==>substr":{"ct":5,"wt":2,"cpu":2,"mu":312,"pmu":0},"WP_Query::get_posts==>count":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_content_width":{"ct":1,"wt":64,"cpu":64,"mu":896,"pmu":32520},"WP_Widget_Meta::__construct==>WP_Widget::__construct":{"ct":1,"wt":29,"cpu":30,"mu":904,"pmu":216},"WP_Widget::_register==>WP_Widget::get_settings":{"ct":17,"wt":1047,"cpu":1055,"mu":9088,"pmu":123776},"get_rest_url==>ltrim":{"ct":3,"wt":2,"cpu":3,"mu":208,"pmu":0},"apply_filters@1==>WP_Hook::apply_filters@1":{"ct":63,"wt":1259,"cpu":1273,"mu":15528,"pmu":2608},"wp_check_invalid_utf8==>get_option":{"ct":1,"wt":55,"cpu":55,"mu":336,"pmu":328},"wp_get_document_title==>array_filter":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_avatar==>get_option":{"ct":6,"wt":114,"cpu":115,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Meta_Query::parse_query_vars":{"ct":2,"wt":15,"cpu":15,"mu":224,"pmu":0},"get_post_time==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Search::widget==>get_search_form":{"ct":1,"wt":592,"cpu":540,"mu":2328,"pmu":0},"_get_widget_id_base==>preg_replace":{"ct":20,"wt":63,"cpu":76,"mu":1056,"pmu":0},"wpdb::get_var==>wpdb::query":{"ct":1,"wt":186,"cpu":148,"mu":128,"pmu":1768},"wp_admin_bar_search_menu==>__":{"ct":2,"wt":14,"cpu":14,"mu":112,"pmu":0},"rest_cookie_collect_status==>substr":{"ct":1,"wt":1,"cpu":0,"mu":152,"pmu":0},"wp_get_translation_updates==>get_site_transient":{"ct":3,"wt":1661,"cpu":1141,"mu":16648,"pmu":9440},"get_body_class==>is_404":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"wpdb::has_cap==>version_compare":{"ct":7,"wt":10,"cpu":9,"mu":112,"pmu":0},"get_the_modified_time==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>absint":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_get_video_extensions==>apply_filters@1":{"ct":2,"wt":4,"cpu":6,"mu":112,"pmu":112},"main()==>wp_check_php_mysql_versions":{"ct":1,"wt":10,"cpu":10,"mu":472,"pmu":472},"feed_links==>esc_attr":{"ct":2,"wt":74,"cpu":74,"mu":16,"pmu":0},"WP_Term_Query::parse_query==>absint":{"ct":4,"wt":6,"cpu":7,"mu":112,"pmu":112},"WP_Widget::_register==>WP_Widget_Text::_register_one":{"ct":1,"wt":3776,"cpu":3736,"mu":97400,"pmu":70064},"WP_Query::get_posts==>wpdb::get_col":{"ct":2,"wt":2865,"cpu":973,"mu":1744,"pmu":2800},"twentyseventeen_edit_link==>get_the_title":{"ct":1,"wt":61,"cpu":61,"mu":1440,"pmu":0},"WP::add_query_var==>in_array":{"ct":4,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_admin_bar_appearance_menu==>WP_Admin_Bar::add_group":{"ct":1,"wt":23,"cpu":23,"mu":528,"pmu":0},"convert_chars==>strpos":{"ct":17,"wt":11,"cpu":12,"mu":112,"pmu":0},"get_parent_theme_file_path==>apply_filters":{"ct":5,"wt":2,"cpu":4,"mu":112,"pmu":0},"get_parent_theme_file_path==>apply_filters@1":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Rewrite::add_rule==>strpos":{"ct":8,"wt":2,"cpu":6,"mu":112,"pmu":0},"wp_nonce_tick==>ceil":{"ct":5,"wt":5,"cpu":3,"mu":112,"pmu":0},"wp_admin_bar_my_sites_menu==>is_user_logged_in":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_parse_url==>_get_component_from_parsed_url_array":{"ct":13,"wt":11,"cpu":13,"mu":112,"pmu":0},"get_theme_root_uri==>get_raw_theme_root":{"ct":40,"wt":65,"cpu":64,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>serialize":{"ct":1,"wt":5,"cpu":4,"mu":4208,"pmu":0},"main()==>is_readable":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps==>in_array":{"ct":5,"wt":3,"cpu":3,"mu":112,"pmu":0},"number_format_i18n==>number_format":{"ct":3,"wt":27,"cpu":29,"mu":208,"pmu":0},"WP_Widget_Media_Video::__construct==>array_merge":{"ct":1,"wt":3,"cpu":4,"mu":808,"pmu":280},"wptexturize==>preg_match":{"ct":19,"wt":22,"cpu":25,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_customize_preview":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::parse_tax_query==>WP_Tax_Query::__construct":{"ct":4,"wt":14,"cpu":15,"mu":224,"pmu":0},"wpdb::has_cap==>strtolower":{"ct":5,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_month_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_print_head_scripts":{"ct":1,"wt":3939,"cpu":2714,"mu":11640,"pmu":18552},"WP_Widget_Categories::__construct==>WP_Widget::__construct":{"ct":1,"wt":14,"cpu":15,"mu":912,"pmu":1200},"_wp_customize_include==>is_admin":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":88},"wp_admin_bar_render==>do_action_ref_array":{"ct":1,"wt":10238,"cpu":8396,"mu":47472,"pmu":58920},"WP_Query::setup_postdata==>get_userdata":{"ct":1,"wt":69,"cpu":69,"mu":3792,"pmu":96},"WP_User::has_cap==>is_multisite":{"ct":22,"wt":15,"cpu":20,"mu":112,"pmu":0},"get_dashboard_url==>admin_url":{"ct":2,"wt":106,"cpu":105,"mu":352,"pmu":0},"urlencode_deep==>map_deep":{"ct":25,"wt":33,"cpu":42,"mu":1560,"pmu":0},"get_search_form==>current_theme_supports":{"ct":1,"wt":7,"cpu":7,"mu":224,"pmu":0},"WP_Term_Query::get_terms==>array_keys":{"ct":2,"wt":2,"cpu":2,"mu":2784,"pmu":1448},"get_rest_url==>get_option":{"ct":3,"wt":78,"cpu":77,"mu":112,"pmu":0},"get_header_textcolor==>get_theme_support":{"ct":2,"wt":9,"cpu":11,"mu":336,"pmu":0},"is_header_video_active==>is_front_page":{"ct":1,"wt":23,"cpu":23,"mu":112,"pmu":0},"get_the_modified_date==>get_post":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_post_class==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Factory::_register_widgets==>array_keys":{"ct":2,"wt":4,"cpu":5,"mu":1504,"pmu":0},"main()==>wp_not_installed":{"ct":1,"wt":977,"cpu":633,"mu":116648,"pmu":116328},"wpdb::query==>wpdb::flush":{"ct":22,"wt":450,"cpu":458,"mu":-433352,"pmu":0},"WP_Query::get_posts==>do_action":{"ct":2,"wt":6,"cpu":3,"mu":-240,"pmu":0},"post_class==>get_post_class":{"ct":1,"wt":902,"cpu":890,"mu":4008,"pmu":10720},"wp_register==>current_user_can":{"ct":1,"wt":42,"cpu":42,"mu":112,"pmu":0},"get_stylesheet_directory_uri==>get_theme_root_uri":{"ct":23,"wt":1126,"cpu":1127,"mu":1808,"pmu":568},"WP_Widget_Meta::widget==>wp_loginout":{"ct":1,"wt":259,"cpu":259,"mu":2128,"pmu":0},"get_the_modified_time==>get_post_modified_time":{"ct":1,"wt":10,"cpu":10,"mu":448,"pmu":0},"wptexturize==>wp_spaces_regexp":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Roles::for_site==>WP_Roles::init_roles":{"ct":1,"wt":13,"cpu":13,"mu":1600,"pmu":0},"get_permalink==>user_trailingslashit":{"ct":4,"wt":25,"cpu":27,"mu":544,"pmu":0},"WP_Hook::add_filter==>WP_Hook::resort_active_iterations":{"ct":23,"wt":301,"cpu":305,"mu":1664,"pmu":2032},"is_sticky==>get_option":{"ct":2,"wt":52,"cpu":52,"mu":224,"pmu":12472},"esc_url==>stripos":{"ct":86,"wt":89,"cpu":95,"mu":112,"pmu":0},"wpautop==>str_replace":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_theme_mod==>apply_filters":{"ct":18,"wt":11,"cpu":9,"mu":-808,"pmu":0},"wp_admin_bar_customize_menu==>is_admin":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_theme_mod==>apply_filters@1":{"ct":9,"wt":7,"cpu":6,"mu":-344,"pmu":0},"get_theme_mod==>apply_filters@2":{"ct":2,"wt":1,"cpu":1,"mu":8,"pmu":0},"WP_Hook::apply_filters@1==>_wp_footer_scripts":{"ct":1,"wt":672,"cpu":673,"mu":2992,"pmu":0},"WP_Rewrite::__construct==>WP_Rewrite::init":{"ct":1,"wt":45,"cpu":46,"mu":816,"pmu":816},"wp_filter_object_list==>WP_List_Util::get_output":{"ct":17,"wt":11,"cpu":15,"mu":112,"pmu":0},"get_post_class==>is_numeric":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_strip_all_tags==>trim":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_maybe_decline_date==>get_locale":{"ct":4,"wt":52,"cpu":52,"mu":112,"pmu":0},"wptexturize==>array_keys":{"ct":22,"wt":20,"cpu":20,"mu":8384,"pmu":0},"get_term==>WP_Term::__construct":{"ct":2,"wt":9,"cpu":8,"mu":920,"pmu":920},"WP_Dependencies::all_deps==>array_diff":{"ct":6,"wt":69,"cpu":73,"mu":448,"pmu":12864},"WP_Term_Query::get_terms==>array_map":{"ct":5,"wt":223,"cpu":223,"mu":4624,"pmu":4056},"WP_Widget_Factory::_register_widgets==>array_map":{"ct":1,"wt":5,"cpu":5,"mu":168,"pmu":0},"get_locale_stylesheet_uri==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_setup":{"ct":1,"wt":480,"cpu":480,"mu":23656,"pmu":0},"WP_Admin_Bar::initialize==>current_theme_supports":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_template_directory_uri==>apply_filters":{"ct":9,"wt":2,"cpu":6,"mu":112,"pmu":0},"get_template_directory_uri==>apply_filters@1":{"ct":7,"wt":3,"cpu":18,"mu":112,"pmu":0},"get_template_directory_uri==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Scripts::all_deps==>apply_filters@1":{"ct":1,"wt":27,"cpu":27,"mu":1088,"pmu":0},"WP_Scripts::all_deps==>apply_filters@2":{"ct":1,"wt":15,"cpu":14,"mu":224,"pmu":0},"wp_logout_url==>wp_nonce_url":{"ct":3,"wt":312,"cpu":312,"mu":1936,"pmu":0},"wpautop==>trim":{"ct":2,"wt":2,"cpu":2,"mu":224,"pmu":0},"get_permalink==>get_option":{"ct":4,"wt":84,"cpu":84,"mu":112,"pmu":0},"wp_shortlink_header==>wp_get_shortlink":{"ct":1,"wt":6,"cpu":6,"mu":336,"pmu":0},"get_feed_link==>user_trailingslashit":{"ct":4,"wt":32,"cpu":31,"mu":480,"pmu":0},"esc_url==>in_array":{"ct":5,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Query::set_found_posts==>apply_filters_ref_array":{"ct":2,"wt":2,"cpu":2,"mu":-688,"pmu":0},"wp_create_nonce==>wp_get_session_token":{"ct":5,"wt":46,"cpu":48,"mu":624,"pmu":0},"WP::main==>WP::query_posts":{"ct":1,"wt":2987,"cpu":2147,"mu":119200,"pmu":119712},"get_search_form==>esc_attr":{"ct":1,"wt":10,"cpu":10,"mu":112,"pmu":0},"wp_embed_register_handler==>WP_Embed::register_handler":{"ct":3,"wt":4,"cpu":4,"mu":2368,"pmu":2264},"WP_Query::get_posts==>WP_Query::parse_tax_query":{"ct":2,"wt":46,"cpu":47,"mu":112,"pmu":0},"WP_Widget::_register_one==>WP_Widget::_get_update_callback":{"ct":17,"wt":13,"cpu":25,"mu":6504,"pmu":0},"twentyseventeen_fonts_url==>implode":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"_prime_post_caches==>wpdb::get_results":{"ct":1,"wt":216,"cpu":120,"mu":3664,"pmu":2496},"WP_Rewrite::add_permastruct==>func_num_args":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_fix_server_vars==>strpos":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"main()==>do_action":{"ct":8,"wt":18419,"cpu":18226,"mu":456864,"pmu":425648},"wp_create_nonce==>wp_get_current_user":{"ct":5,"wt":9,"cpu":10,"mu":112,"pmu":0},"wp_html_excerpt==>preg_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>convert_chars":{"ct":14,"wt":27,"cpu":30,"mu":224,"pmu":0},"wp_hash==>wp_salt":{"ct":6,"wt":72,"cpu":74,"mu":2936,"pmu":0},"main()==>add_shortcode":{"ct":6,"wt":21,"cpu":24,"mu":736,"pmu":648},"wp_admin_bar_sidebar_toggle==>is_admin":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_avatar_data==>get_option":{"ct":12,"wt":267,"cpu":272,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>implode":{"ct":1,"wt":6,"cpu":8,"mu":224,"pmu":0},"twentyseventeen_custom_header_setup==>__":{"ct":1,"wt":7,"cpu":9,"mu":112,"pmu":0},"wp_maybe_load_embeds==>wp_get_audio_extensions":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":224},"wp_admin_bar_my_account_menu==>get_edit_profile_url":{"ct":1,"wt":183,"cpu":183,"mu":1408,"pmu":0},"WP_Query::parse_query==>WP_Query::parse_tax_query":{"ct":2,"wt":85,"cpu":84,"mu":880,"pmu":24},"network_admin_url==>admin_url":{"ct":1,"wt":351,"cpu":354,"mu":192,"pmu":0},"WP_Styles::print_inline_style==>WP_Dependencies::get_data":{"ct":5,"wt":28,"cpu":33,"mu":112,"pmu":0},"get_nav_menu_locations==>get_theme_mod":{"ct":4,"wt":205,"cpu":204,"mu":112,"pmu":10664},"register_taxonomy==>do_action":{"ct":5,"wt":9,"cpu":33,"mu":-6568,"pmu":0},"WP_Query::parse_query==>trim":{"ct":6,"wt":4,"cpu":5,"mu":112,"pmu":0},"register_taxonomy==>do_action@1":{"ct":5,"wt":5,"cpu":6,"mu":-6568,"pmu":0},"post_password_required==>get_post":{"ct":2,"wt":78,"cpu":78,"mu":560,"pmu":0},"WP_Term::__construct==>get_object_vars":{"ct":6,"wt":4,"cpu":4,"mu":112,"pmu":112},"is_date==>WP_Query::is_date":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wpdb::init_charset==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_check_php_mysql_versions==>phpversion":{"ct":1,"wt":1,"cpu":1,"mu":176,"pmu":176},"WP_Hook::apply_filters@2==>array_keys":{"ct":55,"wt":36,"cpu":42,"mu":20792,"pmu":0},"print_late_styles==>script_concat_settings":{"ct":1,"wt":14,"cpu":14,"mu":112,"pmu":0},"wp_enqueue_style==>_wp_scripts_maybe_doing_it_wrong":{"ct":4,"wt":6,"cpu":8,"mu":112,"pmu":0},"print_emoji_detection_script==>_print_emoji_detection_script":{"ct":1,"wt":252,"cpu":253,"mu":672,"pmu":0},"WP_Query::setup_postdata==>mysql2date":{"ct":2,"wt":61,"cpu":61,"mu":1464,"pmu":0},"WP_Hook::apply_filters@1==>sanitize_title_with_dashes":{"ct":2,"wt":166,"cpu":167,"mu":200,"pmu":0},"WP::parse_request==>apply_filters":{"ct":3,"wt":15,"cpu":15,"mu":976,"pmu":0},"main()==>wp_get_active_and_valid_plugins":{"ct":1,"wt":115,"cpu":115,"mu":560,"pmu":31544},"create_initial_post_types==>_n_noop":{"ct":12,"wt":9,"cpu":10,"mu":4624,"pmu":0},"wp_maybe_load_embeds==>join":{"ct":2,"wt":2,"cpu":2,"mu":216,"pmu":296},"get_term==>sanitize_term":{"ct":2,"wt":46,"cpu":46,"mu":208,"pmu":264},"wp_admin_bar_my_account_item==>get_edit_profile_url":{"ct":1,"wt":137,"cpu":137,"mu":176,"pmu":0},"get_term_link==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"WP_Hook::apply_filters@1==>rest_cookie_collect_status":{"ct":2,"wt":11,"cpu":11,"mu":584,"pmu":0},"get_header_video_url==>get_theme_mod":{"ct":2,"wt":91,"cpu":91,"mu":112,"pmu":1280},"wp_default_styles==>is_rtl":{"ct":1,"wt":6,"cpu":6,"mu":248,"pmu":0},"wpdb::set_prefix==>preg_match":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_cache_init==>WP_Object_Cache::__construct":{"ct":1,"wt":11,"cpu":11,"mu":744,"pmu":0},"WP_Hook::apply_filters==>wp_enqueue_scripts":{"ct":1,"wt":1287,"cpu":1287,"mu":12928,"pmu":42816},"get_search_form==>esc_attr_x":{"ct":1,"wt":110,"cpu":110,"mu":496,"pmu":0},"WP_Widget::display_callback==>WP_Widget_Archives::widget":{"ct":1,"wt":863,"cpu":599,"mu":5272,"pmu":0},"wp_allowed_protocols==>did_action":{"ct":78,"wt":62,"cpu":75,"mu":112,"pmu":0},"WP_Widget_Media_Image::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":175,"cpu":175,"mu":1928,"pmu":0},"wp_cookie_constants==>preg_replace":{"ct":3,"wt":4,"cpu":4,"mu":224,"pmu":0},"get_term_link==>get_taxonomy":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"redirect_canonical==>is_author":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"get_term==>taxonomy_exists":{"ct":4,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>is_user_member_of_blog":{"ct":1,"wt":66,"cpu":66,"mu":448,"pmu":3592},"register_post_status==>_n_noop":{"ct":4,"wt":3,"cpu":4,"mu":1616,"pmu":0},"get_avatar_data==>array_filter":{"ct":4,"wt":1,"cpu":3,"mu":1616,"pmu":0},"array_map==>get_term":{"ct":2,"wt":115,"cpu":115,"mu":2136,"pmu":1968},"get_query_template==>locate_template":{"ct":2,"wt":25,"cpu":25,"mu":416,"pmu":0},"WP_Hook::apply_filters@4==>_config_wp_siteurl":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wpdb::get_row==>wpdb::query":{"ct":7,"wt":5458,"cpu":2117,"mu":-64088,"pmu":0},"is_admin_bar_showing==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"is_admin_bar_showing==>apply_filters@1":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_comments==>WP_Comment_Query::__construct":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Query::setup_postdata==>count":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_get_custom_css_post==>get_stylesheet":{"ct":1,"wt":27,"cpu":28,"mu":112,"pmu":0},"sanitize_title==>remove_accents":{"ct":9,"wt":21,"cpu":23,"mu":112,"pmu":0},"add_query_arg==>urlencode_deep":{"ct":25,"wt":78,"cpu":81,"mu":1672,"pmu":0},"get_custom_logo==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_template==>get_option":{"ct":25,"wt":510,"cpu":508,"mu":336,"pmu":0},"do_action==>count":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_custom_logo_header_styles":{"ct":1,"wt":9,"cpu":9,"mu":448,"pmu":0},"WP_Term_Query::get_terms==>wpdb::get_results":{"ct":2,"wt":774,"cpu":257,"mu":3936,"pmu":0},"esc_attr==>wp_check_invalid_utf8":{"ct":104,"wt":298,"cpu":291,"mu":1160,"pmu":328},"WP_Post_Type::add_hooks==>add_action":{"ct":16,"wt":177,"cpu":178,"mu":17984,"pmu":7512},"WP_Scripts::do_footer_items==>WP_Dependencies::do_items":{"ct":1,"wt":590,"cpu":591,"mu":1088,"pmu":0},"WP_Comment_Query::get_comment_ids==>array_map":{"ct":1,"wt":4,"cpu":4,"mu":488,"pmu":0},"self_admin_url==>admin_url":{"ct":1,"wt":54,"cpu":54,"mu":176,"pmu":0},"array_map==>intval":{"ct":16,"wt":11,"cpu":13,"mu":112,"pmu":0},"wp_set_wpdb_vars==>wpdb::__isset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_strip_all_tags==>preg_replace":{"ct":3,"wt":4,"cpu":8,"mu":160,"pmu":0},"wpautop==>wp_replace_in_html_tags":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"twentyseventeen_setup==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template@1==>__":{"ct":2,"wt":18,"cpu":16,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>wp_list_pluck":{"ct":1,"wt":5,"cpu":5,"mu":488,"pmu":0},"WP_Widget_Factory::__construct==>add_action":{"ct":1,"wt":13,"cpu":13,"mu":1448,"pmu":1448},"main()==>wp_debug_mode":{"ct":1,"wt":8,"cpu":9,"mu":592,"pmu":488},"WP_Scripts::do_item==>apply_filters@1":{"ct":6,"wt":5,"cpu":6,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_new_content_menu":{"ct":1,"wt":618,"cpu":618,"mu":3520,"pmu":0},"WP_Scripts::do_item==>apply_filters@2":{"ct":10,"wt":7,"cpu":10,"mu":112,"pmu":0},"wp_enqueue_script==>explode":{"ct":4,"wt":2,"cpu":3,"mu":1616,"pmu":0},"get_site_url==>set_url_scheme":{"ct":43,"wt":666,"cpu":670,"mu":2672,"pmu":0},"wptexturize==>_x":{"ct":11,"wt":103,"cpu":103,"mu":112,"pmu":0},"wpdb::db_connect==>wpdb::set_sql_mode":{"ct":1,"wt":196,"cpu":109,"mu":896,"pmu":15776},"apply_filters@3==>WP_Hook::apply_filters@3":{"ct":12,"wt":216,"cpu":217,"mu":5576,"pmu":1456},"wp_convert_hr_to_bytes==>min":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":112},"wp_convert_hr_to_bytes==>strpos":{"ct":4,"wt":2,"cpu":1,"mu":112,"pmu":112},"wp_get_update_data==>wp_get_translation_updates":{"ct":1,"wt":1696,"cpu":1175,"mu":2072,"pmu":9440},"sanitize_user==>wp_strip_all_tags":{"ct":1,"wt":6,"cpu":6,"mu":480,"pmu":0},"get_custom_header_markup==>has_custom_header":{"ct":1,"wt":649,"cpu":650,"mu":784,"pmu":7472},"get_taxonomy_labels==>_x":{"ct":60,"wt":357,"cpu":361,"mu":6888,"pmu":8192},"redirect_canonical==>is_robots":{"ct":1,"wt":1,"cpu":3,"mu":112,"pmu":0},"wpautop==>preg_replace":{"ct":15,"wt":20,"cpu":20,"mu":560,"pmu":0},"WP_Widget_Text::_register_one==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Hook::apply_filters==>wp_resource_hints":{"ct":1,"wt":779,"cpu":779,"mu":3328,"pmu":0},"WP_Hook::apply_filters==>wp_oembed_add_discovery_links":{"ct":1,"wt":5,"cpu":4,"mu":336,"pmu":0},"maybe_unserialize==>is_serialized":{"ct":374,"wt":1091,"cpu":1105,"mu":448,"pmu":352},"WP_Widget_Meta::widget==>__":{"ct":2,"wt":14,"cpu":13,"mu":112,"pmu":0},"load_template@2==>has_nav_menu":{"ct":1,"wt":50,"cpu":50,"mu":224,"pmu":1648},"wp_heartbeat_settings==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_site_icon==>has_site_icon":{"ct":1,"wt":27,"cpu":28,"mu":560,"pmu":0},"get_permalink==>get_post_types":{"ct":4,"wt":108,"cpu":108,"mu":10800,"pmu":0},"get_header_image==>get_theme_mod":{"ct":3,"wt":679,"cpu":678,"mu":1520,"pmu":12400},"load_template==>wp_head":{"ct":1,"wt":10751,"cpu":9474,"mu":56152,"pmu":84288},"is_multi_author==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"update_object_term_cache==>get_object_taxonomies":{"ct":3,"wt":29,"cpu":29,"mu":1352,"pmu":1024},"WP_Widget_Media_Video::__construct==>wp_get_video_extensions":{"ct":1,"wt":9,"cpu":10,"mu":112,"pmu":0},"get_comment_author_url==>get_comment":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_the_modified_date==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_customize_menu":{"ct":1,"wt":360,"cpu":360,"mu":3224,"pmu":0},"WP_Query::get_queried_object_id==>WP_Query::get_queried_object":{"ct":1,"wt":5,"cpu":6,"mu":224,"pmu":0},"wp_cache_get==>WP_Object_Cache::get":{"ct":842,"wt":2037,"cpu":2075,"mu":2016,"pmu":152},"WP_Object_Cache::__construct==>is_multisite":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::_render_group==>esc_attr":{"ct":4,"wt":23,"cpu":23,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>array_filter":{"ct":1,"wt":1,"cpu":2,"mu":168,"pmu":0},"the_post==>WP_Query::the_post":{"ct":1,"wt":161,"cpu":161,"mu":7368,"pmu":96},"redirect_canonical==>is_feed":{"ct":2,"wt":5,"cpu":5,"mu":224,"pmu":0},"WP_Widget_Recent_Comments::recent_comments_style==>current_theme_supports":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::parse_query_vars":{"ct":4,"wt":15,"cpu":15,"mu":112,"pmu":112},"WP_Widget_Search::__construct==>__":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":112},"load_template==>is_active_sidebar":{"ct":1,"wt":126,"cpu":126,"mu":560,"pmu":400},"get_option==>wpdb::prepare":{"ct":6,"wt":939,"cpu":939,"mu":1456,"pmu":0},"wp_get_shortlink==>apply_filters@1":{"ct":4,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps@1==>WP_Dependencies::recurse_deps@2":{"ct":2,"wt":10,"cpu":11,"mu":336,"pmu":0},"_wp_filter_build_unique_id==>spl_object_hash":{"ct":127,"wt":218,"cpu":224,"mu":32624,"pmu":4312},"wp_admin_bar_site_menu==>__":{"ct":1,"wt":7,"cpu":8,"mu":112,"pmu":0},"WP_Query::parse_query==>preg_replace":{"ct":7,"wt":15,"cpu":17,"mu":112,"pmu":0},"WP_Widget_Media_Gallery::__construct==>_x":{"ct":2,"wt":16,"cpu":16,"mu":112,"pmu":0},"convert_smilies==>preg_match":{"ct":5,"wt":5,"cpu":5,"mu":168,"pmu":0},"wp_register_sidebar_widget==>_get_widget_id_base":{"ct":17,"wt":98,"cpu":97,"mu":904,"pmu":0},"dynamic_sidebar==>sanitize_title":{"ct":4,"wt":379,"cpu":379,"mu":280,"pmu":1064},"update_termmeta_cache==>get_option":{"ct":1,"wt":25,"cpu":25,"mu":112,"pmu":0},"wp_shortlink_header==>headers_sent":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>current":{"ct":12,"wt":4,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>sprintf":{"ct":2,"wt":11,"cpu":11,"mu":944,"pmu":0},"shortcode_unautop==>join":{"ct":1,"wt":1,"cpu":1,"mu":192,"pmu":0},"WP_Query::__construct==>WP_Query::query":{"ct":1,"wt":3867,"cpu":2207,"mu":10008,"pmu":14248},"WP_Dependencies::do_items==>WP_Scripts::do_item":{"ct":13,"wt":924,"cpu":929,"mu":1832,"pmu":0},"twentyseventeen_time_link==>sprintf":{"ct":2,"wt":4,"cpu":4,"mu":752,"pmu":0},"WP_Hook::apply_filters@2==>count":{"ct":55,"wt":32,"cpu":34,"mu":112,"pmu":0},"esc_url==>preg_match":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Dependencies::all_deps==>in_array":{"ct":38,"wt":23,"cpu":33,"mu":112,"pmu":0},"update_object_term_cache==>wp_cache_get":{"ct":7,"wt":26,"cpu":27,"mu":-240,"pmu":0},"build_query==>_http_build_query":{"ct":25,"wt":167,"cpu":165,"mu":1720,"pmu":760},"WP_Term_Query::get_terms==>do_action":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"sanitize_user==>remove_accents":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Object_Cache::__construct==>register_shutdown_function":{"ct":1,"wt":2,"cpu":2,"mu":144,"pmu":0},"WP_Comment_Query::get_comment_ids==>count":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_user_option==>get_userdata":{"ct":1,"wt":74,"cpu":74,"mu":3792,"pmu":16680},"get_feed_link==>WP_Rewrite::get_comment_feed_permastruct":{"ct":2,"wt":6,"cpu":8,"mu":160,"pmu":0},"get_post_class==>is_admin":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>add_query_arg":{"ct":1,"wt":47,"cpu":48,"mu":88,"pmu":0},"WP_Widget_Tag_Cloud::__construct==>__":{"ct":2,"wt":20,"cpu":21,"mu":112,"pmu":0},"main()==>is_multisite":{"ct":5,"wt":6,"cpu":6,"mu":112,"pmu":0},"has_header_image==>get_header_image":{"ct":2,"wt":1451,"cpu":1452,"mu":2528,"pmu":13120},"WP_Widget_Factory::register==>WP_Widget_Media_Gallery::__construct":{"ct":1,"wt":275,"cpu":275,"mu":2752,"pmu":2320},"wpdb::tables==>wpdb::get_blog_prefix":{"ct":3,"wt":8,"cpu":8,"mu":224,"pmu":0},"WP_Hook::apply_filters==>print_emoji_detection_script":{"ct":1,"wt":257,"cpu":258,"mu":1184,"pmu":0},"main()==>wp_functionality_constants":{"ct":1,"wt":9,"cpu":9,"mu":352,"pmu":0},"main()==>require_wp_db":{"ct":1,"wt":1078,"cpu":702,"mu":27800,"pmu":45552},"wp_get_archives==>md5":{"ct":1,"wt":2,"cpu":4,"mu":176,"pmu":0},"wp_validate_auth_cookie==>wp_parse_auth_cookie":{"ct":2,"wt":14,"cpu":13,"mu":1184,"pmu":0},"wp_link_pages==>wp_parse_args":{"ct":1,"wt":3,"cpu":3,"mu":808,"pmu":0},"add_magic_quotes==>addslashes":{"ct":37,"wt":15,"cpu":35,"mu":408,"pmu":408},"register_theme_directory==>in_array":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_comment_link==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP::parse_request==>parse_url":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"dynamic_sidebar==>array_merge":{"ct":12,"wt":13,"cpu":14,"mu":6544,"pmu":184},"WP_Admin_Bar::_render_group==>trim":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"wp_kses_bad_protocol_once2==>preg_replace":{"ct":83,"wt":64,"cpu":71,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_comment_link":{"ct":1,"wt":351,"cpu":352,"mu":1560,"pmu":0},"wp_admin_bar_wp_menu==>self_admin_url":{"ct":1,"wt":60,"cpu":59,"mu":624,"pmu":0},"get_the_modified_date==>get_post_modified_time":{"ct":2,"wt":182,"cpu":182,"mu":624,"pmu":0},"WP_Query::get_posts==>wp_queue_posts_for_term_meta_lazyload":{"ct":2,"wt":253,"cpu":253,"mu":6576,"pmu":0},"wpdb::add_placeholder_escape==>wpdb::placeholder_escape":{"ct":29,"wt":759,"cpu":779,"mu":5096,"pmu":7816},"WP_User::get_role_caps==>array_keys":{"ct":10,"wt":7,"cpu":6,"mu":3872,"pmu":0},"post_password_required==>apply_filters":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_current_user_id==>wp_get_current_user":{"ct":8,"wt":20,"cpu":22,"mu":112,"pmu":0},"main()==>register_shutdown_function":{"ct":1,"wt":3,"cpu":2,"mu":144,"pmu":32},"get_network_option==>get_current_network_id":{"ct":8,"wt":32,"cpu":29,"mu":224,"pmu":224},"wp_parse_str==>apply_filters":{"ct":3,"wt":3,"cpu":1,"mu":112,"pmu":0},"current_theme_supports==>array_slice":{"ct":7,"wt":5,"cpu":2,"mu":2744,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>get_object_taxonomies":{"ct":2,"wt":13,"cpu":14,"mu":864,"pmu":0},"get_site_icon_url==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_parse_str==>apply_filters@1":{"ct":12,"wt":13,"cpu":21,"mu":112,"pmu":0},"wp_parse_str==>apply_filters@2":{"ct":13,"wt":11,"cpu":19,"mu":112,"pmu":96},"_wp_add_global_attributes==>array_merge":{"ct":82,"wt":66,"cpu":72,"mu":42784,"pmu":42784},"get_the_title==>get_post":{"ct":5,"wt":178,"cpu":178,"mu":1008,"pmu":0},"get_home_url==>set_url_scheme":{"ct":20,"wt":151,"cpu":159,"mu":1184,"pmu":0},"get_post_format_slugs==>array_keys":{"ct":1,"wt":0,"cpu":1,"mu":808,"pmu":0},"load_template==>is_front_page":{"ct":1,"wt":23,"cpu":23,"mu":112,"pmu":0},"get_body_class==>has_custom_logo":{"ct":1,"wt":53,"cpu":53,"mu":336,"pmu":336},"WP_Hook::apply_filters@1==>twentyseventeen_resource_hints":{"ct":4,"wt":42,"cpu":42,"mu":936,"pmu":0},"WP_Scripts::localize==>is_scalar":{"ct":199,"wt":74,"cpu":94,"mu":112,"pmu":0},"wp_admin_bar_appearance_menu==>WP_Admin_Bar::add_menu":{"ct":4,"wt":50,"cpu":52,"mu":912,"pmu":0},"wp_admin_bar_customize_menu==>wp_customize_url":{"ct":1,"wt":170,"cpu":171,"mu":400,"pmu":0},"content_url==>apply_filters":{"ct":18,"wt":11,"cpu":10,"mu":112,"pmu":0},"content_url==>apply_filters@1":{"ct":14,"wt":8,"cpu":9,"mu":112,"pmu":0},"content_url==>apply_filters@2":{"ct":8,"wt":3,"cpu":10,"mu":112,"pmu":0},"map_meta_cap==>get_post_type_object":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_comment_author_url==>esc_url":{"ct":1,"wt":58,"cpu":58,"mu":160,"pmu":0},"load_template@2==>esc_attr":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Admin_Bar::add_menus==>is_user_admin":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":112},"sanitize_html_class==>apply_filters":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"register_taxonomy==>WP_Taxonomy::add_hooks":{"ct":10,"wt":90,"cpu":89,"mu":6752,"pmu":0},"WP_Hook::apply_filters@1==>_config_wp_home":{"ct":6,"wt":8,"cpu":8,"mu":112,"pmu":0},"wpdb::prepare==>array_shift":{"ct":11,"wt":9,"cpu":13,"mu":112,"pmu":0},"wp_cache_get_last_changed==>microtime":{"ct":3,"wt":14,"cpu":15,"mu":256,"pmu":0},"WP_Widget_Recent_Posts::widget==>__":{"ct":1,"wt":25,"cpu":27,"mu":112,"pmu":0},"_e==>translate":{"ct":7,"wt":81,"cpu":83,"mu":112,"pmu":0},"_wp_get_current_user==>wp_set_current_user":{"ct":1,"wt":219,"cpu":219,"mu":12992,"pmu":328},"get_post_type_labels==>_x":{"ct":224,"wt":1490,"cpu":1504,"mu":112,"pmu":0},"WP_Scripts::all_deps@1==>WP_Dependencies::all_deps@1":{"ct":4,"wt":118,"cpu":122,"mu":1008,"pmu":600},"get_post_type_capabilities==>array_merge":{"ct":30,"wt":61,"cpu":72,"mu":20992,"pmu":0},"load_template==>is_home":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template==>dynamic_sidebar":{"ct":1,"wt":11774,"cpu":8878,"mu":40280,"pmu":70672},"get_blogs_of_user==>get_option":{"ct":6,"wt":200,"cpu":199,"mu":112,"pmu":0},"WP_Query::parse_query==>is_admin":{"ct":2,"wt":13,"cpu":13,"mu":112,"pmu":112},"redirect_canonical==>is_preview":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"WP_Hook::apply_filters==>wpautop":{"ct":1,"wt":61,"cpu":61,"mu":1120,"pmu":0},"get_bloginfo==>strpos":{"ct":44,"wt":30,"cpu":31,"mu":112,"pmu":0},"wp_meta==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"create_initial_post_types==>add_post_type_support":{"ct":4,"wt":18,"cpu":19,"mu":864,"pmu":0},"get_post_stati==>wp_filter_object_list":{"ct":4,"wt":80,"cpu":82,"mu":1728,"pmu":0},"wp_add_inline_script==>stripos":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP::parse_request==>is_post_type_viewable":{"ct":8,"wt":14,"cpu":16,"mu":224,"pmu":0},"convert_smilies==>get_option":{"ct":1,"wt":24,"cpu":24,"mu":112,"pmu":0},"get_language_attributes==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"main()==>dirname":{"ct":8,"wt":11,"cpu":13,"mu":688,"pmu":296},"_custom_logo_header_styles==>current_theme_supports":{"ct":1,"wt":6,"cpu":7,"mu":336,"pmu":0},"WP_List_Util::filter==>strtoupper":{"ct":9,"wt":10,"cpu":11,"mu":400,"pmu":0},"wp_get_update_data==>_n":{"ct":1,"wt":25,"cpu":25,"mu":224,"pmu":0},"map_meta_cap==>array_slice":{"ct":22,"wt":11,"cpu":16,"mu":1664,"pmu":0},"wp_default_scripts==>time":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"utf8_uri_encode==>reset_mbstring_encoding":{"ct":13,"wt":19,"cpu":17,"mu":112,"pmu":0},"get_template_directory_uri==>get_theme_root_uri":{"ct":17,"wt":899,"cpu":902,"mu":3104,"pmu":0},"get_page_of_comment==>get_option":{"ct":1,"wt":19,"cpu":19,"mu":112,"pmu":0},"main()==>strpos":{"ct":11,"wt":8,"cpu":7,"mu":112,"pmu":32},"wpdb::select==>mysqli_select_db":{"ct":1,"wt":40,"cpu":17,"mu":112,"pmu":0},"get_rest_url==>is_multisite":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_parent_theme_file_path==>ltrim":{"ct":6,"wt":2,"cpu":3,"mu":416,"pmu":0},"WP_Hook::apply_filters@1==>print_emoji_styles":{"ct":1,"wt":4,"cpu":4,"mu":512,"pmu":0},"_get_path_to_translation_from_lang_dir==>in_array":{"ct":2,"wt":1,"cpu":0,"mu":112,"pmu":0},"get_background_color==>get_theme_support":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_template@2==>extract":{"ct":1,"wt":7,"cpu":6,"mu":8360,"pmu":0},"get_sidebar==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_header_style==>get_theme_support":{"ct":1,"wt":4,"cpu":7,"mu":112,"pmu":0},"current_theme_supports==>func_get_args":{"ct":7,"wt":4,"cpu":0,"mu":2744,"pmu":0},"WP_Query::get_posts==>md5":{"ct":2,"wt":7,"cpu":8,"mu":240,"pmu":176},"wp_default_styles==>WP_Dependencies::add":{"ct":44,"wt":121,"cpu":124,"mu":9768,"pmu":0},"WP_User::for_site==>WP_User::get_caps_data":{"ct":10,"wt":590,"cpu":442,"mu":27208,"pmu":90088},"WP_Widget_Media::__construct==>__":{"ct":24,"wt":152,"cpu":150,"mu":112,"pmu":0},"WP_User::get_role_caps==>array_filter":{"ct":10,"wt":33,"cpu":30,"mu":3984,"pmu":0},"WP_Hook::apply_filters==>_post_format_wp_get_object_terms":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"do_action==>array_pop":{"ct":11,"wt":10,"cpu":8,"mu":112,"pmu":0},"add_query_arg==>rtrim":{"ct":25,"wt":13,"cpu":17,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>current_user_can":{"ct":2,"wt":81,"cpu":82,"mu":112,"pmu":0},"main()==>get_parent_theme_file_path":{"ct":5,"wt":176,"cpu":175,"mu":992,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::get_sql":{"ct":2,"wt":42,"cpu":42,"mu":960,"pmu":752},"is_front_page==>WP_Query::is_front_page":{"ct":14,"wt":304,"cpu":306,"mu":336,"pmu":0},"twentyseventeen_include_svg_icons==>file_exists":{"ct":1,"wt":11,"cpu":12,"mu":112,"pmu":0},"load_template==>is_sticky":{"ct":1,"wt":33,"cpu":34,"mu":224,"pmu":1752},"_wp_footer_scripts==>print_footer_scripts":{"ct":1,"wt":611,"cpu":611,"mu":1760,"pmu":0},"is_object_in_taxonomy==>get_object_taxonomies":{"ct":3,"wt":24,"cpu":23,"mu":1240,"pmu":0},"_wp_scripts_maybe_doing_it_wrong==>did_action":{"ct":18,"wt":10,"cpu":9,"mu":112,"pmu":0},"twentyseventeen_setup==>register_nav_menus":{"ct":1,"wt":5,"cpu":5,"mu":360,"pmu":0},"wp_enqueue_style==>explode":{"ct":3,"wt":1,"cpu":1,"mu":1240,"pmu":0},"esc_attr_e==>translate":{"ct":2,"wt":12,"cpu":11,"mu":112,"pmu":0},"wp_link_pages==>apply_filters":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"_deep_replace==>str_replace":{"ct":86,"wt":87,"cpu":85,"mu":112,"pmu":0},"get_categories==>get_terms":{"ct":1,"wt":966,"cpu":599,"mu":3392,"pmu":0},"convert_smilies==>count":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wpdb::remove_placeholder_escape==>str_replace":{"ct":22,"wt":23,"cpu":28,"mu":112,"pmu":0},"WP::register_globals==>WP_Query::is_author":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"feed_links_extra==>is_author":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"Requests::autoloader==>file_exists":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":112},"WP_Locale_Switcher::init==>add_filter":{"ct":1,"wt":11,"cpu":11,"mu":1448,"pmu":0},"has_nav_menu==>apply_filters":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"has_nav_menu==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"feed_links==>esc_url":{"ct":2,"wt":120,"cpu":121,"mu":112,"pmu":0},"map_meta_cap==>func_get_args":{"ct":22,"wt":14,"cpu":19,"mu":8384,"pmu":0},"get_option==>wpdb::get_row":{"ct":6,"wt":5417,"cpu":2305,"mu":-66056,"pmu":0},"WP_Styles::all_deps==>WP_Dependencies::all_deps":{"ct":2,"wt":208,"cpu":214,"mu":1984,"pmu":0},"wp_admin_bar_appearance_menu==>admin_url":{"ct":4,"wt":259,"cpu":260,"mu":384,"pmu":0},"main()==>create_initial_post_types":{"ct":1,"wt":5166,"cpu":5167,"mu":63456,"pmu":54560},"get_theme_file_uri==>get_stylesheet_directory":{"ct":5,"wt":145,"cpu":146,"mu":736,"pmu":0},"dynamic_sidebar==>wp_get_sidebars_widgets":{"ct":1,"wt":14,"cpu":14,"mu":112,"pmu":0},"WP::build_query_string==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"wpdb::parse_db_host==>strpos":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":112},"wp_get_object_terms==>wp_parse_args":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"get_month_link==>user_trailingslashit":{"ct":1,"wt":10,"cpu":10,"mu":152,"pmu":0},"Walker::walk==>Walker::display_element":{"ct":1,"wt":306,"cpu":307,"mu":4240,"pmu":0},"wpdb::prepare==>array_walk":{"ct":11,"wt":636,"cpu":639,"mu":6808,"pmu":6112},"WP_Query::get_posts==>WP_Query::fill_query_vars":{"ct":2,"wt":7,"cpu":8,"mu":112,"pmu":0},"get_post_time==>mysql2date":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Query::is_front_page==>WP_Query::is_home":{"ct":14,"wt":10,"cpu":8,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_admin_bar_render":{"ct":1,"wt":12409,"cpu":10566,"mu":65072,"pmu":58920},"get_header==>locate_template":{"ct":1,"wt":15617,"cpu":14340,"mu":103448,"pmu":115960},"get_post_class==>is_object_in_taxonomy":{"ct":3,"wt":28,"cpu":28,"mu":336,"pmu":0},"wp_set_current_user==>do_action":{"ct":1,"wt":80,"cpu":79,"mu":4232,"pmu":0},"wp_get_document_title==>is_front_page":{"ct":2,"wt":49,"cpu":49,"mu":112,"pmu":0},"WP_Widget::display_callback==>WP_Widget_Meta::widget":{"ct":1,"wt":832,"cpu":833,"mu":4368,"pmu":0},"wp_parse_str==>get_magic_quotes_gpc":{"ct":28,"wt":15,"cpu":23,"mu":112,"pmu":0},"wp_style_is==>wp_styles":{"ct":4,"wt":4,"cpu":2,"mu":112,"pmu":0},"wpdb::set_charset==>mysqli_set_charset":{"ct":1,"wt":75,"cpu":26,"mu":112,"pmu":784},"get_comment_author_link==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Admin_Bar::add_menus==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"WP_Term_Query::get_terms==>wp_array_slice_assoc":{"ct":2,"wt":8,"cpu":8,"mu":112,"pmu":1976},"wp_default_scripts==>WP_Dependencies::add_data":{"ct":1,"wt":2,"cpu":3,"mu":488,"pmu":0},"WP_Widget::display_callback==>wp_parse_args":{"ct":6,"wt":17,"cpu":17,"mu":2368,"pmu":488},"WP_Query::get_posts==>reset":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Query::parse_query==>WP_Query::fill_query_vars":{"ct":2,"wt":33,"cpu":34,"mu":5344,"pmu":3896},"get_post_class==>post_password_required":{"ct":1,"wt":79,"cpu":80,"mu":336,"pmu":0},"WP_Session_Tokens::hash_token==>function_exists":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::all_deps==>array_keys":{"ct":6,"wt":54,"cpu":55,"mu":54720,"pmu":5088},"WP_Hook::apply_filters==>wp_site_icon":{"ct":1,"wt":31,"cpu":31,"mu":784,"pmu":0},"main()==>is_front_page":{"ct":2,"wt":45,"cpu":45,"mu":112,"pmu":0},"get_the_title==>apply_filters":{"ct":5,"wt":279,"cpu":281,"mu":1264,"pmu":0},"wp_default_scripts==>__":{"ct":207,"wt":1088,"cpu":1094,"mu":224,"pmu":0},"get_post_class==>array_unique":{"ct":1,"wt":3,"cpu":2,"mu":488,"pmu":0},"wpdb::query==>wpdb::_do_query":{"ct":22,"wt":9768,"cpu":2002,"mu":376528,"pmu":22608},"WP_Query::set_found_posts==>wpdb::get_var":{"ct":1,"wt":194,"cpu":156,"mu":272,"pmu":1768},"_wp_admin_bar_init==>class_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_loginout==>__":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"wp_salt==>constant":{"ct":20,"wt":9,"cpu":13,"mu":112,"pmu":0},"WP_Query::get_posts==>serialize":{"ct":2,"wt":6,"cpu":8,"mu":8304,"pmu":1088},"print_late_styles==>WP_Styles::do_footer_items":{"ct":1,"wt":28,"cpu":28,"mu":336,"pmu":0},"locate_template@2==>load_template@2":{"ct":1,"wt":489,"cpu":488,"mu":10848,"pmu":11832},"load_template@2==>_e":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Object_Cache::add==>wp_suspend_cache_addition":{"ct":25,"wt":31,"cpu":27,"mu":512,"pmu":0},"get_permalink==>strpos":{"ct":8,"wt":7,"cpu":6,"mu":112,"pmu":0},"main()==>is_home":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_comment_author==>get_comment":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"wptexturize==>_get_wptexturize_split_regex":{"ct":19,"wt":22,"cpu":24,"mu":2112,"pmu":0},"get_stylesheet==>apply_filters":{"ct":10,"wt":7,"cpu":6,"mu":112,"pmu":0},"get_stylesheet==>apply_filters@1":{"ct":10,"wt":7,"cpu":7,"mu":112,"pmu":0},"get_search_form==>uniqid":{"ct":1,"wt":62,"cpu":10,"mu":368,"pmu":0},"get_stylesheet==>apply_filters@2":{"ct":12,"wt":10,"cpu":10,"mu":112,"pmu":0},"WP_Query::setup_postdata==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_get_admin_bar_pref==>get_user_option":{"ct":1,"wt":133,"cpu":132,"mu":1520,"pmu":16680},"wp_register==>is_user_logged_in":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"dynamic_sidebar==>sprintf":{"ct":6,"wt":16,"cpu":16,"mu":2032,"pmu":128},"WP_Taxonomy::set_props==>array_merge":{"ct":20,"wt":22,"cpu":22,"mu":17232,"pmu":1824},"apply_filters==>array_pop":{"ct":94,"wt":57,"cpu":56,"mu":112,"pmu":0},"get_network_option==>apply_filters":{"ct":3,"wt":2,"cpu":3,"mu":-40,"pmu":64},"get_network_option==>apply_filters@1":{"ct":6,"wt":7,"cpu":9,"mu":-304,"pmu":0},"get_network_option==>apply_filters@2":{"ct":15,"wt":19,"cpu":22,"mu":-1072,"pmu":0},"smilies_init==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_get_update_data==>function_exists":{"ct":1,"wt":2,"cpu":4,"mu":112,"pmu":0},"WP_Scripts::do_item==>preg_match":{"ct":8,"wt":12,"cpu":11,"mu":112,"pmu":0},"wp_start_object_cache==>wp_cache_add_global_groups":{"ct":1,"wt":10,"cpu":10,"mu":1168,"pmu":0},"WP_Rewrite::init==>WP_Rewrite::using_index_permalinks":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":224},"get_theme_file_uri==>file_exists":{"ct":5,"wt":19,"cpu":19,"mu":112,"pmu":0},"update_meta_cache==>sanitize_key":{"ct":8,"wt":46,"cpu":51,"mu":224,"pmu":0},"wp_print_head_scripts==>did_action":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Meta_Query::__construct":{"ct":2,"wt":2,"cpu":4,"mu":112,"pmu":0},"main()==>wp_initial_constants":{"ct":1,"wt":167,"cpu":167,"mu":132128,"pmu":131816},"status_header==>header":{"ct":1,"wt":2,"cpu":3,"mu":128,"pmu":0},"get_feed_link==>strpos":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP_Widget_Calendar::__construct==>__":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":0},"WP_Widget_Media_Image::__construct==>esc_url":{"ct":1,"wt":55,"cpu":55,"mu":112,"pmu":840},"esc_url==>wp_kses_normalize_entities":{"ct":79,"wt":559,"cpu":569,"mu":1488,"pmu":0},"WP_Dependencies::do_items==>WP_Styles::all_deps":{"ct":2,"wt":232,"cpu":232,"mu":2320,"pmu":0},"wp_ssl_constants==>force_ssl_admin":{"ct":1,"wt":1,"cpu":1,"mu":512,"pmu":0},"get_status_header_desc==>absint":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>WP_Locale_Switcher::init":{"ct":1,"wt":13,"cpu":13,"mu":1936,"pmu":0},"get_search_form==>esc_url":{"ct":1,"wt":84,"cpu":84,"mu":112,"pmu":0},"main()==>interface_exists":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":112},"wp_not_installed==>is_blog_installed":{"ct":1,"wt":971,"cpu":628,"mu":116424,"pmu":116216},"setup_userdata==>WP_User::__get":{"ct":5,"wt":19,"cpu":19,"mu":224,"pmu":0},"wptexturize==>strpos":{"ct":57,"wt":40,"cpu":38,"mu":112,"pmu":0},"remove_accents==>preg_match":{"ct":10,"wt":9,"cpu":10,"mu":112,"pmu":0},"WP::send_headers==>header":{"ct":3,"wt":4,"cpu":4,"mu":400,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Image::__construct":{"ct":1,"wt":350,"cpu":350,"mu":3200,"pmu":928},"WP_Session_Tokens::is_still_valid==>time":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"redirect_canonical==>WP_Rewrite::using_index_permalinks":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_blogs_of_user==>get_user_meta":{"ct":3,"wt":45,"cpu":46,"mu":224,"pmu":0},"main()==>define":{"ct":37,"wt":27,"cpu":30,"mu":1344,"pmu":736},"get_user_meta==>get_metadata":{"ct":16,"wt":652,"cpu":505,"mu":28232,"pmu":100048},"WP_Widget_Media::__construct==>array_merge":{"ct":4,"wt":4,"cpu":4,"mu":2896,"pmu":0},"get_dashboard_url==>is_multisite":{"ct":4,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_stylesheet_uri==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_enqueue_script==>wp_scripts":{"ct":6,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":15,"cpu":15,"mu":152,"pmu":0},"wp_json_encode==>_wp_json_prepare_data":{"ct":30,"wt":30,"cpu":33,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_RSS::__construct":{"ct":1,"wt":55,"cpu":56,"mu":1128,"pmu":0},"WP_Locale::get_month==>zeroise":{"ct":5,"wt":11,"cpu":11,"mu":1824,"pmu":0},"twentyseventeen_setup==>twentyseventeen_fonts_url":{"ct":1,"wt":151,"cpu":152,"mu":7608,"pmu":0},"_wp_render_title_tag==>current_theme_supports":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"spl_autoload_call==>Requests::autoloader":{"ct":1,"wt":42,"cpu":42,"mu":2216,"pmu":2528},"wp_customize_support_script==>strtolower":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>trim":{"ct":5,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_json_encode==>json_encode":{"ct":30,"wt":107,"cpu":110,"mu":46192,"pmu":16616},"WP_Comment_Query::get_comment_ids==>wp_array_slice_assoc":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"wp_get_document_title==>wptexturize":{"ct":1,"wt":21,"cpu":21,"mu":192,"pmu":0},"WP_Hook::apply_filters@3==>array_slice":{"ct":11,"wt":5,"cpu":10,"mu":4248,"pmu":704},"wp_parse_url==>parse_url":{"ct":13,"wt":26,"cpu":29,"mu":8008,"pmu":0},"WP_Hook::apply_filters@1==>esc_html":{"ct":2,"wt":13,"cpu":13,"mu":224,"pmu":0},"WP::send_headers==>header_remove":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>wp_count_comments":{"ct":1,"wt":625,"cpu":377,"mu":2072,"pmu":0},"WP_Comment_Query::get_comments==>wp_cache_get_last_changed":{"ct":1,"wt":14,"cpu":13,"mu":536,"pmu":0},"get_transient==>apply_filters@1":{"ct":2,"wt":1,"cpu":1,"mu":0,"pmu":0},"wpdb::set_prefix==>is_multisite":{"ct":2,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_get_object_terms==>apply_filters":{"ct":3,"wt":16,"cpu":16,"mu":976,"pmu":112},"kses_init==>kses_remove_filters":{"ct":2,"wt":40,"cpu":41,"mu":376,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Tag_Cloud::__construct":{"ct":1,"wt":51,"cpu":51,"mu":1136,"pmu":0},"WP_Term_Query::get_terms==>md5":{"ct":2,"wt":7,"cpu":6,"mu":240,"pmu":0},"wp_print_styles==>do_action@1":{"ct":1,"wt":36,"cpu":37,"mu":1376,"pmu":0},"Requests::autoloader@1==>dirname":{"ct":2,"wt":0,"cpu":0,"mu":272,"pmu":192},"get_random_header_image==>_get_random_header_data":{"ct":4,"wt":805,"cpu":804,"mu":896,"pmu":1488},"wp_list_pluck==>WP_List_Util::__construct":{"ct":2,"wt":2,"cpu":4,"mu":112,"pmu":0},"get_home_template==>get_query_template":{"ct":1,"wt":19,"cpu":19,"mu":208,"pmu":0},"twentyseventeen_widgets_init==>register_sidebar":{"ct":3,"wt":155,"cpu":156,"mu":1160,"pmu":0},"Requests::autoloader@1==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":80},"wp_start_object_cache==>file_exists":{"ct":1,"wt":11,"cpu":12,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>sprintf":{"ct":1,"wt":3,"cpu":1,"mu":432,"pmu":0},"WP_Comment_Query::get_comments==>_prime_comment_caches":{"ct":1,"wt":579,"cpu":319,"mu":2992,"pmu":0},"WP_Query::get_posts==>WP_Query::parse_query":{"ct":2,"wt":439,"cpu":439,"mu":7632,"pmu":8640},"WP_Widget::_register==>is_numeric":{"ct":6,"wt":2,"cpu":6,"mu":112,"pmu":0},"Walker::display_element==>array_merge":{"ct":2,"wt":2,"cpu":1,"mu":864,"pmu":0},"_prime_comment_caches==>array_map":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":0},"wp_validate_logged_in_cookie==>is_blog_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_shortcode==>trim":{"ct":8,"wt":2,"cpu":2,"mu":112,"pmu":48},"get_avatar_data==>md5":{"ct":4,"wt":4,"cpu":4,"mu":368,"pmu":0},"main()==>WP_Locale_Switcher::__construct":{"ct":1,"wt":25,"cpu":26,"mu":1160,"pmu":0},"wp_default_scripts==>strtolower":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget::display_callback==>apply_filters":{"ct":6,"wt":2,"cpu":6,"mu":112,"pmu":0},"WP_Hook::apply_filters==>check_theme_switched":{"ct":1,"wt":388,"cpu":237,"mu":-10496,"pmu":0},"get_post_type_object==>is_scalar":{"ct":7,"wt":4,"cpu":2,"mu":112,"pmu":0},"prepend_attachment==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_option==>apply_filters":{"ct":302,"wt":767,"cpu":788,"mu":-11784,"pmu":6688},"WP_Term_Query::get_terms==>update_termmeta_cache":{"ct":1,"wt":326,"cpu":179,"mu":600,"pmu":0},"get_option==>apply_filters@1":{"ct":214,"wt":767,"cpu":778,"mu":-8320,"pmu":3168},"get_option==>apply_filters@2":{"ct":186,"wt":600,"cpu":619,"mu":-8336,"pmu":568},"get_option==>apply_filters@3":{"ct":22,"wt":167,"cpu":166,"mu":576,"pmu":1848},"_close_comments_for_old_posts==>WP_Query::is_singular":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_option==>apply_filters@4":{"ct":2,"wt":15,"cpu":14,"mu":1144,"pmu":0},"twentyseventeen_time_link==>get_the_date":{"ct":2,"wt":235,"cpu":237,"mu":4176,"pmu":0},"load_template==>the_title":{"ct":1,"wt":54,"cpu":55,"mu":96,"pmu":0},"update_meta_cache==>_get_meta_table":{"ct":8,"wt":11,"cpu":14,"mu":112,"pmu":0},"map_meta_cap==>wp_is_file_mod_allowed":{"ct":3,"wt":13,"cpu":14,"mu":224,"pmu":0},"wpdb::tables==>array_merge":{"ct":3,"wt":4,"cpu":4,"mu":2200,"pmu":0},"WP_Hook::apply_filters==>wp_oembed_add_host_js":{"ct":1,"wt":12,"cpu":13,"mu":224,"pmu":0},"_wp_admin_bar_init==>WP_Admin_Bar::add_menus":{"ct":1,"wt":86,"cpu":86,"mu":12088,"pmu":12840},"WP_Styles::do_item==>WP_Dependencies::do_item":{"ct":5,"wt":4,"cpu":7,"mu":112,"pmu":0},"WP_Widget_Pages::__construct==>WP_Widget::__construct":{"ct":1,"wt":8,"cpu":8,"mu":1128,"pmu":0},"__==>translate":{"ct":1290,"wt":6482,"cpu":6590,"mu":2712,"pmu":448},"WP_Hook::do_action==>WP_Hook::apply_filters":{"ct":10,"wt":42410,"cpu":39100,"mu":624032,"pmu":584920},"WP_Hook::do_action==>WP_Hook::apply_filters@1":{"ct":2,"wt":30,"cpu":31,"mu":2200,"pmu":0},"wp_get_sidebars_widgets==>is_admin":{"ct":6,"wt":19,"cpu":24,"mu":112,"pmu":0},"network_admin_url==>is_multisite":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"main()==>function_exists":{"ct":61,"wt":46,"cpu":44,"mu":112,"pmu":72},"get_body_class==>is_rtl":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Object_Cache::_exists==>array_key_exists":{"ct":34,"wt":25,"cpu":30,"mu":112,"pmu":112},"wp_check_php_mysql_versions==>version_compare":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":112},"get_the_terms==>get_post":{"ct":5,"wt":398,"cpu":400,"mu":2352,"pmu":0},"get_theme_mod==>get_theme_mods":{"ct":29,"wt":1334,"cpu":1335,"mu":12520,"pmu":127840},"_x==>translate_with_gettext_context":{"ct":428,"wt":2393,"cpu":2401,"mu":7112,"pmu":8192},"WP_Metadata_Lazyloader::queue_objects==>add_filter":{"ct":2,"wt":26,"cpu":26,"mu":1448,"pmu":0},"WP_Scripts::__construct==>WP_Scripts::init":{"ct":1,"wt":3678,"cpu":3636,"mu":88800,"pmu":70064},"do_shortcode==>strpos":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"load_template==>get_permalink":{"ct":1,"wt":119,"cpu":120,"mu":192,"pmu":0},"get_post_format_strings==>_x":{"ct":10,"wt":61,"cpu":64,"mu":224,"pmu":0},"get_blogs_of_user==>is_multisite":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_get_custom_css_post==>get_post_stati":{"ct":1,"wt":14,"cpu":14,"mu":488,"pmu":0},"WP_Widget_Meta::widget==>wp_meta":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"redirect_canonical==>strtolower":{"ct":2,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_the_modified_date==>get_option":{"ct":1,"wt":19,"cpu":19,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_post_format_get_terms":{"ct":2,"wt":4,"cpu":5,"mu":224,"pmu":0},"redirect_canonical==>is_tag":{"ct":1,"wt":1,"cpu":2,"mu":224,"pmu":0},"WP_Term_Query::parse_order==>strtoupper":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":80},"WP_User::get_role_caps==>is_multisite":{"ct":10,"wt":7,"cpu":5,"mu":112,"pmu":0},"get_post_format_slugs==>get_post_format_strings":{"ct":1,"wt":72,"cpu":72,"mu":1032,"pmu":0},"content_url==>ltrim":{"ct":40,"wt":19,"cpu":23,"mu":1392,"pmu":0},"apply_filters@1==>func_get_args":{"ct":63,"wt":39,"cpu":54,"mu":23800,"pmu":512},"get_home_url==>is_ssl":{"ct":20,"wt":41,"cpu":39,"mu":112,"pmu":0},"add_query_arg==>func_get_args":{"ct":25,"wt":15,"cpu":21,"mu":9512,"pmu":344},"wp_style_loader_src==>wp_installing":{"ct":5,"wt":16,"cpu":15,"mu":112,"pmu":0},"get_transient==>wp_installing":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_theme_file_uri==>apply_filters@2":{"ct":5,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::query==>WP_Dependencies::recurse_deps":{"ct":1,"wt":29,"cpu":29,"mu":784,"pmu":0},"twentyseventeen_setup==>_x":{"ct":3,"wt":21,"cpu":22,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>next":{"ct":86,"wt":57,"cpu":70,"mu":112,"pmu":0},"WP_User::init==>WP_User::for_site":{"ct":10,"wt":835,"cpu":690,"mu":58784,"pmu":90088},"redirect_canonical==>is_singular":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_term==>is_wp_error":{"ct":6,"wt":6,"cpu":6,"mu":112,"pmu":112},"update_meta_cache==>array_map":{"ct":8,"wt":18,"cpu":19,"mu":3232,"pmu":0},"get_term_link==>is_wp_error":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Styles::all_deps==>apply_filters@1":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Styles::all_deps==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template==>wp_link_pages":{"ct":1,"wt":27,"cpu":27,"mu":16,"pmu":0},"WP_Term_Query::get_terms==>serialize":{"ct":4,"wt":12,"cpu":12,"mu":8816,"pmu":2344},"WP::parse_request==>get_post_types":{"ct":1,"wt":9,"cpu":9,"mu":560,"pmu":0},"wp_validate_auth_cookie==>hash_equals":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template@1==>the_custom_header_markup":{"ct":1,"wt":2145,"cpu":2145,"mu":5120,"pmu":11152},"do_action==>func_num_args":{"ct":11,"wt":4,"cpu":6,"mu":112,"pmu":0},"wp_get_custom_css==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Comment::get_instance==>WP_Comment::__construct":{"ct":2,"wt":8,"cpu":8,"mu":224,"pmu":0},"edit_post_link==>get_edit_post_link":{"ct":1,"wt":268,"cpu":272,"mu":1440,"pmu":0},"get_template_part@1==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>wp_cache_add":{"ct":1,"wt":11,"cpu":10,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Term_Query::parse_query":{"ct":2,"wt":29,"cpu":29,"mu":4512,"pmu":1896},"WP_Hook::apply_filters@2==>wp_maybe_grant_install_languages_cap":{"ct":17,"wt":38,"cpu":41,"mu":44584,"pmu":0},"get_permalink==>home_url":{"ct":4,"wt":230,"cpu":231,"mu":208,"pmu":0},"esc_url_raw==>esc_url":{"ct":7,"wt":371,"cpu":373,"mu":5864,"pmu":0},"esc_attr__==>translate":{"ct":3,"wt":14,"cpu":15,"mu":112,"pmu":0},"WP_Hook::add_filter==>_wp_filter_build_unique_id":{"ct":590,"wt":658,"cpu":717,"mu":8064,"pmu":2856},"get_post_class==>sanitize_html_class":{"ct":2,"wt":10,"cpu":10,"mu":296,"pmu":0},"WP_Scripts::do_head_items==>WP_Dependencies::do_items":{"ct":1,"wt":820,"cpu":820,"mu":5728,"pmu":18552},"get_comment_link==>wp_parse_args":{"ct":1,"wt":2,"cpu":3,"mu":488,"pmu":0},"WP_Widget_Tag_Cloud::__construct==>WP_Widget::__construct":{"ct":1,"wt":23,"cpu":22,"mu":912,"pmu":0},"WP_Scripts::init==>do_action_ref_array":{"ct":1,"wt":3676,"cpu":3635,"mu":88288,"pmu":70064},"_wp_filter_build_unique_id==>function_exists":{"ct":127,"wt":121,"cpu":145,"mu":112,"pmu":112},"wp_print_head_scripts==>do_action@1":{"ct":1,"wt":316,"cpu":316,"mu":2912,"pmu":0},"WP_Comment_Query::query==>WP_Comment_Query::get_comments":{"ct":1,"wt":1277,"cpu":726,"mu":14176,"pmu":0},"WP_Roles::for_site==>wpdb::get_blog_prefix":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":112},"wp_admin_bar_new_content_menu==>current":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_option==>wp_installing":{"ct":363,"wt":295,"cpu":272,"mu":112,"pmu":112},"esc_attr_x==>translate_with_gettext_context":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"get_post_class==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget::_register==>WP_Widget::_register_one":{"ct":11,"wt":880,"cpu":884,"mu":50936,"pmu":0},"get_categories==>_make_cat_compat":{"ct":1,"wt":4,"cpu":3,"mu":920,"pmu":0},"get_dashboard_url==>get_blogs_of_user":{"ct":2,"wt":187,"cpu":187,"mu":2560,"pmu":0},"esc_attr_x==>esc_attr":{"ct":1,"wt":96,"cpu":96,"mu":272,"pmu":0},"apply_filters@4==>array_pop":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"register_sidebar==>wp_parse_args":{"ct":3,"wt":16,"cpu":16,"mu":1240,"pmu":0},"wp_validate_auth_cookie==>wp_hash":{"ct":1,"wt":51,"cpu":51,"mu":2520,"pmu":0},"wp_debug_mode==>wp_doing_ajax":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":224},"WP_Comment_Query::get_comments==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"get_feed_link==>home_url":{"ct":4,"wt":304,"cpu":304,"mu":176,"pmu":0},"main()==>twentyseventeen_get_svg":{"ct":2,"wt":54,"cpu":54,"mu":496,"pmu":0},"get_site_icon_url==>get_option":{"ct":1,"wt":22,"cpu":21,"mu":112,"pmu":0},"get_post_format==>post_type_supports":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"twentyseventeen_custom_header_setup==>register_default_headers":{"ct":1,"wt":2,"cpu":2,"mu":248,"pmu":0},"wp_maybe_load_embeds==>wp_get_video_extensions":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":224},"adjacent_posts_rel_link_wp_head==>is_single":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"_http_build_query==>array_push":{"ct":38,"wt":36,"cpu":46,"mu":9512,"pmu":376},"wp_get_audio_extensions==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"get_archives_link==>wptexturize":{"ct":1,"wt":29,"cpu":29,"mu":264,"pmu":0},"get_search_query==>esc_attr":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"load_template@2==>esc_url":{"ct":1,"wt":46,"cpu":45,"mu":112,"pmu":0},"WP_Widget_Recent_Posts::widget==>absint":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"load_template@2==>bloginfo":{"ct":1,"wt":83,"cpu":83,"mu":136,"pmu":0},"WP_Term::get_instance==>WP_Term::filter":{"ct":4,"wt":79,"cpu":82,"mu":112,"pmu":0},"get_comment_link==>WP_Rewrite::using_permalinks":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_edit_post_link==>get_post":{"ct":1,"wt":82,"cpu":82,"mu":560,"pmu":0},"apply_filters@3==>array_shift":{"ct":12,"wt":8,"cpu":9,"mu":112,"pmu":0},"feed_links==>wp_parse_args":{"ct":1,"wt":12,"cpu":12,"mu":600,"pmu":0},"get_permalink==>strtotime":{"ct":4,"wt":22,"cpu":25,"mu":112,"pmu":0},"create_initial_post_types==>__":{"ct":38,"wt":235,"cpu":244,"mu":112,"pmu":0},"esc_url==>strpos":{"ct":258,"wt":150,"cpu":142,"mu":112,"pmu":0},"get_avatar_data==>WP_User::__get":{"ct":4,"wt":2,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>sprintf":{"ct":4,"wt":5,"cpu":4,"mu":1392,"pmu":0},"_print_emoji_detection_script==>apply_filters@1":{"ct":5,"wt":4,"cpu":2,"mu":112,"pmu":0},"wp_magic_quotes==>get_magic_quotes_gpc":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":24},"locate_template==>file_exists":{"ct":9,"wt":46,"cpu":42,"mu":112,"pmu":0},"WP_Rewrite::init==>preg_match":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":80},"status_header==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_admin_bar_header":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_body_class==>array_unique":{"ct":1,"wt":3,"cpu":3,"mu":808,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::__construct":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"get_option==>in_array":{"ct":361,"wt":212,"cpu":215,"mu":112,"pmu":112},"WP_Widget_Media_Audio::__construct==>esc_url":{"ct":1,"wt":54,"cpu":54,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>WP_Widget_Factory::_register_widgets":{"ct":1,"wt":6907,"cpu":6867,"mu":189488,"pmu":193840},"main()==>load_default_textdomain":{"ct":1,"wt":448,"cpu":303,"mu":-56792,"pmu":0},"add_post_type_support==>func_num_args":{"ct":64,"wt":33,"cpu":61,"mu":112,"pmu":0},"feed_links_extra==>__":{"ct":7,"wt":44,"cpu":44,"mu":112,"pmu":0},"WP_Styles::do_item==>apply_filters@1":{"ct":5,"wt":5,"cpu":6,"mu":112,"pmu":0},"_print_emoji_detection_script==>includes_url":{"ct":1,"wt":166,"cpu":167,"mu":256,"pmu":0},"wp_kses_bad_protocol_once==>wp_kses_bad_protocol_once2":{"ct":83,"wt":1137,"cpu":1136,"mu":3328,"pmu":0},"get_comment_author_url==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_default_styles==>site_url":{"ct":1,"wt":49,"cpu":49,"mu":1056,"pmu":0},"wp_get_custom_css_post==>sanitize_title":{"ct":1,"wt":120,"cpu":120,"mu":1240,"pmu":0},"WP_Widget::_register==>WP_Widget::_set":{"ct":17,"wt":73,"cpu":80,"mu":768,"pmu":0},"load_template==>esc_attr_e":{"ct":1,"wt":18,"cpu":18,"mu":336,"pmu":0},"WP::send_headers==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>twentyseventeen_widgets_init":{"ct":1,"wt":269,"cpu":270,"mu":2624,"pmu":0},"wpdb::db_connect==>wpdb::select":{"ct":1,"wt":44,"cpu":21,"mu":224,"pmu":0},"_n==>NOOP_Translations::translate_plural":{"ct":8,"wt":5,"cpu":7,"mu":112,"pmu":0},"redirect_canonical==>implode":{"ct":1,"wt":2,"cpu":2,"mu":240,"pmu":0},"wp_cookie_constants==>get_site_option":{"ct":1,"wt":63,"cpu":63,"mu":896,"pmu":2168},"WP_Hook::apply_filters==>wpdb::remove_placeholder_escape":{"ct":14,"wt":525,"cpu":533,"mu":17248,"pmu":6928},"get_front_page_template==>get_query_template":{"ct":1,"wt":34,"cpu":34,"mu":1536,"pmu":0},"Walker::display_element==>Walker_Category::start_el":{"ct":1,"wt":297,"cpu":296,"mu":3872,"pmu":0},"capital_P_dangit==>_x":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"wp_admin_bar_edit_menu==>is_admin":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"get_theme_mod==>get_template_directory_uri":{"ct":15,"wt":1190,"cpu":1186,"mu":1872,"pmu":0},"WP_Comment_Query::get_comment_ids==>wpdb::prepare":{"ct":1,"wt":71,"cpu":71,"mu":376,"pmu":0},"get_the_terms==>apply_filters":{"ct":5,"wt":1,"cpu":3,"mu":112,"pmu":0},"WP_Widget_Categories::widget==>apply_filters":{"ct":2,"wt":56,"cpu":56,"mu":152,"pmu":0},"WP_Object_Cache::get==>WP_Object_Cache::_exists":{"ct":842,"wt":650,"cpu":721,"mu":224,"pmu":112},"wp_get_nocache_headers==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_search_menu":{"ct":1,"wt":140,"cpu":140,"mu":1696,"pmu":0},"register_post_type==>WP_Post_Type::add_rewrite_rules":{"ct":16,"wt":16,"cpu":20,"mu":136,"pmu":0},"get_body_class==>is_archive":{"ct":2,"wt":5,"cpu":4,"mu":224,"pmu":0},"register_post_type==>WP_Post_Type::add_supports":{"ct":16,"wt":185,"cpu":186,"mu":4384,"pmu":0},"wp_admin_bar_my_account_menu==>wp_logout_url":{"ct":1,"wt":187,"cpu":187,"mu":608,"pmu":0},"get_bloginfo==>get_feed_link":{"ct":2,"wt":180,"cpu":181,"mu":440,"pmu":0},"WP_Widget_Text::_register_one==>wp_add_inline_script":{"ct":1,"wt":3715,"cpu":3674,"mu":90760,"pmu":70064},"get_current_network_id==>is_multisite":{"ct":8,"wt":11,"cpu":13,"mu":112,"pmu":112},"main()==>wp_templating_constants":{"ct":1,"wt":78,"cpu":78,"mu":2160,"pmu":0},"WP_Nav_Menu_Widget::__construct==>WP_Widget::__construct":{"ct":1,"wt":16,"cpu":16,"mu":904,"pmu":0},"main()==>create_initial_taxonomies":{"ct":1,"wt":1967,"cpu":1968,"mu":39520,"pmu":50696},"WP_Comment_Query::parse_query==>wp_parse_args":{"ct":1,"wt":3,"cpu":3,"mu":2728,"pmu":0},"reset_mbstring_encoding==>mbstring_binary_safe_encoding":{"ct":26,"wt":15,"cpu":17,"mu":112,"pmu":112},"home_url==>get_home_url":{"ct":17,"wt":1071,"cpu":1074,"mu":1784,"pmu":0},"wp_admin_bar_site_menu==>is_user_logged_in":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Widget_Pages::__construct==>__":{"ct":2,"wt":12,"cpu":11,"mu":112,"pmu":0},"WP_Locale::init==>_x":{"ct":32,"wt":217,"cpu":226,"mu":112,"pmu":0},"_register_widget_form_callback==>array_slice":{"ct":17,"wt":10,"cpu":13,"mu":6504,"pmu":0},"translate_with_gettext_context==>get_translations_for_domain":{"ct":429,"wt":831,"cpu":857,"mu":6440,"pmu":8192},"main()==>is_robots":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>WP_Admin_Bar::_render_group":{"ct":2,"wt":1545,"cpu":1545,"mu":1792,"pmu":0},"wp_post_preview_js==>is_preview":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::do_action@2==>WP_Hook::apply_filters@2":{"ct":1,"wt":3667,"cpu":3627,"mu":88352,"pmu":70064},"WP_Taxonomy::add_hooks==>add_filter":{"ct":10,"wt":69,"cpu":70,"mu":6144,"pmu":0},"get_comment_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media::_register_one==>WP_Widget::_register_one":{"ct":4,"wt":422,"cpu":425,"mu":16656,"pmu":0},"main()==>error_reporting":{"ct":1,"wt":1,"cpu":1,"mu":520,"pmu":0},"wp_kses_bad_protocol_once==>preg_split":{"ct":83,"wt":87,"cpu":109,"mu":39992,"pmu":0},"wp_default_scripts==>sprintf":{"ct":3,"wt":3,"cpu":3,"mu":5040,"pmu":0},"main()==>is_main_site":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":176},"add_permastruct==>WP_Rewrite::add_permastruct":{"ct":3,"wt":26,"cpu":26,"mu":2088,"pmu":0},"load_default_textdomain==>get_locale":{"ct":1,"wt":415,"cpu":270,"mu":-58456,"pmu":0},"esc_sql==>wpdb::_escape":{"ct":7,"wt":155,"cpu":157,"mu":504,"pmu":1624},"utf8_uri_encode==>mbstring_binary_safe_encoding":{"ct":13,"wt":8,"cpu":7,"mu":112,"pmu":0},"WP_Taxonomy::__construct==>WP_Taxonomy::set_props":{"ct":10,"wt":3063,"cpu":3063,"mu":34632,"pmu":54656},"get_taxonomy_labels==>_get_custom_object_labels":{"ct":10,"wt":109,"cpu":108,"mu":18784,"pmu":20192},"WP_Widget_Custom_HTML::_register_one==>WP_Widget::_register_one":{"ct":1,"wt":31,"cpu":32,"mu":6168,"pmu":0},"is_serialized==>substr":{"ct":80,"wt":64,"cpu":76,"mu":2672,"pmu":48},"WP_Hook::apply_filters==>_wp_admin_bar_init":{"ct":1,"wt":917,"cpu":918,"mu":52384,"pmu":35856},"get_post_type==>get_post":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"main()==>is_feed":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wptexturize==>array_values":{"ct":3,"wt":3,"cpu":2,"mu":1240,"pmu":0},"update_postmeta_cache==>update_meta_cache":{"ct":3,"wt":376,"cpu":205,"mu":896,"pmu":0},"wp_resource_hints==>esc_attr":{"ct":5,"wt":50,"cpu":50,"mu":224,"pmu":0},"WP_Query::get_posts==>join":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"smilies_init==>wp_spaces_regexp":{"ct":1,"wt":2,"cpu":3,"mu":624,"pmu":0},"WP_Rewrite::init==>get_option":{"ct":1,"wt":25,"cpu":26,"mu":112,"pmu":112},"utf8_uri_encode==>ord":{"ct":120,"wt":73,"cpu":67,"mu":112,"pmu":32},"main()==>add_action":{"ct":198,"wt":997,"cpu":940,"mu":181680,"pmu":164280},"WP_Widget_Archives::widget==>__":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>sanitize_key":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_comments":{"ct":1,"wt":1285,"cpu":734,"mu":9608,"pmu":0},"wp_register_sidebar_widget==>array_slice":{"ct":17,"wt":13,"cpu":14,"mu":6504,"pmu":0},"get_theme_mod==>get_stylesheet_directory_uri":{"ct":15,"wt":1085,"cpu":1077,"mu":1424,"pmu":0},"get_post_class==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"main()==>is_embed":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_prototype_before_jquery==>array_search":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_User::has_prop==>WP_User::__isset":{"ct":2,"wt":25,"cpu":26,"mu":672,"pmu":0},"WP_Widget_Custom_HTML::__construct==>__":{"ct":2,"wt":20,"cpu":21,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>_canonical_charset":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"is_home==>WP_Query::is_home":{"ct":8,"wt":5,"cpu":3,"mu":112,"pmu":0},"feed_links==>apply_filters@1":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::prepare==>count":{"ct":12,"wt":4,"cpu":11,"mu":112,"pmu":0},"WP_Scripts::print_extra_script==>WP_Dependencies::get_data":{"ct":9,"wt":7,"cpu":6,"mu":112,"pmu":0},"get_search_form==>ob_get_clean":{"ct":1,"wt":9,"cpu":9,"mu":-15712,"pmu":0},"get_locale_stylesheet_uri==>get_stylesheet_directory_uri":{"ct":1,"wt":120,"cpu":119,"mu":416,"pmu":0},"WP_Dependencies::all_deps==>WP_Dependencies::set_group":{"ct":4,"wt":12,"cpu":13,"mu":488,"pmu":0},"wp_next_scheduled==>_get_cron_array":{"ct":3,"wt":84,"cpu":83,"mu":19552,"pmu":2912},"feed_links_extra==>is_tag":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_nonce_url==>wp_create_nonce":{"ct":3,"wt":109,"cpu":110,"mu":792,"pmu":0},"_register_widget_form_callback==>func_get_args":{"ct":17,"wt":17,"cpu":19,"mu":6504,"pmu":0},"WP_User::has_cap==>array_slice":{"ct":22,"wt":12,"cpu":15,"mu":1664,"pmu":0},"wp_ssl_constants==>parse_url":{"ct":1,"wt":3,"cpu":3,"mu":144,"pmu":0},"wp_is_ini_value_changeable==>function_exists":{"ct":1,"wt":4,"cpu":3,"mu":112,"pmu":112},"get_custom_logo==>is_multisite":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::determine_charset==>compact":{"ct":1,"wt":3,"cpu":3,"mu":488,"pmu":88},"get_edit_post_link==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_filter_object_list==>WP_List_Util::pluck":{"ct":9,"wt":26,"cpu":28,"mu":864,"pmu":0},"_custom_header_background_just_in_time==>add_theme_support":{"ct":1,"wt":21,"cpu":21,"mu":384,"pmu":0},"the_permalink==>esc_url":{"ct":1,"wt":61,"cpu":62,"mu":112,"pmu":0},"set_url_scheme==>substr":{"ct":110,"wt":71,"cpu":70,"mu":3632,"pmu":0},"WP::send_headers==>wp_get_nocache_headers":{"ct":1,"wt":4,"cpu":4,"mu":712,"pmu":0},"wp_default_scripts==>WP_Scripts::localize":{"ct":21,"wt":687,"cpu":687,"mu":8568,"pmu":23792},"wp_generator==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_archives==>wp_cache_get_last_changed":{"ct":1,"wt":14,"cpu":15,"mu":160,"pmu":0},"wp_resource_hints==>trim":{"ct":4,"wt":1,"cpu":2,"mu":416,"pmu":0},"get_stylesheet==>get_option":{"ct":32,"wt":630,"cpu":627,"mu":112,"pmu":0},"feed_links_extra==>is_singular":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_replace_in_html_tags==>wp_html_split":{"ct":2,"wt":11,"cpu":12,"mu":1872,"pmu":0},"get_stylesheet_directory_uri==>get_stylesheet":{"ct":23,"wt":488,"cpu":492,"mu":336,"pmu":0},"twentyseventeen_scripts==>twentyseventeen_fonts_url":{"ct":1,"wt":101,"cpu":101,"mu":496,"pmu":2656},"get_header_textcolor==>get_theme_mod":{"ct":2,"wt":418,"cpu":419,"mu":752,"pmu":2048},"get_network_option==>get_option":{"ct":8,"wt":6479,"cpu":3667,"mu":29608,"pmu":33632},"smilies_init==>get_option":{"ct":1,"wt":22,"cpu":21,"mu":112,"pmu":0},"WP_Query::init==>WP_Query::init_query_flags":{"ct":2,"wt":10,"cpu":12,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>get_current_user_id":{"ct":1,"wt":8,"cpu":7,"mu":112,"pmu":0},"get_avatar==>join":{"ct":2,"wt":2,"cpu":1,"mu":224,"pmu":0},"print_footer_scripts==>WP_Scripts::do_footer_items":{"ct":1,"wt":592,"cpu":593,"mu":1200,"pmu":0},"wp_get_archives==>get_post_type_object":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>wp_admin_bar_appearance_menu":{"ct":1,"wt":497,"cpu":497,"mu":3776,"pmu":0},"admin_url==>get_admin_url":{"ct":31,"wt":2226,"cpu":2237,"mu":5608,"pmu":3216},"WP_Rewrite::get_date_permastruct==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpautop==>preg_replace_callback":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>esc_url":{"ct":1,"wt":62,"cpu":63,"mu":112,"pmu":0},"wp_oembed_add_discovery_links==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>array_keys":{"ct":73,"wt":53,"cpu":60,"mu":27880,"pmu":808},"WP_Query::__isset==>in_array":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>sanitize_title_with_dashes":{"ct":7,"wt":531,"cpu":534,"mu":424,"pmu":1008},"wp_resource_hints==>is_numeric":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_register_sidebar_widget==>func_get_args":{"ct":17,"wt":19,"cpu":24,"mu":6504,"pmu":0},"get_available_languages==>glob":{"ct":1,"wt":7,"cpu":7,"mu":168,"pmu":0},"WP_Taxonomy::set_props==>get_taxonomy_labels":{"ct":10,"wt":2528,"cpu":2528,"mu":26680,"pmu":47928},"is_tag==>WP_Query::is_tag":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"add_query_arg==>substr":{"ct":25,"wt":13,"cpu":18,"mu":2016,"pmu":56},"get_the_terms==>get_object_term_cache":{"ct":5,"wt":101,"cpu":101,"mu":712,"pmu":0},"wp_set_wpdb_vars==>is_wp_error":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"rest_api_register_rewrites==>add_rewrite_rule":{"ct":4,"wt":28,"cpu":29,"mu":936,"pmu":0},"update_post_caches==>update_object_term_cache":{"ct":3,"wt":1003,"cpu":708,"mu":19104,"pmu":23816},"WP_Rewrite::add_rule==>array_merge":{"ct":4,"wt":2,"cpu":3,"mu":1616,"pmu":0},"WP::main==>WP::handle_404":{"ct":1,"wt":32,"cpu":31,"mu":1944,"pmu":0},"WP_Hook::apply_filters@3==>_config_wp_siteurl":{"ct":8,"wt":6,"cpu":7,"mu":112,"pmu":0},"WP_Nav_Menu_Widget::__construct==>__":{"ct":2,"wt":18,"cpu":21,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>_get_meta_table":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"redirect_canonical==>is_search":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"add_theme_support==>wp_parse_args":{"ct":3,"wt":6,"cpu":8,"mu":1184,"pmu":0},"wp_get_object_terms==>array_map":{"ct":2,"wt":70,"cpu":72,"mu":984,"pmu":488},"WP_Term_Query::parse_orderby==>strtolower":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":112},"twentyseventeen_setup==>load_theme_textdomain":{"ct":1,"wt":74,"cpu":74,"mu":3520,"pmu":0},"WP_User::has_cap==>func_get_args":{"ct":22,"wt":10,"cpu":18,"mu":8384,"pmu":0},"wp_enqueue_style==>wp_styles":{"ct":4,"wt":446,"cpu":447,"mu":27688,"pmu":5560},"_register_widget_form_callback==>strtolower":{"ct":17,"wt":16,"cpu":19,"mu":112,"pmu":0},"wpdb::set_charset==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_post==>WP_Post::get_instance":{"ct":16,"wt":1420,"cpu":1411,"mu":8176,"pmu":0},"WP_Hook::apply_filters==>rest_api_init":{"ct":1,"wt":46,"cpu":46,"mu":1680,"pmu":0},"get_search_form==>apply_filters":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_transient==>get_option":{"ct":1,"wt":31,"cpu":31,"mu":112,"pmu":0},"wp_load_alloptions==>wp_cache_add":{"ct":1,"wt":14,"cpu":15,"mu":1712,"pmu":0},"WP_Embed::run_shortcode==>do_shortcode":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Post::get_instance==>sanitize_post":{"ct":16,"wt":1196,"cpu":1199,"mu":42416,"pmu":0},"WP_Hook::apply_filters==>rest_output_link_wp_head":{"ct":1,"wt":226,"cpu":226,"mu":336,"pmu":0},"get_post_type_labels==>_get_custom_object_labels":{"ct":16,"wt":215,"cpu":219,"mu":28560,"pmu":24912},"wp_get_server_protocol==>in_array":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_template==>__":{"ct":2,"wt":17,"cpu":17,"mu":112,"pmu":0},"get_term==>apply_filters":{"ct":12,"wt":9,"cpu":10,"mu":-48,"pmu":112},"get_term_link==>apply_filters":{"ct":3,"wt":14,"cpu":16,"mu":976,"pmu":0},"smilies_init==>count":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Admin_Bar::remove_node==>WP_Admin_Bar::_unset_node":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>array_unique":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>WP_Scripts::add_inline_script":{"ct":2,"wt":25,"cpu":22,"mu":1840,"pmu":0},"get_search_query==>get_query_var":{"ct":1,"wt":8,"cpu":7,"mu":88,"pmu":0},"WP_Hook::add_filter==>count":{"ct":365,"wt":180,"cpu":197,"mu":112,"pmu":112},"wp_get_archives==>__":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Dependencies::all_deps@2==>explode":{"ct":2,"wt":3,"cpu":4,"mu":864,"pmu":0},"WP_Hook::apply_filters@2==>wpdb::remove_placeholder_escape":{"ct":4,"wt":254,"cpu":256,"mu":4816,"pmu":0},"redirect_canonical==>strtoupper":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"add_query_arg==>wp_parse_str":{"ct":25,"wt":201,"cpu":212,"mu":3112,"pmu":168},"wpdb::has_cap==>preg_replace":{"ct":2,"wt":3,"cpu":3,"mu":192,"pmu":0},"WP_Hook::apply_filters==>convert_smilies":{"ct":1,"wt":43,"cpu":43,"mu":800,"pmu":0},"wp_templating_constants==>define":{"ct":3,"wt":2,"cpu":2,"mu":368,"pmu":0},"_register_widget_form_callback==>array_merge":{"ct":17,"wt":22,"cpu":25,"mu":6504,"pmu":0},"main()==>wp_favicon_request":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_avatar==>get_avatar_data":{"ct":2,"wt":387,"cpu":387,"mu":1792,"pmu":1096},"WP_Scripts::do_item==>strpos":{"ct":4,"wt":2,"cpu":4,"mu":112,"pmu":0},"get_theme_file_uri==>ltrim":{"ct":5,"wt":2,"cpu":3,"mu":376,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Custom_HTML::__construct":{"ct":1,"wt":52,"cpu":53,"mu":1136,"pmu":0},"get_query_template==>preg_replace":{"ct":2,"wt":2,"cpu":3,"mu":152,"pmu":0},"has_site_icon==>get_site_icon_url":{"ct":1,"wt":26,"cpu":25,"mu":448,"pmu":0},"wp_admin_bar_wp_menu==>WP_Admin_Bar::add_menu":{"ct":6,"wt":49,"cpu":49,"mu":1048,"pmu":0},"is_post_type_viewable==>is_scalar":{"ct":9,"wt":6,"cpu":6,"mu":112,"pmu":0},"wp_register_sidebar_widget==>strtolower":{"ct":17,"wt":21,"cpu":16,"mu":112,"pmu":0},"get_admin_url==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_admin_url==>apply_filters@1":{"ct":7,"wt":7,"cpu":8,"mu":112,"pmu":0},"get_admin_url==>apply_filters@2":{"ct":18,"wt":24,"cpu":17,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>wp_logout_url":{"ct":1,"wt":212,"cpu":213,"mu":496,"pmu":0},"get_admin_url==>apply_filters@3":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"current_user_can==>WP_User::has_cap":{"ct":22,"wt":1034,"cpu":1048,"mu":3552,"pmu":3744},"get_admin_url==>apply_filters@4":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::placeholder_escape==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"WP_Hook::apply_filters==>shortcode_unautop":{"ct":1,"wt":18,"cpu":18,"mu":672,"pmu":0},"preg_replace_callback==>wp_kses_named_entities":{"ct":7,"wt":44,"cpu":47,"mu":456,"pmu":0},"wp_shortlink_wp_head==>wp_get_shortlink":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"get_option==>wp_cache_set":{"ct":2,"wt":7,"cpu":8,"mu":-264,"pmu":0},"wp_salt==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"get_theme_root_uri==>apply_filters":{"ct":18,"wt":9,"cpu":11,"mu":112,"pmu":0},"wp_salt==>apply_filters@1":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"wp_salt==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"has_post_thumbnail==>get_post_thumbnail_id":{"ct":1,"wt":155,"cpu":143,"mu":448,"pmu":0},"get_terms==>WP_Term_Query::query":{"ct":2,"wt":1660,"cpu":997,"mu":24360,"pmu":18224},"get_theme_root_uri==>apply_filters@1":{"ct":14,"wt":7,"cpu":11,"mu":112,"pmu":0},"main()==>validate_file":{"ct":1,"wt":7,"cpu":7,"mu":448,"pmu":0},"get_theme_root_uri==>apply_filters@2":{"ct":8,"wt":6,"cpu":6,"mu":112,"pmu":0},"wp_salt==>apply_filters@3":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_custom_logo==>get_theme_mod":{"ct":1,"wt":46,"cpu":46,"mu":112,"pmu":10184},"wp_salt==>apply_filters@4":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_site_icon_url==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::query==>WP_Query::init":{"ct":2,"wt":24,"cpu":24,"mu":224,"pmu":0},"create_initial_taxonomies==>__":{"ct":22,"wt":118,"cpu":115,"mu":112,"pmu":0},"WP_Query::get_posts==>get_post_type_object":{"ct":4,"wt":15,"cpu":15,"mu":224,"pmu":0},"WP_Hook::apply_filters==>wp_shortlink_wp_head":{"ct":1,"wt":8,"cpu":7,"mu":224,"pmu":0},"WP_Styles::_css_href==>esc_url":{"ct":5,"wt":608,"cpu":611,"mu":704,"pmu":0},"WP_Scripts::set_group==>WP_Dependencies::set_group":{"ct":14,"wt":20,"cpu":19,"mu":808,"pmu":0},"_n==>get_translations_for_domain":{"ct":8,"wt":28,"cpu":29,"mu":112,"pmu":0},"translate==>apply_filters":{"ct":533,"wt":380,"cpu":377,"mu":112,"pmu":112},"noindex==>get_option":{"ct":1,"wt":22,"cpu":24,"mu":112,"pmu":0},"translate==>apply_filters@1":{"ct":530,"wt":300,"cpu":318,"mu":112,"pmu":0},"translate==>apply_filters@2":{"ct":30,"wt":20,"cpu":31,"mu":112,"pmu":0},"translate==>apply_filters@3":{"ct":209,"wt":107,"cpu":103,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>current":{"ct":55,"wt":24,"cpu":37,"mu":112,"pmu":0},"WP_Comment::get_instance==>wp_cache_get":{"ct":2,"wt":8,"cpu":7,"mu":192,"pmu":0},"_custom_header_background_just_in_time==>add_action":{"ct":1,"wt":5,"cpu":5,"mu":488,"pmu":0},"walk_category_tree==>func_get_args":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"get_comment_author==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"feed_content_type==>get_default_feed":{"ct":2,"wt":5,"cpu":6,"mu":224,"pmu":0},"wp_register_sidebar_widget==>array_merge":{"ct":17,"wt":32,"cpu":27,"mu":6504,"pmu":0},"wp_get_object_terms==>count":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":112},"update_post_caches==>update_post_cache":{"ct":3,"wt":25,"cpu":24,"mu":640,"pmu":640},"main()==>WP_Locale::__construct":{"ct":1,"wt":634,"cpu":634,"mu":4752,"pmu":0},"WP_Hook::apply_filters@1==>count":{"ct":73,"wt":39,"cpu":40,"mu":112,"pmu":0},"wp_default_scripts==>WP_Dependencies::add":{"ct":147,"wt":441,"cpu":432,"mu":36200,"pmu":32184},"WP_Hook::apply_filters@1==>wp_admin_bar_my_account_item":{"ct":1,"wt":776,"cpu":776,"mu":2360,"pmu":6600},"WP_User_Meta_Session_Tokens::get_sessions==>array_map":{"ct":1,"wt":2,"cpu":3,"mu":600,"pmu":0},"get_month_link==>home_url":{"ct":1,"wt":70,"cpu":71,"mu":128,"pmu":0},"wp_fix_server_vars==>array_merge":{"ct":1,"wt":3,"cpu":2,"mu":2728,"pmu":3896},"wp_heartbeat_settings==>admin_url":{"ct":1,"wt":54,"cpu":54,"mu":2280,"pmu":0},"smilies_init==>krsort":{"ct":1,"wt":7,"cpu":8,"mu":2728,"pmu":0},"_post_format_get_terms==>in_array":{"ct":2,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>WP_Admin_Bar::add_group":{"ct":1,"wt":14,"cpu":14,"mu":1576,"pmu":0},"wp_loginout==>is_user_logged_in":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"main()==>tideways_xhprof_disable":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Styles::_css_href==>add_query_arg":{"ct":4,"wt":298,"cpu":302,"mu":512,"pmu":0},"twentyseventeen_header_style==>get_header_textcolor":{"ct":1,"wt":232,"cpu":231,"mu":880,"pmu":1008},"wp_kses_normalize_entities2==>ltrim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"language_attributes==>get_language_attributes":{"ct":1,"wt":99,"cpu":100,"mu":1496,"pmu":0},"WP_User::has_cap==>array_merge":{"ct":22,"wt":8,"cpu":17,"mu":8384,"pmu":0},"wp_cache_set==>WP_Object_Cache::set":{"ct":8,"wt":18,"cpu":20,"mu":2240,"pmu":0},"WP_Dependencies::all_deps@1==>WP_Scripts::all_deps@2":{"ct":1,"wt":37,"cpu":37,"mu":560,"pmu":0},"WP_Query::get_posts==>get_post_stati":{"ct":3,"wt":76,"cpu":77,"mu":1464,"pmu":0},"get_custom_header==>is_random_header_image":{"ct":1,"wt":403,"cpu":404,"mu":112,"pmu":16},"is_active_widget==>_get_widget_id_base":{"ct":3,"wt":18,"cpu":17,"mu":376,"pmu":0},"require_wp_db==>file_exists":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"_wp_specialchars==>wp_load_alloptions":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Object_Cache::add_global_groups==>array_merge":{"ct":1,"wt":1,"cpu":2,"mu":808,"pmu":0},"add_theme_support==>get_theme_support":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_set_lang_dir==>is_dir":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":56},"WP_Widget::display_callback==>WP_Widget_Search::widget":{"ct":1,"wt":631,"cpu":578,"mu":3304,"pmu":0},"get_user_option==>WP_User::has_prop":{"ct":2,"wt":27,"cpu":28,"mu":736,"pmu":0},"WP_Hook::apply_filters==>wp_validate_auth_cookie":{"ct":1,"wt":33,"cpu":33,"mu":2048,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_custom_header_setup":{"ct":1,"wt":159,"cpu":158,"mu":5320,"pmu":0},"load_theme_textdomain==>get_locale":{"ct":1,"wt":19,"cpu":19,"mu":2176,"pmu":0},"get_header_image_tag==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_default_styles==>get_bloginfo":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::set_found_comments":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"wp_set_current_user==>WP_User::__construct":{"ct":1,"wt":56,"cpu":57,"mu":4048,"pmu":0},"WP_User_Meta_Session_Tokens::get_sessions==>array_filter":{"ct":1,"wt":5,"cpu":4,"mu":712,"pmu":0},"get_categories==>is_wp_error":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_convert_hr_to_bytes==>strtolower":{"ct":2,"wt":2,"cpu":2,"mu":176,"pmu":176},"wp_get_archives==>WP_Locale::get_month":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"redirect_canonical==>is_trackback":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Hook::apply_filters@2==>wp_default_scripts":{"ct":1,"wt":3658,"cpu":3617,"mu":87040,"pmu":70064},"WP_Comment_Query::get_comment_ids==>array_fill":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"twentyseventeen_edit_link==>__":{"ct":1,"wt":7,"cpu":8,"mu":112,"pmu":0},"load_template@1==>esc_attr":{"ct":3,"wt":10,"cpu":12,"mu":112,"pmu":0},"WP_Hook::apply_filters==>capital_P_dangit":{"ct":6,"wt":27,"cpu":28,"mu":112,"pmu":0},"current_user_can==>array_slice":{"ct":22,"wt":18,"cpu":19,"mu":1664,"pmu":0},"_WP_Dependency::add_data==>is_scalar":{"ct":97,"wt":40,"cpu":46,"mu":112,"pmu":0},"wp_enqueue_style==>WP_Dependencies::enqueue":{"ct":4,"wt":14,"cpu":14,"mu":488,"pmu":1152},"WP_Term_Query::query==>WP_Term_Query::get_terms":{"ct":2,"wt":1655,"cpu":991,"mu":24136,"pmu":18112},"WP_Admin_Bar::add_group==>WP_Admin_Bar::add_node":{"ct":4,"wt":44,"cpu":45,"mu":2712,"pmu":0},"WP_Hook::apply_filters==>_config_wp_home":{"ct":12,"wt":10,"cpu":11,"mu":112,"pmu":0},"is_multi_author==>get_transient":{"ct":1,"wt":46,"cpu":47,"mu":672,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Text::__construct":{"ct":1,"wt":43,"cpu":43,"mu":1128,"pmu":1584},"is_archive==>WP_Query::is_archive":{"ct":3,"wt":1,"cpu":3,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>WP_Meta_Query::get_sql_clauses":{"ct":2,"wt":12,"cpu":12,"mu":336,"pmu":608},"update_meta_cache==>wpdb::get_results":{"ct":4,"wt":1128,"cpu":514,"mu":12000,"pmu":6408},"get_language_attributes==>implode":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::the_post==>WP_Query::setup_postdata":{"ct":1,"wt":154,"cpu":154,"mu":7032,"pmu":96},"wp_set_wpdb_vars==>wpdb::set_prefix":{"ct":1,"wt":106,"cpu":106,"mu":4576,"pmu":0},"get_bloginfo==>__":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"esc_url==>wp_kses_bad_protocol":{"ct":83,"wt":2242,"cpu":2244,"mu":8016,"pmu":0},"WP_Rewrite::add_rule==>substr":{"ct":4,"wt":1,"cpu":2,"mu":272,"pmu":0},"has_header_video==>get_header_video_url":{"ct":1,"wt":98,"cpu":98,"mu":560,"pmu":1280},"load_template==>language_attributes":{"ct":1,"wt":102,"cpu":101,"mu":1568,"pmu":0},"is_user_member_of_blog==>get_current_user_id":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_edit_post_link==>admin_url":{"ct":1,"wt":53,"cpu":53,"mu":112,"pmu":0},"wp_list_categories==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"main()==>__":{"ct":3,"wt":21,"cpu":21,"mu":112,"pmu":0},"WP_Query::setup_postdata==>WP_Query::get":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"current_filter==>end":{"ct":9,"wt":3,"cpu":5,"mu":112,"pmu":0},"WP_Admin_Bar::_render_group@1==>WP_Admin_Bar::_render_item@1":{"ct":17,"wt":942,"cpu":946,"mu":560,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::get_clauses":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>feed_links_extra":{"ct":1,"wt":104,"cpu":103,"mu":1344,"pmu":0},"get_body_class==>get_theme_support":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::has_cap==>wpdb::db_version":{"ct":5,"wt":22,"cpu":24,"mu":616,"pmu":48},"wp_get_active_and_valid_plugins==>get_option":{"ct":2,"wt":112,"cpu":111,"mu":504,"pmu":31544},"WP_Embed::autoembed==>str_replace":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_admin_bar_updates_menu==>wp_get_update_data":{"ct":1,"wt":4572,"cpu":2980,"mu":8568,"pmu":32120},"WP_User::__get==>get_user_meta":{"ct":2,"wt":26,"cpu":26,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Embed::autoembed":{"ct":1,"wt":18,"cpu":18,"mu":1456,"pmu":0},"redirect_canonical==>is_404":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::recent_comments_style==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Taxonomy::add_rewrite_rules==>is_admin":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP::parse_request==>home_url":{"ct":1,"wt":63,"cpu":63,"mu":496,"pmu":0},"get_body_class==>apply_filters":{"ct":1,"wt":1419,"cpu":1419,"mu":6032,"pmu":6800},"load_template@1==>extract":{"ct":3,"wt":20,"cpu":24,"mu":5744,"pmu":0},"_print_emoji_detection_script==>get_bloginfo":{"ct":1,"wt":16,"cpu":17,"mu":112,"pmu":0},"WP_Rewrite::wp_rewrite_rules==>get_option":{"ct":1,"wt":42,"cpu":43,"mu":19904,"pmu":3216},"wp_default_styles==>_x":{"ct":2,"wt":13,"cpu":14,"mu":224,"pmu":0},"get_rest_url==>get_home_url":{"ct":3,"wt":190,"cpu":191,"mu":1176,"pmu":0},"_post_type_meta_capabilities==>in_array":{"ct":210,"wt":134,"cpu":126,"mu":112,"pmu":0},"preg_replace_callback==>wp_kses_normalize_entities2":{"ct":1,"wt":6,"cpu":6,"mu":480,"pmu":0},"WP_Locale_Switcher::__construct==>array_merge":{"ct":1,"wt":3,"cpu":1,"mu":488,"pmu":0},"wp_get_update_data==>current_user_can":{"ct":3,"wt":294,"cpu":297,"mu":336,"pmu":0},"wp_ssl_constants==>get_option":{"ct":1,"wt":35,"cpu":35,"mu":112,"pmu":360},"WP_Query::get_posts==>do_action_ref_array":{"ct":2,"wt":3,"cpu":2,"mu":-688,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Recent_Posts::__construct":{"ct":1,"wt":42,"cpu":43,"mu":1136,"pmu":1328},"wp_admin_bar_search_menu==>is_admin":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"the_custom_header_markup==>has_header_video":{"ct":1,"wt":101,"cpu":101,"mu":672,"pmu":1280},"wp_salt==>in_array":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_theme_root_uri==>in_array":{"ct":40,"wt":27,"cpu":20,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>current_user_can":{"ct":5,"wt":213,"cpu":214,"mu":224,"pmu":0},"twentyseventeen_colors_css_wrap==>get_theme_mod":{"ct":1,"wt":59,"cpu":59,"mu":112,"pmu":17296},"WP_Admin_Bar::_bind==>WP_Admin_Bar::_get_nodes":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"current_user_can==>func_get_args":{"ct":22,"wt":13,"cpu":18,"mu":8384,"pmu":0},"main()==>wp_cookie_constants":{"ct":1,"wt":178,"cpu":178,"mu":3320,"pmu":4528},"WP::send_headers==>get_option":{"ct":2,"wt":70,"cpu":70,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_header_style":{"ct":1,"wt":241,"cpu":241,"mu":784,"pmu":1008},"add_editor_style==>is_admin":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Categories::__construct==>__":{"ct":2,"wt":18,"cpu":18,"mu":112,"pmu":112},"get_metadata==>maybe_unserialize":{"ct":13,"wt":109,"cpu":111,"mu":5408,"pmu":84672},"seems_utf8==>reset_mbstring_encoding":{"ct":13,"wt":22,"cpu":23,"mu":224,"pmu":224},"wp_oembed_add_host_js==>wp_enqueue_script":{"ct":1,"wt":12,"cpu":12,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>wp_cache_get_last_changed":{"ct":2,"wt":18,"cpu":20,"mu":1192,"pmu":0},"WP_Widget_Media_Image::__construct==>admin_url":{"ct":1,"wt":54,"cpu":54,"mu":176,"pmu":88}} \ No newline at end of file diff --git a/tests/data/wp-post.xhprof b/tests/data/wp-post.xhprof new file mode 100644 index 0000000..62d87fd --- /dev/null +++ b/tests/data/wp-post.xhprof @@ -0,0 +1 @@ +{"load_textdomain==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wpdb::prepare==>strpos":{"ct":27,"wt":23,"cpu":32,"mu":112,"pmu":0},"load_textdomain==>apply_filters@1":{"ct":4,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>WP_Locale_Switcher::filter_locale":{"ct":10,"wt":19,"cpu":20,"mu":384,"pmu":0},"paginate_links==>html_entity_decode":{"ct":1,"wt":2,"cpu":3,"mu":192,"pmu":0},"WP_Session_Tokens::verify==>WP_User_Meta_Session_Tokens::get_session":{"ct":1,"wt":39,"cpu":40,"mu":1560,"pmu":9960},"wp_list_comments==>Walker::paged_walk":{"ct":1,"wt":4016,"cpu":4016,"mu":19800,"pmu":0},"WP_Widget_Recent_Posts::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":6,"mu":912,"pmu":1200},"load_default_textdomain==>is_admin":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"map_meta_cap@1==>get_post":{"ct":2,"wt":21,"cpu":22,"mu":1008,"pmu":0},"get_adjacent_post==>get_current_user_id":{"ct":4,"wt":20,"cpu":18,"mu":112,"pmu":0},"rest_api_init==>WP::add_query_var":{"ct":1,"wt":7,"cpu":13,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>esc_url":{"ct":1,"wt":45,"cpu":45,"mu":112,"pmu":840},"get_comment_reply_link==>comments_open":{"ct":1,"wt":50,"cpu":50,"mu":112,"pmu":0},"wp_script_is==>WP_Dependencies::query":{"ct":1,"wt":34,"cpu":35,"mu":1008,"pmu":0},"wp_cache_get_last_changed==>wp_cache_set":{"ct":3,"wt":9,"cpu":9,"mu":1184,"pmu":0},"twentyseventeen_time_link==>esc_url":{"ct":1,"wt":45,"cpu":46,"mu":112,"pmu":0},"add_query_arg==>build_query":{"ct":37,"wt":310,"cpu":320,"mu":2680,"pmu":0},"get_comment_class==>apply_filters":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"main()==>version_compare":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"update_object_term_cache==>wp_get_object_terms":{"ct":1,"wt":1119,"cpu":711,"mu":14816,"pmu":0},"get_background_color==>get_theme_mod":{"ct":1,"wt":49,"cpu":49,"mu":224,"pmu":0},"get_network_option==>is_multisite":{"ct":8,"wt":5,"cpu":3,"mu":112,"pmu":112},"comments_template==>twentyseventeen_get_svg":{"ct":3,"wt":170,"cpu":171,"mu":800,"pmu":0},"get_header_image_tag==>apply_filters":{"ct":1,"wt":12,"cpu":12,"mu":976,"pmu":0},"twentyseventeen_body_classes==>is_archive":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_comment_link==>user_trailingslashit":{"ct":2,"wt":10,"cpu":10,"mu":272,"pmu":0},"WP_Comment_Query::fill_descendants==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"twentyseventeen_fonts_url==>add_query_arg":{"ct":2,"wt":125,"cpu":124,"mu":2672,"pmu":0},"wp_get_update_data==>get_site_transient":{"ct":2,"wt":959,"cpu":643,"mu":12128,"pmu":0},"wp_get_sidebars_widgets==>apply_filters":{"ct":4,"wt":10,"cpu":10,"mu":112,"pmu":0},"wp_get_sidebars_widgets==>apply_filters@1":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"rsd_link==>esc_url":{"ct":1,"wt":43,"cpu":43,"mu":112,"pmu":0},"wpdb::get_results==>wpdb::check_safe_collation":{"ct":9,"wt":211,"cpu":210,"mu":672,"pmu":1312},"WP_Hook::apply_filters==>_post_format_request":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"feed_links_extra==>feed_content_type":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"WP::main==>WP::parse_request":{"ct":1,"wt":2479,"cpu":2479,"mu":27752,"pmu":3216},"twentyseventeen_categorized_blog==>get_transient":{"ct":2,"wt":2712,"cpu":1647,"mu":368,"pmu":0},"wp_create_nonce==>wp_hash":{"ct":7,"wt":81,"cpu":79,"mu":480,"pmu":0},"main()==>ini_set":{"ct":2,"wt":11,"cpu":12,"mu":176,"pmu":144},"paginate_comments_links==>paginate_links":{"ct":1,"wt":361,"cpu":361,"mu":3000,"pmu":0},"WP_Locale_Switcher::__construct==>get_available_languages":{"ct":1,"wt":11,"cpu":11,"mu":336,"pmu":0},"twentyseventeen_content_width==>is_single":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":0},"wpdb::prepare==>vsprintf":{"ct":27,"wt":47,"cpu":58,"mu":8944,"pmu":56},"WP_Query::get_posts==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"sanitize_key==>strtolower":{"ct":45,"wt":33,"cpu":46,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_wp_customize_include":{"ct":1,"wt":12,"cpu":12,"mu":224,"pmu":200},"get_body_class==>get_background_color":{"ct":1,"wt":51,"cpu":51,"mu":448,"pmu":0},"WP::handle_404==>is_robots":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"wp_get_shortlink==>home_url":{"ct":2,"wt":105,"cpu":106,"mu":144,"pmu":0},"validate_file==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_template_directory==>get_theme_root":{"ct":8,"wt":46,"cpu":48,"mu":1072,"pmu":0},"WP_Rewrite::init==>strpos":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":112},"get_comment_link==>get_option":{"ct":4,"wt":82,"cpu":82,"mu":112,"pmu":0},"get_post_modified_time==>get_post":{"ct":3,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Factory::_register_widgets==>WP_Widget::_register":{"ct":17,"wt":5526,"cpu":5389,"mu":189040,"pmu":193840},"WP_Widget_Recent_Comments::widget==>_prime_post_caches":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"WP_Embed::autoembed==>wp_replace_in_html_tags":{"ct":1,"wt":70,"cpu":70,"mu":1120,"pmu":0},"register_default_headers==>array_merge":{"ct":1,"wt":1,"cpu":0,"mu":488,"pmu":0},"number_format_i18n==>apply_filters@2":{"ct":3,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Date_Query::get_sql==>WP_Date_Query::get_sql_clauses":{"ct":1,"wt":70,"cpu":71,"mu":2216,"pmu":1888},"WP_Term_Query::get_terms==>array_slice":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_template_directory_uri==>get_template":{"ct":17,"wt":365,"cpu":365,"mu":224,"pmu":0},"WP_Admin_Bar::_render_item@1==>esc_attr":{"ct":18,"wt":106,"cpu":104,"mu":112,"pmu":0},"wp_head==>do_action":{"ct":1,"wt":11757,"cpu":11136,"mu":78192,"pmu":0},"load_default_textdomain==>load_textdomain":{"ct":1,"wt":20,"cpu":20,"mu":688,"pmu":0},"WP_Widget::display_callback==>WP_Widget::is_preview":{"ct":12,"wt":10,"cpu":13,"mu":112,"pmu":0},"_wp_admin_bar_init==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_templating_constants==>get_template_directory":{"ct":1,"wt":39,"cpu":40,"mu":1088,"pmu":0},"twentyseventeen_entry_footer==>twentyseventeen_categorized_blog":{"ct":2,"wt":10334,"cpu":2766,"mu":-10256,"pmu":1064},"check_theme_switched==>get_option":{"ct":1,"wt":1856,"cpu":750,"mu":-10608,"pmu":0},"is_post_type_archive==>WP_Query::is_post_type_archive":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::parse_query==>wp_parse_args":{"ct":3,"wt":7,"cpu":8,"mu":5400,"pmu":0},"WP_Dependencies::all_deps==>WP_Scripts::set_group":{"ct":12,"wt":77,"cpu":86,"mu":1032,"pmu":0},"get_parent_theme_file_path==>get_template_directory":{"ct":6,"wt":222,"cpu":221,"mu":592,"pmu":0},"WP_User_Meta_Session_Tokens::get_sessions==>get_user_meta":{"ct":1,"wt":27,"cpu":27,"mu":1248,"pmu":9960},"wp_list_categories==>is_tag":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"Walker::display_element==>Walker_Comment::end_el":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wpdb::init_charset==>wpdb::determine_charset":{"ct":1,"wt":111,"cpu":111,"mu":1848,"pmu":200},"WP_Dependencies::do_items==>WP_Scripts::all_deps":{"ct":2,"wt":408,"cpu":419,"mu":4384,"pmu":0},"get_post_class==>array_map":{"ct":1,"wt":60,"cpu":60,"mu":488,"pmu":0},"wp_resource_hints==>esc_url":{"ct":8,"wt":483,"cpu":484,"mu":632,"pmu":0},"locate_template@1==>load_template@1":{"ct":3,"wt":3580,"cpu":3581,"mu":21480,"pmu":9992},"wp_get_document_title==>is_singular":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"paginate_comments_links==>wp_parse_args":{"ct":1,"wt":3,"cpu":3,"mu":808,"pmu":0},"get_post_comments_feed_link==>get_post":{"ct":1,"wt":62,"cpu":61,"mu":560,"pmu":0},"get_the_category_list==>WP_Rewrite::using_permalinks":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_get_update_data==>implode":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"do_action_ref_array==>array_pop":{"ct":4,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Widget::__construct==>wp_parse_args":{"ct":34,"wt":53,"cpu":56,"mu":112,"pmu":4688},"wp_default_scripts==>get_locale":{"ct":1,"wt":18,"cpu":18,"mu":336,"pmu":0},"WP_Hook::apply_filters==>wp_widgets_init":{"ct":1,"wt":7458,"cpu":7321,"mu":233000,"pmu":242848},"get_metadata==>absint":{"ct":24,"wt":38,"cpu":42,"mu":112,"pmu":0},"get_categories==>wp_parse_args":{"ct":2,"wt":7,"cpu":7,"mu":1824,"pmu":0},"get_author_posts_url==>WP_User::__get":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"feed_links==>get_bloginfo":{"ct":2,"wt":165,"cpu":164,"mu":112,"pmu":0},"get_blogs_of_user==>get_current_blog_id":{"ct":4,"wt":13,"cpu":13,"mu":112,"pmu":0},"twentyseventeen_fonts_url==>esc_url_raw":{"ct":2,"wt":295,"cpu":296,"mu":5192,"pmu":0},"wp_cookie_constants==>get_option":{"ct":2,"wt":79,"cpu":78,"mu":976,"pmu":2360},"_wp_render_title_tag==>wp_get_document_title":{"ct":1,"wt":389,"cpu":388,"mu":6016,"pmu":0},"current_user_can==>array_merge":{"ct":32,"wt":18,"cpu":27,"mu":12144,"pmu":0},"print_late_styles==>apply_filters@2":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>_e":{"ct":2,"wt":20,"cpu":20,"mu":112,"pmu":0},"wp_list_comments==>wp_parse_args":{"ct":1,"wt":11,"cpu":11,"mu":808,"pmu":0},"get_terms==>WP_Term_Query::__construct":{"ct":3,"wt":3,"cpu":5,"mu":112,"pmu":0},"WP_Query::get_queried_object==>WP_Query::__isset":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"cancel_comment_reply_link==>get_cancel_comment_reply_link":{"ct":1,"wt":35,"cpu":36,"mu":608,"pmu":0},"wp_set_current_user==>setup_userdata":{"ct":1,"wt":85,"cpu":86,"mu":4408,"pmu":328},"remove_filter==>WP_Hook::remove_filter":{"ct":10,"wt":29,"cpu":28,"mu":224,"pmu":0},"map_meta_cap==>map_meta_cap@1":{"ct":2,"wt":43,"cpu":42,"mu":1536,"pmu":0},"WP_User::get_data_by==>sanitize_user":{"ct":1,"wt":68,"cpu":68,"mu":1152,"pmu":0},"get_adjacent_post==>apply_filters":{"ct":6,"wt":3,"cpu":3,"mu":-176,"pmu":0},"get_adjacent_post==>apply_filters@1":{"ct":6,"wt":7,"cpu":8,"mu":-176,"pmu":0},"WP_User::__construct==>is_numeric":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"_register_widget_update_callback==>array_slice":{"ct":17,"wt":13,"cpu":10,"mu":6504,"pmu":0},"register_post_type==>WP_Post_Type::register_meta_boxes":{"ct":16,"wt":15,"cpu":15,"mu":112,"pmu":0},"WP_Term::get_instance==>WP_Term::__construct":{"ct":7,"wt":50,"cpu":51,"mu":112,"pmu":0},"get_term_link==>get_term":{"ct":1,"wt":146,"cpu":147,"mu":336,"pmu":0},"utf8_uri_encode==>chr":{"ct":140,"wt":64,"cpu":48,"mu":112,"pmu":112},"get_taxonomy_labels==>__":{"ct":300,"wt":1626,"cpu":1625,"mu":560,"pmu":560},"WP_Query::parse_tax_query==>do_action":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_avatar==>array_merge":{"ct":3,"wt":4,"cpu":5,"mu":2200,"pmu":0},"main()==>date_default_timezone_set":{"ct":1,"wt":238,"cpu":241,"mu":120,"pmu":88},"WP_Admin_Bar::_render_item@1==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_wp_render_title_tag":{"ct":1,"wt":395,"cpu":395,"mu":6080,"pmu":0},"WP_Hook::apply_filters==>wp_redirect_admin_locations":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"register_theme_directory==>untrailingslashit":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"wpdb::get_var==>get_object_vars":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_scripts==>wp_enqueue_script":{"ct":5,"wt":101,"cpu":104,"mu":2216,"pmu":0},"WP_Widget_Categories::widget==>wp_list_categories":{"ct":1,"wt":1421,"cpu":1089,"mu":5456,"pmu":0},"is_page==>WP_Query::is_page":{"ct":5,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_body_class==>get_background_image":{"ct":1,"wt":47,"cpu":47,"mu":336,"pmu":0},"get_comment_date==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_default_textdomain==>unload_textdomain":{"ct":1,"wt":4,"cpu":4,"mu":336,"pmu":0},"print_late_styles==>_print_styles":{"ct":1,"wt":19,"cpu":19,"mu":336,"pmu":0},"WP::build_query_string==>is_scalar":{"ct":4,"wt":2,"cpu":1,"mu":112,"pmu":0},"wptexturize==>_wptexturize_pushpop_element":{"ct":2,"wt":7,"cpu":8,"mu":560,"pmu":0},"print_head_scripts==>script_concat_settings":{"ct":1,"wt":545,"cpu":357,"mu":1856,"pmu":0},"register_sidebar==>count":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_style_add_data==>WP_Dependencies::add_data":{"ct":1,"wt":4,"cpu":3,"mu":488,"pmu":0},"get_header_image==>is_random_header_image":{"ct":3,"wt":1189,"cpu":1190,"mu":1184,"pmu":0},"get_stylesheet_uri==>get_stylesheet_directory_uri":{"ct":1,"wt":90,"cpu":89,"mu":1088,"pmu":0},"main()==>spl_autoload_call":{"ct":1,"wt":34,"cpu":35,"mu":2328,"pmu":2568},"WP_Hook::apply_filters@1==>wp_admin_bar_wp_menu":{"ct":1,"wt":209,"cpu":208,"mu":4000,"pmu":0},"WP_Term_Query::get_terms==>wp_cache_add":{"ct":3,"wt":26,"cpu":27,"mu":112,"pmu":0},"do_action==>WP_Hook::do_action":{"ct":12,"wt":41565,"cpu":39121,"mu":645752,"pmu":445920},"date_i18n==>implode":{"ct":7,"wt":6,"cpu":6,"mu":392,"pmu":0},"wp_admin_bar_search_menu==>esc_url":{"ct":1,"wt":47,"cpu":48,"mu":112,"pmu":0},"WP_Date_Query::get_compare==>in_array":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render_item@1==>is_numeric":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wpdb::set_sql_mode==>implode":{"ct":1,"wt":1,"cpu":1,"mu":240,"pmu":0},"WP_Hook::apply_filters@2==>array_slice":{"ct":52,"wt":43,"cpu":49,"mu":19664,"pmu":0},"WP_Hook::apply_filters==>esc_html":{"ct":9,"wt":83,"cpu":85,"mu":448,"pmu":0},"get_author_posts_url==>get_userdata":{"ct":1,"wt":108,"cpu":108,"mu":3792,"pmu":1528},"WP_Query::get_posts==>implode":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>WP_Admin_Bar::add_menu":{"ct":3,"wt":30,"cpu":30,"mu":344,"pmu":0},"WP_Widget_Media_Gallery::__construct==>__":{"ct":3,"wt":16,"cpu":16,"mu":112,"pmu":0},"load_template==>sprintf":{"ct":1,"wt":1,"cpu":2,"mu":432,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_my_account_menu":{"ct":1,"wt":1445,"cpu":1445,"mu":6344,"pmu":0},"get_stylesheet_directory==>get_theme_root":{"ct":7,"wt":43,"cpu":41,"mu":672,"pmu":0},"is_active_sidebar==>sanitize_title":{"ct":5,"wt":837,"cpu":840,"mu":688,"pmu":0},"ent2ncr==>array_values":{"ct":1,"wt":2,"cpu":2,"mu":12456,"pmu":0},"comment_form==>get_edit_user_link":{"ct":1,"wt":266,"cpu":266,"mu":1744,"pmu":0},"feed_links==>_x":{"ct":1,"wt":91,"cpu":88,"mu":112,"pmu":0},"wp_widgets_init==>register_widget":{"ct":17,"wt":1733,"cpu":1734,"mu":39264,"pmu":49008},"get_admin_url==>ltrim":{"ct":31,"wt":17,"cpu":24,"mu":112,"pmu":0},"wp_nonce_field==>esc_attr":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"the_permalink==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_archives==>sprintf":{"ct":1,"wt":2,"cpu":2,"mu":432,"pmu":0},"single_post_title==>get_queried_object":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_available_languages==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"Requests::autoloader==>dirname":{"ct":2,"wt":1,"cpu":2,"mu":272,"pmu":192},"WP_Widget::display_callback==>WP_Widget_Categories::widget":{"ct":1,"wt":1540,"cpu":1208,"mu":6192,"pmu":0},"is_search==>WP_Query::is_search":{"ct":4,"wt":3,"cpu":2,"mu":112,"pmu":0},"timer_start==>microtime":{"ct":1,"wt":11,"cpu":11,"mu":112,"pmu":0},"twentyseventeen_scripts==>get_theme_file_uri":{"ct":5,"wt":629,"cpu":629,"mu":1408,"pmu":0},"twentyseventeen_setup==>add_theme_support":{"ct":8,"wt":105,"cpu":105,"mu":4424,"pmu":0},"redirect_canonical==>is_single":{"ct":4,"wt":7,"cpu":6,"mu":112,"pmu":0},"site_url==>get_site_url":{"ct":17,"wt":958,"cpu":961,"mu":3688,"pmu":1528},"WP_Hook::apply_filters==>adjacent_posts_rel_link_wp_head":{"ct":1,"wt":1202,"cpu":771,"mu":2312,"pmu":0},"WP_Query::parse_query==>get_option":{"ct":1,"wt":33,"cpu":34,"mu":112,"pmu":0},"WP_Query::setup_postdata==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"Requests::autoloader==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"the_title==>get_the_title":{"ct":1,"wt":82,"cpu":82,"mu":488,"pmu":0},"wp_get_object_terms==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>admin_url":{"ct":1,"wt":69,"cpu":69,"mu":192,"pmu":0},"get_queried_object_id==>WP_Query::get_queried_object_id":{"ct":7,"wt":17,"cpu":18,"mu":336,"pmu":0},"WP_Admin_Bar::add_menus==>do_action@1":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":112},"map_meta_cap@1==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_wp_menu==>__":{"ct":10,"wt":53,"cpu":56,"mu":112,"pmu":0},"_register_widget_update_callback==>func_get_args":{"ct":17,"wt":10,"cpu":10,"mu":6504,"pmu":0},"get_term_link==>user_trailingslashit":{"ct":2,"wt":33,"cpu":34,"mu":224,"pmu":0},"WP_Widget_Media_Gallery::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":165,"cpu":165,"mu":1928,"pmu":2320},"wp_get_document_title==>implode":{"ct":1,"wt":0,"cpu":1,"mu":168,"pmu":0},"get_author_posts_url==>user_trailingslashit":{"ct":1,"wt":9,"cpu":9,"mu":264,"pmu":0},"twentyseventeen_get_svg==>esc_attr":{"ct":7,"wt":81,"cpu":80,"mu":224,"pmu":0},"WP_Widget_Recent_Comments::widget==>apply_filters":{"ct":2,"wt":63,"cpu":62,"mu":152,"pmu":0},"wp_parse_auth_cookie==>explode":{"ct":8,"wt":9,"cpu":10,"mu":5104,"pmu":0},"twentyseventeen_posted_on==>get_the_author_meta":{"ct":1,"wt":6,"cpu":6,"mu":336,"pmu":0},"twentyseventeen_include_svg_icons==>get_parent_theme_file_path":{"ct":1,"wt":59,"cpu":59,"mu":336,"pmu":0},"WP_Comment_Query::get_comments==>apply_filters_ref_array":{"ct":2,"wt":3,"cpu":3,"mu":-688,"pmu":0},"get_site_url==>apply_filters":{"ct":10,"wt":3,"cpu":8,"mu":112,"pmu":0},"get_site_url==>apply_filters@1":{"ct":12,"wt":6,"cpu":7,"mu":112,"pmu":0},"get_site_url==>apply_filters@2":{"ct":21,"wt":16,"cpu":15,"mu":112,"pmu":0},"get_site_url==>apply_filters@3":{"ct":8,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_site_url==>apply_filters@4":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Post::get_instance==>WP_Post::__construct":{"ct":39,"wt":208,"cpu":214,"mu":52216,"pmu":0},"get_comment_reply_link==>esc_attr":{"ct":1,"wt":10,"cpu":10,"mu":112,"pmu":0},"wp_get_update_data==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Term_Query::parse_query==>apply_filters":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"comment_form==>comment_form_title":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Post::get_instance==>wp_cache_get":{"ct":39,"wt":155,"cpu":166,"mu":17584,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>get_object_term_cache":{"ct":6,"wt":215,"cpu":214,"mu":2656,"pmu":0},"get_custom_header_markup==>sprintf":{"ct":1,"wt":0,"cpu":2,"mu":432,"pmu":0},"redirect_canonical==>is_year":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Widget::_register_one==>WP_Widget::_get_form_callback":{"ct":17,"wt":8,"cpu":8,"mu":6504,"pmu":0},"maybe_serialize==>is_serialized":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_javascript_detection":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_magic_quotes==>add_magic_quotes":{"ct":4,"wt":84,"cpu":85,"mu":3512,"pmu":3512},"load_template==>has_post_thumbnail":{"ct":1,"wt":46,"cpu":46,"mu":448,"pmu":0},"date_i18n==>substr":{"ct":7,"wt":3,"cpu":3,"mu":408,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_site_menu":{"ct":1,"wt":757,"cpu":757,"mu":6776,"pmu":0},"get_body_class==>is_admin_bar_showing":{"ct":1,"wt":6,"cpu":6,"mu":224,"pmu":0},"WP_Hook::apply_filters@2==>_close_comments_for_old_post":{"ct":1,"wt":23,"cpu":23,"mu":112,"pmu":0},"register_taxonomy==>WP_Taxonomy::add_rewrite_rules":{"ct":10,"wt":135,"cpu":138,"mu":8168,"pmu":0},"twentyseventeen_scripts==>get_theme_mod":{"ct":1,"wt":202,"cpu":202,"mu":1104,"pmu":0},"WP_Dependencies::enqueue==>explode":{"ct":11,"wt":6,"cpu":9,"mu":4248,"pmu":376},"WP_Embed::__construct==>add_filter":{"ct":4,"wt":51,"cpu":50,"mu":2688,"pmu":2568},"WP_Scripts::add_inline_script==>WP_Dependencies::get_data":{"ct":4,"wt":4,"cpu":4,"mu":112,"pmu":0},"register_nav_menus==>add_theme_support":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_post_modified_time==>apply_filters":{"ct":3,"wt":2,"cpu":1,"mu":112,"pmu":0},"register_sidebar==>do_action@2":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_categories==>apply_filters":{"ct":2,"wt":2,"cpu":4,"mu":112,"pmu":0},"mysql2date==>date_i18n":{"ct":7,"wt":740,"cpu":738,"mu":4896,"pmu":0},"wp_admin_bar_site_menu==>is_admin":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>WP_Locale_Switcher::filter_locale":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_user_by==>WP_User::get_data_by":{"ct":11,"wt":751,"cpu":523,"mu":6696,"pmu":0},"WP_Hook::add_filter==>ksort":{"ct":82,"wt":49,"cpu":60,"mu":112,"pmu":640},"status_header==>get_status_header_desc":{"ct":1,"wt":4,"cpu":5,"mu":248,"pmu":0},"wp_list_comments==>apply_filters":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>strpos":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_avatar_data==>strtolower":{"ct":12,"wt":12,"cpu":15,"mu":304,"pmu":0},"comment_class==>join":{"ct":1,"wt":3,"cpu":3,"mu":176,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>wp_json_encode":{"ct":1,"wt":9,"cpu":10,"mu":368,"pmu":0},"twentyseventeen_time_link==>get_the_modified_time":{"ct":1,"wt":13,"cpu":13,"mu":784,"pmu":0},"get_theme_root_uri==>get_option":{"ct":40,"wt":1324,"cpu":1324,"mu":336,"pmu":0},"get_pagenum_link==>home_url":{"ct":1,"wt":52,"cpu":52,"mu":160,"pmu":0},"WP_Styles::do_item==>WP_Styles::print_inline_style":{"ct":5,"wt":10,"cpu":10,"mu":224,"pmu":0},"get_post_comments_feed_link==>apply_filters@1":{"ct":1,"wt":1,"cpu":7,"mu":112,"pmu":0},"comment_text==>apply_filters":{"ct":1,"wt":585,"cpu":586,"mu":3928,"pmu":0},"get_post_type_labels==>__":{"ct":528,"wt":3139,"cpu":3136,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>WP_Widget::__construct":{"ct":4,"wt":25,"cpu":25,"mu":3312,"pmu":592},"WP_Widget_Media_Image::__construct==>_x":{"ct":3,"wt":16,"cpu":16,"mu":112,"pmu":0},"WP_Widget_Media_Audio::__construct==>admin_url":{"ct":1,"wt":53,"cpu":53,"mu":176,"pmu":0},"add_rewrite_rule==>WP_Rewrite::add_rule":{"ct":4,"wt":51,"cpu":62,"mu":824,"pmu":0},"wp_parse_auth_cookie==>is_ssl":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"apply_filters==>func_get_args":{"ct":131,"wt":102,"cpu":117,"mu":49368,"pmu":1280},"Walker_Category::start_el==>get_term_link":{"ct":1,"wt":258,"cpu":259,"mu":192,"pmu":0},"add_option==>wp_cache_set":{"ct":2,"wt":7,"cpu":8,"mu":-8576,"pmu":0},"get_search_form==>_x":{"ct":2,"wt":14,"cpu":15,"mu":112,"pmu":0},"get_theme_file_uri==>get_stylesheet_directory_uri":{"ct":5,"wt":420,"cpu":422,"mu":512,"pmu":0},"WP_Hook::apply_filters==>next":{"ct":178,"wt":115,"cpu":136,"mu":112,"pmu":0},"force_balance_tags==>str_replace":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"load_theme_textdomain==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>WP_Admin_Bar::add_menu":{"ct":5,"wt":54,"cpu":56,"mu":312,"pmu":0},"WP_Widget_RSS::__construct==>__":{"ct":2,"wt":11,"cpu":12,"mu":112,"pmu":0},"wptexturize==>array_merge":{"ct":2,"wt":2,"cpu":3,"mu":1504,"pmu":0},"add_theme_support==>array_keys":{"ct":1,"wt":0,"cpu":0,"mu":808,"pmu":0},"WP_Widget_Custom_HTML::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":5,"mu":912,"pmu":0},"wp_get_archives==>strtoupper":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Rewrite::using_index_permalinks==>preg_match":{"ct":9,"wt":66,"cpu":68,"mu":112,"pmu":112},"get_taxonomy_labels==>array_merge":{"ct":10,"wt":9,"cpu":10,"mu":13472,"pmu":656},"sanitize_title_with_dashes==>function_exists":{"ct":15,"wt":22,"cpu":17,"mu":112,"pmu":112},"get_stylesheet_directory_uri==>rawurlencode":{"ct":23,"wt":15,"cpu":15,"mu":1032,"pmu":0},"get_footer==>do_action":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_replace_in_html_tags==>count":{"ct":6,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_pagenum_link==>trailingslashit":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"load_default_textdomain==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>is_ssl":{"ct":1,"wt":1,"cpu":3,"mu":112,"pmu":0},"add_theme_support==>did_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::get_posts==>sanitize_title_for_query":{"ct":1,"wt":89,"cpu":89,"mu":1240,"pmu":0},"get_template_part==>do_action":{"ct":4,"wt":14,"cpu":16,"mu":5744,"pmu":0},"WP_Dependencies::all_deps@2==>WP_Scripts::set_group":{"ct":2,"wt":6,"cpu":6,"mu":112,"pmu":0},"sanitize_user==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_post_navigation==>get_next_post_link":{"ct":1,"wt":231,"cpu":232,"mu":224,"pmu":0},"twentyseventeen_edit_link==>sprintf":{"ct":1,"wt":1,"cpu":2,"mu":432,"pmu":0},"wp_validate_auth_cookie==>WP_User::__get":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Styles::_css_href==>apply_filters@1":{"ct":5,"wt":97,"cpu":97,"mu":1112,"pmu":0},"_register_widget_update_callback==>array_merge":{"ct":17,"wt":12,"cpu":16,"mu":6504,"pmu":0},"WP_Hook::apply_filters@1==>wp_maybe_grant_install_languages_cap":{"ct":5,"wt":15,"cpu":17,"mu":13192,"pmu":0},"load_template==>the_content":{"ct":1,"wt":1513,"cpu":1517,"mu":6256,"pmu":0},"WP_Widget_Media::_register_one==>add_action":{"ct":8,"wt":51,"cpu":53,"mu":5584,"pmu":0},"WP_Rewrite::add_rewrite_tag==>array_search":{"ct":3,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_validate_auth_cookie==>do_action":{"ct":2,"wt":48,"cpu":49,"mu":2536,"pmu":0},"is_admin_bar_showing==>is_embed":{"ct":3,"wt":10,"cpu":11,"mu":224,"pmu":0},"WP_Post_Type::set_props==>array_merge":{"ct":16,"wt":20,"cpu":31,"mu":21488,"pmu":0},"WP_Hook::apply_filters==>kses_init":{"ct":2,"wt":274,"cpu":275,"mu":3480,"pmu":0},"get_home_url==>apply_filters":{"ct":19,"wt":16,"cpu":11,"mu":112,"pmu":0},"get_home_url==>apply_filters@1":{"ct":14,"wt":10,"cpu":16,"mu":112,"pmu":0},"WP_Query::get_posts==>absint":{"ct":3,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_home_url==>apply_filters@2":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_home_url==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_object_in_taxonomy==>in_array":{"ct":4,"wt":4,"cpu":2,"mu":112,"pmu":0},"is_serialized==>trim":{"ct":446,"wt":209,"cpu":234,"mu":112,"pmu":112},"wpdb::get_var==>array_values":{"ct":3,"wt":3,"cpu":2,"mu":1240,"pmu":216},"get_author_posts_url==>WP_User::__isset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_query_arg==>explode":{"ct":4,"wt":3,"cpu":4,"mu":2040,"pmu":0},"WP_Widget_Media_Gallery::__construct==>array_merge":{"ct":1,"wt":0,"cpu":0,"mu":808,"pmu":0},"WP_Widget_Recent_Comments::__construct==>add_action":{"ct":1,"wt":11,"cpu":11,"mu":568,"pmu":0},"apply_filters@3==>array_pop":{"ct":12,"wt":5,"cpu":4,"mu":112,"pmu":0},"WP_Hook::apply_filters==>locale_stylesheet":{"ct":1,"wt":175,"cpu":177,"mu":1120,"pmu":0},"is_user_logged_in==>wp_get_current_user":{"ct":18,"wt":37,"cpu":38,"mu":112,"pmu":0},"load_theme_textdomain==>load_textdomain":{"ct":2,"wt":15,"cpu":15,"mu":144,"pmu":0},"wp_kses_normalize_entities==>str_replace":{"ct":104,"wt":52,"cpu":82,"mu":2608,"pmu":0},"_wp_admin_bar_init==>is_admin_bar_showing":{"ct":1,"wt":186,"cpu":186,"mu":2376,"pmu":28808},"WP_Hook::apply_filters==>_wp_specialchars":{"ct":3,"wt":96,"cpu":99,"mu":224,"pmu":0},"feed_links_extra==>comments_open":{"ct":1,"wt":105,"cpu":104,"mu":336,"pmu":0},"is_singular==>WP_Query::is_singular":{"ct":15,"wt":12,"cpu":13,"mu":112,"pmu":0},"WP_Comment::__construct==>get_object_vars":{"ct":6,"wt":5,"cpu":4,"mu":112,"pmu":0},"wp_script_add_data==>WP_Dependencies::add_data":{"ct":1,"wt":5,"cpu":5,"mu":488,"pmu":0},"get_avatar_data==>get_user_by":{"ct":4,"wt":243,"cpu":243,"mu":14832,"pmu":0},"WP_Term_Query::get_terms==>update_term_cache":{"ct":2,"wt":28,"cpu":29,"mu":1600,"pmu":0},"remove_query_arg==>add_query_arg":{"ct":2,"wt":52,"cpu":51,"mu":224,"pmu":0},"WP_Session_Tokens::get_instance==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"get_comment_time==>get_option":{"ct":1,"wt":24,"cpu":24,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_make_content_images_responsive":{"ct":1,"wt":17,"cpu":17,"mu":224,"pmu":0},"get_default_feed==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_default_feed==>apply_filters@1":{"ct":8,"wt":7,"cpu":9,"mu":112,"pmu":0},"_print_emoji_detection_script==>wp_json_encode":{"ct":1,"wt":40,"cpu":40,"mu":4208,"pmu":0},"wp_kses_bad_protocol_once==>trim":{"ct":99,"wt":48,"cpu":72,"mu":112,"pmu":0},"main()==>wp_start_object_cache":{"ct":1,"wt":71,"cpu":71,"mu":4464,"pmu":0},"WP_Comment_Query::get_comments==>wp_cache_get":{"ct":2,"wt":9,"cpu":11,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>array_merge":{"ct":3,"wt":3,"cpu":3,"mu":1240,"pmu":0},"get_terms==>taxonomy_exists":{"ct":5,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_wp_menu==>current_user_can":{"ct":1,"wt":38,"cpu":38,"mu":112,"pmu":0},"load_template@1==>esc_url":{"ct":1,"wt":124,"cpu":125,"mu":160,"pmu":0},"rest_cookie_collect_status==>current_action":{"ct":2,"wt":7,"cpu":6,"mu":336,"pmu":0},"comment_form==>__":{"ct":12,"wt":66,"cpu":65,"mu":112,"pmu":0},"get_avatar==>sprintf":{"ct":3,"wt":6,"cpu":6,"mu":1648,"pmu":0},"WP_Taxonomy::set_props==>is_admin":{"ct":9,"wt":5,"cpu":6,"mu":112,"pmu":112},"WP_Embed::run_shortcode==>remove_all_shortcodes":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_body_class==>is_page":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"is_robots==>WP_Query::is_robots":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"set_url_scheme==>is_ssl":{"ct":97,"wt":105,"cpu":105,"mu":112,"pmu":0},"map_meta_cap@1==>in_array":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"apply_filters@2==>array_shift":{"ct":58,"wt":33,"cpu":34,"mu":112,"pmu":0},"redirect_canonical==>preg_quote":{"ct":1,"wt":1,"cpu":1,"mu":152,"pmu":0},"rest_output_link_header==>esc_url_raw":{"ct":1,"wt":51,"cpu":51,"mu":168,"pmu":0},"WP_Term_Query::get_terms==>implode":{"ct":10,"wt":9,"cpu":9,"mu":576,"pmu":0},"wpdb::set_prefix==>wpdb::tables":{"ct":3,"wt":42,"cpu":43,"mu":2736,"pmu":0},"wp_maybe_decline_date==>_x":{"ct":7,"wt":49,"cpu":49,"mu":112,"pmu":0},"is_blog_installed==>wp_load_alloptions":{"ct":1,"wt":857,"cpu":505,"mu":114752,"pmu":115376},"WP_Date_Query::__construct==>WP_Date_Query::sanitize_query":{"ct":1,"wt":107,"cpu":106,"mu":2936,"pmu":2984},"is_active_sidebar==>wp_get_sidebars_widgets":{"ct":5,"wt":67,"cpu":66,"mu":224,"pmu":0},"wp_admin_bar_site_menu==>is_user_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_prime_comment_caches==>join":{"ct":1,"wt":1,"cpu":2,"mu":144,"pmu":0},"WP_Hook::apply_filters==>wp_post_preview_js":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"get_search_form==>do_action":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>esc_url":{"ct":3,"wt":248,"cpu":248,"mu":160,"pmu":0},"twentyseventeen_posted_on==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"main()==>wp_ssl_constants":{"ct":1,"wt":42,"cpu":41,"mu":992,"pmu":360},"wp_logout_url==>add_query_arg":{"ct":4,"wt":131,"cpu":132,"mu":288,"pmu":0},"wp_parse_id_list==>array_unique":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_site_transient==>wp_using_ext_object_cache":{"ct":5,"wt":4,"cpu":3,"mu":112,"pmu":0},"get_comment_time==>mysql2date":{"ct":2,"wt":190,"cpu":190,"mu":624,"pmu":0},"twentyseventeen_posted_on==>twentyseventeen_time_link":{"ct":1,"wt":806,"cpu":806,"mu":6784,"pmu":0},"get_header_image==>set_url_scheme":{"ct":3,"wt":19,"cpu":18,"mu":448,"pmu":0},"wp_admin_bar_my_account_menu==>__":{"ct":2,"wt":15,"cpu":16,"mu":112,"pmu":0},"get_body_class==>array_map":{"ct":1,"wt":57,"cpu":58,"mu":600,"pmu":0},"wpdb::set_sql_mode==>mysqli_fetch_array":{"ct":1,"wt":5,"cpu":5,"mu":680,"pmu":408},"WP_Admin_Bar::_render==>esc_attr_e":{"ct":1,"wt":16,"cpu":17,"mu":112,"pmu":0},"update_object_term_cache==>array_map":{"ct":2,"wt":6,"cpu":6,"mu":864,"pmu":0},"set_url_scheme==>trim":{"ct":137,"wt":71,"cpu":79,"mu":112,"pmu":0},"shortcode_unautop==>preg_replace":{"ct":1,"wt":73,"cpu":74,"mu":112,"pmu":0},"date_i18n==>WP_Locale::get_month_abbrev":{"ct":7,"wt":1,"cpu":5,"mu":112,"pmu":0},"WP_Dependencies::do_items==>in_array":{"ct":20,"wt":22,"cpu":25,"mu":112,"pmu":0},"is_tax==>WP_Query::is_tax":{"ct":4,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Session_Tokens::verify==>WP_Session_Tokens::hash_token":{"ct":1,"wt":5,"cpu":4,"mu":432,"pmu":0},"wp_make_content_images_responsive==>preg_match_all":{"ct":1,"wt":15,"cpu":15,"mu":544,"pmu":0},"WP_Hook::apply_filters@1==>wp_localize_jquery_ui_datepicker":{"ct":1,"wt":42,"cpu":42,"mu":1456,"pmu":0},"wptexturize==>implode":{"ct":22,"wt":22,"cpu":27,"mu":368,"pmu":0},"_get_non_cached_ids==>wp_cache_get":{"ct":8,"wt":38,"cpu":37,"mu":1208,"pmu":0},"wp_get_document_title==>is_search":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"apply_filters==>WP_Hook::apply_filters":{"ct":131,"wt":9530,"cpu":9042,"mu":105712,"pmu":71632},"wpdb::db_connect==>wpdb::init_charset":{"ct":1,"wt":121,"cpu":121,"mu":1808,"pmu":200},"wp_admin_bar_my_account_item==>__":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"get_custom_header==>current_theme_supports":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_comment_author_link==>get_comment_author_url":{"ct":2,"wt":180,"cpu":179,"mu":544,"pmu":0},"wptexturize==>array_intersect":{"ct":22,"wt":83,"cpu":96,"mu":8384,"pmu":0},"main()==>WP_Widget_Factory::__construct":{"ct":1,"wt":33,"cpu":30,"mu":1936,"pmu":1936},"WP_Date_Query::validate_column==>strpos":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"sanitize_user==>preg_replace":{"ct":3,"wt":12,"cpu":12,"mu":112,"pmu":0},"user_trailingslashit==>apply_filters":{"ct":18,"wt":23,"cpu":26,"mu":112,"pmu":0},"sanitize_title_with_dashes==>utf8_uri_encode":{"ct":15,"wt":373,"cpu":375,"mu":1144,"pmu":296},"is_user_member_of_blog==>get_userdata":{"ct":1,"wt":57,"cpu":57,"mu":3792,"pmu":0},"user_trailingslashit==>apply_filters@1":{"ct":8,"wt":7,"cpu":9,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wptexturize":{"ct":3,"wt":167,"cpu":170,"mu":344,"pmu":0},"get_rest_url==>rest_get_url_prefix":{"ct":5,"wt":10,"cpu":10,"mu":224,"pmu":0},"get_option==>func_num_args":{"ct":437,"wt":232,"cpu":255,"mu":112,"pmu":112},"post_class==>join":{"ct":1,"wt":1,"cpu":1,"mu":224,"pmu":0},"main()==>is_search":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::check_ascii==>function_exists":{"ct":27,"wt":32,"cpu":34,"mu":112,"pmu":112},"force_balance_tags==>preg_replace":{"ct":1,"wt":14,"cpu":15,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>do_action@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Archives::__construct==>WP_Widget::__construct":{"ct":1,"wt":5,"cpu":6,"mu":904,"pmu":0},"main()==>get_footer":{"ct":1,"wt":12686,"cpu":12109,"mu":109328,"pmu":9568},"get_user_option==>WP_User::get":{"ct":1,"wt":27,"cpu":27,"mu":224,"pmu":0},"get_theme_root==>get_raw_theme_root":{"ct":15,"wt":29,"cpu":27,"mu":224,"pmu":0},"wpdb::set_charset==>wpdb::prepare":{"ct":2,"wt":338,"cpu":338,"mu":7480,"pmu":10184},"get_comment_link==>get_page_of_comment":{"ct":1,"wt":39,"cpu":39,"mu":560,"pmu":0},"add_query_arg==>trim":{"ct":37,"wt":25,"cpu":30,"mu":112,"pmu":0},"load_template@1==>get_template_part@1":{"ct":1,"wt":418,"cpu":418,"mu":10704,"pmu":9992},"WP_Date_Query::validate_date_values==>mktime":{"ct":2,"wt":47,"cpu":49,"mu":728,"pmu":360},"load_template@2==>get_bloginfo":{"ct":1,"wt":66,"cpu":67,"mu":168,"pmu":0},"rest_api_register_rewrites==>rest_get_url_prefix":{"ct":4,"wt":11,"cpu":13,"mu":224,"pmu":0},"wp_parse_auth_cookie==>compact":{"ct":8,"wt":16,"cpu":16,"mu":3120,"pmu":0},"get_post_type_labels==>array_merge":{"ct":16,"wt":16,"cpu":18,"mu":21488,"pmu":656},"redirect_canonical==>preg_replace":{"ct":4,"wt":129,"cpu":129,"mu":144,"pmu":0},"wp_html_excerpt==>mb_substr":{"ct":1,"wt":3,"cpu":3,"mu":152,"pmu":0},"add_option==>do_action":{"ct":3,"wt":4,"cpu":3,"mu":112,"pmu":0},"wptexturize==>preg_split":{"ct":22,"wt":108,"cpu":106,"mu":9664,"pmu":0},"get_search_query==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_cron==>microtime":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wpdb::flush==>mysqli_free_result":{"ct":25,"wt":165,"cpu":166,"mu":-423056,"pmu":0},"current_user_can==>wp_get_current_user":{"ct":31,"wt":60,"cpu":64,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Recent_Comments::__construct":{"ct":1,"wt":146,"cpu":146,"mu":4768,"pmu":35424},"get_search_form==>get_search_query":{"ct":1,"wt":20,"cpu":20,"mu":424,"pmu":0},"current_user_can==>wp_get_current_user@1":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"twentyseventeen_scripts==>get_stylesheet_uri":{"ct":1,"wt":93,"cpu":92,"mu":1328,"pmu":0},"twentyseventeen_body_classes==>twentyseventeen_sanitize_colorscheme":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"translate==>NOOP_Translations::translate":{"ct":1328,"wt":669,"cpu":689,"mu":112,"pmu":112},"main()==>the_post_navigation":{"ct":1,"wt":501,"cpu":501,"mu":176,"pmu":0},"twentyseventeen_entry_footer==>twentyseventeen_edit_link":{"ct":1,"wt":403,"cpu":403,"mu":1120,"pmu":0},"get_feed_link==>WP_Rewrite::get_feed_permastruct":{"ct":4,"wt":15,"cpu":15,"mu":152,"pmu":0},"WP::register_globals==>WP_Query::is_single":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_get_cron_array==>get_option":{"ct":4,"wt":216,"cpu":216,"mu":26160,"pmu":21544},"is_main_site==>is_multisite":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":64},"make_clickable==>preg_split":{"ct":1,"wt":41,"cpu":41,"mu":840,"pmu":0},"WP_Comment_Query::get_comment_ids==>wpdb::get_col":{"ct":3,"wt":1977,"cpu":613,"mu":17232,"pmu":19240},"map_meta_cap==>get_comment":{"ct":2,"wt":28,"cpu":28,"mu":880,"pmu":0},"WP_Query::set_found_posts==>count":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"WP_Date_Query::sanitize_query==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_comment_class==>array_map":{"ct":1,"wt":77,"cpu":77,"mu":488,"pmu":0},"get_header_image_tag==>array_map":{"ct":1,"wt":26,"cpu":26,"mu":552,"pmu":0},"update_meta_cache==>join":{"ct":3,"wt":4,"cpu":7,"mu":208,"pmu":0},"wp_comment_form_unfiltered_html_nonce==>get_post":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>implode":{"ct":12,"wt":11,"cpu":12,"mu":976,"pmu":0},"WP_Metadata_Lazyloader::queue_objects==>do_action":{"ct":3,"wt":7,"cpu":7,"mu":112,"pmu":0},"get_sidebar==>locate_template":{"ct":1,"wt":8166,"cpu":6984,"mu":27568,"pmu":0},"dynamic_sidebar==>is_callable":{"ct":6,"wt":10,"cpu":11,"mu":112,"pmu":0},"wp_nonce_tick==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget::display_callback==>array_key_exists":{"ct":6,"wt":5,"cpu":2,"mu":112,"pmu":0},"wp_nonce_tick==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wpdb::check_ascii==>mb_check_encoding":{"ct":27,"wt":347,"cpu":356,"mu":112,"pmu":1456},"wp_nonce_tick==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Date_Query::sanitize_query==>WP_Date_Query::sanitize_query@1":{"ct":1,"wt":89,"cpu":90,"mu":1888,"pmu":2272},"wp_nonce_tick==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_nonce_tick==>apply_filters@4":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"the_generator==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Roles::init_roles==>WP_Role::__construct":{"ct":5,"wt":6,"cpu":4,"mu":112,"pmu":0},"get_header_image_tag==>get_bloginfo":{"ct":1,"wt":24,"cpu":24,"mu":112,"pmu":0},"wptexturize==>substr":{"ct":2,"wt":1,"cpu":1,"mu":176,"pmu":0},"wp_print_head_scripts==>print_head_scripts":{"ct":1,"wt":974,"cpu":786,"mu":9144,"pmu":0},"get_home_url==>parse_url":{"ct":36,"wt":115,"cpu":112,"mu":1264,"pmu":0},"load_template==>twentyseventeen_entry_footer":{"ct":1,"wt":12276,"cpu":4708,"mu":-2224,"pmu":1064},"register_post_type==>sanitize_key":{"ct":16,"wt":113,"cpu":112,"mu":448,"pmu":0},"comments_template==>__":{"ct":3,"wt":49,"cpu":51,"mu":112,"pmu":0},"get_term_link==>WP_Rewrite::get_extra_permastruct":{"ct":2,"wt":11,"cpu":12,"mu":112,"pmu":0},"wp_spaces_regexp==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_get_sidebars_widgets==>get_option":{"ct":1,"wt":70,"cpu":70,"mu":1480,"pmu":34096},"rest_get_url_prefix==>apply_filters@1":{"ct":8,"wt":5,"cpu":8,"mu":112,"pmu":0},"load_template==>wp_footer":{"ct":1,"wt":11038,"cpu":10463,"mu":102728,"pmu":9568},"rest_get_url_prefix==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"make_clickable==>substr":{"ct":3,"wt":2,"cpu":2,"mu":376,"pmu":0},"metadata_exists==>absint":{"ct":2,"wt":4,"cpu":6,"mu":112,"pmu":0},"wp_default_scripts==>is_admin":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"_prime_post_caches==>_get_non_cached_ids":{"ct":2,"wt":13,"cpu":13,"mu":112,"pmu":0},"wp_next_scheduled==>md5":{"ct":3,"wt":6,"cpu":5,"mu":304,"pmu":0},"rest_output_link_header==>header":{"ct":1,"wt":2,"cpu":1,"mu":216,"pmu":0},"WP_Scripts::do_item==>WP_Scripts::print_inline_script":{"ct":20,"wt":55,"cpu":57,"mu":224,"pmu":0},"is_sticky==>absint":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"esc_url==>strtolower":{"ct":198,"wt":105,"cpu":124,"mu":2224,"pmu":0},"WP_Widget::_register_one==>_register_widget_form_callback":{"ct":17,"wt":129,"cpu":126,"mu":14792,"pmu":0},"get_home_url==>in_array":{"ct":36,"wt":46,"cpu":46,"mu":112,"pmu":0},"wpdb::prepare==>is_scalar":{"ct":33,"wt":23,"cpu":18,"mu":112,"pmu":88},"sanitize_post==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":1448,"pmu":1440},"set_url_scheme==>preg_replace":{"ct":137,"wt":245,"cpu":264,"mu":7424,"pmu":0},"apply_filters@4==>func_get_args":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"WP_Comment_Query::get_comment_ids==>preg_split":{"ct":5,"wt":56,"cpu":56,"mu":2184,"pmu":0},"is_author==>WP_Query::is_author":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"array_map==>WP_User_Meta_Session_Tokens::prepare_session":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"_get_random_header_data==>get_theme_mod":{"ct":4,"wt":752,"cpu":751,"mu":1392,"pmu":0},"WP_Hook::apply_filters@4==>next":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_User::get_role_caps==>array_merge":{"ct":24,"wt":46,"cpu":41,"mu":62896,"pmu":0},"get_avatar_data==>sprintf":{"ct":6,"wt":12,"cpu":12,"mu":2032,"pmu":0},"WP_Admin_Bar::_render_item@1==>esc_url":{"ct":17,"wt":735,"cpu":732,"mu":1256,"pmu":0},"_print_styles==>trim":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_get_document_title==>convert_chars":{"ct":1,"wt":22,"cpu":22,"mu":224,"pmu":0},"wp_admin_bar_site_menu==>is_network_admin":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_feed_link==>get_default_feed":{"ct":4,"wt":17,"cpu":12,"mu":224,"pmu":0},"get_object_term_cache==>_prime_term_caches":{"ct":14,"wt":89,"cpu":84,"mu":336,"pmu":0},"wp_admin_bar_my_account_item==>WP_Admin_Bar::add_menu":{"ct":1,"wt":10,"cpu":9,"mu":152,"pmu":0},"wp_dependencies_unique_hosts==>in_array":{"ct":7,"wt":5,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_setup==>add_image_size":{"ct":2,"wt":10,"cpu":10,"mu":1376,"pmu":0},"load_textdomain==>is_readable":{"ct":3,"wt":17,"cpu":17,"mu":112,"pmu":0},"comment_form==>array_merge":{"ct":1,"wt":1,"cpu":4,"mu":1448,"pmu":0},"WP_Widget::display_callback==>WP_Widget::get_settings":{"ct":6,"wt":263,"cpu":263,"mu":5256,"pmu":0},"seems_utf8==>mbstring_binary_safe_encoding":{"ct":15,"wt":23,"cpu":30,"mu":760,"pmu":728},"feed_links_extra==>esc_attr":{"ct":1,"wt":46,"cpu":47,"mu":272,"pmu":0},"wp_get_archives==>get_month_link":{"ct":1,"wt":223,"cpu":223,"mu":1456,"pmu":0},"WP_User::__construct==>WP_User::get_data_by":{"ct":12,"wt":33,"cpu":31,"mu":288,"pmu":0},"WP_Widget_Media_Audio::__construct==>_x":{"ct":3,"wt":15,"cpu":16,"mu":112,"pmu":0},"get_template_directory==>apply_filters":{"ct":6,"wt":2,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>get_query_var":{"ct":5,"wt":11,"cpu":8,"mu":224,"pmu":0},"get_template_directory==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_comments@1==>WP_Comment_Query::query@1":{"ct":1,"wt":1065,"cpu":750,"mu":6960,"pmu":14312},"add_query_arg==>preg_replace":{"ct":37,"wt":94,"cpu":90,"mu":112,"pmu":0},"WP_Hook::apply_filters==>make_clickable":{"ct":1,"wt":284,"cpu":284,"mu":928,"pmu":0},"get_the_ID==>get_post":{"ct":3,"wt":7,"cpu":7,"mu":112,"pmu":0},"WP_Date_Query::get_sql_for_query==>WP_Date_Query::is_first_order_clause":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"is_blog_installed==>wp_cache_get":{"ct":2,"wt":12,"cpu":12,"mu":336,"pmu":128},"wp_login_url==>urlencode":{"ct":1,"wt":1,"cpu":1,"mu":208,"pmu":0},"redirect_canonical==>is_admin":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_edit_user_link==>current_user_can":{"ct":1,"wt":38,"cpu":38,"mu":112,"pmu":0},"seems_utf8==>ord":{"ct":140,"wt":110,"cpu":118,"mu":112,"pmu":112},"get_translations_for_domain==>_load_textdomain_just_in_time":{"ct":1770,"wt":1040,"cpu":1117,"mu":2120,"pmu":0},"is_preview==>WP_Query::is_preview":{"ct":5,"wt":2,"cpu":6,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>current_user_can":{"ct":1,"wt":132,"cpu":133,"mu":448,"pmu":0},"get_body_class==>WP_Query::get":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Roles::get_roles_data==>get_option":{"ct":1,"wt":63,"cpu":62,"mu":14304,"pmu":47048},"wp_register==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"add_permastruct==>func_num_args":{"ct":3,"wt":1,"cpu":4,"mu":112,"pmu":0},"wp_count_comments==>wp_cache_get":{"ct":1,"wt":4,"cpu":5,"mu":72,"pmu":0},"add_shortcode==>preg_match":{"ct":8,"wt":34,"cpu":36,"mu":112,"pmu":112},"WP_Scripts::print_inline_script==>WP_Dependencies::get_data":{"ct":20,"wt":19,"cpu":25,"mu":112,"pmu":0},"get_comment_reply_link==>get_comment":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP::handle_404==>is_singular":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"get_avatar_data==>absint":{"ct":22,"wt":42,"cpu":50,"mu":112,"pmu":0},"WP::parse_request==>get_taxonomies":{"ct":2,"wt":31,"cpu":31,"mu":1048,"pmu":0},"WP_Taxonomy::set_props==>sanitize_title_with_dashes":{"ct":4,"wt":331,"cpu":331,"mu":2808,"pmu":2704},"get_query_template==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":16,"pmu":0},"WP::build_query_string==>rawurlencode":{"ct":4,"wt":3,"cpu":0,"mu":248,"pmu":0},"wpautop==>strpos":{"ct":14,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>esc_url":{"ct":4,"wt":285,"cpu":285,"mu":448,"pmu":1456},"add_option==>wpdb::query":{"ct":1,"wt":6200,"cpu":191,"mu":-16136,"pmu":0},"wp_admin_bar_my_account_item==>current_user_can":{"ct":1,"wt":43,"cpu":43,"mu":112,"pmu":0},"wp_debug_mode==>apply_filters":{"ct":1,"wt":14,"cpu":15,"mu":112,"pmu":56},"twentyseventeen_body_classes==>is_multi_author":{"ct":1,"wt":36,"cpu":36,"mu":896,"pmu":0},"get_adjacent_post==>wp_cache_set":{"ct":2,"wt":8,"cpu":8,"mu":488,"pmu":0},"set_transient==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":-48,"pmu":0},"wp_resource_hints==>apply_filters@1":{"ct":5,"wt":174,"cpu":176,"mu":1800,"pmu":0},"WP_Hook::apply_filters==>array_keys":{"ct":144,"wt":122,"cpu":127,"mu":54576,"pmu":1904},"includes_url==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"includes_url==>apply_filters@3":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_site_url==>ltrim":{"ct":49,"wt":26,"cpu":33,"mu":360,"pmu":0},"main()==>is_trackback":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"trailingslashit==>untrailingslashit":{"ct":33,"wt":63,"cpu":72,"mu":1512,"pmu":0},"wp_localize_jquery_ui_datepicker==>wp_script_is":{"ct":1,"wt":40,"cpu":39,"mu":1344,"pmu":0},"WP_Widget::display_callback==>wp_suspend_cache_addition":{"ct":6,"wt":7,"cpu":7,"mu":112,"pmu":0},"maybe_unserialize==>unserialize":{"ct":79,"wt":343,"cpu":355,"mu":116840,"pmu":420288},"WP_Scripts::set_group==>WP_Dependencies::get_data":{"ct":12,"wt":15,"cpu":16,"mu":112,"pmu":0},"twentyseventeen_scripts==>twentyseventeen_get_svg":{"ct":1,"wt":46,"cpu":49,"mu":864,"pmu":0},"WP_Admin_Bar::initialize==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_ssl_constants==>define":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"WP_Widget::_register==>array_keys":{"ct":17,"wt":9,"cpu":9,"mu":2984,"pmu":0},"wp_set_lang_dir==>file_exists":{"ct":1,"wt":16,"cpu":17,"mu":112,"pmu":112},"WP_Taxonomy::set_props==>array_unique":{"ct":10,"wt":9,"cpu":8,"mu":112,"pmu":112},"get_comment_date==>get_option":{"ct":1,"wt":24,"cpu":25,"mu":112,"pmu":0},"redirect_canonical==>is_category":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"get_next_post_link==>get_adjacent_post_link":{"ct":1,"wt":230,"cpu":230,"mu":112,"pmu":0},"wp_cookie_constants==>md5":{"ct":1,"wt":3,"cpu":3,"mu":176,"pmu":0},"twentyseventeen_categorized_blog==>is_preview":{"ct":2,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Pages::__construct":{"ct":1,"wt":22,"cpu":22,"mu":1352,"pmu":0},"get_custom_header_markup==>get_header_image_tag":{"ct":1,"wt":1353,"cpu":1353,"mu":2816,"pmu":0},"WP_Hook::apply_filters@2==>_config_wp_siteurl":{"ct":31,"wt":23,"cpu":26,"mu":112,"pmu":0},"WP_Taxonomy::add_rewrite_rules==>WP::add_query_var":{"ct":3,"wt":7,"cpu":7,"mu":2840,"pmu":0},"mysql2date==>strtotime":{"ct":11,"wt":36,"cpu":36,"mu":112,"pmu":0},"wp_get_document_title==>is_404":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Query::parse_query==>strpos":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_template_directory_uri==>rawurlencode":{"ct":17,"wt":8,"cpu":9,"mu":792,"pmu":0},"wp_next_scheduled==>serialize":{"ct":3,"wt":6,"cpu":7,"mu":880,"pmu":0},"wp_default_styles==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_set_internal_encoding==>get_option":{"ct":1,"wt":267,"cpu":267,"mu":1312,"pmu":0},"rsd_link==>site_url":{"ct":1,"wt":52,"cpu":52,"mu":168,"pmu":0},"main()==>wp_magic_quotes":{"ct":1,"wt":99,"cpu":99,"mu":1232,"pmu":3536},"WP_Widget_Archives::widget==>wp_get_archives":{"ct":1,"wt":936,"cpu":654,"mu":3648,"pmu":0},"get_metadata==>wp_cache_get":{"ct":24,"wt":97,"cpu":105,"mu":-848,"pmu":0},"wp_get_shortlink==>get_post_type_object":{"ct":2,"wt":5,"cpu":4,"mu":112,"pmu":0},"main()==>is_404":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_User::get_role_caps==>WP_Roles::get_role":{"ct":12,"wt":20,"cpu":18,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>wp_enqueue_script":{"ct":1,"wt":14,"cpu":14,"mu":1048,"pmu":0},"WP_Widget_Search::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":6,"mu":904,"pmu":1192},"paginate_links==>WP_Rewrite::using_index_permalinks":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_the_term_list==>is_wp_error":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_comment_date==>mysql2date":{"ct":1,"wt":86,"cpu":86,"mu":368,"pmu":0},"twentyseventeen_posted_on==>get_the_author":{"ct":1,"wt":33,"cpu":33,"mu":1648,"pmu":0},"load_textdomain==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"load_textdomain==>do_action@1":{"ct":2,"wt":3,"cpu":1,"mu":112,"pmu":0},"wpdb::get_blog_prefix==>is_multisite":{"ct":18,"wt":10,"cpu":11,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>absint":{"ct":12,"wt":27,"cpu":25,"mu":112,"pmu":0},"twentyseventeen_setup==>__":{"ct":4,"wt":56,"cpu":57,"mu":2152,"pmu":0},"load_template@1==>printf":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"apply_filters@2==>WP_Hook::apply_filters@2":{"ct":58,"wt":728,"cpu":725,"mu":51352,"pmu":0},"wp_get_custom_css==>get_stylesheet":{"ct":1,"wt":20,"cpu":21,"mu":112,"pmu":0},"WP_Dependencies::all_deps@1==>explode":{"ct":6,"wt":8,"cpu":11,"mu":2368,"pmu":0},"WP_Roles::for_site==>get_current_blog_id":{"ct":1,"wt":4,"cpu":4,"mu":336,"pmu":336},"wp_admin_bar_appearance_menu==>__":{"ct":4,"wt":24,"cpu":24,"mu":112,"pmu":0},"wpdb::query==>mysqli_fetch_object":{"ct":166,"wt":185,"cpu":190,"mu":96208,"pmu":72272},"twentyseventeen_entry_footer==>get_post_type":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"Walker_Comment::html5_comment==>__":{"ct":3,"wt":38,"cpu":40,"mu":112,"pmu":0},"get_categories==>array_keys":{"ct":2,"wt":0,"cpu":2,"mu":864,"pmu":0},"WP_Widget_Recent_Comments::__construct==>__":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":112},"wp_maybe_load_widgets==>apply_filters@1":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_language_attributes==>esc_attr":{"ct":1,"wt":17,"cpu":17,"mu":112,"pmu":0},"Walker_Comment::start_el==>ob_get_clean":{"ct":1,"wt":2,"cpu":2,"mu":-14304,"pmu":0},"wp_get_archives==>get_archives_link":{"ct":1,"wt":142,"cpu":142,"mu":656,"pmu":0},"redirect_canonical==>WP_Rewrite::using_permalinks":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"paginate_links==>trailingslashit":{"ct":1,"wt":3,"cpu":3,"mu":192,"pmu":0},"load_template==>has_nav_menu":{"ct":2,"wt":290,"cpu":291,"mu":224,"pmu":336},"twentyseventeen_scripts==>wp_script_add_data":{"ct":1,"wt":8,"cpu":8,"mu":712,"pmu":0},"wp_widgets_init==>get_option":{"ct":1,"wt":20,"cpu":20,"mu":112,"pmu":0},"WP_Styles::_css_href==>preg_match":{"ct":5,"wt":167,"cpu":169,"mu":112,"pmu":0},"wp_get_current_user@1==>_wp_get_current_user@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_theme_support==>array_intersect_key":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_stylesheet_directory==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_stylesheet_directory==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_replace_in_html_tags==>strpos":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_stylesheet_directory==>apply_filters@2":{"ct":5,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_option==>untrailingslashit":{"ct":141,"wt":239,"cpu":250,"mu":224,"pmu":224},"wp_maintenance==>file_exists":{"ct":1,"wt":33,"cpu":34,"mu":112,"pmu":0},"the_custom_header_markup==>is_header_video_active":{"ct":1,"wt":57,"cpu":57,"mu":560,"pmu":0},"wp_start_object_cache==>function_exists":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Roles::__construct==>WP_Roles::for_site":{"ct":1,"wt":95,"cpu":96,"mu":16728,"pmu":47648},"WP_Hook::apply_filters@1==>wp_customize_support_script":{"ct":1,"wt":122,"cpu":123,"mu":560,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_option":{"ct":1,"wt":26,"cpu":26,"mu":112,"pmu":0},"paginate_comments_links==>user_trailingslashit":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_dependencies_unique_hosts==>wp_parse_url":{"ct":10,"wt":62,"cpu":66,"mu":6384,"pmu":0},"WP_Hook::resort_active_iterations==>next":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"WP_Dependencies::add_data==>_WP_Dependency::add_data":{"ct":97,"wt":167,"cpu":168,"mu":24288,"pmu":5424},"wp_default_scripts==>esc_url":{"ct":1,"wt":76,"cpu":76,"mu":112,"pmu":0},"get_site_url==>get_option":{"ct":52,"wt":2094,"cpu":2104,"mu":3872,"pmu":4744},"date_i18n==>WP_Locale::get_weekday":{"ct":7,"wt":6,"cpu":5,"mu":-1680,"pmu":0},"get_comment_reply_link==>esc_url":{"ct":1,"wt":48,"cpu":48,"mu":112,"pmu":0},"backslashit==>addcslashes":{"ct":42,"wt":24,"cpu":24,"mu":1568,"pmu":0},"Walker_Category::start_el==>implode":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"includes_url==>site_url":{"ct":5,"wt":312,"cpu":313,"mu":176,"pmu":1528},"get_object_term_cache==>wp_cache_get":{"ct":14,"wt":62,"cpu":65,"mu":-608,"pmu":0},"Walker::walk==>array_slice":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"convert_smilies==>preg_split":{"ct":2,"wt":41,"cpu":42,"mu":1456,"pmu":0},"get_background_image==>get_theme_support":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_load_alloptions==>wp_cache_get":{"ct":442,"wt":1321,"cpu":1339,"mu":272,"pmu":136},"WP_Meta_Query::get_sql_clauses==>WP_Meta_Query::get_sql_for_query":{"ct":3,"wt":16,"cpu":18,"mu":392,"pmu":0},"wp_loginout==>esc_url":{"ct":1,"wt":82,"cpu":82,"mu":48,"pmu":0},"WP_Admin_Bar::render==>WP_Admin_Bar::_bind":{"ct":1,"wt":109,"cpu":110,"mu":12328,"pmu":0},"WP_Session_Tokens::hash_token==>hash":{"ct":1,"wt":2,"cpu":2,"mu":208,"pmu":0},"WP_Comment_Query::query@1==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP::parse_request==>do_action_ref_array":{"ct":1,"wt":12,"cpu":12,"mu":688,"pmu":0},"get_the_author_meta==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":64,"pmu":0},"WP_Dependencies::recurse_deps==>WP_Dependencies::recurse_deps@1":{"ct":6,"wt":19,"cpu":16,"mu":560,"pmu":0},"WP_Query::parse_query==>md5":{"ct":2,"wt":6,"cpu":8,"mu":240,"pmu":176},"WP_Dependencies::recurse_deps@2==>in_array":{"ct":4,"wt":3,"cpu":1,"mu":112,"pmu":0},"update_comment_cache==>wp_cache_add":{"ct":1,"wt":18,"cpu":18,"mu":152,"pmu":0},"has_nav_menu==>get_registered_nav_menus":{"ct":3,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Date_Query::get_sql_for_query==>WP_Date_Query::get_sql_for_clause":{"ct":1,"wt":45,"cpu":45,"mu":1832,"pmu":0},"wp_kses_bad_protocol==>wp_kses_bad_protocol_once":{"ct":99,"wt":2191,"cpu":2197,"mu":9128,"pmu":0},"load_template==>is_single":{"ct":4,"wt":11,"cpu":12,"mu":112,"pmu":0},"_wp_admin_bar_init==>WP_Admin_Bar::initialize":{"ct":1,"wt":740,"cpu":740,"mu":35800,"pmu":6336},"WP_List_Util::filter==>in_array":{"ct":19,"wt":15,"cpu":15,"mu":112,"pmu":0},"WP_Widget_Text::__construct==>__":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":112},"WP_Hook::apply_filters@1==>current":{"ct":108,"wt":63,"cpu":59,"mu":112,"pmu":0},"status_header==>function_exists":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Admin_Bar::add_menu==>WP_Admin_Bar::add_node":{"ct":26,"wt":215,"cpu":211,"mu":11888,"pmu":0},"create_initial_taxonomies==>register_taxonomy":{"ct":10,"wt":3091,"cpu":3090,"mu":40584,"pmu":55240},"WP_Locale_Switcher::__construct==>get_locale":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP::main==>WP::register_globals":{"ct":1,"wt":18,"cpu":18,"mu":4432,"pmu":8392},"WP_Date_Query::build_value==>is_numeric":{"ct":3,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Nav_Menu_Widget::__construct":{"ct":1,"wt":19,"cpu":20,"mu":1128,"pmu":0},"get_post_comments_feed_link==>user_trailingslashit":{"ct":1,"wt":5,"cpu":5,"mu":192,"pmu":0},"WP_Hook::apply_filters==>count":{"ct":144,"wt":89,"cpu":86,"mu":112,"pmu":112},"get_home_url==>ltrim":{"ct":30,"wt":16,"cpu":23,"mu":1104,"pmu":0},"absint==>abs":{"ct":118,"wt":65,"cpu":77,"mu":112,"pmu":112},"get_comment_reply_link==>add_query_arg":{"ct":1,"wt":30,"cpu":30,"mu":112,"pmu":0},"array_map==>absint":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"main()==>get_post_format":{"ct":1,"wt":28,"cpu":28,"mu":88,"pmu":0},"WP_User::has_cap==>map_meta_cap":{"ct":32,"wt":458,"cpu":470,"mu":14008,"pmu":0},"the_title_attribute==>get_post":{"ct":1,"wt":8,"cpu":7,"mu":112,"pmu":0},"WP_Query::get_posts==>apply_filters_ref_array":{"ct":46,"wt":92,"cpu":91,"mu":-16976,"pmu":0},"wpdb::__construct==>register_shutdown_function":{"ct":1,"wt":9,"cpu":12,"mu":520,"pmu":520},"WP::send_headers==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"untrailingslashit==>rtrim":{"ct":175,"wt":105,"cpu":120,"mu":1512,"pmu":112},"wp_list_comments==>get_option":{"ct":4,"wt":213,"cpu":213,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>strtoupper":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"sanitize_title_with_dashes==>strip_tags":{"ct":15,"wt":28,"cpu":31,"mu":696,"pmu":152},"WP_Term::filter==>sanitize_term":{"ct":16,"wt":434,"cpu":437,"mu":112,"pmu":0},"get_post_class==>get_the_terms":{"ct":3,"wt":138,"cpu":138,"mu":712,"pmu":0},"has_custom_logo==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template@2==>twentyseventeen_is_frontpage":{"ct":1,"wt":42,"cpu":43,"mu":224,"pmu":0},"wp_cookie_constants==>define":{"ct":12,"wt":12,"cpu":11,"mu":1112,"pmu":0},"wp_admin_bar_updates_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":11,"cpu":11,"mu":152,"pmu":0},"WP_Hook::apply_filters==>wp_shortlink_header":{"ct":1,"wt":94,"cpu":95,"mu":1880,"pmu":0},"get_post_comments_feed_link==>get_option":{"ct":2,"wt":65,"cpu":64,"mu":112,"pmu":0},"feed_links_extra==>get_post_comments_feed_link":{"ct":1,"wt":552,"cpu":552,"mu":13232,"pmu":0},"WP_Widget_Recent_Comments::widget==>_x":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"get_post_format_slugs==>array_combine":{"ct":1,"wt":2,"cpu":2,"mu":808,"pmu":0},"wp_admin_bar_edit_menu==>WP_Query::get_queried_object":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"array_map==>_wp_add_global_attributes":{"ct":82,"wt":123,"cpu":120,"mu":42896,"pmu":42896},"Walker_Comment::display_element==>Walker::display_element":{"ct":1,"wt":3971,"cpu":3972,"mu":19240,"pmu":0},"get_post_modified_time==>mysql2date":{"ct":3,"wt":177,"cpu":178,"mu":624,"pmu":0},"wp_get_nocache_headers==>function_exists":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_validate_logged_in_cookie":{"ct":1,"wt":1377,"cpu":956,"mu":38232,"pmu":56144},"WP_Widget_Factory::register==>WP_Widget_Archives::__construct":{"ct":1,"wt":18,"cpu":18,"mu":1128,"pmu":0},"WP_Post::__construct==>get_object_vars":{"ct":40,"wt":105,"cpu":104,"mu":104320,"pmu":0},"get_post==>WP_Post::filter":{"ct":96,"wt":68,"cpu":91,"mu":112,"pmu":0},"comment_form==>WP_User::__get":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"the_title_attribute==>wp_parse_args":{"ct":1,"wt":6,"cpu":6,"mu":488,"pmu":0},"WP_Comment_Query::get_comments==>get_comment":{"ct":2,"wt":44,"cpu":44,"mu":1440,"pmu":0},"get_metadata==>is_numeric":{"ct":24,"wt":20,"cpu":23,"mu":112,"pmu":0},"main()==>wp_start_scraping_edited_file_errors":{"ct":1,"wt":4,"cpu":8,"mu":112,"pmu":0},"get_post_class==>is_sticky":{"ct":1,"wt":48,"cpu":48,"mu":448,"pmu":8760},"preg_replace_callback==>WP_MatchesMapRegex::callback":{"ct":5,"wt":12,"cpu":14,"mu":472,"pmu":0},"wp_get_archives==>wp_cache_get":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_the_title":{"ct":1,"wt":80,"cpu":79,"mu":152,"pmu":0},"Walker_Comment::html5_comment==>comment_class":{"ct":1,"wt":118,"cpu":119,"mu":672,"pmu":0},"Walker::display_element==>Walker_Category::end_el":{"ct":1,"wt":1,"cpu":2,"mu":144,"pmu":0},"convert_chars==>preg_replace":{"ct":1,"wt":20,"cpu":20,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>wp_list_pluck":{"ct":1,"wt":8,"cpu":8,"mu":488,"pmu":0},"rest_url==>get_rest_url":{"ct":2,"wt":181,"cpu":181,"mu":272,"pmu":0},"Walker::walk==>func_get_args":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"wp_resource_hints==>in_array":{"ct":13,"wt":10,"cpu":9,"mu":112,"pmu":0},"get_single_template==>get_query_template":{"ct":1,"wt":68,"cpu":68,"mu":656,"pmu":0},"main()==>comments_open":{"ct":1,"wt":53,"cpu":53,"mu":200,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::_set_node":{"ct":4,"wt":4,"cpu":5,"mu":2888,"pmu":0},"wp_html_split==>preg_split":{"ct":3,"wt":59,"cpu":59,"mu":1816,"pmu":0},"main()==>wp_set_lang_dir":{"ct":1,"wt":55,"cpu":57,"mu":576,"pmu":576},"edit_comment_link==>get_edit_comment_link":{"ct":1,"wt":148,"cpu":148,"mu":656,"pmu":0},"get_body_class==>is_attachment":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_enqueue_style==>WP_Dependencies::add":{"ct":3,"wt":16,"cpu":15,"mu":592,"pmu":0},"get_month_link==>WP_Rewrite::get_month_permastruct":{"ct":1,"wt":92,"cpu":92,"mu":824,"pmu":0},"create_initial_taxonomies==>current_theme_supports":{"ct":2,"wt":6,"cpu":6,"mu":248,"pmu":0},"get_post_type_capabilities==>_post_type_meta_capabilities":{"ct":14,"wt":247,"cpu":245,"mu":624,"pmu":0},"comment_form==>sprintf":{"ct":6,"wt":5,"cpu":6,"mu":2416,"pmu":0},"wp_admin_bar_my_account_menu==>WP_User::__get":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Admin_Bar::add_node==>wp_parse_args":{"ct":31,"wt":61,"cpu":62,"mu":11768,"pmu":0},"wp_default_scripts==>esc_url_raw":{"ct":1,"wt":50,"cpu":52,"mu":336,"pmu":0},"WP_Widget_Media_Video::__construct==>admin_url":{"ct":1,"wt":48,"cpu":48,"mu":176,"pmu":264},"get_avatar_data==>set_url_scheme":{"ct":6,"wt":80,"cpu":82,"mu":688,"pmu":0},"load_template==>esc_attr":{"ct":4,"wt":27,"cpu":29,"mu":224,"pmu":0},"WP_Tax_Query::get_sql==>WP_Tax_Query::get_sql_clauses":{"ct":1,"wt":7,"cpu":7,"mu":336,"pmu":0},"WP_Dependencies::all_deps==>WP_Styles::all_deps@1":{"ct":2,"wt":29,"cpu":30,"mu":936,"pmu":0},"wp_enqueue_script==>WP_Dependencies::enqueue":{"ct":7,"wt":28,"cpu":28,"mu":712,"pmu":0},"update_meta_cache==>wp_cache_add":{"ct":3,"wt":26,"cpu":27,"mu":1240,"pmu":488},"WP_User::get_data_by==>update_user_caches":{"ct":1,"wt":44,"cpu":45,"mu":1768,"pmu":0},"WP_Admin_Bar::initialize==>get_blogs_of_user":{"ct":1,"wt":94,"cpu":94,"mu":1784,"pmu":0},"wp_list_pluck==>WP_List_Util::pluck":{"ct":4,"wt":12,"cpu":12,"mu":1616,"pmu":376},"WP::main==>WP::send_headers":{"ct":1,"wt":91,"cpu":91,"mu":1632,"pmu":0},"print_head_scripts==>wp_scripts":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_home_url==>get_option":{"ct":36,"wt":1863,"cpu":1872,"mu":448,"pmu":0},"WP_Scripts::all_deps==>WP_Dependencies::all_deps":{"ct":2,"wt":343,"cpu":344,"mu":2960,"pmu":0},"the_content==>str_replace":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_heartbeat_settings==>wp_create_nonce":{"ct":1,"wt":26,"cpu":25,"mu":376,"pmu":0},"WP_User::has_cap==>is_numeric":{"ct":32,"wt":17,"cpu":27,"mu":112,"pmu":0},"dynamic_sidebar==>apply_filters":{"ct":7,"wt":5,"cpu":7,"mu":112,"pmu":0},"wp_get_mu_plugins==>is_dir":{"ct":1,"wt":6,"cpu":5,"mu":112,"pmu":0},"get_taxonomy==>taxonomy_exists":{"ct":10,"wt":6,"cpu":10,"mu":112,"pmu":0},"wpdb::db_connect==>wpdb::set_charset":{"ct":1,"wt":574,"cpu":417,"mu":7400,"pmu":11016},"get_object_term_cache==>is_numeric":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_custom_header_setup==>apply_filters@1":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"main()==>wp_doing_ajax":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":112},"load_default_textdomain==>wp_installing":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Query::parse_query==>serialize":{"ct":2,"wt":11,"cpu":11,"mu":8304,"pmu":3736},"WP_Hook::apply_filters==>wp_generator":{"ct":1,"wt":16,"cpu":16,"mu":784,"pmu":0},"wp_cache_add==>WP_Object_Cache::add":{"ct":26,"wt":201,"cpu":201,"mu":6304,"pmu":376},"WP_Hook::apply_filters==>twentyseventeen_include_svg_icons":{"ct":1,"wt":148,"cpu":149,"mu":37312,"pmu":9568},"WP_Locale::init==>__":{"ct":58,"wt":328,"cpu":329,"mu":112,"pmu":0},"wp_admin_bar_appearance_menu==>current_user_can":{"ct":2,"wt":75,"cpu":75,"mu":112,"pmu":0},"get_previous_post_link==>get_adjacent_post_link":{"ct":1,"wt":254,"cpu":254,"mu":536,"pmu":0},"_print_scripts==>trim":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"add_rewrite_tag==>WP_Rewrite::add_rewrite_tag":{"ct":3,"wt":10,"cpu":11,"mu":2312,"pmu":0},"Walker_Comment::html5_comment==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":1448,"pmu":0},"WP_Widget_Meta::widget==>wp_register":{"ct":1,"wt":198,"cpu":199,"mu":672,"pmu":0},"get_bloginfo==>get_locale":{"ct":1,"wt":32,"cpu":32,"mu":224,"pmu":0},"wp_admin_bar_my_account_item==>sprintf":{"ct":1,"wt":1,"cpu":0,"mu":432,"pmu":0},"_prime_comment_caches==>_get_non_cached_ids":{"ct":4,"wt":21,"cpu":21,"mu":488,"pmu":0},"twentyseventeen_pingback_header==>is_singular":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_get_update_data==>esc_attr":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"wp_register==>admin_url":{"ct":1,"wt":102,"cpu":103,"mu":168,"pmu":0},"get_template_part@1==>locate_template@2":{"ct":1,"wt":415,"cpu":415,"mu":10400,"pmu":9992},"is_user_member_of_blog==>is_multisite":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_customize_url==>esc_url":{"ct":1,"wt":51,"cpu":51,"mu":176,"pmu":0},"is_embed==>WP_Query::is_embed":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_widgets_init==>do_action@1":{"ct":1,"wt":5684,"cpu":5547,"mu":193400,"pmu":193840},"WP_Hook::apply_filters==>_admin_bar_bump_cb":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Date_Query::get_sql_clauses==>WP_Date_Query::get_sql_for_query":{"ct":1,"wt":70,"cpu":69,"mu":2104,"pmu":1888},"wp_admin_bar_my_sites_menu==>is_multisite":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_template==>extract":{"ct":4,"wt":56,"cpu":62,"mu":112,"pmu":0},"main()==>get_locale":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"_wp_get_current_user==>apply_filters":{"ct":1,"wt":1425,"cpu":1005,"mu":41120,"pmu":56144},"main()==>comments_template":{"ct":1,"wt":12255,"cpu":10678,"mu":72944,"pmu":184048},"WP_Widget_Media_Image::__construct==>_n_noop":{"ct":1,"wt":0,"cpu":0,"mu":488,"pmu":0},"wp_convert_hr_to_bytes==>trim":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":112},"twentyseventeen_body_classes==>is_page":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Comment_Query::fill_descendants==>wp_cache_get":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"WP_Term_Query::parse_query==>do_action":{"ct":3,"wt":4,"cpu":4,"mu":112,"pmu":0},"register_post_type==>do_action":{"ct":8,"wt":14,"cpu":19,"mu":112,"pmu":0},"register_post_type==>do_action@1":{"ct":8,"wt":9,"cpu":6,"mu":112,"pmu":0},"twentyseventeen_scripts==>wp_localize_script":{"ct":1,"wt":29,"cpu":28,"mu":480,"pmu":0},"get_current_blog_id==>absint":{"ct":19,"wt":34,"cpu":35,"mu":224,"pmu":224},"date_i18n==>WP_Locale::get_meridiem":{"ct":14,"wt":7,"cpu":11,"mu":-3472,"pmu":0},"_http_build_query==>implode":{"ct":37,"wt":31,"cpu":37,"mu":1360,"pmu":0},"wp_logout_url==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_logout_url==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_logout_url==>apply_filters@2":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_comments@1==>WP_Comment_Query::__construct@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"mbstring_binary_safe_encoding==>ini_get":{"ct":1,"wt":2,"cpu":2,"mu":144,"pmu":144},"wpdb::set_sql_mode==>explode":{"ct":1,"wt":2,"cpu":3,"mu":816,"pmu":608},"WP::parse_request==>parse_str":{"ct":1,"wt":10,"cpu":11,"mu":824,"pmu":0},"wp_get_current_commenter==>compact":{"ct":2,"wt":3,"cpu":3,"mu":864,"pmu":0},"WP_Hook::has_filter==>_wp_filter_build_unique_id":{"ct":96,"wt":470,"cpu":485,"mu":9488,"pmu":2304},"get_the_post_navigation==>__":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"is_category==>WP_Query::is_category":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>add_action":{"ct":3,"wt":28,"cpu":29,"mu":2344,"pmu":0},"wp_doing_ajax==>apply_filters":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":112},"wp_get_shortlink==>is_singular":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_doing_ajax==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"has_custom_logo==>get_theme_mod":{"ct":1,"wt":44,"cpu":44,"mu":112,"pmu":0},"WP_Query::get_posts==>explode":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wp_fix_server_vars==>preg_replace":{"ct":1,"wt":41,"cpu":42,"mu":192,"pmu":0},"register_nav_menus==>array_merge":{"ct":1,"wt":0,"cpu":0,"mu":488,"pmu":0},"get_the_author_meta==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::set_prefix==>wpdb::get_blog_prefix":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"update_post_caches==>update_postmeta_cache":{"ct":2,"wt":406,"cpu":191,"mu":-120,"pmu":0},"sanitize_term_field==>in_array":{"ct":146,"wt":97,"cpu":103,"mu":112,"pmu":0},"main()==>is_single":{"ct":1,"wt":1,"cpu":3,"mu":112,"pmu":0},"get_search_form==>home_url":{"ct":1,"wt":56,"cpu":58,"mu":160,"pmu":0},"WP::parse_request==>urldecode":{"ct":52,"wt":32,"cpu":34,"mu":2608,"pmu":0},"WP_Date_Query::sanitize_query==>WP_Date_Query::is_first_order_clause":{"ct":1,"wt":8,"cpu":9,"mu":336,"pmu":712},"wp_validate_auth_cookie==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_content==>post_password_required":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"wp_get_document_title==>is_post_type_archive":{"ct":1,"wt":14,"cpu":14,"mu":112,"pmu":0},"apply_filters@4==>WP_Hook::apply_filters@4":{"ct":1,"wt":11,"cpu":11,"mu":784,"pmu":0},"WP_Hook::apply_filters==>wp_old_slug_redirect":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"get_term_link==>home_url":{"ct":2,"wt":335,"cpu":336,"mu":160,"pmu":0},"wp_admin_bar_customize_menu==>add_action":{"ct":1,"wt":11,"cpu":10,"mu":1368,"pmu":0},"get_term==>WP_Term::get_instance":{"ct":7,"wt":391,"cpu":392,"mu":2016,"pmu":0},"get_object_taxonomies==>array_intersect":{"ct":40,"wt":48,"cpu":53,"mu":15152,"pmu":0},"wp_link_pages==>__":{"ct":3,"wt":32,"cpu":32,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>apply_filters":{"ct":2,"wt":86,"cpu":88,"mu":144,"pmu":0},"comment_form==>wp_get_current_user":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Comment_Query::get_comments@1==>array_keys":{"ct":1,"wt":1,"cpu":2,"mu":2728,"pmu":2440},"wp_admin_bar_render==>is_admin_bar_showing":{"ct":1,"wt":24,"cpu":24,"mu":112,"pmu":0},"get_author_posts_url==>home_url":{"ct":1,"wt":66,"cpu":66,"mu":128,"pmu":0},"apply_filters_ref_array==>array_pop":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_custom_logo==>is_customize_preview":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_resource_hints==>wp_parse_url":{"ct":4,"wt":49,"cpu":49,"mu":2256,"pmu":0},"wp_print_footer_scripts==>do_action@1":{"ct":1,"wt":1902,"cpu":1902,"mu":3536,"pmu":0},"map_meta_cap==>get_post":{"ct":6,"wt":99,"cpu":99,"mu":2800,"pmu":0},"capital_P_dangit==>current_filter":{"ct":10,"wt":27,"cpu":31,"mu":112,"pmu":0},"WP_Taxonomy::set_props==>wp_parse_args":{"ct":13,"wt":12,"cpu":24,"mu":112,"pmu":112},"main()==>is_post_type_archive":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":0},"WP_Roles::get_roles_data==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"get_body_class==>is_paged":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"get_avatar_url==>get_avatar_data":{"ct":3,"wt":1031,"cpu":1032,"mu":5096,"pmu":0},"the_generator==>get_the_generator":{"ct":1,"wt":9,"cpu":10,"mu":416,"pmu":0},"WP_Locale::init==>version_compare":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"do_action_ref_array==>WP_Hook::do_action":{"ct":1,"wt":9,"cpu":9,"mu":976,"pmu":0},"WP_Hook::apply_filters@1==>strip_tags":{"ct":1,"wt":1,"cpu":2,"mu":152,"pmu":0},"do_action_ref_array==>WP_Hook::do_action@1":{"ct":2,"wt":7249,"cpu":6674,"mu":70600,"pmu":5560},"main()==>get_sidebar":{"ct":1,"wt":8172,"cpu":6989,"mu":27792,"pmu":0},"do_action_ref_array==>WP_Hook::do_action@2":{"ct":1,"wt":4072,"cpu":3935,"mu":88464,"pmu":70064},"get_oembed_endpoint_url==>urlencode":{"ct":2,"wt":2,"cpu":2,"mu":304,"pmu":0},"wp_is_mobile==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_active_widget==>wp_get_sidebars_widgets":{"ct":1,"wt":75,"cpu":75,"mu":2240,"pmu":34096},"wp_admin_bar_customize_menu==>urlencode":{"ct":1,"wt":1,"cpu":1,"mu":208,"pmu":0},"register_sidebar==>add_theme_support":{"ct":3,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>wp_get_current_user":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"is_random_header_image==>get_theme_support":{"ct":4,"wt":16,"cpu":16,"mu":112,"pmu":0},"require_wp_db==>wpdb::__construct":{"ct":1,"wt":2067,"cpu":1385,"mu":14096,"pmu":32824},"WP_Admin_Bar::initialize==>home_url":{"ct":1,"wt":63,"cpu":62,"mu":384,"pmu":0},"array_map==>esc_sql":{"ct":8,"wt":217,"cpu":219,"mu":432,"pmu":0},"twentyseventeen_scripts==>wp_style_add_data":{"ct":1,"wt":7,"cpu":7,"mu":712,"pmu":0},"wpdb::db_version==>preg_replace":{"ct":5,"wt":35,"cpu":35,"mu":312,"pmu":40},"WP_Comment_Query::get_comments@1==>array_map":{"ct":2,"wt":2,"cpu":4,"mu":224,"pmu":0},"WP_Query::get_posts==>wp_using_ext_object_cache":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps@2==>WP_Dependencies::recurse_deps@3":{"ct":4,"wt":3,"cpu":1,"mu":112,"pmu":0},"map_deep@1==>urlencode":{"ct":5,"wt":3,"cpu":4,"mu":336,"pmu":0},"get_rest_url==>WP_Rewrite::using_index_permalinks":{"ct":5,"wt":17,"cpu":19,"mu":112,"pmu":0},"wpdb::prepare==>func_get_args":{"ct":27,"wt":15,"cpu":22,"mu":10264,"pmu":0},"add_image_size==>absint":{"ct":4,"wt":5,"cpu":6,"mu":112,"pmu":0},"get_theme_mod==>sprintf":{"ct":15,"wt":10,"cpu":15,"mu":4912,"pmu":0},"wp_admin_bar_site_menu==>WP_Admin_Bar::add_menu":{"ct":2,"wt":19,"cpu":20,"mu":192,"pmu":0},"wp_admin_bar_my_account_item==>wp_get_current_user":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>wp_parse_args":{"ct":8,"wt":9,"cpu":10,"mu":336,"pmu":32},"WP_Widget_Media_Audio::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":294,"cpu":295,"mu":4392,"pmu":0},"locale_stylesheet==>get_locale_stylesheet_uri":{"ct":1,"wt":174,"cpu":173,"mu":1008,"pmu":0},"register_widget==>WP_Widget_Factory::register":{"ct":17,"wt":1717,"cpu":1717,"mu":39128,"pmu":49008},"wpdb::placeholder_escape==>hash_hmac":{"ct":1,"wt":7,"cpu":7,"mu":208,"pmu":240},"WP_User::get_data_by==>wp_cache_get":{"ct":12,"wt":44,"cpu":43,"mu":552,"pmu":0},"is_active_widget==>substr":{"ct":1,"wt":1,"cpu":1,"mu":152,"pmu":0},"main()==>wp_set_wpdb_vars":{"ct":1,"wt":109,"cpu":109,"mu":4936,"pmu":0},"WP_Rewrite::get_month_permastruct==>str_replace":{"ct":1,"wt":2,"cpu":5,"mu":160,"pmu":0},"wp_logout_url==>site_url":{"ct":4,"wt":242,"cpu":242,"mu":336,"pmu":0},"WP_Admin_Bar::_render_item==>esc_attr":{"ct":16,"wt":94,"cpu":95,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>count":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wpdb::db_connect==>mysqli_real_connect":{"ct":1,"wt":372,"cpu":129,"mu":432,"pmu":1904},"wpdb::set_prefix==>wpdb::__set":{"ct":3,"wt":7,"cpu":8,"mu":2840,"pmu":0},"WP_Dependencies::all_deps@2==>in_array":{"ct":4,"wt":0,"cpu":3,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>trailingslashit":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"get_admin_url==>get_site_url":{"ct":35,"wt":1918,"cpu":1919,"mu":4584,"pmu":3216},"wp_admin_bar_comments_menu==>_n":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"map_deep==>map_deep@1":{"ct":23,"wt":61,"cpu":66,"mu":1136,"pmu":0},"WP_Post_Type::set_props==>get_post_type_labels":{"ct":16,"wt":5173,"cpu":5171,"mu":29232,"pmu":47048},"sanitize_title_for_query==>sanitize_title":{"ct":1,"wt":88,"cpu":87,"mu":1128,"pmu":0},"add_theme_support==>get_post_format_slugs":{"ct":1,"wt":64,"cpu":65,"mu":1368,"pmu":0},"WP_Admin_Bar::add_node==>WP_Admin_Bar::get_node":{"ct":31,"wt":61,"cpu":56,"mu":224,"pmu":0},"locate_template==>load_template":{"ct":4,"wt":53640,"cpu":43693,"mu":282696,"pmu":32776},"WP::query_posts==>WP::build_query_string":{"ct":1,"wt":18,"cpu":19,"mu":640,"pmu":0},"get_post_thumbnail_id==>get_post":{"ct":3,"wt":33,"cpu":32,"mu":1008,"pmu":0},"load_template==>_e":{"ct":1,"wt":13,"cpu":13,"mu":224,"pmu":0},"WP_Comment_Query::get_comments==>WP_Meta_Query::parse_query_vars":{"ct":4,"wt":13,"cpu":15,"mu":112,"pmu":0},"esc_html==>apply_filters":{"ct":15,"wt":10,"cpu":14,"mu":112,"pmu":0},"esc_html==>apply_filters@1":{"ct":11,"wt":9,"cpu":12,"mu":112,"pmu":0},"esc_html==>apply_filters@2":{"ct":4,"wt":14,"cpu":13,"mu":112,"pmu":0},"WP_Query::get_posts==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_theme_textdomain==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>wp_is_mobile":{"ct":1,"wt":14,"cpu":13,"mu":336,"pmu":0},"WP_Styles::do_footer_items==>WP_Dependencies::do_items":{"ct":1,"wt":56,"cpu":57,"mu":224,"pmu":0},"includes_url==>ltrim":{"ct":5,"wt":3,"cpu":2,"mu":160,"pmu":0},"WP_Hook::resort_active_iterations==>array_keys":{"ct":28,"wt":17,"cpu":32,"mu":10640,"pmu":1616},"load_template==>get_post_type":{"ct":1,"wt":14,"cpu":14,"mu":224,"pmu":0},"get_body_class==>is_front_page":{"ct":1,"wt":45,"cpu":45,"mu":112,"pmu":0},"add_theme_support==>func_num_args":{"ct":15,"wt":6,"cpu":7,"mu":112,"pmu":0},"get_comment_link==>get_permalink":{"ct":2,"wt":369,"cpu":369,"mu":272,"pmu":0},"add_theme_support==>define":{"ct":5,"wt":7,"cpu":6,"mu":384,"pmu":0},"get_pagenum_link==>WP_Rewrite::using_permalinks":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>ent2ncr":{"ct":1,"wt":17,"cpu":18,"mu":560,"pmu":0},"get_avatar==>esc_attr":{"ct":6,"wt":62,"cpu":62,"mu":112,"pmu":0},"get_bloginfo==>str_replace":{"ct":1,"wt":2,"cpu":2,"mu":144,"pmu":0},"WP_Widget::_register_one==>_register_widget_update_callback":{"ct":17,"wt":72,"cpu":71,"mu":14568,"pmu":0},"date_i18n==>date":{"ct":35,"wt":42,"cpu":47,"mu":9072,"pmu":0},"WP_Query::get_posts==>is_numeric":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"body_class==>get_body_class":{"ct":1,"wt":1717,"cpu":1717,"mu":11424,"pmu":0},"get_parent_theme_file_uri==>apply_filters@1":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"comments_open==>get_post":{"ct":6,"wt":39,"cpu":40,"mu":984,"pmu":0},"wp_default_scripts==>strtok":{"ct":1,"wt":1,"cpu":1,"mu":176,"pmu":0},"wpdb::get_results==>wpdb::query":{"ct":11,"wt":4672,"cpu":1714,"mu":121400,"pmu":111384},"get_comment_reply_link==>get_post":{"ct":1,"wt":15,"cpu":15,"mu":560,"pmu":0},"wp_admin_bar_render==>WP_Admin_Bar::render":{"ct":1,"wt":1992,"cpu":1992,"mu":15464,"pmu":0},"WP_Query::get_posts==>WP_Query::__isset":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"rest_output_link_wp_head==>esc_url":{"ct":1,"wt":44,"cpu":44,"mu":168,"pmu":0},"get_post_format==>get_post":{"ct":3,"wt":28,"cpu":29,"mu":984,"pmu":0},"wp_enqueue_script==>WP_Dependencies::add_data":{"ct":3,"wt":10,"cpu":12,"mu":1240,"pmu":0},"WP_Comment_Query::parse_orderby==>WP_Meta_Query::get_clauses":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"set_transient==>add_option":{"ct":1,"wt":6415,"cpu":405,"mu":-14152,"pmu":0},"wp_salt==>defined":{"ct":14,"wt":12,"cpu":11,"mu":112,"pmu":0},"get_body_class==>is_home":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"load_template@2==>is_front_page":{"ct":1,"wt":40,"cpu":41,"mu":112,"pmu":0},"feed_links_extra==>esc_url":{"ct":1,"wt":81,"cpu":82,"mu":192,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::add_node":{"ct":1,"wt":9,"cpu":8,"mu":528,"pmu":0},"WP::parse_request==>sprintf":{"ct":1,"wt":4,"cpu":4,"mu":432,"pmu":0},"WP_Scripts::do_item==>WP_Dependencies::do_item":{"ct":15,"wt":12,"cpu":8,"mu":112,"pmu":0},"wp_unregister_GLOBALS==>ini_get":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":112},"WP_Hook::apply_filters==>sanitize_comment_cookies":{"ct":1,"wt":20,"cpu":21,"mu":112,"pmu":0},"main()==>wp_maintenance":{"ct":1,"wt":42,"cpu":43,"mu":224,"pmu":0},"sanitize_title_with_dashes==>strtolower":{"ct":15,"wt":11,"cpu":14,"mu":112,"pmu":72},"WP_Admin_Bar::_render_item==>trim":{"ct":6,"wt":2,"cpu":5,"mu":208,"pmu":0},"get_post_status==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"current_action==>current_filter":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"comment_form==>is_user_logged_in":{"ct":4,"wt":14,"cpu":15,"mu":112,"pmu":0},"wp_list_categories==>taxonomy_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"print_footer_scripts==>script_concat_settings":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"wp_start_object_cache==>wp_cache_add_non_persistent_groups":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_edit_comment_link==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::add_menus==>add_action":{"ct":13,"wt":85,"cpu":88,"mu":10360,"pmu":10056},"WP_Widget_Recent_Posts::widget==>apply_filters":{"ct":2,"wt":159,"cpu":83,"mu":152,"pmu":0},"wp_html_excerpt==>wp_strip_all_tags":{"ct":1,"wt":41,"cpu":42,"mu":160,"pmu":0},"twentyseventeen_get_svg==>wp_parse_args":{"ct":7,"wt":24,"cpu":25,"mu":2744,"pmu":0},"wpdb::escape_by_ref==>wpdb::_real_escape":{"ct":33,"wt":1069,"cpu":1078,"mu":6824,"pmu":8504},"_prime_term_caches==>_get_non_cached_ids":{"ct":14,"wt":50,"cpu":51,"mu":224,"pmu":0},"twentyseventeen_setup==>add_editor_style":{"ct":1,"wt":11,"cpu":11,"mu":120,"pmu":0},"WP_Comment_Query::get_comment_ids==>apply_filters_ref_array":{"ct":3,"wt":8,"cpu":9,"mu":-1088,"pmu":0},"get_language_attributes==>is_rtl":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>_config_wp_home":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":163,"cpu":165,"mu":1928,"pmu":2976},"_wptexturize_pushpop_element==>substr":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"twentyseventeen_fonts_url==>_x":{"ct":2,"wt":13,"cpu":14,"mu":112,"pmu":0},"wp_cache_add_global_groups==>WP_Object_Cache::add_global_groups":{"ct":1,"wt":6,"cpu":6,"mu":1032,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::get_comment_ids":{"ct":2,"wt":2123,"cpu":1072,"mu":24768,"pmu":18200},"get_comment_reply_link==>wp_parse_args":{"ct":1,"wt":3,"cpu":3,"mu":1448,"pmu":0},"WP_Scripts::all_deps@2==>WP_Dependencies::all_deps@2":{"ct":1,"wt":14,"cpu":14,"mu":448,"pmu":0},"metadata_exists==>wp_cache_get":{"ct":2,"wt":7,"cpu":6,"mu":32,"pmu":0},"WP_Admin_Bar::_render_item==>is_numeric":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"load_template@2==>is_home":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_parse_str==>parse_str":{"ct":41,"wt":119,"cpu":127,"mu":4848,"pmu":0},"WP_Scripts::add_inline_script==>WP_Dependencies::add_data":{"ct":4,"wt":7,"cpu":6,"mu":864,"pmu":0},"WP_Hook::apply_filters@1==>array_slice":{"ct":61,"wt":48,"cpu":49,"mu":23048,"pmu":1104},"wp_maybe_decline_date==>function_exists":{"ct":7,"wt":5,"cpu":7,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_comment_author_link":{"ct":1,"wt":73,"cpu":74,"mu":240,"pmu":0},"set_url_scheme==>force_ssl_admin":{"ct":38,"wt":23,"cpu":32,"mu":112,"pmu":0},"WP_User::get_data_by==>trim":{"ct":12,"wt":9,"cpu":9,"mu":112,"pmu":0},"wp_initial_constants==>ini_get":{"ct":1,"wt":14,"cpu":15,"mu":144,"pmu":144},"WP_Taxonomy::set_props==>apply_filters":{"ct":5,"wt":3,"cpu":4,"mu":-1768,"pmu":0},"WP_Taxonomy::set_props==>apply_filters@1":{"ct":5,"wt":5,"cpu":4,"mu":-1768,"pmu":0},"get_the_author==>WP_User::__get":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"_prime_comment_caches==>update_comment_cache":{"ct":1,"wt":21,"cpu":21,"mu":264,"pmu":0},"WP_Hook::apply_filters==>rest_api_loaded":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"set_transient==>get_option":{"ct":1,"wt":17,"cpu":18,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>_x":{"ct":3,"wt":15,"cpu":16,"mu":112,"pmu":0},"_prime_comment_caches==>sprintf":{"ct":1,"wt":2,"cpu":2,"mu":432,"pmu":0},"_print_styles==>wp_styles":{"ct":1,"wt":1,"cpu":7,"mu":112,"pmu":0},"get_search_form==>twentyseventeen_get_svg":{"ct":1,"wt":27,"cpu":28,"mu":272,"pmu":0},"comment_form==>WP_User::exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"feed_links==>get_feed_link":{"ct":2,"wt":644,"cpu":645,"mu":1272,"pmu":0},"main()==>class_exists":{"ct":11,"wt":26,"cpu":26,"mu":112,"pmu":48},"WP_List_Util::filter==>count":{"ct":19,"wt":10,"cpu":18,"mu":112,"pmu":0},"_canonical_charset==>strtolower":{"ct":4,"wt":10,"cpu":13,"mu":240,"pmu":0},"get_header_image_tag==>get_header_image":{"ct":1,"wt":660,"cpu":660,"mu":224,"pmu":0},"register_post_type==>WP_Post_Type::__construct":{"ct":16,"wt":5800,"cpu":5799,"mu":43120,"pmu":47048},"Requests::register_autoloader==>spl_autoload_register":{"ct":1,"wt":3,"cpu":4,"mu":584,"pmu":280},"WP_Hook::apply_filters@3==>wp_heartbeat_settings":{"ct":1,"wt":120,"cpu":119,"mu":3592,"pmu":0},"get_user_option==>wpdb::get_blog_prefix":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"Walker_Comment::html5_comment==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"sanitize_post_field==>in_array":{"ct":46,"wt":19,"cpu":21,"mu":112,"pmu":112},"get_theme_mods==>get_option":{"ct":52,"wt":1341,"cpu":1334,"mu":9680,"pmu":43736},"edit_post_link==>esc_attr":{"ct":1,"wt":13,"cpu":13,"mu":112,"pmu":0},"wpdb::get_col==>wpdb::check_safe_collation":{"ct":3,"wt":82,"cpu":84,"mu":112,"pmu":480},"WP_Hook::apply_filters==>feed_links":{"ct":1,"wt":1417,"cpu":1418,"mu":3224,"pmu":0},"date_i18n==>preg_replace":{"ct":42,"wt":121,"cpu":124,"mu":328,"pmu":0},"WP_User::get_data_by==>is_numeric":{"ct":11,"wt":7,"cpu":5,"mu":112,"pmu":0},"WP_User::get_data_by==>wpdb::prepare":{"ct":1,"wt":112,"cpu":123,"mu":672,"pmu":0},"get_permalink==>explode":{"ct":12,"wt":14,"cpu":16,"mu":6928,"pmu":0},"WP_Hook::apply_filters==>redirect_canonical":{"ct":1,"wt":398,"cpu":399,"mu":6720,"pmu":0},"WP_Meta_Query::parse_query_vars==>WP_Meta_Query::__construct":{"ct":14,"wt":9,"cpu":12,"mu":112,"pmu":0},"wpdb::__construct==>function_exists":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":112},"wpdb::__construct==>wpdb::db_connect":{"ct":1,"wt":2007,"cpu":1324,"mu":12752,"pmu":31528},"twentyseventeen_colors_css_wrap==>is_customize_preview":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>get_current_user_id":{"ct":1,"wt":7,"cpu":6,"mu":336,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Meta::__construct":{"ct":1,"wt":20,"cpu":20,"mu":1128,"pmu":216},"wp_admin_bar_search_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":9,"cpu":9,"mu":152,"pmu":0},"map_meta_cap==>apply_filters":{"ct":8,"wt":8,"cpu":7,"mu":112,"pmu":0},"map_meta_cap==>apply_filters@1":{"ct":5,"wt":12,"cpu":12,"mu":112,"pmu":0},"map_meta_cap==>apply_filters@2":{"ct":19,"wt":12,"cpu":17,"mu":112,"pmu":0},"WP_Query::have_posts==>WP_Query::rewind_posts":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Post_Type::set_props==>get_post_type_capabilities":{"ct":16,"wt":383,"cpu":385,"mu":18896,"pmu":0},"WP_Term_Query::get_terms==>wp_cache_get":{"ct":3,"wt":15,"cpu":15,"mu":112,"pmu":0},"wp_script_add_data==>wp_scripts":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_maybe_load_embeds==>apply_filters@1":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":112},"wpdb::_real_escape==>wpdb::add_placeholder_escape":{"ct":43,"wt":1083,"cpu":1088,"mu":5176,"pmu":7976},"wp_admin_bar_updates_menu==>number_format_i18n":{"ct":1,"wt":11,"cpu":11,"mu":480,"pmu":0},"WP_Rewrite::get_month_permastruct==>preg_replace":{"ct":1,"wt":3,"cpu":4,"mu":208,"pmu":0},"wp_oembed_add_discovery_links==>get_permalink":{"ct":2,"wt":280,"cpu":281,"mu":272,"pmu":0},"get_adjacent_post==>md5":{"ct":4,"wt":6,"cpu":7,"mu":368,"pmu":0},"WP_Taxonomy::add_rewrite_rules==>get_option":{"ct":3,"wt":58,"cpu":59,"mu":112,"pmu":0},"get_rest_url==>is_ssl":{"ct":5,"wt":4,"cpu":3,"mu":112,"pmu":0},"twentyseventeen_content_width==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_close_comments_for_old_posts":{"ct":2,"wt":26,"cpu":27,"mu":336,"pmu":0},"WP_Tax_Query::__construct==>WP_Tax_Query::sanitize_query":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_cron==>_get_cron_array":{"ct":1,"wt":70,"cpu":71,"mu":6704,"pmu":18632},"date_i18n==>WP_Locale::get_weekday_abbrev":{"ct":7,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Query::get_posts==>compact":{"ct":4,"wt":8,"cpu":9,"mu":9168,"pmu":6048},"_custom_header_background_just_in_time==>current_theme_supports":{"ct":2,"wt":8,"cpu":11,"mu":112,"pmu":0},"WP::init==>wp_get_current_user":{"ct":2,"wt":1682,"cpu":1261,"mu":54360,"pmu":56472},"WP_Widget_Recent_Comments::widget==>strpos":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP::handle_404==>is_404":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"WP_Hook::apply_filters==>_show_post_preview":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Scripts::do_item==>WP_Scripts::print_extra_script":{"ct":10,"wt":36,"cpu":42,"mu":224,"pmu":0},"wptexturize==>explode":{"ct":2,"wt":4,"cpu":3,"mu":2304,"pmu":0},"load_template@2==>home_url":{"ct":1,"wt":50,"cpu":50,"mu":160,"pmu":0},"WP_Locale_Switcher::__construct==>is_admin":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_is_ini_value_changeable==>ini_get_all":{"ct":1,"wt":494,"cpu":500,"mu":129576,"pmu":129576},"sanitize_title==>apply_filters":{"ct":8,"wt":935,"cpu":940,"mu":1328,"pmu":0},"sanitize_title==>apply_filters@1":{"ct":3,"wt":311,"cpu":311,"mu":360,"pmu":0},"WP_Hook::apply_filters@1==>_close_comments_for_old_post":{"ct":2,"wt":86,"cpu":87,"mu":112,"pmu":0},"WP_Widget_Media_Audio::__construct==>_n_noop":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_ancestors==>is_wp_error":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"sanitize_key==>preg_replace":{"ct":45,"wt":76,"cpu":83,"mu":112,"pmu":0},"twentyseventeen_edit_link==>edit_post_link":{"ct":1,"wt":292,"cpu":292,"mu":352,"pmu":0},"wp_admin_bar_comments_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":16,"cpu":15,"mu":152,"pmu":0},"WP_Date_Query::__construct==>WP_Date_Query::get_compare":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_functionality_constants==>define":{"ct":4,"wt":7,"cpu":9,"mu":240,"pmu":0},"_get_custom_object_labels==>array_merge":{"ct":26,"wt":33,"cpu":32,"mu":34848,"pmu":10688},"require_wp_db==>define":{"ct":6,"wt":14,"cpu":11,"mu":304,"pmu":304},"WP_Hook::apply_filters==>smilies_init":{"ct":1,"wt":188,"cpu":189,"mu":4584,"pmu":0},"is_taxonomy_hierarchical==>get_taxonomy":{"ct":5,"wt":11,"cpu":11,"mu":112,"pmu":0},"comment_form==>wp_get_current_commenter":{"ct":1,"wt":5,"cpu":6,"mu":488,"pmu":0},"WP_Query::parse_query==>is_scalar":{"ct":6,"wt":1,"cpu":6,"mu":112,"pmu":0},"get_body_class==>is_date":{"ct":1,"wt":3,"cpu":2,"mu":224,"pmu":0},"get_terms==>wp_parse_args":{"ct":6,"wt":31,"cpu":30,"mu":3208,"pmu":0},"is_taxonomy_hierarchical==>taxonomy_exists":{"ct":5,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_initial_constants==>wp_is_ini_value_changeable":{"ct":2,"wt":535,"cpu":535,"mu":130200,"pmu":130200},"wp_print_styles==>_wp_scripts_maybe_doing_it_wrong":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"WP_Widget_Calendar::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":6,"mu":904,"pmu":0},"add_query_arg==>strstr":{"ct":37,"wt":41,"cpu":61,"mu":112,"pmu":0},"WP_User::__isset==>metadata_exists":{"ct":2,"wt":23,"cpu":23,"mu":560,"pmu":0},"apply_filters_ref_array==>WP_Hook::apply_filters":{"ct":2,"wt":52,"cpu":52,"mu":1200,"pmu":0},"esc_html==>_wp_specialchars":{"ct":30,"wt":166,"cpu":167,"mu":2368,"pmu":0},"WP_Styles::all_deps@1==>WP_Dependencies::all_deps@1":{"ct":2,"wt":24,"cpu":26,"mu":824,"pmu":0},"is_feed==>WP_Query::is_feed":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_query_var==>WP_Query::get":{"ct":12,"wt":10,"cpu":11,"mu":40,"pmu":0},"WP_Query::have_posts==>do_action_ref_array":{"ct":1,"wt":1,"cpu":2,"mu":-288,"pmu":0},"get_permalink==>str_replace":{"ct":12,"wt":32,"cpu":38,"mu":784,"pmu":0},"WP_Date_Query::get_sql_for_clause==>esc_sql":{"ct":1,"wt":22,"cpu":22,"mu":152,"pmu":0},"is_header_video_active==>is_callable":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_User::for_site==>wpdb::get_blog_prefix":{"ct":12,"wt":23,"cpu":26,"mu":112,"pmu":0},"wp_admin_bar_my_account_item==>WP_User::__get":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_shortlink_header==>header":{"ct":1,"wt":1,"cpu":1,"mu":200,"pmu":0},"twentyseventeen_get_svg==>esc_html":{"ct":14,"wt":122,"cpu":122,"mu":224,"pmu":0},"WP_Hook::apply_filters==>create_initial_post_types":{"ct":1,"wt":3095,"cpu":3095,"mu":712,"pmu":0},"get_the_content==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_option==>wp_cache_add":{"ct":4,"wt":34,"cpu":42,"mu":112,"pmu":0},"metadata_exists==>is_numeric":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"get_page_template_slug==>get_post":{"ct":2,"wt":16,"cpu":15,"mu":560,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_my_sites_menu":{"ct":1,"wt":8,"cpu":8,"mu":336,"pmu":0},"sanitize_post==>get_object_vars":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>wp_prototype_before_jquery":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"WP_Hook::apply_filters==>force_balance_tags":{"ct":1,"wt":70,"cpu":71,"mu":1376,"pmu":0},"the_custom_header_markup==>get_custom_header_markup":{"ct":1,"wt":2000,"cpu":2000,"mu":3984,"pmu":0},"comments_open==>apply_filters":{"ct":4,"wt":147,"cpu":147,"mu":112,"pmu":0},"wpdb::query==>wpdb::check_ascii":{"ct":1,"wt":11,"cpu":11,"mu":112,"pmu":0},"comments_open==>apply_filters@1":{"ct":1,"wt":96,"cpu":95,"mu":224,"pmu":0},"get_feed_link==>str_replace":{"ct":6,"wt":10,"cpu":7,"mu":320,"pmu":0},"comments_open==>apply_filters@2":{"ct":1,"wt":39,"cpu":39,"mu":976,"pmu":0},"main()==>timer_start":{"ct":1,"wt":16,"cpu":21,"mu":248,"pmu":0},"WP_Comment_Query::get_comment_ids==>explode":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wp_default_scripts==>apply_filters@3":{"ct":3,"wt":133,"cpu":133,"mu":4456,"pmu":0},"main()==>WP_Roles::__construct":{"ct":1,"wt":98,"cpu":98,"mu":16864,"pmu":47672},"get_avatar_data==>is_ssl":{"ct":6,"wt":17,"cpu":18,"mu":112,"pmu":0},"get_comment_reply_link==>apply_filters":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_adjacent_post==>wpdb::prepare":{"ct":8,"wt":572,"cpu":574,"mu":2032,"pmu":0},"wp_admin_bar_comments_menu==>number_format_i18n":{"ct":2,"wt":34,"cpu":35,"mu":176,"pmu":0},"wp_admin_bar_site_menu==>admin_url":{"ct":2,"wt":124,"cpu":124,"mu":224,"pmu":0},"dynamic_sidebar==>ltrim":{"ct":6,"wt":4,"cpu":5,"mu":376,"pmu":0},"wptexturize==>str_replace":{"ct":24,"wt":67,"cpu":72,"mu":112,"pmu":0},"wp_just_in_time_script_localization==>array_keys":{"ct":2,"wt":1,"cpu":2,"mu":864,"pmu":0},"twentyseventeen_body_classes==>get_header_textcolor":{"ct":1,"wt":200,"cpu":200,"mu":432,"pmu":0},"WP_Hook::apply_filters==>noindex":{"ct":1,"wt":29,"cpu":29,"mu":336,"pmu":0},"get_the_time==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_comment_ID==>get_comment":{"ct":2,"wt":22,"cpu":23,"mu":112,"pmu":0},"wp_loginout==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>includes_url":{"ct":3,"wt":168,"cpu":167,"mu":680,"pmu":1608},"get_post_status==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_is_file_mod_allowed==>apply_filters@2":{"ct":3,"wt":1,"cpu":3,"mu":112,"pmu":0},"is_single==>WP_Query::is_single":{"ct":13,"wt":8,"cpu":15,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_grant_install_languages_cap":{"ct":8,"wt":15,"cpu":16,"mu":21040,"pmu":0},"current_theme_supports==>in_array":{"ct":3,"wt":6,"cpu":8,"mu":112,"pmu":0},"get_metadata==>update_meta_cache":{"ct":6,"wt":508,"cpu":316,"mu":22040,"pmu":15376},"wp_admin_bar_customize_menu==>__":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"comment_form==>comments_open":{"ct":1,"wt":44,"cpu":45,"mu":112,"pmu":0},"WP_Hook::apply_filters==>rest_output_link_header":{"ct":1,"wt":140,"cpu":140,"mu":776,"pmu":0},"WP::parse_request==>wp_resolve_numeric_slug_conflicts":{"ct":1,"wt":34,"cpu":35,"mu":672,"pmu":0},"dynamic_sidebar==>WP_Widget::display_callback":{"ct":6,"wt":7556,"cpu":6374,"mu":25728,"pmu":0},"get_adjacent_post==>wpdb::get_var":{"ct":2,"wt":665,"cpu":236,"mu":-912,"pmu":0},"wpdb::__construct==>phpversion":{"ct":1,"wt":2,"cpu":2,"mu":176,"pmu":176},"get_cancel_comment_reply_link==>remove_query_arg":{"ct":1,"wt":24,"cpu":25,"mu":168,"pmu":0},"WP_Hook::apply_filters@1==>_wp_filter_taxonomy_base":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_permalink==>date":{"ct":12,"wt":50,"cpu":50,"mu":3184,"pmu":0},"get_avatar_data==>trim":{"ct":6,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::parse_query":{"ct":2,"wt":16,"cpu":17,"mu":5568,"pmu":0},"sanitize_user==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wptexturize==>trim":{"ct":24,"wt":20,"cpu":25,"mu":304,"pmu":0},"_wp_specialchars==>htmlspecialchars":{"ct":9,"wt":45,"cpu":47,"mu":1712,"pmu":0},"WP_Styles::_css_href==>strpos":{"ct":2,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Embed::autoembed==>preg_match":{"ct":1,"wt":26,"cpu":28,"mu":112,"pmu":0},"is_trackback==>WP_Query::is_trackback":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>esc_attr__":{"ct":1,"wt":53,"cpu":53,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_print_footer_scripts":{"ct":1,"wt":1906,"cpu":1906,"mu":3648,"pmu":0},"set_transient==>do_action":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"_wp_specialchars==>in_array":{"ct":18,"wt":13,"cpu":22,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_cron":{"ct":1,"wt":86,"cpu":86,"mu":672,"pmu":18632},"WP_Query::the_post==>WP_Query::next_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"apply_filters@2==>array_pop":{"ct":58,"wt":27,"cpu":45,"mu":112,"pmu":0},"wp_old_slug_redirect==>is_404":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_the_comments_pagination==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_colors_css_wrap":{"ct":1,"wt":62,"cpu":63,"mu":336,"pmu":0},"twentyseventeen_scripts==>is_singular":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_avatar_data==>is_numeric":{"ct":24,"wt":134,"cpu":131,"mu":112,"pmu":0},"WP_Scripts::__construct==>add_action":{"ct":1,"wt":40,"cpu":40,"mu":712,"pmu":0},"wp_get_object_terms==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_bloginfo==>is_admin":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"get_site_transient==>get_site_option":{"ct":5,"wt":1421,"cpu":973,"mu":28048,"pmu":0},"WP_Widget::_register==>WP_Widget_Media::_register_one":{"ct":4,"wt":208,"cpu":209,"mu":29816,"pmu":0},"WP_Comment_Query::fill_descendants==>get_comment":{"ct":1,"wt":33,"cpu":33,"mu":496,"pmu":0},"WP_Query::parse_tax_query==>get_taxonomies":{"ct":2,"wt":13,"cpu":14,"mu":112,"pmu":0},"get_theme_root_uri==>content_url":{"ct":40,"wt":421,"cpu":420,"mu":3792,"pmu":0},"WP::main==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"Requests::autoloader@1==>str_replace":{"ct":1,"wt":1,"cpu":0,"mu":152,"pmu":152},"is_random_header_image==>get_random_header_image":{"ct":4,"wt":787,"cpu":788,"mu":848,"pmu":0},"wp_admin_bar_render==>do_action@1":{"ct":2,"wt":140,"cpu":142,"mu":1424,"pmu":0},"wpdb::determine_charset==>wpdb::has_cap":{"ct":3,"wt":103,"cpu":104,"mu":1168,"pmu":0},"comments_template==>wp_get_current_commenter":{"ct":1,"wt":18,"cpu":18,"mu":712,"pmu":0},"main()==>is_admin":{"ct":25,"wt":15,"cpu":19,"mu":112,"pmu":112},"load_template==>bloginfo":{"ct":1,"wt":588,"cpu":588,"mu":12280,"pmu":0},"kses_init==>current_user_can":{"ct":2,"wt":183,"cpu":184,"mu":2992,"pmu":0},"wpdb::remove_placeholder_escape==>wpdb::placeholder_escape":{"ct":27,"wt":791,"cpu":798,"mu":32632,"pmu":6896},"WP_Admin_Bar::initialize==>add_action":{"ct":3,"wt":18,"cpu":18,"mu":2760,"pmu":0},"_close_comments_for_old_posts==>get_option":{"ct":1,"wt":21,"cpu":21,"mu":112,"pmu":0},"wp_parse_url==>substr":{"ct":28,"wt":10,"cpu":13,"mu":1008,"pmu":0},"map_meta_cap==>in_array":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"apply_filters@1==>array_shift":{"ct":84,"wt":57,"cpu":65,"mu":112,"pmu":0},"script_concat_settings==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>wp_parse_id_list":{"ct":1,"wt":15,"cpu":15,"mu":824,"pmu":0},"translate==>get_translations_for_domain":{"ct":1328,"wt":2198,"cpu":2213,"mu":2040,"pmu":112},"wp_default_scripts==>site_url":{"ct":2,"wt":102,"cpu":102,"mu":1968,"pmu":0},"Requests::autoloader==>spl_autoload_call@1":{"ct":1,"wt":12,"cpu":12,"mu":992,"pmu":1080},"wp_nonce_url==>str_replace":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"spl_autoload_call@1==>Requests::autoloader@1":{"ct":1,"wt":10,"cpu":10,"mu":880,"pmu":1080},"WP_Comment_Query::parse_orderby==>in_array":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"is_admin_bar_showing==>is_user_logged_in":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"paginate_links==>__":{"ct":2,"wt":15,"cpu":16,"mu":112,"pmu":0},"get_terms==>apply_filters":{"ct":3,"wt":71,"cpu":71,"mu":1088,"pmu":0},"WP_Comment_Query::fill_descendants==>get_comments@1":{"ct":1,"wt":1075,"cpu":759,"mu":2784,"pmu":14312},"wp_magic_quotes==>array_merge":{"ct":1,"wt":2,"cpu":2,"mu":168,"pmu":0},"WP::handle_404==>status_header":{"ct":1,"wt":18,"cpu":18,"mu":936,"pmu":0},"wp_strip_all_tags==>strip_tags":{"ct":2,"wt":3,"cpu":3,"mu":184,"pmu":0},"wp_parse_id_list==>array_map":{"ct":1,"wt":7,"cpu":7,"mu":600,"pmu":0},"main()==>Requests::set_certificate_path":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":56},"wpdb::_real_escape==>mysqli_real_escape_string":{"ct":43,"wt":110,"cpu":118,"mu":2048,"pmu":336},"rel_canonical==>is_singular":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Term_Query::parse_orderby":{"ct":3,"wt":22,"cpu":22,"mu":544,"pmu":0},"WP_Admin_Bar::_render==>is_user_logged_in":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_customize_support_script==>parse_url":{"ct":2,"wt":5,"cpu":5,"mu":1208,"pmu":0},"main()==>WP::init":{"ct":1,"wt":1677,"cpu":1256,"mu":54472,"pmu":56472},"WP_User::get_data_by==>wpdb::get_row":{"ct":1,"wt":396,"cpu":168,"mu":2320,"pmu":0},"twentyseventeen_custom_header_setup==>get_parent_theme_file_uri":{"ct":1,"wt":113,"cpu":113,"mu":2800,"pmu":0},"wp_check_php_mysql_versions==>extension_loaded":{"ct":2,"wt":8,"cpu":8,"mu":112,"pmu":112},"array_map==>esc_attr":{"ct":23,"wt":190,"cpu":195,"mu":176,"pmu":0},"map_deep@1==>rawurlencode":{"ct":18,"wt":16,"cpu":16,"mu":880,"pmu":0},"have_comments==>WP_Query::have_comments":{"ct":1,"wt":10,"cpu":11,"mu":112,"pmu":0},"validate_file==>substr":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"WP_Rewrite::init==>substr":{"ct":2,"wt":1,"cpu":2,"mu":176,"pmu":176},"get_stylesheet_directory_uri==>str_replace":{"ct":23,"wt":13,"cpu":12,"mu":112,"pmu":0},"get_custom_header==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":0},"wp_get_custom_css==>wp_get_custom_css_post":{"ct":1,"wt":188,"cpu":187,"mu":560,"pmu":0},"WP_Date_Query::get_sql_for_clause==>WP_Date_Query::get_compare":{"ct":1,"wt":3,"cpu":3,"mu":336,"pmu":0},"bloginfo==>get_bloginfo":{"ct":2,"wt":664,"cpu":664,"mu":12264,"pmu":0},"get_post_types==>wp_filter_object_list":{"ct":14,"wt":420,"cpu":422,"mu":11624,"pmu":0},"wp_kses_normalize_entities==>preg_replace_callback":{"ct":312,"wt":559,"cpu":552,"mu":1928,"pmu":0},"wp_list_categories==>is_category":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_default_scripts==>wp_installing":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_kses_bad_protocol_once2==>wp_kses_decode_entities":{"ct":99,"wt":451,"cpu":469,"mu":224,"pmu":0},"edit_comment_link==>current_user_can":{"ct":1,"wt":101,"cpu":101,"mu":1008,"pmu":0},"wp_script_is==>_wp_scripts_maybe_doing_it_wrong":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"set_url_scheme==>apply_filters":{"ct":51,"wt":37,"cpu":50,"mu":112,"pmu":0},"set_url_scheme==>apply_filters@1":{"ct":41,"wt":31,"cpu":29,"mu":112,"pmu":0},"set_url_scheme==>apply_filters@2":{"ct":35,"wt":20,"cpu":28,"mu":112,"pmu":0},"is_404==>WP_Query::is_404":{"ct":8,"wt":11,"cpu":11,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>is_numeric":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_filter_object_list==>WP_List_Util::filter":{"ct":25,"wt":432,"cpu":433,"mu":13880,"pmu":0},"set_url_scheme==>apply_filters@3":{"ct":9,"wt":5,"cpu":7,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wptexturize":{"ct":18,"wt":1305,"cpu":1228,"mu":12184,"pmu":0},"set_url_scheme==>apply_filters@4":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"date_i18n==>backslashit":{"ct":42,"wt":76,"cpu":75,"mu":1680,"pmu":0},"wp_kses_named_entities==>in_array":{"ct":10,"wt":20,"cpu":23,"mu":112,"pmu":0},"wp_just_in_time_script_localization==>_x":{"ct":1,"wt":11,"cpu":11,"mu":112,"pmu":0},"load_template==>get_queried_object_id":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_feed_link==>preg_replace":{"ct":4,"wt":135,"cpu":136,"mu":288,"pmu":0},"WP_Term_Query::get_terms==>compact":{"ct":3,"wt":9,"cpu":9,"mu":3160,"pmu":0},"WP_Rewrite::add_permastruct==>wp_parse_args":{"ct":3,"wt":4,"cpu":5,"mu":1240,"pmu":0},"WP_Widget_Categories::widget==>__":{"ct":1,"wt":12,"cpu":12,"mu":112,"pmu":0},"load_template==>get_template_part":{"ct":3,"wt":3737,"cpu":3737,"mu":27800,"pmu":9992},"WP_Admin_Bar::initialize==>get_current_blog_id":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_site_icon==>is_customize_preview":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_register_sidebar_widget==>is_callable":{"ct":17,"wt":16,"cpu":19,"mu":112,"pmu":0},"get_header_image==>esc_url_raw":{"ct":3,"wt":120,"cpu":121,"mu":224,"pmu":0},"wptexturize==>preg_replace":{"ct":28,"wt":214,"cpu":219,"mu":192,"pmu":0},"comments_template==>comments_open":{"ct":1,"wt":40,"cpu":40,"mu":112,"pmu":0},"wpdb::prepare==>wpdb::add_placeholder_escape":{"ct":27,"wt":557,"cpu":565,"mu":336,"pmu":1016},"WP_Widget_Text::_register_one==>wp_json_encode":{"ct":1,"wt":20,"cpu":20,"mu":704,"pmu":0},"feed_links_extra==>get_post":{"ct":1,"wt":14,"cpu":15,"mu":112,"pmu":0},"wpdb::set_sql_mode==>mysqli_query":{"ct":2,"wt":321,"cpu":68,"mu":16768,"pmu":14048},"twentyseventeen_scripts==>is_customize_preview":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Scripts::localize==>WP_Dependencies::get_data":{"ct":25,"wt":16,"cpu":19,"mu":112,"pmu":0},"WP_Locale::__construct==>WP_Locale::register_globals":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>parse_url":{"ct":1,"wt":2,"cpu":3,"mu":144,"pmu":0},"comment_time==>get_comment_time":{"ct":1,"wt":113,"cpu":113,"mu":704,"pmu":0},"get_object_term_cache==>is_wp_error":{"ct":4,"wt":1,"cpu":4,"mu":112,"pmu":0},"wp_validate_auth_cookie==>time":{"ct":2,"wt":2,"cpu":0,"mu":112,"pmu":0},"print_head_scripts==>_print_scripts":{"ct":1,"wt":3,"cpu":6,"mu":224,"pmu":0},"WP_Comment_Query::get_comments@1==>wp_array_slice_assoc":{"ct":1,"wt":7,"cpu":8,"mu":112,"pmu":3896},"get_the_category_list==>strtolower":{"ct":1,"wt":6,"cpu":4,"mu":112,"pmu":0},"get_site_transient==>apply_filters@2":{"ct":10,"wt":9,"cpu":5,"mu":-480,"pmu":0},"comment_form==>current_theme_supports":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Meta::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"make_clickable==>preg_replace":{"ct":1,"wt":28,"cpu":29,"mu":112,"pmu":0},"get_avatar==>get_comment":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_validate_auth_cookie==>WP_Session_Tokens::verify":{"ct":1,"wt":47,"cpu":47,"mu":1344,"pmu":9960},"WP_Admin_Bar::_bind==>WP_Admin_Bar::remove_node":{"ct":1,"wt":3,"cpu":2,"mu":224,"pmu":0},"adjacent_posts_rel_link_wp_head==>is_attachment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>admin_url":{"ct":4,"wt":221,"cpu":221,"mu":1376,"pmu":2864},"array_filter==>WP_Session_Tokens::is_still_valid":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Widget_Meta::widget==>get_bloginfo":{"ct":2,"wt":242,"cpu":243,"mu":552,"pmu":0},"wpdb::tables==>in_array":{"ct":15,"wt":8,"cpu":10,"mu":112,"pmu":0},"wp_get_object_terms==>implode":{"ct":2,"wt":2,"cpu":3,"mu":208,"pmu":0},"WP_Date_Query::is_first_order_clause==>array_intersect":{"ct":3,"wt":11,"cpu":10,"mu":2200,"pmu":1568},"wp_validate_auth_cookie==>WP_Session_Tokens::get_instance":{"ct":1,"wt":5,"cpu":5,"mu":392,"pmu":0},"get_rest_url==>is_admin":{"ct":5,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_set_internal_encoding==>function_exists":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"_prime_comment_caches==>wpdb::get_results":{"ct":1,"wt":354,"cpu":174,"mu":2128,"pmu":0},"wp_style_add_data==>wp_styles":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::do_action@1==>WP_Hook::apply_filters@1":{"ct":8,"wt":16557,"cpu":15851,"mu":286256,"pmu":199400},"paginate_comments_links==>get_comment_pages_count":{"ct":1,"wt":27,"cpu":27,"mu":224,"pmu":0},"Walker_Comment::html5_comment==>comment_reply_link":{"ct":1,"wt":372,"cpu":373,"mu":232,"pmu":0},"WP_Hook::apply_filters==>_post_format_link":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Embed::__construct==>add_shortcode":{"ct":1,"wt":8,"cpu":9,"mu":112,"pmu":112},"get_term_link==>get_ancestors":{"ct":2,"wt":244,"cpu":245,"mu":448,"pmu":0},"wp_plugin_directory_constants==>get_option":{"ct":1,"wt":71,"cpu":72,"mu":2544,"pmu":3888},"smilies_init==>substr":{"ct":86,"wt":47,"cpu":40,"mu":2888,"pmu":0},"wp_admin_bar_add_secondary_groups==>WP_Admin_Bar::add_group":{"ct":2,"wt":18,"cpu":17,"mu":944,"pmu":0},"comments_template==>have_comments":{"ct":1,"wt":18,"cpu":18,"mu":224,"pmu":0},"feed_links_extra==>wp_parse_args":{"ct":1,"wt":22,"cpu":24,"mu":488,"pmu":0},"register_post_status==>wp_parse_args":{"ct":16,"wt":56,"cpu":56,"mu":11360,"pmu":0},"has_filter==>WP_Hook::has_filter":{"ct":96,"wt":710,"cpu":722,"mu":544,"pmu":2304},"wp_admin_bar_customize_menu==>current_user_can":{"ct":1,"wt":30,"cpu":31,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_active_sidebar":{"ct":1,"wt":83,"cpu":84,"mu":112,"pmu":0},"wp_add_inline_script==>WP_Scripts::add_inline_script":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"wp_add_inline_script==>_wp_scripts_maybe_doing_it_wrong":{"ct":2,"wt":4,"cpu":4,"mu":224,"pmu":0},"get_locale==>apply_filters":{"ct":4,"wt":32,"cpu":32,"mu":224,"pmu":0},"get_locale==>apply_filters@1":{"ct":10,"wt":131,"cpu":133,"mu":2144,"pmu":0},"get_locale==>apply_filters@3":{"ct":1,"wt":16,"cpu":16,"mu":224,"pmu":0},"wp_parse_args==>array_merge":{"ct":187,"wt":195,"cpu":206,"mu":96344,"pmu":4600},"wp_admin_bar_edit_menu==>get_edit_post_link":{"ct":1,"wt":128,"cpu":128,"mu":320,"pmu":0},"twentyseventeen_body_classes==>get_theme_mod":{"ct":1,"wt":189,"cpu":189,"mu":432,"pmu":0},"get_edit_post_link==>get_post_type_object":{"ct":3,"wt":8,"cpu":9,"mu":112,"pmu":0},"get_the_time==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Scripts::do_item==>WP_Dependencies::get_data":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_parent_theme_file_uri==>ltrim":{"ct":1,"wt":0,"cpu":0,"mu":168,"pmu":0},"Walker_Comment::html5_comment==>edit_comment_link":{"ct":1,"wt":318,"cpu":318,"mu":2016,"pmu":0},"get_avatar_data==>hexdec":{"ct":6,"wt":13,"cpu":14,"mu":112,"pmu":0},"register_sidebar==>__":{"ct":3,"wt":16,"cpu":16,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>get_bloginfo":{"ct":1,"wt":26,"cpu":26,"mu":112,"pmu":0},"_make_cat_compat==>is_wp_error":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_post==>WP_Post::__construct":{"ct":1,"wt":5,"cpu":5,"mu":224,"pmu":0},"wp_cron==>array_keys":{"ct":1,"wt":1,"cpu":2,"mu":488,"pmu":0},"get_post_class==>get_taxonomies":{"ct":1,"wt":30,"cpu":31,"mu":488,"pmu":0},"do_action==>func_get_arg":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_customize_support_script==>admin_url":{"ct":1,"wt":56,"cpu":57,"mu":168,"pmu":0},"WP_Query::the_post==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"WP_Date_Query::__construct==>esc_sql":{"ct":1,"wt":31,"cpu":32,"mu":376,"pmu":0},"_wp_specialchars==>preg_match":{"ct":148,"wt":197,"cpu":208,"mu":112,"pmu":0},"WP::send_headers==>do_action_ref_array":{"ct":1,"wt":1,"cpu":1,"mu":-288,"pmu":0},"redirect_canonical==>parse_url":{"ct":2,"wt":4,"cpu":3,"mu":1224,"pmu":0},"paginate_comments_links==>trailingslashit":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"comment_form==>esc_attr":{"ct":10,"wt":51,"cpu":49,"mu":112,"pmu":0},"feed_content_type==>apply_filters@1":{"ct":3,"wt":5,"cpu":3,"mu":112,"pmu":0},"array_map==>preg_quote":{"ct":31,"wt":14,"cpu":18,"mu":1136,"pmu":0},"force_balance_tags==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"apply_filters@3==>func_get_args":{"ct":12,"wt":4,"cpu":5,"mu":4624,"pmu":368},"wp_admin_bar_updates_menu==>network_admin_url":{"ct":1,"wt":66,"cpu":67,"mu":416,"pmu":0},"WP_Hook::apply_filters@3==>next":{"ct":12,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_load_alloptions==>wpdb::suppress_errors":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":112},"rel_canonical==>wp_get_canonical_url":{"ct":1,"wt":230,"cpu":231,"mu":728,"pmu":0},"wpdb::get_col==>wpdb::get_var":{"ct":3,"wt":98,"cpu":97,"mu":-384,"pmu":328},"main()==>wp":{"ct":1,"wt":5977,"cpu":4972,"mu":163888,"pmu":121680},"get_the_post_thumbnail==>get_post":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"feed_links==>__":{"ct":2,"wt":24,"cpu":26,"mu":112,"pmu":0},"WP_Admin_Bar::_render_item==>esc_url":{"ct":8,"wt":357,"cpu":355,"mu":744,"pmu":0},"redirect_canonical==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wptexturize==>preg_match_all":{"ct":22,"wt":103,"cpu":106,"mu":10848,"pmu":0},"get_theme_support==>func_num_args":{"ct":17,"wt":11,"cpu":8,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_style_loader_src":{"ct":5,"wt":11,"cpu":13,"mu":248,"pmu":0},"load_template==>get_the_post_thumbnail":{"ct":1,"wt":45,"cpu":46,"mu":448,"pmu":0},"WP_Widget::display_callback==>WP_Widget::_set":{"ct":6,"wt":17,"cpu":17,"mu":352,"pmu":0},"comment_form==>end":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>compact":{"ct":3,"wt":13,"cpu":13,"mu":1240,"pmu":0},"Walker_Category::start_el==>esc_attr":{"ct":1,"wt":11,"cpu":11,"mu":112,"pmu":0},"WP_Dependencies::enqueue==>in_array":{"ct":11,"wt":6,"cpu":8,"mu":112,"pmu":0},"print_head_scripts==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_get_canonical_url==>get_query_var":{"ct":2,"wt":3,"cpu":5,"mu":88,"pmu":0},"WP_Widget_Meta::widget==>_x":{"ct":1,"wt":19,"cpu":19,"mu":112,"pmu":0},"paginate_comments_links==>WP_Rewrite::using_permalinks":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_custom_header==>get_theme_support":{"ct":4,"wt":13,"cpu":13,"mu":112,"pmu":0},"wp_get_session_token==>wp_parse_auth_cookie":{"ct":7,"wt":59,"cpu":59,"mu":4480,"pmu":0},"get_post_comments_feed_link==>trailingslashit":{"ct":1,"wt":3,"cpu":4,"mu":192,"pmu":0},"Walker_Comment::html5_comment==>get_comment_link":{"ct":1,"wt":256,"cpu":256,"mu":1088,"pmu":0},"wp_resource_hints==>wp_dependencies_unique_hosts":{"ct":1,"wt":88,"cpu":88,"mu":1136,"pmu":0},"WP_Hook::apply_filters==>rsd_link":{"ct":1,"wt":98,"cpu":97,"mu":336,"pmu":0},"main()==>get_theme_root":{"ct":1,"wt":20,"cpu":21,"mu":312,"pmu":0},"print_head_scripts==>WP_Scripts::reset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"esc_url==>str_replace":{"ct":394,"wt":238,"cpu":253,"mu":1872,"pmu":0},"dynamic_sidebar==>do_action":{"ct":8,"wt":13,"cpu":14,"mu":112,"pmu":0},"comments_template==>is_single":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_custom_header_background_just_in_time":{"ct":1,"wt":130,"cpu":132,"mu":1480,"pmu":0},"get_the_category==>_make_cat_compat":{"ct":1,"wt":14,"cpu":16,"mu":920,"pmu":0},"get_post_meta==>get_metadata":{"ct":5,"wt":154,"cpu":153,"mu":112,"pmu":0},"get_the_date==>get_post":{"ct":2,"wt":3,"cpu":5,"mu":112,"pmu":0},"wp_default_scripts==>admin_url":{"ct":3,"wt":166,"cpu":167,"mu":416,"pmu":0},"WP_Date_Query::sanitize_query@1==>WP_Date_Query::validate_date_values":{"ct":1,"wt":78,"cpu":78,"mu":1176,"pmu":1416},"get_month_link==>zeroise":{"ct":1,"wt":5,"cpu":5,"mu":432,"pmu":0},"wp_styles==>WP_Styles::__construct":{"ct":1,"wt":505,"cpu":506,"mu":27232,"pmu":5560},"wp_custom_css_cb==>wp_get_custom_css":{"ct":1,"wt":212,"cpu":211,"mu":896,"pmu":0},"wp_scripts==>WP_Scripts::__construct":{"ct":1,"wt":4121,"cpu":3984,"mu":90000,"pmu":70064},"the_post_navigation==>get_the_post_navigation":{"ct":1,"wt":499,"cpu":499,"mu":1208,"pmu":0},"comment_form==>wp_login_url":{"ct":1,"wt":81,"cpu":81,"mu":608,"pmu":0},"get_avatar==>esc_url":{"ct":6,"wt":460,"cpu":463,"mu":784,"pmu":0},"get_locale_stylesheet_uri==>get_locale":{"ct":1,"wt":16,"cpu":15,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_front_page":{"ct":1,"wt":42,"cpu":42,"mu":112,"pmu":0},"WP_Widget_Search::__construct==>_x":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":112},"WP_Comment_Query::query@1==>WP_Comment_Query::get_comments@1":{"ct":1,"wt":1059,"cpu":746,"mu":6736,"pmu":14312},"the_title_attribute==>get_the_title":{"ct":1,"wt":247,"cpu":247,"mu":1440,"pmu":0},"add_option==>maybe_serialize":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"_custom_header_background_just_in_time==>is_admin":{"ct":1,"wt":8,"cpu":9,"mu":112,"pmu":0},"content_url==>set_url_scheme":{"ct":40,"wt":286,"cpu":288,"mu":2912,"pmu":0},"get_avatar==>get_avatar_url":{"ct":3,"wt":1039,"cpu":1041,"mu":936,"pmu":0},"main()==>add_filter":{"ct":267,"wt":1093,"cpu":1119,"mu":258496,"pmu":243264},"_register_widget_form_callback==>wp_parse_args":{"ct":17,"wt":29,"cpu":30,"mu":6504,"pmu":0},"WP_Comment_Query::get_comments@1==>md5":{"ct":1,"wt":3,"cpu":4,"mu":176,"pmu":176},"get_taxonomies==>wp_filter_object_list":{"ct":5,"wt":66,"cpu":66,"mu":1312,"pmu":0},"is_header_video_active==>get_theme_support":{"ct":2,"wt":6,"cpu":7,"mu":112,"pmu":0},"wpdb::get_var==>wpdb::check_safe_collation":{"ct":5,"wt":96,"cpu":98,"mu":112,"pmu":0},"get_option==>maybe_unserialize":{"ct":432,"wt":2277,"cpu":2298,"mu":111272,"pmu":348216},"WP_Hook::resort_active_iterations==>min":{"ct":28,"wt":33,"cpu":38,"mu":112,"pmu":112},"_WP_Dependency::__construct==>func_get_args":{"ct":198,"wt":116,"cpu":134,"mu":74560,"pmu":10272},"wpdb::has_cap==>strpos":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>is_customize_preview":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP::send_headers==>array_merge":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"get_ancestors==>apply_filters":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"twentyseventeen_posted_on==>esc_url":{"ct":1,"wt":53,"cpu":53,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Audio::__construct":{"ct":1,"wt":457,"cpu":457,"mu":5664,"pmu":0},"WP_Hook::apply_filters@3==>_wp_specialchars":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"wp_get_archives==>wpdb::prepare":{"ct":1,"wt":70,"cpu":71,"mu":432,"pmu":0},"WP_Widget_Recent_Posts::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":112},"get_comment_text==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_resolve_numeric_slug_conflicts==>get_option":{"ct":1,"wt":25,"cpu":25,"mu":112,"pmu":0},"is_header_video_active==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"is_day==>WP_Query::is_day":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>is_month":{"ct":1,"wt":2,"cpu":1,"mu":224,"pmu":0},"wp_get_document_title==>single_post_title":{"ct":1,"wt":53,"cpu":53,"mu":1464,"pmu":0},"wp_footer==>do_action":{"ct":1,"wt":11035,"cpu":10459,"mu":102616,"pmu":9568},"twentyseventeen_scripts==>wp_enqueue_style":{"ct":3,"wt":50,"cpu":49,"mu":816,"pmu":0},"add_query_arg==>stripos":{"ct":42,"wt":50,"cpu":59,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>is_taxonomy_hierarchical":{"ct":5,"wt":26,"cpu":27,"mu":336,"pmu":0},"create_initial_post_types==>register_post_type":{"ct":16,"wt":6381,"cpu":6384,"mu":34456,"pmu":54560},"WP_Hook::apply_filters==>wp_schedule_update_checks":{"ct":1,"wt":193,"cpu":195,"mu":560,"pmu":2912},"load_default_textdomain==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"the_content==>get_the_content":{"ct":1,"wt":54,"cpu":54,"mu":808,"pmu":0},"WP_Hook::apply_filters@1==>_config_wp_siteurl":{"ct":27,"wt":16,"cpu":17,"mu":112,"pmu":0},"main()==>get_template_part":{"ct":1,"wt":15947,"cpu":8378,"mu":20368,"pmu":12880},"get_avatar_data==>get_comment":{"ct":2,"wt":14,"cpu":14,"mu":112,"pmu":0},"wp_kses_normalize_entities2==>valid_unicode":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_register_sidebar_widget==>wp_parse_args":{"ct":17,"wt":51,"cpu":48,"mu":6504,"pmu":0},"locate_template@2==>file_exists":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_default_scripts==>esc_attr__":{"ct":2,"wt":103,"cpu":103,"mu":1656,"pmu":328},"wp_resolve_numeric_slug_conflicts==>array_filter":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"WP_Admin_Bar::add_node==>WP_Admin_Bar::_set_node":{"ct":31,"wt":22,"cpu":26,"mu":2688,"pmu":0},"WP_Widget_Recent_Posts::widget==>the_permalink":{"ct":1,"wt":260,"cpu":260,"mu":448,"pmu":0},"WP_Taxonomy::set_props==>get_option":{"ct":3,"wt":62,"cpu":63,"mu":112,"pmu":0},"twentyseventeen_widgets_init==>__":{"ct":6,"wt":37,"cpu":37,"mu":224,"pmu":0},"get_user_by==>WP_User::init":{"ct":11,"wt":1031,"cpu":840,"mu":61792,"pmu":78032},"WP_Widget_Media_Image::__construct==>__":{"ct":5,"wt":26,"cpu":26,"mu":112,"pmu":0},"get_site_transient==>in_array":{"ct":5,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_edit_profile_url==>is_user_admin":{"ct":3,"wt":6,"cpu":7,"mu":112,"pmu":0},"twentyseventeen_time_link==>get_the_modified_date":{"ct":2,"wt":213,"cpu":213,"mu":1072,"pmu":0},"get_header==>do_action":{"ct":1,"wt":6,"cpu":6,"mu":1392,"pmu":0},"wp_localize_script==>WP_Scripts::localize":{"ct":4,"wt":82,"cpu":82,"mu":1880,"pmu":0},"twentyseventeen_categorized_blog==>set_transient":{"ct":1,"wt":6446,"cpu":437,"mu":-13448,"pmu":0},"WP_Post_Type::add_supports==>add_post_type_support":{"ct":16,"wt":92,"cpu":91,"mu":4272,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_edit_menu":{"ct":1,"wt":217,"cpu":217,"mu":1456,"pmu":0},"edit_post_link==>esc_url":{"ct":1,"wt":82,"cpu":81,"mu":208,"pmu":0},"WP_Dependencies::all_deps==>explode":{"ct":21,"wt":22,"cpu":28,"mu":8008,"pmu":0},"WP_Hook::apply_filters@1==>wpdb::remove_placeholder_escape":{"ct":6,"wt":189,"cpu":190,"mu":7568,"pmu":0},"comment_reply_link==>get_comment_reply_link":{"ct":1,"wt":371,"cpu":371,"mu":1904,"pmu":0},"get_post_thumbnail_id==>get_post_meta":{"ct":3,"wt":101,"cpu":101,"mu":112,"pmu":0},"get_term_link==>array_reverse":{"ct":2,"wt":7,"cpu":6,"mu":224,"pmu":0},"update_post_caches==>array_unique":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"map_meta_cap==>get_option":{"ct":1,"wt":26,"cpu":26,"mu":112,"pmu":0},"wp_list_comments==>wp_queue_comments_for_comment_meta_lazyload":{"ct":1,"wt":82,"cpu":83,"mu":2048,"pmu":0},"has_custom_header==>has_header_image":{"ct":1,"wt":642,"cpu":642,"mu":672,"pmu":0},"get_month_link==>str_replace":{"ct":2,"wt":3,"cpu":2,"mu":200,"pmu":0},"wp_get_current_user==>_wp_get_current_user":{"ct":75,"wt":1731,"cpu":1319,"mu":54248,"pmu":56472},"get_theme_root==>apply_filters":{"ct":8,"wt":7,"cpu":9,"mu":112,"pmu":0},"get_theme_root==>apply_filters@1":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_theme_root==>apply_filters@2":{"ct":5,"wt":2,"cpu":3,"mu":112,"pmu":0},"redirect_canonical==>is_tax":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"main()==>Requests::register_autoloader":{"ct":1,"wt":5,"cpu":4,"mu":696,"pmu":392},"wpdb::db_version==>mysqli_get_server_info":{"ct":5,"wt":6,"cpu":6,"mu":352,"pmu":8},"WP_Comment_Query::get_comments==>WP_Meta_Query::__construct":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>WP_Metadata_Lazyloader::queue_objects":{"ct":2,"wt":35,"cpu":35,"mu":2424,"pmu":0},"WP_Tax_Query::get_sql_clauses==>WP_Tax_Query::get_sql_for_query":{"ct":1,"wt":5,"cpu":5,"mu":280,"pmu":0},"the_permalink==>get_permalink":{"ct":1,"wt":188,"cpu":188,"mu":192,"pmu":0},"get_comments_number==>get_post":{"ct":1,"wt":10,"cpu":11,"mu":112,"pmu":0},"force_balance_tags==>preg_match":{"ct":3,"wt":26,"cpu":25,"mu":200,"pmu":0},"_get_path_to_translation_from_lang_dir==>get_locale":{"ct":1,"wt":14,"cpu":14,"mu":192,"pmu":0},"comment_form==>cancel_comment_reply_link":{"ct":1,"wt":37,"cpu":37,"mu":560,"pmu":0},"wp_initial_constants==>is_multisite":{"ct":1,"wt":10,"cpu":9,"mu":112,"pmu":112},"WP_Comment_Query::query==>wp_parse_args":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_count_comments==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comments@1==>serialize":{"ct":1,"wt":6,"cpu":7,"mu":4208,"pmu":424},"esc_url==>preg_replace":{"ct":102,"wt":143,"cpu":149,"mu":112,"pmu":0},"WP_Rewrite::get_month_permastruct==>WP_Rewrite::get_date_permastruct":{"ct":1,"wt":79,"cpu":80,"mu":392,"pmu":0},"wp_custom_css_cb==>is_customize_preview":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps@1==>in_array":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Query::query==>wp_parse_args":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Recent_Posts::widget==>get_the_title":{"ct":1,"wt":92,"cpu":92,"mu":152,"pmu":0},"kses_remove_filters==>remove_filter":{"ct":12,"wt":65,"cpu":66,"mu":264,"pmu":0},"print_head_scripts==>WP_Scripts::do_head_items":{"ct":1,"wt":414,"cpu":414,"mu":6480,"pmu":0},"WP_Hook::apply_filters==>create_initial_taxonomies":{"ct":1,"wt":1795,"cpu":1794,"mu":11672,"pmu":4816},"WP_Comment_Query::parse_query==>do_action_ref_array":{"ct":3,"wt":6,"cpu":7,"mu":-1088,"pmu":0},"WP_Comment::get_children==>wp_parse_args":{"ct":1,"wt":4,"cpu":4,"mu":488,"pmu":0},"user_trailingslashit==>trailingslashit":{"ct":26,"wt":96,"cpu":106,"mu":1840,"pmu":0},"rest_output_link_header==>get_rest_url":{"ct":1,"wt":82,"cpu":83,"mu":280,"pmu":0},"WP_Hook::apply_filters==>current":{"ct":178,"wt":100,"cpu":113,"mu":112,"pmu":112},"WP::parse_request==>explode":{"ct":2,"wt":5,"cpu":6,"mu":864,"pmu":0},"WP_Widget_Media::__construct==>array_filter":{"ct":4,"wt":3,"cpu":4,"mu":336,"pmu":0},"WP_Query::parse_query==>do_action_ref_array":{"ct":2,"wt":3,"cpu":2,"mu":-688,"pmu":0},"is_serialized==>preg_match":{"ct":79,"wt":398,"cpu":404,"mu":112,"pmu":0},"wp_list_categories==>walk_category_tree":{"ct":1,"wt":472,"cpu":472,"mu":2368,"pmu":0},"shortcode_unautop==>wp_spaces_regexp":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_User::get_role_caps==>wp_roles":{"ct":12,"wt":10,"cpu":11,"mu":136,"pmu":0},"get_edit_profile_url==>get_dashboard_url":{"ct":3,"wt":605,"cpu":603,"mu":1312,"pmu":0},"wp_html_split==>get_html_split_regex":{"ct":3,"wt":5,"cpu":6,"mu":672,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>sprintf":{"ct":1,"wt":2,"cpu":2,"mu":432,"pmu":0},"get_user_by==>WP_User::__construct":{"ct":11,"wt":50,"cpu":50,"mu":1264,"pmu":0},"get_the_post_thumbnail==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_header_image_tag":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_body_class==>WP_Query::get_queried_object":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Term_Query::parse_orderby==>apply_filters":{"ct":3,"wt":1,"cpu":3,"mu":112,"pmu":0},"wp_customize_url==>admin_url":{"ct":1,"wt":47,"cpu":47,"mu":176,"pmu":0},"update_post_cache==>wp_cache_add":{"ct":2,"wt":13,"cpu":14,"mu":936,"pmu":0},"is_page_template==>is_singular":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_avatar==>is_wp_error":{"ct":3,"wt":2,"cpu":4,"mu":112,"pmu":0},"add_option==>sanitize_option":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"wp_default_scripts==>did_action":{"ct":24,"wt":15,"cpu":18,"mu":112,"pmu":0},"main()==>wp_fix_server_vars":{"ct":1,"wt":121,"cpu":120,"mu":3280,"pmu":3920},"shortcode_unautop==>array_keys":{"ct":1,"wt":1,"cpu":2,"mu":488,"pmu":0},"comment_text==>get_comment_text":{"ct":1,"wt":5,"cpu":5,"mu":336,"pmu":0},"has_nav_menu==>get_nav_menu_locations":{"ct":3,"wt":357,"cpu":357,"mu":224,"pmu":336},"get_edit_post_link==>current_user_can":{"ct":3,"wt":217,"cpu":218,"mu":784,"pmu":0},"wp_kses_bad_protocol_once==>preg_match":{"ct":99,"wt":119,"cpu":113,"mu":112,"pmu":0},"get_template_directory_uri==>str_replace":{"ct":17,"wt":6,"cpu":11,"mu":112,"pmu":0},"twentyseventeen_body_classes==>has_header_image":{"ct":1,"wt":656,"cpu":656,"mu":1856,"pmu":0},"get_archives_link==>esc_url":{"ct":1,"wt":89,"cpu":90,"mu":168,"pmu":0},"wp_get_archives==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":808,"pmu":0},"WP_Widget_Media::__construct==>_x":{"ct":12,"wt":63,"cpu":63,"mu":112,"pmu":0},"WP_Widget_Text::_register_one==>WP_Widget::_register_one":{"ct":1,"wt":30,"cpu":30,"mu":4248,"pmu":0},"WP_Widget_Archives::widget==>apply_filters":{"ct":2,"wt":51,"cpu":53,"mu":152,"pmu":0},"paginate_comments_links==>get_permalink":{"ct":1,"wt":136,"cpu":136,"mu":192,"pmu":0},"wp_parse_args==>wp_parse_str":{"ct":4,"wt":57,"cpu":57,"mu":1232,"pmu":0},"WP_Widget_Media_Video::__construct==>_n_noop":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wp_admin_bar_appearance_menu==>current_theme_supports":{"ct":4,"wt":10,"cpu":7,"mu":112,"pmu":0},"get_the_date==>apply_filters":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_sidebar_toggle":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"get_userdata==>get_user_by":{"ct":6,"wt":434,"cpu":436,"mu":22192,"pmu":31848},"WP_Dependencies::all_deps==>WP_Scripts::all_deps@1":{"ct":4,"wt":69,"cpu":71,"mu":1120,"pmu":0},"get_category_link==>is_wp_error":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_language_attributes==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_load_embeds":{"ct":1,"wt":61,"cpu":65,"mu":3432,"pmu":3432},"add_theme_support==>array_slice":{"ct":6,"wt":7,"cpu":8,"mu":2368,"pmu":0},"wp_get_current_commenter==>apply_filters":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"get_edit_comment_link==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"is_blog_installed==>wpdb::suppress_errors":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":112},"get_metadata==>apply_filters":{"ct":12,"wt":11,"cpu":10,"mu":-464,"pmu":0},"get_metadata==>apply_filters@1":{"ct":5,"wt":5,"cpu":5,"mu":-128,"pmu":0},"get_metadata==>apply_filters@2":{"ct":7,"wt":7,"cpu":8,"mu":-224,"pmu":0},"wp_enqueue_scripts==>do_action@1":{"ct":1,"wt":1520,"cpu":1519,"mu":14128,"pmu":0},"WP_Query::get_posts==>update_post_caches":{"ct":2,"wt":1641,"cpu":1019,"mu":17000,"pmu":0},"wp_default_scripts==>get_bloginfo":{"ct":1,"wt":9,"cpu":9,"mu":248,"pmu":0},"wp_get_document_title==>capital_P_dangit":{"ct":1,"wt":17,"cpu":17,"mu":848,"pmu":0},"shortcode_unautop==>array_map":{"ct":1,"wt":10,"cpu":10,"mu":728,"pmu":0},"Walker_Comment::html5_comment==>comment_text":{"ct":1,"wt":595,"cpu":595,"mu":3976,"pmu":0},"wp_oembed_add_discovery_links==>is_singular":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"comments_template==>WP_Comment::get_children":{"ct":1,"wt":8,"cpu":9,"mu":-152,"pmu":0},"get_background_image==>get_theme_mod":{"ct":1,"wt":44,"cpu":45,"mu":112,"pmu":0},"WP_Query::setup_postdata==>WP_Query::is_single":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"array_map==>get_comment":{"ct":2,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_avatar_data==>add_query_arg":{"ct":6,"wt":325,"cpu":327,"mu":-2624,"pmu":0},"WP_User_Meta_Session_Tokens::get_session==>WP_User_Meta_Session_Tokens::get_sessions":{"ct":1,"wt":38,"cpu":38,"mu":1920,"pmu":9960},"WP_Dependencies::all_deps@1==>array_diff":{"ct":1,"wt":3,"cpu":3,"mu":168,"pmu":0},"wp_json_encode==>version_compare":{"ct":60,"wt":100,"cpu":101,"mu":112,"pmu":880},"get_comment_reply_link==>get_option":{"ct":1,"wt":19,"cpu":20,"mu":112,"pmu":0},"WP_Query::setup_postdata==>get_queried_object_id":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"wpdb::get_row==>wpdb::check_safe_collation":{"ct":9,"wt":250,"cpu":251,"mu":112,"pmu":0},"get_site_option==>get_network_option":{"ct":8,"wt":2044,"cpu":1405,"mu":29968,"pmu":2168},"redirect_canonical==>is_page":{"ct":2,"wt":5,"cpu":7,"mu":224,"pmu":0},"get_post_comments_feed_link==>get_permalink":{"ct":1,"wt":374,"cpu":375,"mu":12336,"pmu":0},"body_class==>join":{"ct":1,"wt":1,"cpu":1,"mu":304,"pmu":0},"WP_Dependencies::all_deps@1==>WP_Dependencies::set_group":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"array_walk==>wpdb::escape_by_ref":{"ct":33,"wt":1147,"cpu":1156,"mu":6936,"pmu":8616},"wp_enqueue_script==>WP_Dependencies::add":{"ct":4,"wt":20,"cpu":19,"mu":752,"pmu":0},"WP::parse_request==>str_replace":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":6,"mu":912,"pmu":1200},"WP_Query::get_posts==>WP_Date_Query::get_sql":{"ct":1,"wt":74,"cpu":75,"mu":2064,"pmu":1888},"get_current_user_id==>function_exists":{"ct":14,"wt":15,"cpu":12,"mu":112,"pmu":0},"wp_initial_constants==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":64},"get_edit_profile_url==>is_network_admin":{"ct":3,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_comment==>apply_filters":{"ct":30,"wt":27,"cpu":31,"mu":112,"pmu":0},"wp_get_canonical_url==>get_queried_object_id":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"redirect_canonical==>user_trailingslashit":{"ct":1,"wt":6,"cpu":7,"mu":392,"pmu":0},"WP::main==>WP::init":{"ct":1,"wt":25,"cpu":9,"mu":112,"pmu":0},"wpdb::set_sql_mode==>array_change_key_case":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":488},"rest_api_init==>rest_api_register_rewrites":{"ct":1,"wt":101,"cpu":101,"mu":1456,"pmu":0},"is_blog_installed==>wp_installing":{"ct":1,"wt":2,"cpu":2,"mu":512,"pmu":512},"WP_User::has_cap==>apply_filters":{"ct":8,"wt":148,"cpu":149,"mu":21152,"pmu":0},"redirect_canonical==>array_map":{"ct":1,"wt":26,"cpu":26,"mu":2344,"pmu":0},"WP_User::has_cap==>apply_filters@1":{"ct":5,"wt":126,"cpu":127,"mu":14056,"pmu":0},"WP_User::has_cap==>apply_filters@2":{"ct":19,"wt":310,"cpu":315,"mu":49928,"pmu":0},"WP_List_Util::filter==>array_key_exists":{"ct":146,"wt":85,"cpu":99,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>convert_chars":{"ct":2,"wt":6,"cpu":6,"mu":112,"pmu":0},"_wp_specialchars==>wp_kses_normalize_entities":{"ct":9,"wt":131,"cpu":130,"mu":1608,"pmu":0},"wp_kses_bad_protocol_once2==>strtolower":{"ct":212,"wt":107,"cpu":114,"mu":112,"pmu":0},"get_post_class==>post_type_supports":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"set_url_scheme==>ltrim":{"ct":4,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP::parse_request==>trim":{"ct":7,"wt":15,"cpu":7,"mu":208,"pmu":0},"WP_Widget_Media_Image::__construct==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"wp_load_alloptions==>apply_filters":{"ct":199,"wt":127,"cpu":145,"mu":112,"pmu":0},"wp_load_alloptions==>apply_filters@1":{"ct":134,"wt":72,"cpu":82,"mu":112,"pmu":0},"get_the_content==>preg_match":{"ct":1,"wt":33,"cpu":33,"mu":168,"pmu":0},"wp_load_alloptions==>apply_filters@2":{"ct":97,"wt":54,"cpu":62,"mu":112,"pmu":0},"wp_load_alloptions==>apply_filters@3":{"ct":12,"wt":6,"cpu":5,"mu":112,"pmu":0},"wp_load_alloptions==>apply_filters@4":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_validate_auth_cookie==>get_user_by":{"ct":1,"wt":1192,"cpu":772,"mu":35176,"pmu":46184},"WP_Admin_Bar::_render_group==>WP_Admin_Bar::_render_item":{"ct":9,"wt":1510,"cpu":1514,"mu":1456,"pmu":0},"WP_Admin_Bar::_render_item==>WP_Admin_Bar::_render_group@1":{"ct":6,"wt":1001,"cpu":1000,"mu":896,"pmu":0},"get_footer==>locate_template":{"ct":1,"wt":12676,"cpu":12100,"mu":109104,"pmu":9568},"WP_Hook::apply_filters@3==>array_keys":{"ct":12,"wt":6,"cpu":5,"mu":4624,"pmu":376},"WP_Taxonomy::add_rewrite_rules==>add_permastruct":{"ct":3,"wt":30,"cpu":30,"mu":2176,"pmu":0},"get_header_image==>get_theme_support":{"ct":3,"wt":11,"cpu":12,"mu":112,"pmu":0},"add_theme_support==>func_get_args":{"ct":6,"wt":6,"cpu":6,"mu":2368,"pmu":0},"wpdb::get_results==>get_object_vars":{"ct":19,"wt":10,"cpu":12,"mu":112,"pmu":56},"wp_kses_bad_protocol==>wp_kses_no_null":{"ct":99,"wt":411,"cpu":417,"mu":224,"pmu":0},"WP_MatchesMapRegex::_map==>preg_replace_callback":{"ct":1,"wt":39,"cpu":39,"mu":544,"pmu":0},"wp_default_scripts==>_x":{"ct":10,"wt":54,"cpu":54,"mu":224,"pmu":0},"get_template_part==>locate_template":{"ct":1,"wt":15943,"cpu":8374,"mu":20176,"pmu":12880},"get_template_part==>locate_template@1":{"ct":3,"wt":3691,"cpu":3693,"mu":21704,"pmu":9992},"WP_MatchesMapRegex::__construct==>WP_MatchesMapRegex::_map":{"ct":1,"wt":41,"cpu":42,"mu":656,"pmu":0},"wp_not_installed==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Term_Query::parse_order":{"ct":3,"wt":7,"cpu":7,"mu":224,"pmu":0},"update_user_caches==>wp_cache_add":{"ct":4,"wt":24,"cpu":24,"mu":1656,"pmu":0},"walk_category_tree==>Walker::walk":{"ct":1,"wt":462,"cpu":462,"mu":2144,"pmu":0},"main()==>wp_plugin_directory_constants":{"ct":1,"wt":84,"cpu":84,"mu":3320,"pmu":3888},"WP_User::get==>WP_User::__get":{"ct":1,"wt":26,"cpu":26,"mu":112,"pmu":0},"esc_url==>_deep_replace":{"ct":102,"wt":293,"cpu":306,"mu":224,"pmu":0},"WP::handle_404==>is_admin":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::render==>WP_Admin_Bar::_render":{"ct":1,"wt":1880,"cpu":1880,"mu":3024,"pmu":0},"esc_attr==>apply_filters":{"ct":58,"wt":52,"cpu":53,"mu":112,"pmu":0},"esc_attr==>apply_filters@1":{"ct":64,"wt":31,"cpu":40,"mu":112,"pmu":0},"esc_attr==>apply_filters@2":{"ct":6,"wt":8,"cpu":8,"mu":112,"pmu":0},"update_meta_cache==>wp_cache_get":{"ct":10,"wt":35,"cpu":35,"mu":112,"pmu":0},"esc_attr==>apply_filters@3":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::get_posts==>_prime_post_caches":{"ct":1,"wt":19,"cpu":10,"mu":224,"pmu":0},"the_content==>apply_filters":{"ct":1,"wt":1446,"cpu":1446,"mu":5784,"pmu":0},"unload_textdomain==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_theme_root==>in_array":{"ct":15,"wt":11,"cpu":12,"mu":112,"pmu":0},"esc_attr_e==>esc_attr":{"ct":2,"wt":16,"cpu":16,"mu":112,"pmu":0},"wp_metadata_lazyloader==>WP_Metadata_Lazyloader::__construct":{"ct":1,"wt":2,"cpu":3,"mu":1992,"pmu":0},"WP_Hook::apply_filters==>wp_custom_css_cb":{"ct":1,"wt":215,"cpu":214,"mu":1120,"pmu":0},"WP::parse_request==>preg_quote":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_nonce_url==>add_query_arg":{"ct":4,"wt":149,"cpu":150,"mu":624,"pmu":0},"get_page_template_slug==>get_post_meta":{"ct":2,"wt":57,"cpu":59,"mu":224,"pmu":0},"wp_allowed_protocols==>array_unique":{"ct":10,"wt":38,"cpu":38,"mu":13472,"pmu":3136},"WP_Comment_Query::get_comment_ids==>array_unique":{"ct":6,"wt":8,"cpu":8,"mu":1240,"pmu":0},"wpdb::get_col==>count":{"ct":4,"wt":2,"cpu":2,"mu":112,"pmu":112},"wpdb::__construct==>version_compare":{"ct":1,"wt":13,"cpu":13,"mu":112,"pmu":112},"register_taxonomy==>WP_Taxonomy::__construct":{"ct":10,"wt":2828,"cpu":2828,"mu":34744,"pmu":54656},"ent2ncr==>str_replace":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_parse_auth_cookie==>count":{"ct":8,"wt":3,"cpu":6,"mu":112,"pmu":0},"WP_Meta_Query::get_sql_for_query==>array_filter":{"ct":6,"wt":4,"cpu":4,"mu":448,"pmu":0},"wp_hash==>hash_hmac":{"ct":8,"wt":28,"cpu":34,"mu":624,"pmu":0},"twentyseventeen_entry_footer==>get_the_tag_list":{"ct":1,"wt":74,"cpu":75,"mu":560,"pmu":0},"get_comments_number==>apply_filters":{"ct":1,"wt":3,"cpu":5,"mu":112,"pmu":0},"is_admin_bar_showing==>_get_admin_bar_pref":{"ct":1,"wt":166,"cpu":166,"mu":1680,"pmu":28808},"get_page_of_comment==>get_comment":{"ct":1,"wt":11,"cpu":12,"mu":496,"pmu":0},"print_late_styles==>WP_Styles::reset":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"load_template@2==>the_custom_logo":{"ct":1,"wt":54,"cpu":54,"mu":672,"pmu":9992},"WP_User::get_caps_data==>get_user_meta":{"ct":12,"wt":710,"cpu":522,"mu":27928,"pmu":78032},"main()==>file_exists":{"ct":2,"wt":37,"cpu":38,"mu":112,"pmu":0},"wp_get_archives==>apply_filters":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"main()":{"ct":1,"wt":116780,"cpu":98543,"mu":2821392,"pmu":2823600},"WP_Query::get_posts==>get_current_user_id":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":0},"wp_list_categories==>get_categories":{"ct":1,"wt":905,"cpu":573,"mu":3672,"pmu":0},"WP_Comment_Query::get_comments==>array_keys":{"ct":2,"wt":5,"cpu":5,"mu":5344,"pmu":0},"WP_Term_Query::parse_orderby==>in_array":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Locale_Switcher::filter_locale":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"mbstring_binary_safe_encoding==>function_exists":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":112},"wpautop==>preg_split":{"ct":2,"wt":36,"cpu":37,"mu":1232,"pmu":0},"wp_admin_bar_search_menu==>home_url":{"ct":1,"wt":61,"cpu":61,"mu":384,"pmu":0},"wp_list_categories==>wp_parse_args":{"ct":1,"wt":3,"cpu":3,"mu":1448,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Search::__construct":{"ct":1,"wt":19,"cpu":19,"mu":1240,"pmu":1432},"wpdb::set_charset==>mysqli_query":{"ct":1,"wt":112,"cpu":26,"mu":112,"pmu":0},"update_object_term_cache==>wp_cache_add":{"ct":3,"wt":19,"cpu":18,"mu":1240,"pmu":0},"WP_Roles::init_roles==>array_keys":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"wp_count_comments==>get_comment_count":{"ct":1,"wt":268,"cpu":143,"mu":488,"pmu":0},"get_parent_theme_file_uri==>get_template_directory_uri":{"ct":1,"wt":108,"cpu":109,"mu":2432,"pmu":0},"is_month==>WP_Query::is_month":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media_Audio::__construct==>__":{"ct":6,"wt":31,"cpu":32,"mu":112,"pmu":0},"register_post_status==>sanitize_key":{"ct":16,"wt":90,"cpu":94,"mu":112,"pmu":0},"get_search_form==>locate_template@1":{"ct":1,"wt":7,"cpu":9,"mu":208,"pmu":0},"register_sidebar==>sprintf":{"ct":3,"wt":2,"cpu":1,"mu":1072,"pmu":0},"add_action==>add_filter":{"ct":251,"wt":1230,"cpu":1246,"mu":229272,"pmu":185688},"WP_Hook::apply_filters@1==>wp_default_styles":{"ct":1,"wt":490,"cpu":490,"mu":26144,"pmu":5536},"wp_get_update_data==>apply_filters@2":{"ct":1,"wt":1,"cpu":4,"mu":112,"pmu":0},"update_termmeta_cache==>update_meta_cache":{"ct":2,"wt":439,"cpu":222,"mu":1224,"pmu":0},"WP::parse_request==>preg_replace":{"ct":4,"wt":150,"cpu":152,"mu":352,"pmu":0},"get_comment_ID==>apply_filters":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"register_taxonomy==>wp_parse_args":{"ct":10,"wt":11,"cpu":7,"mu":112,"pmu":112},"create_initial_taxonomies==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render_group@1==>esc_attr":{"ct":12,"wt":75,"cpu":71,"mu":112,"pmu":0},"comments_template==>get_query_var":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"comments_template==>the_comments_pagination":{"ct":1,"wt":586,"cpu":586,"mu":3856,"pmu":0},"get_avatar==>wp_parse_args":{"ct":3,"wt":14,"cpu":15,"mu":2200,"pmu":0},"WP_Object_Cache::add==>WP_Object_Cache::set":{"ct":24,"wt":30,"cpu":34,"mu":5568,"pmu":376},"wpdb::__set==>in_array":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_maybe_load_embeds==>wp_embed_register_handler":{"ct":3,"wt":17,"cpu":17,"mu":2504,"pmu":2400},"get_comment_id_fields==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_load_alloptions==>wp_installing":{"ct":443,"wt":257,"cpu":309,"mu":112,"pmu":112},"load_template@1==>is_active_sidebar":{"ct":2,"wt":589,"cpu":590,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>array_map":{"ct":4,"wt":13,"cpu":13,"mu":1728,"pmu":200},"WP_Hook::apply_filters@1==>wp_admin_bar_add_secondary_groups":{"ct":1,"wt":19,"cpu":20,"mu":1056,"pmu":0},"WP_User::__construct==>WP_User::init":{"ct":1,"wt":48,"cpu":47,"mu":3672,"pmu":0},"wp_is_mobile==>strpos":{"ct":7,"wt":9,"cpu":4,"mu":112,"pmu":0},"WP_Post_Type::__construct==>WP_Post_Type::set_props":{"ct":16,"wt":5762,"cpu":5763,"mu":43008,"pmu":47048},"get_term_link==>implode":{"ct":2,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_adjacent_post==>get_post_type_object":{"ct":4,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Date_Query::get_sql_for_query==>array_filter":{"ct":2,"wt":1,"cpu":2,"mu":544,"pmu":488},"WP_Hook::apply_filters@4==>current":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"wp_validate_auth_cookie==>substr":{"ct":1,"wt":1,"cpu":0,"mu":144,"pmu":0},"feed_links==>sprintf":{"ct":2,"wt":12,"cpu":12,"mu":752,"pmu":0},"WP_Widget::_register_one==>WP_Widget::_get_display_callback":{"ct":17,"wt":13,"cpu":14,"mu":6504,"pmu":0},"get_ancestors==>get_term":{"ct":2,"wt":214,"cpu":215,"mu":560,"pmu":0},"wp_register_sidebar_widget==>in_array":{"ct":17,"wt":6,"cpu":12,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_comments_menu":{"ct":1,"wt":460,"cpu":334,"mu":2520,"pmu":0},"WP_Hook::apply_filters@3==>count":{"ct":12,"wt":5,"cpu":6,"mu":112,"pmu":0},"sanitize_title_with_dashes==>seems_utf8":{"ct":15,"wt":293,"cpu":296,"mu":1208,"pmu":1176},"wpdb::placeholder_escape==>uniqid":{"ct":1,"wt":11,"cpu":13,"mu":368,"pmu":368},"self_admin_url==>is_user_admin":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::all_deps@1==>in_array":{"ct":12,"wt":8,"cpu":13,"mu":112,"pmu":0},"WP::query_posts==>WP_Query::query":{"ct":1,"wt":3135,"cpu":2131,"mu":124816,"pmu":110072},"WP_Widget::display_callback==>WP_Widget_Recent_Posts::widget":{"ct":1,"wt":1645,"cpu":1334,"mu":4048,"pmu":0},"get_locale==>get_option":{"ct":1,"wt":424,"cpu":260,"mu":-58816,"pmu":0},"wpdb::flush==>mysqli_more_results":{"ct":25,"wt":22,"cpu":29,"mu":112,"pmu":0},"feed_links==>get_default_feed":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_template_directory==>get_template":{"ct":8,"wt":217,"cpu":219,"mu":672,"pmu":0},"script_concat_settings==>get_site_option":{"ct":2,"wt":533,"cpu":346,"mu":1360,"pmu":0},"capital_P_dangit==>str_replace":{"ct":10,"wt":11,"cpu":17,"mu":112,"pmu":0},"get_the_category_list==>get_the_category":{"ct":1,"wt":221,"cpu":223,"mu":2216,"pmu":0},"WP_Admin_Bar::_render==>_e":{"ct":2,"wt":20,"cpu":19,"mu":112,"pmu":0},"print_head_scripts==>did_action":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_just_in_time_script_localization":{"ct":1,"wt":81,"cpu":81,"mu":2048,"pmu":0},"edit_post_link==>get_post":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"main()==>WP_Query::__construct":{"ct":1,"wt":12,"cpu":13,"mu":112,"pmu":0},"get_edit_post_link==>sprintf":{"ct":3,"wt":4,"cpu":4,"mu":1072,"pmu":0},"WP_Date_Query::get_sql_for_query==>count":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":48},"get_comment_count==>wpdb::get_results":{"ct":1,"wt":260,"cpu":134,"mu":248,"pmu":0},"load_template==>post_class":{"ct":1,"wt":502,"cpu":502,"mu":3024,"pmu":8760},"twentyseventeen_time_link==>get_the_time":{"ct":1,"wt":20,"cpu":20,"mu":784,"pmu":0},"date_i18n==>apply_filters":{"ct":7,"wt":255,"cpu":256,"mu":1312,"pmu":0},"comment_form==>esc_url":{"ct":1,"wt":50,"cpu":50,"mu":176,"pmu":0},"get_pagenum_link==>remove_query_arg":{"ct":1,"wt":30,"cpu":30,"mu":280,"pmu":0},"wp_initial_constants==>define":{"ct":20,"wt":53,"cpu":58,"mu":808,"pmu":520},"get_the_time==>get_post_time":{"ct":1,"wt":14,"cpu":14,"mu":448,"pmu":0},"wpdb::set_sql_mode==>apply_filters":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_set_lang_dir==>define":{"ct":2,"wt":4,"cpu":5,"mu":240,"pmu":192},"get_author_posts_url==>WP_Rewrite::get_author_permastruct":{"ct":1,"wt":3,"cpu":3,"mu":160,"pmu":0},"WP_Admin_Bar::_render_group@1==>trim":{"ct":6,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Rewrite::get_date_permastruct==>preg_match_all":{"ct":1,"wt":61,"cpu":65,"mu":1008,"pmu":0},"esc_html==>wp_check_invalid_utf8":{"ct":30,"wt":77,"cpu":91,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>current_user_can":{"ct":1,"wt":38,"cpu":37,"mu":112,"pmu":0},"get_transient==>wp_load_alloptions":{"ct":3,"wt":24,"cpu":30,"mu":112,"pmu":0},"get_adjacent_post==>get_post_stati":{"ct":4,"wt":94,"cpu":96,"mu":1728,"pmu":0},"WP_Query::get_posts==>apply_filters":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_the_category==>is_wp_error":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_cron==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_content==>count":{"ct":2,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Dependencies::do_items==>WP_Styles::do_item":{"ct":5,"wt":893,"cpu":894,"mu":2328,"pmu":0},"add_query_arg==>count":{"ct":37,"wt":25,"cpu":27,"mu":112,"pmu":0},"WP_Scripts::localize==>html_entity_decode":{"ct":193,"wt":130,"cpu":147,"mu":13320,"pmu":4136},"get_post_class==>has_post_thumbnail":{"ct":1,"wt":62,"cpu":62,"mu":112,"pmu":0},"is_random_header_image==>get_theme_mod":{"ct":4,"wt":772,"cpu":771,"mu":1392,"pmu":0},"WP_Date_Query::validate_date_values==>array_key_exists":{"ct":15,"wt":13,"cpu":4,"mu":112,"pmu":0},"wp_create_nonce==>wp_nonce_tick":{"ct":7,"wt":36,"cpu":34,"mu":896,"pmu":0},"map_meta_cap==>is_multisite":{"ct":7,"wt":3,"cpu":8,"mu":112,"pmu":0},"wpdb::has_cap==>mysqli_get_client_info":{"ct":2,"wt":2,"cpu":2,"mu":336,"pmu":0},"WP_Locale::init==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_generator==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":64,"pmu":0},"WP_Widget_Recent_Comments::__construct==>is_active_widget":{"ct":1,"wt":115,"cpu":115,"mu":2688,"pmu":34096},"Walker_Category::start_el==>esc_url":{"ct":1,"wt":91,"cpu":92,"mu":112,"pmu":0},"wp_redirect_admin_locations==>is_404":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_body_class==>is_singular":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wpdb::placeholder_escape==>add_filter":{"ct":97,"wt":1016,"cpu":1035,"mu":-856,"pmu":8744},"get_term==>WP_Term::filter":{"ct":9,"wt":233,"cpu":237,"mu":224,"pmu":0},"wpdb::parse_db_host==>substr_count":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":112},"get_edit_comment_link==>admin_url":{"ct":1,"wt":62,"cpu":62,"mu":208,"pmu":0},"wp_get_document_title==>esc_html":{"ct":1,"wt":42,"cpu":43,"mu":1568,"pmu":0},"get_permalink==>get_post":{"ct":12,"wt":119,"cpu":119,"mu":3248,"pmu":0},"translate_with_gettext_context==>apply_filters":{"ct":199,"wt":103,"cpu":125,"mu":112,"pmu":0},"translate_with_gettext_context==>apply_filters@1":{"ct":219,"wt":115,"cpu":113,"mu":112,"pmu":0},"translate_with_gettext_context==>apply_filters@2":{"ct":6,"wt":2,"cpu":3,"mu":112,"pmu":0},"translate_with_gettext_context==>apply_filters@3":{"ct":10,"wt":5,"cpu":5,"mu":112,"pmu":0},"esc_attr==>_wp_specialchars":{"ct":130,"wt":397,"cpu":416,"mu":976,"pmu":0},"twentyseventeen_scripts==>comments_open":{"ct":1,"wt":51,"cpu":51,"mu":1200,"pmu":0},"get_stylesheet_directory==>get_stylesheet":{"ct":7,"wt":166,"cpu":163,"mu":336,"pmu":0},"force_balance_tags==>array_push":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"map_meta_cap@1==>get_post_type_object":{"ct":2,"wt":5,"cpu":5,"mu":112,"pmu":0},"wpdb::placeholder_escape==>has_filter":{"ct":97,"wt":894,"cpu":908,"mu":-35656,"pmu":2304},"create_initial_post_types==>register_post_status":{"ct":16,"wt":238,"cpu":241,"mu":832,"pmu":0},"update_term_cache==>wp_cache_add":{"ct":2,"wt":18,"cpu":18,"mu":152,"pmu":0},"sanitize_key==>apply_filters":{"ct":28,"wt":26,"cpu":31,"mu":112,"pmu":0},"is_paged==>WP_Query::is_paged":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"sanitize_key==>apply_filters@1":{"ct":17,"wt":10,"cpu":9,"mu":112,"pmu":0},"main()==>wp_unregister_GLOBALS":{"ct":1,"wt":9,"cpu":10,"mu":224,"pmu":224},"main()==>have_posts":{"ct":2,"wt":9,"cpu":10,"mu":448,"pmu":0},"wp_get_document_title==>apply_filters@1":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>_config_wp_home":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_style_is==>WP_Dependencies::query":{"ct":4,"wt":16,"cpu":16,"mu":112,"pmu":0},"single_post_title==>apply_filters@1":{"ct":1,"wt":45,"cpu":48,"mu":1240,"pmu":0},"get_bloginfo==>apply_filters":{"ct":4,"wt":605,"cpu":605,"mu":12208,"pmu":0},"WP::parse_request==>is_admin":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"wpdb::db_connect==>wpdb::parse_db_host":{"ct":1,"wt":364,"cpu":365,"mu":1640,"pmu":2040},"twentyseventeen_time_link==>get_permalink":{"ct":1,"wt":133,"cpu":136,"mu":304,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_body_classes":{"ct":1,"wt":1233,"cpu":1232,"mu":4720,"pmu":0},"get_bloginfo==>apply_filters@1":{"ct":1,"wt":44,"cpu":43,"mu":488,"pmu":0},"WP_Hook::apply_filters==>wp_print_styles":{"ct":1,"wt":1148,"cpu":1147,"mu":6848,"pmu":0},"_wp_footer_scripts==>print_late_styles":{"ct":1,"wt":125,"cpu":126,"mu":1120,"pmu":0},"wp_admin_bar_edit_menu==>get_post_type_object":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_option==>wp_load_alloptions":{"ct":436,"wt":2929,"cpu":2947,"mu":720,"pmu":112},"WP_Widget_Factory::register==>WP_Widget_Calendar::__construct":{"ct":1,"wt":24,"cpu":24,"mu":1128,"pmu":0},"WP_Hook::apply_filters==>array_slice":{"ct":138,"wt":108,"cpu":122,"mu":52000,"pmu":1976},"status_header==>wp_get_server_protocol":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"wpdb::query==>mysqli_error":{"ct":27,"wt":27,"cpu":49,"mu":976,"pmu":144},"wp_get_canonical_url==>get_post":{"ct":1,"wt":18,"cpu":19,"mu":560,"pmu":0},"wp_list_categories==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::query==>apply_filters":{"ct":17,"wt":920,"cpu":924,"mu":2944,"pmu":10624},"main()==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::query==>apply_filters@1":{"ct":6,"wt":288,"cpu":289,"mu":624,"pmu":0},"wpdb::query==>apply_filters@2":{"ct":4,"wt":161,"cpu":161,"mu":224,"pmu":0},"WP_Widget_Media_Image::__construct==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Widget_Text::_register_one==>add_action":{"ct":2,"wt":26,"cpu":26,"mu":1024,"pmu":0},"feed_links==>feed_content_type":{"ct":2,"wt":24,"cpu":23,"mu":448,"pmu":0},"wp_get_object_terms==>get_terms":{"ct":1,"wt":988,"cpu":580,"mu":12720,"pmu":0},"redirect_canonical==>basename":{"ct":1,"wt":2,"cpu":3,"mu":152,"pmu":0},"load_template==>the_ID":{"ct":1,"wt":6,"cpu":6,"mu":336,"pmu":0},"wp_filter_object_list==>WP_List_Util::__construct":{"ct":25,"wt":19,"cpu":24,"mu":112,"pmu":0},"sanitize_title_with_dashes==>str_replace":{"ct":80,"wt":65,"cpu":66,"mu":112,"pmu":112},"is_admin_bar_showing==>is_admin":{"ct":3,"wt":6,"cpu":5,"mu":112,"pmu":0},"WP::send_headers==>is_user_logged_in":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"map_meta_cap@1==>array_slice":{"ct":2,"wt":1,"cpu":1,"mu":864,"pmu":0},"wp_shortlink_wp_head==>esc_url":{"ct":1,"wt":63,"cpu":63,"mu":160,"pmu":0},"wp_generator==>the_generator":{"ct":1,"wt":13,"cpu":13,"mu":560,"pmu":0},"wp_admin_bar_my_account_menu==>get_avatar":{"ct":1,"wt":664,"cpu":664,"mu":1072,"pmu":0},"WP_Query::parse_query==>absint":{"ct":14,"wt":18,"cpu":22,"mu":112,"pmu":0},"wpdb::prepare==>str_replace":{"ct":54,"wt":47,"cpu":51,"mu":112,"pmu":112},"wp_set_internal_encoding==>mb_internal_encoding":{"ct":1,"wt":21,"cpu":21,"mu":112,"pmu":0},"sanitize_option==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":32,"pmu":0},"sanitize_post==>sanitize_post_field":{"ct":23,"wt":53,"cpu":54,"mu":224,"pmu":224},"main()==>WP_Embed::__construct":{"ct":1,"wt":85,"cpu":85,"mu":7952,"pmu":7456},"get_avatar==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_avatar==>apply_filters@2":{"ct":4,"wt":2,"cpu":4,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>is_admin":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"add_theme_support==>array_intersect":{"ct":1,"wt":3,"cpu":3,"mu":488,"pmu":0},"main()==>extension_loaded":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_sanitize_colorscheme==>in_array":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::_do_query==>mysqli_query":{"ct":27,"wt":15866,"cpu":1731,"mu":442928,"pmu":36424},"sanitize_title_with_dashes==>mb_strtolower":{"ct":15,"wt":206,"cpu":213,"mu":696,"pmu":416},"WP_Widget_Media_Audio::__construct==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"_get_path_to_translation==>_get_path_to_translation_from_lang_dir":{"ct":1,"wt":27,"cpu":27,"mu":1040,"pmu":0},"wp_admin_bar_my_account_item==>get_avatar":{"ct":1,"wt":607,"cpu":607,"mu":624,"pmu":0},"WP_Query::is_front_page==>get_option":{"ct":18,"wt":364,"cpu":367,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>apply_filters_ref_array":{"ct":3,"wt":3,"cpu":3,"mu":-1016,"pmu":0},"get_avatar_data==>wp_parse_args":{"ct":6,"wt":26,"cpu":28,"mu":112,"pmu":0},"sanitize_title_with_dashes==>trim":{"ct":15,"wt":7,"cpu":10,"mu":112,"pmu":96},"WP_Query::get_posts==>WP_Tax_Query::get_sql":{"ct":1,"wt":9,"cpu":8,"mu":448,"pmu":0},"feed_links_extra==>get_bloginfo":{"ct":1,"wt":59,"cpu":59,"mu":112,"pmu":0},"twentyseventeen_scripts==>has_nav_menu":{"ct":1,"wt":88,"cpu":87,"mu":560,"pmu":0},"WP_Widget::_register_one==>wp_register_sidebar_widget":{"ct":17,"wt":284,"cpu":290,"mu":15904,"pmu":0},"WP_Hook::resort_active_iterations==>current":{"ct":57,"wt":28,"cpu":40,"mu":112,"pmu":112},"wpdb::tables==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"do_action@1==>array_pop":{"ct":6,"wt":3,"cpu":8,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>__":{"ct":1,"wt":11,"cpu":11,"mu":112,"pmu":0},"wp_script_is==>wp_scripts":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"register_post_type==>WP_Post_Type::register_taxonomies":{"ct":16,"wt":10,"cpu":11,"mu":112,"pmu":0},"wp==>WP::main":{"ct":1,"wt":5969,"cpu":4964,"mu":163728,"pmu":121680},"_get_path_to_translation_from_lang_dir==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_editor_style==>add_theme_support":{"ct":1,"wt":5,"cpu":4,"mu":432,"pmu":0},"the_ID==>get_the_ID":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":0},"self_admin_url==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_fonts_url==>urlencode":{"ct":4,"wt":2,"cpu":4,"mu":400,"pmu":0},"comments_template==>esc_url":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_archives==>is_post_type_viewable":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_default_scripts==>get_rest_url":{"ct":1,"wt":105,"cpu":106,"mu":2184,"pmu":0},"get_network_option==>wp_cache_get":{"ct":8,"wt":31,"cpu":35,"mu":112,"pmu":80},"force_balance_tags==>array_pop":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_plugin_directory_constants==>define":{"ct":7,"wt":4,"cpu":6,"mu":664,"pmu":0},"wp_resource_hints==>is_scalar":{"ct":9,"wt":5,"cpu":4,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>wp_enqueue_style":{"ct":1,"wt":517,"cpu":517,"mu":28400,"pmu":6336},"wp_admin_bar_edit_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":9,"cpu":10,"mu":152,"pmu":0},"wp_heartbeat_settings==>is_user_logged_in":{"ct":1,"wt":5,"cpu":5,"mu":336,"pmu":0},"WP_Dependencies::query==>in_array":{"ct":5,"wt":3,"cpu":7,"mu":112,"pmu":0},"main()==>wp_get_mu_plugins":{"ct":1,"wt":7,"cpu":7,"mu":224,"pmu":0},"main()==>WP_Rewrite::__construct":{"ct":1,"wt":185,"cpu":186,"mu":928,"pmu":928},"WP_Hook::apply_filters==>_close_comments_for_old_post":{"ct":5,"wt":132,"cpu":132,"mu":224,"pmu":0},"noindex==>wp_no_robots":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_body_class==>post_type_supports":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"translate_with_gettext_context==>NOOP_Translations::translate":{"ct":434,"wt":185,"cpu":207,"mu":112,"pmu":0},"adjacent_posts_rel_link_wp_head==>adjacent_posts_rel_link":{"ct":1,"wt":1187,"cpu":757,"mu":1976,"pmu":0},"sanitize_html_class==>preg_replace":{"ct":6,"wt":47,"cpu":47,"mu":112,"pmu":0},"WP_Post_Type::set_props==>wp_parse_args":{"ct":16,"wt":15,"cpu":17,"mu":112,"pmu":0},"get_bloginfo==>site_url":{"ct":2,"wt":122,"cpu":123,"mu":336,"pmu":0},"Requests::autoloader@1==>file_exists":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":112},"WP_Roles::init_roles==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>wp_metadata_lazyloader":{"ct":2,"wt":5,"cpu":6,"mu":2584,"pmu":0},"wp_fix_server_vars==>preg_match":{"ct":1,"wt":17,"cpu":18,"mu":112,"pmu":0},"wpdb::set_charset==>wpdb::has_cap":{"ct":2,"wt":12,"cpu":12,"mu":112,"pmu":48},"wp_kses_no_null==>preg_replace":{"ct":396,"wt":348,"cpu":325,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wlwmanifest_link":{"ct":1,"wt":51,"cpu":51,"mu":224,"pmu":0},"WP_Hook::apply_filters@1==>twentyseventeen_scripts":{"ct":1,"wt":1458,"cpu":1457,"mu":11832,"pmu":0},"wp_debug_mode==>error_reporting":{"ct":1,"wt":2,"cpu":2,"mu":144,"pmu":144},"comments_template==>get_comments_number":{"ct":1,"wt":26,"cpu":26,"mu":336,"pmu":0},"wp_style_is==>_wp_scripts_maybe_doing_it_wrong":{"ct":4,"wt":11,"cpu":10,"mu":112,"pmu":0},"WP_Admin_Bar::add_node==>func_num_args":{"ct":31,"wt":15,"cpu":17,"mu":112,"pmu":0},"map_meta_cap@1==>func_get_args":{"ct":2,"wt":2,"cpu":2,"mu":864,"pmu":0},"wp_schedule_update_checks==>wp_next_scheduled":{"ct":3,"wt":181,"cpu":184,"mu":448,"pmu":2912},"WP_Hook::apply_filters@1==>wp_admin_bar_updates_menu":{"ct":1,"wt":1731,"cpu":1282,"mu":9320,"pmu":0},"load_template==>body_class":{"ct":1,"wt":1722,"cpu":1721,"mu":10784,"pmu":0},"create_initial_post_types==>_x":{"ct":32,"wt":226,"cpu":235,"mu":112,"pmu":0},"is_blog_installed==>wp_cache_set":{"ct":1,"wt":3,"cpu":2,"mu":600,"pmu":0},"get_rest_url==>apply_filters@1":{"ct":4,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_validate_auth_cookie==>hash_hmac":{"ct":1,"wt":5,"cpu":5,"mu":208,"pmu":0},"get_rest_url==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::get_col==>wpdb::query":{"ct":4,"wt":2213,"cpu":614,"mu":16800,"pmu":18096},"comments_template==>post_password_required":{"ct":1,"wt":65,"cpu":65,"mu":112,"pmu":0},"edit_post_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>wp_json_encode":{"ct":2,"wt":29,"cpu":29,"mu":-2232,"pmu":4560},"WP::build_query_string==>has_filter":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_content_width==>is_active_sidebar":{"ct":1,"wt":157,"cpu":157,"mu":784,"pmu":0},"WP::parse_request==>WP_Rewrite::wp_rewrite_rules":{"ct":1,"wt":170,"cpu":172,"mu":20016,"pmu":3216},"the_custom_logo==>get_custom_logo":{"ct":1,"wt":52,"cpu":53,"mu":560,"pmu":9992},"wp_count_comments==>wp_cache_set":{"ct":1,"wt":3,"cpu":4,"mu":152,"pmu":0},"metadata_exists==>apply_filters@1":{"ct":2,"wt":1,"cpu":2,"mu":16,"pmu":0},"wp_add_inline_script==>wp_scripts":{"ct":2,"wt":4124,"cpu":3988,"mu":90520,"pmu":70064},"twentyseventeen_is_frontpage==>is_front_page":{"ct":1,"wt":42,"cpu":42,"mu":112,"pmu":0},"get_body_class==>is_page_template":{"ct":1,"wt":51,"cpu":51,"mu":448,"pmu":0},"twentyseventeen_content_width==>get_theme_mod":{"ct":1,"wt":67,"cpu":67,"mu":448,"pmu":33464},"wpdb::set_sql_mode==>in_array":{"ct":7,"wt":5,"cpu":6,"mu":112,"pmu":0},"is_active_sidebar==>apply_filters":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"is_active_sidebar==>apply_filters@1":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"feed_links_extra==>_x":{"ct":1,"wt":26,"cpu":27,"mu":112,"pmu":0},"WP_Object_Cache::add_global_groups==>array_fill_keys":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"paginate_links==>WP_Rewrite::using_permalinks":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_posted_on==>get_author_posts_url":{"ct":1,"wt":209,"cpu":209,"mu":1224,"pmu":1528},"get_object_term_cache==>get_term":{"ct":4,"wt":326,"cpu":327,"mu":1568,"pmu":0},"main()==>wp_installing":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Query::get_posts==>in_array":{"ct":9,"wt":1,"cpu":7,"mu":112,"pmu":0},"comments_template==>wp_list_comments":{"ct":1,"wt":4448,"cpu":4448,"mu":20000,"pmu":0},"get_pagenum_link==>preg_quote":{"ct":2,"wt":2,"cpu":2,"mu":152,"pmu":0},"wp_print_styles==>wp_styles":{"ct":1,"wt":4,"cpu":1,"mu":112,"pmu":0},"esc_attr__==>esc_attr":{"ct":3,"wt":119,"cpu":125,"mu":1432,"pmu":328},"wp_validate_logged_in_cookie==>is_network_admin":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Locale_Switcher::filter_locale==>end":{"ct":12,"wt":8,"cpu":6,"mu":168,"pmu":0},"WP_Hook::apply_filters@1==>wp_prototype_before_jquery":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":0},"rest_output_link_header==>headers_sent":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"date_i18n==>WP_Locale::get_month":{"ct":7,"wt":24,"cpu":25,"mu":-1456,"pmu":0},"WP_Term::get_instance==>wp_cache_get":{"ct":7,"wt":38,"cpu":38,"mu":392,"pmu":0},"get_edit_profile_url==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_adjacent_post==>current_user_can":{"ct":4,"wt":157,"cpu":157,"mu":112,"pmu":0},"get_terms==>array_intersect_key":{"ct":3,"wt":8,"cpu":8,"mu":600,"pmu":0},"get_edit_profile_url==>apply_filters@2":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"redirect_canonical==>is_attachment":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"sanitize_term==>sanitize_term_field":{"ct":146,"wt":299,"cpu":320,"mu":224,"pmu":0},"wpdb::query==>mysqli_insert_id":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::all_deps@1==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":12456,"pmu":0},"wpdb::query==>mysqli_affected_rows":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Archives::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"get_theme_support==>array_slice":{"ct":16,"wt":7,"cpu":7,"mu":6128,"pmu":0},"wp_admin_bar_new_content_menu==>admin_url":{"ct":5,"wt":299,"cpu":297,"mu":448,"pmu":0},"WP_Dependencies::all_deps@1==>WP_Scripts::set_group":{"ct":2,"wt":5,"cpu":7,"mu":112,"pmu":0},"array_map==>get_post":{"ct":4,"wt":123,"cpu":124,"mu":1904,"pmu":1664},"WP_Widget_Media::_register_one==>WP_Widget::is_preview":{"ct":4,"wt":2,"cpu":3,"mu":136,"pmu":0},"WP_Hook::apply_filters==>do_shortcode":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Term_Query::query==>wp_parse_args":{"ct":3,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_permalink==>apply_filters":{"ct":16,"wt":6,"cpu":6,"mu":112,"pmu":0},"get_permalink==>apply_filters@1":{"ct":8,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Date_Query::__construct":{"ct":1,"wt":167,"cpu":166,"mu":3768,"pmu":2984},"main()==>stripos":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":224},"wp_default_scripts==>strpos":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"sanitize_title_with_dashes==>preg_replace":{"ct":90,"wt":167,"cpu":168,"mu":680,"pmu":160},"get_the_term_list==>get_the_terms":{"ct":1,"wt":57,"cpu":58,"mu":112,"pmu":0},"WP_Date_Query::get_sql_for_clause==>WP_Date_Query::build_value":{"ct":3,"wt":5,"cpu":4,"mu":224,"pmu":0},"get_language_attributes==>get_bloginfo":{"ct":1,"wt":64,"cpu":63,"mu":704,"pmu":0},"wp_print_styles==>WP_Dependencies::do_items":{"ct":1,"wt":1077,"cpu":1079,"mu":5136,"pmu":0},"get_comment_text==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::prepare==>preg_replace":{"ct":81,"wt":279,"cpu":283,"mu":3024,"pmu":264},"WP_Term_Query::get_terms==>apply_filters":{"ct":12,"wt":8,"cpu":9,"mu":112,"pmu":0},"WP_Query::setup_postdata==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_rtl==>WP_Locale::is_rtl":{"ct":3,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_the_date==>get_option":{"ct":1,"wt":21,"cpu":22,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Categories::__construct":{"ct":1,"wt":18,"cpu":18,"mu":1136,"pmu":1328},"get_language_attributes==>get_option":{"ct":2,"wt":75,"cpu":74,"mu":112,"pmu":0},"get_option==>wp_cache_get":{"ct":448,"wt":1720,"cpu":1766,"mu":384,"pmu":224},"wpdb::check_safe_collation==>wpdb::check_ascii":{"ct":26,"wt":434,"cpu":439,"mu":336,"pmu":1568},"get_comment==>WP_Comment::get_instance":{"ct":6,"wt":81,"cpu":84,"mu":2752,"pmu":0},"is_year==>WP_Query::is_year":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_salt==>strtoupper":{"ct":4,"wt":3,"cpu":3,"mu":272,"pmu":0},"main()==>wp_set_internal_encoding":{"ct":1,"wt":301,"cpu":302,"mu":1648,"pmu":0},"get_feed_link==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_transient==>wp_using_ext_object_cache":{"ct":3,"wt":3,"cpu":5,"mu":112,"pmu":0},"get_feed_link==>apply_filters@1":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_kses_normalize_entities2==>str_pad":{"ct":1,"wt":1,"cpu":1,"mu":144,"pmu":0},"apply_filters@1==>array_pop":{"ct":84,"wt":50,"cpu":57,"mu":112,"pmu":0},"wp_get_canonical_url==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"register_post_type==>WP_Post_Type::add_hooks":{"ct":16,"wt":157,"cpu":161,"mu":18832,"pmu":7512},"get_avatar_data==>apply_filters":{"ct":8,"wt":11,"cpu":12,"mu":112,"pmu":0},"get_avatar_data==>apply_filters@2":{"ct":12,"wt":5,"cpu":7,"mu":112,"pmu":0},"current_theme_supports==>func_num_args":{"ct":18,"wt":7,"cpu":15,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Query::set_found_posts":{"ct":2,"wt":8,"cpu":9,"mu":336,"pmu":512},"_custom_header_background_just_in_time==>get_theme_support":{"ct":1,"wt":3,"cpu":3,"mu":224,"pmu":0},"wptexturize==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_maybe_load_widgets==>add_action":{"ct":1,"wt":21,"cpu":20,"mu":1368,"pmu":168},"wptexturize==>apply_filters@1":{"ct":37,"wt":45,"cpu":41,"mu":112,"pmu":0},"wptexturize==>apply_filters@2":{"ct":6,"wt":7,"cpu":7,"mu":112,"pmu":0},"wp_admin_bar_comments_menu==>sprintf":{"ct":1,"wt":1,"cpu":2,"mu":432,"pmu":0},"twentyseventeen_custom_header_setup==>add_theme_support":{"ct":1,"wt":11,"cpu":11,"mu":808,"pmu":0},"get_archives_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>prepend_attachment":{"ct":1,"wt":9,"cpu":9,"mu":224,"pmu":0},"WP_Hook::remove_filter==>_wp_filter_build_unique_id":{"ct":10,"wt":8,"cpu":10,"mu":112,"pmu":0},"get_pagenum_link==>preg_replace":{"ct":4,"wt":43,"cpu":44,"mu":216,"pmu":0},"get_taxonomy_labels==>apply_filters":{"ct":5,"wt":4,"cpu":3,"mu":-168,"pmu":0},"force_balance_tags==>strpos":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_taxonomy_labels==>apply_filters@1":{"ct":5,"wt":2,"cpu":4,"mu":-168,"pmu":0},"wp_loginout==>wp_logout_url":{"ct":1,"wt":282,"cpu":282,"mu":272,"pmu":0},"adjacent_posts_rel_link==>get_adjacent_post_rel_link":{"ct":2,"wt":1185,"cpu":754,"mu":1864,"pmu":0},"WP_Hook::apply_filters==>rel_canonical":{"ct":1,"wt":298,"cpu":299,"mu":1096,"pmu":0},"wp_check_invalid_utf8==>in_array":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_date==>mysql2date":{"ct":2,"wt":323,"cpu":322,"mu":3728,"pmu":0},"Requests::autoloader==>str_replace":{"ct":1,"wt":2,"cpu":1,"mu":152,"pmu":152},"WP_Widget_Recent_Posts::widget==>WP_Query::__construct":{"ct":1,"wt":1103,"cpu":871,"mu":12440,"pmu":0},"WP_Admin_Bar::_render==>esc_url":{"ct":1,"wt":67,"cpu":67,"mu":48,"pmu":0},"WP_Widget_RSS::__construct==>WP_Widget::__construct":{"ct":1,"wt":7,"cpu":7,"mu":904,"pmu":0},"wp_nonce_tick==>time":{"ct":7,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP::handle_404==>header":{"ct":1,"wt":3,"cpu":3,"mu":192,"pmu":0},"_n==>apply_filters@2":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"_n==>apply_filters@3":{"ct":6,"wt":3,"cpu":2,"mu":112,"pmu":0},"smilies_init==>preg_quote":{"ct":46,"wt":26,"cpu":23,"mu":1616,"pmu":0},"WP_Scripts::localize==>WP_Dependencies::add_data":{"ct":25,"wt":71,"cpu":73,"mu":9360,"pmu":0},"redirect_canonical==>strpos":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"Walker_Comment::html5_comment==>get_comment_time":{"ct":1,"wt":115,"cpu":115,"mu":480,"pmu":0},"wp_start_object_cache==>wp_cache_init":{"ct":1,"wt":10,"cpu":11,"mu":1016,"pmu":0},"WP_Query::get_posts==>get_post_status":{"ct":1,"wt":6,"cpu":6,"mu":336,"pmu":0},"apply_filters==>array_shift":{"ct":131,"wt":103,"cpu":124,"mu":112,"pmu":112},"wp_get_object_terms==>get_taxonomy":{"ct":3,"wt":4,"cpu":4,"mu":224,"pmu":0},"wp_validate_logged_in_cookie==>wp_validate_auth_cookie":{"ct":1,"wt":1371,"cpu":951,"mu":37896,"pmu":56144},"WP_Styles::do_item==>WP_Styles::_css_href":{"ct":5,"wt":775,"cpu":776,"mu":2264,"pmu":0},"Walker_Comment::html5_comment==>esc_url":{"ct":1,"wt":53,"cpu":54,"mu":112,"pmu":0},"WP_Scripts::do_item==>esc_url":{"ct":9,"wt":678,"cpu":686,"mu":1072,"pmu":0},"WP_Widget::__construct==>strtolower":{"ct":17,"wt":10,"cpu":11,"mu":112,"pmu":0},"wp_get_object_terms==>taxonomy_exists":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_theme_support==>func_get_args":{"ct":16,"wt":8,"cpu":9,"mu":6128,"pmu":0},"WP_Widget_Media::_register_one==>add_filter":{"ct":4,"wt":21,"cpu":20,"mu":2816,"pmu":0},"WP_Post_Type::set_props==>apply_filters":{"ct":8,"wt":2,"cpu":7,"mu":112,"pmu":0},"WP_Post_Type::set_props==>apply_filters@1":{"ct":8,"wt":4,"cpu":6,"mu":112,"pmu":0},"get_search_form==>ob_start":{"ct":1,"wt":1,"cpu":1,"mu":16576,"pmu":0},"do_action@1==>WP_Hook::do_action@1":{"ct":6,"wt":9330,"cpu":9200,"mu":215880,"pmu":193840},"make_clickable==>preg_replace_callback":{"ct":9,"wt":119,"cpu":119,"mu":112,"pmu":0},"wp_admin_bar_edit_menu==>current_user_can":{"ct":1,"wt":65,"cpu":64,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_user_logged_in==>WP_User::exists":{"ct":18,"wt":12,"cpu":15,"mu":112,"pmu":0},"get_template==>apply_filters":{"ct":15,"wt":10,"cpu":9,"mu":112,"pmu":0},"get_template==>apply_filters@1":{"ct":9,"wt":5,"cpu":4,"mu":112,"pmu":0},"get_template==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@4==>array_slice":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"WP_Comment_Query::get_comments@1==>wp_cache_get_last_changed":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"WP_Embed::__construct==>add_action":{"ct":2,"wt":18,"cpu":18,"mu":2784,"pmu":2784},"paginate_comments_links==>is_singular":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>wp_html_excerpt":{"ct":1,"wt":69,"cpu":70,"mu":488,"pmu":0},"get_locale==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::get_node==>WP_Admin_Bar::_get_node":{"ct":31,"wt":16,"cpu":22,"mu":112,"pmu":0},"wpdb::prepare==>preg_match_all":{"ct":27,"wt":323,"cpu":331,"mu":55096,"pmu":3800},"WP_User::for_site==>get_current_blog_id":{"ct":12,"wt":39,"cpu":40,"mu":112,"pmu":0},"wp_kses_bad_protocol_once2==>wp_kses_no_null":{"ct":99,"wt":296,"cpu":326,"mu":112,"pmu":0},"WP_Scripts::do_item==>add_query_arg":{"ct":9,"wt":462,"cpu":464,"mu":1072,"pmu":0},"wp_kses_decode_entities==>preg_replace_callback":{"ct":198,"wt":260,"cpu":266,"mu":112,"pmu":0},"WP_Tax_Query::get_sql_for_query==>array_filter":{"ct":2,"wt":1,"cpu":2,"mu":224,"pmu":0},"WP_Roles::for_site==>WP_Roles::get_roles_data":{"ct":1,"wt":66,"cpu":66,"mu":14528,"pmu":47160},"wp_nonce_url==>esc_html":{"ct":4,"wt":121,"cpu":121,"mu":464,"pmu":0},"_get_path_to_translation_from_lang_dir==>glob":{"ct":2,"wt":6,"cpu":6,"mu":224,"pmu":0},"comment_form==>get_comment_id_fields":{"ct":1,"wt":3,"cpu":3,"mu":416,"pmu":0},"WP_Widget_Media::__construct==>_n_noop":{"ct":4,"wt":3,"cpu":3,"mu":1616,"pmu":0},"wp_allowed_protocols==>apply_filters@1":{"ct":8,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_allowed_protocols==>apply_filters@3":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_templating_constants==>get_stylesheet_directory":{"ct":1,"wt":36,"cpu":35,"mu":752,"pmu":0},"get_post_class==>get_post_format":{"ct":1,"wt":58,"cpu":58,"mu":112,"pmu":0},"get_comment_author_link==>get_comment_author":{"ct":2,"wt":14,"cpu":14,"mu":336,"pmu":0},"WP_Comment_Query::get_comments@1==>_prime_comment_caches":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"wlwmanifest_link==>includes_url":{"ct":1,"wt":50,"cpu":50,"mu":192,"pmu":0},"wp_default_styles==>WP_Dependencies::add_data":{"ct":64,"wt":183,"cpu":180,"mu":12144,"pmu":5424},"wpdb::init_charset==>is_multisite":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Widget_Recent_Comments::recent_comments_style":{"ct":1,"wt":8,"cpu":8,"mu":336,"pmu":0},"get_option==>trim":{"ct":437,"wt":241,"cpu":274,"mu":112,"pmu":112},"WP_Widget::get_settings==>get_option":{"ct":23,"wt":716,"cpu":715,"mu":14960,"pmu":123776},"Walker_Comment::html5_comment==>get_avatar":{"ct":1,"wt":1570,"cpu":1570,"mu":4208,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_load_widgets":{"ct":1,"wt":445,"cpu":445,"mu":113256,"pmu":84240},"WP_Widget_Media_Audio::__construct==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_pingback_header":{"ct":1,"wt":109,"cpu":112,"mu":672,"pmu":0},"wpdb::query==>mysqli_errno":{"ct":27,"wt":37,"cpu":48,"mu":112,"pmu":112},"have_posts==>WP_Query::have_posts":{"ct":2,"wt":7,"cpu":7,"mu":336,"pmu":0},"wp_default_scripts==>_n":{"ct":6,"wt":28,"cpu":28,"mu":448,"pmu":0},"date_i18n==>preg_match":{"ct":7,"wt":22,"cpu":22,"mu":112,"pmu":0},"WP_Comment_Query::fill_descendants==>array_fill_keys":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":0},"WP_Widget::display_callback==>is_numeric":{"ct":6,"wt":4,"cpu":5,"mu":112,"pmu":0},"print_footer_scripts==>_print_scripts":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"is_sticky==>get_the_ID":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>is_user_logged_in":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_page_of_comment==>wp_parse_args":{"ct":1,"wt":3,"cpu":2,"mu":488,"pmu":0},"comment_form==>wp_parse_args":{"ct":2,"wt":3,"cpu":4,"mu":1448,"pmu":0},"get_body_class==>is_search":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"validate_file==>preg_match_all":{"ct":1,"wt":25,"cpu":25,"mu":168,"pmu":0},"WP_Comment_Query::get_comments==>wp_array_slice_assoc":{"ct":2,"wt":12,"cpu":12,"mu":112,"pmu":0},"script_concat_settings==>ini_get":{"ct":6,"wt":15,"cpu":16,"mu":304,"pmu":0},"get_stylesheet_directory_uri==>apply_filters":{"ct":9,"wt":3,"cpu":4,"mu":112,"pmu":0},"get_stylesheet_directory_uri==>apply_filters@1":{"ct":7,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_stylesheet_directory_uri==>apply_filters@2":{"ct":7,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_the_category==>apply_filters":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_dashboard_url==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_user_option==>get_current_user_id":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_dashboard_url==>apply_filters@2":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"create_initial_taxonomies==>did_action":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Scripts::localize==>wp_json_encode":{"ct":25,"wt":269,"cpu":269,"mu":33392,"pmu":13608},"is_sticky==>in_array":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_archives==>wp_cache_set":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_get_document_title==>is_tax":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"get_custom_header==>get_template_directory_uri":{"ct":1,"wt":71,"cpu":71,"mu":192,"pmu":0},"get_pagenum_link==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::db_connect==>mysqli_init":{"ct":1,"wt":89,"cpu":89,"mu":576,"pmu":576},"comments_template==>WP_Comment_Query::__construct":{"ct":1,"wt":3373,"cpu":2030,"mu":37808,"pmu":41344},"get_post_time==>get_post":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::add==>_WP_Dependency::__construct":{"ct":198,"wt":349,"cpu":356,"mu":224,"pmu":10272},"_load_textdomain_just_in_time==>_get_path_to_translation":{"ct":37,"wt":72,"cpu":81,"mu":1928,"pmu":0},"get_cancel_comment_reply_link==>esc_html":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"main()==>get_header":{"ct":1,"wt":16956,"cpu":16335,"mu":127800,"pmu":10328},"WP_Widget_Search::widget==>apply_filters":{"ct":1,"wt":25,"cpu":26,"mu":864,"pmu":0},"get_the_content==>strpos":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Session_Tokens::get_instance==>WP_Session_Tokens::__construct":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_query_arg==>strpos":{"ct":40,"wt":18,"cpu":20,"mu":112,"pmu":0},"wp_list_categories==>is_tax":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"main()==>is_tax":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_header_image_tag==>get_custom_header":{"ct":1,"wt":615,"cpu":616,"mu":2064,"pmu":0},"WP_Rewrite::add_permastruct==>array_intersect_key":{"ct":3,"wt":3,"cpu":2,"mu":1240,"pmu":0},"get_the_modified_time==>get_post":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_User::for_site==>WP_User::get_role_caps":{"ct":12,"wt":210,"cpu":209,"mu":36824,"pmu":0},"print_footer_scripts==>WP_Scripts::reset":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_customize_support_script==>home_url":{"ct":1,"wt":53,"cpu":53,"mu":160,"pmu":0},"wpdb::check_safe_collation==>preg_match":{"ct":26,"wt":92,"cpu":95,"mu":112,"pmu":112},"get_header_image_tag==>absint":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_permalink==>in_array":{"ct":24,"wt":17,"cpu":22,"mu":112,"pmu":0},"get_cancel_comment_reply_link==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"zeroise==>sprintf":{"ct":9,"wt":10,"cpu":8,"mu":2992,"pmu":0},"redirect_canonical==>is_front_page":{"ct":1,"wt":44,"cpu":45,"mu":448,"pmu":0},"wp_get_shortlink==>get_queried_object_id":{"ct":2,"wt":12,"cpu":11,"mu":448,"pmu":0},"WP_Widget_Custom_HTML::_register_one==>wp_add_inline_script":{"ct":1,"wt":12,"cpu":13,"mu":-208,"pmu":0},"WP_Widget_Recent_Posts::widget==>WP_Query::have_posts":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"paginate_links==>explode":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"WP_Comment_Query::fill_descendants==>array_keys":{"ct":1,"wt":2,"cpu":3,"mu":2728,"pmu":2728},"wp_admin_bar_customize_menu==>is_ssl":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_single_template==>get_queried_object":{"ct":1,"wt":2,"cpu":1,"mu":224,"pmu":0},"redirect_canonical==>is_day":{"ct":1,"wt":1,"cpu":2,"mu":224,"pmu":0},"WP_Widget_Factory::_register_widgets==>in_array":{"ct":17,"wt":5,"cpu":12,"mu":112,"pmu":0},"get_post_type_labels==>apply_filters":{"ct":8,"wt":12,"cpu":12,"mu":-328,"pmu":0},"rawurlencode_deep==>map_deep":{"ct":6,"wt":77,"cpu":79,"mu":3168,"pmu":0},"comments_template==>printf":{"ct":1,"wt":7,"cpu":64,"mu":112,"pmu":0},"get_post_type_labels==>apply_filters@1":{"ct":8,"wt":5,"cpu":7,"mu":-328,"pmu":0},"WP_Embed::run_shortcode==>add_shortcode":{"ct":1,"wt":5,"cpu":5,"mu":488,"pmu":0},"create_initial_taxonomies==>get_option":{"ct":4,"wt":137,"cpu":138,"mu":1728,"pmu":0},"add_option==>wp_protect_special_option":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_title==>is_admin":{"ct":7,"wt":21,"cpu":22,"mu":112,"pmu":0},"get_post_format==>get_the_terms":{"ct":3,"wt":86,"cpu":87,"mu":448,"pmu":0},"wp_resolve_numeric_slug_conflicts==>array_values":{"ct":1,"wt":1,"cpu":0,"mu":488,"pmu":0},"get_locale_stylesheet_uri==>get_stylesheet_directory":{"ct":1,"wt":33,"cpu":34,"mu":304,"pmu":0},"WP_Date_Query::get_compare==>strtoupper":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::query==>preg_match":{"ct":55,"wt":203,"cpu":211,"mu":112,"pmu":152},"main()==>preg_match":{"ct":1,"wt":31,"cpu":31,"mu":168,"pmu":168},"WP_Styles::__construct==>do_action_ref_array":{"ct":1,"wt":504,"cpu":504,"mu":26720,"pmu":5560},"apply_filters@2==>func_get_args":{"ct":58,"wt":35,"cpu":38,"mu":21920,"pmu":0},"wp_register_sidebar_widget==>do_action@2":{"ct":17,"wt":13,"cpu":14,"mu":752,"pmu":0},"WP_Hook::apply_filters==>_canonical_charset":{"ct":3,"wt":18,"cpu":21,"mu":224,"pmu":0},"get_edit_user_link==>get_current_user_id":{"ct":2,"wt":8,"cpu":9,"mu":112,"pmu":0},"add_filter==>WP_Hook::add_filter":{"ct":637,"wt":2661,"cpu":2691,"mu":445176,"pmu":376408},"redirect_canonical==>is_home":{"ct":1,"wt":2,"cpu":1,"mu":224,"pmu":0},"wpdb::check_safe_collation==>ltrim":{"ct":26,"wt":21,"cpu":26,"mu":240,"pmu":112},"number_format_i18n==>absint":{"ct":3,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_single_template==>urldecode":{"ct":1,"wt":0,"cpu":1,"mu":152,"pmu":0},"WP_Hook::apply_filters@2==>next":{"ct":59,"wt":34,"cpu":44,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>get_current_user_id":{"ct":1,"wt":13,"cpu":14,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>__":{"ct":6,"wt":30,"cpu":30,"mu":112,"pmu":0},"wp_initial_constants==>wp_convert_hr_to_bytes":{"ct":2,"wt":73,"cpu":73,"mu":640,"pmu":672},"wp_check_invalid_utf8==>preg_match":{"ct":145,"wt":167,"cpu":180,"mu":112,"pmu":0},"WP_Date_Query::sanitize_query@1==>is_numeric":{"ct":3,"wt":3,"cpu":0,"mu":112,"pmu":0},"wp_start_object_cache==>wp_using_ext_object_cache":{"ct":1,"wt":1,"cpu":1,"mu":136,"pmu":0},"print_footer_scripts==>apply_filters@2":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"twentyseventeen_time_link==>__":{"ct":1,"wt":10,"cpu":10,"mu":112,"pmu":0},"do_action@1==>func_num_args":{"ct":6,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_widgets_init==>is_blog_installed":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Locale::__construct==>WP_Locale::init":{"ct":1,"wt":566,"cpu":566,"mu":4528,"pmu":0},"WP_Widget_Text::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":6,"mu":904,"pmu":1192},"wp_get_archives==>wpdb::get_results":{"ct":1,"wt":415,"cpu":133,"mu":96,"pmu":0},"load_template==>get_the_title":{"ct":1,"wt":81,"cpu":81,"mu":152,"pmu":0},"wp_just_in_time_script_localization==>get_current_blog_id":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_admin_bar_my_account_item==>get_current_user_id":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Comment_Query::get_comments@1==>wp_cache_add":{"ct":1,"wt":21,"cpu":21,"mu":112,"pmu":0},"WP_Widget::display_callback==>WP_Widget_Recent_Comments::widget":{"ct":1,"wt":1275,"cpu":1070,"mu":3776,"pmu":0},"rest_output_link_wp_head==>get_rest_url":{"ct":1,"wt":102,"cpu":102,"mu":168,"pmu":0},"wp_queue_comments_for_comment_meta_lazyload==>WP_Metadata_Lazyloader::queue_objects":{"ct":1,"wt":66,"cpu":67,"mu":1824,"pmu":0},"WP_Styles::do_item==>esc_attr":{"ct":3,"wt":23,"cpu":23,"mu":112,"pmu":0},"wp_cache_get_last_changed==>wp_cache_get":{"ct":8,"wt":36,"cpu":38,"mu":112,"pmu":0},"WP_Query::get_posts==>array_map":{"ct":4,"wt":128,"cpu":130,"mu":3520,"pmu":1768},"get_comments==>WP_Comment_Query::query":{"ct":1,"wt":625,"cpu":421,"mu":6392,"pmu":0},"WP_Widget::_register==>WP_Widget_Custom_HTML::_register_one":{"ct":1,"wt":100,"cpu":100,"mu":9336,"pmu":0},"WP_Comment_Query::fill_descendants==>wp_cache_set":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"_get_random_header_data==>current_theme_supports":{"ct":4,"wt":18,"cpu":18,"mu":112,"pmu":0},"comments_template==>file_exists":{"ct":1,"wt":32,"cpu":33,"mu":112,"pmu":0},"get_custom_header==>get_stylesheet_directory_uri":{"ct":1,"wt":70,"cpu":70,"mu":192,"pmu":0},"date_i18n==>get_option":{"ct":2,"wt":44,"cpu":44,"mu":112,"pmu":0},"get_user_option==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":48,"pmu":0},"main()==>the_post":{"ct":1,"wt":110,"cpu":110,"mu":6616,"pmu":1184},"mysql2date==>date":{"ct":2,"wt":3,"cpu":2,"mu":624,"pmu":0},"WP_Post_Type::set_props==>in_array":{"ct":4,"wt":0,"cpu":2,"mu":112,"pmu":0},"WP::parse_request==>addslashes":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_get_svg==>array_key_exists":{"ct":7,"wt":7,"cpu":9,"mu":112,"pmu":0},"get_comment_author_link==>get_comment":{"ct":2,"wt":9,"cpu":10,"mu":112,"pmu":0},"main()==>register_theme_directory":{"ct":1,"wt":96,"cpu":95,"mu":824,"pmu":0},"wp_get_update_data==>count":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"array_filter==>WP_Roles::is_role":{"ct":12,"wt":11,"cpu":11,"mu":112,"pmu":0},"wp_validate_auth_cookie==>wp_doing_ajax":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"wp_get_custom_css_post==>get_theme_mod":{"ct":1,"wt":46,"cpu":46,"mu":112,"pmu":0},"create_initial_taxonomies==>_x":{"ct":4,"wt":21,"cpu":20,"mu":112,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::_get_node":{"ct":48,"wt":26,"cpu":26,"mu":112,"pmu":0},"wpdb::add_placeholder_escape==>str_replace":{"ct":70,"wt":51,"cpu":55,"mu":112,"pmu":112},"WP_Query::get_posts==>get_option":{"ct":5,"wt":133,"cpu":135,"mu":224,"pmu":32912},"wp_just_in_time_script_localization==>wp_localize_script":{"ct":3,"wt":60,"cpu":60,"mu":-256,"pmu":0},"get_blogs_of_user==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>md5":{"ct":2,"wt":7,"cpu":8,"mu":240,"pmu":0},"get_blogs_of_user==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_blogs_of_user==>apply_filters@2":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_register==>__":{"ct":1,"wt":13,"cpu":12,"mu":112,"pmu":0},"Walker::paged_walk==>count":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Embed::run_shortcode":{"ct":1,"wt":15,"cpu":15,"mu":560,"pmu":0},"get_the_generator==>get_bloginfo":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>_x":{"ct":2,"wt":15,"cpu":15,"mu":112,"pmu":0},"wp_logout_url==>urlencode":{"ct":1,"wt":0,"cpu":0,"mu":208,"pmu":0},"wpdb::_escape==>wpdb::_real_escape":{"ct":10,"wt":245,"cpu":246,"mu":512,"pmu":0},"wp_load_alloptions==>wpdb::get_results":{"ct":1,"wt":809,"cpu":456,"mu":104136,"pmu":104136},"WP_Comment_Query::get_comments@1==>do_action_ref_array":{"ct":1,"wt":2,"cpu":2,"mu":-288,"pmu":0},"WP::parse_request==>WP_MatchesMapRegex::apply":{"ct":1,"wt":46,"cpu":47,"mu":880,"pmu":0},"get_raw_theme_root==>count":{"ct":55,"wt":20,"cpu":29,"mu":112,"pmu":0},"WP_Query::get_posts==>wpdb::get_results":{"ct":1,"wt":579,"cpu":183,"mu":4336,"pmu":4048},"comment_form==>array_diff":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"is_attachment==>WP_Query::is_attachment":{"ct":7,"wt":6,"cpu":5,"mu":112,"pmu":0},"wp_enqueue_script==>_wp_scripts_maybe_doing_it_wrong":{"ct":7,"wt":13,"cpu":16,"mu":112,"pmu":0},"load_theme_textdomain==>get_template_directory":{"ct":1,"wt":30,"cpu":30,"mu":752,"pmu":0},"WP_MatchesMapRegex::apply==>WP_MatchesMapRegex::__construct":{"ct":1,"wt":44,"cpu":44,"mu":768,"pmu":0},"wpdb::parse_db_host==>preg_match":{"ct":1,"wt":319,"cpu":322,"mu":640,"pmu":832},"redirect_canonical==>home_url":{"ct":1,"wt":54,"cpu":54,"mu":160,"pmu":0},"get_page_of_comment==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"comment_form==>apply_filters":{"ct":9,"wt":3,"cpu":8,"mu":112,"pmu":0},"unload_textdomain==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>in_array":{"ct":9,"wt":7,"cpu":8,"mu":112,"pmu":0},"script_concat_settings==>did_action":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"esc_url==>apply_filters":{"ct":26,"wt":28,"cpu":36,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_singular":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"esc_url==>apply_filters@1":{"ct":61,"wt":48,"cpu":53,"mu":112,"pmu":0},"esc_url==>apply_filters@2":{"ct":13,"wt":7,"cpu":13,"mu":112,"pmu":0},"esc_url==>apply_filters@3":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_locale_stylesheet_uri==>file_exists":{"ct":2,"wt":12,"cpu":12,"mu":112,"pmu":0},"wp_get_document_title==>get_bloginfo":{"ct":1,"wt":71,"cpu":71,"mu":600,"pmu":0},"wp_nonce_field==>wp_create_nonce":{"ct":1,"wt":29,"cpu":29,"mu":264,"pmu":0},"wp_login_url==>add_query_arg":{"ct":1,"wt":27,"cpu":27,"mu":144,"pmu":0},"self_admin_url==>apply_filters@2":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_body_class==>is_user_logged_in":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"convert_smilies==>preg_replace_callback":{"ct":5,"wt":227,"cpu":229,"mu":112,"pmu":0},"main()==>array_map":{"ct":1,"wt":166,"cpu":167,"mu":51256,"pmu":51256},"WP_Query::query==>WP_Query::get_posts":{"ct":2,"wt":4219,"cpu":2982,"mu":136584,"pmu":110072},"setup_userdata==>get_userdata":{"ct":1,"wt":57,"cpu":57,"mu":3904,"pmu":328},"WP_Taxonomy::add_rewrite_rules==>add_rewrite_tag":{"ct":3,"wt":14,"cpu":14,"mu":2424,"pmu":0},"get_post_class==>current_theme_supports":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"apply_filters@4==>array_shift":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_custom_header==>vsprintf":{"ct":3,"wt":3,"cpu":3,"mu":1072,"pmu":0},"WP_Hook::apply_filters==>_config_wp_siteurl":{"ct":33,"wt":23,"cpu":24,"mu":112,"pmu":0},"get_bloginfo==>get_option":{"ct":9,"wt":331,"cpu":334,"mu":112,"pmu":0},"WP_Object_Cache::add==>WP_Object_Cache::_exists":{"ct":26,"wt":57,"cpu":57,"mu":112,"pmu":0},"pings_open==>get_post":{"ct":2,"wt":6,"cpu":7,"mu":112,"pmu":0},"get_custom_header==>get_theme_mod":{"ct":1,"wt":44,"cpu":45,"mu":112,"pmu":0},"feed_links==>current_theme_supports":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"twentyseventeen_resource_hints==>wp_style_is":{"ct":4,"wt":52,"cpu":53,"mu":448,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Video::__construct":{"ct":1,"wt":328,"cpu":328,"mu":3936,"pmu":4360},"get_edit_user_link==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"locate_template@1==>file_exists":{"ct":4,"wt":80,"cpu":84,"mu":112,"pmu":0},"esc_url==>wp_allowed_protocols":{"ct":93,"wt":286,"cpu":275,"mu":2296,"pmu":3136},"Walker_Category::start_el==>apply_filters":{"ct":2,"wt":61,"cpu":60,"mu":904,"pmu":0},"WP_Comment_Query::fill_descendants==>count":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>sprintf":{"ct":1,"wt":1,"cpu":2,"mu":432,"pmu":0},"WP_Hook::apply_filters==>wp_maybe_decline_date":{"ct":7,"wt":164,"cpu":167,"mu":448,"pmu":0},"redirect_canonical==>trailingslashit":{"ct":2,"wt":6,"cpu":4,"mu":168,"pmu":0},"wp_admin_bar_new_content_menu==>get_post_types":{"ct":1,"wt":29,"cpu":30,"mu":488,"pmu":0},"register_theme_directory==>file_exists":{"ct":1,"wt":67,"cpu":67,"mu":112,"pmu":0},"WP::handle_404==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"add_option==>wp_load_alloptions":{"ct":1,"wt":17,"cpu":18,"mu":112,"pmu":0},"get_the_post_thumbnail==>get_post_thumbnail_id":{"ct":1,"wt":37,"cpu":37,"mu":112,"pmu":0},"wp_default_scripts==>wp_create_nonce":{"ct":1,"wt":53,"cpu":53,"mu":1432,"pmu":0},"get_pagenum_link==>esc_url":{"ct":1,"wt":71,"cpu":71,"mu":192,"pmu":0},"get_avatar_data==>rawurlencode_deep":{"ct":6,"wt":92,"cpu":95,"mu":1024,"pmu":0},"wp_create_nonce==>substr":{"ct":7,"wt":5,"cpu":6,"mu":392,"pmu":0},"WP_Query::get_posts==>count":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_content_width":{"ct":1,"wt":232,"cpu":232,"mu":1680,"pmu":33464},"WP_Widget_Meta::__construct==>WP_Widget::__construct":{"ct":1,"wt":7,"cpu":7,"mu":904,"pmu":216},"WP_Comment_Query::fill_descendants==>wp_list_pluck":{"ct":1,"wt":11,"cpu":11,"mu":488,"pmu":488},"WP_Widget::_register==>WP_Widget::get_settings":{"ct":17,"wt":492,"cpu":491,"mu":9088,"pmu":123776},"get_rest_url==>ltrim":{"ct":5,"wt":1,"cpu":3,"mu":208,"pmu":0},"apply_filters@1==>WP_Hook::apply_filters@1":{"ct":84,"wt":1813,"cpu":1820,"mu":24624,"pmu":2608},"wp_check_invalid_utf8==>get_option":{"ct":1,"wt":45,"cpu":45,"mu":336,"pmu":328},"wp_get_document_title==>array_filter":{"ct":1,"wt":1,"cpu":2,"mu":488,"pmu":0},"get_the_category_list==>get_post_type":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"get_avatar==>get_option":{"ct":9,"wt":274,"cpu":277,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Meta_Query::parse_query_vars":{"ct":2,"wt":6,"cpu":10,"mu":224,"pmu":0},"get_post_time==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Search::widget==>get_search_form":{"ct":1,"wt":318,"cpu":267,"mu":2216,"pmu":0},"_get_widget_id_base==>preg_replace":{"ct":20,"wt":44,"cpu":41,"mu":1056,"pmu":0},"get_queried_object==>WP_Query::get_queried_object":{"ct":2,"wt":1,"cpu":3,"mu":112,"pmu":0},"Walker_Comment::html5_comment==>printf":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wpdb::get_var==>wpdb::query":{"ct":2,"wt":634,"cpu":203,"mu":-1264,"pmu":0},"wp_admin_bar_search_menu==>__":{"ct":2,"wt":13,"cpu":13,"mu":112,"pmu":0},"rest_cookie_collect_status==>substr":{"ct":1,"wt":0,"cpu":0,"mu":152,"pmu":0},"wp_get_translation_updates==>get_site_transient":{"ct":3,"wt":496,"cpu":365,"mu":16648,"pmu":0},"get_body_class==>is_404":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::has_cap==>version_compare":{"ct":7,"wt":10,"cpu":10,"mu":112,"pmu":0},"get_the_modified_time==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>absint":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_get_video_extensions==>apply_filters@1":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":112},"comment_class==>get_comment_class":{"ct":1,"wt":107,"cpu":107,"mu":856,"pmu":0},"twentyseventeen_pingback_header==>printf":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>wp_check_php_mysql_versions":{"ct":1,"wt":54,"cpu":55,"mu":472,"pmu":472},"wp_oembed_add_discovery_links==>get_oembed_endpoint_url":{"ct":2,"wt":259,"cpu":261,"mu":800,"pmu":0},"feed_links==>esc_attr":{"ct":2,"wt":127,"cpu":127,"mu":16,"pmu":0},"WP_Term_Query::parse_query==>absint":{"ct":6,"wt":10,"cpu":12,"mu":112,"pmu":0},"WP_Widget::_register==>WP_Widget_Text::_register_one":{"ct":1,"wt":4226,"cpu":4089,"mu":97400,"pmu":70064},"WP_Query::get_posts==>wpdb::get_col":{"ct":1,"wt":442,"cpu":209,"mu":760,"pmu":0},"twentyseventeen_edit_link==>get_the_title":{"ct":1,"wt":89,"cpu":89,"mu":152,"pmu":0},"WP::add_query_var==>in_array":{"ct":4,"wt":6,"cpu":8,"mu":112,"pmu":0},"wp_admin_bar_appearance_menu==>WP_Admin_Bar::add_group":{"ct":1,"wt":9,"cpu":9,"mu":528,"pmu":0},"convert_chars==>strpos":{"ct":19,"wt":10,"cpu":11,"mu":112,"pmu":0},"get_parent_theme_file_path==>apply_filters":{"ct":5,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_parent_theme_file_path==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Rewrite::add_rule==>strpos":{"ct":8,"wt":6,"cpu":7,"mu":112,"pmu":0},"wp_nonce_tick==>ceil":{"ct":7,"wt":6,"cpu":7,"mu":112,"pmu":0},"wp_admin_bar_my_sites_menu==>is_user_logged_in":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"comment_form==>site_url":{"ct":1,"wt":46,"cpu":47,"mu":176,"pmu":0},"wp_parse_url==>_get_component_from_parsed_url_array":{"ct":14,"wt":9,"cpu":6,"mu":112,"pmu":0},"get_theme_root_uri==>get_raw_theme_root":{"ct":40,"wt":64,"cpu":65,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>serialize":{"ct":2,"wt":11,"cpu":11,"mu":8304,"pmu":0},"main()==>is_readable":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps==>in_array":{"ct":6,"wt":4,"cpu":1,"mu":112,"pmu":0},"number_format_i18n==>number_format":{"ct":3,"wt":28,"cpu":28,"mu":208,"pmu":0},"WP_Widget_Media_Video::__construct==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":280},"wptexturize==>preg_match":{"ct":24,"wt":57,"cpu":58,"mu":112,"pmu":0},"twentyseventeen_body_classes==>is_customize_preview":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"get_post_comments_feed_link==>get_default_feed":{"ct":2,"wt":5,"cpu":6,"mu":112,"pmu":0},"WP_Query::parse_tax_query==>WP_Tax_Query::__construct":{"ct":2,"wt":5,"cpu":6,"mu":224,"pmu":0},"wpdb::has_cap==>strtolower":{"ct":5,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_month_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_print_head_scripts":{"ct":1,"wt":1072,"cpu":884,"mu":12280,"pmu":0},"make_clickable==>preg_match":{"ct":22,"wt":70,"cpu":69,"mu":112,"pmu":0},"WP_Widget_Categories::__construct==>WP_Widget::__construct":{"ct":1,"wt":5,"cpu":5,"mu":912,"pmu":1200},"_wp_customize_include==>is_admin":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":88},"wp_admin_bar_render==>do_action_ref_array":{"ct":1,"wt":6757,"cpu":6181,"mu":43328,"pmu":0},"WP_Query::setup_postdata==>get_userdata":{"ct":1,"wt":63,"cpu":63,"mu":3792,"pmu":1184},"WP_User::has_cap==>is_multisite":{"ct":32,"wt":19,"cpu":28,"mu":112,"pmu":0},"get_dashboard_url==>admin_url":{"ct":3,"wt":205,"cpu":207,"mu":416,"pmu":0},"comments_template==>apply_filters":{"ct":3,"wt":3,"cpu":5,"mu":112,"pmu":0},"urlencode_deep==>map_deep":{"ct":37,"wt":44,"cpu":62,"mu":1952,"pmu":0},"get_search_form==>current_theme_supports":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>array_keys":{"ct":3,"wt":5,"cpu":6,"mu":4120,"pmu":0},"get_rest_url==>get_option":{"ct":5,"wt":111,"cpu":112,"mu":112,"pmu":0},"get_header_textcolor==>get_theme_support":{"ct":2,"wt":10,"cpu":10,"mu":336,"pmu":0},"get_post_comments_feed_link==>absint":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"is_header_video_active==>is_front_page":{"ct":1,"wt":42,"cpu":42,"mu":112,"pmu":0},"WP_Date_Query::validate_column==>preg_replace":{"ct":2,"wt":12,"cpu":14,"mu":112,"pmu":0},"get_the_modified_date==>get_post":{"ct":2,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_post_class==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Factory::_register_widgets==>array_keys":{"ct":2,"wt":1,"cpu":0,"mu":1504,"pmu":0},"load_template==>twentyseventeen_posted_on":{"ct":1,"wt":1145,"cpu":1144,"mu":10064,"pmu":1528},"main()==>wp_not_installed":{"ct":1,"wt":886,"cpu":534,"mu":116648,"pmu":116328},"wpdb::query==>wpdb::flush":{"ct":27,"wt":351,"cpu":353,"mu":-504952,"pmu":0},"WP_Query::get_posts==>do_action":{"ct":2,"wt":6,"cpu":6,"mu":-304,"pmu":0},"post_class==>get_post_class":{"ct":1,"wt":496,"cpu":496,"mu":3336,"pmu":8760},"get_body_class==>get_post_format":{"ct":1,"wt":42,"cpu":42,"mu":784,"pmu":0},"wp_register==>current_user_can":{"ct":1,"wt":64,"cpu":64,"mu":112,"pmu":0},"get_stylesheet_directory_uri==>get_theme_root_uri":{"ct":23,"wt":1154,"cpu":1154,"mu":1808,"pmu":0},"WP_Widget_Meta::widget==>wp_loginout":{"ct":1,"wt":401,"cpu":402,"mu":672,"pmu":0},"get_the_modified_time==>get_post_modified_time":{"ct":1,"wt":7,"cpu":8,"mu":448,"pmu":0},"_close_comments_for_old_post==>get_option":{"ct":8,"wt":221,"cpu":224,"mu":112,"pmu":0},"wptexturize==>wp_spaces_regexp":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"wp_get_shortlink==>get_post":{"ct":2,"wt":31,"cpu":31,"mu":1344,"pmu":0},"WP_Roles::for_site==>WP_Roles::init_roles":{"ct":1,"wt":17,"cpu":16,"mu":1600,"pmu":0},"get_permalink==>user_trailingslashit":{"ct":12,"wt":70,"cpu":73,"mu":1072,"pmu":0},"WP_Hook::add_filter==>WP_Hook::resort_active_iterations":{"ct":28,"wt":279,"cpu":284,"mu":1904,"pmu":2032},"is_sticky==>get_option":{"ct":2,"wt":79,"cpu":79,"mu":224,"pmu":10288},"esc_url==>stripos":{"ct":102,"wt":121,"cpu":128,"mu":112,"pmu":0},"WP_MatchesMapRegex::callback==>urlencode":{"ct":4,"wt":2,"cpu":2,"mu":248,"pmu":0},"wpautop==>str_replace":{"ct":8,"wt":9,"cpu":12,"mu":112,"pmu":0},"get_theme_mod==>apply_filters":{"ct":15,"wt":8,"cpu":11,"mu":-648,"pmu":0},"the_title_attribute==>strip_tags":{"ct":1,"wt":6,"cpu":6,"mu":152,"pmu":0},"wp_admin_bar_customize_menu==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"edit_comment_link==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_theme_mod==>apply_filters@1":{"ct":9,"wt":7,"cpu":7,"mu":-344,"pmu":0},"get_theme_mod==>apply_filters@2":{"ct":2,"wt":2,"cpu":0,"mu":8,"pmu":0},"WP_Hook::apply_filters@1==>_wp_footer_scripts":{"ct":1,"wt":1751,"cpu":1750,"mu":2672,"pmu":0},"WP_Rewrite::__construct==>WP_Rewrite::init":{"ct":1,"wt":182,"cpu":182,"mu":816,"pmu":816},"wp_filter_object_list==>WP_List_Util::get_output":{"ct":25,"wt":14,"cpu":19,"mu":112,"pmu":0},"get_post_class==>is_numeric":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_strip_all_tags==>trim":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_maybe_decline_date==>get_locale":{"ct":7,"wt":95,"cpu":95,"mu":112,"pmu":0},"comment_form==>get_the_ID":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wptexturize==>array_keys":{"ct":25,"wt":31,"cpu":36,"mu":9512,"pmu":0},"get_term==>WP_Term::__construct":{"ct":2,"wt":10,"cpu":9,"mu":920,"pmu":0},"WP_Comment_Query::get_comment_ids==>WP_Comment_Query::parse_orderby":{"ct":2,"wt":14,"cpu":15,"mu":448,"pmu":0},"WP_Dependencies::all_deps==>array_diff":{"ct":6,"wt":62,"cpu":66,"mu":448,"pmu":0},"WP_Term_Query::get_terms==>array_map":{"ct":6,"wt":297,"cpu":297,"mu":4944,"pmu":0},"WP_Widget_Factory::_register_widgets==>array_map":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":0},"WP_Comment_Query::get_comment_ids==>preg_match":{"ct":2,"wt":41,"cpu":42,"mu":1024,"pmu":0},"get_locale_stylesheet_uri==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_setup":{"ct":1,"wt":646,"cpu":646,"mu":23656,"pmu":0},"get_adjacent_post==>is_user_logged_in":{"ct":4,"wt":16,"cpu":17,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>current_theme_supports":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_template_directory_uri==>apply_filters":{"ct":9,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_template_directory_uri==>apply_filters@1":{"ct":7,"wt":4,"cpu":6,"mu":112,"pmu":0},"get_template_directory_uri==>apply_filters@2":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Scripts::all_deps==>apply_filters@1":{"ct":1,"wt":15,"cpu":15,"mu":1088,"pmu":0},"WP_Scripts::all_deps==>apply_filters@2":{"ct":1,"wt":41,"cpu":41,"mu":224,"pmu":0},"wp_logout_url==>wp_nonce_url":{"ct":4,"wt":455,"cpu":455,"mu":2032,"pmu":0},"wpautop==>trim":{"ct":4,"wt":4,"cpu":3,"mu":480,"pmu":0},"get_permalink==>get_option":{"ct":12,"wt":307,"cpu":308,"mu":112,"pmu":0},"wp_shortlink_header==>wp_get_shortlink":{"ct":1,"wt":90,"cpu":91,"mu":1504,"pmu":0},"get_feed_link==>user_trailingslashit":{"ct":4,"wt":41,"cpu":40,"mu":256,"pmu":0},"esc_url==>in_array":{"ct":5,"wt":1,"cpu":5,"mu":112,"pmu":0},"WP_Query::set_found_posts==>apply_filters_ref_array":{"ct":1,"wt":2,"cpu":2,"mu":-288,"pmu":0},"wp_create_nonce==>wp_get_session_token":{"ct":7,"wt":72,"cpu":75,"mu":784,"pmu":0},"WP::main==>WP::query_posts":{"ct":1,"wt":3157,"cpu":2152,"mu":125568,"pmu":110072},"get_search_form==>esc_attr":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"wp_embed_register_handler==>WP_Embed::register_handler":{"ct":3,"wt":7,"cpu":8,"mu":2368,"pmu":2264},"WP_Query::get_posts==>WP_Query::parse_tax_query":{"ct":1,"wt":15,"cpu":14,"mu":112,"pmu":0},"WP_Widget::_register_one==>WP_Widget::_get_update_callback":{"ct":17,"wt":8,"cpu":13,"mu":6504,"pmu":0},"twentyseventeen_fonts_url==>implode":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Rewrite::add_permastruct==>func_num_args":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_fix_server_vars==>strpos":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"main()==>do_action":{"ct":8,"wt":18639,"cpu":17405,"mu":458024,"pmu":436496},"wp_create_nonce==>wp_get_current_user":{"ct":7,"wt":12,"cpu":14,"mu":112,"pmu":0},"wp_html_excerpt==>preg_replace":{"ct":1,"wt":21,"cpu":22,"mu":112,"pmu":0},"pings_open==>apply_filters":{"ct":1,"wt":51,"cpu":51,"mu":1088,"pmu":0},"pings_open==>apply_filters@1":{"ct":1,"wt":40,"cpu":40,"mu":112,"pmu":0},"WP_Hook::apply_filters==>convert_chars":{"ct":16,"wt":41,"cpu":47,"mu":224,"pmu":0},"get_comment_reply_link==>get_permalink":{"ct":1,"wt":151,"cpu":151,"mu":192,"pmu":0},"get_edit_user_link==>get_edit_profile_url":{"ct":1,"wt":143,"cpu":143,"mu":1184,"pmu":0},"wp_hash==>wp_salt":{"ct":8,"wt":86,"cpu":86,"mu":2936,"pmu":0},"main()==>add_shortcode":{"ct":6,"wt":46,"cpu":44,"mu":736,"pmu":648},"wp_admin_bar_sidebar_toggle==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_avatar_data==>get_option":{"ct":18,"wt":531,"cpu":530,"mu":112,"pmu":0},"add_option==>wp_cache_get":{"ct":2,"wt":7,"cpu":8,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>implode":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"twentyseventeen_custom_header_setup==>__":{"ct":1,"wt":7,"cpu":7,"mu":112,"pmu":0},"wp_maybe_load_embeds==>wp_get_audio_extensions":{"ct":1,"wt":19,"cpu":19,"mu":224,"pmu":224},"wp_admin_bar_my_account_menu==>get_edit_profile_url":{"ct":1,"wt":355,"cpu":355,"mu":736,"pmu":0},"WP_Query::parse_query==>WP_Query::parse_tax_query":{"ct":1,"wt":23,"cpu":23,"mu":720,"pmu":0},"network_admin_url==>admin_url":{"ct":1,"wt":64,"cpu":63,"mu":192,"pmu":0},"WP_Styles::print_inline_style==>WP_Dependencies::get_data":{"ct":5,"wt":4,"cpu":3,"mu":112,"pmu":0},"get_nav_menu_locations==>get_theme_mod":{"ct":3,"wt":345,"cpu":350,"mu":112,"pmu":336},"register_taxonomy==>do_action":{"ct":5,"wt":4,"cpu":4,"mu":-6568,"pmu":0},"paginate_links==>get_query_var":{"ct":1,"wt":3,"cpu":3,"mu":88,"pmu":0},"WP_Query::parse_query==>trim":{"ct":6,"wt":3,"cpu":1,"mu":112,"pmu":0},"register_taxonomy==>do_action@1":{"ct":5,"wt":5,"cpu":6,"mu":-6568,"pmu":0},"get_adjacent_post_link==>get_adjacent_post":{"ct":2,"wt":475,"cpu":474,"mu":200,"pmu":0},"post_password_required==>get_post":{"ct":3,"wt":56,"cpu":57,"mu":560,"pmu":0},"WP_Term::__construct==>get_object_vars":{"ct":9,"wt":11,"cpu":13,"mu":112,"pmu":0},"twentyseventeen_entry_footer==>get_edit_post_link":{"ct":1,"wt":210,"cpu":210,"mu":1664,"pmu":0},"is_date==>WP_Query::is_date":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::init_charset==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_check_php_mysql_versions==>phpversion":{"ct":1,"wt":8,"cpu":7,"mu":176,"pmu":176},"WP_Hook::apply_filters@2==>array_keys":{"ct":59,"wt":42,"cpu":38,"mu":22296,"pmu":0},"print_late_styles==>script_concat_settings":{"ct":1,"wt":18,"cpu":19,"mu":112,"pmu":0},"wp_enqueue_style==>_wp_scripts_maybe_doing_it_wrong":{"ct":4,"wt":7,"cpu":10,"mu":112,"pmu":0},"print_emoji_detection_script==>_print_emoji_detection_script":{"ct":1,"wt":192,"cpu":192,"mu":672,"pmu":0},"WP_Query::setup_postdata==>mysql2date":{"ct":2,"wt":14,"cpu":14,"mu":848,"pmu":0},"WP_Hook::apply_filters@1==>sanitize_title_with_dashes":{"ct":3,"wt":273,"cpu":275,"mu":248,"pmu":0},"WP::parse_request==>apply_filters":{"ct":3,"wt":22,"cpu":24,"mu":976,"pmu":0},"wp_queue_comments_for_comment_meta_lazyload==>wp_metadata_lazyloader":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"main()==>wp_get_active_and_valid_plugins":{"ct":1,"wt":434,"cpu":434,"mu":560,"pmu":31544},"get_the_category_list==>get_category_link":{"ct":1,"wt":708,"cpu":709,"mu":2848,"pmu":0},"create_initial_post_types==>_n_noop":{"ct":12,"wt":21,"cpu":16,"mu":4624,"pmu":0},"wp_maybe_load_embeds==>join":{"ct":2,"wt":4,"cpu":3,"mu":216,"pmu":296},"get_term==>sanitize_term":{"ct":2,"wt":55,"cpu":55,"mu":336,"pmu":0},"wp_comment_form_unfiltered_html_nonce==>current_user_can":{"ct":1,"wt":38,"cpu":39,"mu":112,"pmu":0},"wp_admin_bar_my_account_item==>get_edit_profile_url":{"ct":1,"wt":134,"cpu":134,"mu":176,"pmu":0},"wp_oembed_add_discovery_links==>class_exists":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_term_link==>str_replace":{"ct":2,"wt":7,"cpu":7,"mu":224,"pmu":0},"WP_Hook::apply_filters@1==>rest_cookie_collect_status":{"ct":2,"wt":10,"cpu":11,"mu":584,"pmu":0},"wp_default_styles==>is_rtl":{"ct":1,"wt":3,"cpu":3,"mu":248,"pmu":0},"wpdb::set_prefix==>preg_match":{"ct":1,"wt":32,"cpu":32,"mu":112,"pmu":0},"wp_cache_init==>WP_Object_Cache::__construct":{"ct":1,"wt":7,"cpu":7,"mu":744,"pmu":0},"get_author_posts_url==>str_replace":{"ct":1,"wt":2,"cpu":2,"mu":152,"pmu":0},"WP_Hook::apply_filters==>wp_enqueue_scripts":{"ct":1,"wt":1521,"cpu":1521,"mu":14240,"pmu":0},"get_search_form==>esc_attr_x":{"ct":1,"wt":32,"cpu":32,"mu":496,"pmu":0},"WP_Widget::display_callback==>WP_Widget_Archives::widget":{"ct":1,"wt":1006,"cpu":723,"mu":4360,"pmu":0},"wp_allowed_protocols==>did_action":{"ct":93,"wt":72,"cpu":84,"mu":112,"pmu":0},"rel_canonical==>esc_url":{"ct":1,"wt":56,"cpu":58,"mu":192,"pmu":0},"WP_Widget_Media_Image::__construct==>WP_Widget_Media::__construct":{"ct":1,"wt":167,"cpu":167,"mu":1928,"pmu":0},"wp_cookie_constants==>preg_replace":{"ct":3,"wt":44,"cpu":44,"mu":224,"pmu":0},"get_term_link==>get_taxonomy":{"ct":2,"wt":12,"cpu":14,"mu":112,"pmu":0},"redirect_canonical==>is_author":{"ct":1,"wt":1,"cpu":2,"mu":224,"pmu":0},"get_term==>taxonomy_exists":{"ct":7,"wt":4,"cpu":7,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>is_user_member_of_blog":{"ct":1,"wt":66,"cpu":67,"mu":448,"pmu":0},"register_post_status==>_n_noop":{"ct":4,"wt":3,"cpu":8,"mu":1616,"pmu":0},"get_avatar_data==>array_filter":{"ct":6,"wt":10,"cpu":11,"mu":2368,"pmu":0},"array_map==>get_term":{"ct":2,"wt":135,"cpu":135,"mu":2264,"pmu":0},"get_query_template==>locate_template":{"ct":1,"wt":45,"cpu":44,"mu":320,"pmu":0},"WP_Hook::apply_filters@4==>_config_wp_siteurl":{"ct":1,"wt":4,"cpu":3,"mu":112,"pmu":0},"wpdb::get_row==>wpdb::query":{"ct":9,"wt":5051,"cpu":1848,"mu":-65136,"pmu":0},"is_admin_bar_showing==>apply_filters":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"is_admin_bar_showing==>apply_filters@1":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"Walker::display_element==>Walker_Comment::start_el":{"ct":1,"wt":3947,"cpu":3946,"mu":18904,"pmu":0},"WP_Term_Query::get_terms==>count":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_comments==>WP_Comment_Query::__construct":{"ct":1,"wt":0,"cpu":2,"mu":112,"pmu":0},"WP_Query::setup_postdata==>count":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_get_custom_css_post==>get_stylesheet":{"ct":1,"wt":22,"cpu":21,"mu":112,"pmu":0},"sanitize_title==>remove_accents":{"ct":10,"wt":30,"cpu":32,"mu":112,"pmu":0},"add_query_arg==>urlencode_deep":{"ct":37,"wt":135,"cpu":143,"mu":2064,"pmu":0},"edit_comment_link==>esc_url":{"ct":1,"wt":61,"cpu":60,"mu":112,"pmu":0},"get_custom_logo==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_template==>get_option":{"ct":25,"wt":534,"cpu":534,"mu":336,"pmu":0},"do_action==>count":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_custom_logo_header_styles":{"ct":1,"wt":9,"cpu":9,"mu":448,"pmu":0},"WP_Term_Query::get_terms==>wpdb::get_results":{"ct":3,"wt":1470,"cpu":456,"mu":1696,"pmu":0},"esc_attr==>wp_check_invalid_utf8":{"ct":130,"wt":398,"cpu":416,"mu":1160,"pmu":328},"WP_Post_Type::add_hooks==>add_action":{"ct":16,"wt":138,"cpu":141,"mu":17984,"pmu":7512},"WP_Scripts::do_footer_items==>WP_Dependencies::do_items":{"ct":1,"wt":1572,"cpu":1573,"mu":768,"pmu":0},"WP_Comment_Query::get_comment_ids==>array_map":{"ct":3,"wt":10,"cpu":9,"mu":920,"pmu":488},"self_admin_url==>admin_url":{"ct":1,"wt":53,"cpu":53,"mu":176,"pmu":0},"get_the_category==>array_keys":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":0},"array_map==>intval":{"ct":19,"wt":17,"cpu":23,"mu":112,"pmu":0},"wp_set_wpdb_vars==>wpdb::__isset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_strip_all_tags==>preg_replace":{"ct":3,"wt":66,"cpu":67,"mu":160,"pmu":0},"wpautop==>wp_replace_in_html_tags":{"ct":2,"wt":19,"cpu":20,"mu":224,"pmu":0},"twentyseventeen_setup==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_template@1==>__":{"ct":2,"wt":55,"cpu":56,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>wp_list_pluck":{"ct":2,"wt":14,"cpu":14,"mu":1088,"pmu":0},"WP_Widget_Factory::__construct==>add_action":{"ct":1,"wt":26,"cpu":26,"mu":1448,"pmu":1448},"main()==>wp_debug_mode":{"ct":1,"wt":42,"cpu":44,"mu":592,"pmu":536},"WP_Scripts::do_item==>apply_filters@1":{"ct":6,"wt":6,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_new_content_menu":{"ct":1,"wt":671,"cpu":671,"mu":3520,"pmu":0},"WP_Scripts::do_item==>apply_filters@2":{"ct":12,"wt":14,"cpu":20,"mu":112,"pmu":0},"wp_enqueue_script==>explode":{"ct":4,"wt":2,"cpu":14,"mu":1616,"pmu":0},"get_site_url==>set_url_scheme":{"ct":52,"wt":495,"cpu":494,"mu":3104,"pmu":0},"twentyseventeen_categorized_blog==>get_categories":{"ct":1,"wt":1158,"cpu":665,"mu":2888,"pmu":1064},"wptexturize==>_x":{"ct":11,"wt":74,"cpu":72,"mu":112,"pmu":0},"WP_Comment_Query::parse_order==>strtoupper":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpdb::db_connect==>wpdb::set_sql_mode":{"ct":1,"wt":372,"cpu":117,"mu":896,"pmu":15776},"apply_filters@3==>WP_Hook::apply_filters@3":{"ct":12,"wt":238,"cpu":237,"mu":5576,"pmu":1456},"wp_convert_hr_to_bytes==>min":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":112},"wp_convert_hr_to_bytes==>strpos":{"ct":4,"wt":6,"cpu":6,"mu":112,"pmu":112},"wp_get_update_data==>wp_get_translation_updates":{"ct":1,"wt":505,"cpu":372,"mu":2072,"pmu":0},"sanitize_user==>wp_strip_all_tags":{"ct":1,"wt":35,"cpu":35,"mu":480,"pmu":0},"get_custom_header_markup==>has_custom_header":{"ct":1,"wt":643,"cpu":643,"mu":784,"pmu":0},"get_taxonomy_labels==>_x":{"ct":60,"wt":335,"cpu":339,"mu":6888,"pmu":8192},"redirect_canonical==>is_robots":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpautop==>preg_replace":{"ct":30,"wt":618,"cpu":622,"mu":1520,"pmu":0},"WP_Widget_Text::_register_one==>sprintf":{"ct":1,"wt":1,"cpu":1,"mu":432,"pmu":0},"get_adjacent_post_rel_link==>get_adjacent_post":{"ct":2,"wt":1180,"cpu":749,"mu":1640,"pmu":0},"WP_Hook::apply_filters==>wp_resource_hints":{"ct":1,"wt":984,"cpu":984,"mu":3328,"pmu":0},"WP_Hook::apply_filters==>wp_oembed_add_discovery_links":{"ct":1,"wt":684,"cpu":683,"mu":1344,"pmu":0},"maybe_unserialize==>is_serialized":{"ct":447,"wt":1461,"cpu":1482,"mu":448,"pmu":432},"WP_Widget_Meta::widget==>__":{"ct":2,"wt":20,"cpu":19,"mu":112,"pmu":0},"wp_heartbeat_settings==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_site_icon==>has_site_icon":{"ct":1,"wt":25,"cpu":25,"mu":560,"pmu":0},"get_permalink==>get_post_types":{"ct":12,"wt":412,"cpu":412,"mu":10912,"pmu":0},"get_header_image==>get_theme_mod":{"ct":3,"wt":603,"cpu":602,"mu":1520,"pmu":0},"get_body_class==>is_single":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"load_template==>wp_head":{"ct":1,"wt":11764,"cpu":11143,"mu":78304,"pmu":0},"get_comment_link==>get_query_var":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"is_multi_author==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"update_object_term_cache==>get_object_taxonomies":{"ct":2,"wt":22,"cpu":22,"mu":976,"pmu":0},"ent2ncr==>apply_filters@1":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>wp_get_video_extensions":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"rel_canonical==>get_queried_object_id":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_comment_author_url==>get_comment":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"add_option==>trim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_modified_date==>apply_filters":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_customize_menu":{"ct":1,"wt":195,"cpu":196,"mu":3256,"pmu":0},"WP_Query::get_queried_object_id==>WP_Query::get_queried_object":{"ct":8,"wt":9,"cpu":11,"mu":224,"pmu":0},"wp_cache_get==>WP_Object_Cache::get":{"ct":1049,"wt":2427,"cpu":2463,"mu":20104,"pmu":152},"WP_Object_Cache::__construct==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render_group==>esc_attr":{"ct":4,"wt":23,"cpu":25,"mu":112,"pmu":0},"WP_Comment_Query::get_comment_ids==>array_filter":{"ct":3,"wt":4,"cpu":5,"mu":280,"pmu":0},"the_post==>WP_Query::the_post":{"ct":1,"wt":108,"cpu":108,"mu":6504,"pmu":1184},"redirect_canonical==>is_feed":{"ct":2,"wt":4,"cpu":3,"mu":224,"pmu":0},"WP_Widget_Recent_Comments::recent_comments_style==>current_theme_supports":{"ct":1,"wt":2,"cpu":4,"mu":112,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::parse_query_vars":{"ct":6,"wt":21,"cpu":21,"mu":112,"pmu":0},"WP_Widget_Search::__construct==>__":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":112},"load_template==>is_active_sidebar":{"ct":1,"wt":105,"cpu":105,"mu":336,"pmu":0},"WP_Query::get_posts==>get_post_status_object":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":48},"get_the_category_list==>esc_url":{"ct":1,"wt":161,"cpu":162,"mu":112,"pmu":0},"get_option==>wpdb::prepare":{"ct":8,"wt":1201,"cpu":1202,"mu":1904,"pmu":0},"wp_get_shortlink==>apply_filters@1":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP_Dependencies::recurse_deps@1==>WP_Dependencies::recurse_deps@2":{"ct":2,"wt":9,"cpu":10,"mu":336,"pmu":0},"_wp_filter_build_unique_id==>spl_object_hash":{"ct":220,"wt":272,"cpu":284,"mu":56432,"pmu":4568},"wp_admin_bar_site_menu==>__":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Query::parse_query==>preg_replace":{"ct":7,"wt":52,"cpu":52,"mu":112,"pmu":0},"WP_Widget_Media_Gallery::__construct==>_x":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"WP_Comment_Query::__construct==>WP_Comment_Query::query":{"ct":1,"wt":3370,"cpu":2028,"mu":37696,"pmu":41344},"convert_smilies==>preg_match":{"ct":10,"wt":43,"cpu":45,"mu":224,"pmu":0},"wp_register_sidebar_widget==>_get_widget_id_base":{"ct":17,"wt":34,"cpu":36,"mu":904,"pmu":0},"dynamic_sidebar==>sanitize_title":{"ct":4,"wt":286,"cpu":286,"mu":280,"pmu":0},"update_termmeta_cache==>get_option":{"ct":2,"wt":78,"cpu":77,"mu":112,"pmu":0},"wp_shortlink_header==>headers_sent":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>current":{"ct":12,"wt":7,"cpu":6,"mu":112,"pmu":0},"WP_Widget_Media_Video::__construct==>sprintf":{"ct":2,"wt":2,"cpu":1,"mu":944,"pmu":0},"shortcode_unautop==>join":{"ct":1,"wt":1,"cpu":1,"mu":192,"pmu":0},"WP_Query::__construct==>WP_Query::query":{"ct":1,"wt":1101,"cpu":868,"mu":12328,"pmu":0},"WP_Comment_Query::fill_descendants==>wp_array_slice_assoc":{"ct":1,"wt":12,"cpu":12,"mu":112,"pmu":3896},"WP_Dependencies::do_items==>WP_Scripts::do_item":{"ct":15,"wt":1478,"cpu":1486,"mu":1832,"pmu":0},"twentyseventeen_time_link==>sprintf":{"ct":2,"wt":1,"cpu":2,"mu":752,"pmu":0},"get_the_post_navigation==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>count":{"ct":59,"wt":35,"cpu":36,"mu":112,"pmu":0},"esc_url==>preg_match":{"ct":2,"wt":33,"cpu":34,"mu":112,"pmu":0},"WP_Dependencies::all_deps==>in_array":{"ct":42,"wt":34,"cpu":45,"mu":112,"pmu":0},"get_the_category_list==>is_object_in_taxonomy":{"ct":1,"wt":29,"cpu":31,"mu":112,"pmu":0},"update_object_term_cache==>wp_cache_get":{"ct":4,"wt":13,"cpu":13,"mu":-88,"pmu":0},"build_query==>_http_build_query":{"ct":37,"wt":256,"cpu":257,"mu":2568,"pmu":0},"WP_Term_Query::get_terms==>do_action":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"sanitize_user==>remove_accents":{"ct":1,"wt":14,"cpu":14,"mu":224,"pmu":0},"WP_Object_Cache::__construct==>register_shutdown_function":{"ct":1,"wt":2,"cpu":2,"mu":144,"pmu":0},"WP_Comment_Query::get_comment_ids==>count":{"ct":4,"wt":2,"cpu":8,"mu":112,"pmu":0},"get_user_option==>get_userdata":{"ct":1,"wt":89,"cpu":89,"mu":3792,"pmu":28808},"get_feed_link==>WP_Rewrite::get_comment_feed_permastruct":{"ct":2,"wt":8,"cpu":9,"mu":160,"pmu":0},"get_post_class==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_oembed_endpoint_url==>add_query_arg":{"ct":2,"wt":62,"cpu":61,"mu":-544,"pmu":0},"is_page_template==>get_page_template_slug":{"ct":1,"wt":44,"cpu":45,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>add_query_arg":{"ct":1,"wt":25,"cpu":24,"mu":80,"pmu":0},"WP_Widget_Tag_Cloud::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"main()==>is_multisite":{"ct":5,"wt":5,"cpu":7,"mu":112,"pmu":0},"has_header_image==>get_header_image":{"ct":2,"wt":1296,"cpu":1296,"mu":2528,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Gallery::__construct":{"ct":1,"wt":196,"cpu":196,"mu":2752,"pmu":2320},"wpdb::tables==>wpdb::get_blog_prefix":{"ct":3,"wt":6,"cpu":6,"mu":224,"pmu":0},"WP_Hook::apply_filters==>print_emoji_detection_script":{"ct":1,"wt":195,"cpu":199,"mu":1184,"pmu":0},"main()==>wp_functionality_constants":{"ct":1,"wt":16,"cpu":16,"mu":352,"pmu":0},"main()==>require_wp_db":{"ct":1,"wt":2217,"cpu":1536,"mu":27800,"pmu":45552},"wp_get_archives==>md5":{"ct":1,"wt":1,"cpu":2,"mu":176,"pmu":0},"wp_validate_auth_cookie==>wp_parse_auth_cookie":{"ct":2,"wt":14,"cpu":13,"mu":1184,"pmu":0},"wp_link_pages==>wp_parse_args":{"ct":1,"wt":18,"cpu":18,"mu":808,"pmu":0},"add_magic_quotes==>addslashes":{"ct":38,"wt":52,"cpu":40,"mu":408,"pmu":408},"register_theme_directory==>in_array":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_comment_link==>get_comment":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP::parse_request==>parse_url":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"dynamic_sidebar==>array_merge":{"ct":12,"wt":13,"cpu":18,"mu":6544,"pmu":0},"get_post==>sanitize_post":{"ct":1,"wt":74,"cpu":77,"mu":560,"pmu":1664},"WP_Admin_Bar::_render_group==>trim":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"main()==>is_attachment":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_kses_bad_protocol_once2==>preg_replace":{"ct":99,"wt":93,"cpu":114,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_comment_link":{"ct":1,"wt":282,"cpu":282,"mu":752,"pmu":0},"wp_admin_bar_wp_menu==>self_admin_url":{"ct":1,"wt":59,"cpu":59,"mu":624,"pmu":0},"get_the_modified_date==>get_post_modified_time":{"ct":2,"wt":183,"cpu":183,"mu":624,"pmu":0},"WP_Query::get_posts==>wp_queue_posts_for_term_meta_lazyload":{"ct":2,"wt":299,"cpu":299,"mu":6688,"pmu":0},"wpdb::add_placeholder_escape==>wpdb::placeholder_escape":{"ct":70,"wt":1397,"cpu":1432,"mu":5096,"pmu":8688},"WP_User::get_role_caps==>array_keys":{"ct":12,"wt":7,"cpu":6,"mu":4624,"pmu":0},"post_password_required==>apply_filters":{"ct":3,"wt":12,"cpu":13,"mu":112,"pmu":0},"get_current_user_id==>wp_get_current_user":{"ct":14,"wt":27,"cpu":31,"mu":112,"pmu":0},"main()==>register_shutdown_function":{"ct":1,"wt":2,"cpu":3,"mu":144,"pmu":32},"get_network_option==>get_current_network_id":{"ct":8,"wt":16,"cpu":15,"mu":224,"pmu":224},"wp_parse_str==>apply_filters":{"ct":13,"wt":11,"cpu":11,"mu":112,"pmu":0},"current_theme_supports==>array_slice":{"ct":9,"wt":7,"cpu":9,"mu":3496,"pmu":0},"wp_queue_posts_for_term_meta_lazyload==>get_object_taxonomies":{"ct":2,"wt":21,"cpu":22,"mu":864,"pmu":0},"get_site_icon_url==>apply_filters@1":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_parse_str==>apply_filters@1":{"ct":14,"wt":10,"cpu":12,"mu":112,"pmu":0},"wp_parse_str==>apply_filters@2":{"ct":14,"wt":11,"cpu":16,"mu":112,"pmu":0},"_wp_add_global_attributes==>array_merge":{"ct":82,"wt":49,"cpu":47,"mu":42784,"pmu":42784},"get_the_title==>get_post":{"ct":7,"wt":49,"cpu":50,"mu":1008,"pmu":0},"get_home_url==>set_url_scheme":{"ct":36,"wt":356,"cpu":369,"mu":1952,"pmu":0},"get_post_format_slugs==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":808,"pmu":0},"comment_form==>array_keys":{"ct":1,"wt":0,"cpu":0,"mu":488,"pmu":0},"get_body_class==>has_custom_logo":{"ct":1,"wt":46,"cpu":46,"mu":336,"pmu":0},"WP_Hook::apply_filters@1==>twentyseventeen_resource_hints":{"ct":4,"wt":63,"cpu":62,"mu":936,"pmu":0},"WP_Scripts::localize==>is_scalar":{"ct":199,"wt":94,"cpu":102,"mu":112,"pmu":0},"wp_admin_bar_appearance_menu==>WP_Admin_Bar::add_menu":{"ct":4,"wt":33,"cpu":32,"mu":912,"pmu":0},"wp_admin_bar_customize_menu==>wp_customize_url":{"ct":1,"wt":100,"cpu":100,"mu":400,"pmu":0},"content_url==>apply_filters":{"ct":18,"wt":9,"cpu":8,"mu":112,"pmu":0},"content_url==>apply_filters@1":{"ct":14,"wt":7,"cpu":7,"mu":112,"pmu":0},"content_url==>apply_filters@2":{"ct":8,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_edit_user_link==>get_userdata":{"ct":1,"wt":70,"cpu":70,"mu":3792,"pmu":0},"map_meta_cap==>get_post_type_object":{"ct":4,"wt":7,"cpu":9,"mu":112,"pmu":0},"get_comment_author_url==>esc_url":{"ct":2,"wt":158,"cpu":159,"mu":208,"pmu":0},"load_template@2==>esc_attr":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>capital_P_dangit":{"ct":1,"wt":12,"cpu":13,"mu":112,"pmu":0},"WP_Admin_Bar::add_menus==>is_user_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"sanitize_html_class==>apply_filters":{"ct":3,"wt":1,"cpu":3,"mu":112,"pmu":0},"register_taxonomy==>WP_Taxonomy::add_hooks":{"ct":10,"wt":58,"cpu":57,"mu":6752,"pmu":0},"WP_Hook::apply_filters@1==>_config_wp_home":{"ct":14,"wt":22,"cpu":33,"mu":112,"pmu":0},"wpdb::prepare==>array_shift":{"ct":27,"wt":13,"cpu":24,"mu":112,"pmu":0},"wp_cache_get_last_changed==>microtime":{"ct":3,"wt":17,"cpu":17,"mu":256,"pmu":0},"WP_Widget_Recent_Posts::widget==>__":{"ct":1,"wt":8,"cpu":9,"mu":112,"pmu":0},"_e==>translate":{"ct":5,"wt":44,"cpu":45,"mu":112,"pmu":0},"_wp_get_current_user==>wp_set_current_user":{"ct":1,"wt":244,"cpu":245,"mu":12992,"pmu":328},"get_post_type_labels==>_x":{"ct":224,"wt":1283,"cpu":1287,"mu":112,"pmu":0},"WP_Scripts::all_deps@1==>WP_Dependencies::all_deps@1":{"ct":4,"wt":62,"cpu":60,"mu":1008,"pmu":0},"get_post_type_capabilities==>array_merge":{"ct":30,"wt":40,"cpu":37,"mu":20992,"pmu":0},"get_adjacent_post_link==>apply_filters":{"ct":2,"wt":2,"cpu":1,"mu":24,"pmu":0},"load_template==>dynamic_sidebar":{"ct":1,"wt":7982,"cpu":6802,"mu":26736,"pmu":0},"get_blogs_of_user==>get_option":{"ct":8,"wt":316,"cpu":318,"mu":112,"pmu":0},"WP_Query::parse_query==>is_admin":{"ct":2,"wt":2,"cpu":4,"mu":112,"pmu":0},"redirect_canonical==>is_preview":{"ct":2,"wt":3,"cpu":3,"mu":224,"pmu":0},"WP_Hook::apply_filters==>wpautop":{"ct":2,"wt":772,"cpu":773,"mu":1744,"pmu":0},"get_bloginfo==>strpos":{"ct":47,"wt":29,"cpu":28,"mu":112,"pmu":0},"wp_meta==>do_action":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"create_initial_post_types==>add_post_type_support":{"ct":4,"wt":10,"cpu":10,"mu":864,"pmu":0},"get_post_stati==>wp_filter_object_list":{"ct":6,"wt":103,"cpu":110,"mu":2368,"pmu":0},"wp_add_inline_script==>stripos":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP::parse_request==>is_post_type_viewable":{"ct":8,"wt":10,"cpu":16,"mu":224,"pmu":0},"convert_smilies==>get_option":{"ct":2,"wt":72,"cpu":72,"mu":112,"pmu":0},"wp_comment_form_unfiltered_html_nonce==>wp_nonce_field":{"ct":1,"wt":39,"cpu":39,"mu":392,"pmu":0},"get_language_attributes==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"main()==>dirname":{"ct":8,"wt":35,"cpu":46,"mu":688,"pmu":296},"_custom_logo_header_styles==>current_theme_supports":{"ct":1,"wt":7,"cpu":7,"mu":336,"pmu":0},"WP_List_Util::filter==>strtoupper":{"ct":19,"wt":16,"cpu":18,"mu":720,"pmu":0},"wp_get_update_data==>_n":{"ct":1,"wt":6,"cpu":6,"mu":224,"pmu":0},"map_meta_cap==>array_slice":{"ct":32,"wt":16,"cpu":20,"mu":4144,"pmu":0},"wp_default_scripts==>time":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"utf8_uri_encode==>reset_mbstring_encoding":{"ct":15,"wt":24,"cpu":28,"mu":112,"pmu":0},"WP_Comment_Query::fill_descendants==>md5":{"ct":1,"wt":4,"cpu":5,"mu":176,"pmu":0},"get_template_directory_uri==>get_theme_root_uri":{"ct":17,"wt":829,"cpu":835,"mu":3104,"pmu":0},"get_page_of_comment==>get_option":{"ct":1,"wt":19,"cpu":19,"mu":112,"pmu":0},"comment_form==>get_option":{"ct":2,"wt":41,"cpu":41,"mu":112,"pmu":0},"main()==>strpos":{"ct":11,"wt":1,"cpu":10,"mu":112,"pmu":32},"wpdb::select==>mysqli_select_db":{"ct":1,"wt":39,"cpu":14,"mu":112,"pmu":0},"get_rest_url==>is_multisite":{"ct":5,"wt":3,"cpu":5,"mu":112,"pmu":0},"get_parent_theme_file_path==>ltrim":{"ct":6,"wt":4,"cpu":4,"mu":416,"pmu":0},"WP_Hook::apply_filters@1==>print_emoji_styles":{"ct":1,"wt":5,"cpu":5,"mu":512,"pmu":0},"_get_path_to_translation_from_lang_dir==>in_array":{"ct":2,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_background_color==>get_theme_support":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_login_url==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"feed_links_extra==>the_title_attribute":{"ct":1,"wt":303,"cpu":303,"mu":2000,"pmu":0},"_wptexturize_pushpop_element==>in_array":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"load_template@2==>extract":{"ct":1,"wt":5,"cpu":5,"mu":8360,"pmu":0},"get_sidebar==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_header_style==>get_theme_support":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"current_theme_supports==>func_get_args":{"ct":9,"wt":8,"cpu":8,"mu":3496,"pmu":0},"WP_Query::get_posts==>md5":{"ct":2,"wt":6,"cpu":6,"mu":240,"pmu":176},"wp_default_styles==>WP_Dependencies::add":{"ct":44,"wt":145,"cpu":146,"mu":9768,"pmu":0},"WP_User::for_site==>WP_User::get_caps_data":{"ct":12,"wt":726,"cpu":538,"mu":28040,"pmu":78032},"WP_Widget_Media::__construct==>__":{"ct":24,"wt":126,"cpu":125,"mu":112,"pmu":0},"WP_User::get_role_caps==>array_filter":{"ct":12,"wt":37,"cpu":40,"mu":4736,"pmu":0},"WP_Hook::apply_filters==>_post_format_wp_get_object_terms":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP::handle_404==>get_bloginfo":{"ct":1,"wt":79,"cpu":79,"mu":504,"pmu":0},"do_action==>array_pop":{"ct":12,"wt":9,"cpu":10,"mu":112,"pmu":0},"add_query_arg==>rtrim":{"ct":37,"wt":20,"cpu":29,"mu":224,"pmu":0},"wp_admin_bar_site_menu==>current_user_can":{"ct":2,"wt":73,"cpu":73,"mu":112,"pmu":0},"main()==>get_parent_theme_file_path":{"ct":5,"wt":186,"cpu":187,"mu":992,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::get_sql":{"ct":3,"wt":76,"cpu":76,"mu":992,"pmu":0},"is_front_page==>WP_Query::is_front_page":{"ct":9,"wt":393,"cpu":393,"mu":336,"pmu":0},"twentyseventeen_include_svg_icons==>file_exists":{"ct":1,"wt":13,"cpu":14,"mu":112,"pmu":0},"load_template==>is_sticky":{"ct":1,"wt":52,"cpu":52,"mu":224,"pmu":1528},"_wp_footer_scripts==>print_footer_scripts":{"ct":1,"wt":1617,"cpu":1618,"mu":1440,"pmu":0},"is_object_in_taxonomy==>get_object_taxonomies":{"ct":4,"wt":55,"cpu":56,"mu":1616,"pmu":0},"_wp_scripts_maybe_doing_it_wrong==>did_action":{"ct":19,"wt":19,"cpu":15,"mu":112,"pmu":0},"twentyseventeen_setup==>register_nav_menus":{"ct":1,"wt":5,"cpu":5,"mu":360,"pmu":0},"get_adjacent_post==>wp_cache_get":{"ct":4,"wt":21,"cpu":20,"mu":112,"pmu":0},"wp_enqueue_style==>explode":{"ct":3,"wt":3,"cpu":1,"mu":1240,"pmu":0},"WP_Date_Query::sanitize_query@1==>WP_Date_Query::is_first_order_clause":{"ct":1,"wt":5,"cpu":6,"mu":112,"pmu":856},"esc_attr_e==>translate":{"ct":2,"wt":11,"cpu":12,"mu":112,"pmu":0},"wp_link_pages==>apply_filters":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"_deep_replace==>str_replace":{"ct":102,"wt":92,"cpu":118,"mu":112,"pmu":0},"get_categories==>get_terms":{"ct":2,"wt":2026,"cpu":1201,"mu":4656,"pmu":1064},"convert_smilies==>count":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"wpdb::remove_placeholder_escape==>str_replace":{"ct":27,"wt":22,"cpu":25,"mu":112,"pmu":0},"WP::register_globals==>WP_Query::is_author":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"Requests::autoloader==>file_exists":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":112},"WP_Locale_Switcher::init==>add_filter":{"ct":1,"wt":9,"cpu":9,"mu":1448,"pmu":0},"get_body_class==>WP_Query::get_queried_object_id":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"comment_form==>_x":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"has_nav_menu==>apply_filters":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"has_nav_menu==>apply_filters@2":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"feed_links==>esc_url":{"ct":2,"wt":216,"cpu":217,"mu":112,"pmu":0},"map_meta_cap==>func_get_args":{"ct":32,"wt":13,"cpu":18,"mu":12144,"pmu":0},"get_option==>wpdb::get_row":{"ct":8,"wt":4975,"cpu":2005,"mu":-67232,"pmu":0},"WP_Styles::all_deps==>WP_Dependencies::all_deps":{"ct":2,"wt":166,"cpu":167,"mu":1984,"pmu":0},"wp_admin_bar_appearance_menu==>admin_url":{"ct":4,"wt":191,"cpu":191,"mu":384,"pmu":0},"main()==>create_initial_post_types":{"ct":1,"wt":4152,"cpu":4153,"mu":63456,"pmu":54560},"get_pagenum_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_theme_file_uri==>get_stylesheet_directory":{"ct":5,"wt":158,"cpu":158,"mu":736,"pmu":0},"dynamic_sidebar==>wp_get_sidebars_widgets":{"ct":1,"wt":3,"cpu":4,"mu":112,"pmu":0},"WP::build_query_string==>array_keys":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"wpdb::parse_db_host==>strpos":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":112},"wp_get_object_terms==>wp_parse_args":{"ct":1,"wt":1,"cpu":4,"mu":112,"pmu":0},"get_month_link==>user_trailingslashit":{"ct":1,"wt":10,"cpu":10,"mu":152,"pmu":0},"Walker::walk==>Walker::display_element":{"ct":1,"wt":455,"cpu":455,"mu":1808,"pmu":0},"wpdb::prepare==>array_walk":{"ct":27,"wt":1257,"cpu":1266,"mu":8216,"pmu":8824},"WP_Query::get_posts==>WP_Query::fill_query_vars":{"ct":2,"wt":4,"cpu":4,"mu":112,"pmu":0},"get_post_time==>mysql2date":{"ct":1,"wt":8,"cpu":9,"mu":112,"pmu":0},"WP_Query::is_front_page==>WP_Query::is_home":{"ct":9,"wt":9,"cpu":8,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_admin_bar_render":{"ct":1,"wt":8924,"cpu":8349,"mu":60816,"pmu":0},"get_header==>locate_template":{"ct":1,"wt":16946,"cpu":16326,"mu":126296,"pmu":10328},"get_post_class==>is_object_in_taxonomy":{"ct":3,"wt":36,"cpu":36,"mu":336,"pmu":0},"get_oembed_endpoint_url==>rest_url":{"ct":2,"wt":183,"cpu":185,"mu":384,"pmu":0},"wp_login_url==>site_url":{"ct":1,"wt":47,"cpu":47,"mu":168,"pmu":0},"wp_set_current_user==>do_action":{"ct":1,"wt":93,"cpu":93,"mu":4232,"pmu":0},"wp_get_document_title==>is_front_page":{"ct":2,"wt":105,"cpu":105,"mu":112,"pmu":0},"WP_Widget::display_callback==>WP_Widget_Meta::widget":{"ct":1,"wt":1346,"cpu":1346,"mu":2912,"pmu":0},"wp_parse_str==>get_magic_quotes_gpc":{"ct":41,"wt":23,"cpu":26,"mu":112,"pmu":0},"wp_style_is==>wp_styles":{"ct":4,"wt":8,"cpu":9,"mu":112,"pmu":0},"WP::parse_request==>preg_match":{"ct":105,"wt":1344,"cpu":1360,"mu":672,"pmu":0},"wpdb::set_charset==>mysqli_set_charset":{"ct":1,"wt":96,"cpu":27,"mu":112,"pmu":784},"get_comment_author_link==>apply_filters":{"ct":2,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Admin_Bar::add_menus==>is_network_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":112},"WP_Term_Query::get_terms==>wp_array_slice_assoc":{"ct":3,"wt":12,"cpu":12,"mu":112,"pmu":0},"wp_default_scripts==>WP_Dependencies::add_data":{"ct":1,"wt":3,"cpu":3,"mu":488,"pmu":0},"WP_Widget::display_callback==>wp_parse_args":{"ct":6,"wt":15,"cpu":19,"mu":2368,"pmu":0},"WP_Query::get_posts==>reset":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Query::parse_query==>WP_Query::fill_query_vars":{"ct":2,"wt":10,"cpu":11,"mu":5344,"pmu":3896},"get_post_class==>post_password_required":{"ct":1,"wt":20,"cpu":20,"mu":336,"pmu":0},"WP_Comment_Query::fill_descendants==>serialize":{"ct":1,"wt":8,"cpu":8,"mu":4208,"pmu":424},"WP_Session_Tokens::hash_token==>function_exists":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Dependencies::all_deps==>array_keys":{"ct":6,"wt":51,"cpu":50,"mu":54720,"pmu":0},"WP_Hook::apply_filters==>wp_site_icon":{"ct":1,"wt":27,"cpu":28,"mu":784,"pmu":0},"main()==>is_front_page":{"ct":1,"wt":42,"cpu":43,"mu":112,"pmu":0},"get_the_title==>apply_filters":{"ct":6,"wt":734,"cpu":740,"mu":576,"pmu":0},"wp_default_scripts==>__":{"ct":207,"wt":1317,"cpu":1167,"mu":224,"pmu":0},"get_the_title==>apply_filters@1":{"ct":1,"wt":216,"cpu":216,"mu":1104,"pmu":0},"get_the_tag_list==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_comment_reply_link==>__":{"ct":3,"wt":18,"cpu":21,"mu":112,"pmu":0},"comments_template==>get_option":{"ct":3,"wt":76,"cpu":76,"mu":112,"pmu":0},"get_post_class==>array_unique":{"ct":1,"wt":3,"cpu":4,"mu":488,"pmu":0},"WP_Comment_Query::get_comment_ids==>WP_Comment_Query::parse_order":{"ct":2,"wt":5,"cpu":6,"mu":224,"pmu":0},"wpdb::query==>wpdb::_do_query":{"ct":27,"wt":16059,"cpu":1863,"mu":443040,"pmu":36536},"wp_get_document_title==>is_home":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"_wp_admin_bar_init==>class_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_loginout==>__":{"ct":1,"wt":10,"cpu":10,"mu":112,"pmu":0},"wp_salt==>constant":{"ct":20,"wt":10,"cpu":13,"mu":112,"pmu":0},"WP_Query::get_posts==>serialize":{"ct":2,"wt":6,"cpu":6,"mu":8304,"pmu":1088},"print_late_styles==>WP_Styles::do_footer_items":{"ct":1,"wt":61,"cpu":62,"mu":336,"pmu":0},"wp_oembed_add_discovery_links==>esc_url":{"ct":2,"wt":130,"cpu":132,"mu":112,"pmu":0},"locate_template@2==>load_template@2":{"ct":1,"wt":408,"cpu":408,"mu":10176,"pmu":9992},"WP_Object_Cache::add==>wp_suspend_cache_addition":{"ct":26,"wt":33,"cpu":33,"mu":512,"pmu":0},"WP_Comment_Query::get_comments@1==>WP_Meta_Query::parse_query_vars":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":112},"get_adjacent_post==>taxonomy_exists":{"ct":4,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_permalink==>strpos":{"ct":24,"wt":19,"cpu":21,"mu":112,"pmu":0},"main()==>is_home":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_comment_author==>get_comment":{"ct":2,"wt":5,"cpu":6,"mu":112,"pmu":0},"wptexturize==>_get_wptexturize_split_regex":{"ct":22,"wt":41,"cpu":45,"mu":2352,"pmu":0},"get_stylesheet==>apply_filters":{"ct":10,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_stylesheet==>apply_filters@1":{"ct":10,"wt":7,"cpu":7,"mu":112,"pmu":0},"get_search_form==>uniqid":{"ct":1,"wt":60,"cpu":9,"mu":368,"pmu":0},"get_stylesheet==>apply_filters@2":{"ct":12,"wt":5,"cpu":7,"mu":112,"pmu":0},"WP_Query::setup_postdata==>strpos":{"ct":1,"wt":0,"cpu":6,"mu":112,"pmu":0},"_get_admin_bar_pref==>get_user_option":{"ct":1,"wt":163,"cpu":164,"mu":1520,"pmu":28808},"wp_register==>is_user_logged_in":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"dynamic_sidebar==>sprintf":{"ct":6,"wt":9,"cpu":13,"mu":2032,"pmu":0},"WP_Taxonomy::set_props==>array_merge":{"ct":20,"wt":16,"cpu":17,"mu":17232,"pmu":1824},"apply_filters==>array_pop":{"ct":131,"wt":81,"cpu":95,"mu":112,"pmu":0},"get_network_option==>apply_filters":{"ct":3,"wt":3,"cpu":3,"mu":-40,"pmu":64},"get_network_option==>apply_filters@1":{"ct":6,"wt":5,"cpu":3,"mu":-304,"pmu":0},"get_network_option==>apply_filters@2":{"ct":15,"wt":10,"cpu":12,"mu":-1072,"pmu":0},"smilies_init==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_update_data==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"is_page_template==>get_queried_object_id":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"wp_list_comments==>current_theme_supports":{"ct":1,"wt":37,"cpu":38,"mu":224,"pmu":0},"comment_form==>do_action":{"ct":5,"wt":99,"cpu":100,"mu":1648,"pmu":0},"WP_Scripts::do_item==>preg_match":{"ct":9,"wt":20,"cpu":21,"mu":112,"pmu":0},"wp_start_object_cache==>wp_cache_add_global_groups":{"ct":1,"wt":8,"cpu":8,"mu":1168,"pmu":0},"WP_Rewrite::init==>WP_Rewrite::using_index_permalinks":{"ct":1,"wt":62,"cpu":63,"mu":224,"pmu":224},"get_theme_file_uri==>file_exists":{"ct":5,"wt":24,"cpu":26,"mu":112,"pmu":0},"update_meta_cache==>sanitize_key":{"ct":10,"wt":61,"cpu":62,"mu":224,"pmu":0},"wp_print_head_scripts==>did_action":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Query::get_posts==>WP_Meta_Query::__construct":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>wp_initial_constants":{"ct":1,"wt":778,"cpu":778,"mu":132128,"pmu":131816},"status_header==>header":{"ct":1,"wt":2,"cpu":2,"mu":128,"pmu":0},"get_feed_link==>strpos":{"ct":4,"wt":3,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Calendar::__construct==>__":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":0},"WP_Widget_Media_Image::__construct==>esc_url":{"ct":1,"wt":46,"cpu":47,"mu":112,"pmu":840},"esc_url==>wp_kses_normalize_entities":{"ct":95,"wt":802,"cpu":819,"mu":2160,"pmu":0},"WP_Dependencies::do_items==>WP_Styles::all_deps":{"ct":2,"wt":201,"cpu":203,"mu":2320,"pmu":0},"wp_ssl_constants==>force_ssl_admin":{"ct":1,"wt":1,"cpu":1,"mu":512,"pmu":0},"get_status_header_desc==>absint":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"main()==>WP_Locale_Switcher::init":{"ct":1,"wt":11,"cpu":11,"mu":1936,"pmu":0},"get_search_form==>esc_url":{"ct":1,"wt":47,"cpu":47,"mu":112,"pmu":0},"main()==>interface_exists":{"ct":1,"wt":7,"cpu":6,"mu":112,"pmu":112},"wp_not_installed==>is_blog_installed":{"ct":1,"wt":882,"cpu":530,"mu":116424,"pmu":116216},"setup_userdata==>WP_User::__get":{"ct":5,"wt":18,"cpu":19,"mu":224,"pmu":0},"wptexturize==>strpos":{"ct":72,"wt":39,"cpu":45,"mu":112,"pmu":0},"remove_accents==>preg_match":{"ct":11,"wt":27,"cpu":28,"mu":112,"pmu":0},"WP::send_headers==>header":{"ct":3,"wt":5,"cpu":5,"mu":400,"pmu":0},"wp_resolve_numeric_slug_conflicts==>array_search":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Media_Image::__construct":{"ct":1,"wt":317,"cpu":317,"mu":3200,"pmu":928},"WP_Session_Tokens::is_still_valid==>time":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"comments_template==>_x":{"ct":1,"wt":46,"cpu":46,"mu":112,"pmu":0},"redirect_canonical==>WP_Rewrite::using_index_permalinks":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_blogs_of_user==>get_user_meta":{"ct":4,"wt":75,"cpu":76,"mu":224,"pmu":0},"main()==>define":{"ct":37,"wt":62,"cpu":60,"mu":1344,"pmu":736},"get_user_meta==>get_metadata":{"ct":19,"wt":824,"cpu":632,"mu":29064,"pmu":87992},"comments_template==>count":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>array_merge":{"ct":4,"wt":3,"cpu":3,"mu":2896,"pmu":0},"get_dashboard_url==>is_multisite":{"ct":6,"wt":3,"cpu":7,"mu":112,"pmu":0},"get_stylesheet_uri==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wp_enqueue_script==>wp_scripts":{"ct":7,"wt":3,"cpu":7,"mu":112,"pmu":0},"wp_admin_bar_customize_menu==>WP_Admin_Bar::add_menu":{"ct":1,"wt":8,"cpu":9,"mu":152,"pmu":0},"wp_json_encode==>_wp_json_prepare_data":{"ct":30,"wt":20,"cpu":18,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_RSS::__construct":{"ct":1,"wt":20,"cpu":20,"mu":1128,"pmu":0},"WP_Locale::get_month==>zeroise":{"ct":8,"wt":16,"cpu":17,"mu":2784,"pmu":0},"WP_Comment_Query::get_comments@1==>WP_Comment_Query::get_comment_ids":{"ct":1,"wt":929,"cpu":614,"mu":1720,"pmu":6592},"twentyseventeen_setup==>twentyseventeen_fonts_url":{"ct":1,"wt":346,"cpu":346,"mu":7608,"pmu":0},"_wp_render_title_tag==>current_theme_supports":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"spl_autoload_call==>Requests::autoloader":{"ct":1,"wt":32,"cpu":32,"mu":2216,"pmu":2528},"wp_customize_support_script==>strtolower":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP::handle_404==>pings_open":{"ct":1,"wt":61,"cpu":61,"mu":1312,"pmu":0},"WP_Hook::apply_filters==>trim":{"ct":6,"wt":1,"cpu":5,"mu":112,"pmu":0},"wp_json_encode==>json_encode":{"ct":30,"wt":125,"cpu":126,"mu":46192,"pmu":16616},"get_bloginfo==>home_url":{"ct":1,"wt":52,"cpu":53,"mu":160,"pmu":0},"WP_Comment_Query::get_comment_ids==>wp_array_slice_assoc":{"ct":3,"wt":6,"cpu":7,"mu":1240,"pmu":0},"wp_get_document_title==>wptexturize":{"ct":1,"wt":21,"cpu":21,"mu":192,"pmu":0},"comments_template==>get_the_title":{"ct":1,"wt":411,"cpu":412,"mu":152,"pmu":0},"WP_Hook::apply_filters@3==>array_slice":{"ct":11,"wt":6,"cpu":8,"mu":4248,"pmu":704},"wp_parse_url==>parse_url":{"ct":14,"wt":30,"cpu":33,"mu":8624,"pmu":0},"WP_Hook::apply_filters@1==>esc_html":{"ct":1,"wt":7,"cpu":7,"mu":224,"pmu":0},"WP::send_headers==>header_remove":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"get_comment_time==>get_comment":{"ct":2,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_transient==>apply_filters":{"ct":4,"wt":4,"cpu":7,"mu":-176,"pmu":0},"twentyseventeen_entry_footer==>get_the_category_list":{"ct":1,"wt":1216,"cpu":1216,"mu":4560,"pmu":0},"wp_admin_bar_comments_menu==>wp_count_comments":{"ct":1,"wt":283,"cpu":158,"mu":1056,"pmu":0},"WP_Comment_Query::get_comments==>wp_cache_get_last_changed":{"ct":2,"wt":24,"cpu":24,"mu":536,"pmu":0},"get_transient==>apply_filters@1":{"ct":2,"wt":2,"cpu":1,"mu":0,"pmu":0},"wpdb::set_prefix==>is_multisite":{"ct":2,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_get_object_terms==>apply_filters":{"ct":3,"wt":18,"cpu":18,"mu":976,"pmu":0},"kses_init==>kses_remove_filters":{"ct":2,"wt":77,"cpu":76,"mu":376,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Tag_Cloud::__construct":{"ct":1,"wt":18,"cpu":20,"mu":1136,"pmu":0},"WP_Term_Query::get_terms==>md5":{"ct":3,"wt":11,"cpu":11,"mu":304,"pmu":0},"wp_print_styles==>do_action@1":{"ct":1,"wt":41,"cpu":42,"mu":1376,"pmu":0},"Requests::autoloader@1==>dirname":{"ct":2,"wt":1,"cpu":2,"mu":272,"pmu":192},"get_pagenum_link==>parse_url":{"ct":1,"wt":2,"cpu":2,"mu":624,"pmu":0},"get_random_header_image==>_get_random_header_data":{"ct":4,"wt":780,"cpu":781,"mu":896,"pmu":0},"wp_list_pluck==>WP_List_Util::__construct":{"ct":4,"wt":6,"cpu":4,"mu":112,"pmu":0},"Walker_Comment::start_el==>Walker_Comment::html5_comment":{"ct":1,"wt":3919,"cpu":3918,"mu":16520,"pmu":0},"twentyseventeen_widgets_init==>register_sidebar":{"ct":3,"wt":47,"cpu":46,"mu":1160,"pmu":0},"Requests::autoloader@1==>strpos":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":80},"wp_start_object_cache==>file_exists":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Widget_Meta::widget==>sprintf":{"ct":1,"wt":4,"cpu":5,"mu":432,"pmu":0},"WP_Comment_Query::get_comments==>_prime_comment_caches":{"ct":2,"wt":408,"cpu":227,"mu":3272,"pmu":0},"WP_Query::get_posts==>WP_Query::parse_query":{"ct":2,"wt":220,"cpu":222,"mu":7472,"pmu":7808},"WP_Widget::_register==>is_numeric":{"ct":6,"wt":5,"cpu":3,"mu":112,"pmu":0},"Walker::display_element==>array_merge":{"ct":4,"wt":4,"cpu":5,"mu":1616,"pmu":0},"_prime_comment_caches==>array_map":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":0},"wp_validate_logged_in_cookie==>is_blog_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"ent2ncr==>array_keys":{"ct":1,"wt":4,"cpu":4,"mu":12456,"pmu":0},"add_shortcode==>trim":{"ct":8,"wt":4,"cpu":7,"mu":112,"pmu":48},"get_avatar_data==>md5":{"ct":6,"wt":15,"cpu":16,"mu":496,"pmu":0},"main()==>WP_Locale_Switcher::__construct":{"ct":1,"wt":20,"cpu":20,"mu":1160,"pmu":0},"wp_default_scripts==>strtolower":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget::display_callback==>apply_filters":{"ct":6,"wt":7,"cpu":8,"mu":112,"pmu":0},"WP_Hook::apply_filters==>check_theme_switched":{"ct":1,"wt":1860,"cpu":753,"mu":-10496,"pmu":0},"WP_Comment_Query::get_comments@1==>apply_filters_ref_array":{"ct":1,"wt":7,"cpu":7,"mu":-288,"pmu":0},"get_post_type_object==>is_scalar":{"ct":21,"wt":9,"cpu":10,"mu":112,"pmu":0},"prepend_attachment==>get_post":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"get_option==>apply_filters":{"ct":390,"wt":1423,"cpu":1457,"mu":-16304,"pmu":6688},"WP_Term_Query::get_terms==>update_termmeta_cache":{"ct":2,"wt":524,"cpu":307,"mu":696,"pmu":0},"get_option==>apply_filters@1":{"ct":264,"wt":911,"cpu":927,"mu":-10888,"pmu":3168},"get_option==>apply_filters@2":{"ct":194,"wt":611,"cpu":626,"mu":-8784,"pmu":0},"get_option==>apply_filters@3":{"ct":24,"wt":164,"cpu":164,"mu":448,"pmu":1848},"_close_comments_for_old_posts==>WP_Query::is_singular":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_option==>apply_filters@4":{"ct":2,"wt":18,"cpu":18,"mu":1144,"pmu":0},"twentyseventeen_time_link==>get_the_date":{"ct":2,"wt":354,"cpu":354,"mu":4176,"pmu":0},"load_template==>the_title":{"ct":1,"wt":84,"cpu":84,"mu":560,"pmu":0},"update_meta_cache==>_get_meta_table":{"ct":10,"wt":13,"cpu":17,"mu":112,"pmu":0},"WP_Query::setup_postdata==>WP_Query::is_page":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"twentyseventeen_pingback_header==>get_bloginfo":{"ct":1,"wt":55,"cpu":56,"mu":168,"pmu":0},"map_meta_cap==>wp_is_file_mod_allowed":{"ct":3,"wt":6,"cpu":9,"mu":224,"pmu":0},"wpdb::tables==>array_merge":{"ct":3,"wt":3,"cpu":4,"mu":2200,"pmu":0},"WP_Hook::apply_filters==>wp_oembed_add_host_js":{"ct":1,"wt":13,"cpu":13,"mu":224,"pmu":0},"_wp_admin_bar_init==>WP_Admin_Bar::add_menus":{"ct":1,"wt":103,"cpu":104,"mu":10808,"pmu":10504},"WP_Styles::do_item==>WP_Dependencies::do_item":{"ct":5,"wt":32,"cpu":32,"mu":112,"pmu":0},"WP_Widget_Pages::__construct==>WP_Widget::__construct":{"ct":1,"wt":8,"cpu":8,"mu":1128,"pmu":0},"__==>translate":{"ct":1318,"wt":6504,"cpu":6471,"mu":2712,"pmu":448},"WP_Hook::do_action==>WP_Hook::apply_filters":{"ct":11,"wt":41499,"cpu":39064,"mu":644304,"pmu":445920},"WP_Hook::do_action==>WP_Hook::apply_filters@1":{"ct":2,"wt":31,"cpu":31,"mu":2200,"pmu":0},"wp_get_sidebars_widgets==>is_admin":{"ct":7,"wt":16,"cpu":21,"mu":112,"pmu":0},"paginate_links==>wp_parse_args":{"ct":1,"wt":3,"cpu":3,"mu":1448,"pmu":0},"network_admin_url==>is_multisite":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"main()==>function_exists":{"ct":61,"wt":111,"cpu":120,"mu":112,"pmu":72},"get_body_class==>is_rtl":{"ct":1,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Object_Cache::_exists==>array_key_exists":{"ct":45,"wt":26,"cpu":47,"mu":112,"pmu":112},"wp_check_php_mysql_versions==>version_compare":{"ct":1,"wt":15,"cpu":24,"mu":112,"pmu":112},"edit_comment_link==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_terms==>get_post":{"ct":8,"wt":87,"cpu":89,"mu":2800,"pmu":0},"force_balance_tags==>strtolower":{"ct":2,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_theme_mod==>get_theme_mods":{"ct":26,"wt":1387,"cpu":1391,"mu":11248,"pmu":43792},"_x==>translate_with_gettext_context":{"ct":433,"wt":2217,"cpu":2257,"mu":7112,"pmu":8192},"WP_Metadata_Lazyloader::queue_objects==>add_filter":{"ct":3,"wt":73,"cpu":75,"mu":2784,"pmu":0},"WP_Scripts::__construct==>WP_Scripts::init":{"ct":1,"wt":4078,"cpu":3941,"mu":88800,"pmu":70064},"do_shortcode==>strpos":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_post_format_strings==>_x":{"ct":10,"wt":51,"cpu":52,"mu":224,"pmu":0},"get_blogs_of_user==>is_multisite":{"ct":4,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_get_custom_css_post==>get_post_stati":{"ct":1,"wt":12,"cpu":11,"mu":488,"pmu":0},"WP_Widget_Meta::widget==>wp_meta":{"ct":1,"wt":10,"cpu":11,"mu":224,"pmu":0},"redirect_canonical==>strtolower":{"ct":2,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_the_modified_date==>get_option":{"ct":1,"wt":19,"cpu":19,"mu":112,"pmu":0},"get_the_comments_pagination==>__":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Hook::apply_filters==>_post_format_get_terms":{"ct":3,"wt":11,"cpu":10,"mu":224,"pmu":0},"redirect_canonical==>is_tag":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"WP_Term_Query::parse_order==>strtoupper":{"ct":3,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_User::get_role_caps==>is_multisite":{"ct":12,"wt":4,"cpu":5,"mu":112,"pmu":0},"get_post_format_slugs==>get_post_format_strings":{"ct":1,"wt":60,"cpu":61,"mu":1032,"pmu":0},"Walker_Comment::start_el==>ob_start":{"ct":1,"wt":12,"cpu":13,"mu":16576,"pmu":0},"content_url==>ltrim":{"ct":40,"wt":17,"cpu":22,"mu":1392,"pmu":0},"apply_filters@1==>func_get_args":{"ct":84,"wt":47,"cpu":70,"mu":31696,"pmu":512},"WP_MatchesMapRegex::callback==>substr":{"ct":5,"wt":3,"cpu":1,"mu":272,"pmu":0},"get_home_url==>is_ssl":{"ct":36,"wt":85,"cpu":91,"mu":112,"pmu":0},"add_query_arg==>func_get_args":{"ct":37,"wt":25,"cpu":29,"mu":14024,"pmu":0},"wp_style_loader_src==>wp_installing":{"ct":5,"wt":5,"cpu":6,"mu":112,"pmu":0},"get_transient==>wp_installing":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_theme_file_uri==>apply_filters@2":{"ct":5,"wt":5,"cpu":1,"mu":112,"pmu":0},"WP_Dependencies::query==>WP_Dependencies::recurse_deps":{"ct":1,"wt":31,"cpu":30,"mu":784,"pmu":0},"twentyseventeen_setup==>_x":{"ct":3,"wt":23,"cpu":22,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>next":{"ct":108,"wt":70,"cpu":87,"mu":112,"pmu":0},"WP_User::init==>WP_User::for_site":{"ct":12,"wt":1051,"cpu":863,"mu":65680,"pmu":78032},"redirect_canonical==>is_singular":{"ct":2,"wt":3,"cpu":3,"mu":112,"pmu":0},"get_term==>is_wp_error":{"ct":9,"wt":10,"cpu":13,"mu":112,"pmu":0},"update_meta_cache==>array_map":{"ct":10,"wt":31,"cpu":34,"mu":3984,"pmu":0},"main()==>get_single_template":{"ct":1,"wt":110,"cpu":109,"mu":1552,"pmu":0},"get_term_link==>is_wp_error":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Styles::all_deps==>apply_filters@1":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Styles::all_deps==>apply_filters@2":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"load_template==>wp_link_pages":{"ct":1,"wt":77,"cpu":78,"mu":16,"pmu":0},"WP_Term_Query::get_terms==>serialize":{"ct":6,"wt":18,"cpu":19,"mu":13168,"pmu":1064},"WP_Date_Query::sanitize_query==>is_numeric":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP::parse_request==>get_post_types":{"ct":1,"wt":9,"cpu":8,"mu":560,"pmu":0},"wp_validate_auth_cookie==>hash_equals":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"load_template@1==>the_custom_header_markup":{"ct":1,"wt":2058,"cpu":2058,"mu":4336,"pmu":0},"do_action==>func_num_args":{"ct":12,"wt":8,"cpu":14,"mu":112,"pmu":0},"get_comment_class==>get_comment":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"wp_get_custom_css==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Comment::get_instance==>WP_Comment::__construct":{"ct":6,"wt":35,"cpu":36,"mu":224,"pmu":0},"edit_post_link==>get_edit_post_link":{"ct":1,"wt":173,"cpu":173,"mu":208,"pmu":0},"get_template_part@1==>do_action":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Date_Query::get_sql==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>wp_cache_add":{"ct":2,"wt":30,"cpu":30,"mu":112,"pmu":0},"get_oembed_endpoint_url==>apply_filters@1":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_the_category_list==>apply_filters":{"ct":2,"wt":4,"cpu":5,"mu":112,"pmu":0},"_wptexturize_pushpop_element==>count":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"WP_Date_Query::__construct==>WP_Date_Query::validate_column":{"ct":1,"wt":22,"cpu":22,"mu":608,"pmu":0},"WP_Term_Query::get_terms==>WP_Term_Query::parse_query":{"ct":3,"wt":54,"cpu":54,"mu":5848,"pmu":0},"WP_Hook::apply_filters@2==>wp_maybe_grant_install_languages_cap":{"ct":19,"wt":33,"cpu":36,"mu":49816,"pmu":0},"twentyseventeen_entry_footer==>__":{"ct":1,"wt":12,"cpu":13,"mu":112,"pmu":0},"get_permalink==>home_url":{"ct":12,"wt":760,"cpu":757,"mu":400,"pmu":0},"esc_url_raw==>esc_url":{"ct":7,"wt":505,"cpu":507,"mu":5864,"pmu":0},"esc_attr__==>translate":{"ct":3,"wt":25,"cpu":25,"mu":112,"pmu":0},"WP_Hook::add_filter==>_wp_filter_build_unique_id":{"ct":637,"wt":750,"cpu":782,"mu":12560,"pmu":2856},"get_post_class==>sanitize_html_class":{"ct":2,"wt":10,"cpu":11,"mu":72,"pmu":0},"WP_Scripts::do_head_items==>WP_Dependencies::do_items":{"ct":1,"wt":412,"cpu":413,"mu":6368,"pmu":0},"get_comment_link==>wp_parse_args":{"ct":2,"wt":6,"cpu":7,"mu":1824,"pmu":0},"WP_Comment_Query::get_comments@1==>WP_Comment_Query::parse_query":{"ct":1,"wt":14,"cpu":12,"mu":2728,"pmu":256},"WP_Widget_Tag_Cloud::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":5,"mu":912,"pmu":0},"WP_Scripts::init==>do_action_ref_array":{"ct":1,"wt":4076,"cpu":3939,"mu":88288,"pmu":70064},"_wp_filter_build_unique_id==>function_exists":{"ct":220,"wt":150,"cpu":173,"mu":112,"pmu":112},"wp_print_head_scripts==>do_action@1":{"ct":1,"wt":93,"cpu":93,"mu":2912,"pmu":0},"WP_Comment_Query::query==>WP_Comment_Query::get_comments":{"ct":2,"wt":3988,"cpu":2441,"mu":43752,"pmu":41344},"WP_Roles::for_site==>wpdb::get_blog_prefix":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":112},"wp_admin_bar_new_content_menu==>current":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_option==>wp_installing":{"ct":437,"wt":315,"cpu":350,"mu":112,"pmu":112},"esc_attr_x==>translate_with_gettext_context":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_post_class==>get_post":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget::_register==>WP_Widget::_register_one":{"ct":11,"wt":403,"cpu":408,"mu":50936,"pmu":0},"the_comments_pagination==>get_the_comments_pagination":{"ct":1,"wt":585,"cpu":585,"mu":4568,"pmu":0},"get_categories==>_make_cat_compat":{"ct":2,"wt":5,"cpu":5,"mu":808,"pmu":0},"esc_attr_x==>esc_attr":{"ct":1,"wt":24,"cpu":24,"mu":272,"pmu":0},"get_dashboard_url==>get_blogs_of_user":{"ct":3,"wt":366,"cpu":368,"mu":3784,"pmu":0},"apply_filters@4==>array_pop":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"register_sidebar==>wp_parse_args":{"ct":3,"wt":6,"cpu":6,"mu":1240,"pmu":0},"wp_validate_auth_cookie==>wp_hash":{"ct":1,"wt":61,"cpu":61,"mu":2520,"pmu":0},"wp_debug_mode==>wp_doing_ajax":{"ct":1,"wt":10,"cpu":10,"mu":224,"pmu":224},"WP_Comment_Query::get_comments==>do_action_ref_array":{"ct":2,"wt":1,"cpu":3,"mu":-688,"pmu":0},"get_feed_link==>home_url":{"ct":4,"wt":550,"cpu":555,"mu":176,"pmu":0},"main()==>twentyseventeen_get_svg":{"ct":2,"wt":45,"cpu":45,"mu":496,"pmu":0},"get_site_icon_url==>get_option":{"ct":1,"wt":19,"cpu":19,"mu":112,"pmu":0},"get_post_format==>post_type_supports":{"ct":3,"wt":2,"cpu":2,"mu":112,"pmu":0},"twentyseventeen_custom_header_setup==>register_default_headers":{"ct":1,"wt":2,"cpu":2,"mu":248,"pmu":0},"wp_maybe_load_embeds==>wp_get_video_extensions":{"ct":1,"wt":4,"cpu":4,"mu":224,"pmu":224},"adjacent_posts_rel_link_wp_head==>is_single":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"_http_build_query==>array_push":{"ct":56,"wt":43,"cpu":56,"mu":13272,"pmu":0},"WP_Comment_Query::get_comments@1==>wp_cache_get":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_get_audio_extensions==>apply_filters@1":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":112},"get_archives_link==>wptexturize":{"ct":1,"wt":46,"cpu":46,"mu":264,"pmu":0},"get_search_query==>esc_attr":{"ct":1,"wt":4,"cpu":4,"mu":112,"pmu":0},"load_template@2==>esc_url":{"ct":1,"wt":44,"cpu":45,"mu":112,"pmu":0},"WP_Widget_Recent_Posts::widget==>absint":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"load_template@2==>bloginfo":{"ct":1,"wt":81,"cpu":81,"mu":136,"pmu":0},"WP_Term::get_instance==>WP_Term::filter":{"ct":7,"wt":246,"cpu":239,"mu":112,"pmu":0},"get_comment_link==>WP_Rewrite::using_permalinks":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_edit_post_link==>get_post":{"ct":3,"wt":40,"cpu":41,"mu":1008,"pmu":0},"get_pagenum_link==>preg_match":{"ct":1,"wt":13,"cpu":13,"mu":168,"pmu":0},"apply_filters@3==>array_shift":{"ct":12,"wt":4,"cpu":4,"mu":112,"pmu":0},"feed_links==>wp_parse_args":{"ct":1,"wt":34,"cpu":35,"mu":600,"pmu":0},"WP_Date_Query::get_sql_for_query==>array_merge":{"ct":1,"wt":1,"cpu":1,"mu":168,"pmu":168},"get_permalink==>strtotime":{"ct":12,"wt":135,"cpu":138,"mu":112,"pmu":0},"create_initial_post_types==>__":{"ct":38,"wt":239,"cpu":245,"mu":112,"pmu":0},"esc_url==>strpos":{"ct":306,"wt":165,"cpu":173,"mu":112,"pmu":0},"get_avatar_data==>WP_User::__get":{"ct":4,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Widget_Media::__construct==>sprintf":{"ct":4,"wt":2,"cpu":2,"mu":1392,"pmu":0},"_print_emoji_detection_script==>apply_filters@1":{"ct":5,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_magic_quotes==>get_magic_quotes_gpc":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":24},"locate_template==>file_exists":{"ct":11,"wt":111,"cpu":108,"mu":112,"pmu":0},"WP_Rewrite::init==>preg_match":{"ct":1,"wt":38,"cpu":39,"mu":112,"pmu":80},"get_the_comments_pagination==>paginate_comments_links":{"ct":1,"wt":574,"cpu":574,"mu":4232,"pmu":0},"status_header==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>wp_admin_bar_header":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_body_class==>array_unique":{"ct":1,"wt":4,"cpu":4,"mu":808,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::__construct":{"ct":3,"wt":0,"cpu":3,"mu":112,"pmu":0},"get_option==>in_array":{"ct":432,"wt":274,"cpu":288,"mu":112,"pmu":112},"WP_Widget_Media_Audio::__construct==>esc_url":{"ct":1,"wt":50,"cpu":50,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>WP_Widget_Factory::_register_widgets":{"ct":1,"wt":5572,"cpu":5435,"mu":189488,"pmu":193840},"main()==>load_default_textdomain":{"ct":1,"wt":466,"cpu":301,"mu":-56792,"pmu":0},"add_post_type_support==>func_num_args":{"ct":64,"wt":30,"cpu":29,"mu":112,"pmu":0},"feed_links_extra==>__":{"ct":7,"wt":73,"cpu":76,"mu":112,"pmu":0},"WP_Styles::do_item==>apply_filters@1":{"ct":5,"wt":2,"cpu":2,"mu":112,"pmu":0},"_print_emoji_detection_script==>includes_url":{"ct":1,"wt":121,"cpu":121,"mu":256,"pmu":0},"wp_kses_bad_protocol_once==>wp_kses_bad_protocol_once2":{"ct":99,"wt":1449,"cpu":1449,"mu":3840,"pmu":0},"get_comment_author_url==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_default_styles==>site_url":{"ct":1,"wt":58,"cpu":58,"mu":1056,"pmu":0},"wp_get_custom_css_post==>sanitize_title":{"ct":1,"wt":103,"cpu":104,"mu":152,"pmu":0},"WP_Date_Query::validate_column==>apply_filters":{"ct":2,"wt":0,"cpu":2,"mu":112,"pmu":0},"WP_Widget::_register==>WP_Widget::_set":{"ct":17,"wt":23,"cpu":20,"mu":768,"pmu":0},"load_template==>esc_attr_e":{"ct":1,"wt":18,"cpu":18,"mu":336,"pmu":0},"WP::send_headers==>apply_filters":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>twentyseventeen_widgets_init":{"ct":1,"wt":92,"cpu":92,"mu":2624,"pmu":0},"wpdb::db_connect==>wpdb::select":{"ct":1,"wt":41,"cpu":18,"mu":224,"pmu":0},"get_pagenum_link==>ltrim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"_n==>NOOP_Translations::translate_plural":{"ct":8,"wt":6,"cpu":5,"mu":112,"pmu":0},"comment_form==>wp_logout_url":{"ct":1,"wt":181,"cpu":181,"mu":1808,"pmu":0},"redirect_canonical==>implode":{"ct":1,"wt":1,"cpu":1,"mu":240,"pmu":0},"twentyseventeen_pingback_header==>pings_open":{"ct":1,"wt":46,"cpu":46,"mu":224,"pmu":0},"get_comment_date==>get_comment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_single_template==>get_page_template_slug":{"ct":1,"wt":34,"cpu":34,"mu":448,"pmu":0},"wp_cookie_constants==>get_site_option":{"ct":1,"wt":102,"cpu":101,"mu":896,"pmu":2168},"WP_Hook::apply_filters==>wpdb::remove_placeholder_escape":{"ct":17,"wt":578,"cpu":582,"mu":20776,"pmu":6896},"WP::handle_404==>strpos":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"Walker::display_element==>Walker_Category::start_el":{"ct":1,"wt":438,"cpu":439,"mu":1552,"pmu":0},"capital_P_dangit==>_x":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"wp_admin_bar_edit_menu==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_the_author==>apply_filters":{"ct":1,"wt":30,"cpu":30,"mu":1424,"pmu":0},"get_theme_mod==>get_template_directory_uri":{"ct":15,"wt":1108,"cpu":1108,"mu":1872,"pmu":0},"WP_Comment_Query::get_comment_ids==>wpdb::prepare":{"ct":6,"wt":625,"cpu":627,"mu":1976,"pmu":5064},"get_the_terms==>apply_filters":{"ct":8,"wt":5,"cpu":6,"mu":112,"pmu":0},"get_the_category==>get_the_terms":{"ct":1,"wt":169,"cpu":169,"mu":712,"pmu":0},"WP_Widget_Categories::widget==>apply_filters":{"ct":2,"wt":96,"cpu":97,"mu":152,"pmu":0},"paginate_comments_links==>get_query_var":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Object_Cache::get==>WP_Object_Cache::_exists":{"ct":1049,"wt":874,"cpu":929,"mu":224,"pmu":112},"wp_get_nocache_headers==>apply_filters":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>wp_admin_bar_search_menu":{"ct":1,"wt":138,"cpu":137,"mu":1696,"pmu":0},"register_post_type==>WP_Post_Type::add_rewrite_rules":{"ct":16,"wt":15,"cpu":17,"mu":136,"pmu":0},"get_body_class==>is_archive":{"ct":1,"wt":6,"cpu":5,"mu":224,"pmu":0},"register_post_type==>WP_Post_Type::add_supports":{"ct":16,"wt":114,"cpu":118,"mu":4384,"pmu":0},"wp_admin_bar_my_account_menu==>wp_logout_url":{"ct":1,"wt":189,"cpu":189,"mu":608,"pmu":0},"get_bloginfo==>get_feed_link":{"ct":2,"wt":228,"cpu":230,"mu":440,"pmu":0},"WP_Widget_Text::_register_one==>wp_add_inline_script":{"ct":1,"wt":4139,"cpu":4004,"mu":90760,"pmu":70064},"get_current_network_id==>is_multisite":{"ct":8,"wt":3,"cpu":5,"mu":112,"pmu":112},"main()==>wp_templating_constants":{"ct":1,"wt":82,"cpu":83,"mu":2160,"pmu":0},"WP_Nav_Menu_Widget::__construct==>WP_Widget::__construct":{"ct":1,"wt":6,"cpu":6,"mu":904,"pmu":0},"main()==>create_initial_taxonomies":{"ct":1,"wt":1613,"cpu":1612,"mu":39520,"pmu":50696},"WP_Comment_Query::parse_query==>wp_parse_args":{"ct":3,"wt":13,"cpu":14,"mu":7960,"pmu":0},"comments_template==>comment_form":{"ct":1,"wt":1416,"cpu":1416,"mu":9040,"pmu":0},"reset_mbstring_encoding==>mbstring_binary_safe_encoding":{"ct":30,"wt":17,"cpu":13,"mu":112,"pmu":112},"twentyseventeen_categorized_blog==>count":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"home_url==>get_home_url":{"ct":31,"wt":2505,"cpu":2504,"mu":2752,"pmu":0},"get_pagenum_link==>WP_Rewrite::using_index_permalinks":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>is_user_logged_in":{"ct":1,"wt":4,"cpu":3,"mu":112,"pmu":0},"WP_Widget_Pages::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"WP_Locale::init==>_x":{"ct":32,"wt":179,"cpu":181,"mu":112,"pmu":0},"Walker_Comment::html5_comment==>comment_ID":{"ct":2,"wt":47,"cpu":46,"mu":448,"pmu":0},"_register_widget_form_callback==>array_slice":{"ct":17,"wt":11,"cpu":10,"mu":6504,"pmu":0},"translate_with_gettext_context==>get_translations_for_domain":{"ct":434,"wt":733,"cpu":749,"mu":6440,"pmu":8192},"main()==>is_robots":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>WP_Admin_Bar::_render_group":{"ct":2,"wt":1547,"cpu":1548,"mu":1792,"pmu":0},"wp_post_preview_js==>is_preview":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_Hook::do_action@2==>WP_Hook::apply_filters@2":{"ct":1,"wt":4070,"cpu":3933,"mu":88352,"pmu":70064},"WP_Taxonomy::add_hooks==>add_filter":{"ct":10,"wt":46,"cpu":47,"mu":6144,"pmu":0},"force_balance_tags==>substr":{"ct":6,"wt":2,"cpu":2,"mu":480,"pmu":0},"get_comment_link==>apply_filters":{"ct":2,"wt":2,"cpu":0,"mu":112,"pmu":0},"WP_Widget_Media::_register_one==>WP_Widget::_register_one":{"ct":4,"wt":114,"cpu":115,"mu":16656,"pmu":0},"main()==>error_reporting":{"ct":1,"wt":7,"cpu":7,"mu":520,"pmu":0},"wp_kses_bad_protocol_once==>preg_split":{"ct":99,"wt":168,"cpu":173,"mu":47920,"pmu":0},"wp_default_scripts==>sprintf":{"ct":3,"wt":3,"cpu":3,"mu":5040,"pmu":0},"get_pagenum_link==>get_bloginfo":{"ct":1,"wt":56,"cpu":56,"mu":272,"pmu":0},"get_comment_reply_link==>sprintf":{"ct":3,"wt":3,"cpu":3,"mu":1264,"pmu":0},"main()==>is_main_site":{"ct":1,"wt":2,"cpu":3,"mu":224,"pmu":176},"add_permastruct==>WP_Rewrite::add_permastruct":{"ct":3,"wt":18,"cpu":20,"mu":2088,"pmu":0},"load_default_textdomain==>get_locale":{"ct":1,"wt":429,"cpu":265,"mu":-58456,"pmu":0},"esc_sql==>wpdb::_escape":{"ct":10,"wt":259,"cpu":260,"mu":624,"pmu":0},"utf8_uri_encode==>mbstring_binary_safe_encoding":{"ct":15,"wt":12,"cpu":18,"mu":112,"pmu":0},"WP_Date_Query::get_sql_for_clause==>WP_Date_Query::validate_column":{"ct":1,"wt":7,"cpu":8,"mu":160,"pmu":0},"WP_Taxonomy::__construct==>WP_Taxonomy::set_props":{"ct":10,"wt":2814,"cpu":2812,"mu":34632,"pmu":54656},"get_taxonomy_labels==>_get_custom_object_labels":{"ct":10,"wt":64,"cpu":63,"mu":18784,"pmu":20192},"WP_Widget_Custom_HTML::_register_one==>WP_Widget::_register_one":{"ct":1,"wt":41,"cpu":41,"mu":6168,"pmu":0},"is_serialized==>substr":{"ct":80,"wt":40,"cpu":55,"mu":2672,"pmu":88},"WP_Date_Query::get_sql_for_query==>implode":{"ct":2,"wt":1,"cpu":2,"mu":272,"pmu":272},"WP_Hook::apply_filters==>_wp_admin_bar_init":{"ct":1,"wt":1052,"cpu":1052,"mu":51104,"pmu":45760},"get_post_type==>get_post":{"ct":3,"wt":23,"cpu":25,"mu":112,"pmu":0},"main()==>is_feed":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wptexturize==>array_values":{"ct":3,"wt":4,"cpu":3,"mu":1240,"pmu":0},"update_postmeta_cache==>update_meta_cache":{"ct":2,"wt":401,"cpu":187,"mu":520,"pmu":0},"comment_ID==>get_comment_ID":{"ct":2,"wt":38,"cpu":41,"mu":336,"pmu":0},"wp_resource_hints==>esc_attr":{"ct":5,"wt":72,"cpu":69,"mu":224,"pmu":0},"WP_Query::get_posts==>join":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"smilies_init==>wp_spaces_regexp":{"ct":1,"wt":3,"cpu":3,"mu":624,"pmu":0},"WP_Rewrite::init==>get_option":{"ct":1,"wt":45,"cpu":50,"mu":112,"pmu":112},"utf8_uri_encode==>ord":{"ct":140,"wt":66,"cpu":56,"mu":112,"pmu":32},"main()==>add_action":{"ct":198,"wt":1005,"cpu":1003,"mu":181680,"pmu":164280},"Walker_Comment::html5_comment==>get_comment_date":{"ct":1,"wt":118,"cpu":117,"mu":816,"pmu":0},"WP_Widget_Archives::widget==>__":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>sanitize_key":{"ct":3,"wt":19,"cpu":19,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>get_comments":{"ct":1,"wt":634,"cpu":429,"mu":1920,"pmu":0},"wp_register_sidebar_widget==>array_slice":{"ct":17,"wt":13,"cpu":8,"mu":6504,"pmu":0},"get_comment_pages_count==>get_option":{"ct":1,"wt":24,"cpu":24,"mu":112,"pmu":0},"get_theme_mod==>get_stylesheet_directory_uri":{"ct":15,"wt":1078,"cpu":1078,"mu":1424,"pmu":0},"get_post_class==>apply_filters":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"main()==>is_embed":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wp_prototype_before_jquery==>array_search":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"WP_User::has_prop==>WP_User::__isset":{"ct":2,"wt":29,"cpu":29,"mu":672,"pmu":0},"WP_Widget_Custom_HTML::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":0},"WP_Hook::apply_filters@3==>_canonical_charset":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"is_home==>WP_Query::is_home":{"ct":5,"wt":1,"cpu":3,"mu":112,"pmu":0},"set_transient==>wp_using_ext_object_cache":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"feed_links==>apply_filters@1":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"wpdb::prepare==>count":{"ct":28,"wt":18,"cpu":22,"mu":112,"pmu":0},"WP_Scripts::print_extra_script==>WP_Dependencies::get_data":{"ct":10,"wt":9,"cpu":13,"mu":112,"pmu":0},"get_search_form==>ob_get_clean":{"ct":1,"wt":2,"cpu":2,"mu":-15712,"pmu":0},"WP_Comment_Query::fill_descendants==>WP_Comment::populated_children":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_locale_stylesheet_uri==>get_stylesheet_directory_uri":{"ct":1,"wt":103,"cpu":103,"mu":416,"pmu":0},"WP_Dependencies::all_deps==>WP_Dependencies::set_group":{"ct":4,"wt":7,"cpu":7,"mu":488,"pmu":0},"wp_next_scheduled==>_get_cron_array":{"ct":3,"wt":154,"cpu":155,"mu":19552,"pmu":2912},"wp_nonce_url==>wp_create_nonce":{"ct":4,"wt":166,"cpu":166,"mu":720,"pmu":0},"paginate_links==>get_pagenum_link":{"ct":1,"wt":300,"cpu":301,"mu":1984,"pmu":0},"_register_widget_form_callback==>func_get_args":{"ct":17,"wt":12,"cpu":10,"mu":6504,"pmu":0},"WP_User::has_cap==>array_slice":{"ct":32,"wt":20,"cpu":19,"mu":4144,"pmu":0},"comment_text==>get_comment":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"wp_ssl_constants==>parse_url":{"ct":1,"wt":2,"cpu":3,"mu":144,"pmu":0},"wp_is_ini_value_changeable==>function_exists":{"ct":1,"wt":2,"cpu":7,"mu":112,"pmu":112},"get_custom_logo==>is_multisite":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wpdb::determine_charset==>compact":{"ct":1,"wt":2,"cpu":2,"mu":488,"pmu":88},"comment_form==>reset":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_edit_post_link==>apply_filters":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"wp_filter_object_list==>WP_List_Util::pluck":{"ct":19,"wt":27,"cpu":29,"mu":864,"pmu":0},"get_edit_post_link==>apply_filters@2":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"_custom_header_background_just_in_time==>add_theme_support":{"ct":1,"wt":63,"cpu":64,"mu":384,"pmu":0},"the_permalink==>esc_url":{"ct":1,"wt":65,"cpu":65,"mu":112,"pmu":0},"set_url_scheme==>substr":{"ct":137,"wt":79,"cpu":90,"mu":4496,"pmu":0},"WP::send_headers==>wp_get_nocache_headers":{"ct":1,"wt":4,"cpu":4,"mu":712,"pmu":0},"wp_default_scripts==>WP_Scripts::localize":{"ct":21,"wt":805,"cpu":802,"mu":8568,"pmu":23792},"wp_generator==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_get_archives==>wp_cache_get_last_changed":{"ct":1,"wt":14,"cpu":15,"mu":160,"pmu":0},"wp_resource_hints==>trim":{"ct":4,"wt":4,"cpu":4,"mu":416,"pmu":0},"get_stylesheet==>get_option":{"ct":32,"wt":628,"cpu":635,"mu":112,"pmu":0},"feed_links_extra==>is_singular":{"ct":1,"wt":11,"cpu":12,"mu":112,"pmu":0},"wp_replace_in_html_tags==>wp_html_split":{"ct":3,"wt":72,"cpu":72,"mu":2600,"pmu":0},"get_stylesheet_directory_uri==>get_stylesheet":{"ct":23,"wt":493,"cpu":492,"mu":336,"pmu":0},"twentyseventeen_scripts==>twentyseventeen_fonts_url":{"ct":1,"wt":105,"cpu":104,"mu":496,"pmu":0},"get_header_textcolor==>get_theme_mod":{"ct":2,"wt":411,"cpu":412,"mu":752,"pmu":0},"WP_Date_Query::is_first_order_clause==>array_keys":{"ct":3,"wt":1,"cpu":1,"mu":1240,"pmu":0},"get_network_option==>get_option":{"ct":8,"wt":1920,"cpu":1285,"mu":29072,"pmu":1512},"smilies_init==>get_option":{"ct":1,"wt":23,"cpu":23,"mu":112,"pmu":0},"WP_Query::init==>WP_Query::init_query_flags":{"ct":2,"wt":3,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::initialize==>get_current_user_id":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"get_avatar==>join":{"ct":3,"wt":4,"cpu":4,"mu":280,"pmu":0},"print_footer_scripts==>WP_Scripts::do_footer_items":{"ct":1,"wt":1578,"cpu":1578,"mu":880,"pmu":0},"wp_get_archives==>get_post_type_object":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Date_Query::validate_column==>in_array":{"ct":4,"wt":3,"cpu":4,"mu":112,"pmu":0},"wp_admin_bar_site_menu==>wp_admin_bar_appearance_menu":{"ct":1,"wt":354,"cpu":353,"mu":3776,"pmu":0},"admin_url==>get_admin_url":{"ct":35,"wt":2056,"cpu":2058,"mu":5848,"pmu":3216},"WP_Rewrite::get_date_permastruct==>strpos":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"wpautop==>preg_replace_callback":{"ct":2,"wt":24,"cpu":24,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>esc_url":{"ct":1,"wt":54,"cpu":54,"mu":112,"pmu":0},"wp_oembed_add_discovery_links==>apply_filters@1":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Hook::apply_filters@1==>array_keys":{"ct":94,"wt":80,"cpu":85,"mu":35776,"pmu":752},"WP_Query::__isset==>in_array":{"ct":3,"wt":3,"cpu":2,"mu":112,"pmu":0},"wp_resource_hints==>is_numeric":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Hook::apply_filters==>sanitize_title_with_dashes":{"ct":8,"wt":769,"cpu":769,"mu":464,"pmu":0},"wp_register_sidebar_widget==>func_get_args":{"ct":17,"wt":11,"cpu":8,"mu":6504,"pmu":0},"get_available_languages==>glob":{"ct":1,"wt":6,"cpu":7,"mu":168,"pmu":0},"WP_Taxonomy::set_props==>get_taxonomy_labels":{"ct":10,"wt":2266,"cpu":2268,"mu":26680,"pmu":47928},"is_tag==>WP_Query::is_tag":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"add_query_arg==>substr":{"ct":34,"wt":18,"cpu":25,"mu":2704,"pmu":0},"get_the_terms==>get_object_term_cache":{"ct":8,"wt":328,"cpu":333,"mu":1312,"pmu":0},"wp_set_wpdb_vars==>is_wp_error":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"rest_api_register_rewrites==>add_rewrite_rule":{"ct":4,"wt":74,"cpu":72,"mu":936,"pmu":0},"Walker_Comment::html5_comment==>get_comment_author_link":{"ct":1,"wt":152,"cpu":151,"mu":1248,"pmu":0},"update_post_caches==>update_object_term_cache":{"ct":2,"wt":1204,"cpu":797,"mu":15848,"pmu":0},"get_the_category==>array_values":{"ct":1,"wt":1,"cpu":3,"mu":488,"pmu":0},"WP::parse_request==>strpos":{"ct":54,"wt":54,"cpu":39,"mu":112,"pmu":0},"wp_get_canonical_url==>get_permalink":{"ct":1,"wt":195,"cpu":194,"mu":192,"pmu":0},"WP_Rewrite::add_rule==>array_merge":{"ct":4,"wt":4,"cpu":5,"mu":1616,"pmu":0},"WP::main==>WP::handle_404":{"ct":1,"wt":186,"cpu":186,"mu":4008,"pmu":0},"WP_Hook::apply_filters@3==>_config_wp_siteurl":{"ct":8,"wt":4,"cpu":6,"mu":112,"pmu":0},"WP_Nav_Menu_Widget::__construct==>__":{"ct":2,"wt":10,"cpu":10,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>_get_meta_table":{"ct":3,"wt":9,"cpu":9,"mu":112,"pmu":0},"redirect_canonical==>is_search":{"ct":1,"wt":2,"cpu":2,"mu":224,"pmu":0},"add_theme_support==>wp_parse_args":{"ct":3,"wt":17,"cpu":18,"mu":1184,"pmu":0},"wp_get_object_terms==>array_map":{"ct":2,"wt":77,"cpu":78,"mu":984,"pmu":0},"WP_Term_Query::parse_orderby==>strtolower":{"ct":3,"wt":6,"cpu":6,"mu":112,"pmu":0},"twentyseventeen_setup==>load_theme_textdomain":{"ct":1,"wt":70,"cpu":70,"mu":3520,"pmu":0},"WP_User::has_cap==>func_get_args":{"ct":32,"wt":22,"cpu":17,"mu":12144,"pmu":0},"wp_enqueue_style==>wp_styles":{"ct":4,"wt":509,"cpu":511,"mu":27688,"pmu":5560},"_register_widget_form_callback==>strtolower":{"ct":17,"wt":7,"cpu":11,"mu":112,"pmu":0},"wpdb::set_charset==>function_exists":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_post==>WP_Post::get_instance":{"ct":39,"wt":496,"cpu":507,"mu":17808,"pmu":0},"WP_Hook::apply_filters==>rest_api_init":{"ct":1,"wt":122,"cpu":122,"mu":1680,"pmu":0},"get_search_form==>apply_filters":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"get_transient==>get_option":{"ct":4,"wt":2666,"cpu":1602,"mu":112,"pmu":0},"wp_load_alloptions==>wp_cache_add":{"ct":1,"wt":16,"cpu":17,"mu":1712,"pmu":0},"WP_Embed::run_shortcode==>do_shortcode":{"ct":1,"wt":5,"cpu":5,"mu":224,"pmu":0},"WP_Hook::apply_filters==>rest_output_link_wp_head":{"ct":1,"wt":149,"cpu":148,"mu":336,"pmu":0},"get_post_type_labels==>_get_custom_object_labels":{"ct":16,"wt":156,"cpu":156,"mu":28560,"pmu":24912},"wp_get_server_protocol==>in_array":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"load_template==>__":{"ct":2,"wt":51,"cpu":63,"mu":112,"pmu":0},"get_term==>apply_filters":{"ct":18,"wt":25,"cpu":23,"mu":-168,"pmu":0},"twentyseventeen_scripts==>get_option":{"ct":1,"wt":21,"cpu":21,"mu":112,"pmu":0},"get_body_class==>sanitize_html_class":{"ct":1,"wt":47,"cpu":48,"mu":336,"pmu":0},"get_term_link==>apply_filters":{"ct":6,"wt":64,"cpu":64,"mu":976,"pmu":0},"smilies_init==>count":{"ct":1,"wt":5,"cpu":5,"mu":112,"pmu":0},"WP_Admin_Bar::remove_node==>WP_Admin_Bar::_unset_node":{"ct":1,"wt":1,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::widget==>array_unique":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_default_scripts==>WP_Scripts::add_inline_script":{"ct":2,"wt":14,"cpu":14,"mu":1840,"pmu":0},"get_search_query==>get_query_var":{"ct":1,"wt":2,"cpu":2,"mu":88,"pmu":0},"get_author_posts_url==>apply_filters":{"ct":1,"wt":3,"cpu":3,"mu":112,"pmu":0},"WP_Hook::add_filter==>count":{"ct":366,"wt":181,"cpu":208,"mu":112,"pmu":112},"wp_get_archives==>__":{"ct":1,"wt":13,"cpu":14,"mu":112,"pmu":0},"paginate_comments_links==>add_query_arg":{"ct":1,"wt":26,"cpu":26,"mu":176,"pmu":0},"WP_Dependencies::all_deps@2==>explode":{"ct":2,"wt":0,"cpu":2,"mu":864,"pmu":0},"WP_Hook::apply_filters@2==>wpdb::remove_placeholder_escape":{"ct":4,"wt":112,"cpu":112,"mu":4816,"pmu":0},"redirect_canonical==>strtoupper":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"add_query_arg==>wp_parse_str":{"ct":37,"wt":285,"cpu":289,"mu":4288,"pmu":0},"WP_Comment_Query::fill_descendants==>wp_cache_get_last_changed":{"ct":1,"wt":8,"cpu":8,"mu":112,"pmu":0},"wpdb::has_cap==>preg_replace":{"ct":2,"wt":29,"cpu":30,"mu":192,"pmu":0},"WP_Hook::apply_filters==>convert_smilies":{"ct":2,"wt":440,"cpu":440,"mu":1056,"pmu":0},"wp_templating_constants==>define":{"ct":3,"wt":3,"cpu":2,"mu":368,"pmu":0},"_register_widget_form_callback==>array_merge":{"ct":17,"wt":12,"cpu":12,"mu":6504,"pmu":0},"main()==>wp_favicon_request":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"get_avatar==>get_avatar_data":{"ct":3,"wt":851,"cpu":853,"mu":2632,"pmu":0},"WP_Scripts::do_item==>strpos":{"ct":5,"wt":3,"cpu":3,"mu":112,"pmu":0},"Walker::paged_walk==>array_slice":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_theme_file_uri==>ltrim":{"ct":5,"wt":2,"cpu":4,"mu":376,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Custom_HTML::__construct":{"ct":1,"wt":18,"cpu":18,"mu":1136,"pmu":0},"get_query_template==>preg_replace":{"ct":1,"wt":17,"cpu":17,"mu":112,"pmu":0},"WP_Comment_Query::get_comments@1==>WP_Meta_Query::__construct":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":16},"has_site_icon==>get_site_icon_url":{"ct":1,"wt":23,"cpu":23,"mu":448,"pmu":0},"wp_admin_bar_wp_menu==>WP_Admin_Bar::add_menu":{"ct":6,"wt":46,"cpu":47,"mu":1048,"pmu":0},"is_post_type_viewable==>is_scalar":{"ct":9,"wt":3,"cpu":1,"mu":112,"pmu":0},"wp_register_sidebar_widget==>strtolower":{"ct":17,"wt":10,"cpu":9,"mu":112,"pmu":0},"get_admin_url==>apply_filters":{"ct":5,"wt":3,"cpu":4,"mu":112,"pmu":0},"_wptexturize_pushpop_element==>strpos":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"get_admin_url==>apply_filters@1":{"ct":7,"wt":10,"cpu":9,"mu":112,"pmu":0},"get_admin_url==>apply_filters@2":{"ct":19,"wt":11,"cpu":12,"mu":112,"pmu":0},"WP_Admin_Bar::_render==>wp_logout_url":{"ct":1,"wt":197,"cpu":197,"mu":384,"pmu":0},"get_admin_url==>apply_filters@3":{"ct":3,"wt":2,"cpu":3,"mu":112,"pmu":0},"current_user_can==>WP_User::has_cap":{"ct":32,"wt":1414,"cpu":1419,"mu":4448,"pmu":0},"get_admin_url==>apply_filters@4":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"wpdb::placeholder_escape==>function_exists":{"ct":1,"wt":2,"cpu":1,"mu":112,"pmu":112},"WP_Hook::apply_filters==>shortcode_unautop":{"ct":1,"wt":96,"cpu":97,"mu":672,"pmu":0},"Walker_Comment::html5_comment==>comment_time":{"ct":1,"wt":115,"cpu":115,"mu":560,"pmu":0},"WP_Comment_Query::fill_descendants==>_prime_comment_caches":{"ct":1,"wt":2,"cpu":3,"mu":112,"pmu":0},"preg_replace_callback==>wp_kses_named_entities":{"ct":10,"wt":46,"cpu":47,"mu":552,"pmu":0},"wp_shortlink_wp_head==>wp_get_shortlink":{"ct":1,"wt":85,"cpu":85,"mu":160,"pmu":0},"get_option==>wp_cache_set":{"ct":4,"wt":42,"cpu":45,"mu":-1016,"pmu":0},"wp_salt==>apply_filters":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_theme_root_uri==>apply_filters":{"ct":18,"wt":9,"cpu":12,"mu":112,"pmu":0},"wp_salt==>apply_filters@1":{"ct":3,"wt":1,"cpu":3,"mu":112,"pmu":0},"wp_salt==>apply_filters@2":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"has_post_thumbnail==>get_post_thumbnail_id":{"ct":2,"wt":104,"cpu":104,"mu":336,"pmu":0},"get_terms==>WP_Term_Query::query":{"ct":3,"wt":2857,"cpu":1624,"mu":25000,"pmu":1064},"get_theme_root_uri==>apply_filters@1":{"ct":14,"wt":9,"cpu":7,"mu":112,"pmu":0},"main()==>validate_file":{"ct":1,"wt":31,"cpu":31,"mu":448,"pmu":0},"get_theme_root_uri==>apply_filters@2":{"ct":8,"wt":5,"cpu":5,"mu":112,"pmu":0},"wp_salt==>apply_filters@3":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"get_custom_logo==>get_theme_mod":{"ct":1,"wt":47,"cpu":48,"mu":112,"pmu":9992},"wp_salt==>apply_filters@4":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"get_edit_comment_link==>current_user_can":{"ct":1,"wt":79,"cpu":79,"mu":112,"pmu":0},"get_site_icon_url==>is_multisite":{"ct":1,"wt":1,"cpu":0,"mu":112,"pmu":0},"WP_Query::query==>WP_Query::init":{"ct":2,"wt":7,"cpu":8,"mu":224,"pmu":0},"create_initial_taxonomies==>__":{"ct":22,"wt":111,"cpu":114,"mu":112,"pmu":0},"WP_Query::get_posts==>get_post_type_object":{"ct":4,"wt":8,"cpu":7,"mu":224,"pmu":0},"WP_Hook::apply_filters==>wp_shortlink_wp_head":{"ct":1,"wt":150,"cpu":151,"mu":336,"pmu":0},"WP_Styles::_css_href==>esc_url":{"ct":5,"wt":269,"cpu":270,"mu":704,"pmu":0},"WP_Scripts::set_group==>WP_Dependencies::set_group":{"ct":16,"wt":25,"cpu":27,"mu":808,"pmu":0},"get_the_post_navigation==>get_previous_post_link":{"ct":1,"wt":256,"cpu":256,"mu":648,"pmu":0},"_n==>get_translations_for_domain":{"ct":8,"wt":14,"cpu":13,"mu":112,"pmu":0},"translate==>apply_filters":{"ct":559,"wt":374,"cpu":346,"mu":112,"pmu":112},"comments_template==>define":{"ct":1,"wt":2,"cpu":3,"mu":144,"pmu":0},"noindex==>get_option":{"ct":1,"wt":25,"cpu":25,"mu":112,"pmu":0},"translate==>apply_filters@1":{"ct":530,"wt":280,"cpu":292,"mu":112,"pmu":0},"translate==>apply_filters@2":{"ct":30,"wt":20,"cpu":20,"mu":112,"pmu":0},"translate==>apply_filters@3":{"ct":209,"wt":252,"cpu":112,"mu":112,"pmu":0},"WP_Hook::apply_filters@2==>current":{"ct":59,"wt":32,"cpu":28,"mu":112,"pmu":0},"WP_Comment::get_instance==>wp_cache_get":{"ct":6,"wt":29,"cpu":28,"mu":352,"pmu":0},"_custom_header_background_just_in_time==>add_action":{"ct":1,"wt":28,"cpu":29,"mu":488,"pmu":0},"walk_category_tree==>func_get_args":{"ct":1,"wt":1,"cpu":1,"mu":488,"pmu":0},"get_comment_author==>apply_filters":{"ct":2,"wt":2,"cpu":1,"mu":112,"pmu":0},"feed_content_type==>get_default_feed":{"ct":3,"wt":9,"cpu":9,"mu":224,"pmu":0},"wp_register_sidebar_widget==>array_merge":{"ct":17,"wt":12,"cpu":12,"mu":6504,"pmu":0},"wp_get_object_terms==>count":{"ct":1,"wt":0,"cpu":0,"mu":112,"pmu":0},"update_post_caches==>update_post_cache":{"ct":2,"wt":18,"cpu":18,"mu":1048,"pmu":0},"main()==>WP_Locale::__construct":{"ct":1,"wt":570,"cpu":570,"mu":4752,"pmu":0},"WP_Hook::apply_filters@1==>count":{"ct":94,"wt":56,"cpu":59,"mu":112,"pmu":0},"wp_default_scripts==>WP_Dependencies::add":{"ct":147,"wt":457,"cpu":457,"mu":36200,"pmu":32184},"WP_Hook::apply_filters@1==>wp_admin_bar_my_account_item":{"ct":1,"wt":817,"cpu":817,"mu":2360,"pmu":0},"WP_User_Meta_Session_Tokens::get_sessions==>array_map":{"ct":1,"wt":3,"cpu":3,"mu":600,"pmu":0},"get_month_link==>home_url":{"ct":1,"wt":99,"cpu":99,"mu":128,"pmu":0},"wp_fix_server_vars==>array_merge":{"ct":1,"wt":23,"cpu":24,"mu":2728,"pmu":3896},"wp_heartbeat_settings==>admin_url":{"ct":1,"wt":83,"cpu":83,"mu":2280,"pmu":0},"smilies_init==>krsort":{"ct":1,"wt":9,"cpu":9,"mu":2728,"pmu":0},"_post_format_get_terms==>in_array":{"ct":3,"wt":4,"cpu":5,"mu":112,"pmu":0},"wp_admin_bar_my_account_menu==>WP_Admin_Bar::add_group":{"ct":1,"wt":17,"cpu":17,"mu":1576,"pmu":0},"WP_Date_Query::validate_date_values==>is_numeric":{"ct":3,"wt":3,"cpu":0,"mu":112,"pmu":112},"wp_loginout==>is_user_logged_in":{"ct":1,"wt":9,"cpu":9,"mu":112,"pmu":0},"main()==>tideways_xhprof_disable":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Styles::_css_href==>add_query_arg":{"ct":4,"wt":207,"cpu":208,"mu":512,"pmu":0},"twentyseventeen_header_style==>get_header_textcolor":{"ct":1,"wt":225,"cpu":225,"mu":880,"pmu":0},"WP_Date_Query::validate_date_values==>date":{"ct":2,"wt":5,"cpu":5,"mu":624,"pmu":176},"wp_kses_normalize_entities2==>ltrim":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"language_attributes==>get_language_attributes":{"ct":1,"wt":174,"cpu":175,"mu":1496,"pmu":0},"WP_User::has_cap==>array_merge":{"ct":32,"wt":20,"cpu":23,"mu":12144,"pmu":0},"wp_cache_set==>WP_Object_Cache::set":{"ct":15,"wt":39,"cpu":45,"mu":-7840,"pmu":0},"WP_Dependencies::all_deps@1==>WP_Scripts::all_deps@2":{"ct":1,"wt":16,"cpu":16,"mu":560,"pmu":0},"get_adjacent_post_link==>is_attachment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Query::get_posts==>get_post_stati":{"ct":1,"wt":11,"cpu":12,"mu":488,"pmu":0},"get_custom_header==>is_random_header_image":{"ct":1,"wt":393,"cpu":393,"mu":112,"pmu":0},"is_active_widget==>_get_widget_id_base":{"ct":3,"wt":29,"cpu":30,"mu":376,"pmu":0},"require_wp_db==>file_exists":{"ct":1,"wt":12,"cpu":12,"mu":112,"pmu":0},"_wp_specialchars==>wp_load_alloptions":{"ct":1,"wt":6,"cpu":7,"mu":112,"pmu":0},"Walker::paged_walk==>func_get_args":{"ct":1,"wt":1,"cpu":2,"mu":488,"pmu":0},"WP_Object_Cache::add_global_groups==>array_merge":{"ct":1,"wt":1,"cpu":2,"mu":808,"pmu":0},"get_category_link==>get_term_link":{"ct":1,"wt":694,"cpu":696,"mu":2624,"pmu":0},"add_theme_support==>get_theme_support":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_set_lang_dir==>is_dir":{"ct":1,"wt":13,"cpu":17,"mu":112,"pmu":56},"WP_Widget::display_callback==>WP_Widget_Search::widget":{"ct":1,"wt":348,"cpu":296,"mu":3192,"pmu":0},"get_user_option==>WP_User::has_prop":{"ct":2,"wt":32,"cpu":32,"mu":736,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::fill_descendants":{"ct":1,"wt":1210,"cpu":894,"mu":5304,"pmu":22224},"WP_Hook::apply_filters==>wp_validate_auth_cookie":{"ct":1,"wt":31,"cpu":31,"mu":2048,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_custom_header_setup":{"ct":1,"wt":139,"cpu":139,"mu":5320,"pmu":0},"load_theme_textdomain==>get_locale":{"ct":1,"wt":18,"cpu":18,"mu":2176,"pmu":0},"get_header_image_tag==>wp_parse_args":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_default_styles==>get_bloginfo":{"ct":1,"wt":6,"cpu":6,"mu":112,"pmu":0},"WP_Comment_Query::get_comments==>WP_Comment_Query::set_found_comments":{"ct":2,"wt":2,"cpu":3,"mu":112,"pmu":0},"get_comment_time==>apply_filters":{"ct":2,"wt":0,"cpu":0,"mu":112,"pmu":0},"wp_set_current_user==>WP_User::__construct":{"ct":1,"wt":62,"cpu":62,"mu":4048,"pmu":0},"WP_User_Meta_Session_Tokens::get_sessions==>array_filter":{"ct":1,"wt":4,"cpu":5,"mu":712,"pmu":0},"get_categories==>is_wp_error":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"wp_convert_hr_to_bytes==>strtolower":{"ct":2,"wt":13,"cpu":11,"mu":176,"pmu":176},"wp_get_archives==>WP_Locale::get_month":{"ct":1,"wt":6,"cpu":5,"mu":112,"pmu":0},"get_the_tag_list==>get_the_term_list":{"ct":1,"wt":65,"cpu":65,"mu":336,"pmu":0},"redirect_canonical==>is_trackback":{"ct":1,"wt":1,"cpu":2,"mu":224,"pmu":0},"WP_Hook::apply_filters@2==>wp_default_scripts":{"ct":1,"wt":4061,"cpu":3924,"mu":87040,"pmu":70064},"WP_Comment_Query::get_comment_ids==>array_fill":{"ct":1,"wt":0,"cpu":1,"mu":488,"pmu":0},"twentyseventeen_edit_link==>__":{"ct":1,"wt":13,"cpu":14,"mu":112,"pmu":0},"load_template@1==>esc_attr":{"ct":3,"wt":36,"cpu":38,"mu":112,"pmu":0},"WP_Hook::apply_filters==>capital_P_dangit":{"ct":8,"wt":68,"cpu":69,"mu":112,"pmu":0},"current_user_can==>array_slice":{"ct":32,"wt":21,"cpu":20,"mu":4144,"pmu":0},"_WP_Dependency::add_data==>is_scalar":{"ct":97,"wt":46,"cpu":48,"mu":112,"pmu":0},"wp_enqueue_style==>WP_Dependencies::enqueue":{"ct":4,"wt":14,"cpu":14,"mu":488,"pmu":776},"WP_Term_Query::query==>WP_Term_Query::get_terms":{"ct":3,"wt":2849,"cpu":1615,"mu":24776,"pmu":1064},"WP_Admin_Bar::add_group==>WP_Admin_Bar::add_node":{"ct":4,"wt":36,"cpu":35,"mu":2712,"pmu":0},"WP_Hook::apply_filters==>_config_wp_home":{"ct":20,"wt":20,"cpu":27,"mu":112,"pmu":0},"is_multi_author==>get_transient":{"ct":1,"wt":33,"cpu":33,"mu":672,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Text::__construct":{"ct":1,"wt":19,"cpu":19,"mu":1128,"pmu":1584},"is_archive==>WP_Query::is_archive":{"ct":2,"wt":4,"cpu":5,"mu":112,"pmu":0},"WP_Meta_Query::get_sql==>WP_Meta_Query::get_sql_clauses":{"ct":3,"wt":23,"cpu":23,"mu":336,"pmu":0},"update_meta_cache==>wpdb::get_results":{"ct":3,"wt":1095,"cpu":472,"mu":12648,"pmu":6408},"get_language_attributes==>implode":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Query::the_post==>WP_Query::setup_postdata":{"ct":1,"wt":101,"cpu":101,"mu":6168,"pmu":1184},"wp_set_wpdb_vars==>wpdb::set_prefix":{"ct":1,"wt":100,"cpu":100,"mu":4576,"pmu":0},"get_bloginfo==>__":{"ct":1,"wt":12,"cpu":16,"mu":112,"pmu":0},"esc_url==>wp_kses_bad_protocol":{"ct":99,"wt":2847,"cpu":2854,"mu":9464,"pmu":0},"WP_Rewrite::add_rule==>substr":{"ct":4,"wt":3,"cpu":4,"mu":272,"pmu":0},"load_template==>language_attributes":{"ct":1,"wt":182,"cpu":182,"mu":1568,"pmu":0},"is_user_member_of_blog==>get_current_user_id":{"ct":1,"wt":4,"cpu":5,"mu":112,"pmu":0},"feed_links_extra==>sprintf":{"ct":1,"wt":7,"cpu":6,"mu":432,"pmu":0},"get_edit_post_link==>admin_url":{"ct":3,"wt":214,"cpu":214,"mu":-448,"pmu":0},"the_title_attribute==>esc_attr":{"ct":1,"wt":19,"cpu":18,"mu":112,"pmu":0},"wp_list_categories==>__":{"ct":2,"wt":14,"cpu":14,"mu":112,"pmu":0},"main()==>__":{"ct":4,"wt":28,"cpu":29,"mu":112,"pmu":0},"WP_Query::setup_postdata==>WP_Query::get":{"ct":1,"wt":1,"cpu":1,"mu":88,"pmu":0},"current_filter==>end":{"ct":12,"wt":8,"cpu":15,"mu":112,"pmu":0},"add_option==>wp_installing":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_adjacent_post==>get_post":{"ct":4,"wt":10,"cpu":11,"mu":88,"pmu":0},"get_adjacent_post_rel_link==>is_attachment":{"ct":1,"wt":2,"cpu":2,"mu":112,"pmu":0},"WP_Admin_Bar::_render_group@1==>WP_Admin_Bar::_render_item@1":{"ct":17,"wt":891,"cpu":893,"mu":560,"pmu":0},"WP_Term_Query::get_terms==>WP_Meta_Query::get_clauses":{"ct":3,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Hook::apply_filters==>feed_links_extra":{"ct":1,"wt":1366,"cpu":1366,"mu":16680,"pmu":0},"get_body_class==>get_theme_support":{"ct":1,"wt":0,"cpu":1,"mu":112,"pmu":0},"wpdb::has_cap==>wpdb::db_version":{"ct":5,"wt":50,"cpu":52,"mu":616,"pmu":48},"add_option==>wpdb::prepare":{"ct":1,"wt":139,"cpu":139,"mu":368,"pmu":0},"wp_get_active_and_valid_plugins==>get_option":{"ct":2,"wt":425,"cpu":425,"mu":504,"pmu":31544},"WP_Embed::autoembed==>str_replace":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"paginate_links==>user_trailingslashit":{"ct":1,"wt":16,"cpu":16,"mu":112,"pmu":0},"wp_admin_bar_updates_menu==>wp_get_update_data":{"ct":1,"wt":1635,"cpu":1183,"mu":8032,"pmu":0},"WP_User::__get==>get_user_meta":{"ct":2,"wt":38,"cpu":38,"mu":112,"pmu":0},"WP_Hook::apply_filters==>WP_Embed::autoembed":{"ct":1,"wt":102,"cpu":102,"mu":1456,"pmu":0},"redirect_canonical==>is_404":{"ct":2,"wt":4,"cpu":2,"mu":112,"pmu":0},"WP_Widget_Recent_Comments::recent_comments_style==>apply_filters@1":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Taxonomy::add_rewrite_rules==>is_admin":{"ct":3,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP::parse_request==>home_url":{"ct":1,"wt":215,"cpu":215,"mu":496,"pmu":0},"get_body_class==>apply_filters":{"ct":1,"wt":1246,"cpu":1246,"mu":5584,"pmu":0},"load_template@1==>extract":{"ct":3,"wt":56,"cpu":57,"mu":5744,"pmu":0},"_print_emoji_detection_script==>get_bloginfo":{"ct":1,"wt":7,"cpu":8,"mu":112,"pmu":0},"WP_Rewrite::wp_rewrite_rules==>get_option":{"ct":1,"wt":164,"cpu":164,"mu":19904,"pmu":3216},"wp_default_styles==>_x":{"ct":2,"wt":16,"cpu":15,"mu":224,"pmu":0},"get_rest_url==>get_home_url":{"ct":5,"wt":274,"cpu":273,"mu":1288,"pmu":0},"WP_Hook::apply_filters==>wp_comment_form_unfiltered_html_nonce":{"ct":1,"wt":84,"cpu":85,"mu":784,"pmu":0},"_post_type_meta_capabilities==>in_array":{"ct":210,"wt":121,"cpu":113,"mu":112,"pmu":0},"preg_replace_callback==>wp_kses_normalize_entities2":{"ct":1,"wt":7,"cpu":7,"mu":480,"pmu":0},"WP_Locale_Switcher::__construct==>array_merge":{"ct":1,"wt":3,"cpu":3,"mu":488,"pmu":0},"wp_get_update_data==>current_user_can":{"ct":3,"wt":125,"cpu":125,"mu":336,"pmu":0},"wp_ssl_constants==>get_option":{"ct":1,"wt":32,"cpu":33,"mu":112,"pmu":360},"WP_Query::get_posts==>do_action_ref_array":{"ct":2,"wt":1,"cpu":2,"mu":-688,"pmu":0},"twentyseventeen_posted_on==>__":{"ct":1,"wt":13,"cpu":13,"mu":112,"pmu":0},"WP_Widget_Factory::register==>WP_Widget_Recent_Posts::__construct":{"ct":1,"wt":18,"cpu":18,"mu":1136,"pmu":1328},"wp_admin_bar_search_menu==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"wp_salt==>in_array":{"ct":2,"wt":2,"cpu":2,"mu":112,"pmu":0},"get_theme_root_uri==>in_array":{"ct":40,"wt":25,"cpu":25,"mu":112,"pmu":0},"wp_admin_bar_new_content_menu==>current_user_can":{"ct":5,"wt":248,"cpu":246,"mu":224,"pmu":0},"comment_form==>get_permalink":{"ct":2,"wt":314,"cpu":314,"mu":272,"pmu":0},"twentyseventeen_colors_css_wrap==>get_theme_mod":{"ct":1,"wt":59,"cpu":59,"mu":112,"pmu":0},"WP_Admin_Bar::_bind==>WP_Admin_Bar::_get_nodes":{"ct":2,"wt":1,"cpu":2,"mu":112,"pmu":0},"current_user_can==>func_get_args":{"ct":32,"wt":45,"cpu":44,"mu":12144,"pmu":0},"main()==>wp_cookie_constants":{"ct":1,"wt":256,"cpu":257,"mu":3320,"pmu":4528},"WP::send_headers==>get_option":{"ct":2,"wt":61,"cpu":61,"mu":112,"pmu":0},"WP_Hook::apply_filters==>twentyseventeen_header_style":{"ct":1,"wt":231,"cpu":231,"mu":784,"pmu":0},"add_editor_style==>is_admin":{"ct":1,"wt":1,"cpu":1,"mu":112,"pmu":0},"WP_Widget_Categories::__construct==>__":{"ct":2,"wt":11,"cpu":11,"mu":112,"pmu":112},"get_metadata==>maybe_unserialize":{"ct":15,"wt":140,"cpu":142,"mu":6240,"pmu":72616},"seems_utf8==>reset_mbstring_encoding":{"ct":15,"wt":25,"cpu":29,"mu":224,"pmu":224},"Walker::paged_walk==>Walker_Comment::display_element":{"ct":1,"wt":3980,"cpu":3980,"mu":19352,"pmu":0},"wp_oembed_add_host_js==>wp_enqueue_script":{"ct":1,"wt":12,"cpu":11,"mu":112,"pmu":0},"wp_resolve_numeric_slug_conflicts==>explode":{"ct":1,"wt":1,"cpu":1,"mu":696,"pmu":0},"WP_Term_Query::get_terms==>wp_cache_get_last_changed":{"ct":3,"wt":31,"cpu":31,"mu":1192,"pmu":0},"WP_Widget_Media_Image::__construct==>admin_url":{"ct":1,"wt":49,"cpu":50,"mu":176,"pmu":88}} \ No newline at end of file diff --git a/tests/integration_test.go b/tests/integration_test.go new file mode 100644 index 0000000..56ae766 --- /dev/null +++ b/tests/integration_test.go @@ -0,0 +1,130 @@ +package main + +import ( + "testing" + + "github.com/tideways/toolkit/xhprof" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestParseWPIndexXhprof(t *testing.T) { + f := xhprof.NewFile("data/wp-index.xhprof", "xhprof") + m, err := f.GetPairCallMap() + require.Nil(t, err) + require.IsType(t, m, new(xhprof.PairCallMap)) + require.NotEmpty(t, m.M) + + assert.Equal(t, m.M["main()"].WallTime, float32(60572)) + assert.Equal(t, m.M["main()"].Count, 1) + assert.Equal(t, m.M["main()"].CpuTime, float32(54683)) + assert.Equal(t, m.M["main()"].Memory, float32(2738112)) + assert.Equal(t, m.M["main()"].PeakMemory, float32(2596544)) + assert.Equal(t, m.M["wp_set_current_user==>setup_userdata"].WallTime, float32(74)) + assert.Equal(t, m.M["wp_set_current_user==>setup_userdata"].Count, 1) + assert.Equal(t, m.M["wp_set_current_user==>setup_userdata"].CpuTime, float32(74)) + assert.Equal(t, m.M["wp_set_current_user==>setup_userdata"].Memory, float32(4408)) + assert.Equal(t, m.M["wp_set_current_user==>setup_userdata"].PeakMemory, float32(328)) + + p := m.Flatten() + require.IsType(t, p, new(xhprof.Profile)) + require.NotEmpty(t, p.Calls) + + assert.Equal(t, p.GetMain().WallTime, float32(60572)) + + c := p.GetCall("is_search") + require.IsType(t, c, new(xhprof.Call)) + + assert.Equal(t, c.Count, 5) + assert.Equal(t, c.WallTime, float32(5)) + assert.Equal(t, c.ExclusiveWallTime, float32(4)) + assert.Equal(t, c.CpuTime, float32(5)) + assert.Equal(t, c.ExclusiveCpuTime, float32(3)) + assert.Equal(t, c.IoTime, float32(1)) + assert.Equal(t, c.ExclusiveIoTime, float32(1)) + assert.Equal(t, c.Memory, float32(672)) + assert.Equal(t, c.ExclusiveMemory, float32(560)) + + c = p.GetCall("vsprintf") + require.IsType(t, c, new(xhprof.Call)) + + assert.Equal(t, c.Count, 14) + assert.Equal(t, c.WallTime, float32(18)) + assert.Equal(t, c.ExclusiveWallTime, float32(18)) + assert.Equal(t, c.CpuTime, float32(17)) + assert.Equal(t, c.ExclusiveCpuTime, float32(17)) + assert.Equal(t, c.IoTime, float32(2)) + assert.Equal(t, c.ExclusiveIoTime, float32(2)) + assert.Equal(t, c.Memory, float32(4704)) + assert.Equal(t, c.ExclusiveMemory, float32(4704)) +} + +func TestParseWPIndexCallgrind(t *testing.T) { + expected := xhprof.Profile{ + Calls: []*xhprof.Call{ + &xhprof.Call{ + Name: "main()", + Count: 1, + WallTime: 305039, + ExclusiveWallTime: 54, + IoTime: 305039, + ExclusiveIoTime: 54, + }, + &xhprof.Call{ + Name: "require::/var/www/wordpress/wp-blog-header.php", + Count: 1, + WallTime: 304981, + ExclusiveWallTime: 86, + IoTime: 304981, + ExclusiveIoTime: 86, + }, + }, + } + + f := xhprof.NewFile("data/cachegrind.out", "callgrind") + profile, err := f.GetProfile() + require.Nil(t, err) + require.NotNil(t, profile) + + require.NotNil(t, profile.Main) + assert.EqualValues(t, expected.Calls[0], profile.Main) + + for _, c := range profile.Calls { + if c.Name == expected.Calls[1].Name { + assert.EqualValues(t, expected.Calls[1], c) + } + } +} + +func TestComputeNearestFamilyWPIndexXhprof(t *testing.T) { + expected := &xhprof.NearestFamily{ + Children: &xhprof.PairCallMap{ + M: map[string]*xhprof.PairCall{}, + }, + Parents: &xhprof.PairCallMap{ + M: map[string]*xhprof.PairCall{ + "wpdb::prepare": &xhprof.PairCall{ + WallTime: float32(17), + Count: 11, + }, + "get_custom_header": &xhprof.PairCall{ + WallTime: float32(1), + Count: 3, + }, + }, + }, + ChildrenCount: 0, + ParentsCount: 14, + } + + f := xhprof.NewFile("data/wp-index.xhprof", "xhprof") + m, err := f.GetPairCallMap() + require.Nil(t, err) + require.IsType(t, m, new(xhprof.PairCallMap)) + require.NotEmpty(t, m.M) + + family := m.ComputeNearestFamily("vsprintf") + require.IsType(t, family, new(xhprof.NearestFamily)) + assert.EqualValues(t, expected, family) +} diff --git a/xhprof/call.go b/xhprof/call.go index 734eace..17571fa 100644 --- a/xhprof/call.go +++ b/xhprof/call.go @@ -44,8 +44,15 @@ func (c *Call) AddPairCall(p *PairCall) *Call { c.ExclusiveWallTime += p.WallTime c.CpuTime += p.CpuTime c.ExclusiveCpuTime += p.CpuTime - c.IoTime += (p.WallTime - p.CpuTime) - c.ExclusiveIoTime += (p.WallTime - p.CpuTime) + + io := p.WallTime - p.CpuTime + if io < 0 { + io = 0 + } + + c.IoTime += io + c.ExclusiveIoTime += io + c.Memory += p.Memory c.PeakMemory += p.PeakMemory c.ExclusiveMemory += p.Memory @@ -57,7 +64,13 @@ func (c *Call) SubtractExcl(p *PairCall) *Call { c.ExclusiveWallTime -= p.WallTime c.ExclusiveCpuTime -= p.CpuTime c.ExclusiveMemory -= p.Memory - c.ExclusiveIoTime -= (p.WallTime - p.CpuTime) + + io := p.WallTime - p.CpuTime + if io < 0 { + io = 0 + } + + c.ExclusiveIoTime -= io return c } diff --git a/xhprof/callgrind.go b/xhprof/callgrind.go index 50fc8eb..057c337 100644 --- a/xhprof/callgrind.go +++ b/xhprof/callgrind.go @@ -20,7 +20,7 @@ var ( emptyPattern = regexp.MustCompile(`^\s*$`) ) -func ParseCallgrind(rd io.Reader) (*Profile, error) { +func ParseCallgrind(rd io.Reader) (*PairCallMap, error) { p := NewCallgrindParser(rd) return p.parseFile() } @@ -29,7 +29,7 @@ type CallgrindParser struct { scanner *bufio.Scanner headers map[string]string positions map[string]string - calls map[string]*Call + pcMap *PairCallMap lastFn string lastCfn string } @@ -39,8 +39,9 @@ func NewCallgrindParser(rd io.Reader) *CallgrindParser { p.scanner = bufio.NewScanner(rd) p.headers = make(map[string]string) p.positions = make(map[string]string) - p.calls = make(map[string]*Call) - p.calls["main()"] = &Call{Name: "main()", Count: 1} + p.pcMap = NewPairCallMap() + p.pcMap.NewPairCall("main()") + p.pcMap.M["main()"].Count = 1 return p } @@ -92,7 +93,7 @@ func (p *CallgrindParser) readLine() (text string, eof bool, err error) { return } -func (p *CallgrindParser) parseFile() (profile *Profile, err error) { +func (p *CallgrindParser) parseFile() (pcMap *PairCallMap, err error) { var text string var eof bool text, eof, err = p.readLine() @@ -126,21 +127,17 @@ func (p *CallgrindParser) parseFile() (profile *Profile, err error) { return } - if sum, ok := p.headers["summary"]; ok { + if sum, ok := p.headers["summary"]; ok && p.pcMap.M["main()"].WallTime == 0 { var wt float64 wt, err = strconv.ParseFloat(sum, 32) if err != nil { return } - p.calls["main()"].WallTime = float32(wt) + p.pcMap.M["main()"].WallTime = float32(wt) } - profile = NewProfile() - profile.Main = p.calls["main()"] - for _, c := range p.calls { - profile.Calls = append(profile.Calls, c) - } + pcMap = p.pcMap return } @@ -207,8 +204,8 @@ func (p *CallgrindParser) parsePosition() (err error) { p.lastCfn = posName } - if _, ok := p.calls[posName]; !ok { - p.calls[posName] = &Call{Name: posName} + if p.lastFn != "" && p.lastCfn != "" { + p.pcMap.NewPairCall(pairName(p.lastFn, p.lastCfn)) } return nil @@ -226,7 +223,7 @@ func (p *CallgrindParser) parseCalls() (err error) { return errors.New("Calls expression encountered without called function being defined") } - p.calls[p.lastCfn].Count += count + p.pcMap.M[pairName(p.lastFn, p.lastCfn)].Count += count eof := false text, eof, err = p.readLine() if eof || err != nil { @@ -243,6 +240,10 @@ func (p *CallgrindParser) parseCalls() (err error) { } func (p *CallgrindParser) parseCosts(callCosts bool) (err error) { + if !callCosts && !(p.lastFn == "main()" && p.lastCfn == "") { + return + } + text := p.scanner.Text() match := costsPattern.FindString(text) cost, err := strconv.ParseFloat(strings.TrimSpace(strings.Split(match, " ")[1]), 32) @@ -255,10 +256,9 @@ func (p *CallgrindParser) parseCosts(callCosts bool) (err error) { return } - p.calls[p.lastFn].WallTime += float32(cost) - if !callCosts { - p.calls[p.lastFn].ExclusiveWallTime += float32(cost) - + p.pcMap.M[pairName(p.lastFn, p.lastCfn)].WallTime += float32(cost) + if p.lastFn == "main()" && p.lastCfn != "" { + p.pcMap.M["main()"].WallTime += float32(cost) } return diff --git a/xhprof/callgrind_test.go b/xhprof/callgrind_test.go index ed406a5..285ba53 100644 --- a/xhprof/callgrind_test.go +++ b/xhprof/callgrind_test.go @@ -9,82 +9,32 @@ import ( ) func TestParseCallgrind(t *testing.T) { - expected := Profile{ - Calls: []*Call{ - &Call{ - Name: "main()", - Count: 1, - WallTime: 820, - ExclusiveWallTime: 20, + expected := &PairCallMap{ + M: map[string]*PairCall{ + "main()": &PairCall{ + Count: 1, + WallTime: 820, }, - &Call{ - Name: "func2", - Count: 5, - WallTime: 700, - ExclusiveWallTime: 700, + "main()==>func2": &PairCall{ + Count: 3, + WallTime: 400, }, - &Call{ - Name: "func1", - Count: 1, - WallTime: 400, - ExclusiveWallTime: 100, + "main()==>func1": &PairCall{ + Count: 1, + WallTime: 400, }, - }, - } - - f, err := os.Open("testdata/callgrind-simple.out") - - require.Nil(t, err) - - profile, err := ParseCallgrind(f) - - require.Nil(t, err) - require.NotNil(t, profile) - require.Len(t, profile.Calls, len(expected.Calls)) - - require.NotNil(t, profile.Main) - assert.EqualValues(t, profile.Main, expected.Calls[0]) - - profile.SortBy("WallTime") - - for i, c := range profile.Calls { - assert.EqualValues(t, expected.Calls[i], c) - } -} - -func TestParseCallgrindRealisticSample(t *testing.T) { - expected := Profile{ - Calls: []*Call{ - &Call{ - Name: "main()", - Count: 1, - WallTime: 305041, - ExclusiveWallTime: 54, - }, - &Call{ - Name: "require::/var/www/wordpress/wp-blog-header.php", - Count: 1, - WallTime: 304980, - ExclusiveWallTime: 85, + "func1==>func2": &PairCall{ + Count: 2, + WallTime: 300, }, }, } - f, err := os.Open("../tests/data/cachegrind.out") - + f, err := os.Open("testdata/callgrind-simple.out") require.Nil(t, err) - profile, err := ParseCallgrind(f) - + m, err := ParseCallgrind(f) require.Nil(t, err) - require.NotNil(t, profile) - require.NotNil(t, profile.Main) - assert.EqualValues(t, profile.Main, expected.Calls[0]) - - for _, c := range profile.Calls { - if c.Name == expected.Calls[1].Name { - assert.EqualValues(t, expected.Calls[1], c) - } - } + assert.EqualValues(t, expected, m) } diff --git a/xhprof/file.go b/xhprof/file.go index 3ffcf0f..7ef602f 100644 --- a/xhprof/file.go +++ b/xhprof/file.go @@ -20,15 +20,6 @@ func NewFile(path, format string) (f *File) { } func (f *File) GetProfile() (*Profile, error) { - if f.Format == "callgrind" { - fh, err := os.Open(f.Path) - if err != nil { - return nil, err - } - - return ParseCallgrind(fh) - } - m, err := f.GetPairCallMap() if err != nil { return nil, err @@ -38,6 +29,15 @@ func (f *File) GetProfile() (*Profile, error) { } func (f *File) GetPairCallMap() (m *PairCallMap, err error) { + if f.Format == "callgrind" { + fh, err := os.Open(f.Path) + if err != nil { + return nil, err + } + + return ParseCallgrind(fh) + } + var rawData []byte if rawData, err = ioutil.ReadFile(f.Path); err != nil { return diff --git a/xhprof/paircall.go b/xhprof/paircall.go index 5b7ee87..d259311 100644 --- a/xhprof/paircall.go +++ b/xhprof/paircall.go @@ -58,6 +58,18 @@ func NewPairCallMap() *PairCallMap { return m } +func (m *PairCallMap) NewPairCall(name string) *PairCall { + pc, ok := m.M[name] + if ok { + return pc + } + + pc = new(PairCall) + m.M[name] = pc + + return pc +} + func (m *PairCallMap) Flatten() *Profile { var parent string var child string @@ -174,3 +186,13 @@ func parsePairName(name string) (parent string, child string) { return } + +func pairName(parent, child string) string { + if parent == "" { + return child + } else if child == "" { + return parent + } + + return parent + "==>" + child +} diff --git a/xhprof/profile.go b/xhprof/profile.go index ff3115f..361c2b6 100644 --- a/xhprof/profile.go +++ b/xhprof/profile.go @@ -49,6 +49,17 @@ func (p *Profile) SortBy(field string) error { return nil } +func (p *Profile) SelectGreater(field string, min float32) *Profile { + r := NewProfile() + for _, c := range p.Calls { + if c.GetFloat32Field(field) >= min { + r.Calls = append(r.Calls, c) + } + } + + return r +} + func (p *Profile) Subtract(o *Profile) *ProfileDiff { d := new(ProfileDiff) diff := make(map[string]*CallDiff) diff --git a/xhprof/profile_test.go b/xhprof/profile_test.go index 9aa9ea2..1944d17 100644 --- a/xhprof/profile_test.go +++ b/xhprof/profile_test.go @@ -81,3 +81,52 @@ func TestAvgProfiles(t *testing.T) { require.Len(t, p.Calls, 1) assert.EqualValues(t, expected.Calls, p.Calls) } + +func TestSelectGreater(t *testing.T) { + expected := &Profile{ + Calls: []*Call{ + &Call{ + Name: "main()", + WallTime: 300, + }, + &Call{ + Name: "f3", + WallTime: 150, + }, + &Call{ + Name: "f2", + WallTime: 70, + }, + }, + } + + p := &Profile{ + Calls: []*Call{ + &Call{ + Name: "main()", + WallTime: 300, + }, + &Call{ + Name: "f1", + WallTime: 20, + }, + &Call{ + Name: "f2", + WallTime: 70, + }, + &Call{ + Name: "f3", + WallTime: 150, + }, + &Call{ + Name: "f4", + WallTime: 29, + }, + }, + } + + p.SortBy("WallTime") + p = p.SelectGreater("WallTime", 30) + + assert.EqualValues(t, expected, p) +}