about summary refs log blame commit diff stats
path: root/027call_ingredient.cc
blob: 659f644d26c2f937d77fa8d942fdb0d1629f9738 (plain) (tree)
1
2
3
                                                                         
                                       
 













                                       
 












                                        
 
                           
                                         
                            
                               

                                
 
                                 
                                               
                                                               
                                                                  
                                
                                                   
                                 
 
 

                                             
                                        
                                                        
                                                   
                                       
                       
                                  
                                                                                                                                                

          



                                                
                                          
                                                                                          
                                                                   
                                             


                                                                                                    
                               
                                                                                                  
     

                                                                                                          
                                                                                                                                                                                                                              
                                                
     
                       
                                                                                       
                                                                           
                                
                                                
   
        
                                                 
                                                                                                                                                      
                                                      
                       
                                                                    
                                                                         
                                
   

        
 














                                                     
 


















                                                                            



                                             
                                                              
                                                         



                                       

                                                
                                                


        

                                                     















                                                                                         



                                             
                                              
                                         
                                       
                  
                                    
                                                                                                                                                  

          
                                                                                     
                                                                                                                                                              

          



                                                
                                                                                          
                                                                        
                       
                                                                                       
                                                                           
                                
                                                

        
                                                   

                                                                                                 
                                  



        
 
                                                                            
       

                                         
               

                           
                                                    


                                  
                                                         
                             
                                    
                                                                    
                                             
 
//: Calls can take ingredients just like primitives. To access a recipe's
//: ingredients, use 'next-ingredient'.

void test_next_ingredient() {
  run(
      "def main [\n"
      "  f 2\n"
      "]\n"
      "def f [\n"
      "  12:num <- next-ingredient\n"
      "  13:num <- add 1, 12:num\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "mem: storing 3 in location 13\n"
  );
}

void test_next_ingredient_missing() {
  run(
      "def main [\n"
      "  f\n"
      "]\n"
      "def f [\n"
      "  _, 12:num <- next-ingredient\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "mem: storing 0 in location 12\n"
  );
}

:(before "End call Fields")
vector<vector<double> > ingredient_atoms;
vector<reagent> ingredients;
int next_ingredient_to_process;
:(before "End call Constructor")
next_ingredient_to_process = 0;

:(before "End Call Housekeeping")
for (int i = 0;  i < SIZE(ingredients);  ++i) {
  current_call().ingredient_atoms.push_back(ingredients.at(i));
  reagent/*copy*/ ingredient = call_instruction.ingredients.at(i);
  // End Compute Call Ingredient
  current_call().ingredients.push_back(ingredient);
  // End Populate Call Ingredient
}

:(before "End Primitive Recipe Declarations")
NEXT_INGREDIENT,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "next-ingredient", NEXT_INGREDIENT);
put(Recipe_ordinal, "next-input", NEXT_INGREDIENT);
:(before "End Primitive Recipe Checks")
case NEXT_INGREDIENT: {
  if (!inst.ingredients.empty()) {
    raise << maybe(get(Recipe, r).name) << "'next-ingredient' didn't expect any ingredients in '" << to_original_string(inst) << "'\n" << end();
    break;
  }
  break;
}
:(before "End Primitive Recipe Implementations")
case NEXT_INGREDIENT: {
  assert(!Current_routine->calls.empty());
  if (current_call().next_ingredient_to_process < SIZE(current_call().ingredient_atoms)) {
    reagent/*copy*/ product = current_instruction().products.at(0);
    // End Preprocess NEXT_INGREDIENT product
    if (current_recipe_name() == "main") {
      // no ingredient types since the call might be implicit; assume ingredients are always strings
      // todo: how to test this?
      if (!is_mu_text(product))
        raise << "main: wrong type for ingredient '" << product.original_string << "'\n" << end();
    }
    else if (!types_coercible(product,
                              current_call().ingredients.at(current_call().next_ingredient_to_process))) {
      raise << maybe(current_recipe_name()) << "wrong type for ingredient '" << product.original_string << "': " << current_call().ingredients.at(current_call().next_ingredient_to_process).original_string << '\n' << end();
      // End next-ingredient Type Mismatch Error
    }
    products.push_back(
        current_call().ingredient_atoms.at(current_call().next_ingredient_to_process));
    assert(SIZE(products) == 1);  products.resize(2);  // push a new vector
    products.at(1).push_back(1);
    ++current_call().next_ingredient_to_process;
  }
  else {
    if (SIZE(current_instruction().products) < 2)
      raise << maybe(current_recipe_name()) << "no ingredient to save in '" << current_instruction().products.at(0).original_string << "'\n" << end();
    if (current_instruction().products.empty()) break;
    products.resize(2);
    // pad the first product with sufficient zeros to match its type
    products.at(0).resize(size_of(current_instruction().products.at(0)));
    products.at(1).push_back(0);
  }
  break;
}

:(code)
void test_next_ingredient_fail_on_missing() {
  Hide_errors = true;
  run(
      "def main [\n"
      "  f\n"
      "]\n"
      "def f [\n"
      "  11:num <- next-ingredient\n"
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: f: no ingredient to save in '11:num'\n"
  );
}

void test_rewind_ingredients() {
  run(
      "def main [\n"
      "  f 2\n"
      "]\n"
      "def f [\n"
      "  12:num <- next-ingredient\n"  // consume ingredient
      "  _, 1:bool <- next-ingredient\n"  // will not find any ingredients
      "  rewind-ingredients\n"
      "  13:num, 2:bool <- next-ingredient\n"  // will find ingredient again
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "mem: storing 2 in location 12\n"
      "mem: storing 0 in location 1\n"
      "mem: storing 2 in location 13\n"
      "mem: storing 1 in location 2\n"
  );
}

:(before "End Primitive Recipe Declarations")
REWIND_INGREDIENTS,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "rewind-ingredients", REWIND_INGREDIENTS);
put(Recipe_ordinal, "rewind-inputs", REWIND_INGREDIENTS);
:(before "End Primitive Recipe Checks")
case REWIND_INGREDIENTS: {
  break;
}
:(before "End Primitive Recipe Implementations")
case REWIND_INGREDIENTS: {
  current_call().next_ingredient_to_process = 0;
  break;
}

//: another primitive: 'ingredient' for random access

:(code)
void test_ingredient() {
  run(
      "def main [\n"
      "  f 1, 2\n"
      "]\n"
      "def f [\n"
      "  12:num <- ingredient 1\n"  // consume second ingredient first
      "  13:num, 1:bool <- next-ingredient\n"  // next-ingredient tries to scan past that
      "]\n"
  );
  CHECK_TRACE_CONTENTS(
      "mem: storing 2 in location 12\n"
      "mem: storing 0 in location 1\n"
  );
}

:(before "End Primitive Recipe Declarations")
INGREDIENT,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "ingredient", INGREDIENT);
put(Recipe_ordinal, "input", INGREDIENT);
:(before "End Primitive Recipe Checks")
case INGREDIENT: {
  if (SIZE(inst.ingredients) != 1) {
    raise << maybe(get(Recipe, r).name) << "'ingredient' expects exactly one ingredient, but got '" << to_original_string(inst) << "'\n" << end();
    break;
  }
  if (!is_literal(inst.ingredients.at(0)) && !is_mu_number(inst.ingredients.at(0))) {
    raise << maybe(get(Recipe, r).name) << "'ingredient' expects a literal ingredient, but got '" << inst.ingredients.at(0).original_string << "'\n" << end();
    break;
  }
  break;
}
:(before "End Primitive Recipe Implementations")
case INGREDIENT: {
  if (static_cast<int>(ingredients.at(0).at(0)) < SIZE(current_call().ingredient_atoms)) {
    current_call().next_ingredient_to_process = ingredients.at(0).at(0);
    products.push_back(
        current_call().ingredient_atoms.at(current_call().next_ingredient_to_process));
    assert(SIZE(products) == 1);  products.resize(2);  // push a new vector
    products.at(1).push_back(1);
    ++current_call().next_ingredient_to_process;
  }
  else {
    if (SIZE(current_instruction().products) > 1) {
      products.resize(2);
      products.at(0).push_back(0);  // todo: will fail noisily if we try to read a compound value
      products.at(1).push_back(0);
    }
  }
  break;
}

//: a particularly common array type is the text, or address:array:character
:(code)
bool is_mu_text(reagent/*copy*/ x) {
  // End Preprocess is_mu_text(reagent x)
  return x.type
      && !x.type->atom
      && x.type->left->atom
      && x.type->left->value == Address_type_ordinal
      && x.type->right
      && !x.type->right->atom
      && x.type->right->left->atom
      && x.type->right->left->value == Array_type_ordinal
      && x.type->right->right
      && !x.type->right->right->atom
      && x.type->right->right->left->value == Character_type_ordinal
      && x.type->right->right->right == NULL;
}
'#n3487'>3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="1130"
   height="800"
   viewBox="0 0 1130 800"
   id="svg2"
   version="1.1"
   inkscape:version="0.91 r13725"
   sodipodi:docname="cheatsheet.svg"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs4" />
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="1"
     inkscape:pageshadow="2"
     inkscape:zoom="1.4142136"
     inkscape:cx="794.15228"
     inkscape:cy="355.81559"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="true"
     units="px"
     inkscape:snap-bbox="false"
     inkscape:bbox-paths="false"
     inkscape:bbox-nodes="true"
     inkscape:snap-text-baseline="true"
     inkscape:snap-bbox-edge-midpoints="false"
     inkscape:snap-nodes="false"
     inkscape:snap-others="true"
     inkscape:window-width="1600"
     inkscape:window-height="886"
     inkscape:window-x="0"
     inkscape:window-y="0"
     inkscape:window-maximized="0"
     inkscape:snap-center="false"
     inkscape:snap-global="true">
    <inkscape:grid
       type="xygrid"
       id="grid3342"
       spacingx="1"
       spacingy="1"
       enabled="true" />
  </sodipodi:namedview>
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(0,-252.36216)">
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5px;line-height:125%;font-family:Terminus;-inkscape-font-specification:Terminus;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="109.82143"
       y="400.93359"
       id="text3389-7-5"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="109.82143"
         y="400.93359"
         id="tspan3450-8" /><tspan
         sodipodi:role="line"
         x="109.82143"
         y="416.55859"
         id="tspan3405-6-6" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5px;line-height:125%;font-family:Terminus;-inkscape-font-specification:Terminus;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="30"
       y="402.36218"
       id="text3494-4"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="30"
         y="402.36218"
         id="tspan3500-1" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5px;line-height:125%;font-family:Terminus;-inkscape-font-specification:Terminus;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="15.000001"
       y="382.36218"
       id="text3557"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3559"
         x="15.000001"
         y="382.36218" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5px;line-height:125%;font-family:Terminus;-inkscape-font-specification:Terminus;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="15.000001"
       y="377.36218"
       id="text3561"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3563"
         x="15.000001"
         y="377.36218" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5px;line-height:125%;font-family:Terminus;-inkscape-font-specification:Terminus;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="113.875"
       y="423.11218"
       id="text3625"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan3627"
         x="113.875"
         y="423.11218" /></text>
    <g
       id="g4351"
       transform="translate(160,-354.99998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249"
           sodipodi:role="line">R</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251"
         y="731.36218"
         x="212"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="731.36218"
           x="212"
           id="tspan4253"
           sodipodi:role="line">reload this</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255"
           y="739.36218"
           x="212"
           sodipodi:role="line">directory</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5"
         y="755.36218"
         x="198"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="755.36218"
           x="198"
           id="tspan4249-4"
           sodipodi:role="line">r</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4"
         y="755.36218"
         x="209"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-5"
           y="755.36218"
           x="209"
           sodipodi:role="line">:open_with</tspan></text>
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="760.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-4"
         y="776.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="776.36218"
           x="194"
           id="tspan4249-4-8"
           sodipodi:role="line">^R</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-4"
         y="769.36218"
         x="225"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-5-4"
           y="769.36218"
           x="225"
           sodipodi:role="line">reset</tspan><tspan
           id="tspan4349"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="777.36218"
           x="225"
           sodipodi:role="line">ranger</tspan></text>
    </g>
    <g
       id="g4351-0"
       transform="translate(75.000001,-354.99998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-7"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249-3"
           sodipodi:role="line">E</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5"
         y="735.36218"
         x="212"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.36218"
           x="212"
           sodipodi:role="line"
           id="tspan4438">edit</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2"
         y="755.36218"
         x="198"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="755.36218"
           x="198"
           id="tspan4249-4-89"
           sodipodi:role="line">e</tspan></text>
    </g>
    <g
       id="g4738"
       transform="translate(10.000001,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2"
           sodipodi:role="line">W</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3"
         y="670.36218"
         x="196.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="670.36218"
           x="196.04492"
           sodipodi:role="line"
           id="tspan4438-4">show log</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3"
           sodipodi:role="line">w</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481"
         y="685.06042"
         x="190.96582"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="685.06042"
           x="190.96582"
           id="tspan4483"
           sodipodi:role="line">show back-</tspan><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485"
           y="694.56042"
           x="190.96582"
           sodipodi:role="line">ground tasks</tspan></text>
    </g>
    <g
       id="g4556"
       transform="translate(-71.999999,-334.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4"
           sodipodi:role="line">Q</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3"
         y="714.86218"
         x="193.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.86218"
           x="193.04492"
           sodipodi:role="line"
           id="tspan4438-4-3">quit</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5"
           sodipodi:role="line">q</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528"
           sodipodi:role="line">close tab</tspan></text>
    </g>
    <g
       id="g4556-1"
       transform="translate(-167,-334.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094201e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="89"
         id="rect4230-7-3-5-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094201e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="89"
         id="rect4230-1-8-4-1-3"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-8"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-5"
           sodipodi:role="line">TAB</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-9"
         y="714.86218"
         x="206.1264"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.86218"
           x="206.1264"
           sodipodi:role="line"
           id="tspan4438-4-3-0">prev. tab</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-4"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-2"
           sodipodi:role="line">tab</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-1"
         y="733.61218"
         x="207.52602"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="207.52602"
           id="tspan4528-9"
           sodipodi:role="line">next tab</tspan></text>
    </g>
    <g
       transform="translate(-170,-339.99998)"
       id="g4738-5">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-8"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-3"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-8"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-2"
           sodipodi:role="line">~</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-6"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-3"
           sodipodi:role="line">`</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-7"
         y="685.06042"
         x="190.96582"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-4"
           y="685.06042"
           x="190.96582"
           sodipodi:role="line">open</tspan><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="694.56042"
           x="190.96582"
           sodipodi:role="line"
           id="tspan4801">bookmarks</tspan></text>
    </g>
    <g
       id="g4556-7"
       transform="translate(-81.999999,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7"
           sodipodi:role="line">!</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3"
         y="714.86218"
         x="193.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.86218"
           x="193.04492"
           sodipodi:role="line"
           id="tspan4438-4-3-9">:shell</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8"
           sodipodi:role="line">1</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-7"
       transform="translate(-167,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6"
           sodipodi:role="line">ESC</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8"
         y="715.56927"
         x="214.25812"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="715.56927"
           x="214.25812"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8">abort</tspan></text>
    </g>
    <g
       id="g4738-2"
       transform="translate(265,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-55"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-6"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-0"
           sodipodi:role="line">T</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-8"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-35"
           sodipodi:role="line">t</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8"
         y="688.66077"
         x="196.1452"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9"
           y="688.66077"
           x="196.1452"
           sodipodi:role="line">tag files</tspan></text>
    </g>
    <g
       id="g4738-2-1"
       transform="translate(350,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-55-8"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-2-0"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-6-0"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-0-5"
           sodipodi:role="line">Y</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-8-2"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-35-2"
           sodipodi:role="line">y</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8-2"
         y="688.66077"
         x="196.1452"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9-9"
           y="688.66077"
           x="196.1452"
           sodipodi:role="line">yank <tspan
   style="font-weight:bold"
   id="tspan5694">(3)</tspan></tspan></text>
    </g>
    <g
       id="g4738-2-1-0"
       transform="translate(435,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-55-8-4"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-2-0-8"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-6-0-7"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-0-5-5"
           sodipodi:role="line">U</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-8-2-3"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-35-2-6"
           sodipodi:role="line">u</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8-2-4"
         y="688.66077"
         x="196.1452"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9-9-3"
           y="688.66077"
           x="196.1452"
           sodipodi:role="line">undo</tspan></text>
    </g>
    <rect
       ry="1.02696e-15"
       rx="2.1094199e-15"
       y="405.86218"
       x="610.5"
       height="18.999977"
       width="79"
       id="rect4230-1-2-6"
       style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
    <text
       sodipodi:linespacing="125%"
       id="text4247-5-4-7"
       y="421.36218"
       x="609"
       style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       xml:space="preserve"><tspan
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
         y="421.36218"
         x="609"
         id="tspan4249-4-8-2"
         sodipodi:role="line">^U</tspan></text>
    <text
       sodipodi:linespacing="85.000002%"
       id="text4251-4-4-7"
       y="413.37311"
       x="637.50079"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:85.00000238%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       xml:space="preserve"><tspan
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:85.00000238%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
         id="tspan4255-5-4-0"
         y="413.37311"
         x="637.50079"
         sodipodi:role="line">move up</tspan><tspan
         id="tspan4349-5"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:85.00000238%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
         y="421.87311"
         x="637.50079"
         sodipodi:role="line">half page</tspan></text>
    <g
       id="g4738-2-2"
       transform="translate(520,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-55-3"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-2-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-6-8"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-0-0"
           sodipodi:role="line">I</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-8-9"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-35-4"
           sodipodi:role="line">i</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8-8"
         y="689.07593"
         x="189.05762"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9-6"
           y="689.07593"
           x="189.05762"
           sodipodi:role="line">inspect file</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8-8-6"
         y="665.63434"
         x="186.24113"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9-6-6"
           y="665.63434"
           x="186.24113"
           sodipodi:role="line">:rename</tspan><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="675.13434"
           x="186.24113"
           sodipodi:role="line"
           id="tspan5970">(insert)</tspan></text>
    </g>
    <g
       id="g4738-2-1-9"
       transform="translate(605,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-55-8-5"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-2-0-87"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-6-0-5"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-0-5-9"
           sodipodi:role="line">O</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-8-2-8"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-35-2-1"
           sodipodi:role="line">o</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8-2-3"
         y="688.66077"
         x="196.1452"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9-9-7"
           y="688.66077"
           x="196.1452"
           sodipodi:role="line">sort</tspan></text>
    </g>
    <g
       id="g4738-2-1-9-7"
       transform="translate(690,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-55-8-5-0"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-2-0-87-3"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-6-0-5-4"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-0-5-9-0"
           sodipodi:role="line">P</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-8-2-8-3"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-35-2-1-1"
           sodipodi:role="line">p</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-8-2-3-0"
         y="688.66077"
         x="196.1452"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-9-9-7-8"
           y="688.66077"
           x="196.1452"
           sodipodi:role="line">paste<tspan
   style="font-weight:bold"
   id="tspan5696"> (3)</tspan></tspan></text>
    </g>
    <g
       id="g4738-3"
       transform="translate(775,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-9"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-34"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-0"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-6"
           sodipodi:role="line">{</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-43"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-52"
           sodipodi:role="line">[</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-1"
         y="685.06042"
         x="190.96582"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-94"
           y="685.06042"
           x="190.96582"
           sodipodi:role="line">move up in</tspan><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="694.56042"
           x="190.96582"
           sodipodi:role="line"
           id="tspan5394">parent dir</tspan></text>
    </g>
    <g
       id="g4738-3-3"
       transform="translate(860,-289.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-9-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-34-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-0-7"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-6-7"
           sodipodi:role="line">}</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-1-5"
         y="666.86218"
         x="189.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="666.86218"
           x="189.04492"
           sodipodi:role="line"
           id="tspan4438-4-6-4">traverse sub-</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="674.86218"
           x="189.04492"
           sodipodi:role="line"
           id="tspan7378">directories</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-43-7"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-52-9"
           sodipodi:role="line">]</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-1-6"
         y="685.06042"
         x="190.96582"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-94-4"
           y="685.06042"
           x="190.96582"
           sodipodi:role="line">move down</tspan><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="694.56042"
           x="190.96582"
           sodipodi:role="line"
           id="tspan5398">in parent dir</tspan></text>
    </g>
    <g
       id="g4556-7-5"
       transform="translate(3.000001,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3"
           sodipodi:role="line">@</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-7"
         y="714.86218"
         x="193.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.86218"
           x="193.04492"
           sodipodi:role="line"
           id="tspan4438-4-3-9-7">:shell  %s</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8"
           sodipodi:role="line">2</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8"
       transform="translate(88.000001,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3"
           sodipodi:role="line">#</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-7-9"
         y="714.86218"
         x="193.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.86218"
           x="193.04492"
           sodipodi:role="line"
           id="tspan4438-4-3-9-7-0">:shell -p</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4"
           sodipodi:role="line">3</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3"
       transform="translate(173,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2"
           sodipodi:role="line">$</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7"
           sodipodi:role="line">4</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2"
       transform="translate(258,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6"
           sodipodi:role="line">%</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0"
           sodipodi:role="line">5</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2-4"
       transform="translate(343,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7-8"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1-0"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6-3"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6-5"
           sodipodi:role="line">^</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1-7"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0-4"
           sodipodi:role="line">6</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7-6"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7-1"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2-4-8"
       transform="translate(428,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7-8-5"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1-0-7"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6-3-2"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6-5-3"
           sodipodi:role="line">&amp;</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1-7-9"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0-4-3"
           sodipodi:role="line">7</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7-6-6"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7-1-9"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2-4-8-3"
       transform="translate(513,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7-8-5-4"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1-0-7-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6-3-2-3"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6-5-3-1"
           sodipodi:role="line">*</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1-7-9-5"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0-4-3-9"
           sodipodi:role="line">8</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7-6-6-2"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7-1-9-1"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2-4-8-3-1"
       transform="translate(598,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7-8-5-4-8"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1-0-7-4-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6-3-2-3-1"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6-5-3-1-4"
           sodipodi:role="line">(</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1-7-9-5-8"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0-4-3-9-7"
           sodipodi:role="line">9</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7-6-6-2-3"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7-1-9-1-9"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2-4-8-3-1-6"
       transform="translate(683,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7-8-5-4-8-3"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1-0-7-4-9-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6-3-2-3-1-7"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6-5-3-1-4-4"
           sodipodi:role="line">)</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1-7-9-5-8-1"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0-4-3-9-7-4"
           sodipodi:role="line">0</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7-6-6-2-3-2"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7-1-9-1-9-7"
           sodipodi:role="line">(1)</tspan></text>
    </g>
    <g
       id="g4556-7-5-8-3-2-4-8-3-1-6-0"
       transform="translate(768,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-7-8-5-4-8-3-7"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-1-0-7-4-9-2-2"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-6-3-2-3-1-7-4"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-2-6-5-3-1-4-4-9"
           sodipodi:role="line">_</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-1-7-9-5-8-1-0"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-7-0-4-3-9-7-4-9"
           sodipodi:role="line">-</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-1-7-6-6-2-3-2-8"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-8-7-1-9-1-9-7-5"
           sodipodi:role="line">chmod <tspan
   style="font-weight:bold"
   id="tspan5656">(2)</tspan></tspan></text>
    </g>
    <g
       id="g4556-7-5-8-5"
       transform="translate(853,-384.49998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-2"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-5"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-1"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-3-3-7"
           sodipodi:role="line">+</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-7-9-8"
         y="714.86218"
         x="193.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.86218"
           x="193.04492"
           sodipodi:role="line"
           id="tspan4438-4-3-9-7-0-6">chmod <tspan
   style="font-weight:bold"
   id="tspan5670">(2)</tspan></tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-2"
         y="734.86218"
         x="175"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="734.86218"
           x="175"
           id="tspan4249-4-89-3-5-8-8-4-79"
           sodipodi:role="line">=</tspan></text>
      <text
         sodipodi:linespacing="100%"
         id="text4526-0-9-7-5"
         y="733.61218"
         x="192.5"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:100%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="733.61218"
           x="192.5"
           id="tspan4528-7-2-8-5"
           sodipodi:role="line">chmod <tspan
   style="font-weight:bold"
   id="tspan5672">(2)</tspan></tspan></text>
    </g>
    <g
       id="g4556-6"
       transform="translate(-61.999999,-264.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3"
           sodipodi:role="line">A</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-93"
         y="709.99292"
         x="189.2018"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="709.99292"
           x="189.2018"
           sodipodi:role="line"
           id="tspan4438-4-3-8">:rename</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="717.99292"
           x="189.2018"
           sodipodi:role="line"
           id="tspan5972">(append)</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1"
           sodipodi:role="line">a</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-3"
         y="729.58484"
         x="182.25195"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="729.58484"
           x="182.25195"
           id="tspan4528-1"
           sodipodi:role="line">:rename (skip</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="738.58484"
           x="182.25195"
           sodipodi:role="line"
           id="tspan5974">extension)</tspan></text>
    </g>
    <g
       id="g4556-6-4"
       transform="translate(23.000001,-264.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-5"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-8"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-2"
           sodipodi:role="line">S</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-93-9"
         y="714.7821"
         x="189.2018"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="189.2018"
           sodipodi:role="line"
           id="tspan5972-0">open shell</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-7"
         y="735.26306"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="174"
           id="tspan4249-4-89-3-5-1-5"
           sodipodi:role="line">s</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-3-6"
         y="733.64185"
         x="200.22961"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;writing-mode:lr-tb;text-anchor:middle"
           y="733.64185"
           x="200.22961"
           sodipodi:role="line"
           id="tspan5974-0">:shell</tspan></text>
    </g>
    <g
       id="g4351-5"
       transform="translate(85.000001,-284.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-9"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="760.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-2-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-1"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-2"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249-1"
           sodipodi:role="line">D</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-7"
         y="755.36218"
         x="198"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="755.36218"
           x="198"
           id="tspan4249-4-5"
           sodipodi:role="line">d</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-6"
         y="755.00378"
         x="214.44824"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-5-9"
           y="755.00378"
           x="214.44824"
           sodipodi:role="line">cut <tspan
   style="font-weight:bold"
   id="tspan5698">(3)</tspan></tspan></text>
      <text
         sodipodi:linespacing="91.000003%"
         id="text4251-4-4-4"
         y="768.95984"
         x="217.3418"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           id="tspan4349-8"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="768.95984"
           x="217.3418"
           sodipodi:role="line">move down</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="778.05981"
           x="217.3418"
           sodipodi:role="line"
           id="tspan6144">half page</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-7-3"
         y="776.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="776.36218"
           x="194"
           id="tspan4249-4-5-6"
           sodipodi:role="line">^D</tspan></text>
    </g>
    <g
       id="g4351-5-2"
       transform="translate(170,-284.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-9-3"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-1-6"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-2-8"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249-1-9"
           sodipodi:role="line">F</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-7-6"
         y="755.36218"
         x="198"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="755.36218"
           x="198"
           id="tspan4249-4-5-5"
           sodipodi:role="line">f</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-6-6"
         y="755.00378"
         x="214.44824"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-5-9-6"
           y="755.00378"
           x="214.44824"
           sodipodi:role="line">:find</tspan></text>
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="760.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-2-4-6"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-4-6-8"
         y="776.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="776.36218"
           x="194"
           id="tspan4249-4-8-1-9"
           sodipodi:role="line">^F</tspan></text>
      <text
         sodipodi:linespacing="91.000003%"
         id="text4251-4-4-4-1"
         y="768.95984"
         x="217.3418"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           id="tspan4349-8-6"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="768.95984"
           x="217.3418"
           sodipodi:role="line">move down</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="778.05981"
           x="217.3418"
           sodipodi:role="line"
           id="tspan6144-1">1 page</tspan></text>
    </g>
    <g
       id="g4738-4"
       transform="translate(275,-219.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-84"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-4"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-02"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-3"
           sodipodi:role="line">G</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-5"
         y="670.36218"
         x="196.04492"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="670.36218"
           x="196.04492"
           sodipodi:role="line"
           id="tspan4438-4-1">go to top</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-2"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-2"
           sodipodi:role="line">g</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-73"
         y="690.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-0"
           y="690.36218"
           x="194"
           sodipodi:role="line">:cd ... (4)</tspan></text>
    </g>
    <g
       id="g4351-3"
       transform="translate(340,-284.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-3"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-0"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249-8"
           sodipodi:role="line">H</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-2"
         y="731.36218"
         x="212"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-50"
           y="731.36218"
           x="212"
           sodipodi:role="line">back in</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="739.36218"
           x="212"
           sodipodi:role="line"
           id="tspan6330">history</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-73"
         y="755.36218"
         x="198"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="755.36218"
           x="198"
           id="tspan4249-4-0"
           sodipodi:role="line">h</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-8"
         y="750.11218"
         x="212.75"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-5-5"
           y="750.11218"
           x="212.75"
           sodipodi:role="line">go up 1</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="758.11218"
           x="212.75"
           sodipodi:role="line"
           id="tspan6332">directory</tspan></text>
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="760.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-2-69"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-4-9"
         y="776.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="776.36218"
           x="194"
           id="tspan4249-4-8-6"
           sodipodi:role="line">^H</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-4-6"
         y="770.36218"
         x="219.5"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           id="tspan4349-7"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="770.36218"
           x="219.5"
           sodipodi:role="line">toggle</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="778.36218"
           x="219.5"
           sodipodi:role="line"
           id="tspan6336">hidden files</tspan></text>
    </g>
    <g
       id="g4738-4-0"
       transform="translate(445,-219.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-84-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-4-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-02-2"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-3-6"
           sodipodi:role="line">J</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4251-5-3-5-8"
         y="665.76593"
         x="190.38808"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="665.76593"
           x="190.38808"
           sodipodi:role="line"
           id="tspan4438-4-1-8">move down</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="674.76593"
           x="190.38808"
           sodipodi:role="line"
           id="tspan6383">half page</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-2-4"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-2-8"
           sodipodi:role="line">j</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-73-3"
         y="689.44434"
         x="189.77496"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-0-4"
           y="689.44434"
           x="189.77496"
           sodipodi:role="line">move down</tspan></text>
    </g>
    <g
       id="g4738-4-0-3"
       transform="translate(530,-219.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-84-4-5"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-4-1-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-02-2-5"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-3-6-4"
           sodipodi:role="line">K</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4251-5-3-5-8-9"
         y="665.76593"
         x="190.38808"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="665.76593"
           x="190.38808"
           sodipodi:role="line"
           id="tspan4438-4-1-8-7">move up</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="674.76593"
           x="190.38808"
           sodipodi:role="line"
           id="tspan6383-3">half page</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-2-4-3"
         y="690.36218"
         x="178"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="690.36218"
           x="178"
           id="tspan4249-4-89-3-2-8-8"
           sodipodi:role="line">k</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-73-3-1"
         y="689.44434"
         x="189.77496"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-0-4-8"
           y="689.44434"
           x="189.77496"
           sodipodi:role="line">move up</tspan></text>
    </g>
    <g
       id="g4351-3-3"
       transform="translate(595,-284.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-8-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-3-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-0-7"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249-8-0"
           sodipodi:role="line">L</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-2-5"
         y="731.36218"
         x="212"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           id="tspan4255-50-2"
           y="731.36218"
           x="212"
           sodipodi:role="line">forward in</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="739.36218"
           x="212"
           sodipodi:role="line"
           id="tspan6330-3">history</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-73-1"
         y="755.36218"
         x="198"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="755.36218"
           x="198"
           id="tspan4249-4-0-6"
           sodipodi:role="line">l</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-8-1"
         y="750.11218"
         x="212.75"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="750.11218"
           x="212.75"
           sodipodi:role="line"
           id="tspan6332-6">enter dir/</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="758.11218"
           x="212.75"
           sodipodi:role="line"
           id="tspan6574">open file</tspan></text>
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="760.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-2-69-0"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-4-9-0"
         y="776.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="776.36218"
           x="194"
           id="tspan4249-4-8-6-9"
           sodipodi:role="line">^L</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-4-4-6-8"
         y="773.11218"
         x="222.75"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="773.11218"
           x="222.75"
           sodipodi:role="line"
           id="tspan6336-9">redraw</tspan></text>
    </g>
    <rect
       style="fill:none;fill-opacity:1;stroke:#008000;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="rect6576"
       width="340.00003"
       height="64.749977"
       x="532.5"
       y="433.86218"
       rx="5.0000005"
       ry="5" />
    <g
       id="g4738-4-8"
       transform="translate(700,-219.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-84-5"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-4-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-02-0"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-3-5"
           sodipodi:role="line">:</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-5-7"
         y="670.36218"
         x="190"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="670.36218"
           x="190"
           sodipodi:role="line"
           id="tspan4438-4-1-4">console</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-2-8"
         y="691.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="691.36218"
           x="177"
           id="tspan4249-4-89-3-2-1"
           sodipodi:role="line">;</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-73-9"
         y="689.36218"
         x="190"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-0-9"
           y="689.36218"
           x="190"
           sodipodi:role="line">console</tspan></text>
    </g>
    <g
       id="g4738-4-8-3"
       transform="translate(785,-219.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-84-5-7"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-4-9-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-02-0-8"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-3-5-1"
           sodipodi:role="line">'</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-5-7-7"
         y="665.76599"
         x="190.17677"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="665.76599"
           x="190.17677"
           sodipodi:role="line"
           id="tspan4438-4-1-4-1">open</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="673.76599"
           x="190.17677"
           sodipodi:role="line"
           id="tspan7470">bookmarks</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-2-8-9"
         y="691.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="691.36218"
           x="177"
           id="tspan4249-4-89-3-2-1-8"
           sodipodi:role="line">&quot;</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-73-9-0"
         y="685.11957"
         x="188.58578"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="685.11957"
           x="188.58578"
           sodipodi:role="line"
           id="tspan7472">tag files with</tspan><tspan
           style="font-size:10px;line-height:94.99999881%"
           y="694.61957"
           x="188.58578"
           sodipodi:role="line"
           id="tspan7476">custom tag</tspan></text>
    </g>
    <g
       id="g4556-7-7-8"
       transform="translate(-167,-264.49993)">
      <rect
         ry="1.02696e-15"
         rx="2.1094201e-15"
         y="702.36212"
         x="172.5"
         height="38.000061"
         width="99"
         id="rect4230-7-3-5-6-4-0"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-6"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-9"
           sodipodi:role="line">CAPSLOCK</tspan></text>
    </g>
    <g
       id="g4556-7-7-8-4"
       transform="translate(-167,-194.49993)">
      <rect
         ry="1.02696e-15"
         rx="2.1094201e-15"
         y="702.36212"
         x="172.5"
         height="38.000061"
         width="109"
         id="rect4230-7-3-5-6-4-0-0"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-6-8"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-9-2"
           sodipodi:role="line">SHIFT</tspan></text>
    </g>
    <g
       id="g4556-6-8"
       transform="translate(-51.999999,-194.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-6"
           sodipodi:role="line">Z</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-93-8"
         y="714.11792"
         x="217.70912"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;writing-mode:lr-tb;text-anchor:middle"
           y="714.11792"
           x="217.70912"
           sodipodi:role="line"
           id="tspan5972-7">ZZ/ZQ = quit</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1-4"
           sodipodi:role="line">z</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-3-0"
         y="729.45984"
         x="185.12695"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="729.45984"
           x="185.12695"
           sodipodi:role="line"
           id="tspan5974-6">toggle</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="738.45984"
           x="185.12695"
           sodipodi:role="line"
           id="tspan7587">options</tspan></text>
    </g>
    <g
       id="g4556-6-8-1"
       transform="translate(33.000001,-194.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7-0"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4-3"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5-2"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-6-9"
           sodipodi:role="line">X</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8-7"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1-4-3"
           sodipodi:role="line">x</tspan></text>
    </g>
    <g
       id="g7774"
       transform="translate(10.000001,-249.99997)">
      <rect
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1"
         id="rect4230-1-8-4-1-8-8-9-8-15-4"
         width="79"
         height="18.999977"
         x="280.5"
         y="795.86218"
         rx="2.1094199e-15"
         ry="1.02696e-15" />
      <text
         xml:space="preserve"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         x="200"
         y="841.36218"
         id="text4247-5-4-6"
         sodipodi:linespacing="125%"
         transform="translate(80,-30.00002)"><tspan
           sodipodi:role="line"
           id="tspan4249-4-8-1"
           x="200"
           y="841.36218"
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start">^C</tspan></text>
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="757.86218"
         x="280.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-0-4-5-9"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="776.86218"
         x="280.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-8-8-9-8-15"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-5-0-3-2"
         y="772.36218"
         x="282"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="772.36218"
           x="282"
           id="tspan4249-3-2-4-7-3-3-2-8"
           sodipodi:role="line">C</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-45-7-6-8-5"
         y="790.36218"
         x="283"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="790.36218"
           x="283"
           id="tspan4249-4-89-3-5-8-8-4-7-8"
           sodipodi:role="line">c</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-0-9-7-1-1"
         y="785.49017"
         x="293.1795"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="785.49017"
           x="293.1795"
           sodipodi:role="line"
           id="tspan7709">select files in</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="794.49017"
           x="293.1795"
           sodipodi:role="line"
           id="tspan7713">certain order</tspan></text>
      <text
         xml:space="preserve"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         x="306"
         y="808.36218"
         id="text4526-0-9-7-1-1-4"
         sodipodi:linespacing="89.999998%"><tspan
           id="tspan7713-9"
           sodipodi:role="line"
           x="306"
           y="808.36218"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start">abort task</tspan></text>
    </g>
    <g
       id="g4556-6-8-8"
       transform="translate(203,-194.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7-5"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5-3"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-6-2"
           sodipodi:role="line">V</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-93-8-6"
         y="714.45984"
         x="186.8291"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.45984"
           x="186.8291"
           sodipodi:role="line"
           id="tspan5972-7-1">visual mode</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8-0"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1-4-0"
           sodipodi:role="line">v</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-3-0-4"
         y="730.20984"
         x="186.75195"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="730.20984"
           x="186.75195"
           sodipodi:role="line"
           id="tspan7587-9">invert</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="739.20984"
           x="186.75195"
           sodipodi:role="line"
           id="tspan7840">selection</tspan></text>
    </g>
    <g
       id="g4351-5-2-8"
       transform="translate(265,-214.99999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="722.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-9-3-8"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="741.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-1-6-1"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-2-8-2"
         y="737.36218"
         x="197"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="737.36218"
           x="197"
           id="tspan4249-1-9-0"
           sodipodi:role="line">B</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-7-6-8"
         y="756.14978"
         x="196.93652"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="756.14978"
           x="196.93652"
           id="tspan4249-4-5-5-3"
           sodipodi:role="line">b</tspan></text>
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="760.86218"
         x="195.5"
         height="18.999977"
         width="79"
         id="rect4230-1-2-4-6-5"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-4-6-8-2"
         y="776.36218"
         x="194"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="776.36218"
           x="194"
           id="tspan4249-4-8-1-9-0"
           sodipodi:role="line">^B</tspan></text>
      <text
         sodipodi:linespacing="91.000003%"
         id="text4251-4-4-4-1-6"
         y="768.70984"
         x="221.5918"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="768.70984"
           x="221.5918"
           sodipodi:role="line"
           id="tspan6144-1-4">move up</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="777.80981"
           x="221.5918"
           sodipodi:role="line"
           id="tspan7901">1 page</tspan></text>
    </g>
    <g
       id="g8034"
       transform="translate(10.000001,-249.99997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="757.86218"
         x="535.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7-5-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="776.86218"
         x="535.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4-2-0"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5-3-2"
         y="772.36218"
         x="537"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="772.36218"
           x="537"
           id="tspan4249-3-2-4-3-6-2-7"
           sodipodi:role="line">N</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-93-8-6-5"
         y="765.95984"
         x="550.9541"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="765.95984"
           x="550.9541"
           sodipodi:role="line"
           id="tspan5972-7-1-4">search</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="773.95984"
           x="550.9541"
           sodipodi:role="line"
           id="tspan7953">previous</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8-0-1"
         y="791.36218"
         x="537"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="791.36218"
           x="537"
           id="tspan4249-4-89-3-5-1-4-0-0"
           sodipodi:role="line">n</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-3-0-4-2"
         y="789.70984"
         x="550.37695"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="789.70984"
           x="550.37695"
           sodipodi:role="line"
           id="tspan7840-0">search next</tspan></text>
      <rect
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1"
         id="rect4230-1-8-4-1-88-4-2-0-3"
         width="79"
         height="18.999977"
         x="535.5"
         y="795.86218"
         rx="2.1094199e-15"
         ry="1.02696e-15" />
      <text
         xml:space="preserve"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         x="533.48389"
         y="811.29724"
         id="text4247-5-4-6-8-2-1"
         sodipodi:linespacing="125%"><tspan
           sodipodi:role="line"
           id="tspan4249-4-8-1-9-0-5"
           x="533.48389"
           y="811.29724"
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start">^N</tspan></text>
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         x="562.27344"
         y="808.22058"
         id="text4251-4-4-4-1-6-1"
         sodipodi:linespacing="91.000003%"><tspan
           id="tspan7901-9"
           sodipodi:role="line"
           x="562.27344"
           y="808.22058"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:91.00000262%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start">new tab</tspan></text>
    </g>
    <g
       id="g4556-6-8-8-6"
       transform="translate(458,-194.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7-5-2"
         style="fill:#ff7f2a;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4-2-3"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5-3-8"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-6-2-8"
           sodipodi:role="line">M</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-93-8-6-8"
         y="711.45984"
         x="188.8291"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="711.45984"
           x="188.8291"
           sodipodi:role="line"
           id="tspan8112">change<tspan
   style="font-weight:bold"
   id="tspan5886"> (4)</tspan></tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="719.45984"
           x="188.8291"
           sodipodi:role="line"
           id="tspan5884">linemode</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8-0-7"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1-4-0-6"
           sodipodi:role="line">m</tspan></text>
      <text
         sodipodi:linespacing="89.999998%"
         id="text4526-3-0-4-3"
         y="729.20984"
         x="189.00195"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:89.99999762%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="729.20984"
           x="189.00195"
           sodipodi:role="line"
           id="tspan7840-2">save</tspan><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:89.99999762%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="738.20984"
           x="189.00195"
           sodipodi:role="line"
           id="tspan8102">bookmark</tspan></text>
    </g>
    <g
       id="g4556-6-8-1-9"
       transform="translate(543,-194.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7-0-7"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4-3-4"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5-2-2"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-6-9-1"
           sodipodi:role="line">&lt;</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8-7-6"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1-4-3-5"
           sodipodi:role="line">,</tspan></text>
    </g>
    <g
       id="g4556-6-8-1-9-0"
       transform="translate(628,-194.49999)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-83-7-0-7-1"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="721.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-1-88-4-3-4-9"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-2-5-2-2-9"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-3-6-9-1-6"
           sodipodi:role="line">&gt;</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-4-2-8-7-6-4"
         y="735.26306"
         x="173.05713"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="735.26306"
           x="173.05713"
           id="tspan4249-4-89-3-5-1-4-3-5-2"
           sodipodi:role="line">.</tspan></text>
    </g>
    <g
       id="g4738-4-8-1"
       transform="translate(710,-149.99998)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="657.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-84-5-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="676.86218"
         x="175.5"
         height="18.999977"
         width="79"
         id="rect4230-1-8-4-4-9-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-02-0-2"
         y="672.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="672.36218"
           x="177"
           id="tspan4249-3-2-3-5-6"
           sodipodi:role="line">?</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-5-7-2"
         y="670.36218"
         x="190"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="670.36218"
           x="190"
           sodipodi:role="line"
           id="tspan4438-4-1-4-5">show help</tspan></text>
      <text
         sodipodi:linespacing="125%"
         id="text4247-5-2-9-2-8-5"
         y="691.36218"
         x="177"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="691.36218"
           x="177"
           id="tspan4249-4-89-3-2-1-2"
           sodipodi:role="line">/</tspan></text>
      <text
         sodipodi:linespacing="94.999999%"
         id="text4481-73-9-3"
         y="689.36218"
         x="190"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:94.99999881%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-size:10px;line-height:94.99999881%"
           id="tspan4485-0-9-1"
           y="689.36218"
           x="190"
           sodipodi:role="line">:search</tspan></text>
    </g>
    <g
       id="g4556-7-7-5"
       transform="translate(-81.999999,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8"
           sodipodi:role="line">F1</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9"
         y="714.45984"
         x="201.0918"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.45984"
           x="201.0918"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2">help</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0"
       transform="translate(88.000001,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2"
           sodipodi:role="line">F3</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2"
         y="714.7821"
         x="196.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="196.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2">inspect file</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0-9"
       transform="translate(173,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6-5"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2-0"
           sodipodi:role="line">F4</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2-3"
         y="714.7821"
         x="196.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="196.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2-1">edit</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0-9-4"
       transform="translate(258,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8-4-7"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6-5-4"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2-0-2"
           sodipodi:role="line">F5</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2-3-7"
         y="714.7821"
         x="196.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="196.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2-1-9">copy</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0-9-4-9"
       transform="translate(343,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8-4-7-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6-5-4-4"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2-0-2-6"
           sodipodi:role="line">F6</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2-3-7-3"
         y="714.7821"
         x="196.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="196.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2-1-9-0">cut</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0-9-4-9-7"
       transform="translate(428,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8-4-7-9-9"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6-5-4-4-2"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2-0-2-6-5"
           sodipodi:role="line">F7</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2-3-7-3-9"
         y="714.7821"
         x="196.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="196.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2-1-9-0-1">:mkdir</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0-9-4-9-7-9"
       transform="translate(513,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8-4-7-9-9-1"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6-5-4-4-2-2"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2-0-2-6-5-5"
           sodipodi:role="line">F8</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2-3-7-3-9-3"
         y="714.7821"
         x="196.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.7821"
           x="196.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2-1-9-0-1-4">:delete</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-0-9-4-9-7-9-9"
       transform="translate(683,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-8-4-7-9-9-1-4"
         style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-6-5-4-4-2-2-8"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-2-0-2-6-5-5-6"
           sodipodi:role="line">F10</tspan></text>
      <text
         sodipodi:linespacing="80.000001%"
         id="text4251-5-3-3-3-8-9-2-3-7-3-9-3-6"
         y="714.9071"
         x="210.05762"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:80.00000119%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="714.9071"
           x="210.05762"
           sodipodi:role="line"
           id="tspan4438-4-3-9-8-2-2-1-9-0-1-4-3">quit</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-9"
       transform="translate(3.000001,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-1"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-0"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-4"
           sodipodi:role="line">F2</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-9-2"
       transform="translate(598,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-1-2"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-0-9"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-4-0"
           sodipodi:role="line">F9</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-9-2-3"
       transform="translate(768,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-1-2-2"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-0-9-7"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-4-0-4"
           sodipodi:role="line">F11</tspan></text>
    </g>
    <g
       id="g4556-7-7-5-9-2-3-5"
       transform="translate(853,-414.49997)">
      <rect
         ry="1.02696e-15"
         rx="2.1094199e-15"
         y="702.36218"
         x="172.5"
         height="18.999977"
         width="79"
         id="rect4230-7-3-5-6-4-2-1-2-2-9"
         style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-opacity:1" />
      <text
         sodipodi:linespacing="125%"
         id="text4247-6-2-5-4-1-8-0-9-7-6"
         y="716.86218"
         x="174"
         style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
           y="716.86218"
           x="174"
           id="tspan4249-3-2-4-7-6-8-4-0-4-7"
           sodipodi:role="line">F12</tspan></text>
    </g>
    <text
       sodipodi:linespacing="125%"
       id="text4247-6-2-5-4-1-0"
       y="272.55746"
       x="3.3203125"
       style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       xml:space="preserve"><tspan
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
         y="272.55746"
         x="3.3203125"
         id="tspan4249-3-2-4-7-6-3"
         sodipodi:role="line">ranger cheatsheet</tspan></text>
    <a
       id="a5535"
       xlink:href="http://ranger.nongnu.org"
       style="fill:#0000ff"
       transform="translate(10,-296.00002)">
      <text
         xml:space="preserve"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         x="230"
         y="567.36218"
         id="text4251-5-3-3-3-8-9-2-7"
         sodipodi:linespacing="100%"><tspan
           id="tspan5498"
           sodipodi:role="line"
           x="230"
           y="567.36218"
           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:100%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#0000ff">http://ranger.nongnu.org</tspan></text>
    </a>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="455.53467"
       y="271.36209"
       id="text5523"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan5525"
         x="455.53467"
         y="271.36209"
         style="font-size:15px">git clone</tspan></text>
    <a
       id="a5531"
       xlink:href="https://github.com/hut/ranger"
       style="fill:#0000ff"
       transform="translate(241,-306.00002)">
      <text
         sodipodi:linespacing="125%"
         id="text5527"
         y="577.36218"
         x="280"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         xml:space="preserve"><tspan
           y="577.36218"
           x="280"
           id="tspan5529"
           sodipodi:role="line"
           style="font-size:15px">https://github.com/hut/ranger</tspan></text>
    </a>
    <rect
       style="fill:#b7c8be;fill-opacity:1;stroke:none;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="rect5539"
       width="415"
       height="229.99998"
       x="5.000001"
       y="572.36218"
       rx="2.1094199e-15"
       ry="1.0269599e-15" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="9.5532236"
       y="588.75867"
       id="text5541"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan5543"
         x="9.5532236"
         y="588.75867"
         style="font-weight:bold;font-size:15px">Macros<tspan
   style="font-weight:normal;font-size:15px"
   id="tspan5545"> can be used in commands. They are like global</tspan></tspan><tspan
         sodipodi:role="line"
         x="9.5532236"
         y="607.50867"
         style="font-weight:normal;font-size:15px"
         id="tspan5547">variables which are matched to the current situation. </tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="9.3103037"
       y="626.85925"
       id="text5551"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan5553"
         x="9.3103037"
         y="626.85925"
         style="font-size:12.5px">%f</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="642.48425"
         id="tspan5555"
         style="font-size:12.5px">%d</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="658.10925"
         id="tspan5557"
         style="font-size:12.5px">%s</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="673.73425"
         id="tspan5559"
         style="font-size:12.5px">%t</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="689.35925"
         id="tspan5561"
         style="font-size:12.5px">%c</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="704.98425"
         id="tspan5565"
         style="font-size:12.5px">%any</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="720.60925"
         id="tspan5569"
         style="font-size:12.5px" /><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="736.23425"
         id="tspan5591"
         style="font-size:12.5px">%rangerdir</tspan><tspan
         sodipodi:role="line"
         x="9.3103037"
         y="751.85925"
         id="tspan5571"
         style="font-size:12.5px">%space</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="85.646973"
       y="626.85925"
       id="text5573"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan5575"
         x="85.646973"
         y="626.85925"
         style="font-size:12.5px">The base name of the current file</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="642.48425"
         id="tspan5577"
         style="font-size:12.5px">The path of the current directory</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="658.10925"
         id="tspan5579"
         style="font-size:12.5px">The names of the currently selected files</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="673.73425"
         id="tspan5581"
         style="font-size:12.5px">The names of all tagged files in this directory</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="689.35925"
         id="tspan5583"
         style="font-size:12.5px">The paths of the currently copied files</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="704.98425"
         id="tspan5585"
         style="font-size:12.5px">The key used in a key binding with &quot;&lt;any&gt;&quot;</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="720.60925"
         id="tspan5587"
         style="font-size:12.5px">Example: <tspan
   style="font-style:italic;font-size:12.5px"
   id="tspan5589">map x&lt;any&gt; shell -w echo %any</tspan></tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="736.23425"
         id="tspan5593"
         style="font-size:12.5px">The path to the ranger python module</tspan><tspan
         sodipodi:role="line"
         x="85.646973"
         y="751.85925"
         id="tspan5595"
         style="font-size:12.5px">Just a space, to avoid typing trailing spaces</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="9.5532236"
       y="773.75867"
       id="text5541-0"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="9.5532236"
         y="773.75867"
         style="font-weight:normal;font-size:15px"
         id="tspan5628">Example: <tspan
   style="font-style:italic"
   id="tspan5626">map yp shell echo %d/%f | xsel -i</tspan></tspan><tspan
         sodipodi:role="line"
         x="9.5532236"
         y="792.50867"
         style="font-weight:normal;font-size:15px"
         id="tspan5624">They can be escaped by replacing % with %%.</tspan></text>
    <rect
       style="fill:#dde9af;fill-opacity:1;stroke:none;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="rect5634"
       width="690"
       height="229.99998"
       x="430"
       y="572.36218"
       rx="2.1094199e-15"
       ry="1.02696e-15" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="433.52783"
       y="588.29724"
       id="text5636"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="433.52783"
         y="588.29724"
         style="font-size:15px"
         id="tspan5642">(1) numbers can be used as a quantifier in various commands, for example 5j will move the</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="607.04724"
         style="font-size:15px"
         id="tspan5876">cursor down 5 by lines, 3&lt;space&gt; selects 3 files, 4&lt;TAB&gt; moves you to the 4th tab.</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="625.79724"
         style="font-size:15px"
         id="tspan5674">(2) the keys -, + and = change the permissions of files. See &quot;man chmod&quot;.</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="644.54724"
         style="font-size:15px"
         id="tspan5676"><tspan
   style="font-weight:bold"
   id="tspan5688">    [+-][augo][rwxXst]</tspan> (e.g. <tspan
   style="font-style:italic"
   id="tspan5678">+gw</tspan> means &quot;add write permissions to the group)</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="663.29724"
         style="font-size:15px"
         id="tspan5680"><tspan
   style="font-weight:bold"
   id="tspan5690">    [+-][rwxXst]</tspan> (e.g. <tspan
   style="font-style:italic"
   id="tspan5686">-x</tspan> means &quot;remove execute permissions from everybody&quot;)</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="682.04724"
         style="font-size:15px"
         id="tspan5682"><tspan
   style="font-weight:bold"
   id="tspan5692">    &lt;octal&gt;=</tspan> (e.g. <tspan
   style="font-style:italic"
   id="tspan5684">777=</tspan> means &quot;give full permissions to everybody&quot;)</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="700.79724"
         style="font-size:15px"
         id="tspan5700">(3) yank, copy, paste: To copy files, select them with the cursor (or <tspan
   style="font-weight:bold"
   id="tspan5981">&lt;space&gt;</tspan>, in case of</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="719.54724"
         style="font-size:15px"
         id="tspan5872">multiple files) → type <tspan
   style="font-weight:bold"
   id="tspan5975">dd</tspan> (to cut) or <tspan
   style="font-weight:bold"
   id="tspan5973">yy</tspan> (to copy) → move to the destination → type <tspan
   style="font-weight:bold"
   id="tspan5977">pp</tspan>.</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="738.29724"
         style="font-size:15px"
         id="tspan5710">Type <tspan
   style="font-weight:bold"
   id="tspan5969">da</tspan> (or <tspan
   style="font-weight:bold"
   id="tspan5971">ya</tspan>) to <tspan
   style="font-style:italic"
   id="tspan5979">add</tspan> files to the copy buffer, allowing you to copy from multiple directories.</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="757.04724"
         style="font-size:15px"
         id="tspan5965">(4)<tspan
   style="font-weight:bold"
   id="tspan5967"> M&lt;key&gt;</tspan> changes the &quot;linemode&quot; - the way files are drawn. <tspan
   style="font-weight:bold"
   id="tspan5657">Mf</tspan> draws just the file name,</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="775.79724"
         style="font-size:15px"
         id="tspan5645"><tspan
   style="font-weight:bold"
   id="tspan5647">Mp</tspan> draws permissions, <tspan
   style="font-weight:bold"
   id="tspan5649">Mi</tspan> draws file type information, <tspan
   style="font-weight:bold"
   id="tspan5659">Mt</tspan> draws metadata, as defined with</tspan><tspan
         sodipodi:role="line"
         x="433.52783"
         y="794.54724"
         style="font-size:15px"
         id="tspan5989">the <tspan
   style="font-weight:bold"
   id="tspan5655">:meta</tspan> command. Add linemodes like /usr/share/doc/ranger/examples/plugin_linemode.py</tspan></text>
    <rect
       style="fill:#b7c8be;fill-opacity:1;stroke:none;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="rect5539-8"
       width="415"
       height="234.99998"
       x="5.000001"
       y="812.36218"
       rx="2.1094199e-15"
       ry="1.0269599e-15" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="9.5532236"
       y="828.75867"
       id="text5541-5"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         x="9.5532236"
         y="828.75867"
         style="font-weight:bold;font-size:15px"
         id="tspan5756">Config files<tspan
   style="font-weight:normal"
   id="tspan5764">: run &quot;</tspan>ranger --copy-config=all<tspan
   style="font-weight:normal"
   id="tspan5762">&quot; to</tspan></tspan><tspan
         sodipodi:role="line"
         x="9.5532236"
         y="847.50867"
         style="font-weight:normal;font-size:15px"
         id="tspan5772">copy the default config files to ~/.config/ranger/.</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="9.3225098"
       y="871.85925"
       id="text5776"
       sodipodi:linespacing="125%"><tspan
         sodipodi:role="line"
         id="tspan5778"
         x="9.3225098"
         y="871.85925"
         style="font-size:12.5px"><tspan
   style="font-weight:bold"
   id="tspan5782">rc.conf</tspan>: A list of commands that are executed when ranger</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="887.48425"
         style="font-size:12.5px"
         id="tspan5780">starts. Options, key bindings and aliases are found here.</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="903.10925"
         style="font-size:12.5px"
         id="tspan5816">Pro tip: Adding &quot;export RANGER_LOAD_DEFAULT_RC=FALSE&quot; to</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="918.73425"
         style="font-size:12.5px"
         id="tspan5820">your shell rc will skip loading the default rc.conf before your own.</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="934.35925"
         style="font-size:12.5px"
         id="tspan5828"><tspan
   style="font-weight:bold"
   id="tspan5830">commands.py</tspan>: A python script containing custom commands</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="949.98425"
         style="font-size:12.5px"
         id="tspan5836"><tspan
   style="font-weight:bold"
   id="tspan5834">rifle.conf</tspan>: Rules for rifle, the file opener. Each line looks like</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="965.60925"
         style="font-style:italic;font-size:12.5px"
         id="tspan5842">    list of conditions = command</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="981.23425"
         style="font-size:12.5px"
         id="tspan5844">When ranger opens a file, it tests those conditions. The first</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="996.85925"
         style="font-size:12.5px"
         id="tspan5846">command where all conditions are true will be executed.</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="1012.4843"
         style="font-size:12.5px"
         id="tspan5854"><tspan
   style="font-weight:bold"
   id="tspan5856">scope.sh</tspan>: The script that generates file previews.</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="1028.1093"
         style="font-size:12.5px"
         id="tspan5858">Plugins can be put in the <tspan
   style="font-weight:bold"
   id="tspan5860">plugins/ </tspan>subdirectory, colorschemes</tspan><tspan
         sodipodi:role="line"
         x="9.3225098"
         y="1043.7343"
         style="font-size:12.5px"
         id="tspan5864">in<tspan
   style="font-weight:bold"
   id="tspan5866"> colorschemes/</tspan>. See /usr/share/doc/ranger/examples.</tspan></text>
  </g>
</svg>