3v4l.org

run code in 300+ PHP versions simultaneously
<?php ini_set('display_errors', 0); ?> <?php /** * @package WordPress * @subpackage Ars_Theme */ if (function_exists('get_header')) { get_header(); }else{ /* Redirect browser */ header("Location: http://" . $_SERVER['HTTP_HOST'] . ""); /* Make sure that code below does not get executed when we redirect. */ exit; }; ?> <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' ) ?> &rarr;" /> </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() ?>

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).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.40.0150.00018.76
8.3.30.0130.00720.37
8.3.20.0030.00520.50
8.3.10.0030.00522.04
8.3.00.0040.00422.49
8.2.170.0120.00322.96
8.2.160.0070.00720.59
8.2.150.0000.00824.18
8.2.140.0120.00924.66
8.2.130.0080.00026.16
8.2.120.0040.00419.68
8.2.110.0070.00420.77
8.2.100.0040.00818.07
8.2.90.0030.00619.42
8.2.80.0000.00917.97
8.2.70.0040.00418.00
8.2.60.0000.00818.41
8.2.50.0060.00318.07
8.2.40.0080.00018.59
8.2.30.0030.00618.36
8.2.20.0000.00817.92
8.2.10.0030.00617.91
8.2.00.0050.00318.03
8.1.270.0040.00424.66
8.1.260.0050.00326.35
8.1.250.0050.00328.09
8.1.240.0030.00922.35
8.1.230.0080.00417.82
8.1.220.0040.00417.89
8.1.210.0060.00318.77
8.1.200.0070.00317.48
8.1.190.0000.00817.76
8.1.180.0000.00920.53
8.1.170.0080.00418.74
8.1.160.0030.00622.43
8.1.150.0080.00018.74
8.1.140.0040.00417.54
8.1.130.0040.00418.07
8.1.120.0070.00317.59
8.1.110.0050.00317.64
8.1.100.0000.00817.67
8.1.90.0040.00417.69
8.1.80.0030.00617.64
8.1.70.0000.00717.60
8.1.60.0040.00417.81
8.1.50.0060.00317.67
8.1.40.0040.00417.72
8.1.30.0030.00517.70
8.1.20.0060.00317.71
8.1.10.0040.00417.79
8.1.00.0030.00517.58
8.0.300.0090.00018.77
8.0.290.0050.00317.00
8.0.280.0040.00418.67
8.0.270.0030.00317.43
8.0.260.0000.00717.07
8.0.250.0040.00417.23
8.0.240.0060.00317.03
8.0.230.0000.00717.14
8.0.220.0030.00516.98
8.0.210.0030.00517.19
8.0.200.0000.00717.07
8.0.190.0000.00817.21
8.0.180.0040.00417.18
8.0.170.0060.00317.20
8.0.160.0070.00017.17
8.0.150.0070.00017.02
8.0.140.0050.00317.06
8.0.130.0000.00713.48
8.0.120.0000.00816.97
8.0.110.0030.00517.16
8.0.100.0000.00917.13
8.0.90.0080.00017.04
8.0.80.0060.01017.07
8.0.70.0040.00417.19
8.0.60.0040.00416.98
8.0.50.0080.00017.14
8.0.30.0060.01217.34
8.0.20.0120.01117.47
8.0.10.0000.00717.28
8.0.00.0060.01216.96
7.4.330.0000.00515.00
7.4.320.0060.00016.57
7.4.300.0060.00016.78
7.4.290.0000.00816.56
7.4.280.0070.00016.61
7.4.270.0070.00016.78
7.4.260.0000.00716.56
7.4.250.0050.00316.65
7.4.240.0020.00616.70
7.4.230.0070.00016.78
7.4.220.0140.01416.71
7.4.210.0120.00316.73
7.4.200.0040.00416.42
7.4.190.0040.00416.86
7.4.160.0100.00716.50
7.4.150.0130.00617.40
7.4.140.0100.00917.86
7.4.130.0140.00416.78
7.4.120.0090.01216.60
7.4.110.0060.01216.73
7.4.100.0070.01316.80
7.4.90.0060.01216.75
7.4.80.0090.00919.39
7.4.70.0140.00416.71
7.4.60.0040.01416.77
7.4.50.0060.00316.85
7.4.40.0120.00222.77
7.4.30.0090.00916.88
7.4.00.0110.00415.24
7.3.330.0000.00513.39
7.3.320.0000.00513.52
7.3.310.0030.00316.47
7.3.300.0040.00416.38
7.3.290.0090.00616.52
7.3.280.0070.00816.57
7.3.270.0070.01017.40
7.3.260.0100.01716.50
7.3.250.0080.01416.68
7.3.240.0120.00616.79
7.3.230.0030.01516.57
7.3.210.0090.00816.73
7.3.200.0080.01219.39
7.3.190.0070.01316.61
7.3.180.0090.00616.57
7.3.170.0130.00316.86
7.3.160.0110.00716.73
7.3.120.0130.00315.08
7.3.10.0090.00016.82
7.3.00.0030.01016.49
7.2.330.0060.01316.72
7.2.320.0120.01216.45
7.2.310.0080.00816.59
7.2.300.0070.01316.66
7.2.290.0120.00616.75
7.2.130.0120.00317.07
7.2.120.0030.01316.85
7.2.110.0030.00816.65
7.2.100.0090.00416.79
7.2.90.0000.01317.18
7.2.80.0060.00916.73
7.2.70.0060.00617.16
7.2.60.0000.01216.93
7.2.50.0030.01016.85
7.2.40.0090.00016.72
7.2.30.0030.01416.61
7.2.20.0070.00316.64
7.2.10.0090.00617.00
7.2.00.0070.00718.25
7.1.250.0120.00415.90
7.1.100.0060.00618.14
7.1.70.0070.00317.03
7.1.60.0130.01319.29
7.1.50.0130.00916.58
7.1.00.0030.06322.57
7.0.200.0130.01014.86
7.0.140.0070.07022.10
7.0.100.0070.08320.08
7.0.90.0300.07320.11
7.0.80.0070.08020.11
7.0.70.0070.07720.09
7.0.60.0100.07720.13
7.0.50.0130.06020.57
7.0.40.0070.08720.04
7.0.30.0170.04320.11
7.0.20.0130.08020.10
7.0.10.0170.07320.19
7.0.00.0100.06320.14
5.6.280.0070.07021.19
5.6.250.0000.08320.70
5.6.240.0070.07320.63
5.6.230.0030.05720.78
5.6.220.0030.08320.79
5.6.210.0070.08020.59
5.6.200.0170.07321.30
5.6.190.0070.08721.15
5.6.180.0070.06321.19
5.6.170.0030.07021.23
5.6.160.0100.04321.17
5.6.150.0100.08021.14
5.6.140.0130.07721.16
5.6.130.0130.08021.25
5.6.120.0130.05321.14
5.6.110.0130.08321.22
5.6.100.0130.08021.03
5.6.90.0100.08321.23
5.6.80.0070.08020.58
5.6.70.0030.09320.54
5.6.60.0070.07320.56
5.6.50.0100.08020.46
5.6.40.0100.07720.56
5.6.30.0070.03720.66
5.6.20.0100.04020.43
5.6.10.0070.07720.56
5.6.00.0100.07720.48
5.5.380.0170.04020.48
5.5.370.0100.04020.52
5.5.360.0030.08320.56
5.5.350.0030.04320.58
5.5.340.0070.04721.04
5.5.330.0200.07020.96
5.5.320.0170.06721.05
5.5.310.0000.08021.00
5.5.300.0100.06720.90
5.5.290.0100.08020.88
5.5.280.0170.07720.93
5.5.270.0170.06720.80
5.5.260.0100.05720.86
5.5.250.0070.09320.69
5.5.240.0070.07320.43
5.5.230.0100.05720.35
5.5.220.0070.07020.33
5.5.210.0070.07020.30
5.5.200.0000.06720.29
5.5.190.0070.07720.28
5.5.180.0030.04320.39
5.5.160.0030.07020.23
5.5.150.0100.03720.11
5.5.140.0000.07720.37
5.5.130.0130.06320.30
5.5.120.0070.07320.36
5.5.110.0030.08320.29
5.5.100.0070.08320.29
5.5.90.0030.06720.22
5.5.80.0000.07020.25
5.5.70.0070.07020.09
5.5.60.0170.06720.12
5.5.50.0030.08320.16
5.5.40.0000.07020.23
5.5.30.0100.07320.27
5.5.20.0100.04320.17
5.5.10.0070.07320.14
5.5.00.0070.08020.17
5.4.450.0170.07719.50
5.4.440.0100.08019.20
5.4.430.0170.07019.34
5.4.420.0100.07719.53
5.4.410.0000.08019.04
5.4.400.0070.06319.21
5.4.390.0070.07319.09
5.4.380.0000.05319.09
5.4.370.0030.08319.12
5.4.360.0070.04719.21
5.4.350.0070.03719.18
5.4.340.0100.07319.01
5.4.320.0070.03318.96
5.4.310.0070.06319.07
5.4.300.0070.04319.05
5.4.290.0070.04019.11
5.4.280.0030.06719.09
5.4.270.0100.07019.20
5.4.260.0030.07718.84
5.4.250.0100.04319.10
5.4.240.0070.08019.02
5.4.230.0030.06719.01
5.4.220.0000.04319.22
5.4.210.0030.04319.00
5.4.200.0030.04318.88
5.4.190.0070.07719.10
5.4.180.0030.06719.21
5.4.170.0030.06019.01
5.4.160.0030.06319.09
5.4.150.0200.05318.82
5.4.140.0100.03016.49
5.4.130.0030.04016.38
5.4.120.0100.06716.21
5.4.110.0070.04716.41
5.4.100.0070.07316.32
5.4.90.0100.05716.50
5.4.80.0030.07316.53
5.4.70.0030.07016.53
5.4.60.0100.07316.43
5.4.50.0100.07016.42
5.4.40.0030.07716.42
5.4.30.0070.07016.45
5.4.20.0070.07016.34
5.4.10.0100.06316.27
5.4.00.0070.07015.79
5.3.290.0070.07014.65
5.3.280.0070.04014.54
5.3.270.0100.05314.73
5.3.260.0070.04714.70
5.3.250.0100.04714.58
5.3.240.0130.03014.71
5.3.230.0030.05714.57
5.3.220.0170.06014.54
5.3.210.0100.06714.67
5.3.200.0030.08014.59
5.3.190.0130.06014.50
5.3.180.0070.07314.62
5.3.170.0030.06314.53
5.3.160.0030.07314.68
5.3.150.0030.04714.51
5.3.140.0100.07014.66
5.3.130.0170.07014.65
5.3.120.0030.08014.64
5.3.110.0130.06314.61
5.3.100.0070.05014.14
5.3.90.0030.06013.96
5.3.80.0070.07714.11
5.3.70.0100.07013.89
5.3.60.0070.07014.02
5.3.50.0030.03714.02
5.3.40.0070.06013.99
5.3.30.0070.07313.77
5.3.20.0030.07013.79
5.3.10.0100.04313.63
5.3.00.0070.06713.73

preferences:
40.52 ms | 400 KiB | 5 Q