ben
/
aoc
1
0
Fork 0

add files for missing years and start on 2015 puzzles
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2022-11-11 13:42:42 -05:00
parent 9ce279c079
commit e8b7022c03
208 changed files with 29815 additions and 1 deletions

2
.gitignore vendored
View File

@ -452,3 +452,5 @@ $RECYCLE.BIN/
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
session_cookie.txt

View File

@ -22,6 +22,10 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOC2015\AOC2015.csproj" />
<ProjectReference Include="..\AOC2016\AOC2016.csproj" />
<ProjectReference Include="..\AOC2017\AOC2017.csproj" />
<ProjectReference Include="..\AOC2018\AOC2018.csproj" />
<ProjectReference Include="..\AOC2019\AOC2019.csproj" />
<ProjectReference Include="..\AOC2020\AOC2020.csproj" />
<ProjectReference Include="..\AOC2021\AOC2021.csproj" />

24
AOC.Test/Test2015.cs Normal file
View File

@ -0,0 +1,24 @@
using AOC2015;
namespace AOC.Test;
[TestClass]
public class Test2015
{
[DataTestMethod]
[DataRow(typeof(Day01), "232", "1783")]
[DataRow(typeof(Day02),"1586300", "3737498")]
public void TestAllDays(Type dayType, string part1, string part2)
{
Common.CheckDay(dayType, part1, part2);
}
[DataTestMethod]
[DataRow(typeof(Day02), "58", "34")]
public void CheckTestInputs(Type dayType, string part1, string part2)
{
Day.UseTestInput = true;
Common.CheckDay(dayType, part1, part2);
Day.UseTestInput = false;
}
}

14
AOC.Test/Test2016.cs Normal file
View File

@ -0,0 +1,14 @@
using AOC2016;
namespace AOC.Test;
[TestClass]
public class Test2016
{
[DataTestMethod]
[DataRow(typeof(Day01), "", "")]
public void TestAllDays(Type dayType, string part1, string part2)
{
Common.CheckDay(dayType, part1, part2);
}
}

14
AOC.Test/Test2017.cs Normal file
View File

@ -0,0 +1,14 @@
using AOC2017;
namespace AOC.Test;
[TestClass]
public class Test2017
{
[DataTestMethod]
[DataRow(typeof(Day01), "", "")]
public void TestAllDays(Type dayType, string part1, string part2)
{
Common.CheckDay(dayType, part1, part2);
}
}

14
AOC.Test/Test2018.cs Normal file
View File

@ -0,0 +1,14 @@
using AOC2018;
namespace AOC.Test;
[TestClass]
public class Test2018
{
[DataTestMethod]
[DataRow(typeof(Day01), "", "")]
public void TestAllDays(Type dayType, string part1, string part2)
{
Common.CheckDay(dayType, part1, part2);
}
}

29
AOC2015/AOC2015.csproj Normal file
View File

@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="input2015\*.in">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="AOC.Common" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Reflection" />
<Using Include="System.Text" />
<Using Include="System.Text.RegularExpressions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOC.Common\AOC.Common.csproj" />
</ItemGroup>
</Project>

39
AOC2015/Day01.cs Normal file
View File

@ -0,0 +1,39 @@
namespace AOC2015;
public class Day01 : Day
{
public Day01() : base(2015, 1, "Not Quite Lisp")
{
}
public override object Part1()
{
var floor = 0;
foreach (var c in Input.First())
switch (c)
{
case '(': floor++; break;
case ')': floor--; break;
}
return floor;
}
public override object Part2()
{
var floor = 0;
var line = Input.First();
for (var i = 0; i < line.Length; i++)
{
switch (line[i])
{
case '(': floor++; break;
case ')': floor--; break;
}
if (floor < 0) return i + 1;
}
return 0;
}
}

52
AOC2015/Day02.cs Normal file
View File

@ -0,0 +1,52 @@
namespace AOC2015;
/// <summary>
/// Day 2: <see href="https://adventofcode.com/2015/day/2"/>
/// </summary>
public sealed class Day02 : Day
{
private readonly List<List<int>> _gifts;
public Day02() : base(2015, 2, "I Was Told There Would Be No Math")
{
_gifts = Input.Select(line => line.Split('x').Select(int.Parse).ToList()).ToList();
}
public override object Part1()
{
return _gifts.Sum(gift =>
{
var biggestDimension = gift.IndexOf(gift.Max());
var surfaceArea = 2 * gift[0] * gift[1] + 2 * gift[1] * gift[2] + 2 * gift[0] * gift[2];
var smallestSideArea = 1;
for (var i = 0; i < gift.Count; i++)
{
if (i == biggestDimension) continue;
smallestSideArea *= gift[i];
}
return surfaceArea + smallestSideArea;
});
}
public override object Part2()
{
return _gifts.Sum(gift =>
{
var biggestDimension = gift.IndexOf(gift.Max());
var bowArea = gift.Aggregate(1, (i, i1) => i * i1);
var smallestSide = 0;
for (var i = 0; i < gift.Count; i++)
{
if (i == biggestDimension) continue;
smallestSide += 2 * gift[i];
}
return smallestSide + bowArea;
});
}
}

15
AOC2015/Day03.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 3: <see href="https://adventofcode.com/2015/day/3"/>
/// </summary>
public sealed class Day03 : Day
{
public Day03() : base(2015, 3, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day04.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 4: <see href="https://adventofcode.com/2015/day/4"/>
/// </summary>
public sealed class Day04 : Day
{
public Day04() : base(2015, 4, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day05.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 5: <see href="https://adventofcode.com/2015/day/5"/>
/// </summary>
public sealed class Day05 : Day
{
public Day05() : base(2015, 5, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day06.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 6: <see href="https://adventofcode.com/2015/day/6"/>
/// </summary>
public sealed class Day06 : Day
{
public Day06() : base(2015, 6, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day07.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 7: <see href="https://adventofcode.com/2015/day/7"/>
/// </summary>
public sealed class Day07 : Day
{
public Day07() : base(2015, 7, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day08.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 8: <see href="https://adventofcode.com/2015/day/8"/>
/// </summary>
public sealed class Day08 : Day
{
public Day08() : base(2015, 8, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day09.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 9: <see href="https://adventofcode.com/2015/day/9"/>
/// </summary>
public sealed class Day09 : Day
{
public Day09() : base(2015, 9, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day10.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 10: <see href="https://adventofcode.com/2015/day/10"/>
/// </summary>
public sealed class Day10 : Day
{
public Day10() : base(2015, 10, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day11.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 11: <see href="https://adventofcode.com/2015/day/11"/>
/// </summary>
public sealed class Day11 : Day
{
public Day11() : base(2015, 11, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day12.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 12: <see href="https://adventofcode.com/2015/day/12"/>
/// </summary>
public sealed class Day12 : Day
{
public Day12() : base(2015, 12, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day13.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 13: <see href="https://adventofcode.com/2015/day/13"/>
/// </summary>
public sealed class Day13 : Day
{
public Day13() : base(2015, 13, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day14.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 14: <see href="https://adventofcode.com/2015/day/14"/>
/// </summary>
public sealed class Day14 : Day
{
public Day14() : base(2015, 14, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day15.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 15: <see href="https://adventofcode.com/2015/day/15"/>
/// </summary>
public sealed class Day15 : Day
{
public Day15() : base(2015, 15, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day16.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 16: <see href="https://adventofcode.com/2015/day/16"/>
/// </summary>
public sealed class Day16 : Day
{
public Day16() : base(2015, 16, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day17.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 17: <see href="https://adventofcode.com/2015/day/17"/>
/// </summary>
public sealed class Day17 : Day
{
public Day17() : base(2015, 17, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day18.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 18: <see href="https://adventofcode.com/2015/day/18"/>
/// </summary>
public sealed class Day18 : Day
{
public Day18() : base(2015, 18, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day19.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 19: <see href="https://adventofcode.com/2015/day/19"/>
/// </summary>
public sealed class Day19 : Day
{
public Day19() : base(2015, 19, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day20.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 20: <see href="https://adventofcode.com/2015/day/20"/>
/// </summary>
public sealed class Day20 : Day
{
public Day20() : base(2015, 20, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day21.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 21: <see href="https://adventofcode.com/2015/day/21"/>
/// </summary>
public sealed class Day21 : Day
{
public Day21() : base(2015, 21, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day22.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 22: <see href="https://adventofcode.com/2015/day/22"/>
/// </summary>
public sealed class Day22 : Day
{
public Day22() : base(2015, 22, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day23.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 23: <see href="https://adventofcode.com/2015/day/23"/>
/// </summary>
public sealed class Day23 : Day
{
public Day23() : base(2015, 23, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day24.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 24: <see href="https://adventofcode.com/2015/day/24"/>
/// </summary>
public sealed class Day24 : Day
{
public Day24() : base(2015, 24, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2015/Day25.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2015;
/// <summary>
/// Day 25: <see href="https://adventofcode.com/2015/day/25"/>
/// </summary>
public sealed class Day25 : Day
{
public Day25() : base(2015, 25, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

1
AOC2015/Program.cs Normal file
View File

@ -0,0 +1 @@
Day.RunFromArgs(args);

File diff suppressed because one or more lines are too long

1000
AOC2015/input2015/day02.in Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
iwrupvqb

1000
AOC2015/input2015/day05.in Normal file

File diff suppressed because it is too large Load Diff

300
AOC2015/input2015/day06.in Normal file
View File

@ -0,0 +1,300 @@
toggle 461,550 through 564,900
turn off 370,39 through 425,839
turn off 464,858 through 833,915
turn off 812,389 through 865,874
turn on 599,989 through 806,993
turn on 376,415 through 768,548
turn on 606,361 through 892,600
turn off 448,208 through 645,684
toggle 50,472 through 452,788
toggle 205,417 through 703,826
toggle 533,331 through 906,873
toggle 857,493 through 989,970
turn off 631,950 through 894,975
turn off 387,19 through 720,700
turn off 511,843 through 581,945
toggle 514,557 through 662,883
turn off 269,809 through 876,847
turn off 149,517 through 716,777
turn off 994,939 through 998,988
toggle 467,662 through 555,957
turn on 952,417 through 954,845
turn on 565,226 through 944,880
turn on 214,319 through 805,722
toggle 532,276 through 636,847
toggle 619,80 through 689,507
turn on 390,706 through 884,722
toggle 17,634 through 537,766
toggle 706,440 through 834,441
toggle 318,207 through 499,530
toggle 698,185 through 830,343
toggle 566,679 through 744,716
toggle 347,482 through 959,482
toggle 39,799 through 981,872
turn on 583,543 through 846,710
turn off 367,664 through 595,872
turn on 805,439 through 964,995
toggle 209,584 through 513,802
turn off 106,497 through 266,770
turn on 975,2 through 984,623
turn off 316,684 through 369,876
turn off 30,309 through 259,554
turn off 399,680 through 861,942
toggle 227,740 through 850,829
turn on 386,603 through 552,879
turn off 703,795 through 791,963
turn off 573,803 through 996,878
turn off 993,939 through 997,951
turn on 809,221 through 869,723
turn off 38,720 through 682,751
turn off 318,732 through 720,976
toggle 88,459 through 392,654
turn off 865,654 through 911,956
toggle 264,284 through 857,956
turn off 281,776 through 610,797
toggle 492,660 through 647,910
turn off 879,703 through 925,981
turn off 772,414 through 974,518
turn on 694,41 through 755,96
turn on 452,406 through 885,881
turn off 107,905 through 497,910
turn off 647,222 through 910,532
turn on 679,40 through 845,358
turn off 144,205 through 556,362
turn on 871,804 through 962,878
turn on 545,676 through 545,929
turn off 316,716 through 413,941
toggle 488,826 through 755,971
toggle 957,832 through 976,992
toggle 857,770 through 905,964
toggle 319,198 through 787,673
turn on 832,813 through 863,844
turn on 818,296 through 818,681
turn on 71,699 through 91,960
turn off 838,578 through 967,928
toggle 440,856 through 507,942
toggle 121,970 through 151,974
toggle 391,192 through 659,751
turn on 78,210 through 681,419
turn on 324,591 through 593,939
toggle 159,366 through 249,760
turn off 617,167 through 954,601
toggle 484,607 through 733,657
turn on 587,96 through 888,819
turn off 680,984 through 941,991
turn on 800,512 through 968,691
turn off 123,588 through 853,603
turn on 1,862 through 507,912
turn on 699,839 through 973,878
turn off 848,89 through 887,893
toggle 344,353 through 462,403
turn on 780,731 through 841,760
toggle 693,973 through 847,984
toggle 989,936 through 996,958
toggle 168,475 through 206,963
turn on 742,683 through 769,845
toggle 768,116 through 987,396
turn on 190,364 through 617,526
turn off 470,266 through 530,839
toggle 122,497 through 969,645
turn off 492,432 through 827,790
turn on 505,636 through 957,820
turn on 295,476 through 698,958
toggle 63,298 through 202,396
turn on 157,315 through 412,939
turn off 69,789 through 134,837
turn off 678,335 through 896,541
toggle 140,516 through 842,668
turn off 697,585 through 712,668
toggle 507,832 through 578,949
turn on 678,279 through 886,621
toggle 449,744 through 826,910
turn off 835,354 through 921,741
toggle 924,878 through 985,952
turn on 666,503 through 922,905
turn on 947,453 through 961,587
toggle 525,190 through 795,654
turn off 62,320 through 896,362
turn on 21,458 through 972,536
turn on 446,429 through 821,970
toggle 376,423 through 805,455
toggle 494,896 through 715,937
turn on 583,270 through 667,482
turn off 183,468 through 280,548
toggle 623,289 through 750,524
turn on 836,706 through 967,768
turn on 419,569 through 912,908
turn on 428,260 through 660,433
turn off 683,627 through 916,816
turn on 447,973 through 866,980
turn on 688,607 through 938,990
turn on 245,187 through 597,405
turn off 558,843 through 841,942
turn off 325,666 through 713,834
toggle 672,606 through 814,935
turn off 161,812 through 490,954
turn on 950,362 through 985,898
turn on 143,22 through 205,821
turn on 89,762 through 607,790
toggle 234,245 through 827,303
turn on 65,599 through 764,997
turn on 232,466 through 965,695
turn on 739,122 through 975,590
turn off 206,112 through 940,558
toggle 690,365 through 988,552
turn on 907,438 through 977,691
turn off 838,809 through 944,869
turn on 222,12 through 541,832
toggle 337,66 through 669,812
turn on 732,821 through 897,912
toggle 182,862 through 638,996
turn on 955,808 through 983,847
toggle 346,227 through 841,696
turn on 983,270 through 989,756
turn off 874,849 through 876,905
turn off 7,760 through 678,795
toggle 973,977 through 995,983
turn off 911,961 through 914,976
turn on 913,557 through 952,722
turn off 607,933 through 939,999
turn on 226,604 through 517,622
turn off 3,564 through 344,842
toggle 340,578 through 428,610
turn on 248,916 through 687,925
toggle 650,185 through 955,965
toggle 831,359 through 933,536
turn off 544,614 through 896,953
toggle 648,939 through 975,997
turn on 464,269 through 710,521
turn off 643,149 through 791,320
turn off 875,549 through 972,643
turn off 953,969 through 971,972
turn off 236,474 through 772,591
toggle 313,212 through 489,723
toggle 896,829 through 897,837
toggle 544,449 through 995,905
turn off 278,645 through 977,876
turn off 887,947 through 946,977
turn on 342,861 through 725,935
turn on 636,316 through 692,513
toggle 857,470 through 950,528
turn off 736,196 through 826,889
turn on 17,878 through 850,987
turn on 142,968 through 169,987
turn on 46,470 through 912,853
turn on 182,252 through 279,941
toggle 261,143 through 969,657
turn off 69,600 through 518,710
turn on 372,379 through 779,386
toggle 867,391 through 911,601
turn off 174,287 through 900,536
toggle 951,842 through 993,963
turn off 626,733 through 985,827
toggle 622,70 through 666,291
turn off 980,671 through 985,835
turn off 477,63 through 910,72
turn off 779,39 through 940,142
turn on 986,570 through 997,638
toggle 842,805 through 943,985
turn off 890,886 through 976,927
turn off 893,172 through 897,619
turn off 198,780 through 835,826
toggle 202,209 through 219,291
turn off 193,52 through 833,283
toggle 414,427 through 987,972
turn on 375,231 through 668,236
turn off 646,598 through 869,663
toggle 271,462 through 414,650
turn off 679,121 through 845,467
toggle 76,847 through 504,904
turn off 15,617 through 509,810
toggle 248,105 through 312,451
turn off 126,546 through 922,879
turn on 531,831 through 903,872
toggle 602,431 through 892,792
turn off 795,223 through 892,623
toggle 167,721 through 533,929
toggle 813,251 through 998,484
toggle 64,640 through 752,942
turn on 155,955 through 892,985
turn on 251,329 through 996,497
turn off 341,716 through 462,994
toggle 760,127 through 829,189
turn on 86,413 through 408,518
toggle 340,102 through 918,558
turn off 441,642 through 751,889
turn on 785,292 through 845,325
turn off 123,389 through 725,828
turn on 905,73 through 983,270
turn off 807,86 through 879,276
toggle 500,866 through 864,916
turn on 809,366 through 828,534
toggle 219,356 through 720,617
turn off 320,964 through 769,990
turn off 903,167 through 936,631
toggle 300,137 through 333,693
toggle 5,675 through 755,848
turn off 852,235 through 946,783
toggle 355,556 through 941,664
turn on 810,830 through 867,891
turn off 509,869 through 667,903
toggle 769,400 through 873,892
turn on 553,614 through 810,729
turn on 179,873 through 589,962
turn off 466,866 through 768,926
toggle 143,943 through 465,984
toggle 182,380 through 569,552
turn off 735,808 through 917,910
turn on 731,802 through 910,847
turn off 522,74 through 731,485
turn on 444,127 through 566,996
turn off 232,962 through 893,979
turn off 231,492 through 790,976
turn on 874,567 through 943,684
toggle 911,840 through 990,932
toggle 547,895 through 667,935
turn off 93,294 through 648,636
turn off 190,902 through 532,970
turn off 451,530 through 704,613
toggle 936,774 through 937,775
turn off 116,843 through 533,934
turn on 950,906 through 986,993
turn on 910,51 through 945,989
turn on 986,498 through 994,945
turn off 125,324 through 433,704
turn off 60,313 through 75,728
turn on 899,494 through 940,947
toggle 832,316 through 971,817
toggle 994,983 through 998,984
toggle 23,353 through 917,845
toggle 174,799 through 658,859
turn off 490,878 through 534,887
turn off 623,963 through 917,975
toggle 721,333 through 816,975
toggle 589,687 through 890,921
turn on 936,388 through 948,560
turn off 485,17 through 655,610
turn on 435,158 through 689,495
turn on 192,934 through 734,936
turn off 299,723 through 622,847
toggle 484,160 through 812,942
turn off 245,754 through 818,851
turn on 298,419 through 824,634
toggle 868,687 through 969,760
toggle 131,250 through 685,426
turn off 201,954 through 997,983
turn on 353,910 through 832,961
turn off 518,781 through 645,875
turn off 866,97 through 924,784
toggle 836,599 through 857,767
turn on 80,957 through 776,968
toggle 277,130 through 513,244
turn off 62,266 through 854,434
turn on 792,764 through 872,842
turn off 160,949 through 273,989
turn off 664,203 through 694,754
toggle 491,615 through 998,836
turn off 210,146 through 221,482
turn off 209,780 through 572,894
turn on 766,112 through 792,868
turn on 222,12 through 856,241

339
AOC2015/input2015/day07.in Normal file
View File

@ -0,0 +1,339 @@
NOT dq -> dr
kg OR kf -> kh
ep OR eo -> eq
44430 -> b
NOT gs -> gt
dd OR do -> dp
eg AND ei -> ej
y AND ae -> ag
jx AND jz -> ka
lf RSHIFT 2 -> lg
z AND aa -> ac
dy AND ej -> el
bj OR bi -> bk
kk RSHIFT 3 -> km
NOT cn -> co
gn AND gp -> gq
cq AND cs -> ct
eo LSHIFT 15 -> es
lg OR lm -> ln
dy OR ej -> ek
NOT di -> dj
1 AND fi -> fj
kf LSHIFT 15 -> kj
NOT jy -> jz
NOT ft -> fu
fs AND fu -> fv
NOT hr -> hs
ck OR cl -> cm
jp RSHIFT 5 -> js
iv OR jb -> jc
is OR it -> iu
ld OR le -> lf
NOT fc -> fd
NOT dm -> dn
bn OR by -> bz
aj AND al -> am
cd LSHIFT 15 -> ch
jp AND ka -> kc
ci OR ct -> cu
gv AND gx -> gy
de AND dk -> dm
x RSHIFT 5 -> aa
et RSHIFT 2 -> eu
x RSHIFT 1 -> aq
ia OR ig -> ih
bk LSHIFT 1 -> ce
y OR ae -> af
NOT ca -> cb
e AND f -> h
ia AND ig -> ii
ck AND cl -> cn
NOT jh -> ji
z OR aa -> ab
1 AND en -> eo
ib AND ic -> ie
NOT eh -> ei
iy AND ja -> jb
NOT bb -> bc
ha OR gz -> hb
1 AND cx -> cy
NOT ax -> ay
ev OR ew -> ex
bn RSHIFT 2 -> bo
er OR es -> et
eu OR fa -> fb
jp OR ka -> kb
ea AND eb -> ed
k AND m -> n
et RSHIFT 3 -> ev
et RSHIFT 5 -> ew
hz RSHIFT 1 -> is
ki OR kj -> kk
NOT h -> i
lv LSHIFT 15 -> lz
as RSHIFT 1 -> bl
hu LSHIFT 15 -> hy
iw AND ix -> iz
lf RSHIFT 1 -> ly
fp OR fv -> fw
1 AND am -> an
ap LSHIFT 1 -> bj
u LSHIFT 1 -> ao
b RSHIFT 5 -> f
jq AND jw -> jy
iu RSHIFT 3 -> iw
ih AND ij -> ik
NOT iz -> ja
de OR dk -> dl
iu OR jf -> jg
as AND bd -> bf
b RSHIFT 3 -> e
jq OR jw -> jx
iv AND jb -> jd
cg OR ch -> ci
iu AND jf -> jh
lx -> a
1 AND cc -> cd
ly OR lz -> ma
NOT el -> em
1 AND bh -> bi
fb AND fd -> fe
lf OR lq -> lr
bn RSHIFT 3 -> bp
bn AND by -> ca
af AND ah -> ai
cf LSHIFT 1 -> cz
dw OR dx -> dy
gj AND gu -> gw
jg AND ji -> jj
jr OR js -> jt
bl OR bm -> bn
gj RSHIFT 2 -> gk
cj OR cp -> cq
gj OR gu -> gv
b OR n -> o
o AND q -> r
bi LSHIFT 15 -> bm
dy RSHIFT 1 -> er
cu AND cw -> cx
iw OR ix -> iy
hc OR hd -> he
0 -> c
db OR dc -> dd
kk RSHIFT 2 -> kl
eq LSHIFT 1 -> fk
dz OR ef -> eg
NOT ed -> ee
lw OR lv -> lx
fw AND fy -> fz
dz AND ef -> eh
jp RSHIFT 3 -> jr
lg AND lm -> lo
ci RSHIFT 2 -> cj
be AND bg -> bh
lc LSHIFT 1 -> lw
hm AND ho -> hp
jr AND js -> ju
1 AND io -> ip
cm AND co -> cp
ib OR ic -> id
NOT bf -> bg
fo RSHIFT 5 -> fr
ip LSHIFT 15 -> it
jt AND jv -> jw
jc AND je -> jf
du OR dt -> dv
NOT fx -> fy
aw AND ay -> az
ge LSHIFT 15 -> gi
NOT ak -> al
fm OR fn -> fo
ff AND fh -> fi
ci RSHIFT 5 -> cl
cz OR cy -> da
NOT ey -> ez
NOT ju -> jv
NOT ls -> lt
kk AND kv -> kx
NOT ii -> ij
kl AND kr -> kt
jk LSHIFT 15 -> jo
e OR f -> g
NOT bs -> bt
hi AND hk -> hl
hz OR ik -> il
ek AND em -> en
ao OR an -> ap
dv LSHIFT 1 -> ep
an LSHIFT 15 -> ar
fo RSHIFT 1 -> gh
NOT im -> in
kk RSHIFT 1 -> ld
hw LSHIFT 1 -> iq
ec AND ee -> ef
hb LSHIFT 1 -> hv
kb AND kd -> ke
x AND ai -> ak
dd AND do -> dq
aq OR ar -> as
iq OR ip -> ir
dl AND dn -> do
iu RSHIFT 5 -> ix
as OR bd -> be
NOT go -> gp
fk OR fj -> fl
jm LSHIFT 1 -> kg
NOT cv -> cw
dp AND dr -> ds
dt LSHIFT 15 -> dx
et RSHIFT 1 -> fm
dy RSHIFT 3 -> ea
fp AND fv -> fx
NOT p -> q
dd RSHIFT 2 -> de
eu AND fa -> fc
ba AND bc -> bd
dh AND dj -> dk
lr AND lt -> lu
he RSHIFT 1 -> hx
ex AND ez -> fa
df OR dg -> dh
fj LSHIFT 15 -> fn
NOT kx -> ky
gk OR gq -> gr
dy RSHIFT 2 -> dz
gh OR gi -> gj
lj AND ll -> lm
x OR ai -> aj
bz AND cb -> cc
1 AND lu -> lv
as RSHIFT 3 -> au
ce OR cd -> cf
il AND in -> io
dd RSHIFT 1 -> dw
NOT lo -> lp
c LSHIFT 1 -> t
dd RSHIFT 3 -> df
dd RSHIFT 5 -> dg
lh AND li -> lk
lf RSHIFT 5 -> li
dy RSHIFT 5 -> eb
NOT kt -> ku
at OR az -> ba
x RSHIFT 3 -> z
NOT lk -> ll
lb OR la -> lc
1 AND r -> s
lh OR li -> lj
ln AND lp -> lq
kk RSHIFT 5 -> kn
ea OR eb -> ec
ci AND ct -> cv
b RSHIFT 2 -> d
jp RSHIFT 1 -> ki
NOT cr -> cs
NOT jd -> je
jp RSHIFT 2 -> jq
jn OR jo -> jp
lf RSHIFT 3 -> lh
1 AND ds -> dt
lf AND lq -> ls
la LSHIFT 15 -> le
NOT fg -> fh
at AND az -> bb
au AND av -> ax
kw AND ky -> kz
v OR w -> x
kk OR kv -> kw
ks AND ku -> kv
kh LSHIFT 1 -> lb
1 AND kz -> la
NOT kc -> kd
x RSHIFT 2 -> y
et OR fe -> ff
et AND fe -> fg
NOT ac -> ad
jl OR jk -> jm
1 AND jj -> jk
bn RSHIFT 1 -> cg
NOT kp -> kq
ci RSHIFT 3 -> ck
ev AND ew -> ey
1 AND ke -> kf
cj AND cp -> cr
ir LSHIFT 1 -> jl
NOT gw -> gx
as RSHIFT 2 -> at
iu RSHIFT 1 -> jn
cy LSHIFT 15 -> dc
hg OR hh -> hi
ci RSHIFT 1 -> db
au OR av -> aw
km AND kn -> kp
gj RSHIFT 1 -> hc
iu RSHIFT 2 -> iv
ab AND ad -> ae
da LSHIFT 1 -> du
NOT bw -> bx
km OR kn -> ko
ko AND kq -> kr
bv AND bx -> by
kl OR kr -> ks
1 AND ht -> hu
df AND dg -> di
NOT ag -> ah
d OR j -> k
d AND j -> l
b AND n -> p
gf OR ge -> gg
gg LSHIFT 1 -> ha
bn RSHIFT 5 -> bq
bo OR bu -> bv
1 AND gy -> gz
s LSHIFT 15 -> w
NOT ie -> if
as RSHIFT 5 -> av
bo AND bu -> bw
hz AND ik -> im
bp AND bq -> bs
b RSHIFT 1 -> v
NOT l -> m
bp OR bq -> br
g AND i -> j
br AND bt -> bu
t OR s -> u
hz RSHIFT 5 -> ic
gk AND gq -> gs
fl LSHIFT 1 -> gf
he RSHIFT 3 -> hg
gz LSHIFT 15 -> hd
hf OR hl -> hm
1 AND gd -> ge
fo OR fz -> ga
id AND if -> ig
fo AND fz -> gb
gr AND gt -> gu
he OR hp -> hq
fq AND fr -> ft
ga AND gc -> gd
fo RSHIFT 2 -> fp
gl OR gm -> gn
hg AND hh -> hj
NOT hn -> ho
gl AND gm -> go
he RSHIFT 5 -> hh
NOT gb -> gc
hq AND hs -> ht
hz RSHIFT 3 -> ib
hz RSHIFT 2 -> ia
fq OR fr -> fs
hx OR hy -> hz
he AND hp -> hr
gj RSHIFT 5 -> gm
hf AND hl -> hn
hv OR hu -> hw
NOT hj -> hk
gj RSHIFT 3 -> gl
fo RSHIFT 3 -> fq
he RSHIFT 2 -> hf

300
AOC2015/input2015/day08.in Normal file
View File

@ -0,0 +1,300 @@
"azlgxdbljwygyttzkfwuxv"
"v\xfb\"lgs\"kvjfywmut\x9cr"
"merxdhj"
"dwz"
"d\\gkbqo\\fwukyxab\"u"
"k\xd4cfixejvkicryipucwurq\x7eq"
"nvtidemacj\"hppfopvpr"
"kbngyfvvsdismznhar\\p\"\"gpryt\"jaeh"
"khre\"o\x0elqfrbktzn"
"nugkdmqwdq\x50amallrskmrxoyo"
"jcrkptrsasjp\\\"cwigzynjgspxxv\\vyb"
"ramf\"skhcmenhbpujbqwkltmplxygfcy"
"aqjqgbfqaxga\\fkdcahlfi\"pvods"
"pcrtfb"
"\x83qg\"nwgugfmfpzlrvty\"ryoxm"
"fvhvvokdnl\\eap"
"kugdkrat"
"seuxwc"
"vhioftcosshaqtnz"
"gzkxqrdq\\uko\"mrtst"
"znjcomvy\x16hhsenmroswr"
"clowmtra"
"\xc4"
"jpavsevmziklydtqqm"
"egxjqytcttr\\ecfedmmovkyn\"m"
"mjulrvqgmsvmwf"
"o\\prxtlfbatxerhev\xf9hcl\x44rzmvklviv"
"lregjexqaqgwloydxdsc\\o\"dnjfmjcu"
"lnxluajtk\x8desue\\k\x7abhwokfhh"
"wrssfvzzn\"llrysjgiu\"npjtdli"
"\x67lwkks"
"bifw\"ybvmwiyi\"vhol\"vol\xd4"
"aywdqhvtvcpvbewtwuyxrix"
"gc\xd3\"caukdgfdywj"
"uczy\\fk"
"bnlxkjvl\x7docehufkj\\\"qoyhag"
"bidsptalmoicyorbv\\"
"jorscv\"mufcvvfmcv\"ga"
"sofpwfal\\a"
"kcuqtbboaly\"uj\"k"
"n\\c"
"x\"\xcaj\\xwwvpdldz"
"eyukphh"
"wcyjq"
"vjx\"\"hjroj\"l\x4cjwbr"
"xcodsxzfqw\\rowqtuwvjnxupjnrh"
"yc"
"fpvzldgbdtca\"hqwa"
"ymjq\x8ahohvafubra\"hgqoknkuyph"
"kx\\mkaaklvcup"
"belddrzegcsxsyfhzyz"
"fuyswi"
"\\hubzebo\"ha\\qyr\"dv\\"
"mxvlz\"fwuvx\"cyk\""
"ftbh\"ro\\tmcpnpvh\"xx"
"ygi"
"rw\"\"wwn\\fgbjumq\"vgvoh\xd0\"mm"
"\"pat\"\x63kpfc\"\x2ckhfvxk\"uwqzlx"
"o"
"d\"hqtsfp\xceaswe\"\xc0lw"
"zajpvfawqntvoveal\"\"trcdarjua"
"xzapq"
"rkmhm"
"byuq"
"rwwmt\xe8jg\xc2\"omt"
"nfljgdmgefvlh\"x"
"rpjxcexisualz"
"doxcycmgaiptvd"
"rq\\\"mohnjdf\\xv\\hrnosdtmvxot"
"oqvbcenib\"uhy\\npjxg"
"pkvgnm\\ruayuvpbpd"
"kknmzpxqfbcdgng"
"piduhbmaympxdexz"
"vapczawekhoa\\or"
"tlwn\"avc\"bycg\"\"xuxea"
"\xcdvryveteqzxrgopmdmihkcgsuozips"
"kpzziqt"
"sdy\\s\"cjq"
"yujs"
"qte\"q"
"qyvpnkhjcqjv\"cclvv\"pclgtg\xeak\"tno"
"xwx"
"vibuvv"
"qq\""
"wwjduomtbkbdtorhpyalxswisq\"r"
"afuw\\mfjzctcivwesutxbk\"lk"
"e\xcef\\hkiu"
"ftdrgzvygcw\"jwsrcmgxj"
"zrddqfkx\x21dr\"ju\"elybk\"powj\"\"kpryz"
"dttdkfvbodkma\""
"lzygktugpqw"
"qu\x83tes\\u\"tnid\"ryuz"
"\\o\"pe\\vqwlsizjklwrjofg\xe2oau\\rd"
"mikevjzhnwgx\"fozrj\"h\""
"ligxmxznzvtachvvbahnff"
"d\\kq"
"tnbkxpzmcakqhaa"
"g\\yeakebeyv"
"cqkcnd\"sxjxfnawy\x31zax\x6ceha"
"m\x0dtqotffzdnetujtsgjqgwddc"
"masnugb\"etgmxul\x3bqd\\tmtddnvcy"
"floediikodfgre\x23wyoxlswxflwecdjpt"
"zu"
"r"
"\"ashzdbd\"pdvba\xeeumkr\\amnj"
"ckslmuwbtfouwpfwtuiqmeozgspwnhx"
"t\\qjsjek\xf9gjcxsyco\"r"
"hoed\x1b\\tcmaqch\"epdy"
"mgjiojwzc\\ypqcn\xb1njmp\"aeeblxt"
"\xdf\"h\x5enfracj"
"\x6fpbpocrb"
"jbmhrswyyq\\"
"wtyqtenfwatji\"ls\\"
"voy"
"awj"
"rtbj\"j"
"hynl"
"orqqeuaat\\xu\\havsgr\xc5qdk"
"g\"npyzjfq\"rjefwsk"
"rk\\kkcirjbixr\\zelndx\"bsnqvqj\""
"tecoz"
"dn\"uswngbdk\""
"qb\\"
"wpyis\\ebq"
"ppwue\\airoxzjjdqbvyurhaabetv"
"fxlvt"
"ql\"oqsmsvpxcg\"k"
"vqlhuec\\adw"
"qzmi\xffberakqqkk"
"tisjqff\"wf"
"yhnpudoaybwucvppj"
"xhfuf\\ehsrhsnfxcwtibd\"ubfpz"
"ihgjquzhf\""
"ff\x66dsupesrnusrtqnywoqcn\\"
"z\x77zpubbjmd"
"\"vhzlbwq\"xeimjt\\xe\x85umho\"m\"\"bmy"
"mmuvkioocmzjjysi\"mkfbec\""
"rpgghowbduw\x2fayslubajinoik\xd0hcfy"
"xrkyjqul\xdexlojgdphczp\"jfk"
"mg\x07cnr\x8b\x67xdgszmgiktpjhawho"
"kdgufhaoab"
"rlhela\"nldr"
"wzye\x87u"
"yif\x75bjhnitgoarmfgqwpmopu"
"pvlbyez\"wyy\x3dpgr"
"ezdm\"ovkruthkvdwtqwr\"ibdoawzgu"
"qubp"
"b\\kcpegcn\\zgdemgorjnk"
"gjsva\\kzaor\"\"gtpd"
"\"kt"
"rlymwlcodix"
"qqtmswowxca\"jvv"
"jni\xebwhozb"
"zhino\"kzjtmgxpi\"zzexijg"
"tyrbat\\mejgzplufxixkyg"
"lhmopxiao\x09\"p\xebl"
"xefioorxvate"
"nmcgd\x46xfujt\"w"
"\xe3wnwpat\"gtimrb"
"wpq\"xkjuw\xebbohgcagppb"
"fmvpwaca"
"mlsw"
"fdan\\\x9e"
"\"f\"fmdlzc"
"nyuj\\jnnfzdnrqmhvjrahlvzl"
"zn\"f\xcfsshcdaukkimfwk"
"uayugezzo\\\"e\"blnrgjaupqhik"
"efd\"apkndelkuvfvwyyatyttkehc"
"ufxq\\\"m\"bwkh\x93kapbqrvxxzbzp\\"
"fgypsbgjak\x79qblbeidavqtddfacq\\i\"h"
"kcfgpiysdxlgejjvgndb\\dovfpqodw"
"\"onpqnssmighipuqgwx\"nrokzgvg"
"vhjrrhfrba\"jebdanzsrdusut\\wbs"
"o\xdakymbaxakys"
"uwxhhzz\\mtmhghjn\\\\tnhzbejj"
"yd\\"
"bpgztp\\lzwpdqju\"it\x35qjhihjv"
"\\my\\b\"klnnto\\\xb3mbtsh"
"ezyvknv\"l\x2bdhhfjcvwzhjgmhwbqd\"\\"
"ftkz\"amoncbsohtaumhl\"wsodemopodq"
"ifv"
"dmzfxvzq"
"sped\"bvmf\"mmevl\"zydannpfny"
"fjxcjwlv\"pnqyrzatsjwsqfidb"
"muc\xfdqouwwnmuixru\\zlhjintplvtee"
"mraqgvmj"
"njopq\"ftcsryo"
"enoh\"n"
"t\"ntjhjc\"nzqh\xf7dcohhlsja\x7dtr"
"flbqcmcoun"
"dxkiysrn\\dyuqoaig"
"nehkzi\"h\"syktzfufotng\xdafqo"
"dzkjg\\hqjk\\\"zfegssjhn"
"sadlsjv"
"vmfnrdb\""
"ac\\bdp\"n"
"qt\x89h"
"lsndeugwvijwde\\vjapbm\\k\\nljuva"
"twpmltdzyynqt\\z\\tnund\x64hm"
"hpcyata\"ocylbkzdnhujh"
"hskzq\"knntuhscex\"q\\y\\vqj\x3an"
"eekwyufvji\\mqgeroekxeyrmymq"
"hl\"durthetvri\xebw\\jxu\"rcmiuy"
"\"fxdnmvnftxwesmvvq\"sjnf\xaabpg\"iary"
"\"\"nksqso"
"ruq\xbezugge\"d\"hwvoxmy\"iawikddxn\"x"
"rxxnlfay"
"stcu\"mv\xabcqts\\fasff"
"yrnvwfkfuzuoysfdzl\x02bk"
"qbdsmlwdbfknivtwijbwtatqfe"
"\"erqh\\csjph"
"ikfv"
"\xd2cuhowmtsxepzsivsvnvsb"
"vj"
"d"
"\\g"
"porvg\x62qghorthnc\"\\"
"tiks\\kr\"\x0fuejvuxzswnwdjscrk"
"xmgfel\"atma\\zaxmlgfjx\"ajmqf"
"oz\\rnxwljc\\\"umhymtwh"
"wlsxxhm\x7fqx\\gjoyrvccfiner\\qloluqv"
"k\\ieq"
"xidjj\"ksnlgnwxlddf\\s\\kuuleb"
"wjpnzgprzv\\maub\x0cj"
"r"
"y"
"\"yecqiei\"ire\\jdhlnnlde\xc5u"
"drvdiycqib"
"egnrbefezcrhgldrtb"
"plqodxv\\zm\"uodwjdocri\x55ucaezutm"
"f\"wexcw\x02ekewx\"alyzn"
"pqajwuk\\\\oatkfqdyspnrupo"
"rkczj\"fzntabpnygrhamk\\km\x68xfkmr"
"wejam\xbac\x37kns"
"qqmlwjk\"gh"
"fdcjsxlgx"
"\\cxvxy\"kb\"\"unubvrsq\\y\\awfhbmarj\\"
"geunceaqr"
"tpkg\"svvngk\\sizlsyaqwf"
"\"pa\\x\x18od\\emgje\\"
"ffiizogjjptubzqfuh\"cctieqcdh"
"yikhiyyrpgglpos"
"h\\"
"jotqojodcv"
"ervsz\x87ade\"fevq\\tcqowt"
"\\y\"fgrxtppkcseeg\\onxjarx\\hyhfn\x5fi"
"kxndlabn\\wwumctuzdcfiitrbnn"
"eoosynwhwm"
"\"c\x04"
"ny\xf6vuwlec"
"ubgxxcvnltzaucrzg\\xcez"
"pnocjvo\\yt"
"fcabrtqog\"a\"zj"
"o\\bha\\mzxmrfltnflv\xea"
"tbfvzwhexsdxjmxejwqqngzixcx"
"wdptrakok\"rgymturdmwfiwu"
"reffmj"
"lqm"
"\\oc"
"p\""
"ygkdnhcuehlx"
"vsqmv\"bqay\"olimtkewedzm"
"isos\x6azbnkojhxoopzetbj\xe1yd"
"yo\\pgayjcyhshztnbdv"
"fg\"h"
"vcmcojolfcf\\\\oxveua"
"w\"vyszhbrr\"jpeddpnrjlca\x69bdbopd\\z"
"jikeqv"
"\"dkjdfrtj"
"is"
"hgzx"
"z\""
"woubquq\\ag\""
"xvclriqa\xe6ltt"
"tfxinifmd"
"mvywzf\"jz"
"vlle"
"c\"rf\"wynhye\x25vccvb\""
"zvuxm"
"\xf2\"jdstiwqer\"h"
"kyogyogcknbzv\x9f\\\\e"
"kspodj\"edpeqgypc"
"oh\\x\\h"
"julb"
"bmcfkidxyilgoy\\xmu\"ig\\qg"
"veqww\"ea"
"fkdbemtgtkpqisrwlxutllxc\"mbelhs"
"e"
"ecn\x50ooprbstnq"
"\"\xe8\"ec\xeah\"qo\\g\"iuqxy\"e\"y\xe7xk\xc6d"
"lwj\"aftrcqj"
"jduij\x97zk\"rftjrixzgscxxllpqx\"bwwb"
"fqcditz"
"f\x19azclj\"rsvaokgvty\"aeq"
"erse\x9etmzhlmhy\x67yftoti"
"lsdw\xb3dmiy\\od"
"x\x6fxbljsjdgd\xaau"
"hjg\\w\"\x78uoqbsdikbjxpip\"w\"jnhzec"
"gk"
"\\zrs\\syur"

View File

@ -0,0 +1,28 @@
Faerun to Tristram = 65
Faerun to Tambi = 129
Faerun to Norrath = 144
Faerun to Snowdin = 71
Faerun to Straylight = 137
Faerun to AlphaCentauri = 3
Faerun to Arbre = 149
Tristram to Tambi = 63
Tristram to Norrath = 4
Tristram to Snowdin = 105
Tristram to Straylight = 125
Tristram to AlphaCentauri = 55
Tristram to Arbre = 14
Tambi to Norrath = 68
Tambi to Snowdin = 52
Tambi to Straylight = 65
Tambi to AlphaCentauri = 22
Tambi to Arbre = 143
Norrath to Snowdin = 8
Norrath to Straylight = 23
Norrath to AlphaCentauri = 136
Norrath to Arbre = 115
Snowdin to Straylight = 101
Snowdin to AlphaCentauri = 84
Snowdin to Arbre = 96
Straylight to AlphaCentauri = 107
Straylight to Arbre = 14
AlphaCentauri to Arbre = 46

View File

@ -0,0 +1 @@
1321131112

View File

@ -0,0 +1 @@
hepxcrrq

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,56 @@
Alice would gain 2 happiness units by sitting next to Bob.
Alice would gain 26 happiness units by sitting next to Carol.
Alice would lose 82 happiness units by sitting next to David.
Alice would lose 75 happiness units by sitting next to Eric.
Alice would gain 42 happiness units by sitting next to Frank.
Alice would gain 38 happiness units by sitting next to George.
Alice would gain 39 happiness units by sitting next to Mallory.
Bob would gain 40 happiness units by sitting next to Alice.
Bob would lose 61 happiness units by sitting next to Carol.
Bob would lose 15 happiness units by sitting next to David.
Bob would gain 63 happiness units by sitting next to Eric.
Bob would gain 41 happiness units by sitting next to Frank.
Bob would gain 30 happiness units by sitting next to George.
Bob would gain 87 happiness units by sitting next to Mallory.
Carol would lose 35 happiness units by sitting next to Alice.
Carol would lose 99 happiness units by sitting next to Bob.
Carol would lose 51 happiness units by sitting next to David.
Carol would gain 95 happiness units by sitting next to Eric.
Carol would gain 90 happiness units by sitting next to Frank.
Carol would lose 16 happiness units by sitting next to George.
Carol would gain 94 happiness units by sitting next to Mallory.
David would gain 36 happiness units by sitting next to Alice.
David would lose 18 happiness units by sitting next to Bob.
David would lose 65 happiness units by sitting next to Carol.
David would lose 18 happiness units by sitting next to Eric.
David would lose 22 happiness units by sitting next to Frank.
David would gain 2 happiness units by sitting next to George.
David would gain 42 happiness units by sitting next to Mallory.
Eric would lose 65 happiness units by sitting next to Alice.
Eric would gain 24 happiness units by sitting next to Bob.
Eric would gain 100 happiness units by sitting next to Carol.
Eric would gain 51 happiness units by sitting next to David.
Eric would gain 21 happiness units by sitting next to Frank.
Eric would gain 55 happiness units by sitting next to George.
Eric would lose 44 happiness units by sitting next to Mallory.
Frank would lose 48 happiness units by sitting next to Alice.
Frank would gain 91 happiness units by sitting next to Bob.
Frank would gain 8 happiness units by sitting next to Carol.
Frank would lose 66 happiness units by sitting next to David.
Frank would gain 97 happiness units by sitting next to Eric.
Frank would lose 9 happiness units by sitting next to George.
Frank would lose 92 happiness units by sitting next to Mallory.
George would lose 44 happiness units by sitting next to Alice.
George would lose 25 happiness units by sitting next to Bob.
George would gain 17 happiness units by sitting next to Carol.
George would gain 92 happiness units by sitting next to David.
George would lose 92 happiness units by sitting next to Eric.
George would gain 18 happiness units by sitting next to Frank.
George would gain 97 happiness units by sitting next to Mallory.
Mallory would gain 92 happiness units by sitting next to Alice.
Mallory would lose 96 happiness units by sitting next to Bob.
Mallory would lose 51 happiness units by sitting next to Carol.
Mallory would lose 81 happiness units by sitting next to David.
Mallory would gain 31 happiness units by sitting next to Eric.
Mallory would lose 73 happiness units by sitting next to Frank.
Mallory would lose 89 happiness units by sitting next to George.

View File

@ -0,0 +1,9 @@
Vixen can fly 8 km/s for 8 seconds, but then must rest for 53 seconds.
Blitzen can fly 13 km/s for 4 seconds, but then must rest for 49 seconds.
Rudolph can fly 20 km/s for 7 seconds, but then must rest for 132 seconds.
Cupid can fly 12 km/s for 4 seconds, but then must rest for 43 seconds.
Donner can fly 9 km/s for 5 seconds, but then must rest for 38 seconds.
Dasher can fly 10 km/s for 4 seconds, but then must rest for 37 seconds.
Comet can fly 3 km/s for 37 seconds, but then must rest for 76 seconds.
Prancer can fly 9 km/s for 12 seconds, but then must rest for 97 seconds.
Dancer can fly 37 km/s for 1 seconds, but then must rest for 36 seconds.

View File

@ -0,0 +1,4 @@
Sugar: capacity 3, durability 0, flavor 0, texture -3, calories 2
Sprinkles: capacity -3, durability 3, flavor 0, texture 0, calories 9
Candy: capacity -1, durability 0, flavor 4, texture 0, calories 1
Chocolate: capacity 0, durability 0, flavor -2, texture 2, calories 8

500
AOC2015/input2015/day16.in Normal file
View File

@ -0,0 +1,500 @@
Sue 1: goldfish: 6, trees: 9, akitas: 0
Sue 2: goldfish: 7, trees: 1, akitas: 0
Sue 3: cars: 10, akitas: 6, perfumes: 7
Sue 4: perfumes: 2, vizslas: 0, cars: 6
Sue 5: goldfish: 1, trees: 3, perfumes: 10
Sue 6: children: 9, vizslas: 7, cars: 9
Sue 7: cars: 6, vizslas: 5, cats: 3
Sue 8: akitas: 10, vizslas: 9, children: 3
Sue 9: vizslas: 8, cats: 2, trees: 1
Sue 10: perfumes: 10, trees: 6, cars: 4
Sue 11: cars: 9, children: 1, cats: 1
Sue 12: pomeranians: 4, akitas: 6, goldfish: 8
Sue 13: cats: 10, children: 5, trees: 9
Sue 14: perfumes: 8, vizslas: 3, samoyeds: 1
Sue 15: vizslas: 2, perfumes: 8, trees: 3
Sue 16: pomeranians: 10, trees: 9, samoyeds: 4
Sue 17: akitas: 7, vizslas: 0, goldfish: 6
Sue 18: trees: 5, vizslas: 9, cars: 0
Sue 19: akitas: 3, goldfish: 9, trees: 10
Sue 20: perfumes: 7, samoyeds: 3, vizslas: 10
Sue 21: perfumes: 7, pomeranians: 10, akitas: 8
Sue 22: vizslas: 6, trees: 8, akitas: 10
Sue 23: goldfish: 0, trees: 4, children: 9
Sue 24: goldfish: 7, pomeranians: 9, akitas: 4
Sue 25: cars: 7, trees: 4, pomeranians: 4
Sue 26: trees: 9, akitas: 9, pomeranians: 7
Sue 27: samoyeds: 0, perfumes: 9, goldfish: 10
Sue 28: cars: 5, trees: 7, vizslas: 1
Sue 29: perfumes: 9, trees: 1, children: 6
Sue 30: goldfish: 10, trees: 0, cars: 4
Sue 31: akitas: 2, perfumes: 5, goldfish: 5
Sue 32: goldfish: 0, akitas: 5, trees: 0
Sue 33: vizslas: 2, akitas: 2, samoyeds: 3
Sue 34: goldfish: 8, perfumes: 5, cars: 3
Sue 35: akitas: 1, cats: 4, trees: 9
Sue 36: cars: 4, vizslas: 4, goldfish: 7
Sue 37: akitas: 5, perfumes: 7, trees: 3
Sue 38: goldfish: 10, trees: 2, vizslas: 9
Sue 39: goldfish: 4, pomeranians: 5, vizslas: 5
Sue 40: perfumes: 5, samoyeds: 4, akitas: 6
Sue 41: goldfish: 9, cars: 4, perfumes: 5
Sue 42: trees: 6, pomeranians: 9, goldfish: 8
Sue 43: perfumes: 7, pomeranians: 1, akitas: 2
Sue 44: vizslas: 9, cars: 5, cats: 0
Sue 45: akitas: 1, goldfish: 6, trees: 0
Sue 46: akitas: 5, vizslas: 8, trees: 2
Sue 47: trees: 9, akitas: 2, vizslas: 9
Sue 48: goldfish: 10, trees: 5, akitas: 2
Sue 49: cars: 7, vizslas: 2, perfumes: 6
Sue 50: akitas: 5, goldfish: 6, perfumes: 0
Sue 51: cars: 9, cats: 7, trees: 5
Sue 52: akitas: 7, goldfish: 10, cars: 0
Sue 53: cars: 10, cats: 4, perfumes: 2
Sue 54: goldfish: 2, pomeranians: 5, perfumes: 10
Sue 55: vizslas: 5, akitas: 4, cars: 8
Sue 56: goldfish: 9, vizslas: 4, akitas: 5
Sue 57: perfumes: 8, samoyeds: 7, cars: 9
Sue 58: cars: 5, akitas: 7, perfumes: 8
Sue 59: samoyeds: 8, cars: 10, vizslas: 10
Sue 60: akitas: 6, samoyeds: 0, goldfish: 3
Sue 61: trees: 8, pomeranians: 0, akitas: 2
Sue 62: trees: 1, perfumes: 3, vizslas: 4
Sue 63: vizslas: 6, samoyeds: 9, goldfish: 8
Sue 64: goldfish: 7, trees: 6, vizslas: 3
Sue 65: cars: 1, vizslas: 0, akitas: 6
Sue 66: cats: 6, pomeranians: 4, cars: 9
Sue 67: trees: 10, pomeranians: 7, samoyeds: 3
Sue 68: pomeranians: 5, goldfish: 9, akitas: 1
Sue 69: akitas: 1, vizslas: 0, trees: 9
Sue 70: cats: 4, goldfish: 4, vizslas: 10
Sue 71: vizslas: 7, perfumes: 7, trees: 8
Sue 72: children: 2, vizslas: 9, cats: 3
Sue 73: cars: 8, pomeranians: 0, perfumes: 6
Sue 74: akitas: 1, pomeranians: 8, vizslas: 10
Sue 75: vizslas: 5, perfumes: 5, cars: 7
Sue 76: cars: 3, vizslas: 3, goldfish: 0
Sue 77: akitas: 9, samoyeds: 1, pomeranians: 3
Sue 78: trees: 0, vizslas: 0, akitas: 6
Sue 79: pomeranians: 9, cars: 1, perfumes: 0
Sue 80: perfumes: 10, trees: 1, cats: 0
Sue 81: goldfish: 5, akitas: 9, trees: 0
Sue 82: vizslas: 1, akitas: 6, children: 4
Sue 83: samoyeds: 7, perfumes: 8, pomeranians: 4
Sue 84: perfumes: 3, children: 3, cats: 7
Sue 85: goldfish: 9, trees: 3, cars: 9
Sue 86: cars: 0, perfumes: 9, vizslas: 0
Sue 87: children: 3, trees: 4, akitas: 3
Sue 88: trees: 1, samoyeds: 1, goldfish: 0
Sue 89: akitas: 8, cars: 3, vizslas: 9
Sue 90: pomeranians: 9, trees: 9, goldfish: 8
Sue 91: goldfish: 7, trees: 10, children: 0
Sue 92: cats: 9, cars: 7, perfumes: 7
Sue 93: vizslas: 2, goldfish: 7, cats: 9
Sue 94: akitas: 5, cars: 8, vizslas: 4
Sue 95: goldfish: 7, vizslas: 1, perfumes: 2
Sue 96: goldfish: 5, trees: 6, perfumes: 10
Sue 97: trees: 0, perfumes: 7, cars: 0
Sue 98: cars: 2, perfumes: 6, trees: 8
Sue 99: trees: 10, children: 7, cats: 9
Sue 100: samoyeds: 5, goldfish: 6, vizslas: 6
Sue 101: cars: 10, perfumes: 9, vizslas: 3
Sue 102: pomeranians: 6, trees: 1, samoyeds: 4
Sue 103: cars: 2, perfumes: 1, goldfish: 5
Sue 104: goldfish: 2, cars: 8, pomeranians: 2
Sue 105: goldfish: 6, vizslas: 0, trees: 10
Sue 106: trees: 10, akitas: 10, pomeranians: 0
Sue 107: vizslas: 2, pomeranians: 10, trees: 3
Sue 108: children: 3, vizslas: 8, akitas: 7
Sue 109: perfumes: 2, akitas: 2, samoyeds: 3
Sue 110: goldfish: 7, trees: 1, perfumes: 1
Sue 111: akitas: 2, cars: 9, perfumes: 2
Sue 112: children: 10, cars: 0, akitas: 3
Sue 113: akitas: 9, vizslas: 4, children: 3
Sue 114: pomeranians: 3, trees: 2, goldfish: 5
Sue 115: perfumes: 8, cars: 6, trees: 0
Sue 116: samoyeds: 6, children: 3, pomeranians: 1
Sue 117: goldfish: 1, trees: 2, akitas: 1
Sue 118: goldfish: 10, akitas: 10, samoyeds: 0
Sue 119: vizslas: 10, perfumes: 6, cars: 0
Sue 120: cars: 2, perfumes: 9, goldfish: 5
Sue 121: vizslas: 2, trees: 2, cars: 6
Sue 122: vizslas: 3, trees: 0, akitas: 2
Sue 123: akitas: 5, samoyeds: 7, goldfish: 1
Sue 124: goldfish: 8, samoyeds: 7, trees: 8
Sue 125: trees: 3, goldfish: 8, perfumes: 5
Sue 126: cats: 3, vizslas: 9, goldfish: 0
Sue 127: pomeranians: 9, goldfish: 3, perfumes: 6
Sue 128: vizslas: 4, cars: 8, goldfish: 5
Sue 129: vizslas: 8, children: 5, perfumes: 8
Sue 130: cars: 7, children: 7, cats: 3
Sue 131: perfumes: 1, akitas: 8, vizslas: 9
Sue 132: perfumes: 7, samoyeds: 10, pomeranians: 6
Sue 133: cars: 5, perfumes: 3, goldfish: 7
Sue 134: perfumes: 9, akitas: 2, cats: 3
Sue 135: perfumes: 1, trees: 9, vizslas: 9
Sue 136: akitas: 7, cars: 3, perfumes: 7
Sue 137: vizslas: 9, goldfish: 8, cars: 5
Sue 138: trees: 0, samoyeds: 1, cars: 3
Sue 139: cars: 0, perfumes: 6, trees: 0
Sue 140: pomeranians: 4, cars: 1, perfumes: 7
Sue 141: vizslas: 10, akitas: 8, cats: 3
Sue 142: trees: 1, cats: 6, vizslas: 5
Sue 143: pomeranians: 9, cars: 7, perfumes: 9
Sue 144: cars: 0, perfumes: 2, pomeranians: 1
Sue 145: trees: 1, goldfish: 9, perfumes: 8
Sue 146: cars: 8, children: 5, vizslas: 2
Sue 147: perfumes: 2, goldfish: 5, cars: 0
Sue 148: akitas: 2, perfumes: 7, pomeranians: 6
Sue 149: goldfish: 8, cars: 0, trees: 1
Sue 150: akitas: 6, perfumes: 5, trees: 0
Sue 151: vizslas: 6, samoyeds: 8, akitas: 10
Sue 152: trees: 7, akitas: 7, perfumes: 6
Sue 153: goldfish: 9, cats: 9, cars: 3
Sue 154: vizslas: 10, trees: 0, cars: 9
Sue 155: perfumes: 3, children: 2, goldfish: 1
Sue 156: goldfish: 7, perfumes: 5, akitas: 6
Sue 157: cats: 10, trees: 1, goldfish: 0
Sue 158: cats: 7, children: 7, vizslas: 6
Sue 159: perfumes: 9, akitas: 0, cars: 0
Sue 160: akitas: 3, goldfish: 10, pomeranians: 2
Sue 161: goldfish: 10, cars: 6, perfumes: 3
Sue 162: trees: 0, cars: 9, goldfish: 1
Sue 163: cars: 8, perfumes: 9, vizslas: 5
Sue 164: goldfish: 1, trees: 10, children: 6
Sue 165: goldfish: 0, vizslas: 6, cars: 0
Sue 166: akitas: 5, vizslas: 1, cars: 5
Sue 167: vizslas: 1, samoyeds: 1, children: 4
Sue 168: samoyeds: 7, vizslas: 7, akitas: 3
Sue 169: goldfish: 3, cats: 9, trees: 2
Sue 170: cars: 5, perfumes: 9, vizslas: 5
Sue 171: goldfish: 7, cars: 6, perfumes: 10
Sue 172: cats: 6, akitas: 1, children: 6
Sue 173: cats: 4, goldfish: 1, children: 3
Sue 174: cars: 2, pomeranians: 2, vizslas: 7
Sue 175: trees: 0, children: 4, goldfish: 7
Sue 176: children: 8, cars: 5, cats: 9
Sue 177: pomeranians: 4, vizslas: 7, trees: 3
Sue 178: vizslas: 6, perfumes: 10, akitas: 6
Sue 179: cars: 4, akitas: 4, trees: 4
Sue 180: akitas: 8, goldfish: 6, trees: 9
Sue 181: perfumes: 3, vizslas: 10, cars: 3
Sue 182: vizslas: 3, samoyeds: 3, goldfish: 7
Sue 183: goldfish: 10, perfumes: 2, cats: 1
Sue 184: goldfish: 5, trees: 1, perfumes: 1
Sue 185: vizslas: 10, trees: 9, perfumes: 2
Sue 186: goldfish: 6, perfumes: 9, trees: 1
Sue 187: cars: 0, trees: 9, goldfish: 6
Sue 188: cars: 0, trees: 1, vizslas: 9
Sue 189: akitas: 7, vizslas: 2, trees: 0
Sue 190: pomeranians: 5, perfumes: 8, akitas: 10
Sue 191: vizslas: 5, akitas: 3, cats: 0
Sue 192: children: 1, trees: 1, cars: 2
Sue 193: cars: 3, goldfish: 9, trees: 2
Sue 194: samoyeds: 3, akitas: 4, perfumes: 8
Sue 195: trees: 1, vizslas: 8, akitas: 10
Sue 196: akitas: 6, cars: 5, pomeranians: 0
Sue 197: akitas: 5, vizslas: 5, cats: 1
Sue 198: trees: 4, cars: 6, goldfish: 6
Sue 199: cats: 7, cars: 5, goldfish: 6
Sue 200: vizslas: 4, cats: 0, akitas: 9
Sue 201: pomeranians: 1, perfumes: 4, children: 2
Sue 202: cats: 1, perfumes: 4, vizslas: 3
Sue 203: vizslas: 1, akitas: 9, children: 5
Sue 204: perfumes: 8, cars: 7, trees: 4
Sue 205: perfumes: 7, pomeranians: 5, cats: 9
Sue 206: vizslas: 8, trees: 2, akitas: 2
Sue 207: akitas: 6, vizslas: 2, perfumes: 10
Sue 208: vizslas: 1, children: 7, akitas: 4
Sue 209: perfumes: 4, trees: 2, children: 1
Sue 210: goldfish: 0, vizslas: 2, samoyeds: 10
Sue 211: cars: 8, perfumes: 3, trees: 1
Sue 212: cars: 8, samoyeds: 5, pomeranians: 8
Sue 213: akitas: 2, goldfish: 8, pomeranians: 2
Sue 214: akitas: 6, pomeranians: 2, cars: 0
Sue 215: trees: 10, pomeranians: 4, vizslas: 0
Sue 216: perfumes: 0, cars: 8, trees: 0
Sue 217: samoyeds: 8, akitas: 7, children: 10
Sue 218: perfumes: 1, vizslas: 6, children: 0
Sue 219: children: 1, goldfish: 4, trees: 1
Sue 220: akitas: 10, goldfish: 10, trees: 5
Sue 221: cars: 7, pomeranians: 6, perfumes: 3
Sue 222: vizslas: 6, children: 0, akitas: 5
Sue 223: perfumes: 9, cars: 1, trees: 6
Sue 224: pomeranians: 1, trees: 0, vizslas: 0
Sue 225: goldfish: 8, akitas: 4, perfumes: 10
Sue 226: pomeranians: 7, cats: 7, children: 4
Sue 227: trees: 0, akitas: 2, perfumes: 1
Sue 228: vizslas: 6, cars: 10, perfumes: 9
Sue 229: cars: 0, perfumes: 6, trees: 4
Sue 230: pomeranians: 7, perfumes: 5, trees: 2
Sue 231: goldfish: 9, cars: 6, trees: 7
Sue 232: akitas: 1, vizslas: 5, cars: 3
Sue 233: akitas: 7, samoyeds: 2, vizslas: 5
Sue 234: akitas: 6, cats: 8, pomeranians: 0
Sue 235: pomeranians: 5, akitas: 5, vizslas: 3
Sue 236: goldfish: 5, trees: 6, akitas: 5
Sue 237: goldfish: 9, perfumes: 5, cats: 5
Sue 238: cats: 8, goldfish: 4, perfumes: 0
Sue 239: samoyeds: 8, children: 6, pomeranians: 6
Sue 240: akitas: 4, samoyeds: 10, trees: 8
Sue 241: trees: 2, goldfish: 8, cars: 1
Sue 242: perfumes: 2, cars: 0, akitas: 10
Sue 243: pomeranians: 1, cars: 7, trees: 2
Sue 244: trees: 9, vizslas: 2, akitas: 10
Sue 245: cars: 9, pomeranians: 4, trees: 0
Sue 246: cars: 9, pomeranians: 7, perfumes: 1
Sue 247: trees: 0, goldfish: 1, akitas: 8
Sue 248: vizslas: 1, cats: 4, akitas: 4
Sue 249: cats: 6, children: 4, goldfish: 9
Sue 250: vizslas: 1, cars: 10, samoyeds: 5
Sue 251: cars: 0, goldfish: 1, vizslas: 7
Sue 252: cars: 7, akitas: 9, vizslas: 10
Sue 253: akitas: 7, vizslas: 2, perfumes: 5
Sue 254: vizslas: 10, akitas: 5, samoyeds: 0
Sue 255: pomeranians: 8, goldfish: 0, cats: 6
Sue 256: cars: 10, goldfish: 8, vizslas: 9
Sue 257: goldfish: 3, perfumes: 9, cats: 3
Sue 258: trees: 6, goldfish: 6, cars: 6
Sue 259: trees: 0, goldfish: 2, perfumes: 8
Sue 260: trees: 5, akitas: 0, cars: 0
Sue 261: pomeranians: 9, goldfish: 7, perfumes: 8
Sue 262: perfumes: 8, vizslas: 6, goldfish: 2
Sue 263: vizslas: 6, trees: 5, goldfish: 9
Sue 264: vizslas: 4, perfumes: 7, cars: 9
Sue 265: goldfish: 10, trees: 3, perfumes: 1
Sue 266: trees: 10, akitas: 8, goldfish: 8
Sue 267: goldfish: 4, trees: 0, samoyeds: 9
Sue 268: vizslas: 1, trees: 0, goldfish: 8
Sue 269: cars: 2, perfumes: 10, goldfish: 5
Sue 270: perfumes: 7, cars: 2, vizslas: 1
Sue 271: cars: 6, perfumes: 10, goldfish: 6
Sue 272: samoyeds: 4, goldfish: 2, vizslas: 9
Sue 273: perfumes: 4, goldfish: 4, vizslas: 1
Sue 274: children: 4, cars: 4, perfumes: 3
Sue 275: children: 8, vizslas: 3, trees: 2
Sue 276: vizslas: 5, children: 7, perfumes: 3
Sue 277: perfumes: 3, cats: 4, vizslas: 5
Sue 278: cars: 1, samoyeds: 10, akitas: 2
Sue 279: trees: 9, perfumes: 9, cars: 10
Sue 280: vizslas: 5, trees: 0, perfumes: 6
Sue 281: vizslas: 3, akitas: 10, pomeranians: 7
Sue 282: trees: 1, children: 2, akitas: 8
Sue 283: akitas: 9, goldfish: 6, cats: 5
Sue 284: cars: 9, children: 10, pomeranians: 2
Sue 285: pomeranians: 0, perfumes: 4, cars: 7
Sue 286: perfumes: 0, vizslas: 10, akitas: 10
Sue 287: cats: 2, perfumes: 3, trees: 5
Sue 288: akitas: 9, vizslas: 8, samoyeds: 9
Sue 289: perfumes: 6, children: 2, cars: 7
Sue 290: akitas: 0, children: 5, cars: 5
Sue 291: cars: 4, perfumes: 0, trees: 1
Sue 292: cats: 0, cars: 8, perfumes: 6
Sue 293: akitas: 9, cats: 5, children: 5
Sue 294: akitas: 4, cars: 9, goldfish: 3
Sue 295: cars: 2, akitas: 3, perfumes: 7
Sue 296: perfumes: 4, cars: 7, goldfish: 10
Sue 297: trees: 5, akitas: 8, vizslas: 1
Sue 298: perfumes: 0, goldfish: 6, trees: 9
Sue 299: perfumes: 6, samoyeds: 8, cars: 1
Sue 300: goldfish: 10, perfumes: 4, akitas: 2
Sue 301: cars: 3, trees: 0, goldfish: 8
Sue 302: perfumes: 7, samoyeds: 2, vizslas: 7
Sue 303: children: 10, goldfish: 7, perfumes: 2
Sue 304: samoyeds: 8, vizslas: 2, cars: 1
Sue 305: trees: 1, cats: 0, goldfish: 10
Sue 306: trees: 4, perfumes: 2, cars: 7
Sue 307: cars: 6, vizslas: 2, children: 6
Sue 308: vizslas: 2, cars: 0, akitas: 7
Sue 309: cars: 3, vizslas: 8, perfumes: 6
Sue 310: goldfish: 7, perfumes: 7, vizslas: 3
Sue 311: pomeranians: 10, trees: 2, cars: 0
Sue 312: samoyeds: 2, vizslas: 9, akitas: 1
Sue 313: cars: 4, pomeranians: 7, goldfish: 7
Sue 314: akitas: 2, pomeranians: 9, samoyeds: 10
Sue 315: akitas: 3, vizslas: 2, trees: 0
Sue 316: cars: 0, perfumes: 4, pomeranians: 6
Sue 317: akitas: 10, goldfish: 3, pomeranians: 7
Sue 318: cars: 9, trees: 0, pomeranians: 9
Sue 319: akitas: 3, vizslas: 7, children: 10
Sue 320: vizslas: 0, akitas: 8, pomeranians: 4
Sue 321: cars: 10, akitas: 9, vizslas: 3
Sue 322: perfumes: 0, akitas: 8, vizslas: 6
Sue 323: vizslas: 10, perfumes: 5, cars: 3
Sue 324: akitas: 0, goldfish: 6, vizslas: 7
Sue 325: perfumes: 9, vizslas: 5, pomeranians: 2
Sue 326: vizslas: 6, goldfish: 10, pomeranians: 8
Sue 327: vizslas: 10, cars: 1, akitas: 7
Sue 328: trees: 1, perfumes: 10, cars: 10
Sue 329: pomeranians: 5, samoyeds: 3, cars: 10
Sue 330: akitas: 6, cars: 1, pomeranians: 4
Sue 331: cars: 5, children: 2, trees: 0
Sue 332: vizslas: 6, pomeranians: 1, perfumes: 0
Sue 333: akitas: 7, trees: 1, cats: 9
Sue 334: vizslas: 6, goldfish: 9, akitas: 7
Sue 335: akitas: 3, samoyeds: 3, cars: 3
Sue 336: samoyeds: 10, perfumes: 9, trees: 6
Sue 337: vizslas: 2, cars: 9, akitas: 0
Sue 338: akitas: 6, perfumes: 9, vizslas: 3
Sue 339: cars: 3, samoyeds: 8, trees: 2
Sue 340: cats: 7, perfumes: 8, cars: 9
Sue 341: goldfish: 9, perfumes: 5, cars: 10
Sue 342: trees: 0, akitas: 3, perfumes: 5
Sue 343: perfumes: 2, children: 0, cars: 6
Sue 344: goldfish: 8, trees: 8, perfumes: 0
Sue 345: perfumes: 6, cars: 6, goldfish: 5
Sue 346: vizslas: 8, trees: 1, cars: 6
Sue 347: cars: 0, cats: 3, perfumes: 7
Sue 348: children: 7, perfumes: 10, cars: 7
Sue 349: pomeranians: 8, akitas: 5, children: 2
Sue 350: perfumes: 9, pomeranians: 4, goldfish: 3
Sue 351: perfumes: 8, pomeranians: 7, trees: 4
Sue 352: samoyeds: 1, goldfish: 9, akitas: 8
Sue 353: akitas: 6, goldfish: 10, vizslas: 8
Sue 354: akitas: 7, cars: 2, goldfish: 6
Sue 355: cars: 3, goldfish: 6, akitas: 5
Sue 356: akitas: 2, goldfish: 9, pomeranians: 1
Sue 357: goldfish: 10, cars: 6, pomeranians: 9
Sue 358: trees: 0, children: 2, goldfish: 6
Sue 359: samoyeds: 3, cars: 2, akitas: 4
Sue 360: trees: 1, goldfish: 8, cars: 5
Sue 361: akitas: 5, vizslas: 7, perfumes: 1
Sue 362: cats: 5, vizslas: 9, children: 4
Sue 363: goldfish: 9, perfumes: 3, vizslas: 9
Sue 364: children: 7, samoyeds: 2, pomeranians: 10
Sue 365: perfumes: 9, akitas: 10, pomeranians: 4
Sue 366: cars: 10, trees: 3, cats: 4
Sue 367: vizslas: 6, akitas: 10, perfumes: 5
Sue 368: akitas: 9, vizslas: 9, children: 4
Sue 369: goldfish: 8, trees: 2, perfumes: 5
Sue 370: trees: 0, children: 4, cars: 8
Sue 371: cats: 6, perfumes: 0, vizslas: 2
Sue 372: akitas: 7, cars: 5, perfumes: 3
Sue 373: cars: 0, perfumes: 4, pomeranians: 10
Sue 374: akitas: 5, perfumes: 5, vizslas: 2
Sue 375: goldfish: 7, trees: 10, pomeranians: 7
Sue 376: cars: 8, trees: 1, pomeranians: 8
Sue 377: cars: 0, akitas: 9, vizslas: 1
Sue 378: akitas: 5, perfumes: 3, vizslas: 7
Sue 379: trees: 2, goldfish: 8, pomeranians: 8
Sue 380: akitas: 5, cars: 9, perfumes: 9
Sue 381: cars: 2, perfumes: 6, trees: 3
Sue 382: perfumes: 6, vizslas: 2, goldfish: 9
Sue 383: akitas: 8, vizslas: 7, cats: 1
Sue 384: akitas: 9, trees: 10, vizslas: 7
Sue 385: cars: 0, perfumes: 7, vizslas: 2
Sue 386: vizslas: 10, akitas: 4, perfumes: 9
Sue 387: perfumes: 6, pomeranians: 5, samoyeds: 8
Sue 388: vizslas: 10, trees: 9, goldfish: 9
Sue 389: goldfish: 8, akitas: 4, perfumes: 10
Sue 390: goldfish: 6, trees: 8, akitas: 1
Sue 391: vizslas: 4, akitas: 10, goldfish: 7
Sue 392: akitas: 1, vizslas: 6, samoyeds: 5
Sue 393: trees: 6, cars: 3, akitas: 5
Sue 394: goldfish: 9, trees: 3, cars: 5
Sue 395: akitas: 6, samoyeds: 4, goldfish: 4
Sue 396: akitas: 2, trees: 1, cats: 5
Sue 397: cars: 0, children: 9, trees: 10
Sue 398: pomeranians: 3, samoyeds: 9, goldfish: 10
Sue 399: cars: 7, akitas: 4, goldfish: 8
Sue 400: cars: 4, akitas: 5, vizslas: 4
Sue 401: pomeranians: 5, akitas: 8, vizslas: 5
Sue 402: cats: 7, cars: 6, goldfish: 6
Sue 403: samoyeds: 8, perfumes: 4, cars: 5
Sue 404: akitas: 10, goldfish: 4, trees: 2
Sue 405: trees: 8, perfumes: 1, cars: 2
Sue 406: trees: 0, perfumes: 9, pomeranians: 10
Sue 407: perfumes: 4, trees: 7, goldfish: 3
Sue 408: akitas: 1, perfumes: 3, cars: 5
Sue 409: trees: 6, samoyeds: 3, cars: 9
Sue 410: vizslas: 3, goldfish: 5, akitas: 7
Sue 411: goldfish: 10, trees: 1, vizslas: 9
Sue 412: cars: 0, akitas: 6, trees: 6
Sue 413: goldfish: 7, trees: 0, cars: 3
Sue 414: pomeranians: 10, samoyeds: 3, cars: 10
Sue 415: perfumes: 6, trees: 9, cars: 4
Sue 416: trees: 2, cars: 4, goldfish: 8
Sue 417: goldfish: 2, cars: 9, cats: 5
Sue 418: vizslas: 1, cars: 9, akitas: 0
Sue 419: perfumes: 6, cats: 3, children: 9
Sue 420: cats: 5, goldfish: 7, akitas: 9
Sue 421: trees: 1, samoyeds: 6, pomeranians: 1
Sue 422: trees: 10, goldfish: 6, children: 7
Sue 423: cars: 8, goldfish: 7, vizslas: 3
Sue 424: samoyeds: 9, akitas: 7, trees: 5
Sue 425: akitas: 5, children: 4, perfumes: 9
Sue 426: goldfish: 1, children: 9, cats: 2
Sue 427: vizslas: 9, akitas: 7, goldfish: 9
Sue 428: pomeranians: 7, akitas: 5, vizslas: 1
Sue 429: vizslas: 7, goldfish: 7, cars: 9
Sue 430: trees: 7, perfumes: 0, pomeranians: 5
Sue 431: children: 9, perfumes: 5, vizslas: 7
Sue 432: trees: 6, samoyeds: 7, cats: 1
Sue 433: goldfish: 5, trees: 5, children: 6
Sue 434: goldfish: 9, akitas: 7, cars: 3
Sue 435: samoyeds: 10, perfumes: 2, cars: 0
Sue 436: akitas: 5, pomeranians: 4, perfumes: 7
Sue 437: vizslas: 5, cats: 6, perfumes: 5
Sue 438: trees: 2, goldfish: 6, vizslas: 7
Sue 439: samoyeds: 8, pomeranians: 10, goldfish: 1
Sue 440: akitas: 6, children: 9, perfumes: 4
Sue 441: cars: 2, goldfish: 9, children: 0
Sue 442: goldfish: 7, cars: 2, vizslas: 8
Sue 443: goldfish: 6, samoyeds: 3, perfumes: 2
Sue 444: trees: 2, goldfish: 7, cars: 8
Sue 445: trees: 2, pomeranians: 0, children: 0
Sue 446: perfumes: 4, akitas: 4, goldfish: 6
Sue 447: vizslas: 7, akitas: 9, cars: 3
Sue 448: goldfish: 6, trees: 9, cars: 0
Sue 449: samoyeds: 7, perfumes: 4, vizslas: 10
Sue 450: akitas: 7, cars: 10, goldfish: 7
Sue 451: goldfish: 4, children: 7, pomeranians: 4
Sue 452: cats: 4, vizslas: 6, trees: 7
Sue 453: cars: 1, trees: 10, goldfish: 9
Sue 454: trees: 2, goldfish: 3, vizslas: 10
Sue 455: pomeranians: 9, vizslas: 3, akitas: 2
Sue 456: vizslas: 10, akitas: 2, goldfish: 1
Sue 457: trees: 5, cats: 5, children: 8
Sue 458: cars: 6, goldfish: 3, akitas: 9
Sue 459: goldfish: 7, akitas: 2, cats: 7
Sue 460: akitas: 1, cars: 5, children: 8
Sue 461: cars: 8, perfumes: 0, goldfish: 6
Sue 462: pomeranians: 6, cats: 2, perfumes: 6
Sue 463: vizslas: 7, perfumes: 3, goldfish: 3
Sue 464: akitas: 10, goldfish: 10, trees: 1
Sue 465: vizslas: 0, akitas: 2, trees: 2
Sue 466: perfumes: 6, akitas: 8, cars: 2
Sue 467: goldfish: 1, cars: 10, perfumes: 3
Sue 468: goldfish: 4, trees: 2, cars: 9
Sue 469: perfumes: 6, pomeranians: 0, vizslas: 10
Sue 470: samoyeds: 8, children: 0, akitas: 7
Sue 471: children: 3, goldfish: 9, cats: 9
Sue 472: samoyeds: 0, goldfish: 0, trees: 0
Sue 473: trees: 3, goldfish: 4, vizslas: 1
Sue 474: perfumes: 10, cars: 3, trees: 7
Sue 475: akitas: 5, vizslas: 4, goldfish: 5
Sue 476: children: 2, akitas: 7, vizslas: 3
Sue 477: vizslas: 6, pomeranians: 9, trees: 6
Sue 478: vizslas: 7, pomeranians: 6, akitas: 7
Sue 479: trees: 2, perfumes: 2, children: 2
Sue 480: cars: 8, cats: 5, vizslas: 0
Sue 481: trees: 5, goldfish: 0, akitas: 3
Sue 482: cars: 8, perfumes: 6, goldfish: 10
Sue 483: goldfish: 0, cars: 3, perfumes: 10
Sue 484: pomeranians: 1, samoyeds: 1, perfumes: 3
Sue 485: trees: 0, akitas: 2, vizslas: 4
Sue 486: cars: 3, vizslas: 8, goldfish: 1
Sue 487: pomeranians: 9, vizslas: 2, children: 10
Sue 488: akitas: 6, vizslas: 10, perfumes: 9
Sue 489: goldfish: 6, vizslas: 4, cars: 2
Sue 490: vizslas: 10, cats: 8, samoyeds: 1
Sue 491: cats: 9, cars: 1, perfumes: 10
Sue 492: goldfish: 6, cars: 9, pomeranians: 9
Sue 493: children: 10, goldfish: 10, vizslas: 0
Sue 494: pomeranians: 5, cars: 0, vizslas: 0
Sue 495: vizslas: 7, perfumes: 6, samoyeds: 3
Sue 496: trees: 1, cats: 4, cars: 10
Sue 497: cats: 1, perfumes: 0, cars: 7
Sue 498: perfumes: 7, vizslas: 6, cats: 9
Sue 499: vizslas: 8, perfumes: 1, akitas: 3
Sue 500: perfumes: 4, cars: 9, trees: 4

View File

@ -0,0 +1,20 @@
33
14
18
20
45
35
16
35
1
13
18
13
50
44
48
6
24
41
30
42

100
AOC2015/input2015/day18.in Normal file
View File

@ -0,0 +1,100 @@
#..####.##..#...#..#...#...###.#.#.#..#....#.##..#...##...#..#.....##..#####....#.##..##....##.#....
.#..#..#..#.###...##..#.##.....#...#..##....#####.##............####.#..######..#.#.##.#...#..#...##
#.....##.##.##.#..##.#..###...#.#.#..##..###.####.####.#.####.#...##.#..###.........#.###...#....###
#.###..#######..##..#.....##.#.#.###.#.##..#.##..##.##.#.##...###.#...#.#####.#.##..#.#####..#.#####
#.##.##.###.##..###.#.##.##...##.#.#..##..###.########.#.####..####...#####...#..#...##....##.##.##.
..#.#.#.#..#.#.###....###...#...#.##..####.###.....#.####.###.###.#......#.#.###..#..#.#....#.#####.
...#.###.#....#.###...#.#.#...#...#.#####....#....#...#####..#..#.#..######..#.##.#.##.#..###.#...##
.###...#...#.#..#.#.####.#...#.....##...###.#....#..##.###....#.##....###..#.#####...###.#.##.####..
#.#....##.#.....#####.#.##..#######.#.####..###.##.#####.##.#...###...#.#...###..#...#.#.###.###.###
...##.##.....##..#.##...#.#...#...#.#####.#...#.#.#.#####.##.#...#.#..##.##..#...#....####..###.###.
#..#....######...#...###.#....#####....#.#.#....#....#.#######.#####..#....#....#.##..#.##.###..#...
#####.#.######.#.#####.#..##..##..####..#....#...#######....##..##.#..###..###.###..###...#...######
#...##..##...###....##..##.##..#.#.#.#....##.#.......###..###..###...###..##.##.##.#.#.#..#.#..#..#.
..###....##.###..#.#..########...###...##..#######....##..###..#####.##.#....###..##.##.##.#...##.#.
###..#.#..#.#.##.##...##.....#..###.#..##.##.#....##.#.######..##..#.#.##.###...#..####...#.#..#.###
.######....#..##..#.####.##..#.#..#.#..#....#..##.#..#.#...####..#....#.####.#.###.#...####.#...#.#.
#.######.##..###.###..#..###.#...#..#...#...###.##....#.#......#...#.##.#.###..#.#####.#.#..###..#.#
...#..#...####..###.########.....###.###.#..##.##....######..#..#.....#.##.##.#..##..#..##...#..#..#
#..#..##..#.#.########.##.#.####..#.#####.#.###.##....###..##..#.#.###..#.##..##.##.####...######.##
.######.###....#...##...#..#....##..#.#...###.######.##...#....##.##.#.#.##..#...###.###.#....#..##.
####.#.##..##.##.###...#.###.##..##....###..####.##..#.#.##..###.#..##...####...#..####.#.#..##...#.
.#.#..#.....##...#..#...#.#...#.#.##..#....#..#......#####.#######....#.#..#..###..##.#.########..##
.##.#..#..##..#..####.#...####...#...#..##.#..###.#..######..#.#...###.##...#..#####..##.#..##.#.##.
.###..##.##.##....###.###..#.#...##.#.#...#.#######.####..#..###.#######.#...#.#...#.##...#..####..#
##.########..#..#....#.###..##.##.#.##.#..#......####..##.##.#..####..#####..#.....#####.###..#.#.#.
.#..####..##.#.#..#####.##..#..#.#....#.#####.#####...######........##.##..##.#.#.###..#.#.#.#..##.#
.##..##..#.######..###....#.#.###.#........#..###..#.########.....#.##...#.....#..#...##...#..#.###.
##.##.#..####....####.#######.....#.#.#...#.######.#.....####.####...###..####.##.##....###..#..#...
#.#..####...#......#...###...##....##.#######..#.###.#...###.##.##...####..#.####..#......##..#####.
.#.#...##...#....#.####.##.....#....#.#.#######..###.#.....#.....####...##...#.#.##.####..##.###.#.#
####.#.#.####...#...####.#.....#.#######.#.......####......###..###.#...######..#.##.#.##..#..##..##
..##.###..#..####..####.......######.##..#.....##.##...##.##......#.###..###...#.##.#####.#.######.#
.###..####.###..#..#.......#.##...##...##.######.....#..####.#......#.#...#...#...###...#.#.##..####
.####....##.##.#.....##.###.####.#.......#.......#.#..#.#.#.....###.#.#####.#..#.#.#####.#####.###.#
.##.#.###.#####..#..#....###.#.#.#..#..###..##..####..##.###....#..####.####.#..###.#..######.######
####.#.....##..###....#.....#.##.#.##..##..########.#####..###.####....##.....######.#.#.##.......#.
#.#.##.....#.....##.###.#..#.##.##....#..##....##.#.###.##.#..#..##.##.###.#..##.###...##..###.#####
#.###.#.#.#.#.#.#.#...#..#.###..####.##...#..####.###....#..#..##.#....####..##.##....#.#.##.##....#
...######....#..####...#.#..#.#.#..#.##.#.#.......#..#......##..#...#..#..##...##.#...#.#.#...##.##.
.#####..#...####....#..###..##....#####..###.#.#...###..###.###..##...#......#...#...#.#.#...#.##..#
......#####.#...#.#.#.##..#.###..##..#.#...###..###....##..#####..#######.#..#.###....###...##.#..#.
..##.########.##..#....##.#...##.##.#.#..#.##..#.#.#.##....#.#.#.#.##....##....#....#####.##..#.##.#
####...#....##.#.###......##.##.#..##...#..#####..#.#....##..#####...#.#.##...#.####.####..##.######
.##.###.##.#...#.#....###.#######...##...##..#..##.###.#.####..#..###......#.#.##.#.#....#..##...#..
.#.###.#.###.###.#.##.#..#......####.##...#..##.#..####.....#...#.###.##.##.#..#.##..#.###......#..#
...##.####......#.#.#..###..#....###....#.##.#####..#..#..#...#.#.###...#.#.#.##....###.####..###.#.
##..#.#.#.#....####...#.##.###..####....#..#####.######..#.##.##..#####.#.....#.#...##.#.##.##.#.#..
#..##.#.#.#.###.#.#.###...#.#...##..#..#.#.#.##..###...#..##.#..#.#.#..#.....#.######.#.###..###.#..
....#.#.##.###.##...#.##.#....#..##.#..##...#...#.##.####...##..####.#.........#..##..#...#...##.#..
.##.......##...###.##.#.##.###.##.#..#..#..####...#...#....#####...###..##..#..#..##...#....#..#####
..####..#...#...#..###....##.#.#####..#..#.....#......#...#.......##....####...##....##.##.#.#####.#
##.#.#.#..##..##..#.####.##.##.###.#...###.#....#.....#.###...#######..###.####.###.####.##...##.#..
..#.#...##.#....#..#..##.####.....#.#.#...#..#..###.#..###.#####.#.#####.#.#.#.#.###.##.###..#....##
.###.#...#....###..#...####....####..#.##..#..##.###..#.#.#.#..#...###.#.#...#......#...#.##.##.#...
..####.####.##.#.##....#...##....#..#....#..###..#...#..###.#####.....#####..##.#.#.#.#.#.##.####...
...##.#.##.####..##.###..#.#.#.#.#.#.#..###...#.##..#.####.##...#.#.##......###..#...###....#.#.###.
##...##..#.#.##..#.#.#....#.####.......#.#.#######.#..#....#.###.#...###.##....###.#.#..#.#.##.####.
...##.......######.....##....#...#..#.##.###.#..#.##.###.#.###.#.#.#...#.#...##.##.##..#.##########.
###..#....#.#.....#....###.#...##.......##.#.#..#.#...########......###..##.#..#..####.##..####...#.
......##.###.#.###.....#..#...#.#......##....#....#........#..#...##.##.....#...##.##.........##....
.##.##.#.#...#....######..##....##..##.#.#.##.#.##..##...#..###......##......#.#....#.#.#.......###.
.......#.##..##.#...#.##..#..#####.#..#.######.........###.#####.####.#...##...........##...##..####
#......#.#..#...#...##..#.#.###.##.##.#.#..#.###.##.#..###..#.###..#...###.##..###..#...#..###...#..
####.##..#####..####.#...#..#..###..##.#.#...#...#...#.##.####.##.###....###...#.#.#..####.######.##
.....#..####...#.#.#.####..####..##.###......#.....########.#...#.#..#..#...#.###..##.#####..###.###
.#######.#.##..###.#...###.#####............##.###...#.##.#.##..##.#.#..#.######..######..#..#..####
...##..#.####...#..#.#.##.#....#.####..#..###.###..#.#...#....##.##.#......##..##..#.#.#.###..#..#..
........#...#.##.#.#..#....####....#.##...###..####...###.#.#..######..###..##.#####.###.###.#.#...#
##......##.#..###.####.##.#.###.#.......#.##..####..#.###.##..##..##...##...#.###...#.#..#..#.#####.
##..#.#.....##.####.#..##.#.##.#.#...#...#.#...####.#.#.##...##....##.###..###.####.#...#.###..#####
.#####.####.####.####.#.##.##......###....###.####...###...#...#..#.##.#.#####.###..##.#..###...##..
.#...#..##...##...#....#.#.#..##..#.##..#.###.#.###..###.#.#.###.#....#######.####.##..#..#...####..
..##.##..#.##..#.#.###..#.##.########...####.#.###.##..#..###.###...##..##.#..#.######.##.#....###.#
##.#####.###.##.#.##.##.##.###..##..##..#.#.#.#.####..#......#.#.#.#.#.#.##...#####.####...#.#...#.#
.#..###..##.#####.#.##.#..##...##..##...#####.#.####..#...##.....######.#.#...##.#..#######.###.###.
#.#..##.#.#####.#.#.....###.###.#..##.#####....#.###.##.##.#.#..##..#.#....#######.###.#.#.....#.###
....###...#.###.####....###.....##....#####.##.###.###.##.##.##.#..###..######...####.#.#..####..#..
###.....#..####..#.####..#..#...##.##..##.######.####.....#...##....#..#.##.#####..###.##.#.####...#
.##.##.#...#..####...##.##.###...#...#..#.#.#####.....####...#.#.#..#.####...####.#...###.#......###
###.##....#.#.#...#.###....####..##...##.##.##.#..#...####..#..#..##...#####.####.####...##.#..###.#
..####.....##..###.#.#.###.########..#...#.##..#.#.#.......#.##.#..#...####.##.#..#.######..#.#...#.
#.#.##.#.#.##.#....##......##......#######.#..#.##...##..#.#.###...#.#..#..###...#..###.....##.....#
..#.##.#.##.#.##..##.....#.#..#.#..#...##..#..#.#....###.#####....####.####..#####.##.###...#..###.#
#....#.###..#..########.###..#.#.#.##...##.#..##.###..#..#..#.#.##..###...###.#.##..#.##.#..#.#.####
#.......#######......#...#...##.##...###.#....##.#..#....####.#.##.###...#.#####...##.###........##.
.##.####.....###.##......####.###.########..#.####..#.##.#.####.....#...#.##....#######.##..#......#
#.#.##.##....##..##.#.###..#.##.#..#..#.#..##.....###..###.##.##.####.##.#.#.##...####..#.#..##.#.#.
...##.#.#.#...###.#.......#.#.....#.#...##....##.##.##.####...#.#..#..#..#.#.##.#..#.#.#....###..#.#
....#.#.###.#####.##..###..##..#...#.##.#......##.####.#..####.#.##..####.#.#...##..#####..##.#.#...
..###.#.##..#....#..#.#.....##.#####..##....#.#...#.##..##.#.#..#...##.##..##..##....#...#..#..#..##
##.#.##.#...#.###.##.##.##.##..##.##...#..##.#..#######.#..#...#.#.##..#....##.#..####.###........#.
.##.#..#.....#####..##.#.#.#.#..###.#######.###.###....##....#.#.#.###....###.#..#.#....#.#..###...#
...###.#.#.###..#...#..###.######..##.#.#..#...####.#####.##..#..###...#..#..#..###..##.#.#...#.###.
#......#.#..#..##.##.#.##.#.###.#.##.#.#..#....#.##..#..##..##.#.#.#....##.###.###.####.#.#####...##
...#.##..#.######.......#.#.###.....#####....##.#.#.###........#.#.###.#.#########.##.##.#..##..#...
##..###..###....####.##.##..##.###....####..##...####.####..####..###.####..##.#...###.#####.##.##.#
###...##.#.#.#####..#..#####...##.#...#.#.###.#..##..###.##.#.#.....####.##.#..##.###.#...##.##...##
...#.#.##.##..##....#..#.#####.##.###..#.#.#........####.###.##....##....####..#.#....#.#.#.###..#.#
..#.#.#.#.###...#....##..######.##....#.#.##..###..#.#.###..#.##..#.#.###......#..#..#.####..#...##.
.....####.#.....###.#.##.#..##.#..###.#####.#..##...###.#..###..#..##....###.#..##.#..#.##.#..#...##

View File

@ -0,0 +1,45 @@
Al => ThF
Al => ThRnFAr
B => BCa
B => TiB
B => TiRnFAr
Ca => CaCa
Ca => PB
Ca => PRnFAr
Ca => SiRnFYFAr
Ca => SiRnMgAr
Ca => SiTh
F => CaF
F => PMg
F => SiAl
H => CRnAlAr
H => CRnFYFYFAr
H => CRnFYMgAr
H => CRnMgYFAr
H => HCa
H => NRnFYFAr
H => NRnMgAr
H => NTh
H => OB
H => ORnFAr
Mg => BF
Mg => TiMg
N => CRnFAr
N => HSi
O => CRnFYFAr
O => CRnMgAr
O => HP
O => NRnFAr
O => OTi
P => CaP
P => PTi
P => SiRnFAr
Si => CaSi
Th => ThCa
Ti => BP
Ti => TiTi
e => HF
e => NAl
e => OMg
ORnPBPMgArCaCaCaSiThCaCaSiThCaCaPBSiRnFArRnFArCaCaSiThCaCaSiThCaCaCaCaCaCaSiRnFYFArSiRnMgArCaSiRnPTiTiBFYPBFArSiRnCaSiRnTiRnFArSiAlArPTiBPTiRnCaSiAlArCaPTiTiBPMgYFArPTiRnFArSiRnCaCaFArRnCaFArCaSiRnSiRnMgArFYCaSiRnMgArCaCaSiThPRnFArPBCaSiRnMgArCaCaSiThCaSiRnTiMgArFArSiThSiThCaCaSiRnMgArCaCaSiRnFArTiBPTiRnCaSiAlArCaPTiRnFArPBPBCaCaSiThCaPBSiThPRnFArSiThCaSiThCaSiThCaPTiBSiRnFYFArCaCaPRnFArPBCaCaPBSiRnTiRnFArCaPRnFArSiRnCaCaCaSiThCaRnCaFArYCaSiRnFArBCaCaCaSiThFArPBFArCaSiRnFArRnCaCaCaFArSiRnFArTiRnPMgArF

View File

@ -0,0 +1 @@
29000000

View File

@ -0,0 +1,3 @@
Hit Points: 104
Damage: 8
Armor: 1

View File

@ -0,0 +1,2 @@
Hit Points: 71
Damage: 10

View File

@ -0,0 +1,48 @@
jio a, +22
inc a
tpl a
tpl a
tpl a
inc a
tpl a
inc a
tpl a
inc a
inc a
tpl a
inc a
inc a
tpl a
inc a
inc a
tpl a
inc a
inc a
tpl a
jmp +19
tpl a
tpl a
tpl a
tpl a
inc a
inc a
tpl a
inc a
tpl a
inc a
inc a
tpl a
inc a
inc a
tpl a
inc a
tpl a
tpl a
jio a, +8
inc b
jie a, +4
tpl a
inc a
jmp +2
hlf a
jmp -7

View File

@ -0,0 +1,28 @@
1
3
5
11
13
17
19
23
29
31
41
43
47
53
59
61
67
71
73
79
83
89
97
101
103
107
109
113

View File

@ -0,0 +1 @@
To continue, please consult the code grid in the manual. Enter the code at row 2981, column 3075.

View File

@ -0,0 +1 @@
2x3x4

29
AOC2016/AOC2016.csproj Normal file
View File

@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="input2016\*.in">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="AOC.Common"/>
<Using Include="System.Collections.Generic"/>
<Using Include="System.Collections.Immutable"/>
<Using Include="System.Reflection"/>
<Using Include="System.Text"/>
<Using Include="System.Text.RegularExpressions"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOC.Common\AOC.Common.csproj"/>
</ItemGroup>
</Project>

15
AOC2016/Day01.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 1: <see href="https://adventofcode.com/2016/day/1"/>
/// </summary>
public sealed class Day01 : Day
{
public Day01() : base(2016, 1, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day02.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 2: <see href="https://adventofcode.com/2016/day/2"/>
/// </summary>
public sealed class Day02 : Day
{
public Day02() : base(2016, 2, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day03.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 3: <see href="https://adventofcode.com/2016/day/3"/>
/// </summary>
public sealed class Day03 : Day
{
public Day03() : base(2016, 3, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day04.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 4: <see href="https://adventofcode.com/2016/day/4"/>
/// </summary>
public sealed class Day04 : Day
{
public Day04() : base(2016, 4, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day05.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 5: <see href="https://adventofcode.com/2016/day/5"/>
/// </summary>
public sealed class Day05 : Day
{
public Day05() : base(2016, 5, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day06.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 6: <see href="https://adventofcode.com/2016/day/6"/>
/// </summary>
public sealed class Day06 : Day
{
public Day06() : base(2016, 6, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day07.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 7: <see href="https://adventofcode.com/2016/day/7"/>
/// </summary>
public sealed class Day07 : Day
{
public Day07() : base(2016, 7, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day08.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 8: <see href="https://adventofcode.com/2016/day/8"/>
/// </summary>
public sealed class Day08 : Day
{
public Day08() : base(2016, 8, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day09.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 9: <see href="https://adventofcode.com/2016/day/9"/>
/// </summary>
public sealed class Day09 : Day
{
public Day09() : base(2016, 9, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day10.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 10: <see href="https://adventofcode.com/2016/day/10"/>
/// </summary>
public sealed class Day10 : Day
{
public Day10() : base(2016, 10, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day11.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 11: <see href="https://adventofcode.com/2016/day/11"/>
/// </summary>
public sealed class Day11 : Day
{
public Day11() : base(2016, 11, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day12.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 12: <see href="https://adventofcode.com/2016/day/12"/>
/// </summary>
public sealed class Day12 : Day
{
public Day12() : base(2016, 12, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day13.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 13: <see href="https://adventofcode.com/2016/day/13"/>
/// </summary>
public sealed class Day13 : Day
{
public Day13() : base(2016, 13, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day14.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 14: <see href="https://adventofcode.com/2016/day/14"/>
/// </summary>
public sealed class Day14 : Day
{
public Day14() : base(2016, 14, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day15.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 15: <see href="https://adventofcode.com/2016/day/15"/>
/// </summary>
public sealed class Day15 : Day
{
public Day15() : base(2016, 15, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day16.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 16: <see href="https://adventofcode.com/2016/day/16"/>
/// </summary>
public sealed class Day16 : Day
{
public Day16() : base(2016, 16, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day17.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 17: <see href="https://adventofcode.com/2016/day/17"/>
/// </summary>
public sealed class Day17 : Day
{
public Day17() : base(2016, 17, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day18.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 18: <see href="https://adventofcode.com/2016/day/18"/>
/// </summary>
public sealed class Day18 : Day
{
public Day18() : base(2016, 18, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day19.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 19: <see href="https://adventofcode.com/2016/day/19"/>
/// </summary>
public sealed class Day19 : Day
{
public Day19() : base(2016, 19, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day20.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 20: <see href="https://adventofcode.com/2016/day/20"/>
/// </summary>
public sealed class Day20 : Day
{
public Day20() : base(2016, 20, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day21.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 21: <see href="https://adventofcode.com/2016/day/21"/>
/// </summary>
public sealed class Day21 : Day
{
public Day21() : base(2016, 21, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day22.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 22: <see href="https://adventofcode.com/2016/day/22"/>
/// </summary>
public sealed class Day22 : Day
{
public Day22() : base(2016, 22, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day23.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 23: <see href="https://adventofcode.com/2016/day/23"/>
/// </summary>
public sealed class Day23 : Day
{
public Day23() : base(2016, 23, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day24.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 24: <see href="https://adventofcode.com/2016/day/24"/>
/// </summary>
public sealed class Day24 : Day
{
public Day24() : base(2016, 24, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

15
AOC2016/Day25.cs Normal file
View File

@ -0,0 +1,15 @@
namespace AOC2016;
/// <summary>
/// Day 25: <see href="https://adventofcode.com/2016/day/25"/>
/// </summary>
public sealed class Day25 : Day
{
public Day25() : base(2016, 25, "Puzzle Name")
{
}
public override object Part1() => "";
public override object Part2() => "";
}

1
AOC2016/Program.cs Normal file
View File

@ -0,0 +1 @@
Day.RunFromArgs(args);

View File

@ -0,0 +1 @@
R3, R1, R4, L4, R3, R1, R1, L3, L5, L5, L3, R1, R4, L2, L1, R3, L3, R2, R1, R1, L5, L2, L1, R2, L4, R1, L2, L4, R2, R2, L2, L4, L3, R1, R4, R3, L1, R1, L5, R4, L2, R185, L2, R4, R49, L3, L4, R5, R1, R1, L1, L1, R2, L1, L4, R4, R5, R4, L3, L5, R1, R71, L1, R1, R186, L5, L2, R5, R4, R1, L5, L2, R3, R2, R5, R5, R4, R1, R4, R2, L1, R4, L1, L4, L5, L4, R4, R5, R1, L2, L4, L1, L5, L3, L5, R2, L5, R4, L4, R3, R3, R1, R4, L1, L2, R2, L1, R4, R2, R2, R5, R2, R5, L1, R1, L4, R5, R4, R2, R4, L5, R3, R2, R5, R3, L3, L5, L4, L3, L2, L2, R3, R2, L1, L1, L5, R1, L3, R3, R4, R5, L3, L5, R1, L3, L5, L5, L2, R1, L3, L1, L3, R4, L1, R3, L2, L2, R3, R3, R4, R4, R1, L4, R1, L5

View File

@ -0,0 +1,5 @@
LDUDDRUDRRURRRRDRUUDULDLULRRLLLUDDULRDLDDLRULLDDLRUURRLDUDDDDLUULUUDDDDLLLLLULLRURDRLRLRLLURDLLDDUULUUUUDLULLRLUUDDLRDRRURRLURRLLLRRDLRUDURRLRRRLULRDLUDRDRLUDDUUULDDDDDURLDULLRDDRRUDDDDRRURRULUDDLLRRDRURDLLLLLUUUDLULURLULLDRLRRDDLUDURUDRLRURURLRRDDLDUULURULRRLLLDRURDULRDUURRRLDLDUDDRLURRDRDRRLDLRRRLRURDRLDRUDLURRUURDLDRULULURRLDLLLUURRULUDDDRLDDUDDDRRLRDUDRUUDDULRDDULDDURULUDLUDRUDDDLRRRRRDLULDRLRRRRUULDUUDRRLURDLLUUDUDDDLUUURDRUULRURULRLLDDLLUDLURRLDRLDDDLULULLURLULRDLDRDDDLRDUDUURUUULDLLRDRUDRDURUUDDLRRRRLLLUULURRURLLDDLDDD
DRURURLLUURRRULURRLRULLLURDULRLRRRLRUURRLRRURRRRUURRRLUDRDUDLUUDULURRLDLULURRLDURLUUDLDUDRUURDDRDLLLDDRDDLUUDRDUDDRRDLDUDRLDDDRLLDDLUDRULRLLURLDLURRDRUDUDLDLULLLRDLLRRDULLDRURRDLDRURDURDULUUURURDLUDRRURLRRLDULRRDURRDRDDULLDRRRLDRRURRRRUURDRLLLRRULLUDUDRRDDRURLULLUUDDRLDRRDUDLULUUDRDDDDLRLRULRLRLLDLLRRDDLDRDURRULLRLRRLULRULDDDRDRULDRUUDURDLLRDRURDRLRDDUDLLRUDLURURRULLUDRDRDURLLLDDDRDRURRDDRLRRRDLLDDLDURUULURULRLULRLLURLUDULDRRDDLRDLRRLRLLULLDDDRDRU
URUUDUDRDDRDRRRDLLUDRUDRUUUURDRRDUDUULDUDLLUDRRUDLLRDLLULULDRRDDULDRLDLDDULLDDRDDDLRLLDLLRDUUDUURLUDURDRRRRLRRLDRRUULLDLDLRDURULRURULRRDRRDDUUURDURLLDDUUDLRLDURULURRRDRRUUUDRDDLRLRRLLULUDDRRLRRRRLRDRUDDUULULRRURUURURRLRUDLRRUUURUULLULULRRDDULDRRLLLDLUDRRRLLRDLLRLDUDDRRULULUDLURLDRDRRLULLRRDRDLUURLDDURRLDRLURULDLDRDLURRDRLUUDRUULLDRDURLLDLRUDDULLLLDLDDDLURDDUDUDDRLRDDUDDURURLULLRLUDRDDUDDLDRUURLDLUUURDUULRULLDDDURULDDLLD
LRRLLRURUURRDLURRULDDDLURDUURLLDLRRRRULUUDDLULLDLLRDLUDUULLUDRLLDRULDDURURDUUULRUDRLLRDDDURLRDRRURDDRUDDRRULULLLDLRLULLDLLDRLLLUDLRURLDULRDDRDLDRRDLUUDDLURDLURLUDLRDLDUURLRRUULDLURULUURULLURLDDURRURDRLUULLRRLLLDDDURLURUURLLLLDLLLUDLDLRDULUULRRLUUUUDLURRURRULULULRURDDRRRRDRUDRURDUDDDDUDLURURRDRRDRUDRLDLDDDLURRRURRUDLDURDRLDLDLDDUDURLUDUUDRULLRLLUUDDUURRRUDURDRRUURLUDRRUDLUDDRUUDLULDLLDLRUUDUULLDULRRLDRUDRRDRLUUDDRUDDLLULRLULLDLDUULLDRUUDDUDLLLLDLDDLDLURLDLRUUDDUULLUDUUDRUDLRDDRDLDRUUDUDLLDUURRRLLLLRLLRLLRLUUDULLRLURDLLRUUDRULLULRDRDRRULRDLUDDURRRRURLLRDRLLDRUUULDUDDLRDRD
DDLRRULRDURDURULLLLRLDDRDDRLLURLRDLULUDURRLUDLDUDRDULDDULURDRURLLDRRLDURRLUULLRUUDUUDLDDLRUUDRRDDRLURDRUDRRRDRUUDDRLLUURLURUDLLRRDRDLUUDLUDURUUDDUULUURLUDLLDDULLUURDDRDLLDRLLDDDRRDLDULLURRLDLRRRLRRURUUDRLURURUULDURUDRRLUDUDLRUDDUDDRLLLULUDULRURDRLUURRRRDLLRDRURRRUURULRUDULDULULUULULLURDUDUDRLDULDRDDULRULDLURLRLDDDDDDULDRURRRRDLLRUDDRDDLUUDUDDRLLRLDLUDRUDULDDDRLLLLURURLDLUUULRRRUDLLULUUULLDLRLDLLRLRDLDULLRLUDDDRDRDDLULUUR

1911
AOC2016/input2016/day03.in Normal file

File diff suppressed because it is too large Load Diff

974
AOC2016/input2016/day04.in Normal file
View File

@ -0,0 +1,974 @@
aczupnetwp-mfyyj-opalcexpye-977[peyac]
qzchnzbshud-cxd-trdq-sdrshmf-105[jqexn]
molgbzqfib-bdd-mrozexpfkd-289[bdfmo]
enzcntvat-pnaql-qrfvta-351[antqv]
otzkxtgzoutgr-jek-vaxingyotm-670[tgokx]
fmsledevhsyw-gerhc-gsexmrk-qerekiqirx-126[ersgh]
yknnkoera-zua-ykjpwejiajp-212[rfzym]
dfcxsqhwzs-qobrm-gvwddwbu-532[dwbqs]
oqnidbshkd-eknvdq-cdozqsldms-261[vygwn]
kwvacumz-ozilm-akidmvomz-pcvb-ikycqaqbqwv-538[mvaci]
sno-rdbqds-qzaahs-rsnqzfd-599[sdqan]
zekvierkzferc-treup-ivrthlzjzkzfe-633[ezrkf]
aoubshwq-suu-difqvogwbu-922[uboqs]
dpotvnfs-hsbef-kfmmzcfbo-nbobhfnfou-571[fbonh]
hcd-gsqfsh-qobrm-qcohwbu-gsfjwqsg-792[qsghb]
nbhofujd-cvooz-mbcpsbupsz-649[bocps]
pxtihgbsxw-ktuubm-tgterlbl-735[mxauz]
mvydjvxodqz-xviyt-hvivbzhzio-369[vizdh]
bqxnfdmhb-bzmcx-bnzshmf-cdozqsldms-755[bmdsz]
lxwbdvna-pajmn-snuuhknjw-mnbrpw-199[nwabj]
molgbzqfib-zxkav-zlxqfkd-ildfpqfzp-627[fzlqb]
iuruxlar-vrgyzoi-mxgyy-sgtgmksktz-904[gryik]
bkzrrhehdc-azrjds-qdzbpthrhshnm-729[hrdzb]
hplazytkpo-dnlgpyrpc-sfye-epnsyzwzrj-457[pyzel]
ajyqqgdgcb-hcjjwzcyl-umpiqfmn-366[cjqgm]
kzgwomvqk-kpwkwtibm-xczkpiaqvo-772[kwimo]
bqvvu-nwilwcejc-ydkykhwpa-ykjpwejiajp-628[jwkpy]
amlqskcp-epybc-afmamjyrc-pcqcypaf-574[capmy]
gcfcnuls-aluxy-zfiqyl-guleyncha-994[lcuya]
zgmfyxypbmsq-djmucp-umpiqfmn-444[qwrxz]
vrurcjah-pajmn-ljwmh-bnaerlnb-771[ajnrb]
nwlddtqtpo-awldetn-rcldd-opawzjxpye-457[ztsxm]
crwwv-bdd-rpbo-qbpqfkd-393[bdpqr]
dzczkrip-xiruv-srjbvk-rercpjzj-607[rjzci]
sno-rdbqds-dff-qdbdhuhmf-313[orjnb]
bnqqnrhud-bzmcx-qdrdzqbg-781[qbdnr]
upq-tfdsfu-kfmmzcfbo-tupsbhf-779[fubmp]
xgjougizobk-vrgyzoi-mxgyy-yzuxgmk-826[gyoxz]
zgmfyxypbmsq-zyqicr-bcnjmwkclr-756[jluaw]
joufsobujpobm-cvooz-vtfs-uftujoh-857[mghad]
lnkfaypeha-pkl-oaynap-xqjju-ykjpwejiajp-342[ajpky]
esyfwlau-wyy-vwhdgqewfl-580[pqlsd]
lhkhszqx-fqzcd-rbzudmfdq-gtms-trdq-sdrshmf-859[jzybf]
dmbttjgjfe-kfmmzcfbo-eftjho-623[kzlyx]
qcffcgwjs-xszzmpsob-zopcfohcfm-246[cfosz]
pbeebfvir-ovbunmneqbhf-cynfgvp-tenff-freivprf-273[jlves]
dpssptjwf-cvooz-sftfbsdi-727[sfdop]
vdzonmhydc-bzmcx-nodqzshnmr-391[dmnzc]
ynssr-vahvhetmx-tgterlbl-891[ldyzb]
zilqwikbqdm-akidmvomz-pcvb-lmdmtwxumvb-824[mbdiv]
qfkkj-nlyoj-xlcvpetyr-379[qsztm]
sbejpbdujwf-cvooz-nbobhfnfou-181[bofjn]
ipvohghykvbz-ihzrla-lunpullypun-383[jfptx]
clotzlnetgp-prr-lnbftdtetzy-665[tlenp]
fhezusjybu-rkddo-bqrehqjeho-894[ehbdj]
xlrypetn-ojp-lnbftdtetzy-327[uwdtq]
ovbunmneqbhf-pbafhzre-tenqr-enoovg-bcrengvbaf-299[benfo]
xmtjbzidx-zbb-gjbdnodxn-291[bdxjn]
raphhxuxts-ytaanqtpc-stktadebtci-739[tachp]
lejkrscv-avccpsvre-uvgcfpdvek-269[vtewy]
esyfwlau-xdgowj-umklgewj-kwjnauw-944[zntcg]
bnmrtldq-fqzcd-azrjds-rsnqzfd-261[dqrzf]
npmhcargjc-qaytclecp-fslr-yaosgqgrgml-184[cgalr]
iutyaskx-mxgjk-houngfgxjuay-vrgyzoi-mxgyy-lotgtiotm-280[reypq]
mhi-lxvkxm-cxeeruxtg-nlxk-mxlmbgz-891[ymnuv]
avw-zljyla-jovjvshal-dvyrzovw-331[vajlo]
jxdkbqfz-ciltbo-zlkqxfkjbkq-627[cvump]
kpvgtpcvkqpcn-lgnnadgcp-eqpvckpogpv-154[ikqst]
eadalsjq-yjsvw-hjgbwuladw-wyy-mkwj-lwklafy-944[wajly]
iuruxlar-iuxxuyobk-igtje-iutzgotsktz-644[uitxg]
pdjqhwlf-hjj-hqjlqhhulqj-179[hjqld]
drxevkzt-irsszk-kvtyefcfxp-997[kefrs]
houngfgxjuay-iuruxlar-inuiurgzk-vaxingyotm-644[yiowt]
lzfmdshb-bgnbnkzsd-dmfhmddqhmf-755[klhim]
mvkccspson-bkllsd-wkxkqowoxd-120[koscd]
rgndvtcxr-rpcsn-hpath-245[sitjk]
apuut-xviyt-nzmqdxzn-317[mgons]
udglrdfwlyh-vfdyhqjhu-kxqw-pdunhwlqj-829[dhlqu]
lejkrscv-gcrjkzt-xirjj-drerxvdvek-659[qftns]
zotts-mwupyhayl-bohn-uhufsmcm-604[imljo]
vcibutulxiom-jfumncw-alumm-mbcjjcha-370[mcuja]
nvrgfezqvu-tcrjjzwzvu-avccpsvre-ivjvrity-217[vrcjz]
myxcewob-qbkno-bkllsd-nocsqx-744[bockl]
zlilocri-pzxsbkdbo-erkq-ildfpqfzp-887[ilpzb]
zntargvp-pnaql-pbngvat-pbagnvazrag-377[agnpv]
rgndvtcxr-uadltg-prfjxhxixdc-921[xdrcg]
pbeebfvir-cynfgvp-tenff-ernpdhvfvgvba-663[fvebn]
bqvvu-ywjzu-ykwpejc-hwxknwpknu-290[wkujn]
xjmmjndqz-xviyt-xjvodib-vivgtndn-785[vdijn]
szfyrqriuflj-srjbvk-tljkfdvi-jvimztv-919[jvfir]
ucynmlgxcb-afmamjyrc-pcacgtgle-574[cagml]
zntargvp-pnaql-pbngvat-npdhvfvgvba-299[vanpg]
gcfcnuls-aluxy-xsy-jolwbumcha-110[cluas]
yuxufmdk-sdmpq-nuatmlmdpage-omzpk-oamfuzs-mzmxkeue-170[muade]
qfmcusbwq-pibbm-aobousasbh-792[bsamo]
zsxyfgqj-wfggny-qfgtwfytwd-515[lmnry]
rwcnawjcrxwju-ljwmh-lxjcrwp-anjlzdrbrcrxw-667[rwjcl]
ocipgvke-gii-vtckpkpi-466[ikpcg]
iruzfrtkzmv-treup-tfrkzex-kirzezex-945[rzekt]
drxevkzt-gcrjkzt-xirjj-glityrjzex-659[psznt]
htqtwkzq-gzssd-tujwfyntsx-125[tsqwz]
wbhsfbohwcboz-qobrm-igsf-hsghwbu-584[bhosw]
diozmivodjivg-wpiit-gvwjmvojmt-655[bknca]
vkppo-vbemuh-qsgkyiyjyed-478[yekpv]
enzcntvat-hafgnoyr-qlr-ratvarrevat-325[artnv]
atyzghrk-yigbktmkx-natz-yzuxgmk-644[inshw]
votubcmf-fhh-bobmztjt-415[nmolz]
pualyuhapvuhs-jhukf-jvhapun-shivyhavyf-773[asijb]
zovldbkfz-zxkav-zrpqljbo-pbosfzb-211[bdtuy]
ocipgvke-dcumgv-octmgvkpi-180[cgvik]
udglrdfwlyh-exqqb-ghyhorsphqw-595[hqdgl]
vhehkyne-vtgwr-vhtmbgz-ybgtgvbgz-657[gvbht]
bknsykmdsfo-bkwzkqsxq-oqq-ckvoc-458[sxmzy]
shoewudys-uww-tuiywd-426[wudsy]
krxqjijamxdb-kjbtnc-mnyjacvnwc-979[jcnab]
irdgrxzex-srjbvk-tljkfdvi-jvimztv-555[stqrm]
bxaxipgn-vgpst-rpcsn-pcpanhxh-869[pnxac]
tcrjjzwzvu-jtrmvexvi-ylek-jkfirxv-165[jvrei]
ugjjgkanw-vqw-vwkayf-476[qbskp]
sgmtkzoi-yigbktmkx-natz-iutzgotsktz-540[tkzgi]
wpuvcdng-dwppa-eqpvckpogpv-284[pvcdg]
tcfkqcevkxg-lgnnadgcp-ocpcigogpv-700[rcqwm]
tfejldvi-xiruv-avccpsvre-ivtvzmzex-503[stzno]
oknkvcta-itcfg-tcddkv-fgrnqaogpv-596[zcmwx]
udpsdjlqj-fdqgb-uhdftxlvlwlrq-491[hqpoz]
bpvctixr-ltpedcxots-rwdrdapit-bpcpvtbtci-687[eklrj]
kzgwomvqk-kivlg-bmkpvwtwog-590[kgvwm]
tcrjjzwzvu-tyftfcrkv-ivrthlzjzkzfe-607[ztfjr]
vqr-ugetgv-hnqygt-fgxgnqrogpv-440[gqvnr]
ahngzyzqcntr-azrjds-nodqzshnmr-417[khyzv]
gsrwyqiv-kvehi-hci-vigimzmrk-386[ivghk]
lgh-kwujwl-uzgugdslw-hmjuzskafy-450[umnbs]
xfbqpojafe-gmpxfs-bobmztjt-779[vztym]
lzfmdshb-eknvdq-rzkdr-339[dkrzb]
dmybmsuzs-qss-qzsuzqqduzs-690[sqzud]
nzwzcqfw-upwwjmply-opawzjxpye-925[wpzjy]
qvbmzvibqwvit-akidmvomz-pcvb-zmkmqdqvo-954[vmqbi]
ykjoqian-cnwza-oywrajcan-dqjp-hwxknwpknu-420[nawjk]
gzefmnxq-otaoaxmfq-efadmsq-846[sdilh]
dkqjcbctfqwu-lgnnadgcp-ujkrrkpi-830[ckdgj]
zilqwikbqdm-kivlg-kwibqvo-amzdqkma-980[ilkqv]
dszphfojd-ezf-qvsdibtjoh-883[dfhjo]
sno-rdbqds-idkkxadzm-btrsnldq-rdquhbd-339[utyem]
ckgvutofkj-igtje-iugzotm-giwaoyozout-514[ogtiu]
zekvierkzferc-sleep-jyzggzex-295[hjkop]
ktiaaqnqml-akidmvomz-pcvb-mvoqvmmzqvo-226[mvqao]
kyelcrga-qaytclecp-fslr-bcqgel-652[cleag]
pbybeshy-pnaql-pbngvat-qrirybczrag-715[bapry]
pbybeshy-onfxrg-qrfvta-611[bnziy]
glrcplyrgmlyj-zyqicr-qyjcq-782[yclqr]
nbhofujd-dboez-efqmpznfou-909[clnqa]
udskkaxawv-kusnwfywj-zmfl-hmjuzskafy-242[kafsu]
hjgbwuladw-vqw-esfsywewfl-476[lcezk]
tfejldvi-xiruv-wcfnvi-rercpjzj-477[ijrvc]
qyujihctyx-luvvcn-lyuwkocmcncih-162[cuyhi]
wlsiayhcw-wuhxs-wiuncha-uhufsmcm-266[qsifr]
wkqxodsm-oqq-kxkvicsc-926[kqcos]
tfcfiwlc-avccpsvre-rercpjzj-815[crefj]
sxdobxkdsyxkv-zvkcdsm-qbkcc-bokmaescsdsyx-614[lmhny]
ovbunmneqbhf-cynfgvp-tenff-nanylfvf-845[fnvbe]
chnylhuncihuf-wuhxs-lymyulwb-682[bsntk]
ckgvutofkj-igtje-jkbkruvsktz-436[kjtgu]
vhkkhlbox-ietlmbv-zktll-kxvxbobgz-267[bklvx]
oazegyqd-sdmpq-rxaiqd-iadwetab-898[adqei]
hdgdovmt-bmvyz-wpiit-hvivbzhzio-993[ljcbw]
nwlddtqtpo-tyepcyletzylw-ojp-cplnbftdtetzy-691[mdzsc]
ixccb-vfdyhqjhu-kxqw-whfkqrorjb-283[ichrd]
pelbtravp-pubpbyngr-qrcyblzrag-143[bprag]
kzgwomvqk-uiovmbqk-kivlg-abwziom-200[watbs]
vxupkizork-kmm-yzuxgmk-150[kmuxz]
xlrypetn-qwzhpc-epnsyzwzrj-847[pzenr]
egdytrixat-gpqqxi-gtrtxkxcv-661[txgiq]
lxuxaodu-lxwbdvna-pajmn-kjbtnc-mnbrpw-979[nabxd]
hqfxxnknji-kqtbjw-yjhmstqtld-125[bfzoy]
pyknyegle-hcjjwzcyl-bcnyprkclr-678[cylej]
rgndvtcxr-rpcsn-rdpixcv-gtprfjxhxixdc-791[rxcdp]
kyelcrga-djmucp-cleglccpgle-834[clegp]
oknkvcta-itcfg-hnqygt-tgceswkukvkqp-180[ktcgn]
yknnkoera-fahhuxawj-pnwejejc-784[aejnh]
jfifqxov-doxab-zxkav-zlxqfkd-lmboxqflkp-731[kreil]
tpspahyf-nyhkl-lnn-thyrlapun-435[vtsgw]
ktwbhtvmbox-vtgwr-mktbgbgz-631[btgkm]
hqfxxnknji-hfsid-htfynsl-htsyfnsrjsy-723[qymsp]
shmml-onfxrg-svanapvat-559[amnsv]
ugfkmewj-yjsvw-wyy-mkwj-lwklafy-138[wyjkf]
zilqwikbqdm-jiasmb-zmkmqdqvo-382[mqibd]
vqr-ugetgv-gii-ugtxkegu-414[gueit]
nuatmlmdpage-omzpk-oamfuzs-fqotzaxask-846[zpwto]
tfcfiwlc-irsszk-drerxvdvek-165[rcdef]
ykhknbqh-nwxxep-iwngapejc-368[nehkp]
zloolpfsb-tbxmlkfwba-oxyyfq-ixyloxqlov-887[loxbf]
surmhfwloh-mhoobehdq-zrunvkrs-127[horms]
uwtojhynqj-jll-wjhjnansl-437[jlnhw]
ziuxioqvo-ntwemz-lmaqov-824[oimqv]
yuxufmdk-sdmpq-nmewqf-abqdmfuaze-794[mdfqu]
nzwzcqfw-hplazytkpo-mfyyj-fdpc-epdetyr-951[pyfzc]
etyyx-eknvdq-zmzkxrhr-625[iltus]
oazegyqd-sdmpq-ngzzk-qzsuzqqduzs-300[osxtp]
eadalsjq-yjsvw-kusnwfywj-zmfl-ghwjslagfk-814[jswaf]
yuxufmdk-sdmpq-nmewqf-emxqe-378[rqsbf]
iwcjapey-ywjzu-odellejc-888[ejclw]
pdjqhwlf-gbh-ilqdqflqj-413[qldfh]
ide-htrgti-snt-hpath-479[thiad]
bnknqetk-azrjds-sdbgmnknfx-209[nkbds]
tfcfiwlc-irdgrxzex-wcfnvi-uvgcfpdvek-555[cfivd]
clxalrtyr-ojp-epnsyzwzrj-249[rjlpy]
aietsrmdih-veffmx-gywxsqiv-wivzmgi-360[imvef]
fkqbokxqflkxi-zelzlixqb-cfkxkzfkd-549[afuiz]
zekvierkzferc-upv-dribvkzex-347[ekrvz]
pbafhzre-tenqr-onfxrg-ybtvfgvpf-507[yrjit]
willimcpy-vohhs-guleyncha-240[swucm]
gpewwmjmih-veffmx-pefsvexsvc-360[ryciz]
amjmpdsj-zsllw-umpiqfmn-418[itmwe]
myxcewob-qbkno-lkcuod-mecdywob-cobfsmo-666[obcmd]
zsxyfgqj-uqfxynh-lwfxx-fhvznxnynts-515[zymab]
zovldbkfz-tbxmlkfwba-ciltbo-tlohpelm-237[ijhlk]
nwilwcejc-nwxxep-zalwnpiajp-992[wnpac]
amppmqgtc-qaytclecp-fslr-qyjcq-210[sytev]
wsvsdkbi-qbkno-cmkfoxqob-rexd-bokmaescsdsyx-302[sbkod]
hcd-gsqfsh-xszzmpsob-fsgsofqv-480[sfgho]
wfummczcyx-mwupyhayl-bohn-nywbhifias-318[yhmwa]
ygcrqpkbgf-fag-tgceswkukvkqp-154[gkcfp]
hqcfqwydw-uww-iuhlysui-894[dcqnf]
mvydjvxodqz-xviyt-rjmfncjk-421[jvdmx]
froruixo-hjj-vhuylfhv-569[hfjor]
froruixo-hjj-ghyhorsphqw-855[horjf]
vdzonmhydc-eknvdq-qdbdhuhmf-157[dhmnq]
cxy-bnlanc-bljenwpna-qdwc-bqryyrwp-901[nbcwy]
ocipgvke-rncuvke-itcuu-tgegkxkpi-284[kcegi]
npmhcargjc-afmamjyrc-rpyglgle-600[acgmr]
npmhcargjc-qaytclecp-fslr-mncpyrgmlq-262[clmpr]
sgmtkzoi-xghhoz-sgtgmksktz-176[gkstz]
ohmnuvfy-xsy-fiacmncwm-162[mcfny]
xekdwvwnzkqo-acc-ykjpwejiajp-706[jkwac]
gvcskirmg-tpewxmg-kveww-erepcwmw-256[hvuwt]
esyfwlau-usfvq-wfyafwwjafy-398[icojl]
ujoon-gpqqxi-rjhidbtg-htgkxrt-349[gthij]
votubcmf-ezf-sfbdrvjtjujpo-571[fjbot]
zixppfcfba-zelzlixqb-mrozexpfkd-549[yknmt]
fbebmtkr-zktwx-utldxm-nlxk-mxlmbgz-423[mxbkl]
pybgmyargtc-glrcplyrgmlyj-aylbw-amyrgle-qcptgacq-964[tszdw]
sebehvkb-vbemuh-iqbui-920[behiu]
lugjuacha-zfiqyl-guleyncha-292[xtqyp]
jsehsyafy-wyy-esfsywewfl-190[oztvg]
esyfwlau-tskcwl-kzahhafy-918[afhkl]
nzwzcqfw-mfyyj-nfdezxpc-dpcgtnp-717[yoapc]
dszphfojd-fhh-efqmpznfou-259[igfar]
ajmrxjlcren-kjbtnc-xynajcrxwb-823[jcnrx]
vehmsegxmzi-nippcfier-pefsvexsvc-594[eipsv]
dlhwvupglk-yhiipa-klzpnu-747[taxwo]
frqvxphu-judgh-udglrdfwlyh-mhoobehdq-fxvwrphu-vhuylfh-257[mswnl]
mvkccspson-pvygob-nocsqx-718[cosnp]
avw-zljyla-msvdly-klwhyatlua-955[layvw]
ryexqpqhteki-sxesebqju-iqbui-140[tyxfz]
ygcrqpkbgf-ecpfa-eqcvkpi-tgceswkukvkqp-856[kcpeg]
oazegyqd-sdmpq-nmewqf-ymdwqfuzs-560[qdmef]
qxdwpopgsdjh-qphzti-gtprfjxhxixdc-323[pxdhg]
zloolpfsb-zxkav-obxznrfpfqflk-783[flozb]
xgvnndadzy-kgvnodx-bmvnn-vxlpdndodji-473[xbwpm]
muqfedyput-sqdto-vydqdsydw-322[kqmys]
jlidywncfy-mwupyhayl-bohn-lywycpcha-838[ychlw]
votubcmf-cvooz-mphjtujdt-285[otcjm]
etaqigpke-dcumgv-tgugctej-778[getcu]
amlqskcp-epybc-pyzzgr-mncpyrgmlq-496[veyij]
excdklvo-pvygob-kxkvicsc-380[ckvox]
bjfutsneji-idj-xmnuunsl-437[jnuis]
crwwv-avb-zlkqxfkjbkq-835[kbqvw]
clxalrtyr-nlyoj-nzletyr-dstaatyr-561[lrtya]
bjfutsneji-uqfxynh-lwfxx-ijxnls-957[uaybk]
drxevkzt-gcrjkzt-xirjj-rthlzjzkzfe-737[zjrkt]
lahxpnwrl-npp-jwjuhbrb-329[pbhjl]
jyddc-nippcfier-hitevxqirx-646[pyzmv]
tagzsrsjvgmk-jsttal-klgjsyw-398[jtkyl]
kwzzwaqdm-ntwemz-lmxizbumvb-148[mzwba]
jyddc-gerhc-gsexmrk-vigimzmrk-906[zmtql]
oqnidbshkd-atmmx-bnmszhmldms-729[vcsyn]
hcd-gsqfsh-foppwh-rsjszcdasbh-558[shcdf]
fydelmwp-mfyyj-cpnptgtyr-353[udkrq]
willimcpy-mwupyhayl-bohn-mniluay-214[lyima]
nzwzcqfw-nlyoj-nzletyr-cplnbftdtetzy-925[blcjr]
ytu-xjhwjy-uqfxynh-lwfxx-wjfhvznxnynts-567[xnyfh]
lejkrscv-vxx-vexzevvizex-373[tgvkh]
rnqnyfwd-lwfij-hfsid-htfynsl-ijajqturjsy-229[anmsk]
chnylhuncihuf-vumeyn-mylpcwym-162[naygw]
xjinphzm-bmvyz-agjrzm-hvmfzodib-239[mzbhi]
elrkdcdugrxv-mhoobehdq-vwrudjh-751[dhreo]
mbggf-kfl-zopwwpun-721[fzbwt]
zilqwikbqdm-rmttgjmiv-mvoqvmmzqvo-954[mqvio]
qczcftiz-rms-aofyshwbu-610[cfsza]
ibghopzs-qvcqczohs-rsjszcdasbh-272[usani]
mbiyqoxsm-mkxni-mykdsxq-oxqsxoobsxq-146[zplsb]
zekvierkzferc-irsszk-uvgrikdvek-191[keriv]
wkqxodsm-lkcuod-nozvyiwoxd-328[odkwx]
frqvxphu-judgh-edvnhw-sxufkdvlqj-387[csdlt]
kwvacumz-ozilm-lgm-abwziom-668[mzail]
vdzonmhydc-cxd-rdquhbdr-209[dchrb]
molgbzqfib-mixpqfz-doxpp-qoxfkfkd-939[fopqx]
xzwrmkbqtm-xtiabqk-oziaa-camz-bmabqvo-642[goucj]
houngfgxjuay-yigbktmkx-natz-xkykgxin-228[fhiyr]
oxmeeuruqp-pkq-abqdmfuaze-612[equam]
gpewwmjmih-tpewxmg-kveww-jmrergmrk-542[mwegr]
pelbtravp-qlr-grpuabybtl-143[byozf]
cqwdujys-rkddo-iqbui-114[hdywo]
gpsxdprixkt-tvv-gtprfjxhxixdc-817[xptdg]
amlqskcp-epybc-aylbw-amyrgle-qfgnngle-964[laegy]
yuxufmdk-sdmpq-eomhqzsqd-tgzf-qzsuzqqduzs-482[tlzym]
plolwdub-judgh-fdqgb-frdwlqj-uhdftxlvlwlrq-127[izfao]
egdytrixat-ytaanqtpc-detgpixdch-505[tadce]
awzwhofm-ufors-gqojsbusf-vibh-difqvogwbu-922[phblt]
hafgnoyr-ohaal-chepunfvat-221[ahfno]
vagreangvbany-cynfgvp-tenff-chepunfvat-559[nafve]
tcorcikpi-ecpfa-eqcvkpi-wugt-vguvkpi-388[cipkv]
zloolpfsb-zlkprjbo-doxab-zxkav-zlxqfkd-obzbfsfkd-757[bozfk]
ykhknbqh-ywjzu-ykjpwejiajp-966[jkyhp]
kwvacumz-ozilm-moo-aitma-512[maoiz]
wfruflnsl-nsyjwsfyntsfq-xhfajsljw-mzsy-jslnsjjwnsl-229[sjfln]
sno-rdbqds-okzrshb-fqzrr-nodqzshnmr-781[xqzdf]
yrwxefpi-tvsnigxmpi-veffmx-stivexmsrw-724[ixefm]
hqtyeqsjylu-isqludwuh-xkdj-huiuqhsx-712[uhqsd]
yhkpvhjapcl-ibuuf-zavyhnl-903[halpu]
forwcoqhwjs-pogysh-gvwddwbu-818[wodgh]
oqnidbshkd-dff-nodqzshnmr-573[ysdzb]
gzefmnxq-dmnnuf-dqeqmdot-482[dmnqe]
lnkfaypeha-oywrajcan-dqjp-zaoecj-576[ajcen]
xtwtelcj-rclop-mldvpe-afcnsldtyr-899[dxnhp]
rmn-qcapcr-hcjjwzcyl-umpiqfmn-522[cmjnp]
egdytrixat-gpqqxi-tcvxcttgxcv-271[txcgi]
njmjubsz-hsbef-fhh-tfswjdft-103[fhjsb]
ugjjgkanw-tmffq-umklgewj-kwjnauw-996[jwgku]
gifavtkzcv-gcrjkzt-xirjj-glityrjzex-737[jgirt]
bgmxkgtmbhgte-unggr-xgzbgxxkbgz-137[gbxkm]
xgvnndadzy-agjrzm-kpmxcvndib-317[yqtlw]
nwilwcejc-zua-ykjpwejiajp-758[jwace]
ykhknbqh-oywrajcan-dqjp-naoawnyd-264[anydh]
iutyaskx-mxgjk-yigbktmkx-natz-yzuxgmk-904[imkry]
vhkkhlbox-vahvhetmx-kxlxtkva-163[hkvxa]
ktiaaqnqml-moo-amzdqkma-148[gklmn]
shoewudys-sxesebqju-kiuh-juijydw-998[suejd]
houngfgxjuay-ckgvutofkj-pkrrehkgt-cuxqynuv-410[ugkcf]
aczupnetwp-mldvpe-xlcvpetyr-249[mcajd]
zvyvgnel-tenqr-enzcntvat-wryylorna-znexrgvat-507[nertv]
dyz-combod-oqq-bocokbmr-250[yvlka]
qmpmxevc-kvehi-tpewxmg-kveww-qerekiqirx-880[eikmq]
rflsjynh-xhfajsljw-mzsy-xmnuunsl-411[cpyxn]
ibghopzs-qobrm-qcohwbu-qcbhowbasbh-740[yajfh]
pinovwgz-zbb-yzndbi-291[rqzob]
emixwvqhml-kivlg-ivitgaqa-278[ivagl]
jchipqat-rpcsn-rdpixcv-jhtg-ithixcv-635[cihpt]
xtwtelcj-rclop-ojp-wlmzclezcj-275[cljeo]
cybyjqho-whqtu-sxesebqju-huqsgkyiyjyed-712[yqehj]
htqtwkzq-xhfajsljw-mzsy-knsfshnsl-489[gbywx]
ncjzrpytn-ojp-xlcvpetyr-405[pcjnr]
enqvbnpgvir-onfxrg-ybtvfgvpf-455[qsbad]
xgvnndadzy-ytz-yzndbi-967[dnyza]
lujbbrornm-kdwwh-orwjwlrwp-615[wrbjl]
yhwooebeaz-ydkykhwpa-bejwjyejc-368[eyjwa]
hqtyeqsjylu-sxesebqju-tulubefcudj-894[sizkn]
zbytomdsvo-mrymyvkdo-crszzsxq-458[mosyz]
ojk-nzxmzo-agjrzm-yzndbi-343[zjmno]
bdavqofuxq-oazegyqd-sdmpq-omzpk-oamfuzs-fdmuzuzs-664[zdmoq]
dfcxsqhwzs-qobrm-fsoqeiwgwhwcb-792[wqsbc]
dpssptjwf-kfmmzcfbo-sfbdrvjtjujpo-649[fjpsb]
rgndvtcxr-tvv-detgpixdch-297[xnstm]
tmrszakd-cxd-kzanqzsnqx-235[zadkn]
zhdsrqlchg-fdqgb-frdwlqj-ghsduwphqw-725[dhqgw]
tyepcyletzylw-dnlgpyrpc-sfye-pyrtyppctyr-405[yptce]
ynukcajey-xwogap-zalhkuiajp-524[sgmwy]
eadalsjq-yjsvw-kusnwfywj-zmfl-sfsdqkak-190[safjk]
clotzlnetgp-ojp-cpdplcns-899[pclno]
pbybeshy-onfxrg-phfgbzre-freivpr-507[rbefp]
hwbba-rncuvke-itcuu-yqtmujqr-414[ubcqr]
uiovmbqk-xtiabqk-oziaa-wxmzibqwva-902[aibqk]
kgjgrypw-epybc-qaytclecp-fslr-pcacgtgle-288[cgpel]
dmybmsuzs-rxaiqd-fdmuzuzs-664[dmsuz]
jsvagsulanw-kusnwfywj-zmfl-esfsywewfl-528[swfla]
jvuzbtly-nyhkl-ibuuf-mpuhujpun-149[ubhjl]
zsxyfgqj-gfxpjy-xjwanhjx-307[jxfgy]
wifilzof-wuhxs-womnigyl-mylpcwy-448[wilyf]
dwbcjkun-kjbtnc-ujkxajcxah-537[jckab]
ucynmlgxcb-afmamjyrc-pcyaosgqgrgml-652[cgmay]
gpewwmjmih-mrxivrexmsrep-veffmx-pefsvexsvc-490[emvxf]
wifilzof-vumeyn-mbcjjcha-682[cfijm]
ujqgywfau-bwddqtwsf-ljsafafy-658[fawdj]
ujqgywfau-usfvq-ugslafy-suimakalagf-788[aufgs]
lgh-kwujwl-jsttal-ogjckzgh-294[gjlhk]
votubcmf-qmbtujd-hsbtt-sfdfjwjoh-909[tbfjd]
zntargvp-wryylorna-qrcnegzrag-221[ragny]
nvrgfezqvu-jtrmvexvi-ylek-nfibjyfg-763[duyon]
myvybpev-oqq-crszzsxq-276[qsvyz]
nzcczdtgp-nlyoj-nzletyr-nfdezxpc-dpcgtnp-535[ncpzd]
wyvqljapsl-jovjvshal-svnpzapjz-877[jvalp]
lxuxaodu-lqxlxujcn-bqryyrwp-381[xluqr]
iuxxuyobk-jek-iayzuskx-ykxboik-826[kxiuy]
dmybmsuzs-omzpk-oamfuzs-efadmsq-690[mszad]
ymszqfuo-dmnnuf-pqbmdfyqzf-300[fmqdn]
xfbqpojafe-cvooz-xpsltipq-649[opfqx]
mvkccspson-bknsykmdsfo-oqq-domrxyvyqi-536[oskmq]
ykhknbqh-zua-iwjwcaiajp-420[ahijk]
pbafhzre-tenqr-rtt-phfgbzre-freivpr-299[docru]
pynffvsvrq-enoovg-fnyrf-585[fnvor]
oaddaeuhq-qss-efadmsq-794[xjkyr]
oaxadrgx-dmpuamofuhq-qss-oazfmuzyqzf-586[mfaud]
yaxsnlcrun-ljwmh-ldbcxvna-bnaerln-173[nlabc]
ksodcbwnsr-qcffcgwjs-qobrm-igsf-hsghwbu-714[sbcfg]
chnylhuncihuf-vohhs-xypyfijgyhn-136[yzkfs]
zgmfyxypbmsq-aylbw-dglylagle-236[lygab]
zadftbaxq-anvqof-efadmsq-482[afqdb]
jrncbavmrq-cynfgvp-tenff-fuvccvat-325[cfvna]
veqtekmrk-fyrrc-xiglrspskc-880[tscqj]
jsehsyafy-usfvq-ogjckzgh-814[sfghj]
zilqwikbqdm-zijjqb-ivitgaqa-850[pjgiu]
upq-tfdsfu-cvooz-dvtupnfs-tfswjdf-519[fdstu]
dszphfojd-qmbtujd-hsbtt-ufdiopmphz-441[dhptb]
bkwzkqsxq-pvygob-cdybkqo-198[bkqoy]
nzcczdtgp-clmmte-ecltytyr-275[ctelm]
vehmsegxmzi-gerhc-wxsveki-308[eghim]
hvbizodx-xjgjmapg-kgvnodx-bmvnn-vivgtndn-421[museg]
oxmeeuruqp-rxaiqd-mocgueufuaz-508[tysvw]
vagreangvbany-pnaql-znantrzrag-559[angrv]
qspkfdujmf-dboez-dpbujoh-qvsdibtjoh-441[dbjof]
nzydfxpc-rclop-qwzhpc-pyrtyppctyr-847[bdick]
iuruxlar-hgyqkz-xkikobotm-618[kioru]
zilqwikbqdm-akidmvomz-pcvb-camz-bmabqvo-512[mbaiq]
ohmnuvfy-wuhxs-wiuncha-nywbhifias-136[hinuw]
myvybpev-mrymyvkdo-nozvyiwoxd-770[sinbh]
sorozgxe-mxgjk-xghhoz-rghuxgzuxe-904[gxhoz]
ujoon-rpcsn-detgpixdch-661[cdnop]
nzwzcqfw-awldetn-rcldd-hzcvdsza-561[dzcwa]
oknkvcta-itcfg-eqpuwogt-itcfg-dwppa-gpikpggtkpi-830[gptik]
hcd-gsqfsh-suu-rsdofhasbh-454[shdfu]
aczupnetwp-mldvpe-hzcvdsza-613[pzacd]
hwbba-lgnnadgcp-fgrnqaogpv-128[xzspm]
drxevkzt-vxx-dribvkzex-581[xvdek]
esyfwlau-usfvq-ghwjslagfk-710[fsagl]
zlkprjbo-doxab-pzxsbkdbo-erkq-obxznrfpfqflk-861[bkofp]
mbiyqoxsm-mkxni-psxkxmsxq-536[xmsik]
wihmogyl-aluxy-lugjuacha-wuhxs-uwkocmcncih-942[uchal]
aoubshwq-gqojsbusf-vibh-difqvogwbu-116[boqsu]
tfejldvi-xiruv-vxx-fgvirkzfej-321[vfixe]
eqpuwogt-itcfg-hnqygt-uvqtcig-128[gtqci]
forwcoqhwjs-foppwh-gozsg-376[owfgh]
xjmmjndqz-wpiit-yzndbi-447[idjmn]
ixccb-exqqb-ghsduwphqw-595[zxtyc]
ynukcajey-ywjzu-hwxknwpknu-186[tsayq]
jlidywncfy-mwupyhayl-bohn-guhuaygyhn-396[yhnua]
wyvqljapsl-jovjvshal-lunpullypun-721[ljpuv]
surmhfwloh-fdqgb-frdwlqj-fxvwrphu-vhuylfh-413[fhlru]
cybyjqho-whqtu-kdijqrbu-sxesebqju-tulubefcudj-374[ubjqe]
hqtyeqsjylu-vbemuh-fkhsxqiydw-842[inepa]
rdggdhxkt-hrpktcvtg-wjci-apqdgpidgn-557[ahtds]
bnknqetk-bgnbnkzsd-dmfhmddqhmf-339[dnbkm]
bqxnfdmhb-cxd-bnmszhmldms-131[mbdhn]
jsehsyafy-usfvq-ugslafy-jwsuimakalagf-788[asfuy]
ltpedcxots-rpcsn-rdpixcv-hwxeexcv-609[cxepd]
ojk-nzxmzo-pinovwgz-agjrzm-hvmfzodib-915[scjyr]
krxqjijamxdb-kdwwh-jwjuhbrb-849[jbwdh]
sbejpbdujwf-cbtlfu-vtfs-uftujoh-285[dsgnt]
dkqjcbctfqwu-dwppa-fgukip-622[pcdfk]
cvabijtm-kivlg-kwibqvo-aitma-200[iavbk]
dsxxw-aylbw-dglylagle-652[gsakl]
gpbepvxcv-gpsxdprixkt-eaphixr-vgphh-htgkxrth-453[phxgr]
bnqqnrhud-rbzudmfdq-gtms-sdbgmnknfx-365[dnbmq]
etyyx-qzaahs-lzqjdshmf-547[ahqsy]
kpvgtpcvkqpcn-lgnnadgcp-ujkrrkpi-154[pkcgn]
cvabijtm-ntwemz-bmkpvwtwog-226[mtwbv]
guahyncw-mwupyhayl-bohn-uwkocmcncih-864[chnuw]
aczupnetwp-mldvpe-nzyeltyxpye-171[bwvxh]
ryexqpqhteki-sqdto-seqjydw-jhqydydw-920[qdyeh]
aietsrmdih-hci-vigimzmrk-568[imhra]
zilqwikbqdm-lgm-xczkpiaqvo-356[iqklm]
zvyvgnel-tenqr-pubpbyngr-npdhvfvgvba-533[vnbgp]
vrurcjah-pajmn-lxuxaodu-kdwwh-mnbrpw-875[fnqea]
mrxivrexmsrep-jpsaiv-irkmriivmrk-958[rimve]
mvhkvbdib-wvnfzo-omvdidib-733[stayi]
ryexqpqhteki-kdijqrbu-zubboruqd-fkhsxqiydw-192[tsdpw]
oxjmxdfkd-zxkav-zlxqfkd-xkxivpfp-497[smpbo]
cebwrpgvyr-pnaql-znantrzrag-117[rangp]
qfmcusbwq-qvcqczohs-obozmgwg-766[qcobg]
dmbttjgjfe-ezf-bdrvjtjujpo-129[gbjwt]
rflsjynh-hmthtqfyj-zxjw-yjxynsl-593[jyhfl]
ncjzrpytn-awldetn-rcldd-afcnsldtyr-769[ntqrm]
pdjqhwlf-fdqgb-frdwlqj-vwrudjh-699[dfjqw]
slqryzjc-zsllw-yaosgqgrgml-210[lgsqr]
bkwzkqsxq-oqq-vyqscdsmc-718[qsckb]
lsyrkjkbnyec-oqq-vklybkdybi-224[kyblq]
vkppo-rqiauj-skijecuh-iuhlysu-530[uihjk]
guahyncw-wifilzof-zfiqyl-xyjfisgyhn-526[uhsvy]
gsvvswmzi-hci-viwievgl-984[ivgsw]
ftzgxmbv-vahvhetmx-vnlmhfxk-lxkobvx-345[vxhmb]
eqttqukxg-hnqygt-rwtejcukpi-882[tqegk]
ygcrqpkbgf-gii-rwtejcukpi-674[gickp]
ibghopzs-pogysh-qcbhowbasbh-558[bhosg]
ocipgvke-uecxgpigt-jwpv-ncdqtcvqta-544[cgptv]
drxevkzt-sleep-ivjvrity-685[tkwzb]
qekrixmg-gsvvswmzi-jpsaiv-hitpscqirx-256[isvgm]
qjopwxha-bhksan-lqnydwoejc-862[ahjno]
vjpwncrl-ljwmh-mnbrpw-277[wjlmn]
zbytomdsvo-tovvilokx-nofovyzwoxd-796[ysvjp]
ajyqqgdgcb-aylbw-amyrgle-pcacgtgle-522[gacly]
zixppfcfba-zxkav-abpfdk-835[afpbk]
gzefmnxq-oaddaeuhq-nmewqf-oazfmuzyqzf-924[fqzae]
drxevkzt-sleep-glityrjzex-841[elrtx]
yflexwxoalrp-yrkkv-zrpqljbo-pbosfzb-367[blopr]
lugjuacha-dyffsvyuh-omyl-nymncha-578[yahuc]
tpspahyf-nyhkl-jovjvshal-aljouvsvnf-175[vahjl]
htwwtxnaj-rnqnyfwd-lwfij-jll-wjfhvznxnynts-567[nwjfl]
tipfxvezt-avccpsvre-ivjvrity-503[vitce]
myvybpev-bkllsd-yzobkdsyxc-198[ybdkl]
cqwdujys-sqdto-seqjydw-vydqdsydw-348[asypt]
bqxnfdmhb-qzaahs-otqbgzrhmf-339[hgfsm]
jshzzpmplk-lnn-aljouvsvnf-175[lnjps]
jxdkbqfz-zlilocri-pzxsbkdbo-erkq-zlkqxfkjbkq-679[kbqzl]
irgyyolokj-hatte-xkikobotm-488[oktiy]
buzahisl-jhukf-zavyhnl-123[haluz]
odiih-lqxlxujcn-orwjwlrwp-823[qoruw]
vhehkyne-utldxm-kxtvjnblbmbhg-293[bhekl]
fmsledevhsyw-gerhc-gsexmrk-vieguymwmxmsr-282[emsgr]
xgsvgmotm-igtje-lotgtiotm-852[qsejd]
xfbqpojafe-cbtlfu-tbmft-311[fbtac]
zlkprjbo-doxab-mixpqfz-doxpp-obzbfsfkd-601[bopdf]
szfyrqriuflj-srjbvk-wzeretzex-789[rezfj]
xjgjmapg-pinovwgz-xviyt-hvivbzhzio-759[wlrju]
hjgbwuladw-usfvq-ghwjslagfk-918[gwafh]
pbeebfvir-pubpbyngr-fgbentr-221[beprf]
ujqgywfau-usfvq-ogjckzgh-164[gufjq]
fkqbokxqflkxi-bdd-pqloxdb-497[bdkqx]
froruixo-sodvwlf-judvv-vdohv-855[aijkw]
oxaflxzqfsb-gbiivybxk-obzbfsfkd-601[bfxik]
gsvvswmzi-gerhc-gsexmrk-hiwmkr-594[gmrse]
xzwrmkbqtm-akidmvomz-pcvb-uizsmbqvo-252[wfzme]
hdgdovmt-bmvyz-xjinphzm-bmvyz-zbb-pnzm-oznodib-109[zbmdn]
pejji-myvybpev-pvygob-kmaescsdsyx-978[vqufp]
hdgdovmt-bmvyz-agjrzm-vivgtndn-369[vdgmn]
rkpqxyib-zelzlixqb-obxznrfpfqflk-835[bflqx]
aczupnetwp-awldetn-rcldd-lnbftdtetzy-483[tdeln]
rwcnawjcrxwju-bljenwpna-qdwc-anjlzdrbrcrxw-719[huwmx]
gbc-frperg-pnaql-znantrzrag-637[ragnp]
houngfgxjuay-xghhoz-jkvruesktz-306[nsazy]
ugjjgkanw-kusnwfywj-zmfl-mkwj-lwklafy-918[wjkfl]
ykhknbqh-nwxxep-bejwjyejc-992[sgbzr]
drxevkzt-nvrgfezqvu-treup-ivjvrity-269[vreti]
qfmcusbwq-gqojsbusf-vibh-ghcfous-272[zobty]
pbafhzre-tenqr-qlr-znantrzrag-481[ranze]
wpuvcdng-ecpfa-vgejpqnqia-154[paceg]
mhi-lxvkxm-unggr-etuhktmhkr-605[hkmgr]
bnqqnrhud-atmmx-sqzhmhmf-157[mhqna]
vetllbybxw-vahvhetmx-hixktmbhgl-891[hbltv]
dpssptjwf-gvaaz-ezf-fohjoffsjoh-597[fjosa]
molgbzqfib-pzxsbkdbo-erkq-qoxfkfkd-289[zcjum]
myxcewob-qbkno-cmkfoxqob-rexd-dbksxsxq-562[ysjzt]
vhglnfxk-zktwx-xzz-xgzbgxxkbgz-215[sgtyf]
jlidywncfy-xsy-xymcah-110[ycxad]
ktiaaqnqml-kivlg-wxmzibqwva-330[aiqkl]
etaqigpke-rncuvke-itcuu-fgukip-934[ueikc]
ksodcbwnsr-qvcqczohs-oqeiwgwhwcb-922[cwoqs]
raphhxuxts-gpqqxi-gtprfjxhxixdc-219[oytzu]
fab-eqodqf-dmnnuf-emxqe-872[zsbvi]
zlkprjbo-doxab-oxyyfq-rpbo-qbpqfkd-991[bopqd]
drxevkzt-vxx-tfekrzedvek-217[lkyzs]
qekrixmg-aietsrmdih-hci-qerekiqirx-412[tasnf]
nsyjwsfyntsfq-idj-hzxytrjw-xjwanhj-463[jnswy]
cxy-bnlanc-ljwmh-lxjcrwp-vjatncrwp-173[cjlnw]
apuut-nxvqzibzm-cpio-nzmqdxzn-889[cvjhy]
wsvsdkbi-qbkno-lexxi-wkbuodsxq-172[bksxd]
clotzlnetgp-awldetn-rcldd-ecltytyr-327[ltcde]
qspkfdujmf-dboez-dpbujoh-ufdiopmphz-571[dpfou]
willimcpy-wuhxs-wiuncha-lywycpcha-266[gzrbt]
jvsvymbs-ibuuf-ylhjxbpzpapvu-227[dbpkh]
bnmrtldq-fqzcd-bgnbnkzsd-rsnqzfd-599[dnbqz]
tbxmlkfwba-ciltbo-abmilvjbkq-549[blaik]
ujoon-hrpktcvtg-wjci-sthxvc-115[cthjo]
cybyjqho-whqtu-sxesebqju-ijehqwu-998[qehju]
qcbgiasf-ufors-awzwhofm-ufors-pibbm-qighcasf-gsfjwqs-948[rfsbq]
mvydjvxodqz-kgvnodx-bmvnn-mzvxlpdndodji-369[dvnmo]
iutyaskx-mxgjk-ckgvutofkj-yigbktmkx-natz-xkikobotm-852[ktxgi]
ohmnuvfy-yaa-lywycpcha-994[xwflv]
xjinphzm-bmvyz-agjrzm-ncdkkdib-499[mzbdi]
luxciuwncpy-dyffsvyuh-omyl-nymncha-630[fcgdy]
rwcnawjcrxwju-ajkkrc-uxprbcrlb-511[rcjwa]
oqnidbshkd-eknvdq-qdzbpthrhshnm-703[upwnl]
vhglnfxk-zktwx-cxeeruxtg-lxkobvxl-761[xkleg]
dmybmsuzs-yuxufmdk-sdmpq-rxaiqd-efadmsq-612[nlayh]
fbebmtkr-zktwx-ynssr-vahvhetmx-inkvatlbgz-761[drsyx]
xmrrq-tskcwl-klgjsyw-164[qbztu]
tcrjjzwzvu-upv-uvgcfpdvek-945[nheck]
vkrhzxgbv-ietlmbv-zktll-hixktmbhgl-839[lbhkt]
drxevkzt-irsszk-crsfirkfip-971[riksf]
tpspahyf-nyhkl-zjhclunly-obua-zavyhnl-201[hlyan]
enzcntvat-enqvbnpgvir-enoovg-freivprf-403[nverf]
iehepwnu-cnwza-ydkykhwpa-qoan-paopejc-888[apenw]
laffe-vrgyzoi-mxgyy-xkgiwaoyozout-878[fzrnp]
luxciuwncpy-wuhxs-wiuncha-xyjfisgyhn-812[uchin]
houngfgxjuay-yigbktmkx-natz-ktmotkkxotm-358[ktgmo]
qzlozfhmf-bgnbnkzsd-qdzbpthrhshnm-911[hzbnd]
mvkccspson-tovvilokx-zebmrkcsxq-432[ckosv]
pybgmyargtc-zyqicr-ylyjwqgq-652[gyezv]
gvaaz-tdbwfohfs-ivou-mbcpsbupsz-129[ojwuz]
ftzgxmbv-xzz-wxitkmfxgm-163[xmzfg]
ujqgywfau-wyy-ksdwk-970[wykua]
nwlddtqtpo-ojp-dezclrp-119[dplot]
rgllk-qss-ymdwqfuzs-274[lzpkf]
ugfkmewj-yjsvw-xdgowj-jwuwanafy-918[wjafg]
lxaaxbren-bljenwpna-qdwc-ydalqjbrwp-537[amnfi]
jfifqxov-doxab-mixpqfz-doxpp-obxznrfpfqflk-263[fxopq]
ygcrqpkbgf-hnqygt-vtckpkpi-310[gkpcq]
nzcczdtgp-nsznzwlep-opgpwzaxpye-353[kfyqu]
iutyaskx-mxgjk-laffe-xghhoz-zxgototm-436[csnwy]
jyfvnlupj-msvdly-yljlpcpun-617[xjyin]
crwwv-zxkav-zlxqfkd-abmilvjbkq-809[kvabl]
dkqjcbctfqwu-uecxgpigt-jwpv-tgceswkukvkqp-388[ckgpq]
hjgbwuladw-tskcwl-vwkayf-632[waklb]
gifavtkzcv-tyftfcrkv-jrcvj-607[vcftj]
vcibutulxiom-lugjuacha-mwupyhayl-bohn-xymcah-110[zaukx]
eadalsjq-yjsvw-tmffq-jwsuimakalagf-450[afjsl]
pejji-mrymyvkdo-ecob-docdsxq-172[docej]
tinnm-dzoghwq-ufogg-hfowbwbu-844[gowbf]
szfyrqriuflj-upv-tljkfdvi-jvimztv-347[vfijl]
emixwvqhml-xtiabqk-oziaa-abwziom-980[mzdxn]
cvabijtm-kwvacumz-ozilm-lgm-mvoqvmmzqvo-382[mvoza]
forwcoqhwjs-foppwh-gsfjwqsg-454[wfosg]
lejkrscv-jtrmvexvi-ylek-glityrjzex-503[ejlrv]
bjfutsneji-jll-qtlnxynhx-333[jlntx]
xgvnndadzy-wvnfzo-nzmqdxzn-915[nzdvx]
iuxxuyobk-yigbktmkx-natz-jkvruesktz-358[hkglx]
yhwooebeaz-ywjzu-pnwejejc-602[ejwoy]
gpsxdprixkt-rpcsn-hpath-115[phrst]
qzoggwtwsr-xszzmpsob-fsoqeiwgwhwcb-766[qokpy]
enzcntvat-pubpbyngr-pbagnvazrag-611[abzti]
tmrszakd-dff-kzanqzsnqx-781[zadfk]
gspsvjyp-tpewxmg-kveww-gywxsqiv-wivzmgi-880[wgvip]
htwwtxnaj-xhfajsljw-mzsy-jslnsjjwnsl-151[jswln]
mixpqfz-doxpp-absbilmjbkq-705[bjkty]
ykhknbqh-oywrajcan-dqjp-opknwca-732[ulyzv]
gspsvjyp-gerhc-wivzmgiw-932[gipsv]
yaxsnlcrun-yujbcrl-pajbb-uxprbcrlb-407[brclu]
kpvgtpcvkqpcn-lgnnadgcp-qrgtcvkqpu-128[nuklw]
votubcmf-sbccju-fohjoffsjoh-571[focjb]
zixppfcfba-zxkav-obzbfsfkd-549[fbzak]
gbc-frperg-rtt-grpuabybtl-221[rbgtp]
fhezusjybu-fbqijys-whqii-mehaixef-842[fyqxt]
zlilocri-zloolpfsb-gbiivybxk-jxkxdbjbkq-497[bilko]
kgjgrypw-epybc-zsllw-rcaflmjmew-964[lwceg]
amjmpdsj-djmucp-qrmpyec-314[mjpcd]
fruurvlyh-iorzhu-pdunhwlqj-413[ndqft]
jchipqat-tvv-rjhidbtg-htgkxrt-193[mfnvi]
vcibutulxiom-mwupyhayl-bohn-uwkocmcncih-968[cuhim]
avw-zljyla-jovjvshal-zlycpjlz-721[ljavz]
oazegyqd-sdmpq-nmewqf-pqbxakyqzf-352[qadef]
rdggdhxkt-qjccn-prfjxhxixdc-297[xcdgh]
hwdtljsnh-gzssd-knsfshnsl-281[shndl]
tipfxvezt-nvrgfezqvu-treup-tfrkzex-rthlzjzkzfe-451[mezst]
uiovmbqk-zijjqb-camz-bmabqvo-356[znrpy]
zilqwikbqdm-kivlg-kwibqvo-xczkpiaqvo-876[ehjwb]
shoewudys-rkddo-husuylydw-166[dsuyh]
ytu-xjhwjy-jll-xfqjx-125[znmyk]
zlilocri-ciltbo-cfkxkzfkd-107[ciklf]
kfg-jvtivk-wcfnvi-kirzezex-581[xbemd]
qvbmzvibqwvit-ntwemz-zmamizkp-356[mzivb]
ajyqqgdgcb-pyzzgr-bcqgel-470[gqbcy]
zgmfyxypbmsq-zyqicr-nspafyqgle-340[maipd]
pxtihgbsxw-wrx-etuhktmhkr-709[htxkr]
lxwbdvna-pajmn-ajvyjprwp-ljwmh-lxjcrwp-jwjuhbrb-303[jwpab]
tyepcyletzylw-clmmte-pyrtyppctyr-613[ytpce]
gspsvjyp-gerhc-gsexmrk-vigimzmrk-360[gmrse]
tmrszakd-okzrshb-fqzrr-rghoohmf-599[rhozf]
uwtojhynqj-hfsid-btwpxmtu-983[igebf]
tpspahyf-nyhkl-wshzapj-nyhzz-zavyhnl-461[rhtdy]
atyzghrk-xghhoz-iayzuskx-ykxboik-774[khxyz]
nwlddtqtpo-qwzhpc-fdpc-epdetyr-847[hsouv]
bpvctixr-snt-pcpanhxh-167[pchnt]
bxaxipgn-vgpst-gpsxdprixkt-rwdrdapit-rdcipxcbtci-609[pixdr]
jfifqxov-doxab-yrkkv-pxibp-991[ysvte]
hqcfqwydw-rkddo-tuiywd-504[nlasz]
ibghopzs-forwcoqhwjs-pibbm-twbobqwbu-792[csjyt]
yrwxefpi-fmsledevhsyw-fewoix-erepcwmw-672[ewfim]
jrncbavmrq-cebwrpgvyr-qlr-pbagnvazrag-533[rabgv]
iwcjapey-fahhuxawj-naoawnyd-706[awhjn]
houngfgxjuay-jek-ktmotkkxotm-358[kotgj]
dsxxw-aylbw-amyrgle-bcnyprkclr-496[lryab]
szfyrqriuflj-wcfnvi-glityrjzex-555[wpmhn]
eqnqthwn-lgnnadgcp-gpikpggtkpi-544[cndbf]
fnjyxwrinm-lqxlxujcn-uxprbcrlb-433[xlnrb]
bwx-amkzmb-kwtwznct-kivlg-kwibqvo-bziqvqvo-772[yfklb]
emixwvqhml-kivlg-zmkmqdqvo-824[mqvik]
dpmpsgvm-dboez-qvsdibtjoh-181[iqunm]
wlqqp-avccpsvre-tljkfdvi-jvimztv-451[neohc]
ikhcxvmbex-ktuubm-mxvaghehzr-813[hmxbe]
yhkpvhjapcl-ihzrla-wbyjohzpun-409[hpajl]
ucynmlgxcb-kgjgrypw-epybc-zsllw-bctcjmnkclr-470[clbgy]
gbc-frperg-pynffvsvrq-rtt-fgbentr-533[rfgtb]
odiih-mhn-mnyuxhvnwc-693[yikst]
pelbtravp-fpniratre-uhag-qrcnegzrag-897[eflsv]
ojk-nzxmzo-mvwwdo-kpmxcvndib-811[qrbnz]
hafgnoyr-qlr-erprvivat-949[ravef]
nij-mywlyn-zfiqyl-lyuwkocmcncih-968[orsct]
udpsdjlqj-udeelw-vdohv-179[dejlu]
houngfgxjuay-hatte-xkgiwaoyozout-358[qeuts]
zsxyfgqj-hfsid-htfynsl-uzwhmfxnsl-931[mcznp]
ujqgywfau-hdsklau-yjskk-jwuwanafy-918[aujkw]
buzahisl-kfl-thyrlapun-123[lahub]
jshzzpmplk-ihzrla-klzpnu-591[zlphk]
qmpmxevc-kvehi-fmsledevhsyw-hci-gywxsqiv-wivzmgi-984[ivemh]
apwmeclga-djmucp-qfgnngle-262[vbozj]
joufsobujpobm-ezf-mphjtujdt-545[enrth]
wlsiayhcw-wbiwifuny-ijyluncihm-136[iwych]
vehmsegxmzi-wgezirkiv-lyrx-vieguymwmxmsr-672[meigr]
forwcoqhwjs-pogysh-kcfygvcd-870[cofgh]
ryexqpqhteki-sqdto-seqjydw-bqrehqjeho-634[qehdj]
buzahisl-jvyyvzpcl-qlssfilhu-vwlyhapvuz-591[lvhsu]
vxupkizork-jek-zkinturume-852[tmzlr]
xmrrq-vqw-mkwj-lwklafy-762[wklmq]
irdgrxzex-tyftfcrkv-uvgrikdvek-555[rkvde]
fab-eqodqf-bxmefuo-sdmee-fdmuzuzs-742[uzdoy]
nij-mywlyn-vohhs-ijyluncihm-214[hwyfz]
lgh-kwujwl-tmffq-esfsywewfl-190[fwles]
pbeebfvir-pynffvsvrq-rtt-jbexfubc-611[izbpo]
dkqjcbctfqwu-uecxgpigt-jwpv-vtckpkpi-518[cpktg]
lejkrscv-srjbvk-jyzggzex-399[jegkr]
cqwdujys-rkddo-huqsgkyiyjyed-322[dyjkq]
apuut-xviyt-xjvodib-mznzvmxc-499[vximt]
aietsrmdih-fyrrc-pskmwxmgw-776[gltyk]
aczupnetwp-awldetn-rcldd-cpdplcns-743[cdpln]
kpvgtpcvkqpcn-hnqygt-ncdqtcvqta-570[cqtnp]
tcrjjzwzvu-sleep-uvmvcfgdvek-789[vecju]
crwwv-zxkav-zlxqfkd-cfkxkzfkd-653[kfxzc]
kgjgrypw-epybc-aylbw-cleglccpgle-366[cglep]
sebehvkb-rkddo-udwyduuhydw-244[yxpql]
wpuvcdng-ecpfa-eqcvkpi-ceswkukvkqp-648[ckpev]
qcbgiasf-ufors-qvcqczohs-igsf-hsghwbu-818[qvnjb]
sxdobxkdsyxkv-mkxni-mykdsxq-wkxkqowoxd-796[upngm]
cxy-bnlanc-lqxlxujcn-vjatncrwp-355[cnlxa]
ohmnuvfy-jfumncw-alumm-womnigyl-mylpcwy-240[biqdh]
tyepcyletzylw-awldetn-rcldd-lylwjdtd-275[tsenk]
vrurcjah-pajmn-yujbcrl-pajbb-fxatbqxy-511[drzlg]
ikhcxvmbex-yehpxk-hixktmbhgl-397[hxkbe]
kzgwomvqk-jcvvg-wxmzibqwva-824[mwzye]
tfejldvi-xiruv-treup-vexzevvizex-295[evixr]
frqvxphu-judgh-vfdyhqjhu-kxqw-pdqdjhphqw-361[hqdjp]
yflexwxoalrp-mixpqfz-doxpp-bkdfkbbofkd-497[fpxbd]
emixwvqhml-kivlg-bziqvqvo-382[nwsap]
mvydjvxodqz-ytz-xpnojhzm-nzmqdxz-863[mitys]
hcd-gsqfsh-gqojsbusf-vibh-ghcfous-844[shfgb]
wfruflnsl-hfsid-htfynsl-hzxytrjw-xjwanhj-775[fhjln]
tbxmlkfwba-zelzlixqb-qoxfkfkd-393[bfklx]
xjmmjndqz-wpiit-adivixdib-395[idjmx]
wyvqljapsl-jovjvshal-thuhnltlua-201[lahjv]
pkl-oaynap-lhwopey-cnwoo-zalhkuiajp-446[aoplh]
ugfkmewj-yjsvw-usfvq-kzahhafy-164[fahjk]
sebehvkb-hqcfqwydw-sqdto-iqbui-738[qbdeh]
mfklstdw-wyy-suimakalagf-814[afklm]
htsxzrjw-lwfij-xhfajsljw-mzsy-uzwhmfxnsl-983[jswfh]
chnylhuncihuf-vohhs-uhufsmcm-994[hucfm]
otzkxtgzoutgr-kmm-iayzuskx-ykxboik-696[kotxz]
htwwtxnaj-wfggny-ijufwyrjsy-307[mlrnu]
wlsiayhcw-wuhxs-lywycpcha-916[wchya]
htqtwkzq-gzssd-fhvznxnynts-931[nstzh]
tcfkqcevkxg-ecpfa-eqcvkpi-eqpvckpogpv-570[zvtny]
crwwv-yxphbq-obpbxoze-809[bopwx]
xjgjmapg-wpiit-hvmfzodib-681[wtrmn]
ksodcbwnsr-ibghopzs-qobrm-qcohwbu-gsfjwqsg-324[sbogq]
jchipqat-hrpktcvtg-wjci-bpcpvtbtci-323[ctpib]
lujbbrornm-npp-mnyjacvnwc-433[nbcjm]
xgjougizobk-lruckx-zkinturume-488[ukgio]
lxaaxbren-mhn-vjwjpnvnwc-459[najvw]
kyelcrga-bwc-pcacgtgle-834[cgael]
sgmtkzoi-vrgyzoi-mxgyy-sgxqkzotm-618[gmoyz]
surmhfwloh-fdqgb-frdwlqj-uhvhdufk-777[fhdul]
vxupkizork-hatte-ynovvotm-670[otvka]
amlqskcp-epybc-afmamjyrc-amlryglkclr-704[aclmr]
yaxsnlcrun-lqxlxujcn-jlzdrbrcrxw-719[pyomt]
ohmnuvfy-vohhs-yhachyylcha-578[xkpiy]
wdjcvuvmyjpn-ytz-jkzmvodjin-551[cairj]
aflwjfslagfsd-tskcwl-vwhsjlewfl-892[lfswa]
hcd-gsqfsh-aoubshwq-gqojsbusf-vibh-qighcasf-gsfjwqs-376[shqfg]
gbc-frperg-pnaql-pbagnvazrag-767[agprb]
emixwvqhml-jcvvg-wxmzibqwva-876[vmwiq]
nuatmlmdpage-omzpk-oamfuzs-bgdotmeuzs-716[maouz]
glrcplyrgmlyj-djmucp-mncpyrgmlq-340[acoxz]
qczcftiz-dzoghwq-ufogg-hfowbwbu-818[fgowz]
apuut-nxvqzibzm-cpio-yzkvmohzio-629[ziomp]
gpsxdprixkt-bpvctixr-gpqqxi-prfjxhxixdc-323[jxkig]
rmn-qcapcr-njyqrga-epyqq-bctcjmnkclr-704[cqrna]
wlsiayhcw-zfiqyl-jolwbumcha-708[swavu]
njmjubsz-hsbef-cvooz-usbjojoh-675[jobsh]
kpvgtpcvkqpcn-dcumgv-ceswkukvkqp-492[kcpvg]
egdytrixat-raphhxuxts-qphzti-steadnbtci-505[tahix]
qcbgiasf-ufors-xszzmpsob-rsdzcmasbh-402[ijlzr]
kfg-jvtivk-jtrmvexvi-ylek-uvjzxe-217[vejki]
vetllbybxw-xzz-hixktmbhgl-917[blxht]
htwwtxnaj-idj-fsfqdxnx-931[xdfjn]
muqfedyput-fbqijys-whqii-skijecuh-iuhlysu-842[gsjin]
dmybmsuzs-pkq-dqeqmdot-144[dmqsb]
nvrgfezqvu-wcfnvi-jvimztvj-815[vfijn]
aoubshwq-qvcqczohs-gsfjwqsg-272[qscgh]
bknsykmdsfo-mkxni-nozvyiwoxd-510[knodi]
bnmrtldq-fqzcd-dff-ehmzmbhmf-157[fmdbh]
qczcftiz-pibbm-rsjszcdasbh-142[eafby]
vagreangvbany-pnaql-nanylfvf-195[anvfg]
oxjmxdfkd-zlilocri-yxphbq-abmilvjbkq-497[zvsko]
lejkrscv-tyftfcrkv-uvjzxe-191[vcefj]
qekrixmg-gerhc-gsexmrk-hitpscqirx-698[regix]
xgsvgmotm-hgyqkz-xkgiwaoyozout-462[gokmt]
dpssptjwf-dszphfojd-ezf-tupsbhf-961[zyots]
jyfvnlupj-lnn-bzly-alzapun-123[uvkxg]
jsehsyafy-hdsklau-yjskk-umklgewj-kwjnauw-840[kjsau]
vdzonmhydc-bzmcx-bnzshmf-otqbgzrhmf-937[qxzpu]
qmpmxevc-kvehi-jpsaiv-stivexmsrw-126[xdsef]
ymszqfuo-vqxxknqmz-ymdwqfuzs-300[qmzfs]
qfkkj-nsznzwlep-zapcletzyd-561[nxzqv]
krxqjijamxdb-snuuhknjw-mnyjacvnwc-771[fgnhu]
tfiifjzmv-tyftfcrkv-jvimztvj-529[cgbts]
wfruflnsl-wfggny-qfgtwfytwd-957[fwgln]
kdijqrbu-tou-vydqdsydw-218[rkftc]
cebwrpgvyr-sybjre-freivprf-871[rebfp]
fmsledevhsyw-gpewwmjmih-glsgspexi-ywiv-xiwxmrk-958[weims]
yhtwhnpun-wshzapj-nyhzz-mpuhujpun-981[hnpuz]
muqfedyput-fbqijys-whqii-tufbeocudj-166[ufiqb]
vkrhzxgbv-utldxm-nlxk-mxlmbgz-137[xlmbg]
jsvagsulanw-ugjjgkanw-wyy-vwhsjlewfl-398[wjagl]
xtwtelcj-rclop-nsznzwlep-opawzjxpye-795[pelwz]
wyvqljapsl-yhiipa-zopwwpun-383[smzin]
ejpanjwpekjwh-xekdwvwnzkqo-oywrajcan-dqjp-oanreyao-264[ajwen]
ugfkmewj-yjsvw-bwddqtwsf-ogjckzgh-736[wgjdf]
yflexwxoalrp-bdd-qoxfkfkd-965[dfxkl]
kdijqrbu-sbqiiyvyut-fbqijys-whqii-bewyijysi-660[iybqj]
nzcczdtgp-mldvpe-hzcvdsza-743[tsrmc]
eza-dpncpe-upwwjmply-dpcgtnpd-457[pdcen]
iruzfrtkzmv-tyftfcrkv-dribvkzex-789[zcudt]
tfejldvi-xiruv-srjbvk-crsfirkfip-451[irfvj]
otzkxtgzoutgr-igtje-iugzotm-ykxboiky-280[tgoik]
ohmnuvfy-luvvcn-ijyluncihm-682[nuvch]
eadalsjq-yjsvw-usfvq-ugslafy-jwuwanafy-450[asfju]
fkqbokxqflkxi-yxphbq-cfkxkzfkd-653[kfxqb]
owshgfarwv-uzgugdslw-vwhsjlewfl-372[wglsf]
ygcrqpkbgf-dcumgv-octmgvkpi-414[hzick]
ujoon-ytaanqtpc-pcpanhxh-869[anpch]
wlsiayhcw-vohhs-lymyulwb-682[areml]
dlhwvupglk-zjhclunly-obua-zopwwpun-617[lupwh]
iuxxuyobk-inuiurgzk-jkyomt-228[uikox]
zuv-ykixkz-hgyqkz-ynovvotm-332[kvyzo]
ujqgywfau-bwddqtwsf-kwjnauwk-190[wuadf]
frqvxphu-judgh-udeelw-orjlvwlfv-361[luvde]
vqr-ugetgv-dwppa-octmgvkpi-102[gpvta]
iuxxuyobk-vrgyzoi-mxgyy-iayzuskx-ykxboik-410[yxiko]
vhglnfxk-zktwx-ietlmbv-zktll-ltexl-995[ltkxe]
ktiaaqnqml-kivlg-kwvbiqvumvb-746[vikqa]
zlkprjbo-doxab-pzxsbkdbo-erkq-rpbo-qbpqfkd-601[bkopd]
rdchjbtg-vgpst-rpcsn-rdpixcv-hidgpvt-973[pcdgr]
ixccb-udeelw-ghvljq-803[celbd]
uzfqdzmfuazmx-vqxxknqmz-fqotzaxask-872[uskol]
qzlozfhmf-atmmx-cdoknxldms-833[mdflo]
bpvctixr-ytaanqtpc-gtprfjxhxixdc-505[mainf]
kgjgrypw-epybc-aylbw-bcnyprkclr-678[ybcpr]
hqfxxnknji-hwdtljsnh-xhfajsljw-mzsy-fhvznxnynts-645[nhjsx]
ymszqfuo-nmewqf-oazfmuzyqzf-352[fzmqo]
yhwooebeaz-lhwopey-cnwoo-wjwhuoeo-862[owehy]
muqfedyput-fbqijys-whqii-mehaixef-374[iefqh]
xqvwdeoh-vfdyhqjhu-kxqw-vdohv-621[hvdqo]
pybgmyargtc-qaytclecp-fslr-rcaflmjmew-990[cytzv]
fnjyxwrinm-bljenwpna-qdwc-cajrwrwp-849[wnjra]
fab-eqodqf-ymszqfuo-otaoaxmfq-pqbmdfyqzf-222[fqoam]
drxevkzt-tyftfcrkv-kvtyefcfxp-685[ftkvc]
pyknyegle-afmamjyrc-mncpyrgmlq-340[myace]
ykhknbqh-ywjzu-ykwpejc-iwngapejc-914[ixmoc]
ydjuhdqjyedqb-isqludwuh-xkdj-ijehqwu-530[cryum]
dpssptjwf-kfmmzcfbo-mphjtujdt-207[fjmpt]
jvuzbtly-nyhkl-yhiipa-zavyhnl-123[yhlai]
eqttqukxg-dwppa-fgrnqaogpv-908[pntsf]
tcorcikpi-hnqygt-fgrctvogpv-232[cgtio]
zotts-wuhxs-qilembij-422[fazws]
pelbtravp-sybjre-hfre-grfgvat-273[xwnyt]
pbafhzre-tenqr-qlr-erfrnepu-117[refnp]
luxciuwncpy-yaa-qilembij-734[iaclu]
fbebmtkr-zktwx-wrx-kxtvjnblbmbhg-943[estfp]
rflsjynh-hmthtqfyj-uzwhmfxnsl-827[hfjlm]
ktwbhtvmbox-vahvhetmx-vhgmtbgfxgm-709[hmtvb]
fodvvlilhg-mhoobehdq-vwrudjh-517[hdovl]
lsyrkjkbnyec-lexxi-nozkbdwoxd-874[kxbde]
njmjubsz-hsbef-gmpxfs-eftjho-597[fjsbe]
qyujihctyx-luvvcn-fiacmncwm-604[cimnu]
udskkaxawv-wyy-umklgewj-kwjnauw-190[wkauj]
sebehvkb-zubboruqd-husuylydw-192[budeh]
nzwzcqfw-upwwjmply-dpcgtnpd-795[pwcdn]
zloolpfsb-bdd-qoxfkfkd-679[dfobk]
fhezusjybu-rkddo-cqdqwucudj-816[enzjf]
irgyyolokj-inuiurgzk-jkvruesktz-202[kirug]
bnqqnrhud-hmsdqmzshnmzk-atmmx-btrsnldq-rdquhbd-599[dmqhn]
avw-zljyla-jhukf-jvhapun-jbzavtly-zlycpjl-149[jlavy]
sno-rdbqds-bnqqnrhud-eknvdq-sqzhmhmf-729[qdnhs]
slqryzjc-aylbw-amyrgle-dglylagle-392[lyage]
hqfxxnknji-hfsid-fsfqdxnx-151[fxndh]
vehmsegxmzi-tpewxmg-kveww-pskmwxmgw-308[mwegx]
dzczkrip-xiruv-gcrjkzt-xirjj-ljvi-kvjkzex-633[jikrz]
mvhkvbdib-zbb-yzkvmohzio-915[bvzhi]
ejpanjwpekjwh-xwogap-zarahkliajp-316[ajpwe]
dwbcjkun-odiih-mhn-jlzdrbrcrxw-719[drbch]
gifavtkzcv-sleep-jkfirxv-633[vefik]
oxmeeuruqp-dmpuamofuhq-vqxxknqmz-oazfmuzyqzf-898[mquzf]
myvybpev-mkxni-mykdsxq-nocsqx-432[mxykn]
aczupnetwp-awldetn-rcldd-cpnptgtyr-431[ptcdn]
fab-eqodqf-dmnnuf-geqd-fqefuzs-222[fqden]
encuukhkgf-fag-ucngu-440[ugcfk]
cvabijtm-moo-twoqabqka-980[aobmq]
sawlkjevaz-lnkfaypeha-zua-opknwca-888[hlzus]
wfintfhynaj-ojqqdgjfs-yjhmstqtld-281[ibnmv]
kmjezxodgz-nxvqzibzm-cpio-gjbdnodxn-421[zdnox]
dfcxsqhwzs-qobrm-qcohwbu-qcbhowbasbh-402[bhqco]
joufsobujpobm-kfmmzcfbo-vtfs-uftujoh-441[orwsq]
nvrgfezqvu-treup-rthlzjzkzfe-607[zerft]
kfg-jvtivk-sleep-uvjzxe-555[evjkf]
jfifqxov-doxab-oxjmxdfkd-avb-zlkqxfkjbkq-627[xfkbd]
hcd-gsqfsh-qobrm-qcohwbu-rsgwub-350[bhqsc]
xst-wigvix-hci-hiwmkr-464[ihwxc]
yhwooebeaz-bhksan-odellejc-368[eoabh]
sehheiylu-zubboruqd-sedjqydcudj-452[mvars]
mybbycsfo-pvygob-cobfsmoc-302[amnsc]
ziuxioqvo-xtiabqk-oziaa-lmxtwgumvb-746[iaoxb]
gbc-frperg-sybjre-nanylfvf-377[xfjqz]
zekvierkzferc-dzczkrip-xiruv-tyftfcrkv-tljkfdvi-jvimztv-191[rhqtz]
lhkhszqx-fqzcd-idkkxadzm-cdrhfm-209[dhkzc]
mvkccspson-pvygob-bokmaescsdsyx-224[lkdtm]
vqr-ugetgv-dwppa-fgxgnqrogpv-336[nmitq]
nzwzcqfw-clmmte-pyrtyppctyr-717[lvyuh]
wsvsdkbi-qbkno-gokzyxsjon-lkcuod-bocokbmr-822[okbsc]
pyknyegle-djmucp-umpiqfmn-158[mpenu]
iqmbazulqp-rxaiqd-efadmsq-170[qadim]
irdgrxzex-sleep-dribvkzex-789[erxdi]
cxy-bnlanc-lxwbdvna-pajmn-yujbcrl-pajbb-orwjwlrwp-953[bajln]
wdjcvuvmyjpn-wpiit-yzqzgjkhzio-317[mtbqs]
rdchjbtg-vgpst-hrpktcvtg-wjci-hpath-661[zypto]
bwx-amkzmb-kivlg-kwibqvo-kwvbiqvumvb-980[htfdv]
sedikcuh-whqtu-zubboruqd-cqhaujydw-348[udhqb]
mbggf-jhukf-jvhapun-ylhjxbpzpapvu-149[phjua]
lzfmdshb-oqnidbshkd-cxd-sqzhmhmf-989[dhmsb]
zbytomdsvo-lkcuod-bokmaescsdsyx-510[osdbc]
iuxxuyobk-kmm-aykx-zkyzotm-384[nqfaj]
ejpanjwpekjwh-xwogap-odellejc-654[ejpwa]
dwbcjkun-yujbcrl-pajbb-anjlzdrbrcrxw-589[bjrca]
diozmivodjivg-ezggtwzvi-hvivbzhzio-239[ivzgo]
vqr-ugetgv-ecpfa-eqcvkpi-hkpcpekpi-362[peckv]
sxdobxkdsyxkv-mybbycsfo-mkxni-cobfsmoc-926[fnpzo]
yflexwxoalrp-zxkav-xkxivpfp-913[xpafk]
frqvxphu-judgh-hjj-whfkqrorjb-569[hjrfq]
sbqiiyvyut-rkddo-tufbeocudj-218[dubio]
esyfwlau-tmffq-kzahhafy-112[sadtv]
pbeebfvir-pubpbyngr-genvavat-715[zjqiy]
rgllk-vqxxknqmz-etubbuzs-534[bklqu]
nchhg-bwx-amkzmb-lgm-nqvivkqvo-486[mvbgh]
ykhknbqh-xqjju-hkceopeyo-160[utmir]
tmrszakd-okzrshb-fqzrr-sqzhmhmf-937[rzhms]
zhdsrqlchg-fdqgb-frdwlqj-vwrudjh-127[dhqrf]
eadalsjq-yjsvw-bwddqtwsf-ugflsafewfl-164[fswad]
sbejpbdujwf-kfmmzcfbo-xpsltipq-883[bfpjm]
kfg-jvtivk-vxx-rthlzjzkzfe-919[kvzfj]
ltpedcxots-eaphixr-vgphh-gthtpgrw-349[hptge]
bxaxipgn-vgpst-jchipqat-rpcsn-rjhidbtg-htgkxrt-531[tgphi]
clotzlnetgp-ojp-lylwjdtd-743[cqzyk]
zlkprjbo-doxab-zelzlixqb-pxibp-315[blpxz]
etyyx-bzmcx-qdzbpthrhshnm-755[bksta]
eqnqthwn-ecpfa-ceswkukvkqp-336[ekqcn]
jvyyvzpcl-ihzrla-zlycpjlz-383[lzycj]
wbhsfbohwcboz-pwcvonofrcig-suu-cdsfohwcbg-896[cobwf]
nwzekwypera-bhksan-nayaerejc-186[aenkr]
tmrszakd-eknvdq-lzmzfdldms-989[dmzkl]
szfyrqriuflj-wcfnvi-rthlzjzkzfe-971[nhmbi]
yflexwxoalrp-pzxsbkdbo-erkq-pbosfzbp-653[wctun]
iehepwnu-cnwza-ywjzu-ykwpejc-zalwnpiajp-524[czsja]
vkrhzxgbv-vtgwr-vhtmbgz-mktbgbgz-553[kweyh]
vetllbybxw-vtgwr-vhtmbgz-mxvaghehzr-553[vzicb]
rgllk-qss-etubbuzs-430[sblue]
udglrdfwlyh-gbh-ghyhorsphqw-465[hgdlr]
krxqjijamxdb-kdwwh-vjatncrwp-823[kvmoi]
tpspahyf-nyhkl-kfl-aljouvsvnf-981[flahk]
bxaxipgn-vgpst-qphzti-rdcipxcbtci-635[ipctx]

View File

@ -0,0 +1 @@
cxdnnyjw

572
AOC2016/input2016/day06.in Normal file
View File

@ -0,0 +1,572 @@
cqvkxhip
tgswqbjh
ymbqjoau
yakqfnvb
klwpoxak
ebftersc
muhqajoy
sttjluap
nbfrccxf
pjtxsrdt
pcehiulx
imtchqqu
shtdcptu
gziwdtvt
gkisoote
dmodaoyb
mqykfphl
rchfhsxr
expmfmmi
eyyjzupd
ysoqeeib
phedgslu
xmwituwf
cibvkswh
dusqdmkm
oajlhpcj
nqbvrtsv
eytohbvb
byjvrycg
oorhjlll
bflfjdaz
wtydcsem
xinelpsx
bkrenkkc
kuhljsqo
fhkrtpkg
qkiohori
rzebhkwv
prpldmyf
dstdrxbo
jgtenhmc
vpibddhk
nkytfkno
hldsxaoq
qgwusrkd
xlsuudux
buxfxaiy
uljrvuen
awoyppai
igplagub
kqfiefgc
cqjukquf
djxuuizu
zvuetjli
uwcrclvy
gtdlktiv
cvwbsaxj
zpwzzepj
vmdmkgqz
qfsxdnrf
mhqtikwv
fduxoluy
emhhanfc
zglqrchc
jvvjspsu
rndsqnky
itzjeqfr
lnpslqsj
yxohoogq
oqmmzizo
ginjbszz
qhdnjnxs
mjtbhrzl
zorxielb
xflyknux
xrssqfpx
tcvrpzxn
sgnholch
nlpbrofn
qclukwkr
foylzchc
hieqxicp
nqvwnhpt
ssubumix
vtbpattp
ncgmzjmv
wtzedksg
mvlatfbj
ithfpwgr
dmqvfilt
lbnovpit
hqfzxflr
pgeeancn
rpdiwwle
ehkipwnx
pncgkqey
chzakbif
doooixwk
xztjzzrs
vhyqtnja
cbzmragf
rxqhsehw
rxzuqnoy
kvldlabx
crsslumd
cbxmypaq
qzevgrco
teiavilb
yjuhsfkj
asutrkwn
csgkdxtw
fbdppqjn
ivaewkpq
iznlnknb
btxpvjxk
rrpatocg
yxgkxenm
yrszvqpo
olhjkcac
dmaxpvog
wzicsunc
eoaozekn
oqbcrcje
jjpcwqae
zlyibfto
nkkarjbd
rrsrbrlr
gllxvuve
pkanrgds
bylfpxdm
tzkvedot
eidxawif
nwvcofjz
xkfverdu
wgncgvvy
epwrztow
mybcqyza
arxfmrfd
utcbwrta
iwdfihgp
tkskahas
vvkmupxb
ffetjcgu
nmaoaihp
wilheaug
pmshnqgg
pzbjnbtw
zlxbrzhz
xwikirug
rprmighu
xaaaioxr
mqxpjfgw
ejhezvgh
brjmtonm
wskkweze
kkaxuuib
mdrbckzy
idpwlzfg
fqfdktuq
jnurlaba
bbgftoqt
sgiuadsr
pwzcfnir
mytlszbv
uxcwljqs
lyrangoq
lnmbpgej
qjjugsps
kptbbita
sppvfzzw
ghkleimh
aupnupvy
tzxtqzev
dbcyghnu
qaygxqjo
vgscfmwb
raoylhwp
gewyhjjh
bsozmyma
skpkdxcx
qcngjsxk
xlznquqa
tztogrtf
bvnovdaf
crlrvjsq
afbpxgwl
gwbeomez
aezkolyv
cooulafb
dnrsyvda
ljudufiz
ctwxlryc
djmebdhh
ktoaoxmd
afqaqbbj
mobvjjyk
yplopnti
kwkqjzol
fcvncctm
pkbzlejz
axxxbdqj
gnjurhkl
qakjwsvw
vkoagapm
tpeyuvqi
omejmbtw
yhitogvj
ybpwtcvb
xtnuyfyh
isvpwgza
ozdntafh
hysgmgvh
zbgkvytj
fntphlnd
xjyujmbw
uvnhgphl
decpnkwq
kmkepzcp
lwegdttv
epkpsehc
uouovxth
agvppzan
zxllwuvw
ektemcjl
zegwoyif
hqhrdyzq
qiyxumhk
trbebaka
etjxsihf
yxjgfvnf
joywcwmz
teeqmoik
qjknvrmq
avpxxuni
naemzbma
jpbxexkk
ifevcqzn
tcnibepd
yzppffml
xhqgnbqc
lvvopbzw
pnzmeuon
ovzzvvsh
mcqmuqjp
oadvyhfk
tkgnxpyy
mvbisygc
occsftic
fawfwbvy
hqmqpuam
ptjxkjtk
hzxuosye
zingpdhg
jiombirp
vjtvrses
fdlzglxq
ggooqynz
fmwotljx
mnzzmfro
vtvjvcqu
kmpiufet
hwsvlelq
wdenjddo
gfqtffby
cxneiwee
wtribxye
gvuszzzu
pugjyrqp
yewglqml
beqgcrqn
azmucset
kicbbxtu
bmihylgt
edjrinqf
vvdretyn
zkakzfkp
qbraqzwo
ujpgjzdc
hdobaxgr
atghhhaw
ouucgcws
iodycvik
ljjdonpe
nnekdlaz
lbrzjrkn
jjwewnji
tfdkekdf
eidbjaiz
hssryuot
oajvmyuj
fziqlofo
uisyryfh
ssucyqxa
wyvmbyuq
fomhuool
scyogldx
uznjymzz
tnmfndhu
wmaiqhjd
jrtvsvys
zpgdzcdw
rpzjgslv
uulfdwba
gfctmdso
jcqqmnxe
hbzxgupz
zbhofhjo
szmkzygs
ydsnzkwe
djbctccs
utqjhlzr
dslwhsra
ujxkxald
panonqfl
brhfqycu
adewetuw
rzsxqpyd
ypfaxikk
vgoncwxp
kqcrmyil
vwsswwlt
bjxktjpi
lyzyaehh
noccjwkt
volhauxw
zeeaczxk
cgiyzqtg
wrflucju
mupwfuwq
tlgvwoqm
laybkcqh
mawgcbyq
ofuaudem
gtkhbeuu
svrzwaxw
ohqiojux
mnmttbve
jlluhifp
zuhdfnaq
hsedbspi
rkqoshpx
qzvdlvuc
rwbglsly
djpwgibn
edzgvmws
teacriww
gcvzijna
llokdnqu
dkywadmh
madxishe
feharxjj
sqzpbcgu
ohmflgzd
qrrsyggg
sxxrafvs
xnaterpk
tdiytzmh
wecsvxnm
uiksxtzm
ypqpajdd
fyaoughg
epvdtbni
pyynubyw
dpjdgbaf
vlomtyym
zpitxkwr
tzclhsoz
wduicuqg
sltpfxwo
iyrmivtk
hdmfndbx
znqwrzrs
fxktgznx
indnyerl
airalvum
jfsfyysy
svztyezl
qsjpktkb
xfujksji
jkymepzm
lrtlztdg
nluspned
huwocmgk
nygyugbk
ryzsjezz
uxwwczou
awrcdzad
tobynxxz
swicrqsv
jqywnfns
kdzvcwmh
gogmydcr
dkcuvthh
hkmraojf
kcgbpskp
qgknjgtt
oywbqczg
oiqpwmcv
fxjrhvce
laaizayr
xfcldeuu
govaqtom
dbcymhvq
yjzeuyxc
sejtfvqn
pbvavgov
tpitipok
lnfxhraz
whbqsgli
beuhoifp
pojyvmuz
yynnekkn
nxggwods
nkhpvkct
rcxwiluq
gnhsygno
nwwgewiu
kcbqnvcb
jiisqtqt
dochmmei
cwmwfrwl
hcautqpg
oihxktet
yrcekmmv
lxoyyqxp
vlbvilra
uqnsdjdf
jadyopgr
iwunbaps
wrplbwpj
shfuglla
knhgmlsg
riknnrmg
hoxzmvsr
qvqdqxrv
lyyvpffj
ghhflirv
khmzdart
qixervoz
fdgemrrn
uvnbxxpz
lqvanhjt
umorijwr
sgogttye
jlfgdzoc
barxtobf
czrzjduo
vlgkvnek
prknsjfr
uleiwboe
mxaswrft
ihqcepmh
awfqxael
hqvzrkbw
zwvciodj
czyrbdhq
ixhfswys
ndauoxcn
lhhwxiry
adpagord
suuxfdnq
nynlzhfj
ffmwgpyj
idbgnwev
wuculiup
cymyvkgm
fifqbhvs
ijxfzmrq
hugjbhin
aeffbcfp
ywxtejmz
qpprytsg
kcmlmbeo
ruomfeex
vvtpcfnk
zcihodib
nnfoffoi
rmldwivo
ejrzqyln
ifnjdpab
abiidqmo
aglmsjkr
xwqghpda
gufhhjer
ubjzhfgj
glhagkrm
wiwhahqd
lbyhcebg
ahhhxupc
dulzuzyi
xxdqhiod
ydkrksxo
pgdazjfi
ebrjoyrr
maejpwkm
xekimgsi
jvntcosc
wrfiyvmb
hfgzughl
wgbwylwl
tpjgkkye
wsspddss
ctoyeuvv
skjcqabz
wfutxuew
oqymawht
xeqmpvcm
hrmflsjx
rstnycbh
aavqqxcc
ouawtykt
kmxcjxxe
heudiqlo
srmiwwrw
ufavnfdy
xfokmkax
vnzztetb
goevrbmb
wfkthpfj
ddesetaa
vygkqvdn
qsyemmqr
iqlyiqtx
esvuchui
pfslklic
genqjcpi
bumqsxkx
msvbjoip
lghjsxdw
elukpmbf
qmipavgm
iafoaecd
usidajnf
vxsymknf
oyfjsysv
mpwtxlvv
kogsobli
jmgwktdj
rgztrmby
dnrcfisj
ottnehjl
zsqbinds
zmufvgrd
fcalplxx
jcwqwnvm
myjowlcd
nodixwaa
phfnpbve
kexcgape
ldmlswbk
naxeikbg
cgmlnbsb
vuwbdcnb
bwxbhmgy
ziadnccv
bacypeeq
tbluknup
btanytry
bqddnwwl
urieqmyv
csrdslqa
fsfiyiai
ceasodly
jetpbhos
xcqzgosd
ydqiuyzh
vxpzumjp
ruwlxvle
exrrmafx
kbfikzdl
bhvvzgfn
ivckwbga

2000
AOC2016/input2016/day07.in Normal file

File diff suppressed because it is too large Load Diff

174
AOC2016/input2016/day08.in Normal file
View File

@ -0,0 +1,174 @@
rect 1x1
rotate row y=0 by 10
rect 1x1
rotate row y=0 by 10
rect 1x1
rotate row y=0 by 5
rect 1x1
rotate row y=0 by 3
rect 2x1
rotate row y=0 by 4
rect 1x1
rotate row y=0 by 3
rect 1x1
rotate row y=0 by 2
rect 1x1
rotate row y=0 by 3
rect 2x1
rotate row y=0 by 2
rect 1x1
rotate row y=0 by 3
rect 2x1
rotate row y=0 by 5
rotate column x=0 by 1
rect 4x1
rotate row y=1 by 12
rotate row y=0 by 10
rotate column x=0 by 1
rect 9x1
rotate column x=7 by 1
rotate row y=1 by 3
rotate row y=0 by 2
rect 1x2
rotate row y=1 by 3
rotate row y=0 by 1
rect 1x3
rotate column x=35 by 1
rotate column x=5 by 2
rotate row y=2 by 5
rotate row y=1 by 5
rotate row y=0 by 2
rect 1x3
rotate row y=2 by 8
rotate row y=1 by 10
rotate row y=0 by 5
rotate column x=5 by 1
rotate column x=0 by 1
rect 6x1
rotate row y=2 by 7
rotate row y=0 by 5
rotate column x=0 by 1
rect 4x1
rotate column x=40 by 2
rotate row y=2 by 10
rotate row y=0 by 12
rotate column x=5 by 1
rotate column x=0 by 1
rect 9x1
rotate column x=43 by 1
rotate column x=40 by 2
rotate column x=38 by 1
rotate column x=15 by 1
rotate row y=3 by 35
rotate row y=2 by 35
rotate row y=1 by 32
rotate row y=0 by 40
rotate column x=32 by 1
rotate column x=29 by 1
rotate column x=27 by 1
rotate column x=25 by 1
rotate column x=23 by 2
rotate column x=22 by 1
rotate column x=21 by 3
rotate column x=20 by 1
rotate column x=18 by 3
rotate column x=17 by 1
rotate column x=15 by 1
rotate column x=14 by 1
rotate column x=12 by 1
rotate column x=11 by 3
rotate column x=10 by 1
rotate column x=9 by 1
rotate column x=8 by 2
rotate column x=7 by 1
rotate column x=4 by 1
rotate column x=3 by 1
rotate column x=2 by 1
rotate column x=0 by 1
rect 34x1
rotate column x=44 by 1
rotate column x=24 by 1
rotate column x=19 by 1
rotate row y=1 by 8
rotate row y=0 by 10
rotate column x=8 by 1
rotate column x=7 by 1
rotate column x=6 by 1
rotate column x=5 by 2
rotate column x=3 by 1
rotate column x=2 by 1
rotate column x=1 by 1
rotate column x=0 by 1
rect 9x1
rotate row y=0 by 40
rotate column x=43 by 1
rotate row y=4 by 10
rotate row y=3 by 10
rotate row y=2 by 5
rotate row y=1 by 10
rotate row y=0 by 15
rotate column x=7 by 2
rotate column x=6 by 3
rotate column x=5 by 2
rotate column x=3 by 2
rotate column x=2 by 4
rotate column x=0 by 2
rect 9x2
rotate row y=3 by 47
rotate row y=0 by 10
rotate column x=42 by 3
rotate column x=39 by 4
rotate column x=34 by 3
rotate column x=32 by 3
rotate column x=29 by 3
rotate column x=22 by 3
rotate column x=19 by 3
rotate column x=14 by 4
rotate column x=4 by 3
rotate row y=4 by 3
rotate row y=3 by 8
rotate row y=1 by 5
rotate column x=2 by 3
rotate column x=1 by 3
rotate column x=0 by 2
rect 3x2
rotate row y=4 by 8
rotate column x=45 by 1
rotate column x=40 by 5
rotate column x=26 by 3
rotate column x=25 by 5
rotate column x=15 by 5
rotate column x=10 by 5
rotate column x=7 by 5
rotate row y=5 by 35
rotate row y=4 by 42
rotate row y=2 by 5
rotate row y=1 by 20
rotate row y=0 by 45
rotate column x=48 by 5
rotate column x=47 by 5
rotate column x=46 by 5
rotate column x=43 by 5
rotate column x=41 by 5
rotate column x=38 by 5
rotate column x=37 by 5
rotate column x=36 by 5
rotate column x=33 by 1
rotate column x=32 by 5
rotate column x=31 by 5
rotate column x=30 by 1
rotate column x=28 by 5
rotate column x=27 by 5
rotate column x=26 by 5
rotate column x=23 by 1
rotate column x=22 by 5
rotate column x=21 by 5
rotate column x=20 by 1
rotate column x=17 by 5
rotate column x=16 by 5
rotate column x=13 by 1
rotate column x=12 by 3
rotate column x=7 by 5
rotate column x=6 by 5
rotate column x=3 by 1
rotate column x=2 by 3

File diff suppressed because one or more lines are too long

231
AOC2016/input2016/day10.in Normal file
View File

@ -0,0 +1,231 @@
bot 76 gives low to bot 191 and high to bot 21
bot 193 gives low to bot 118 and high to bot 145
bot 173 gives low to bot 91 and high to bot 36
value 23 goes to bot 68
bot 129 gives low to bot 124 and high to bot 155
bot 58 gives low to output 2 and high to bot 51
bot 97 gives low to bot 205 and high to bot 156
bot 95 gives low to bot 21 and high to bot 204
bot 56 gives low to bot 202 and high to bot 97
bot 181 gives low to bot 144 and high to bot 101
bot 20 gives low to bot 42 and high to bot 23
bot 122 gives low to bot 190 and high to bot 50
bot 202 gives low to bot 103 and high to bot 205
bot 169 gives low to bot 125 and high to bot 208
bot 91 gives low to bot 58 and high to bot 17
bot 10 gives low to bot 127 and high to bot 1
bot 119 gives low to bot 50 and high to bot 149
bot 194 gives low to bot 38 and high to bot 77
bot 82 gives low to bot 49 and high to bot 22
bot 180 gives low to bot 199 and high to bot 71
bot 191 gives low to bot 146 and high to bot 13
bot 111 gives low to bot 186 and high to bot 89
bot 75 gives low to bot 195 and high to bot 117
bot 17 gives low to bot 51 and high to bot 184
value 5 goes to bot 209
bot 139 gives low to bot 81 and high to bot 57
bot 36 gives low to bot 17 and high to bot 46
bot 158 gives low to bot 30 and high to bot 6
bot 40 gives low to bot 160 and high to bot 82
value 11 goes to bot 175
value 3 goes to bot 170
bot 208 gives low to bot 14 and high to bot 104
bot 113 gives low to output 15 and high to bot 27
bot 96 gives low to bot 170 and high to bot 110
bot 9 gives low to bot 102 and high to bot 132
value 67 goes to bot 129
bot 35 gives low to bot 24 and high to bot 187
bot 172 gives low to bot 117 and high to bot 64
bot 157 gives low to bot 65 and high to bot 136
bot 179 gives low to bot 178 and high to bot 197
bot 144 gives low to bot 172 and high to bot 2
bot 51 gives low to output 8 and high to bot 31
bot 177 gives low to bot 194 and high to bot 61
bot 106 gives low to bot 134 and high to bot 52
bot 148 gives low to bot 86 and high to bot 199
bot 64 gives low to bot 48 and high to bot 146
bot 121 gives low to bot 165 and high to bot 116
bot 146 gives low to bot 9 and high to bot 69
bot 199 gives low to bot 141 and high to bot 152
bot 166 gives low to bot 62 and high to bot 201
bot 102 gives low to bot 151 and high to bot 179
bot 15 gives low to bot 80 and high to bot 3
bot 105 gives low to bot 197 and high to bot 86
bot 2 gives low to bot 64 and high to bot 191
bot 3 gives low to bot 169 and high to bot 208
bot 39 gives low to bot 43 and high to bot 98
bot 196 gives low to bot 66 and high to bot 32
value 47 goes to bot 142
bot 110 gives low to bot 29 and high to bot 40
bot 151 gives low to bot 74 and high to bot 178
bot 164 gives low to bot 4 and high to bot 93
bot 61 gives low to bot 77 and high to bot 144
bot 29 gives low to bot 183 and high to bot 160
bot 79 gives low to bot 204 and high to bot 37
bot 188 gives low to output 0 and high to bot 72
bot 131 gives low to bot 54 and high to bot 38
bot 59 gives low to output 4 and high to bot 34
bot 8 gives low to bot 101 and high to bot 7
bot 189 gives low to bot 46 and high to bot 53
bot 77 gives low to bot 75 and high to bot 172
bot 206 gives low to bot 56 and high to bot 107
bot 114 gives low to bot 188 and high to bot 125
bot 207 gives low to bot 87 and high to bot 10
bot 30 gives low to bot 106 and high to bot 11
bot 167 gives low to bot 45 and high to bot 183
bot 168 gives low to output 12 and high to bot 58
bot 142 gives low to bot 68 and high to bot 111
bot 138 gives low to bot 180 and high to bot 198
bot 171 gives low to bot 150 and high to bot 35
bot 5 gives low to bot 39 and high to bot 100
bot 197 gives low to bot 120 and high to bot 173
bot 46 gives low to bot 184 and high to bot 128
bot 137 gives low to bot 0 and high to bot 114
bot 7 gives low to bot 76 and high to bot 95
bot 104 gives low to bot 159 and high to bot 203
bot 103 gives low to bot 5 and high to bot 108
bot 66 gives low to bot 158 and high to bot 161
bot 156 gives low to bot 166 and high to bot 201
bot 178 gives low to bot 130 and high to bot 120
bot 1 gives low to bot 206 and high to bot 107
bot 65 gives low to bot 111 and high to bot 143
bot 150 gives low to bot 25 and high to bot 24
value 7 goes to bot 135
bot 48 gives low to bot 182 and high to bot 9
bot 112 gives low to bot 22 and high to bot 202
bot 32 gives low to bot 161 and high to bot 42
bot 12 gives low to bot 61 and high to bot 181
bot 155 gives low to bot 196 and high to bot 73
value 73 goes to bot 140
bot 99 gives low to bot 109 and high to bot 151
bot 163 gives low to bot 131 and high to bot 194
bot 98 gives low to bot 174 and high to bot 26
value 53 goes to bot 4
bot 204 gives low to bot 18 and high to bot 126
bot 19 gives low to output 6 and high to bot 113
bot 190 gives low to bot 7 and high to bot 154
bot 88 gives low to bot 26 and high to bot 122
bot 153 gives low to bot 113 and high to bot 33
bot 49 gives low to bot 193 and high to bot 55
value 37 goes to bot 150
bot 53 gives low to bot 128 and high to bot 15
bot 80 gives low to bot 114 and high to bot 169
bot 192 gives low to bot 115 and high to bot 138
bot 132 gives low to bot 179 and high to bot 105
bot 57 gives low to bot 41 and high to bot 206
bot 118 gives low to bot 20 and high to bot 162
bot 37 gives low to bot 126 and high to bot 78
bot 201 gives low to bot 16 and high to bot 119
bot 145 gives low to bot 162 and high to bot 39
bot 62 gives low to bot 88 and high to bot 16
bot 133 gives low to bot 59 and high to bot 200
bot 52 gives low to bot 19 and high to bot 153
bot 28 gives low to bot 200 and high to bot 182
bot 149 gives low to bot 79 and high to bot 37
bot 117 gives low to bot 28 and high to bot 48
bot 4 gives low to bot 171 and high to bot 93
bot 182 gives low to bot 99 and high to bot 102
value 2 goes to bot 92
bot 170 gives low to bot 167 and high to bot 29
bot 187 gives low to bot 47 and high to bot 63
bot 72 gives low to output 20 and high to bot 176
bot 209 gives low to bot 94 and high to bot 30
bot 26 gives low to bot 8 and high to bot 190
bot 162 gives low to bot 23 and high to bot 43
bot 16 gives low to bot 122 and high to bot 119
bot 200 gives low to bot 34 and high to bot 99
bot 68 gives low to bot 175 and high to bot 186
bot 85 gives low to bot 82 and high to bot 112
value 61 goes to bot 45
bot 38 gives low to bot 123 and high to bot 75
bot 108 gives low to bot 100 and high to bot 62
bot 34 gives low to output 17 and high to bot 109
bot 90 gives low to bot 44 and high to bot 193
bot 94 gives low to bot 135 and high to bot 106
value 19 goes to bot 124
bot 184 gives low to bot 31 and high to bot 137
bot 134 gives low to output 3 and high to bot 19
bot 63 gives low to bot 207 and high to bot 10
bot 24 gives low to bot 157 and high to bot 47
bot 185 gives low to bot 147 and high to bot 81
bot 18 gives low to bot 84 and high to bot 192
bot 130 gives low to output 14 and high to bot 168
bot 78 gives low to bot 138 and high to bot 198
bot 69 gives low to bot 132 and high to bot 60
bot 161 gives low to bot 6 and high to bot 163
bot 176 gives low to output 5 and high to bot 159
bot 55 gives low to bot 145 and high to bot 5
bot 160 gives low to bot 90 and high to bot 49
value 71 goes to bot 167
bot 165 gives low to bot 53 and high to bot 116
bot 128 gives low to bot 137 and high to bot 80
bot 67 gives low to bot 140 and high to bot 66
bot 86 gives low to bot 173 and high to bot 141
bot 93 gives low to bot 35 and high to bot 187
bot 175 gives low to bot 96 and high to bot 70
bot 174 gives low to bot 181 and high to bot 8
bot 14 gives low to bot 176 and high to bot 104
bot 13 gives low to bot 69 and high to bot 84
bot 54 gives low to bot 153 and high to bot 123
bot 135 gives low to output 10 and high to bot 134
bot 101 gives low to bot 2 and high to bot 76
bot 147 gives low to bot 40 and high to bot 85
bot 205 gives low to bot 108 and high to bot 166
bot 141 gives low to bot 36 and high to bot 189
bot 84 gives low to bot 60 and high to bot 115
bot 115 gives low to bot 148 and high to bot 180
value 31 goes to bot 171
value 13 goes to bot 67
bot 195 gives low to bot 133 and high to bot 28
bot 124 gives low to bot 67 and high to bot 196
bot 109 gives low to output 7 and high to bot 74
bot 25 gives low to bot 92 and high to bot 157
bot 116 gives low to bot 15 and high to bot 3
bot 140 gives low to bot 209 and high to bot 158
bot 154 gives low to bot 95 and high to bot 79
bot 92 gives low to bot 142 and high to bot 65
bot 81 gives low to bot 85 and high to bot 41
bot 33 gives low to bot 27 and high to bot 133
bot 186 gives low to bot 70 and high to bot 185
bot 73 gives low to bot 32 and high to bot 20
bot 41 gives low to bot 112 and high to bot 56
bot 89 gives low to bot 185 and high to bot 139
bot 23 gives low to bot 177 and high to bot 12
bot 125 gives low to bot 72 and high to bot 14
bot 50 gives low to bot 154 and high to bot 149
bot 21 gives low to bot 13 and high to bot 18
bot 159 gives low to output 9 and high to bot 203
bot 47 gives low to bot 136 and high to bot 63
bot 143 gives low to bot 89 and high to bot 87
bot 44 gives low to bot 73 and high to bot 118
value 43 goes to bot 94
bot 107 gives low to bot 97 and high to bot 156
bot 70 gives low to bot 110 and high to bot 147
bot 45 gives low to bot 129 and high to bot 83
bot 43 gives low to bot 12 and high to bot 174
value 41 goes to bot 164
bot 74 gives low to output 18 and high to bot 130
bot 136 gives low to bot 143 and high to bot 207
bot 42 gives low to bot 163 and high to bot 177
value 17 goes to bot 164
bot 0 gives low to output 19 and high to bot 188
bot 87 gives low to bot 139 and high to bot 127
value 59 goes to bot 96
bot 120 gives low to bot 168 and high to bot 91
bot 198 gives low to bot 71 and high to bot 121
bot 203 gives low to output 16 and high to output 1
value 29 goes to bot 25
bot 22 gives low to bot 55 and high to bot 103
bot 11 gives low to bot 52 and high to bot 54
bot 6 gives low to bot 11 and high to bot 131
bot 31 gives low to output 13 and high to bot 0
bot 126 gives low to bot 192 and high to bot 78
bot 27 gives low to output 11 and high to bot 59
bot 127 gives low to bot 57 and high to bot 1
bot 60 gives low to bot 105 and high to bot 148
bot 152 gives low to bot 189 and high to bot 165
bot 100 gives low to bot 98 and high to bot 88
bot 83 gives low to bot 155 and high to bot 44
bot 123 gives low to bot 33 and high to bot 195
bot 183 gives low to bot 83 and high to bot 90
bot 71 gives low to bot 152 and high to bot 121

View File

@ -0,0 +1,4 @@
The first floor contains a promethium generator and a promethium-compatible microchip.
The second floor contains a cobalt generator, a curium generator, a ruthenium generator, and a plutonium generator.
The third floor contains a cobalt-compatible microchip, a curium-compatible microchip, a ruthenium-compatible microchip, and a plutonium-compatible microchip.
The fourth floor contains nothing relevant.

View File

@ -0,0 +1,23 @@
cpy 1 a
cpy 1 b
cpy 26 d
jnz c 2
jnz 1 5
cpy 7 c
inc d
dec c
jnz c -2
cpy a c
inc a
dec b
jnz b -2
cpy c b
dec d
jnz d -6
cpy 16 c
cpy 17 d
inc a
dec d
jnz d -2
dec c
jnz c -5

View File

@ -0,0 +1 @@
1362

View File

@ -0,0 +1 @@
ihaygndm

Some files were not shown because too many files have changed in this diff Show More