@ 2014-02-18T08:48:50Z <?php get_header() ?>
<div id="content">
<div class="padder">
<?php do_action( 'bp_before_register_page' ) ?>
<div class="page" id="register-page">
<form action="" name="signup_form" id="signup_form" class="standard-form" method="post" enctype="multipart/form-data">
<?php if ( 'request-details' == bp_get_current_signup_step() ) : ?>
<h2><?php _e( 'Create an Account', 'buddypress' ) ?></h2>
<?php do_action( 'template_notices' ) ?>
<p><?php _e( 'Registering for this site is easy, just fill in the fields below and we\'ll get a new account set up for you in no time.', 'buddypress' ) ?></p>
<?php do_action( 'bp_before_account_details_fields' ) ?>
<div class="register-section" id="basic-details-section">
<?php /***** Basic Account Details ******/ ?>
<h4><?php _e( 'Account Details', 'buddypress' ) ?></h4>
<label for="signup_username"><?php _e( 'Username', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label>
<?php do_action( 'bp_signup_username_errors' ) ?>
<input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" />
<label for="signup_email"><?php _e( 'Email Address', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label>
<?php do_action( 'bp_signup_email_errors' ) ?>
<input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" />
<label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label>
<?php do_action( 'bp_signup_password_errors' ) ?>
<input type="password" name="signup_password" id="signup_password" value="" />
<label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ) ?> <?php _e( '(*)', 'buddypress' ) ?></label>
<?php do_action( 'bp_signup_password_confirm_errors' ) ?>
<input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" />
</div><!-- #basic-details-section -->
<?php do_action( 'bp_after_account_details_fields' ) ?>
<?php do_action( 'bp_before_blog_details_fields' ) ?>
<?php /***** Extra Profile Details ******/ ?>
<?php if ( bp_is_active( 'xprofile' ) ) : ?>
<div class="register-section" id="profile-details-section">
<h4><?php _e( 'Profile Details', 'buddypress' ) ?></h4>
<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
<?php if ( function_exists( 'bp_has_profile' ) ) : if ( bp_has_profile( 'profile_group_id=1' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
<div class="editfield">
<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
<label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<input type="text" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" value="<?php bp_the_profile_field_edit_value() ?>" />
<?php endif; ?>
<?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?>
<label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_edit_value() ?></textarea>
<?php endif; ?>
<?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
<label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>">
<?php bp_the_profile_field_options() ?>
</select>
<?php endif; ?>
<?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?>
<label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" multiple="multiple">
<?php bp_the_profile_field_options() ?>
</select>
<?php endif; ?>
<?php if ( 'radio' == bp_get_the_profile_field_type() ) : ?>
<div class="radio">
<span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></span>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<?php bp_the_profile_field_options() ?>
<?php if ( !bp_get_the_profile_field_is_required() ) : ?>
<a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name() ?>' );"><?php _e( 'Clear', 'buddypress' ) ?></a>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if ( 'checkbox' == bp_get_the_profile_field_type() ) : ?>
<div class="checkbox">
<span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></span>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<?php bp_the_profile_field_options() ?>
</div>
<?php endif; ?>
<?php if ( 'datebox' == bp_get_the_profile_field_type() ) : ?>
<div class="datebox">
<label for="<?php bp_the_profile_field_input_name() ?>_day"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '*', 'buddypress' ) ?><?php endif; ?></label>
<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>
<select name="<?php bp_the_profile_field_input_name() ?>_day" id="<?php bp_the_profile_field_input_name() ?>_day">
<?php bp_the_profile_field_options( 'type=day' ) ?>
</select>
<select name="<?php bp_the_profile_field_input_name() ?>_month" id="<?php bp_the_profile_field_input_name() ?>_month">
<?php bp_the_profile_field_options( 'type=month' ) ?>
</select>
<select name="<?php bp_the_profile_field_input_name() ?>_year" id="<?php bp_the_profile_field_input_name() ?>_year">
<?php bp_the_profile_field_options( 'type=year' ) ?>
</select>
</div>
<?php endif; ?>
<?php do_action( 'bp_custom_profile_edit_fields' ) ?>
<p class="description"><?php bp_the_profile_field_description() ?></p>
</div>
<?php endwhile; ?>
<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids() ?>" />
<?php endwhile; endif; endif; ?>
</div><!-- #profile-details-section -->
<?php endif; ?>
<?php do_action( 'bp_after_signup_profile_fields' ) ?>
<?php if ( bp_get_blog_signup_allowed() ) : ?>
<?php do_action( 'bp_before_blog_details_fields' ) ?>
<?php /***** Blog Creation Details ******/ ?>
<div class="register-section" id="blog-details-section">
<h4><?php _e( 'Blog Details', 'buddypress' ) ?></h4>
<p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new blog', 'buddypress' ) ?></p>
<div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>>
<label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label>
<?php do_action( 'bp_signup_blog_url_errors' ) ?>
<?php if ( 'yes' == VHOST ) : ?>
http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value() ?>" /> .<?php echo str_replace( 'http://', '', site_url() ) ?>
<?php else : ?>
<?php echo site_url() ?>/ <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value() ?>" />
<?php endif; ?>
<label for="signup_blog_title"><?php _e( 'Blog Title', 'buddypress' ) ?> <?php _e( '*', 'buddypress' ) ?></label>
<?php do_action( 'bp_signup_blog_title_errors' ) ?>
<input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value() ?>" />
<span class="label"><?php _e( 'I would like my blog to appear in search engines, and in public listings around this site', 'buddypress' ) ?>:</span>
<?php do_action( 'bp_signup_blog_privacy_errors' ) ?>
<label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes' ) ?></label>
<label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No' ) ?></label>
</div>
</div><!-- #blog-details-section -->
<?php do_action( 'bp_after_blog_details_fields' ) ?>
<?php endif; ?>
<?php do_action( 'bp_before_registration_submit_buttons' ) ?>
<a id="myLocation" title="Click to get your current location" href="#" onclick="initialize(); return false;">Get My Location</a>
<div class="submit">
<input type="submit"name="signup_submit" id="signup_submit" value="<?php _e( 'Complete Sign Up', 'buddypress' ) ?> →" />
</div>
<?php do_action( 'bp_after_registration_submit_buttons' ) ?>
<?php wp_nonce_field( 'bp_new_signup' ) ?>
<?php endif; // request-details signup step ?>
<?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?>
<h2><?php _e( 'Sign Up Complete!', 'buddypress' ) ?></h2>
<?php do_action( 'template_notices' ) ?>
<?php if ( bp_registration_needs_activation() ) : ?>
<p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ) ?></p>
<?php else : ?>
<p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ) ?></p>
<?php endif; ?>
<?php if ( bp_is_active( 'xprofile' ) && !(int)bp_get_option( 'bp-disable-avatar-uploads' ) ) : ?>
<?php if ( 'upload-image' == bp_get_avatar_admin_step() ) : ?>
<h4><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h4>
<p><?php _e( "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one?", 'buddypress' ) ?></p>
<div id="signup-avatar">
<?php bp_signup_avatar() ?>
</div>
<p>
<input type="file" name="file" id="file" />
<input type="submit" name="upload" id="upload" value="<?php _e( 'Upload Image', 'buddypress' ) ?>" />
<input type="hidden" name="action" id="action" value="bp_avatar_upload" />
<input type="hidden" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" />
<input type="hidden" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" />
</p>
<?php wp_nonce_field( 'bp_avatar_upload' ) ?>
<?php endif; ?>
<?php if ( 'crop-image' == bp_get_avatar_admin_step() ) : ?>
<h3><?php _e( 'Crop Your New Avatar', 'buddypress' ) ?></h3>
<img src="<?php bp_avatar_to_crop() ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ) ?>" />
<div id="avatar-crop-pane">
<img src="<?php bp_avatar_to_crop() ?>" id="avatar-crop-preview" class="avatar" alt="<?php _e( 'Avatar preview', 'buddypress' ) ?>" />
</div>
<input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="<?php _e( 'Crop Image', 'buddypress' ) ?>" />
<input type="hidden" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" />
<input type="hidden" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" />
<input type="hidden" name="signup_avatar_dir" id="signup_avatar_dir" value="<?php bp_signup_avatar_dir_value() ?>" />
<input type="hidden" name="image_src" id="image_src" value="<?php bp_avatar_to_crop_src() ?>" />
<input type="hidden" id="x" name="x" />
<input type="hidden" id="y" name="y" />
<input type="hidden" id="w" name="w" />
<input type="hidden" id="h" name="h" />
<?php wp_nonce_field( 'bp_avatar_cropstore' ) ?>
<?php endif; ?>
<?php endif; ?>
<?php endif; // completed-confirmation signup step ?>
<?php do_action( 'bp_custom_signup_steps' ) ?>
</form>
</div>
<?php do_action( 'bp_after_register_page' ) ?>
</div><!-- .padder -->
</div><!-- #content -->
<?php locate_template( array( 'sidebar.php' ), true ) ?>
<?php do_action( 'bp_after_directory_activity_content' ) ?>
<script type="text/javascript">
jQuery(document).ready( function() {
if ( jQuery('div#blog-details').length && !jQuery('div#blog-details').hasClass('show') )
jQuery('div#blog-details').toggle();
jQuery( 'input#signup_with_blog' ).click( function() {
jQuery('div#blog-details').fadeOut().toggle();
});
});
</script>
<?php get_footer() ?>
Enable javascript to submit You have javascript disabled. You will not be able to edit any code.
Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).
Version System time (s) User time (s) Memory (MiB) 8.4.2 0.020 0.000 18.11 8.4.1 0.003 0.006 18.03 8.3.15 0.007 0.011 20.70 8.3.14 0.003 0.007 17.06 8.3.13 0.004 0.011 18.53 8.3.12 0.010 0.000 19.06 8.3.11 0.004 0.004 20.94 8.3.10 0.013 0.003 24.06 8.3.9 0.013 0.006 16.79 8.3.8 0.006 0.003 18.20 8.3.7 0.004 0.015 17.13 8.3.6 0.012 0.009 18.55 8.3.5 0.009 0.012 22.05 8.3.4 0.012 0.003 19.20 8.3.3 0.014 0.003 20.51 8.3.2 0.004 0.004 20.46 8.3.1 0.005 0.003 21.89 8.3.0 0.000 0.008 22.29 8.2.27 0.010 0.010 17.40 8.2.26 0.008 0.000 20.38 8.2.25 0.004 0.004 18.69 8.2.24 0.007 0.013 19.02 8.2.23 0.006 0.003 22.58 8.2.22 0.011 0.007 37.54 8.2.21 0.000 0.008 26.77 8.2.20 0.006 0.003 18.13 8.2.19 0.012 0.003 16.75 8.2.18 0.007 0.014 18.66 8.2.17 0.011 0.007 22.96 8.2.16 0.010 0.003 20.64 8.2.15 0.000 0.008 24.18 8.2.14 0.008 0.000 24.66 8.2.13 0.015 0.000 26.16 8.2.12 0.006 0.003 19.48 8.2.11 0.000 0.008 22.08 8.2.10 0.008 0.004 19.56 8.2.9 0.000 0.009 19.19 8.2.8 0.003 0.005 19.53 8.2.7 0.007 0.003 17.75 8.2.6 0.004 0.004 18.17 8.2.5 0.004 0.004 18.07 8.2.4 0.009 0.000 18.16 8.2.3 0.003 0.006 18.30 8.2.2 0.006 0.003 17.79 8.2.1 0.003 0.006 17.89 8.2.0 0.003 0.007 17.96 8.1.31 0.015 0.004 16.78 8.1.30 0.003 0.006 18.54 8.1.29 0.004 0.004 18.88 8.1.28 0.015 0.000 25.92 8.1.27 0.009 0.000 22.23 8.1.26 0.004 0.004 26.35 8.1.25 0.000 0.008 28.09 8.1.24 0.006 0.003 23.80 8.1.23 0.007 0.003 19.27 8.1.22 0.005 0.003 17.74 8.1.21 0.000 0.009 18.77 8.1.20 0.003 0.009 17.60 8.1.19 0.008 0.000 17.78 8.1.18 0.008 0.000 18.88 8.1.17 0.000 0.008 18.70 8.1.16 0.000 0.007 22.25 8.1.15 0.005 0.003 18.66 8.1.14 0.000 0.007 17.55 8.1.13 0.007 0.000 17.54 8.1.12 0.004 0.004 17.47 8.1.11 0.005 0.003 17.55 8.1.10 0.008 0.000 17.57 8.1.9 0.004 0.004 17.53 8.1.8 0.004 0.004 17.47 8.1.7 0.000 0.007 17.58 8.1.6 0.006 0.003 17.63 8.1.5 0.000 0.009 17.74 8.1.4 0.005 0.003 17.71 8.1.3 0.004 0.004 17.77 8.1.2 0.006 0.003 17.89 8.1.1 0.000 0.008 17.64 8.1.0 0.004 0.004 17.68 8.0.30 0.008 0.003 18.77 8.0.29 0.007 0.000 17.30 8.0.28 0.008 0.000 18.62 8.0.27 0.005 0.003 17.44 8.0.26 0.003 0.003 17.02 8.0.25 0.000 0.007 17.17 8.0.24 0.006 0.003 17.07 8.0.23 0.000 0.007 17.08 8.0.22 0.000 0.007 17.02 8.0.21 0.000 0.007 17.13 8.0.20 0.007 0.000 17.06 8.0.19 0.007 0.004 17.20 8.0.18 0.008 0.000 17.06 8.0.17 0.004 0.004 17.05 8.0.16 0.000 0.007 17.02 8.0.15 0.000 0.008 16.95 8.0.14 0.005 0.003 17.09 8.0.13 0.000 0.005 13.48 8.0.12 0.004 0.004 16.94 8.0.11 0.004 0.004 16.96 8.0.10 0.004 0.004 17.18 8.0.9 0.004 0.004 16.99 8.0.8 0.009 0.006 17.13 8.0.7 0.000 0.007 17.22 8.0.6 0.004 0.004 16.91 8.0.5 0.008 0.000 17.11 8.0.3 0.012 0.008 17.05 8.0.2 0.007 0.014 17.40 8.0.1 0.000 0.007 17.05 8.0.0 0.008 0.013 16.95 7.4.33 0.000 0.005 15.00 7.4.32 0.000 0.006 16.46 7.4.30 0.006 0.000 16.80 7.4.29 0.007 0.000 16.68 7.4.28 0.000 0.007 16.80 7.4.27 0.003 0.005 16.79 7.4.26 0.000 0.007 16.61 7.4.25 0.000 0.008 16.71 7.4.24 0.004 0.003 16.67 7.4.23 0.004 0.004 16.75 7.4.22 0.007 0.016 16.71 7.4.21 0.003 0.012 16.77 7.4.20 0.007 0.000 16.43 7.4.19 0.003 0.006 16.72 7.4.16 0.014 0.007 16.92 7.4.15 0.017 0.009 17.40 7.4.14 0.009 0.012 17.86 7.4.13 0.007 0.011 16.75 7.4.12 0.015 0.003 16.71 7.4.11 0.015 0.003 16.68 7.4.10 0.009 0.009 16.69 7.4.9 0.006 0.012 16.60 7.4.8 0.007 0.011 19.39 7.4.7 0.006 0.012 16.79 7.4.6 0.010 0.006 16.59 7.4.5 0.006 0.000 16.65 7.4.4 0.007 0.007 22.77 7.4.3 0.013 0.006 16.61 7.4.0 0.011 0.002 15.13 7.3.33 0.005 0.000 13.35 7.3.32 0.003 0.003 13.21 7.3.31 0.004 0.004 16.63 7.3.30 0.007 0.000 16.33 7.3.29 0.010 0.003 16.43 7.3.28 0.009 0.008 16.53 7.3.27 0.009 0.009 17.40 7.3.26 0.015 0.004 16.36 7.3.25 0.007 0.011 16.58 7.3.24 0.013 0.010 16.74 7.3.23 0.003 0.013 16.52 7.3.21 0.007 0.011 16.53 7.3.20 0.010 0.007 19.39 7.3.19 0.009 0.009 16.73 7.3.18 0.017 0.004 16.63 7.3.17 0.008 0.008 16.81 7.3.16 0.006 0.012 16.51 7.3.12 0.003 0.013 15.08 7.3.11 0.004 0.011 15.17 7.3.10 0.006 0.012 14.87 7.3.9 0.007 0.007 15.29 7.3.8 0.011 0.003 15.18 7.3.7 0.003 0.006 14.99 7.3.6 0.007 0.007 15.11 7.3.5 0.011 0.004 15.00 7.3.4 0.004 0.011 14.79 7.3.3 0.003 0.006 14.93 7.3.2 0.004 0.008 16.73 7.3.1 0.007 0.005 16.50 7.3.0 0.001 0.009 16.36 7.2.33 0.010 0.010 16.47 7.2.32 0.009 0.009 16.75 7.2.31 0.007 0.010 16.66 7.2.30 0.013 0.006 16.57 7.2.29 0.006 0.013 16.56 7.2.25 0.017 0.003 15.16 7.2.24 0.007 0.013 15.05 7.2.23 0.000 0.015 14.66 7.2.22 0.000 0.014 14.59 7.2.21 0.006 0.009 15.31 7.2.20 0.010 0.003 15.13 7.2.19 0.004 0.010 15.01 7.2.18 0.006 0.006 14.87 7.2.17 0.003 0.010 15.05 7.2.16 0.006 0.006 15.14 7.2.15 0.003 0.009 16.74 7.2.14 0.004 0.011 16.65 7.2.13 0.005 0.007 16.50 7.2.12 0.004 0.006 16.60 7.2.11 0.009 0.007 16.77 7.2.10 0.008 0.007 16.53 7.2.9 0.012 0.008 16.69 7.2.8 0.004 0.009 16.79 7.2.7 0.014 0.006 16.81 7.2.6 0.007 0.009 16.82 7.2.5 0.003 0.012 16.59 7.2.4 0.008 0.008 16.74 7.2.3 0.007 0.012 16.70 7.2.2 0.007 0.008 16.74 7.2.1 0.005 0.009 16.78 7.2.0 0.006 0.008 16.69 7.1.33 0.003 0.013 15.79 7.1.32 0.009 0.006 15.45 7.1.31 0.003 0.009 15.29 7.1.30 0.003 0.007 15.38 7.1.29 0.010 0.003 15.32 7.1.28 0.003 0.013 15.70 7.1.27 0.011 0.004 15.73 7.1.26 0.003 0.006 15.65 7.1.25 0.010 0.007 15.61 7.1.24 0.006 0.003 15.52 7.1.23 0.010 0.003 15.73 7.1.22 0.000 0.013 15.73 7.1.21 0.000 0.011 15.72 7.1.20 0.005 0.007 15.65 7.1.19 0.007 0.007 15.50 7.1.18 0.003 0.009 15.69 7.1.17 0.000 0.008 15.39 7.1.16 0.003 0.010 15.61 7.1.15 0.003 0.014 15.57 7.1.14 0.000 0.010 15.45 7.1.13 0.000 0.013 15.72 7.1.12 0.007 0.010 15.70 7.1.11 0.008 0.008 15.77 7.1.10 0.000 0.008 15.50 7.1.9 0.003 0.010 15.70 7.1.8 0.003 0.010 15.71 7.1.7 0.002 0.010 16.35 7.1.6 0.011 0.008 17.43 7.1.5 0.011 0.008 16.20 7.1.4 0.006 0.009 15.38 7.1.3 0.006 0.009 15.70 7.1.2 0.004 0.011 15.60 7.1.1 0.003 0.006 15.61 7.1.0 0.005 0.042 19.16 7.0.33 0.010 0.003 15.38 7.0.32 0.010 0.003 15.47 7.0.31 0.003 0.012 15.48 7.0.30 0.000 0.015 15.35 7.0.29 0.007 0.010 15.39 7.0.28 0.008 0.004 15.28 7.0.27 0.003 0.006 15.27 7.0.26 0.006 0.010 15.35 7.0.25 0.011 0.000 15.32 7.0.24 0.003 0.005 15.26 7.0.23 0.009 0.006 15.41 7.0.22 0.009 0.006 15.36 7.0.21 0.000 0.014 15.09 7.0.20 0.005 0.009 15.15 7.0.19 0.006 0.003 15.33 7.0.18 0.004 0.009 15.31 7.0.17 0.003 0.009 15.32 7.0.16 0.013 0.003 15.25 7.0.15 0.003 0.012 15.20 7.0.14 0.001 0.046 18.59 7.0.13 0.008 0.000 15.19 7.0.12 0.006 0.011 15.35 7.0.11 0.006 0.006 15.09 7.0.10 0.013 0.043 17.72 7.0.9 0.010 0.045 17.71 7.0.8 0.005 0.042 17.57 7.0.7 0.013 0.040 17.68 7.0.6 0.007 0.046 17.75 7.0.5 0.008 0.040 17.99 7.0.4 0.012 0.033 16.88 7.0.3 0.003 0.033 16.85 7.0.2 0.005 0.032 16.84 7.0.1 0.010 0.040 16.85 7.0.0 0.005 0.043 16.84 5.6.40 0.000 0.011 14.23 5.6.39 0.004 0.007 14.43 5.6.38 0.003 0.009 14.42 5.6.37 0.000 0.011 14.06 5.6.36 0.008 0.008 14.27 5.6.35 0.004 0.015 13.90 5.6.34 0.004 0.008 14.21 5.6.33 0.000 0.019 14.20 5.6.32 0.006 0.009 14.20 5.6.31 0.009 0.009 14.55 5.6.30 0.007 0.007 14.45 5.6.29 0.004 0.011 14.03 5.6.28 0.009 0.036 17.85 5.6.27 0.010 0.003 14.25 5.6.26 0.008 0.003 14.11 5.6.25 0.011 0.040 17.39 5.6.24 0.002 0.047 17.50 5.6.23 0.007 0.043 17.39 5.6.22 0.008 0.042 17.56 5.6.21 0.005 0.049 17.69 5.6.20 0.011 0.040 17.68 5.6.19 0.008 0.037 17.66 5.6.18 0.005 0.029 17.73 5.6.17 0.012 0.040 17.77 5.6.16 0.005 0.023 17.62 5.6.15 0.010 0.043 17.54 5.6.14 0.003 0.045 17.73 5.6.13 0.005 0.024 17.57 5.6.12 0.009 0.043 17.84 5.6.11 0.005 0.023 17.75 5.6.10 0.003 0.038 17.65 5.6.9 0.007 0.045 17.59 5.6.8 0.008 0.041 17.26 5.6.7 0.002 0.031 17.32 5.6.6 0.005 0.045 17.29 5.6.5 0.005 0.040 17.17 5.6.4 0.007 0.032 17.19 5.6.3 0.007 0.022 17.27 5.6.2 0.005 0.023 17.17 5.6.1 0.000 0.029 17.20 5.6.0 0.010 0.017 17.23 5.5.38 0.006 0.043 17.20 5.5.37 0.007 0.039 17.36 5.5.36 0.008 0.037 17.26 5.5.35 0.003 0.043 17.37 5.5.34 0.005 0.045 17.46 5.5.33 0.010 0.033 17.68 5.5.32 0.007 0.044 17.37 5.5.31 0.006 0.023 17.36 5.5.30 0.003 0.025 17.65 5.5.29 0.012 0.035 17.44 5.5.28 0.010 0.043 17.56 5.5.27 0.003 0.035 17.37 5.5.26 0.008 0.023 17.43 5.5.25 0.011 0.040 17.37 5.5.24 0.007 0.045 17.15 5.5.23 0.008 0.041 17.16 5.5.22 0.013 0.033 17.20 5.5.21 0.008 0.043 17.29 5.5.20 0.007 0.037 17.12 5.5.19 0.007 0.020 17.25 5.5.18 0.002 0.024 17.00 5.5.17 0.010 0.007 14.24 5.5.16 0.005 0.025 17.24 5.5.15 0.005 0.022 17.22 5.5.14 0.003 0.025 17.15 5.5.13 0.000 0.030 17.05 5.5.12 0.003 0.025 17.02 5.5.11 0.006 0.023 17.16 5.5.10 0.005 0.021 17.13 5.5.9 0.008 0.020 17.07 5.5.8 0.004 0.025 17.03 5.5.7 0.005 0.020 17.15 5.5.6 0.006 0.025 16.89 5.5.5 0.005 0.026 17.14 5.5.4 0.005 0.030 17.07 5.5.3 0.003 0.029 17.01 5.5.2 0.007 0.022 17.06 5.5.1 0.003 0.025 17.03 5.5.0 0.007 0.022 17.23 5.4.45 0.006 0.043 16.62 5.4.44 0.007 0.018 16.50 5.4.43 0.005 0.034 16.51 5.4.42 0.002 0.034 16.54 5.4.41 0.003 0.031 16.44 5.4.40 0.005 0.040 16.36 5.4.39 0.005 0.045 16.35 5.4.38 0.005 0.040 16.34 5.4.37 0.000 0.028 16.29 5.4.36 0.005 0.047 16.31 5.4.35 0.002 0.024 16.34 5.4.34 0.002 0.023 16.34 5.4.33 0.009 0.003 13.60 5.4.32 0.005 0.022 16.35 5.4.31 0.000 0.024 16.38 5.4.30 0.003 0.023 16.29 5.4.29 0.002 0.023 16.31 5.4.28 0.003 0.025 16.35 5.4.27 0.000 0.025 16.40 5.4.26 0.003 0.024 16.31 5.4.25 0.007 0.018 16.35 5.4.24 0.003 0.021 16.21 5.4.23 0.003 0.024 16.31 5.4.22 0.005 0.020 16.31 5.4.21 0.007 0.022 16.31 5.4.20 0.005 0.024 16.31 5.4.19 0.002 0.023 16.26 5.4.18 0.003 0.022 16.35 5.4.17 0.005 0.020 16.33 5.4.16 0.002 0.024 16.29 5.4.15 0.007 0.033 16.38 5.4.14 0.002 0.026 15.03 5.4.13 0.000 0.033 14.99 5.4.12 0.007 0.020 14.99 5.4.11 0.005 0.022 15.02 5.4.10 0.004 0.020 15.01 5.4.9 0.006 0.019 14.96 5.4.8 0.008 0.018 15.03 5.4.7 0.005 0.020 14.98 5.4.6 0.003 0.023 14.96 5.4.5 0.000 0.021 14.98 5.4.4 0.002 0.025 15.04 5.4.3 0.005 0.018 14.93 5.4.2 0.005 0.023 14.97 5.4.1 0.008 0.018 14.93 5.4.0 0.004 0.020 14.71 5.3.29 0.003 0.026 14.17 5.3.28 0.004 0.022 14.08 5.3.27 0.004 0.021 14.07 5.3.26 0.003 0.020 14.16 5.3.25 0.000 0.024 14.11 5.3.24 0.007 0.033 14.13 5.3.23 0.002 0.024 14.13 5.3.22 0.003 0.027 14.07 5.3.21 0.000 0.026 14.13 5.3.20 0.002 0.023 14.13 5.3.19 0.005 0.021 14.05 5.3.18 0.000 0.028 14.12 5.3.17 0.002 0.023 14.12 5.3.16 0.003 0.022 14.13 5.3.15 0.003 0.021 14.10 5.3.14 0.005 0.019 14.12 5.3.13 0.002 0.030 14.13 5.3.12 0.005 0.024 14.13 5.3.11 0.013 0.012 14.12 5.3.10 0.013 0.030 13.80 5.3.9 0.005 0.040 13.78 5.3.8 0.008 0.040 13.85 5.3.7 0.007 0.020 13.79 5.3.6 0.003 0.039 13.85 5.3.5 0.003 0.035 13.71 5.3.4 0.007 0.037 13.81 5.3.3 0.008 0.036 13.74 5.3.2 0.005 0.040 13.71 5.3.1 0.009 0.032 13.68 5.3.0 0.004 0.029 13.63
preferences:dark mode live preview
104.16 ms | 403 KiB | 5 Q