gitextract_iaz7sjfm/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ ├── question.md │ │ └── suggestion.md │ ├── code_of_conduct.md │ ├── contributing.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSE.CC-BY-SA-4.0 ├── LICENSE.GPL-2.0 ├── Makefile ├── README.md ├── build.sh ├── citation.bib ├── documents/ │ ├── organization.tex │ ├── roadmap.tex │ ├── rulebook.tex │ └── scoresheets.tex ├── images/ │ └── standard_QR_codes.tex ├── latexmkrc ├── pages/ │ ├── Appendices.tex │ ├── LeagueRequirements.tex │ ├── acknowledgments.tex │ ├── example_skills.tex │ ├── general_rules/ │ │ ├── AudienceInteraction.tex │ │ ├── ContinueRules.tex │ │ ├── ExternalDevices.tex │ │ ├── OpenChallenge.tex │ │ ├── Organization.tex │ │ ├── PenaltiesBonuses.tex │ │ ├── Procedure.tex │ │ ├── Robots.tex │ │ ├── Scenario.tex │ │ ├── ScoringInteraction.tex │ │ ├── TeamRegistration.tex │ │ └── vizbox.tex │ ├── introduction/ │ │ ├── Awards.tex │ │ ├── Competition.tex │ │ ├── Infrastructure.tex │ │ ├── Leagues.tex │ │ └── Organization.tex │ ├── organization/ │ │ ├── GeneralRules.tex │ │ ├── Introduction.tex │ │ ├── Setup.tex │ │ ├── about.tex │ │ ├── documentinfo.tex │ │ └── titlepage.tex │ ├── roadmap/ │ │ ├── CompetitionConcepts.tex │ │ ├── acknowledgments.tex │ │ ├── documentinfo.tex │ │ └── titlepage.tex │ ├── rulebook/ │ │ ├── GeneralRules.tex │ │ ├── Introduction.tex │ │ ├── about.tex │ │ ├── documentinfo.tex │ │ └── titlepage.tex │ └── scoresheets/ │ └── registration_form.tex ├── scoresheets/ │ ├── DoingLaundry.tex │ ├── Finals.tex │ ├── GPSR.tex │ ├── HumanRobotInteractionChallenge.tex │ ├── OpenChallenge.tex │ ├── PickAndPlaceChallenge.tex │ ├── PosterSession.tex │ ├── Restaurant.tex │ └── old/ │ ├── CleanTable.tex │ ├── CleanUp.tex │ ├── CocktailParty.tex │ ├── EGPSR.tex │ ├── Farewell.tex │ ├── FinalsExec.tex │ ├── FinalsJury.tex │ ├── FindMyDisk.tex │ ├── FindMyMates.tex │ ├── GiveMeAHand.tex │ ├── HandMeThat.tex │ ├── HelpMeCarry.tex │ ├── PnG.tex │ ├── Receptionist.tex │ ├── SPR.tex │ ├── ServeBreakfast.tex │ ├── ServingDrinks.tex │ ├── SetTable.tex │ ├── SmoothieChef.tex │ ├── SticklerForRules.tex │ ├── StoringGroceries.tex │ ├── TakeOutGarbage.tex │ ├── TidyUp.tex │ ├── TourGuide.tex │ └── WhereIsThis.tex ├── setup/ │ ├── abbrevix.tex │ ├── active_version.tex │ ├── config.tex │ ├── macros.tex │ ├── macros_leagues.tex │ ├── macros_open_demonstrations.tex │ ├── macros_scoresheets.tex │ ├── packages.tex │ ├── packages_scoresheets.tex │ └── styling.tex ├── styles/ │ ├── bar.sty │ └── tweaklist.sty ├── tasks/ │ ├── DoingLaundry.tex │ ├── Finals.tex │ ├── GPSR.tex │ ├── HumanRobotInteractionChallenge.tex │ ├── PickAndPlaceChallenge.tex │ ├── Restaurant.tex │ └── old/ │ ├── CleanTable.tex │ ├── CleanUp.tex │ ├── CocktailParty.tex │ ├── EEGPSR.tex │ ├── EGPSR.tex │ ├── Farewell.tex │ ├── FindMyDisk.tex │ ├── FindMyMates.tex │ ├── GiveMeAHand.tex │ ├── HandMeThat.tex │ ├── HelpMeCarry.tex │ ├── OpenChallenge.tex │ ├── PnG.tex │ ├── Receptionist.tex │ ├── SPR.tex │ ├── ServeBreakfast.tex │ ├── ServingDrinks.tex │ ├── SetTable.tex │ ├── SmoothieChef.tex │ ├── SticklerForRules.tex │ ├── StoringGroceries.tex │ ├── TakeOutGarbage.tex │ ├── ThemedFinals.tex │ ├── TidyUp.tex │ ├── TourGuide.tex │ ├── WhatisThat.tex │ └── WhereIsThis.tex └── teams/ └── teams.tex