├── .babelrc ├── .eslintignore ├── .eslintrc.cjs ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── workflows │ └── page-deploy.yml ├── .gitignore ├── .importjs.js ├── LICENSE ├── Procfile ├── README.md ├── client ├── camera │ ├── CameraControls.js │ ├── CameraMain.css │ ├── CameraMain.js │ ├── CameraSelector.js │ ├── CameraVideo.css │ ├── CameraVideo.js │ ├── ColorListItem.js │ ├── DebugMarker.js │ ├── DebugProgram.css │ ├── DebugProgram.js │ ├── DebugProgramCorner.js │ ├── DetectorControls.js │ ├── Knob.css │ ├── Knob.js │ ├── detectPrograms.js │ ├── entry.js │ ├── printPdf.js │ └── simpleBlobDetector.js ├── clientConstants.js ├── common │ ├── CharacteristicDescriptor.js │ ├── PaperWhiskerManager.js │ ├── SaveAlert.js │ ├── SceneryDisplay.js │ ├── ServiceDescriptor.js │ ├── bluetoothServiceData.js │ └── helloWorld.js ├── creator │ ├── CreatorMain.css │ ├── CreatorMain.js │ ├── Utils.js │ ├── entry.js │ ├── model │ │ ├── ActiveEdit.js │ │ ├── Component.js │ │ ├── ComponentContainer.js │ │ ├── CreatorModel.js │ │ ├── CreatorVisibilityModel.js │ │ ├── CustomCodeContainer.js │ │ ├── EditType.js │ │ ├── NamedArrayItem.js │ │ ├── NamedArrayItemReference.js │ │ ├── NamedBooleanProperty.js │ │ ├── NamedBounds2Property.js │ │ ├── NamedDerivedProperty.js │ │ ├── NamedEnumerationProperty.js │ │ ├── NamedNumberProperty.js │ │ ├── NamedObservableArray.js │ │ ├── NamedProperty.js │ │ ├── NamedStringProperty.js │ │ ├── NamedVector2Property.js │ │ ├── ProgramControllerContainer.js │ │ ├── ProgramGroup.js │ │ ├── ProgramListenerContainer.js │ │ ├── ProgramModel.js │ │ ├── ProgramModelContainer.js │ │ ├── TemplateModel.js │ │ ├── code │ │ │ ├── ControllerCodeGenerator.js │ │ │ ├── ControllerComponentTemplates.js │ │ │ ├── ListenerCodeGenerator.js │ │ │ ├── ListenerComponentTemplates.js │ │ │ ├── ModelTemplates.js │ │ │ ├── ProgramCodeGenerator.js │ │ │ ├── ProgramCodeValidator.js │ │ │ ├── ShapeCodeFunctions.js │ │ │ ├── ViewCodeGenerator.js │ │ │ ├── ViewComponentTemplates.js │ │ │ └── programTemplate.js │ │ ├── controllers │ │ │ ├── AnimationListenerComponent.js │ │ │ ├── BluetoothListenerComponent.js │ │ │ ├── BooleanPropertyController.js │ │ │ ├── BoundsPropertyController.js │ │ │ ├── EnumerationPropertyController.js │ │ │ ├── ListenerComponent.js │ │ │ ├── MultilinkListenerComponent.js │ │ │ ├── NumberPropertyController.js │ │ │ ├── PropertyController.js │ │ │ ├── Vector2PropertyController.js │ │ │ └── WhiskerConfiguration.js │ │ └── views │ │ │ ├── BackgroundViewComponent.js │ │ │ ├── CreateShapeViewForm.js │ │ │ ├── ImageViewComponent.js │ │ │ ├── NodeViewComponent.js │ │ │ ├── ProgramViewContainer.js │ │ │ ├── ShapeFunctionsList.js │ │ │ ├── ShapeOptionsForm.js │ │ │ ├── ShapeViewComponent.js │ │ │ ├── SoundViewComponent.js │ │ │ ├── SpeechViewComponent.js │ │ │ ├── TextViewComponent.js │ │ │ ├── ViewComponent.js │ │ │ └── ViewUnitsSelector.js │ ├── react │ │ ├── AIHelperChat.js │ │ ├── ComponentFunctionsList.js │ │ ├── ComponentNameControl.js │ │ ├── ComponentSetterList.js │ │ ├── ConfirmActionDialog.js │ │ ├── ConfirmationDialog.js │ │ ├── ConnectToArrayForm.js │ │ ├── CreateArrayForm.js │ │ ├── CreateArrayItemForm.js │ │ ├── CreateBackgroundViewForm.js │ │ ├── CreateBooleanForm.js │ │ ├── CreateBoundsForm.js │ │ ├── CreateComponentButton.js │ │ ├── CreateComponentForm.js │ │ ├── CreateCustomCodeForm.js │ │ ├── CreateDerivedForm.js │ │ ├── CreateEnumerationForm.js │ │ ├── CreateImageViewForm.js │ │ ├── CreateModelComponentForm.js │ │ ├── CreateNumberForm.js │ │ ├── CreatePositionForm.js │ │ ├── CreateProgramFromTemplateForm.js │ │ ├── CreateSoundViewForm.js │ │ ├── CreateSpeechViewForm.js │ │ ├── CreateStringForm.js │ │ ├── CreateTextViewForm.js │ │ ├── CreateViewComponentForm.js │ │ ├── CreatorControls.js │ │ ├── CreatorMonacoEditor.js │ │ ├── DocumentationList.js │ │ ├── EditTemplateControls.js │ │ ├── ErrorDialog.js │ │ ├── FileUploader.js │ │ ├── FormInvalidReasons.js │ │ ├── ModelComponentSelector.js │ │ ├── NodeComponentFunctionsList.js │ │ ├── ProgramMetadataForm.js │ │ ├── ProgramNumberForm.js │ │ ├── RecordSoundDialog.js │ │ ├── SendConfirmationDialog.js │ │ ├── SpaceSelectControls.js │ │ ├── StyledButton.js │ │ ├── StyledSelectInput.js │ │ ├── StyledTextInput.js │ │ ├── TemplateDataControls.js │ │ ├── VariableDocumentationList.js │ │ ├── ViewComponentControls.js │ │ ├── controller │ │ │ ├── AnimationControllerForm.js │ │ │ ├── BluetoothControllerForm.js │ │ │ ├── CreateBooleanControllerForm.js │ │ │ ├── CreateBounds2ControllerForm.js │ │ │ ├── CreateEnumerationControllerForm.js │ │ │ ├── CreateModelControllerForm.js │ │ │ ├── CreateNumberControllerForm.js │ │ │ ├── CreateVector2ControllerForm.js │ │ │ ├── MultilinkControllerForm.js │ │ │ └── PaperControllerForm.js │ │ └── useEditableForm.js │ └── view │ │ ├── ColumnDragThumb.js │ │ ├── ComponentListItemNode.js │ │ ├── ConnectionsCanvasNode.js │ │ ├── CreatorView.js │ │ ├── CreatorVisibilityControls.js │ │ ├── CustomButtonAppearanceStrategy.js │ │ ├── CustomExpandCollapseButton.js │ │ ├── DeleteProgramAreaNode.js │ │ ├── ImageLoader.js │ │ ├── ProgramNode.js │ │ ├── RestrictedWarningNode.js │ │ ├── SavedRectangle.js │ │ └── ViewConstants.js ├── display │ ├── DisplayMain.css │ ├── DisplayMain.js │ ├── LocalStorageDisplayController.js │ ├── PaperLandConsole.js │ ├── PaperLandControls.js │ ├── SceneryDisplay.js │ ├── connections │ │ ├── ConnectionElement.js │ │ └── SingleChildConnectionElement.js │ ├── displayBluetoothServers.js │ ├── displayConsole.js │ ├── displayModel.js │ ├── displayUtils.js │ ├── doc │ │ └── paperLand-api.md │ ├── entry.js │ ├── markerEmitters.js │ └── paperLand.js ├── dotCodes.js ├── editor │ ├── ChangeSpaceDialog.js │ ├── CreateProgramsDialog.js │ ├── EditorMain.css │ ├── EditorMain.js │ └── entry.js ├── paper │ ├── canvasUtils.js │ ├── entry.js │ └── whisker.js ├── projector │ ├── Program.css │ ├── Program.js │ ├── ProjectorMain.js │ └── entry.js ├── tests │ ├── DisplayModelTests.js │ ├── creator │ │ ├── CreatorModelTests.js │ │ ├── ProgramCodeGeneratorTests.js │ │ └── ProgramCodeValidatorTests.js │ └── entry.js └── utils.js ├── knexfile.js ├── migrations ├── .keepdir ├── 20180102104120_add_programs_table.js ├── 20180105135437_add_editor_info_column.js ├── 20230304124600_add_snippets_table.js ├── 20230705200913_add_creator_data.js ├── 20230921170258_sytem_to_project.js ├── 20231024015536_add_creator_templates.js └── 20231101194711_add_space_to_templates.js ├── package.json ├── paper-programs-backup ├── spaces │ ├── ae-tests │ │ ├── programs │ │ │ ├── 1048.json │ │ │ ├── 1144.json │ │ │ ├── 116.json │ │ │ ├── 1189.json │ │ │ ├── 1200.json │ │ │ ├── 122.json │ │ │ ├── 1277.json │ │ │ ├── 1373.json │ │ │ ├── 1401.json │ │ │ ├── 1436.json │ │ │ ├── 1453.json │ │ │ ├── 150.json │ │ │ ├── 1545.json │ │ │ ├── 1616.json │ │ │ ├── 1704.json │ │ │ ├── 172.json │ │ │ ├── 1761.json │ │ │ ├── 1809.json │ │ │ ├── 1817.json │ │ │ ├── 184.json │ │ │ ├── 1859.json │ │ │ ├── 1925.json │ │ │ ├── 2007.json │ │ │ ├── 2094.json │ │ │ ├── 250.json │ │ │ ├── 341.json │ │ │ ├── 364.json │ │ │ ├── 4.json │ │ │ ├── 413.json │ │ │ ├── 58.json │ │ │ ├── 625.json │ │ │ ├── 702.json │ │ │ ├── 776.json │ │ │ ├── 83.json │ │ │ └── 85.json │ │ └── projects │ │ │ └── my-first-project.json │ ├── altitude-demo │ │ └── programs │ │ │ ├── 1542.json │ │ │ ├── 1742.json │ │ │ ├── 1793.json │ │ │ ├── 2038.json │ │ │ ├── 573.json │ │ │ └── 987.json │ ├── bf-tests │ │ ├── programs │ │ │ ├── 1268.json │ │ │ ├── 2049.json │ │ │ ├── 280.json │ │ │ ├── 304.json │ │ │ ├── 452.json │ │ │ ├── 665.json │ │ │ └── 717.json │ │ └── projects │ │ │ ├── ae-servo-copy.json │ │ │ ├── connect-papers.json │ │ │ ├── e-field-hockey.json │ │ │ ├── mlf-book.json │ │ │ ├── multimodal-book.json │ │ │ ├── multimodal-paper.json │ │ │ ├── paper-elements-plus.json │ │ │ ├── separation-sonification.json │ │ │ ├── simple-dice.json │ │ │ ├── sound-board.json │ │ │ ├── sound-grid.json │ │ │ ├── sound-levels.json │ │ │ ├── toggle-button-test.json │ │ │ └── twenty-card.json │ ├── circle-test │ │ └── programs │ │ │ ├── 1687.json │ │ │ ├── 1860.json │ │ │ ├── 1973.json │ │ │ └── 368.json │ ├── cool-space │ │ ├── programs │ │ │ ├── 1146.json │ │ │ ├── 558.json │ │ │ └── 80.json │ │ └── projects │ │ │ ├── Alternate-Cardgame.json │ │ │ ├── Test.json │ │ │ ├── connected-papers.json │ │ │ ├── first-project.json │ │ │ └── template-test.json │ ├── craft-demos │ │ ├── programs │ │ │ └── 1693.json │ │ └── projects │ │ │ ├── craft-popup.json │ │ │ ├── craft-rgb-sliders.json │ │ │ └── craft-sliding-programs.json │ ├── creator-AE-tree │ │ ├── programs │ │ │ └── 479.json │ │ └── projects │ │ │ ├── KR-servo-test.json │ │ │ ├── LEDtests.json │ │ │ ├── Rotation Controller Project.json │ │ │ ├── ae-bloom.json │ │ │ ├── ae-servo-brett-example.json │ │ │ ├── ae-servo-test-progs.json │ │ │ ├── creator-AE-dial.json │ │ │ ├── creator-AE-doodle1.json │ │ │ ├── creator-AE-popup-mouth.json │ │ │ ├── creator-AE-projection-demo.json │ │ │ ├── creator-AE-projector-sample.json │ │ │ ├── creator-AE-turtle.json │ │ │ ├── creator-AE-whiskers-sound.json │ │ │ ├── creator-AE-window-slide.json │ │ │ ├── creator-AE-window.json │ │ │ ├── creator-AE2-simple-whiskers.json │ │ │ ├── creator-AE2-whiskers-projected.json │ │ │ ├── creator-ae-1.json │ │ │ ├── creator-ae-simple-tests.json │ │ │ ├── creator-rgb-color-tester.json │ │ │ ├── creator-scratch-space.json │ │ │ ├── hp-dialogue-test.json │ │ │ ├── random-servo-project.json │ │ │ ├── rgb-color-tester.json │ │ │ ├── rgb-markers.json │ │ │ ├── riff-on-pixel-garden.json │ │ │ ├── servo-examples-instructables.json │ │ │ ├── servo-sorting-hat.json │ │ │ ├── traffic-lights.json │ │ │ └── washing-machine.json │ ├── creator-ash │ │ ├── programs │ │ │ └── 394.json │ │ └── projects │ │ │ ├── BNCE.json │ │ │ ├── BNCE2.json │ │ │ ├── Bounce.json │ │ │ ├── COOL.json │ │ │ ├── OrganTest.json │ │ │ ├── scene-project-copy.json │ │ │ ├── shaperotate.json │ │ │ ├── test-one.json │ │ │ ├── test2.json │ │ │ └── test3.json │ ├── creator-card-games │ │ ├── programs │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ └── projects │ │ │ ├── paper-elements-plus.json │ │ │ ├── paper-elements.json │ │ │ ├── rps-elements-card-game.json │ │ │ └── standard-deck.json │ ├── creator-demos │ │ ├── programs │ │ │ ├── 1112.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ └── 6.json │ │ └── projects │ │ │ ├── 5-blank-programs.json │ │ │ ├── audio-pendulum.json │ │ │ ├── blank-papers-for-printing.json │ │ │ ├── cat-fetch.json │ │ │ ├── deep-sea.json │ │ │ ├── multimodal-paper.json │ │ │ ├── my-pixel-garden.json │ │ │ ├── paper-dial-custom-code.json │ │ │ ├── paper-organ.json │ │ │ ├── separation-sonification.json │ │ │ ├── solar-system.json │ │ │ ├── sound-board.json │ │ │ ├── sound-equalizer.json │ │ │ └── webcam-reprojection-custom-code-demo.json │ ├── creator-games │ │ ├── programs │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ └── 7.json │ │ └── projects │ │ │ ├── brick-breaker.json │ │ │ ├── find-the-cupcake.json │ │ │ ├── rps-elements.json │ │ │ ├── simon.json │ │ │ ├── simple-dice-war.json │ │ │ └── skater.json │ ├── creator-phet-sims │ │ ├── programs │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ └── 5.json │ │ └── projects │ │ │ ├── efh-desc.json │ │ │ ├── efh-video.json │ │ │ ├── electric-field-hockey-2.json │ │ │ ├── electric-field-hockey-described.json │ │ │ ├── electric-field-hockey.json │ │ │ ├── membrane-channel.json │ │ │ ├── membrane-channels-2-pre-particle.json │ │ │ ├── membrane-channels-description.json │ │ │ ├── membrane-channels-rotational-concentraton.json │ │ │ ├── membranechannels2.json │ │ │ ├── memchan-mlmaker.json │ │ │ └── quadrilateral.json │ ├── creator-tests │ │ ├── programs │ │ │ └── 808.json │ │ └── projects │ │ │ ├── animation-test.json │ │ │ ├── cav-system-1.json │ │ │ ├── cav-system-2.json │ │ │ ├── controller-test.json │ │ │ ├── custom-code-test.json │ │ │ ├── demo-system-1.json │ │ │ ├── fun-demo.json │ │ │ ├── multilink-test.json │ │ │ ├── paper-organ.json │ │ │ ├── placeholder-demo.json │ │ │ ├── ratio-and-proportion.json │ │ │ ├── shape-test.json │ │ │ ├── spider.json │ │ │ ├── test-system.json │ │ │ ├── trial-1.json │ │ │ └── with-jp.json │ ├── density-demo │ │ └── programs │ │ │ ├── 1017.json │ │ │ ├── 1062.json │ │ │ ├── 1182.json │ │ │ ├── 1453.json │ │ │ ├── 1886.json │ │ │ ├── 256.json │ │ │ ├── 304.json │ │ │ ├── 40.json │ │ │ ├── 470.json │ │ │ └── 729.json │ ├── em-tests │ │ ├── programs │ │ │ └── 165.json │ │ └── projects │ │ │ └── pendulum.json │ ├── idrc-design-crit-2023 │ │ └── programs │ │ │ ├── 1094.json │ │ │ ├── 1195.json │ │ │ ├── 1196.json │ │ │ ├── 1420.json │ │ │ ├── 1626.json │ │ │ ├── 1654.json │ │ │ ├── 1925.json │ │ │ ├── 1956.json │ │ │ ├── 1975.json │ │ │ ├── 2058.json │ │ │ ├── 219.json │ │ │ ├── 222.json │ │ │ ├── 318.json │ │ │ ├── 365.json │ │ │ ├── 487.json │ │ │ ├── 497.json │ │ │ ├── 705.json │ │ │ └── 978.json │ ├── jb-tests │ │ └── programs │ │ │ ├── 1433.json │ │ │ ├── 1503.json │ │ │ ├── 1735.json │ │ │ ├── 1977.json │ │ │ └── 280.json │ ├── jg-tests │ │ ├── programs │ │ │ ├── 1510.json │ │ │ ├── 1549.json │ │ │ ├── 1972.json │ │ │ ├── 227.json │ │ │ ├── 519.json │ │ │ └── 700.json │ │ └── projects │ │ │ ├── bluetooth-tests.json │ │ │ ├── cat-fetch.json │ │ │ ├── creator-tactiles-copy.json │ │ │ ├── demo.json │ │ │ ├── dial-example.json │ │ │ ├── focus-demo.json │ │ │ ├── loading-test.json │ │ │ ├── marker-slider.json │ │ │ ├── microbit-ble-demos.json │ │ │ ├── new-project.json │ │ │ ├── quadrilateral.json │ │ │ ├── rotation-example.json │ │ │ ├── shapes-demo.json │ │ │ ├── simple-interactions.json │ │ │ ├── solar-system.json │ │ │ ├── sound-grid.json │ │ │ └── test-project.json │ ├── lunar-lander │ │ └── programs │ │ │ ├── 1127.json │ │ │ ├── 1169.json │ │ │ ├── 1244.json │ │ │ ├── 1403.json │ │ │ ├── 1479.json │ │ │ ├── 1500.json │ │ │ ├── 1601.json │ │ │ ├── 1638.json │ │ │ ├── 1659.json │ │ │ ├── 1674.json │ │ │ ├── 1775.json │ │ │ ├── 1846.json │ │ │ ├── 257.json │ │ │ ├── 361.json │ │ │ ├── 440.json │ │ │ ├── 741.json │ │ │ ├── 782.json │ │ │ └── 818.json │ ├── lv-testSpace │ │ └── programs │ │ │ ├── 1272.json │ │ │ ├── 1525.json │ │ │ ├── 1565.json │ │ │ ├── 1729.json │ │ │ ├── 2007.json │ │ │ └── 983.json │ ├── may-codesign-2023 │ │ └── programs │ │ │ ├── 1967.json │ │ │ └── 859.json │ ├── microcontroller-ble-demos │ │ ├── programs │ │ │ ├── 1582.json │ │ │ ├── 2.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 7.json │ │ │ └── 9.json │ │ └── projects │ │ │ ├── microbit-ble-demos.json │ │ │ ├── microbit-music-instrument.json │ │ │ ├── microbit-ratio-game.json │ │ │ └── microbit-servo-driver.json │ ├── my-temp-space │ │ ├── programs │ │ │ ├── 1.json │ │ │ ├── 130.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ └── 5.json │ │ └── projects │ │ │ ├── brick-breaker.json │ │ │ ├── find-the-cupcake.json │ │ │ ├── simon.json │ │ │ └── skater.json │ ├── ohms-law-demo │ │ ├── programs │ │ │ ├── 10.json │ │ │ ├── 1739.json │ │ │ └── 286.json │ │ └── projects │ │ │ └── test-copy.json │ ├── quadrilateral-sim-demo │ │ └── programs │ │ │ ├── 1939.json │ │ │ ├── 1995.json │ │ │ ├── 311.json │ │ │ ├── 602.json │ │ │ ├── 80.json │ │ │ └── 817.json │ ├── simple-demos │ │ └── programs │ │ │ ├── 1282.json │ │ │ ├── 1341.json │ │ │ ├── 138.json │ │ │ ├── 1421.json │ │ │ ├── 183.json │ │ │ ├── 1993.json │ │ │ ├── 2006.json │ │ │ ├── 255.json │ │ │ ├── 264.json │ │ │ ├── 298.json │ │ │ ├── 299.json │ │ │ ├── 629.json │ │ │ ├── 674.json │ │ │ └── 765.json │ ├── templates │ │ ├── programs │ │ │ └── 547.json │ │ └── projects │ │ │ ├── animated-image.json │ │ │ ├── background-color.json │ │ │ ├── button-multimodal.json │ │ │ ├── camera-capture-and-filter.json │ │ │ ├── checkbox-multimodal.json │ │ │ ├── described-dial.json │ │ │ ├── described-grid.json │ │ │ ├── described-line-continuous.json │ │ │ ├── described-line-discrete.json │ │ │ ├── displayed-bounds.json │ │ │ ├── marker-slider.json │ │ │ ├── marker-toggle-sound.json │ │ │ ├── marker-toggle-speech.json │ │ │ ├── marker-toggle.json │ │ │ ├── movable-circle.json │ │ │ ├── movable-image.json │ │ │ ├── movable-rectangle.json │ │ │ ├── movable-square.json │ │ │ ├── movable-text.json │ │ │ ├── moveable-square.json │ │ │ ├── paper-sound-pitch-change.json │ │ │ ├── phet-checkbox-multimodal.json │ │ │ ├── phet-checkbox.json │ │ │ ├── simple-description.json │ │ │ ├── speak-on-marker.json │ │ │ ├── speak-on-whisker.json │ │ │ ├── two-state-rotate-marker.json │ │ │ ├── two-state-rotate-whisker.json │ │ │ ├── whisker-sound.json │ │ │ └── whisker.json │ ├── tetraminus-space │ │ └── programs │ │ │ ├── 1870.json │ │ │ └── 572.json │ ├── ts-creator-tests │ │ ├── programs │ │ │ └── 899.json │ │ └── projects │ │ │ ├── PhET Checkbox - Multimodal.json │ │ │ ├── array-tutorial.json │ │ │ ├── checkbox-multimodal.json │ │ │ ├── creator-tactiles-slu-version.json │ │ │ ├── creator-tactiles.json │ │ │ ├── creator-tt-program-copies.json │ │ │ ├── grab-drag-multimodal.json │ │ │ ├── simple-button-multimodal.json │ │ │ └── simple-interactions.json │ ├── ts-tests │ │ └── programs │ │ │ ├── 1376.json │ │ │ ├── 1404.json │ │ │ ├── 1606.json │ │ │ └── 903.json │ ├── voicing-response-patterns │ │ ├── programs │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ └── 75.json │ │ └── projects │ │ │ ├── accordion-box-responses.json │ │ │ ├── canned-responses.json │ │ │ ├── checkbox-responses.json │ │ │ ├── checkbox-template.json │ │ │ ├── focus-emulator.json │ │ │ ├── show-hide-responses.json │ │ │ ├── simple-button.json │ │ │ ├── slider.json │ │ │ └── toggle-button-responses.json │ ├── weavly-tests │ │ └── programs │ │ │ ├── 1026.json │ │ │ ├── 1037.json │ │ │ ├── 1142.json │ │ │ ├── 1154.json │ │ │ ├── 1176.json │ │ │ ├── 130.json │ │ │ ├── 1308.json │ │ │ ├── 1414.json │ │ │ ├── 1630.json │ │ │ ├── 1998.json │ │ │ ├── 2037.json │ │ │ ├── 250.json │ │ │ ├── 390.json │ │ │ ├── 465.json │ │ │ ├── 555.json │ │ │ ├── 648.json │ │ │ ├── 719.json │ │ │ ├── 723.json │ │ │ ├── 771.json │ │ │ └── 98.json │ ├── whisker-demo-1 │ │ └── programs │ │ │ ├── 1013.json │ │ │ ├── 1110.json │ │ │ ├── 1234.json │ │ │ ├── 484.json │ │ │ ├── 523.json │ │ │ ├── 725.json │ │ │ └── 980.json │ └── whisker-demo-2 │ │ └── programs │ │ ├── 132.json │ │ ├── 1502.json │ │ ├── 1766.json │ │ ├── 275.json │ │ └── 646.json └── templates │ ├── 10 Blank Programs.json │ ├── 20 Blank Programs.json │ ├── 5 Blank Programs.json │ ├── 60 Blank Programs.json │ ├── Boolean Toggle using Marker (no view).json │ ├── Boolean Toggle using Marker_ Sound.json │ ├── Bounds displayed on paper.json │ ├── Checkbox with Speech Responses using Paper Events.json │ ├── Decoupled Movable Circle.json │ ├── Find the Object Game_ 3x3 Speech Grid.json │ ├── Image Visibility.json │ ├── Movable Circle (Paper Center).json │ ├── Movable Image (Paper Bounds).json │ ├── Movable Image (Paper Center_Angle).json │ ├── Movable Rectangles Connected by a Line Shape.json │ ├── Movable Text_ Paper Center.json │ ├── Movable rectangle that follows paper.json │ ├── Movable square that follows paper.json │ ├── PhET Checkbox using Custom Code.json │ ├── Simple Animated Image_ Bobbing Cupcake.json │ ├── Simple Background.json │ ├── Simple Button - Sound and Speech.json │ ├── Simple Looping Sound (on paper detection).json │ ├── Simple Sound (on paper detection).json │ ├── Sound Equalizer and Rate Changer.json │ ├── Sound on Paper Whisker.json │ ├── Sound with Paper Control_ Output Level and Playback Rate.json │ ├── Speak on Marker Add or Remove.json │ ├── Speak on Release_ 3x3 Grid.json │ ├── Speak on Whisker.json │ ├── Speech on Paper Detection.json │ ├── Speech on Vertical Paper Position (continuous, slider-like).json │ ├── Speech on Vertical Paper Position (regions, slider-like).json │ ├── UART to IO with Markers.json │ ├── Vertical Slider using Marker_ Background Change.json │ ├── Voicing Checkbox (markers).json │ ├── Voicing Simple Button (rotation).json │ ├── Webcam Capture_ display and filtered display (custom code).json │ └── efh-desc.json ├── pkg-setup ├── package.json └── run-project.js ├── scripts ├── build.js ├── create-env-file.js ├── db │ ├── common │ │ └── pushProgramToDatabase.js │ ├── get-backup-from-database.js │ ├── push-modified-programs-to-db.js │ └── push-program-to-database.js └── wait-for-it.sh ├── server ├── Constants.js ├── IDataService.js ├── KnexDataService.js ├── LocalFileDataService.js ├── Utils.js ├── api.js ├── create-config-json.js ├── default-data │ ├── spaces │ │ ├── default-space │ │ │ └── projects │ │ │ │ └── default-project.json │ │ ├── demos │ │ │ ├── auditory-prototyping.json │ │ │ └── projects │ │ │ │ ├── 5-blank-papers.json │ │ │ │ ├── 50-blank-papers.json │ │ │ │ ├── audio-pendulum.json │ │ │ │ ├── cat-fetch.json │ │ │ │ ├── deep-sea-scene.json │ │ │ │ ├── default-project.json │ │ │ │ ├── my-pixel-garden.json │ │ │ │ ├── sound-board.json │ │ │ │ └── webcam-reprojection-custom-code.json │ │ ├── games │ │ │ └── projects │ │ │ │ ├── brick-breaker.json │ │ │ │ ├── electric-field-hockey.json │ │ │ │ ├── find-the-cupcake.json │ │ │ │ ├── rps-elements.json │ │ │ │ ├── simon.json │ │ │ │ ├── simple-dice-war.json │ │ │ │ └── skater.json │ │ ├── microcontroller-bluetooth │ │ │ └── projects │ │ │ │ ├── default-project.json │ │ │ │ ├── microbit-ble-demos.json │ │ │ │ ├── microbit-music-instrument.json │ │ │ │ ├── microbit-ratio-game.json │ │ │ │ └── microbit-servo-demo.json │ │ └── paper-craft │ │ │ └── projects │ │ │ ├── craft-popup.json │ │ │ ├── craft-rgb-sliders.json │ │ │ └── craft-sliding-programs.json │ └── templates │ │ ├── Boolean Toggle using Marker (no view).json │ │ ├── Boolean Toggle using Marker_ Sound.json │ │ ├── Boolean Toggle using Marker_ Speech.json │ │ ├── Bounds displayed on paper.json │ │ ├── Find the Object Game_ 3x3 Speech Grid.json │ │ ├── Movable Circle (Paper Center).json │ │ ├── Movable Image (Paper Bounds).json │ │ ├── Movable Image (Paper Center_Angle).json │ │ ├── Movable Rectangles Connected by a Line Shape.json │ │ ├── Movable Text_ Paper Center.json │ │ ├── Movable rectangle that follows paper.json │ │ ├── Movable square that follows paper.json │ │ ├── Simple Background.json │ │ ├── Simple Button - Sound and Speech.json │ │ ├── Simple Looping Sound (on paper detection).json │ │ ├── Sound Equalizer and Rate Changer.json │ │ ├── Sound on Paper Whisker.json │ │ ├── Sound with Paper Control_ Output Level and Playback Rate.json │ │ ├── Speak on Release_ 3x3 Grid.json │ │ ├── Speech on Paper Detection.json │ │ ├── Speech on Vertical Paper Position (continuous, slider-like).json │ │ ├── Speech on Vertical Paper Position (regions, slider-like).json │ │ ├── Vertical Slider using Marker_ Background Change.json │ │ └── Webcam Capture_ display and filtered display (custom code).json ├── entry-server.js ├── loadConfig.js ├── main.js └── restrictedSpacesList.js ├── webpack.config.js ├── webpack.server.config.js └── www ├── api.html ├── camera.html ├── creator.html ├── display.html ├── editor.html ├── favicon ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── safari-pinned-tab.svg └── site.webmanifest ├── index.html ├── lib └── p2.min.js ├── media ├── images │ ├── arrows-spin.svg │ ├── baked.png │ ├── barrel.png │ ├── batter.png │ ├── birdInAir.png │ ├── blue-orchid1.png │ ├── blue-orchid2.png │ ├── blue-orchid3.png │ ├── blue-orchid4.png │ ├── blue-orchid5.png │ ├── blue-orchid6.png │ ├── brown-dog-leaping.png │ ├── brown-dog-sitting.png │ ├── brown-fox-leaping.png │ ├── brown-fox-sitting.png │ ├── collapse.svg │ ├── copy.svg │ ├── eye.svg │ ├── fantasy-card-mat.jpg │ ├── fish1.png │ ├── fish2.png │ ├── fish3.png │ ├── frosted.png │ ├── girlInAir.png │ ├── girlInWater.png │ ├── hand-outline.svg │ ├── hopping-frog.gif │ ├── hotairballoon.png │ ├── idle-cat.gif │ ├── idle-frog.gif │ ├── lunarLander.png │ ├── magic-wand.svg │ ├── meadow-landscape.png │ ├── off-bulb.png │ ├── on-bulb.png │ ├── paper-sound.png │ ├── peace-lily1.png │ ├── peace-lily2.png │ ├── peace-lily3.png │ ├── peace-lily4.png │ ├── peace-lily5.png │ ├── peace-lily6.png │ ├── pencil-white.svg │ ├── planet.png │ ├── pot.png │ ├── printer.svg │ ├── red-dog-leaping.png │ ├── red-dog-sitting.png │ ├── red-fox-leaping.png │ ├── red-fox-sitting.png │ ├── resize-white.svg │ ├── running-cat.gif │ ├── scissors.svg │ ├── spider.png │ ├── sub.png │ ├── submarine.png │ ├── sun.png │ ├── tapping-cat.gif │ ├── trash3-black.svg │ ├── trash3-red.svg │ ├── trash3.svg │ ├── upload-black.svg │ ├── upload.svg │ ├── uploads │ │ └── .gitkeep │ ├── walking-cat.gif │ ├── water-can.png │ ├── zz-plant1.png │ ├── zz-plant2.png │ ├── zz-plant3.png │ ├── zz-plant4.png │ ├── zz-plant5.png │ └── zz-plant6.png └── sounds │ ├── Frog-sound-ribbit.mp3 │ ├── accordionBoxClose.mp3 │ ├── accordionBoxOpen.mp3 │ ├── attributions.txt │ ├── b-tone.mp3 │ ├── birdCall.mp3 │ ├── bong.mp3 │ ├── boundaryReached.mp3 │ ├── brightMarimba.mp3 │ ├── brightMarimbaShort.mp3 │ ├── c-tone.mp3 │ ├── ceilingFloorContact.mp3 │ ├── chargesInBody.mp3 │ ├── checkboxChecked.mp3 │ ├── checkboxUnchecked.mp3 │ ├── click.mp3 │ ├── collide.mp3 │ ├── cricketsLoop.mp3 │ ├── d-tone.mp3 │ ├── e-tone.mp3 │ ├── emptyApartmentBedroom06Resampled.mp3 │ ├── g-tone.mp3 │ ├── generalBoundaryBoop.mp3 │ ├── generalButton.mp3 │ ├── generalClose.mp3 │ ├── generalOpen.mp3 │ ├── generalSoftClick.mp3 │ ├── grab.mp3 │ ├── grab2.mp3 │ ├── grabHighPitch.mp3 │ ├── loonCall.mp3 │ ├── looping-thrust.mp3 │ ├── musicalBeat.mp3 │ ├── musicalInvertedBeat.mp3 │ ├── musicalSimpleBeat.mp3 │ ├── musicalTrackEight.mp3 │ ├── musicalTrackFive.mp3 │ ├── musicalTrackFour.mp3 │ ├── musicalTrackNine.mp3 │ ├── musicalTrackOne.mp3 │ ├── musicalTrackSeven.mp3 │ ├── musicalTrackSix.mp3 │ ├── musicalTrackTen.mp3 │ ├── musicalTrackThree.mp3 │ ├── musicalTrackTwo.mp3 │ ├── pause.mp3 │ ├── playPause.mp3 │ ├── radioButton.mp3 │ ├── release.mp3 │ ├── resetAll.mp3 │ ├── rhodesChord.mp3 │ ├── saturatedSineLoop220Hz.mp3 │ ├── selectionArpeggio001.mp3 │ ├── selectionArpeggio002.mp3 │ ├── selectionArpeggio003.mp3 │ ├── selectionArpeggio004.mp3 │ ├── selectionArpeggio005.mp3 │ ├── selectionArpeggio006.mp3 │ ├── selectionArpeggio007.mp3 │ ├── selectionArpeggio008.mp3 │ ├── selectionArpeggio009.mp3 │ ├── short-success.mp3 │ ├── shortSilence.wav │ ├── sliderClick01.mp3 │ ├── sliderClick02.mp3 │ ├── stepBack.mp3 │ ├── stepForward.mp3 │ ├── stringsLoopMiddleCOscilloscope.mp3 │ ├── switchToLeft.mp3 │ ├── switchToRight.mp3 │ ├── thunder.mp3 │ ├── trillOne.wav │ ├── trillTwo.wav │ ├── uploads │ └── .gitkeep │ ├── windsLoopC3Oscilloscope.mp3 │ └── windsLoopMiddleCOscilloscope.mp3 ├── opencv.js ├── opencv_js.js ├── opencv_js.wasm ├── phet-lib.debug.js ├── phet-lib.min.js ├── projector.html ├── styles.css ├── tests.html └── web-assets ├── credits.html ├── noun-code-1235795.png ├── noun-design-2085718.png ├── noun-monitor-sound-on-587232.png ├── noun-papers-2041114.png ├── noun-webcam-2033266.png ├── paper-land-icon.png └── table-setup.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/workflows/page-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.github/ISSUE_TEMPLATE/workflows/page-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.gitignore -------------------------------------------------------------------------------- /.importjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/.importjs.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/README.md -------------------------------------------------------------------------------- /client/camera/CameraControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/CameraControls.js -------------------------------------------------------------------------------- /client/camera/CameraMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/CameraMain.css -------------------------------------------------------------------------------- /client/camera/CameraMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/CameraMain.js -------------------------------------------------------------------------------- /client/camera/CameraSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/CameraSelector.js -------------------------------------------------------------------------------- /client/camera/CameraVideo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/CameraVideo.css -------------------------------------------------------------------------------- /client/camera/CameraVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/CameraVideo.js -------------------------------------------------------------------------------- /client/camera/ColorListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/ColorListItem.js -------------------------------------------------------------------------------- /client/camera/DebugMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/DebugMarker.js -------------------------------------------------------------------------------- /client/camera/DebugProgram.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/DebugProgram.css -------------------------------------------------------------------------------- /client/camera/DebugProgram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/DebugProgram.js -------------------------------------------------------------------------------- /client/camera/DebugProgramCorner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/DebugProgramCorner.js -------------------------------------------------------------------------------- /client/camera/DetectorControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/DetectorControls.js -------------------------------------------------------------------------------- /client/camera/Knob.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/Knob.css -------------------------------------------------------------------------------- /client/camera/Knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/Knob.js -------------------------------------------------------------------------------- /client/camera/detectPrograms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/detectPrograms.js -------------------------------------------------------------------------------- /client/camera/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/entry.js -------------------------------------------------------------------------------- /client/camera/printPdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/printPdf.js -------------------------------------------------------------------------------- /client/camera/simpleBlobDetector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/camera/simpleBlobDetector.js -------------------------------------------------------------------------------- /client/clientConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/clientConstants.js -------------------------------------------------------------------------------- /client/common/CharacteristicDescriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/CharacteristicDescriptor.js -------------------------------------------------------------------------------- /client/common/PaperWhiskerManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/PaperWhiskerManager.js -------------------------------------------------------------------------------- /client/common/SaveAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/SaveAlert.js -------------------------------------------------------------------------------- /client/common/SceneryDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/SceneryDisplay.js -------------------------------------------------------------------------------- /client/common/ServiceDescriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/ServiceDescriptor.js -------------------------------------------------------------------------------- /client/common/bluetoothServiceData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/bluetoothServiceData.js -------------------------------------------------------------------------------- /client/common/helloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/common/helloWorld.js -------------------------------------------------------------------------------- /client/creator/CreatorMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/CreatorMain.css -------------------------------------------------------------------------------- /client/creator/CreatorMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/CreatorMain.js -------------------------------------------------------------------------------- /client/creator/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/Utils.js -------------------------------------------------------------------------------- /client/creator/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/entry.js -------------------------------------------------------------------------------- /client/creator/model/ActiveEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ActiveEdit.js -------------------------------------------------------------------------------- /client/creator/model/Component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/Component.js -------------------------------------------------------------------------------- /client/creator/model/ComponentContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ComponentContainer.js -------------------------------------------------------------------------------- /client/creator/model/CreatorModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/CreatorModel.js -------------------------------------------------------------------------------- /client/creator/model/CreatorVisibilityModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/CreatorVisibilityModel.js -------------------------------------------------------------------------------- /client/creator/model/CustomCodeContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/CustomCodeContainer.js -------------------------------------------------------------------------------- /client/creator/model/EditType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/EditType.js -------------------------------------------------------------------------------- /client/creator/model/NamedArrayItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedArrayItem.js -------------------------------------------------------------------------------- /client/creator/model/NamedArrayItemReference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedArrayItemReference.js -------------------------------------------------------------------------------- /client/creator/model/NamedBooleanProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedBooleanProperty.js -------------------------------------------------------------------------------- /client/creator/model/NamedBounds2Property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedBounds2Property.js -------------------------------------------------------------------------------- /client/creator/model/NamedDerivedProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedDerivedProperty.js -------------------------------------------------------------------------------- /client/creator/model/NamedEnumerationProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedEnumerationProperty.js -------------------------------------------------------------------------------- /client/creator/model/NamedNumberProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedNumberProperty.js -------------------------------------------------------------------------------- /client/creator/model/NamedObservableArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedObservableArray.js -------------------------------------------------------------------------------- /client/creator/model/NamedProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedProperty.js -------------------------------------------------------------------------------- /client/creator/model/NamedStringProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedStringProperty.js -------------------------------------------------------------------------------- /client/creator/model/NamedVector2Property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/NamedVector2Property.js -------------------------------------------------------------------------------- /client/creator/model/ProgramControllerContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ProgramControllerContainer.js -------------------------------------------------------------------------------- /client/creator/model/ProgramGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ProgramGroup.js -------------------------------------------------------------------------------- /client/creator/model/ProgramListenerContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ProgramListenerContainer.js -------------------------------------------------------------------------------- /client/creator/model/ProgramModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ProgramModel.js -------------------------------------------------------------------------------- /client/creator/model/ProgramModelContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/ProgramModelContainer.js -------------------------------------------------------------------------------- /client/creator/model/TemplateModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/TemplateModel.js -------------------------------------------------------------------------------- /client/creator/model/code/ControllerCodeGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ControllerCodeGenerator.js -------------------------------------------------------------------------------- /client/creator/model/code/ControllerComponentTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ControllerComponentTemplates.js -------------------------------------------------------------------------------- /client/creator/model/code/ListenerCodeGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ListenerCodeGenerator.js -------------------------------------------------------------------------------- /client/creator/model/code/ListenerComponentTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ListenerComponentTemplates.js -------------------------------------------------------------------------------- /client/creator/model/code/ModelTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ModelTemplates.js -------------------------------------------------------------------------------- /client/creator/model/code/ProgramCodeGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ProgramCodeGenerator.js -------------------------------------------------------------------------------- /client/creator/model/code/ProgramCodeValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ProgramCodeValidator.js -------------------------------------------------------------------------------- /client/creator/model/code/ShapeCodeFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ShapeCodeFunctions.js -------------------------------------------------------------------------------- /client/creator/model/code/ViewCodeGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ViewCodeGenerator.js -------------------------------------------------------------------------------- /client/creator/model/code/ViewComponentTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/ViewComponentTemplates.js -------------------------------------------------------------------------------- /client/creator/model/code/programTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/code/programTemplate.js -------------------------------------------------------------------------------- /client/creator/model/controllers/AnimationListenerComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/AnimationListenerComponent.js -------------------------------------------------------------------------------- /client/creator/model/controllers/BluetoothListenerComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/BluetoothListenerComponent.js -------------------------------------------------------------------------------- /client/creator/model/controllers/BooleanPropertyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/BooleanPropertyController.js -------------------------------------------------------------------------------- /client/creator/model/controllers/BoundsPropertyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/BoundsPropertyController.js -------------------------------------------------------------------------------- /client/creator/model/controllers/EnumerationPropertyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/EnumerationPropertyController.js -------------------------------------------------------------------------------- /client/creator/model/controllers/ListenerComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/ListenerComponent.js -------------------------------------------------------------------------------- /client/creator/model/controllers/MultilinkListenerComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/MultilinkListenerComponent.js -------------------------------------------------------------------------------- /client/creator/model/controllers/NumberPropertyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/NumberPropertyController.js -------------------------------------------------------------------------------- /client/creator/model/controllers/PropertyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/PropertyController.js -------------------------------------------------------------------------------- /client/creator/model/controllers/Vector2PropertyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/Vector2PropertyController.js -------------------------------------------------------------------------------- /client/creator/model/controllers/WhiskerConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/controllers/WhiskerConfiguration.js -------------------------------------------------------------------------------- /client/creator/model/views/BackgroundViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/BackgroundViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/CreateShapeViewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/CreateShapeViewForm.js -------------------------------------------------------------------------------- /client/creator/model/views/ImageViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ImageViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/NodeViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/NodeViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/ProgramViewContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ProgramViewContainer.js -------------------------------------------------------------------------------- /client/creator/model/views/ShapeFunctionsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ShapeFunctionsList.js -------------------------------------------------------------------------------- /client/creator/model/views/ShapeOptionsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ShapeOptionsForm.js -------------------------------------------------------------------------------- /client/creator/model/views/ShapeViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ShapeViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/SoundViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/SoundViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/SpeechViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/SpeechViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/TextViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/TextViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/ViewComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ViewComponent.js -------------------------------------------------------------------------------- /client/creator/model/views/ViewUnitsSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/model/views/ViewUnitsSelector.js -------------------------------------------------------------------------------- /client/creator/react/AIHelperChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/AIHelperChat.js -------------------------------------------------------------------------------- /client/creator/react/ComponentFunctionsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ComponentFunctionsList.js -------------------------------------------------------------------------------- /client/creator/react/ComponentNameControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ComponentNameControl.js -------------------------------------------------------------------------------- /client/creator/react/ComponentSetterList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ComponentSetterList.js -------------------------------------------------------------------------------- /client/creator/react/ConfirmActionDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ConfirmActionDialog.js -------------------------------------------------------------------------------- /client/creator/react/ConfirmationDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ConfirmationDialog.js -------------------------------------------------------------------------------- /client/creator/react/ConnectToArrayForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ConnectToArrayForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateArrayForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateArrayForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateArrayItemForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateArrayItemForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateBackgroundViewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateBackgroundViewForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateBooleanForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateBooleanForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateBoundsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateBoundsForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateComponentButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateComponentButton.js -------------------------------------------------------------------------------- /client/creator/react/CreateComponentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateComponentForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateCustomCodeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateCustomCodeForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateDerivedForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateDerivedForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateEnumerationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateEnumerationForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateImageViewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateImageViewForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateModelComponentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateModelComponentForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateNumberForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateNumberForm.js -------------------------------------------------------------------------------- /client/creator/react/CreatePositionForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreatePositionForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateProgramFromTemplateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateProgramFromTemplateForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateSoundViewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateSoundViewForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateSpeechViewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateSpeechViewForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateStringForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateStringForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateTextViewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateTextViewForm.js -------------------------------------------------------------------------------- /client/creator/react/CreateViewComponentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreateViewComponentForm.js -------------------------------------------------------------------------------- /client/creator/react/CreatorControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreatorControls.js -------------------------------------------------------------------------------- /client/creator/react/CreatorMonacoEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/CreatorMonacoEditor.js -------------------------------------------------------------------------------- /client/creator/react/DocumentationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/DocumentationList.js -------------------------------------------------------------------------------- /client/creator/react/EditTemplateControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/EditTemplateControls.js -------------------------------------------------------------------------------- /client/creator/react/ErrorDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ErrorDialog.js -------------------------------------------------------------------------------- /client/creator/react/FileUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/FileUploader.js -------------------------------------------------------------------------------- /client/creator/react/FormInvalidReasons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/FormInvalidReasons.js -------------------------------------------------------------------------------- /client/creator/react/ModelComponentSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ModelComponentSelector.js -------------------------------------------------------------------------------- /client/creator/react/NodeComponentFunctionsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/NodeComponentFunctionsList.js -------------------------------------------------------------------------------- /client/creator/react/ProgramMetadataForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ProgramMetadataForm.js -------------------------------------------------------------------------------- /client/creator/react/ProgramNumberForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ProgramNumberForm.js -------------------------------------------------------------------------------- /client/creator/react/RecordSoundDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/RecordSoundDialog.js -------------------------------------------------------------------------------- /client/creator/react/SendConfirmationDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/SendConfirmationDialog.js -------------------------------------------------------------------------------- /client/creator/react/SpaceSelectControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/SpaceSelectControls.js -------------------------------------------------------------------------------- /client/creator/react/StyledButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/StyledButton.js -------------------------------------------------------------------------------- /client/creator/react/StyledSelectInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/StyledSelectInput.js -------------------------------------------------------------------------------- /client/creator/react/StyledTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/StyledTextInput.js -------------------------------------------------------------------------------- /client/creator/react/TemplateDataControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/TemplateDataControls.js -------------------------------------------------------------------------------- /client/creator/react/VariableDocumentationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/VariableDocumentationList.js -------------------------------------------------------------------------------- /client/creator/react/ViewComponentControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/ViewComponentControls.js -------------------------------------------------------------------------------- /client/creator/react/controller/AnimationControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/AnimationControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/BluetoothControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/BluetoothControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/CreateBooleanControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/CreateBooleanControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/CreateBounds2ControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/CreateBounds2ControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/CreateEnumerationControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/CreateEnumerationControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/CreateModelControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/CreateModelControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/CreateNumberControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/CreateNumberControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/CreateVector2ControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/CreateVector2ControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/MultilinkControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/MultilinkControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/controller/PaperControllerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/controller/PaperControllerForm.js -------------------------------------------------------------------------------- /client/creator/react/useEditableForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/react/useEditableForm.js -------------------------------------------------------------------------------- /client/creator/view/ColumnDragThumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/ColumnDragThumb.js -------------------------------------------------------------------------------- /client/creator/view/ComponentListItemNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/ComponentListItemNode.js -------------------------------------------------------------------------------- /client/creator/view/ConnectionsCanvasNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/ConnectionsCanvasNode.js -------------------------------------------------------------------------------- /client/creator/view/CreatorView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/CreatorView.js -------------------------------------------------------------------------------- /client/creator/view/CreatorVisibilityControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/CreatorVisibilityControls.js -------------------------------------------------------------------------------- /client/creator/view/CustomButtonAppearanceStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/CustomButtonAppearanceStrategy.js -------------------------------------------------------------------------------- /client/creator/view/CustomExpandCollapseButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/CustomExpandCollapseButton.js -------------------------------------------------------------------------------- /client/creator/view/DeleteProgramAreaNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/DeleteProgramAreaNode.js -------------------------------------------------------------------------------- /client/creator/view/ImageLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/ImageLoader.js -------------------------------------------------------------------------------- /client/creator/view/ProgramNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/ProgramNode.js -------------------------------------------------------------------------------- /client/creator/view/RestrictedWarningNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/RestrictedWarningNode.js -------------------------------------------------------------------------------- /client/creator/view/SavedRectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/SavedRectangle.js -------------------------------------------------------------------------------- /client/creator/view/ViewConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/creator/view/ViewConstants.js -------------------------------------------------------------------------------- /client/display/DisplayMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/DisplayMain.css -------------------------------------------------------------------------------- /client/display/DisplayMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/DisplayMain.js -------------------------------------------------------------------------------- /client/display/LocalStorageDisplayController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/LocalStorageDisplayController.js -------------------------------------------------------------------------------- /client/display/PaperLandConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/PaperLandConsole.js -------------------------------------------------------------------------------- /client/display/PaperLandControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/PaperLandControls.js -------------------------------------------------------------------------------- /client/display/SceneryDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/SceneryDisplay.js -------------------------------------------------------------------------------- /client/display/connections/ConnectionElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/connections/ConnectionElement.js -------------------------------------------------------------------------------- /client/display/connections/SingleChildConnectionElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/connections/SingleChildConnectionElement.js -------------------------------------------------------------------------------- /client/display/displayBluetoothServers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/displayBluetoothServers.js -------------------------------------------------------------------------------- /client/display/displayConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/displayConsole.js -------------------------------------------------------------------------------- /client/display/displayModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/displayModel.js -------------------------------------------------------------------------------- /client/display/displayUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/displayUtils.js -------------------------------------------------------------------------------- /client/display/doc/paperLand-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/doc/paperLand-api.md -------------------------------------------------------------------------------- /client/display/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/entry.js -------------------------------------------------------------------------------- /client/display/markerEmitters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/markerEmitters.js -------------------------------------------------------------------------------- /client/display/paperLand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/display/paperLand.js -------------------------------------------------------------------------------- /client/dotCodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/dotCodes.js -------------------------------------------------------------------------------- /client/editor/ChangeSpaceDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/editor/ChangeSpaceDialog.js -------------------------------------------------------------------------------- /client/editor/CreateProgramsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/editor/CreateProgramsDialog.js -------------------------------------------------------------------------------- /client/editor/EditorMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/editor/EditorMain.css -------------------------------------------------------------------------------- /client/editor/EditorMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/editor/EditorMain.js -------------------------------------------------------------------------------- /client/editor/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/editor/entry.js -------------------------------------------------------------------------------- /client/paper/canvasUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/paper/canvasUtils.js -------------------------------------------------------------------------------- /client/paper/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/paper/entry.js -------------------------------------------------------------------------------- /client/paper/whisker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/paper/whisker.js -------------------------------------------------------------------------------- /client/projector/Program.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/projector/Program.css -------------------------------------------------------------------------------- /client/projector/Program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/projector/Program.js -------------------------------------------------------------------------------- /client/projector/ProjectorMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/projector/ProjectorMain.js -------------------------------------------------------------------------------- /client/projector/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/projector/entry.js -------------------------------------------------------------------------------- /client/tests/DisplayModelTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/tests/DisplayModelTests.js -------------------------------------------------------------------------------- /client/tests/creator/CreatorModelTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/tests/creator/CreatorModelTests.js -------------------------------------------------------------------------------- /client/tests/creator/ProgramCodeGeneratorTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/tests/creator/ProgramCodeGeneratorTests.js -------------------------------------------------------------------------------- /client/tests/creator/ProgramCodeValidatorTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/tests/creator/ProgramCodeValidatorTests.js -------------------------------------------------------------------------------- /client/tests/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/tests/entry.js -------------------------------------------------------------------------------- /client/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/client/utils.js -------------------------------------------------------------------------------- /knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/knexfile.js -------------------------------------------------------------------------------- /migrations/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/20180102104120_add_programs_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20180102104120_add_programs_table.js -------------------------------------------------------------------------------- /migrations/20180105135437_add_editor_info_column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20180105135437_add_editor_info_column.js -------------------------------------------------------------------------------- /migrations/20230304124600_add_snippets_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20230304124600_add_snippets_table.js -------------------------------------------------------------------------------- /migrations/20230705200913_add_creator_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20230705200913_add_creator_data.js -------------------------------------------------------------------------------- /migrations/20230921170258_sytem_to_project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20230921170258_sytem_to_project.js -------------------------------------------------------------------------------- /migrations/20231024015536_add_creator_templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20231024015536_add_creator_templates.js -------------------------------------------------------------------------------- /migrations/20231101194711_add_space_to_templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/migrations/20231101194711_add_space_to_templates.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/package.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1048.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1144.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1144.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/116.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/116.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1189.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1200.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/122.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1277.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1277.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1373.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1373.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1401.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1436.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1436.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1453.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1453.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/150.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1545.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1545.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1616.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1616.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1704.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1704.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/172.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/172.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1761.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1761.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1809.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1809.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1817.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1817.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/184.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1859.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/1925.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/2007.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/2094.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/2094.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/250.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/341.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/341.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/364.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/364.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/4.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/413.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/413.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/58.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/625.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/625.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/702.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/702.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/776.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/776.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/83.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/programs/85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ae-tests/programs/85.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ae-tests/projects/my-first-project.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/altitude-demo/programs/1542.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/altitude-demo/programs/1542.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/altitude-demo/programs/1742.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/altitude-demo/programs/1742.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/altitude-demo/programs/1793.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/altitude-demo/programs/1793.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/altitude-demo/programs/2038.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/altitude-demo/programs/2038.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/altitude-demo/programs/573.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/altitude-demo/programs/573.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/altitude-demo/programs/987.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/altitude-demo/programs/987.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/1268.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/1268.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/2049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/2049.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/280.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/304.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/452.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/452.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/665.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/665.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/programs/717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/programs/717.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/ae-servo-copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/ae-servo-copy.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/connect-papers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/connect-papers.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/e-field-hockey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/e-field-hockey.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/mlf-book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/mlf-book.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/multimodal-book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/multimodal-book.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/multimodal-paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/multimodal-paper.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/simple-dice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/simple-dice.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/sound-board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/sound-board.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/sound-grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/sound-grid.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/sound-levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/sound-levels.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/bf-tests/projects/twenty-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/bf-tests/projects/twenty-card.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/circle-test/programs/1687.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/circle-test/programs/1687.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/circle-test/programs/1860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/circle-test/programs/1860.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/circle-test/programs/1973.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/circle-test/programs/1973.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/circle-test/programs/368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/circle-test/programs/368.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/cool-space/programs/1146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/cool-space/programs/1146.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/cool-space/programs/558.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/cool-space/programs/558.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/cool-space/programs/80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/cool-space/programs/80.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/cool-space/projects/Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/cool-space/projects/Test.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/cool-space/projects/first-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/cool-space/projects/first-project.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/cool-space/projects/template-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/cool-space/projects/template-test.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/craft-demos/programs/1693.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/craft-demos/programs/1693.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/craft-demos/projects/craft-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/craft-demos/projects/craft-popup.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/programs/479.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-AE-tree/programs/479.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/projects/LEDtests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-AE-tree/projects/LEDtests.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/projects/ae-bloom.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/projects/creator-AE-dial.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/projects/creator-AE-projector-sample.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/projects/creator-ae-simple-tests.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-AE-tree/projects/creator-scratch-space.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/programs/394.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/programs/394.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/BNCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/BNCE.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/BNCE2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/BNCE2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/Bounce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/Bounce.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/COOL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/COOL.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/OrganTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/OrganTest.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/shaperotate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/shaperotate.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/test-one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/test-one.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/test2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-ash/projects/test3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-ash/projects/test3.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/1.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/3.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/4.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/5.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/6.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/8.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-card-games/programs/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-card-games/programs/9.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/programs/1112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/programs/1112.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/programs/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/programs/2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/programs/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/programs/3.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/programs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/programs/4.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/programs/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/programs/6.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/projects/cat-fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/projects/cat-fetch.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/projects/deep-sea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/projects/deep-sea.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/projects/paper-organ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/projects/paper-organ.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/projects/solar-system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/projects/solar-system.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-demos/projects/sound-board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-demos/projects/sound-board.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/1.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/3.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/4.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/5.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/6.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/programs/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/programs/7.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/projects/rps-elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/projects/rps-elements.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/projects/simon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/projects/simon.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-games/projects/skater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-games/projects/skater.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/programs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/programs/1.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/programs/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/programs/2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/programs/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/programs/20.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/programs/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/programs/3.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/programs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/programs/4.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/programs/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/programs/5.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-phet-sims/projects/efh-desc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-phet-sims/projects/efh-desc.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/programs/808.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/programs/808.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/cav-system-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/cav-system-1.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/cav-system-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/cav-system-2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/fun-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/fun-demo.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/paper-organ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/paper-organ.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/shape-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/shape-test.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/spider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/spider.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/test-system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/test-system.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/trial-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/trial-1.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/creator-tests/projects/with-jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/creator-tests/projects/with-jp.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/1017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/1017.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/1062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/1062.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/1182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/1182.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/1453.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/1453.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/1886.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/1886.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/256.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/304.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/40.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/470.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/470.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/density-demo/programs/729.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/density-demo/programs/729.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/em-tests/programs/165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/em-tests/programs/165.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/em-tests/projects/pendulum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/em-tests/projects/pendulum.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1094.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1094.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1195.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1195.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1196.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1420.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1626.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1626.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1654.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1654.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1925.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1956.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1956.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/1975.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/1975.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/2058.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/2058.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/219.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/222.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/222.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/318.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/318.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/365.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/365.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/487.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/487.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/497.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/497.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/705.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/705.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/idrc-design-crit-2023/programs/978.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/idrc-design-crit-2023/programs/978.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jb-tests/programs/1433.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jb-tests/programs/1433.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jb-tests/programs/1503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jb-tests/programs/1503.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jb-tests/programs/1735.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jb-tests/programs/1735.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jb-tests/programs/1977.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jb-tests/programs/1977.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jb-tests/programs/280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jb-tests/programs/280.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/programs/1510.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/programs/1510.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/programs/1549.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/programs/1549.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/programs/1972.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/programs/1972.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/programs/227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/programs/227.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/programs/519.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/programs/519.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/programs/700.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/programs/700.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/bluetooth-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/bluetooth-tests.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/cat-fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/cat-fetch.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/demo.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/dial-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/dial-example.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/focus-demo.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/loading-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/loading-test.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/marker-slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/marker-slider.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/new-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/new-project.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/quadrilateral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/quadrilateral.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/rotation-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/rotation-example.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/shapes-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/shapes-demo.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/solar-system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/solar-system.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/sound-grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/sound-grid.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/jg-tests/projects/test-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/jg-tests/projects/test-project.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1127.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1169.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1169.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1244.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1244.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1403.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1403.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1479.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1479.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1500.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1601.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1601.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1638.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1638.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1659.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1659.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1674.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1674.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1775.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1775.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/1846.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/1846.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/257.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/257.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/361.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/361.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/440.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/741.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/741.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/782.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/782.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lunar-lander/programs/818.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lunar-lander/programs/818.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lv-testSpace/programs/1272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lv-testSpace/programs/1272.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lv-testSpace/programs/1525.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lv-testSpace/programs/1525.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lv-testSpace/programs/1565.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lv-testSpace/programs/1565.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lv-testSpace/programs/1729.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lv-testSpace/programs/1729.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lv-testSpace/programs/2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lv-testSpace/programs/2007.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/lv-testSpace/programs/983.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/lv-testSpace/programs/983.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/may-codesign-2023/programs/1967.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/may-codesign-2023/programs/1967.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/may-codesign-2023/programs/859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/may-codesign-2023/programs/859.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/programs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/programs/1.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/programs/130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/programs/130.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/programs/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/programs/2.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/programs/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/programs/3.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/programs/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/programs/4.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/programs/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/programs/5.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/projects/simon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/projects/simon.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/my-temp-space/projects/skater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/my-temp-space/projects/skater.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ohms-law-demo/programs/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ohms-law-demo/programs/10.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ohms-law-demo/programs/1739.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ohms-law-demo/programs/1739.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ohms-law-demo/programs/286.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ohms-law-demo/programs/286.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ohms-law-demo/projects/test-copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ohms-law-demo/projects/test-copy.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/quadrilateral-sim-demo/programs/311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/quadrilateral-sim-demo/programs/311.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/quadrilateral-sim-demo/programs/602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/quadrilateral-sim-demo/programs/602.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/quadrilateral-sim-demo/programs/80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/quadrilateral-sim-demo/programs/80.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/quadrilateral-sim-demo/programs/817.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/quadrilateral-sim-demo/programs/817.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/1282.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/1282.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/1341.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/1341.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/138.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/138.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/1421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/1421.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/183.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/183.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/1993.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/1993.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/2006.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/255.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/255.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/264.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/264.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/298.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/299.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/629.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/629.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/674.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/674.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/simple-demos/programs/765.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/simple-demos/programs/765.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/programs/547.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/programs/547.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/animated-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/animated-image.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/background-color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/background-color.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/described-dial.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/described-grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/described-grid.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/displayed-bounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/displayed-bounds.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/marker-slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/marker-slider.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/marker-toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/marker-toggle.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/movable-circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/movable-circle.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/movable-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/movable-image.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/movable-square.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/movable-square.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/movable-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/movable-text.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/moveable-square.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/moveable-square.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/paper-sound-pitch-change.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/phet-checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/phet-checkbox.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/simple-description.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/speak-on-marker.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/speak-on-whisker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/speak-on-whisker.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/whisker-sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/whisker-sound.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/templates/projects/whisker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/templates/projects/whisker.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/tetraminus-space/programs/1870.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/tetraminus-space/programs/1870.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/tetraminus-space/programs/572.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/tetraminus-space/programs/572.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ts-creator-tests/programs/899.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ts-creator-tests/programs/899.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ts-tests/programs/1376.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ts-tests/programs/1376.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ts-tests/programs/1404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ts-tests/programs/1404.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ts-tests/programs/1606.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ts-tests/programs/1606.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/ts-tests/programs/903.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/ts-tests/programs/903.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/voicing-response-patterns/projects/canned-responses.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1026.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1026.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1037.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1142.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1142.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1154.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1154.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1176.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1176.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/130.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1308.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1308.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1414.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1414.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1630.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/1998.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/1998.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/2037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/2037.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/250.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/390.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/390.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/465.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/465.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/555.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/555.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/648.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/648.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/719.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/719.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/723.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/771.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/771.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/weavly-tests/programs/98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/weavly-tests/programs/98.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/1013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/1013.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/1110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/1110.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/1234.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/1234.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/484.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/484.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/523.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/523.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/725.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-1/programs/980.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-1/programs/980.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-2/programs/132.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-2/programs/132.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-2/programs/1502.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-2/programs/1502.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-2/programs/1766.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-2/programs/1766.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-2/programs/275.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-2/programs/275.json -------------------------------------------------------------------------------- /paper-programs-backup/spaces/whisker-demo-2/programs/646.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/spaces/whisker-demo-2/programs/646.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/10 Blank Programs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/10 Blank Programs.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/20 Blank Programs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/20 Blank Programs.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/5 Blank Programs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/5 Blank Programs.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/60 Blank Programs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/60 Blank Programs.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Bounds displayed on paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Bounds displayed on paper.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Decoupled Movable Circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Decoupled Movable Circle.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Image Visibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Image Visibility.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Movable Circle (Paper Center).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Movable Circle (Paper Center).json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Movable Image (Paper Bounds).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Movable Image (Paper Bounds).json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Movable Text_ Paper Center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Movable Text_ Paper Center.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/PhET Checkbox using Custom Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/PhET Checkbox using Custom Code.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Simple Background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Simple Background.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Simple Button - Sound and Speech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Simple Button - Sound and Speech.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Sound Equalizer and Rate Changer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Sound Equalizer and Rate Changer.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Sound on Paper Whisker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Sound on Paper Whisker.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Speak on Marker Add or Remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Speak on Marker Add or Remove.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Speak on Release_ 3x3 Grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Speak on Release_ 3x3 Grid.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Speak on Whisker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Speak on Whisker.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Speech on Paper Detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Speech on Paper Detection.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/UART to IO with Markers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/UART to IO with Markers.json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Voicing Checkbox (markers).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Voicing Checkbox (markers).json -------------------------------------------------------------------------------- /paper-programs-backup/templates/Voicing Simple Button (rotation).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/Voicing Simple Button (rotation).json -------------------------------------------------------------------------------- /paper-programs-backup/templates/efh-desc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/paper-programs-backup/templates/efh-desc.json -------------------------------------------------------------------------------- /pkg-setup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/pkg-setup/package.json -------------------------------------------------------------------------------- /pkg-setup/run-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/pkg-setup/run-project.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/create-env-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/create-env-file.js -------------------------------------------------------------------------------- /scripts/db/common/pushProgramToDatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/db/common/pushProgramToDatabase.js -------------------------------------------------------------------------------- /scripts/db/get-backup-from-database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/db/get-backup-from-database.js -------------------------------------------------------------------------------- /scripts/db/push-modified-programs-to-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/db/push-modified-programs-to-db.js -------------------------------------------------------------------------------- /scripts/db/push-program-to-database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/db/push-program-to-database.js -------------------------------------------------------------------------------- /scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /server/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/Constants.js -------------------------------------------------------------------------------- /server/IDataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/IDataService.js -------------------------------------------------------------------------------- /server/KnexDataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/KnexDataService.js -------------------------------------------------------------------------------- /server/LocalFileDataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/LocalFileDataService.js -------------------------------------------------------------------------------- /server/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/Utils.js -------------------------------------------------------------------------------- /server/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/api.js -------------------------------------------------------------------------------- /server/create-config-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/create-config-json.js -------------------------------------------------------------------------------- /server/default-data/spaces/demos/auditory-prototyping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/auditory-prototyping.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/5-blank-papers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/5-blank-papers.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/50-blank-papers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/50-blank-papers.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/audio-pendulum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/audio-pendulum.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/cat-fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/cat-fetch.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/deep-sea-scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/deep-sea-scene.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/default-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/default-project.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/my-pixel-garden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/my-pixel-garden.json -------------------------------------------------------------------------------- /server/default-data/spaces/demos/projects/sound-board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/demos/projects/sound-board.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/brick-breaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/brick-breaker.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/electric-field-hockey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/electric-field-hockey.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/find-the-cupcake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/find-the-cupcake.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/rps-elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/rps-elements.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/simon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/simon.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/simple-dice-war.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/simple-dice-war.json -------------------------------------------------------------------------------- /server/default-data/spaces/games/projects/skater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/games/projects/skater.json -------------------------------------------------------------------------------- /server/default-data/spaces/paper-craft/projects/craft-popup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/spaces/paper-craft/projects/craft-popup.json -------------------------------------------------------------------------------- /server/default-data/templates/Boolean Toggle using Marker_ Sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Boolean Toggle using Marker_ Sound.json -------------------------------------------------------------------------------- /server/default-data/templates/Bounds displayed on paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Bounds displayed on paper.json -------------------------------------------------------------------------------- /server/default-data/templates/Movable Circle (Paper Center).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Movable Circle (Paper Center).json -------------------------------------------------------------------------------- /server/default-data/templates/Movable Image (Paper Bounds).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Movable Image (Paper Bounds).json -------------------------------------------------------------------------------- /server/default-data/templates/Movable Image (Paper Center_Angle).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Movable Image (Paper Center_Angle).json -------------------------------------------------------------------------------- /server/default-data/templates/Movable Text_ Paper Center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Movable Text_ Paper Center.json -------------------------------------------------------------------------------- /server/default-data/templates/Simple Background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Simple Background.json -------------------------------------------------------------------------------- /server/default-data/templates/Sound on Paper Whisker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Sound on Paper Whisker.json -------------------------------------------------------------------------------- /server/default-data/templates/Speak on Release_ 3x3 Grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Speak on Release_ 3x3 Grid.json -------------------------------------------------------------------------------- /server/default-data/templates/Speech on Paper Detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/default-data/templates/Speech on Paper Detection.json -------------------------------------------------------------------------------- /server/entry-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/entry-server.js -------------------------------------------------------------------------------- /server/loadConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/loadConfig.js -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/main.js -------------------------------------------------------------------------------- /server/restrictedSpacesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/server/restrictedSpacesList.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/webpack.server.config.js -------------------------------------------------------------------------------- /www/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/api.html -------------------------------------------------------------------------------- /www/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/camera.html -------------------------------------------------------------------------------- /www/creator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/creator.html -------------------------------------------------------------------------------- /www/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/display.html -------------------------------------------------------------------------------- /www/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/editor.html -------------------------------------------------------------------------------- /www/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /www/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /www/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /www/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/browserconfig.xml -------------------------------------------------------------------------------- /www/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /www/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /www/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/favicon.ico -------------------------------------------------------------------------------- /www/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /www/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /www/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /www/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /www/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /www/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /www/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/favicon/site.webmanifest -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/index.html -------------------------------------------------------------------------------- /www/lib/p2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/lib/p2.min.js -------------------------------------------------------------------------------- /www/media/images/arrows-spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/arrows-spin.svg -------------------------------------------------------------------------------- /www/media/images/baked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/baked.png -------------------------------------------------------------------------------- /www/media/images/barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/barrel.png -------------------------------------------------------------------------------- /www/media/images/batter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/batter.png -------------------------------------------------------------------------------- /www/media/images/birdInAir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/birdInAir.png -------------------------------------------------------------------------------- /www/media/images/blue-orchid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/blue-orchid1.png -------------------------------------------------------------------------------- /www/media/images/blue-orchid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/blue-orchid2.png -------------------------------------------------------------------------------- /www/media/images/blue-orchid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/blue-orchid3.png -------------------------------------------------------------------------------- /www/media/images/blue-orchid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/blue-orchid4.png -------------------------------------------------------------------------------- /www/media/images/blue-orchid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/blue-orchid5.png -------------------------------------------------------------------------------- /www/media/images/blue-orchid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/blue-orchid6.png -------------------------------------------------------------------------------- /www/media/images/brown-dog-leaping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/brown-dog-leaping.png -------------------------------------------------------------------------------- /www/media/images/brown-dog-sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/brown-dog-sitting.png -------------------------------------------------------------------------------- /www/media/images/brown-fox-leaping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/brown-fox-leaping.png -------------------------------------------------------------------------------- /www/media/images/brown-fox-sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/brown-fox-sitting.png -------------------------------------------------------------------------------- /www/media/images/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/collapse.svg -------------------------------------------------------------------------------- /www/media/images/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/copy.svg -------------------------------------------------------------------------------- /www/media/images/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/eye.svg -------------------------------------------------------------------------------- /www/media/images/fantasy-card-mat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/fantasy-card-mat.jpg -------------------------------------------------------------------------------- /www/media/images/fish1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/fish1.png -------------------------------------------------------------------------------- /www/media/images/fish2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/fish2.png -------------------------------------------------------------------------------- /www/media/images/fish3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/fish3.png -------------------------------------------------------------------------------- /www/media/images/frosted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/frosted.png -------------------------------------------------------------------------------- /www/media/images/girlInAir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/girlInAir.png -------------------------------------------------------------------------------- /www/media/images/girlInWater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/girlInWater.png -------------------------------------------------------------------------------- /www/media/images/hand-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/hand-outline.svg -------------------------------------------------------------------------------- /www/media/images/hopping-frog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/hopping-frog.gif -------------------------------------------------------------------------------- /www/media/images/hotairballoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/hotairballoon.png -------------------------------------------------------------------------------- /www/media/images/idle-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/idle-cat.gif -------------------------------------------------------------------------------- /www/media/images/idle-frog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/idle-frog.gif -------------------------------------------------------------------------------- /www/media/images/lunarLander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/lunarLander.png -------------------------------------------------------------------------------- /www/media/images/magic-wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/magic-wand.svg -------------------------------------------------------------------------------- /www/media/images/meadow-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/meadow-landscape.png -------------------------------------------------------------------------------- /www/media/images/off-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/off-bulb.png -------------------------------------------------------------------------------- /www/media/images/on-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/on-bulb.png -------------------------------------------------------------------------------- /www/media/images/paper-sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/paper-sound.png -------------------------------------------------------------------------------- /www/media/images/peace-lily1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/peace-lily1.png -------------------------------------------------------------------------------- /www/media/images/peace-lily2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/peace-lily2.png -------------------------------------------------------------------------------- /www/media/images/peace-lily3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/peace-lily3.png -------------------------------------------------------------------------------- /www/media/images/peace-lily4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/peace-lily4.png -------------------------------------------------------------------------------- /www/media/images/peace-lily5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/peace-lily5.png -------------------------------------------------------------------------------- /www/media/images/peace-lily6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/peace-lily6.png -------------------------------------------------------------------------------- /www/media/images/pencil-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/pencil-white.svg -------------------------------------------------------------------------------- /www/media/images/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/planet.png -------------------------------------------------------------------------------- /www/media/images/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/pot.png -------------------------------------------------------------------------------- /www/media/images/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/printer.svg -------------------------------------------------------------------------------- /www/media/images/red-dog-leaping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/red-dog-leaping.png -------------------------------------------------------------------------------- /www/media/images/red-dog-sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/red-dog-sitting.png -------------------------------------------------------------------------------- /www/media/images/red-fox-leaping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/red-fox-leaping.png -------------------------------------------------------------------------------- /www/media/images/red-fox-sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/red-fox-sitting.png -------------------------------------------------------------------------------- /www/media/images/resize-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/resize-white.svg -------------------------------------------------------------------------------- /www/media/images/running-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/running-cat.gif -------------------------------------------------------------------------------- /www/media/images/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/scissors.svg -------------------------------------------------------------------------------- /www/media/images/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/spider.png -------------------------------------------------------------------------------- /www/media/images/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/sub.png -------------------------------------------------------------------------------- /www/media/images/submarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/submarine.png -------------------------------------------------------------------------------- /www/media/images/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/sun.png -------------------------------------------------------------------------------- /www/media/images/tapping-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/tapping-cat.gif -------------------------------------------------------------------------------- /www/media/images/trash3-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/trash3-black.svg -------------------------------------------------------------------------------- /www/media/images/trash3-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/trash3-red.svg -------------------------------------------------------------------------------- /www/media/images/trash3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/trash3.svg -------------------------------------------------------------------------------- /www/media/images/upload-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/upload-black.svg -------------------------------------------------------------------------------- /www/media/images/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/upload.svg -------------------------------------------------------------------------------- /www/media/images/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/media/images/walking-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/walking-cat.gif -------------------------------------------------------------------------------- /www/media/images/water-can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/water-can.png -------------------------------------------------------------------------------- /www/media/images/zz-plant1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/zz-plant1.png -------------------------------------------------------------------------------- /www/media/images/zz-plant2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/zz-plant2.png -------------------------------------------------------------------------------- /www/media/images/zz-plant3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/zz-plant3.png -------------------------------------------------------------------------------- /www/media/images/zz-plant4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/zz-plant4.png -------------------------------------------------------------------------------- /www/media/images/zz-plant5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/zz-plant5.png -------------------------------------------------------------------------------- /www/media/images/zz-plant6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/images/zz-plant6.png -------------------------------------------------------------------------------- /www/media/sounds/Frog-sound-ribbit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/Frog-sound-ribbit.mp3 -------------------------------------------------------------------------------- /www/media/sounds/accordionBoxClose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/accordionBoxClose.mp3 -------------------------------------------------------------------------------- /www/media/sounds/accordionBoxOpen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/accordionBoxOpen.mp3 -------------------------------------------------------------------------------- /www/media/sounds/attributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/attributions.txt -------------------------------------------------------------------------------- /www/media/sounds/b-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/b-tone.mp3 -------------------------------------------------------------------------------- /www/media/sounds/birdCall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/birdCall.mp3 -------------------------------------------------------------------------------- /www/media/sounds/bong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/bong.mp3 -------------------------------------------------------------------------------- /www/media/sounds/boundaryReached.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/boundaryReached.mp3 -------------------------------------------------------------------------------- /www/media/sounds/brightMarimba.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/brightMarimba.mp3 -------------------------------------------------------------------------------- /www/media/sounds/brightMarimbaShort.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/brightMarimbaShort.mp3 -------------------------------------------------------------------------------- /www/media/sounds/c-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/c-tone.mp3 -------------------------------------------------------------------------------- /www/media/sounds/ceilingFloorContact.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/ceilingFloorContact.mp3 -------------------------------------------------------------------------------- /www/media/sounds/chargesInBody.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/chargesInBody.mp3 -------------------------------------------------------------------------------- /www/media/sounds/checkboxChecked.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/checkboxChecked.mp3 -------------------------------------------------------------------------------- /www/media/sounds/checkboxUnchecked.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/checkboxUnchecked.mp3 -------------------------------------------------------------------------------- /www/media/sounds/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/click.mp3 -------------------------------------------------------------------------------- /www/media/sounds/collide.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/collide.mp3 -------------------------------------------------------------------------------- /www/media/sounds/cricketsLoop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/cricketsLoop.mp3 -------------------------------------------------------------------------------- /www/media/sounds/d-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/d-tone.mp3 -------------------------------------------------------------------------------- /www/media/sounds/e-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/e-tone.mp3 -------------------------------------------------------------------------------- /www/media/sounds/emptyApartmentBedroom06Resampled.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/emptyApartmentBedroom06Resampled.mp3 -------------------------------------------------------------------------------- /www/media/sounds/g-tone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/g-tone.mp3 -------------------------------------------------------------------------------- /www/media/sounds/generalBoundaryBoop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/generalBoundaryBoop.mp3 -------------------------------------------------------------------------------- /www/media/sounds/generalButton.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/generalButton.mp3 -------------------------------------------------------------------------------- /www/media/sounds/generalClose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/generalClose.mp3 -------------------------------------------------------------------------------- /www/media/sounds/generalOpen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/generalOpen.mp3 -------------------------------------------------------------------------------- /www/media/sounds/generalSoftClick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/generalSoftClick.mp3 -------------------------------------------------------------------------------- /www/media/sounds/grab.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/grab.mp3 -------------------------------------------------------------------------------- /www/media/sounds/grab2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/grab2.mp3 -------------------------------------------------------------------------------- /www/media/sounds/grabHighPitch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/grabHighPitch.mp3 -------------------------------------------------------------------------------- /www/media/sounds/loonCall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/loonCall.mp3 -------------------------------------------------------------------------------- /www/media/sounds/looping-thrust.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/looping-thrust.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalBeat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalBeat.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalInvertedBeat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalInvertedBeat.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalSimpleBeat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalSimpleBeat.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackEight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackEight.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackFive.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackFive.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackFour.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackFour.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackNine.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackNine.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackOne.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackOne.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackSeven.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackSeven.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackSix.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackSix.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackTen.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackTen.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackThree.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackThree.mp3 -------------------------------------------------------------------------------- /www/media/sounds/musicalTrackTwo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/musicalTrackTwo.mp3 -------------------------------------------------------------------------------- /www/media/sounds/pause.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/pause.mp3 -------------------------------------------------------------------------------- /www/media/sounds/playPause.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/playPause.mp3 -------------------------------------------------------------------------------- /www/media/sounds/radioButton.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/radioButton.mp3 -------------------------------------------------------------------------------- /www/media/sounds/release.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/release.mp3 -------------------------------------------------------------------------------- /www/media/sounds/resetAll.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/resetAll.mp3 -------------------------------------------------------------------------------- /www/media/sounds/rhodesChord.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/rhodesChord.mp3 -------------------------------------------------------------------------------- /www/media/sounds/saturatedSineLoop220Hz.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/saturatedSineLoop220Hz.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio001.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio001.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio002.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio002.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio003.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio003.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio004.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio004.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio005.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio005.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio006.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio006.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio007.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio007.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio008.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio008.mp3 -------------------------------------------------------------------------------- /www/media/sounds/selectionArpeggio009.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/selectionArpeggio009.mp3 -------------------------------------------------------------------------------- /www/media/sounds/short-success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/short-success.mp3 -------------------------------------------------------------------------------- /www/media/sounds/shortSilence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/shortSilence.wav -------------------------------------------------------------------------------- /www/media/sounds/sliderClick01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/sliderClick01.mp3 -------------------------------------------------------------------------------- /www/media/sounds/sliderClick02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/sliderClick02.mp3 -------------------------------------------------------------------------------- /www/media/sounds/stepBack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/stepBack.mp3 -------------------------------------------------------------------------------- /www/media/sounds/stepForward.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/stepForward.mp3 -------------------------------------------------------------------------------- /www/media/sounds/stringsLoopMiddleCOscilloscope.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/stringsLoopMiddleCOscilloscope.mp3 -------------------------------------------------------------------------------- /www/media/sounds/switchToLeft.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/switchToLeft.mp3 -------------------------------------------------------------------------------- /www/media/sounds/switchToRight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/switchToRight.mp3 -------------------------------------------------------------------------------- /www/media/sounds/thunder.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/thunder.mp3 -------------------------------------------------------------------------------- /www/media/sounds/trillOne.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/trillOne.wav -------------------------------------------------------------------------------- /www/media/sounds/trillTwo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/trillTwo.wav -------------------------------------------------------------------------------- /www/media/sounds/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/media/sounds/windsLoopC3Oscilloscope.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/windsLoopC3Oscilloscope.mp3 -------------------------------------------------------------------------------- /www/media/sounds/windsLoopMiddleCOscilloscope.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/media/sounds/windsLoopMiddleCOscilloscope.mp3 -------------------------------------------------------------------------------- /www/opencv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/opencv.js -------------------------------------------------------------------------------- /www/opencv_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/opencv_js.js -------------------------------------------------------------------------------- /www/opencv_js.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/opencv_js.wasm -------------------------------------------------------------------------------- /www/phet-lib.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/phet-lib.debug.js -------------------------------------------------------------------------------- /www/phet-lib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/phet-lib.min.js -------------------------------------------------------------------------------- /www/projector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/projector.html -------------------------------------------------------------------------------- /www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/styles.css -------------------------------------------------------------------------------- /www/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/tests.html -------------------------------------------------------------------------------- /www/web-assets/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/credits.html -------------------------------------------------------------------------------- /www/web-assets/noun-code-1235795.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/noun-code-1235795.png -------------------------------------------------------------------------------- /www/web-assets/noun-design-2085718.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/noun-design-2085718.png -------------------------------------------------------------------------------- /www/web-assets/noun-monitor-sound-on-587232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/noun-monitor-sound-on-587232.png -------------------------------------------------------------------------------- /www/web-assets/noun-papers-2041114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/noun-papers-2041114.png -------------------------------------------------------------------------------- /www/web-assets/noun-webcam-2033266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/noun-webcam-2033266.png -------------------------------------------------------------------------------- /www/web-assets/paper-land-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/paper-land-icon.png -------------------------------------------------------------------------------- /www/web-assets/table-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phetsims/paper-land/HEAD/www/web-assets/table-setup.png --------------------------------------------------------------------------------