1[[tests]] 2name = "repetition10" 3options = ['escaped'] 4pattern = '''((..)|(.))''' 5input = '''''' 6matches = [] 7 8[[tests]] 9name = "repetition11" 10options = ['escaped'] 11pattern = '''((..)|(.))((..)|(.))''' 12input = '''''' 13matches = [] 14 15[[tests]] 16name = "repetition12" 17options = ['escaped'] 18pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 19input = '''''' 20matches = [] 21 22[[tests]] 23name = "repetition14" 24options = ['escaped'] 25pattern = '''((..)|(.)){1}''' 26input = '''''' 27matches = [] 28 29[[tests]] 30name = "repetition15" 31options = ['escaped'] 32pattern = '''((..)|(.)){2}''' 33input = '''''' 34matches = [] 35 36[[tests]] 37name = "repetition16" 38options = ['escaped'] 39pattern = '''((..)|(.)){3}''' 40input = '''''' 41matches = [] 42 43[[tests]] 44name = "repetition18" 45options = ['escaped'] 46pattern = '''((..)|(.))*''' 47input = '''''' 48matches = [[0, 0]] 49 50[[tests]] 51name = "repetition20" 52options = ['escaped'] 53pattern = '''((..)|(.))''' 54input = '''a''' 55matches = [[0, 1]] 56 57[[tests]] 58name = "repetition21" 59options = ['escaped'] 60pattern = '''((..)|(.))((..)|(.))''' 61input = '''a''' 62matches = [] 63 64[[tests]] 65name = "repetition22" 66options = ['escaped'] 67pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 68input = '''a''' 69matches = [] 70 71[[tests]] 72name = "repetition24" 73options = ['escaped'] 74pattern = '''((..)|(.)){1}''' 75input = '''a''' 76matches = [[0, 1]] 77 78[[tests]] 79name = "repetition25" 80options = ['escaped'] 81pattern = '''((..)|(.)){2}''' 82input = '''a''' 83matches = [] 84 85[[tests]] 86name = "repetition26" 87options = ['escaped'] 88pattern = '''((..)|(.)){3}''' 89input = '''a''' 90matches = [] 91 92[[tests]] 93name = "repetition28" 94options = ['escaped'] 95pattern = '''((..)|(.))*''' 96input = '''a''' 97matches = [[0, 1]] 98 99[[tests]] 100name = "repetition30" 101options = ['escaped'] 102pattern = '''((..)|(.))''' 103input = '''aa''' 104matches = [[0, 2]] 105 106[[tests]] 107name = "repetition31" 108options = ['escaped'] 109pattern = '''((..)|(.))((..)|(.))''' 110input = '''aa''' 111matches = [[0, 2]] 112 113[[tests]] 114name = "repetition32" 115options = ['escaped'] 116pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 117input = '''aa''' 118matches = [] 119 120[[tests]] 121name = "repetition34" 122options = ['escaped'] 123pattern = '''((..)|(.)){1}''' 124input = '''aa''' 125matches = [[0, 2]] 126 127[[tests]] 128name = "repetition35" 129options = ['escaped'] 130pattern = '''((..)|(.)){2}''' 131input = '''aa''' 132matches = [[0, 2]] 133 134[[tests]] 135name = "repetition36" 136options = ['escaped'] 137pattern = '''((..)|(.)){3}''' 138input = '''aa''' 139matches = [] 140 141[[tests]] 142name = "repetition38" 143options = ['escaped'] 144pattern = '''((..)|(.))*''' 145input = '''aa''' 146matches = [[0, 2]] 147 148[[tests]] 149name = "repetition40" 150options = ['escaped'] 151pattern = '''((..)|(.))''' 152input = '''aaa''' 153matches = [[0, 2]] 154 155[[tests]] 156name = "repetition41" 157options = ['escaped'] 158pattern = '''((..)|(.))((..)|(.))''' 159input = '''aaa''' 160matches = [[0, 3]] 161 162[[tests]] 163name = "repetition42" 164options = ['escaped'] 165pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 166input = '''aaa''' 167matches = [[0, 3]] 168 169[[tests]] 170name = "repetition44" 171options = ['escaped'] 172pattern = '''((..)|(.)){1}''' 173input = '''aaa''' 174matches = [[0, 2]] 175 176[[tests]] 177name = "repetition46" 178options = ['escaped'] 179pattern = '''((..)|(.)){2}''' 180input = '''aaa''' 181matches = [[0, 3]] 182 183[[tests]] 184name = "repetition47" 185options = ['escaped'] 186pattern = '''((..)|(.)){3}''' 187input = '''aaa''' 188matches = [[0, 3]] 189 190[[tests]] 191name = "repetition50" 192options = ['escaped'] 193pattern = '''((..)|(.))*''' 194input = '''aaa''' 195matches = [[0, 3]] 196 197[[tests]] 198name = "repetition52" 199options = ['escaped'] 200pattern = '''((..)|(.))''' 201input = '''aaaa''' 202matches = [[0, 2]] 203 204[[tests]] 205name = "repetition53" 206options = ['escaped'] 207pattern = '''((..)|(.))((..)|(.))''' 208input = '''aaaa''' 209matches = [[0, 4]] 210 211[[tests]] 212name = "repetition54" 213options = ['escaped'] 214pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 215input = '''aaaa''' 216matches = [[0, 4]] 217 218[[tests]] 219name = "repetition56" 220options = ['escaped'] 221pattern = '''((..)|(.)){1}''' 222input = '''aaaa''' 223matches = [[0, 2]] 224 225[[tests]] 226name = "repetition57" 227options = ['escaped'] 228pattern = '''((..)|(.)){2}''' 229input = '''aaaa''' 230matches = [[0, 4]] 231 232[[tests]] 233name = "repetition59" 234options = ['escaped'] 235pattern = '''((..)|(.)){3}''' 236input = '''aaaa''' 237matches = [[0, 4]] 238 239[[tests]] 240name = "repetition61" 241options = ['escaped'] 242pattern = '''((..)|(.))*''' 243input = '''aaaa''' 244matches = [[0, 4]] 245 246[[tests]] 247name = "repetition63" 248options = ['escaped'] 249pattern = '''((..)|(.))''' 250input = '''aaaaa''' 251matches = [[0, 2]] 252 253[[tests]] 254name = "repetition64" 255options = ['escaped'] 256pattern = '''((..)|(.))((..)|(.))''' 257input = '''aaaaa''' 258matches = [[0, 4]] 259 260[[tests]] 261name = "repetition65" 262options = ['escaped'] 263pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 264input = '''aaaaa''' 265matches = [[0, 5]] 266 267[[tests]] 268name = "repetition67" 269options = ['escaped'] 270pattern = '''((..)|(.)){1}''' 271input = '''aaaaa''' 272matches = [[0, 2]] 273 274[[tests]] 275name = "repetition68" 276options = ['escaped'] 277pattern = '''((..)|(.)){2}''' 278input = '''aaaaa''' 279matches = [[0, 4]] 280 281[[tests]] 282name = "repetition70" 283options = ['escaped'] 284pattern = '''((..)|(.)){3}''' 285input = '''aaaaa''' 286matches = [[0, 5]] 287 288[[tests]] 289name = "repetition73" 290options = ['escaped'] 291pattern = '''((..)|(.))*''' 292input = '''aaaaa''' 293matches = [[0, 5]] 294 295[[tests]] 296name = "repetition75" 297options = ['escaped'] 298pattern = '''((..)|(.))''' 299input = '''aaaaaa''' 300matches = [[0, 2]] 301 302[[tests]] 303name = "repetition76" 304options = ['escaped'] 305pattern = '''((..)|(.))((..)|(.))''' 306input = '''aaaaaa''' 307matches = [[0, 4]] 308 309[[tests]] 310name = "repetition77" 311options = ['escaped'] 312pattern = '''((..)|(.))((..)|(.))((..)|(.))''' 313input = '''aaaaaa''' 314matches = [[0, 6]] 315 316[[tests]] 317name = "repetition79" 318options = ['escaped'] 319pattern = '''((..)|(.)){1}''' 320input = '''aaaaaa''' 321matches = [[0, 2]] 322 323[[tests]] 324name = "repetition80" 325options = ['escaped'] 326pattern = '''((..)|(.)){2}''' 327input = '''aaaaaa''' 328matches = [[0, 4]] 329 330[[tests]] 331name = "repetition81" 332options = ['escaped'] 333pattern = '''((..)|(.)){3}''' 334input = '''aaaaaa''' 335matches = [[0, 6]] 336 337[[tests]] 338name = "repetition83" 339options = ['escaped'] 340pattern = '''((..)|(.))*''' 341input = '''aaaaaa''' 342matches = [[0, 6]] 343 344