├── .gitignore ├── Actividades └── Seguridad │ ├── bonus.py │ └── zips │ ├── 16637194.zip │ ├── 17204704.zip │ ├── 17639301.zip │ ├── 18636659.zip │ ├── 1964082J.zip │ ├── 19642334.zip │ ├── 19642342.zip │ ├── 20202547.zip │ ├── 20207735.zip │ ├── 20624301.zip │ ├── 20624441.zip │ ├── 2062557J.zip │ ├── 2062610J.zip │ ├── 20626983.zip │ ├── 20627610.zip │ ├── 20627920.zip │ ├── 20638949.zip │ ├── 20639767.zip │ ├── 20639791.zip │ ├── 20640501.zip │ ├── 20641109.zip │ ├── 20641125.zip │ ├── 20642210.zip │ ├── 20642415.zip │ ├── 20642741.zip │ ├── 20643640.zip │ ├── 21205574.zip │ ├── 21208077.zip │ ├── 21623813.zip │ ├── 21624100.zip │ ├── 21626200.zip │ ├── 21626839.zip │ ├── 21637377.zip │ ├── 21637393.zip │ ├── 21637814.zip │ ├── 21638047.zip │ ├── 21638373.zip │ ├── 21638500.zip │ ├── 21638748.zip │ ├── 21639183.zip │ ├── 2163923J.zip │ ├── 21639442.zip │ ├── 21639515.zip │ ├── 21639817.zip │ ├── 21639965.zip │ ├── 21640319.zip │ ├── 21641366.zip │ ├── 21641692.zip │ ├── 21641714.zip │ ├── 21642222.zip │ ├── 21642745.zip │ ├── 21643024.zip │ ├── 21643180.zip │ ├── 21655111.zip │ ├── 22200053.zip │ ├── 22202579.zip │ ├── 22203702.zip │ ├── 22205411.zip │ ├── 22205438.zip │ ├── 22624074.zip │ ├── 22624244.zip │ ├── 22624597.zip │ ├── 22624791.zip │ ├── 22624880.zip │ ├── 22625496.zip │ ├── 22625542.zip │ ├── 2262581J.zip │ ├── 22626328.zip │ ├── 22637788.zip │ ├── 22637958.zip │ ├── 22638377.zip │ ├── 22638504.zip │ ├── 22638512.zip │ ├── 22640290.zip │ ├── 22640495.zip │ ├── 22640746.zip │ ├── 22640797.zip │ ├── 22640819.zip │ ├── 22640932.zip │ ├── 22642366.zip │ ├── 22642471.zip │ ├── 22643036.zip │ ├── 22643141.zip │ ├── 22643192.zip │ ├── 22643478.zip │ ├── 22643710.zip │ ├── 22643761.zip │ ├── 22643885.zip │ ├── 22644059.zip │ ├── 22644296.zip │ ├── 22658653.zip │ ├── 22658718.zip │ ├── 2320012J.zip │ ├── 23200219.zip │ ├── 23204664.zip │ ├── 2320740J.zip │ ├── 23210338.zip │ ├── 23662387.zip │ ├── 23662409.zip │ ├── 23662417.zip │ ├── 23662425.zip │ ├── 23662433.zip │ ├── 23662441.zip │ ├── 2366245J.zip │ ├── 23662468.zip │ ├── 23662492.zip │ ├── 23662573.zip │ ├── 23662581.zip │ ├── 23662603.zip │ ├── 23662727.zip │ ├── 23662735.zip │ ├── 23662743.zip │ ├── 23662786.zip │ ├── 23662816.zip │ ├── 23662824.zip │ ├── 23662840.zip │ ├── 23662905.zip │ ├── 23662921.zip │ ├── 23663006.zip │ ├── 23663014.zip │ ├── 23663049.zip │ └── 24202444.zip ├── Ayudantías ├── Ayudantia 1 - JavaScript.pdf └── ayudantia-react │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx │ ├── vite.config.js │ └── yarn.lock ├── Proyecto ├── CODE_OF_CONDUCT.md ├── IIC2513_2025_1_Enunciado_Proyecto.pdf ├── IIC2513_Proyecto_E0_25_1.pdf ├── IIC2513_Proyecto_E1_25_1.pdf ├── IIC2513_Proyecto_E2_25_1.pdf └── IIC2513_Proyecto_E3_25_1.pdf ├── README.md └── Tareas ├── Diagrama T2-25-1.jpg ├── IIC2513_Tarea_1_25_1.pdf └── IIC2513_Tarea_2_25_1.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux 3 | 4 | ### Linux ### 5 | *~ 6 | 7 | # temporary files which can be created if a process still has a handle open of a deleted file 8 | .fuse_hidden* 9 | 10 | # KDE directory preferences 11 | .directory 12 | 13 | # Linux trash folder which might appear on any partition or disk 14 | .Trash-* 15 | 16 | # .nfs files are created when an open file is removed but is still being accessed 17 | .nfs* 18 | 19 | ### macOS ### 20 | # General 21 | .DS_Store 22 | .AppleDouble 23 | .LSOverride 24 | 25 | # Icon must end with two \r 26 | Icon 27 | 28 | # Thumbnails 29 | ._* 30 | 31 | # Files that might appear in the root of a volume 32 | .DocumentRevisions-V100 33 | .fseventsd 34 | .Spotlight-V100 35 | .TemporaryItems 36 | .Trashes 37 | .VolumeIcon.icns 38 | .com.apple.timemachine.donotpresent 39 | 40 | # Directories potentially created on remote AFP share 41 | .AppleDB 42 | .AppleDesktop 43 | Network Trash Folder 44 | Temporary Items 45 | .apdisk 46 | 47 | ### macOS Patch ### 48 | # iCloud generated files 49 | *.icloud 50 | 51 | ### Windows ### 52 | # Windows thumbnail cache files 53 | Thumbs.db 54 | Thumbs.db:encryptable 55 | ehthumbs.db 56 | ehthumbs_vista.db 57 | 58 | # Dump file 59 | *.stackdump 60 | 61 | # Folder config file 62 | [Dd]esktop.ini 63 | 64 | # Recycle Bin used on file shares 65 | $RECYCLE.BIN/ 66 | 67 | # Windows Installer files 68 | *.cab 69 | *.msi 70 | *.msix 71 | *.msm 72 | *.msp 73 | 74 | # Windows shortcuts 75 | *.lnk 76 | 77 | # End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux 78 | -------------------------------------------------------------------------------- /Actividades/Seguridad/bonus.py: -------------------------------------------------------------------------------- 1 | import hmac 2 | import hashlib 3 | 4 | def encontrar_palabra_original(): 5 | clave_base = input("🔐 Ingresa la clave del acertijo: ").strip() 6 | palabra_base = input("💬 Ingresa el mensaje: ").strip() 7 | hash_objetivo = input("🧪 Ingresa el hash firmado entregado: ").strip() 8 | 9 | for i in range(100, 1000): 10 | firma = f"{clave_base}-{i}" 11 | for j in range(100, 1000): 12 | mensaje = f"{palabra_base}-{j}" 13 | hash_calculado = hmac.new( 14 | key=firma.encode(), 15 | msg=mensaje.encode(), 16 | digestmod=hashlib.sha256 17 | ).hexdigest() 18 | 19 | if hash_calculado == hash_objetivo: 20 | print(f"\n✅ ¡Match encontrado!") 21 | print(f"🔑 Clave correcta: {firma}") 22 | print(f"📦 Palabra original: {mensaje}") 23 | return 24 | 25 | print("❌ No se encontró coincidencia. Revisa si los datos son correctos.") 26 | 27 | # Ejecutar 28 | if __name__ == "__main__": 29 | encontrar_palabra_original() -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/16637194.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/16637194.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/17204704.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/17204704.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/17639301.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/17639301.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/18636659.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/18636659.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/1964082J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/1964082J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/19642334.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/19642334.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/19642342.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/19642342.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20202547.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20202547.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20207735.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20207735.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20624301.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20624301.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20624441.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20624441.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2062557J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2062557J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2062610J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2062610J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20626983.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20626983.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20627610.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20627610.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20627920.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20627920.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20638949.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20638949.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20639767.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20639767.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20639791.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20639791.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20640501.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20640501.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20641109.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20641109.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20641125.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20641125.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20642210.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20642210.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20642415.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20642415.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20642741.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20642741.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/20643640.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/20643640.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21205574.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21205574.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21208077.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21208077.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21623813.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21623813.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21624100.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21624100.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21626200.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21626200.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21626839.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21626839.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21637377.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21637377.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21637393.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21637393.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21637814.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21637814.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21638047.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21638047.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21638373.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21638373.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21638500.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21638500.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21638748.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21638748.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21639183.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21639183.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2163923J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2163923J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21639442.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21639442.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21639515.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21639515.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21639817.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21639817.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21639965.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21639965.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21640319.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21640319.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21641366.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21641366.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21641692.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21641692.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21641714.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21641714.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21642222.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21642222.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21642745.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21642745.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21643024.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21643024.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21643180.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21643180.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/21655111.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/21655111.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22200053.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22200053.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22202579.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22202579.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22203702.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22203702.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22205411.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22205411.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22205438.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22205438.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22624074.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22624074.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22624244.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22624244.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22624597.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22624597.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22624791.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22624791.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22624880.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22624880.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22625496.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22625496.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22625542.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22625542.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2262581J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2262581J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22626328.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22626328.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22637788.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22637788.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22637958.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22637958.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22638377.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22638377.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22638504.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22638504.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22638512.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22638512.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22640290.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22640290.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22640495.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22640495.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22640746.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22640746.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22640797.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22640797.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22640819.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22640819.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22640932.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22640932.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22642366.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22642366.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22642471.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22642471.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643036.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643036.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643141.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643141.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643192.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643192.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643478.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643478.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643710.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643710.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643761.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643761.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22643885.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22643885.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22644059.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22644059.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22644296.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22644296.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22658653.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22658653.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/22658718.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/22658718.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2320012J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2320012J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23200219.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23200219.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23204664.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23204664.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2320740J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2320740J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23210338.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23210338.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662387.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662387.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662409.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662409.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662417.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662417.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662425.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662425.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662433.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662433.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662441.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662441.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/2366245J.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/2366245J.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662468.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662468.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662492.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662492.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662573.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662573.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662581.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662581.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662603.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662603.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662727.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662727.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662735.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662735.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662743.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662743.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662786.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662786.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662816.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662816.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662824.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662824.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662840.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662840.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662905.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662905.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23662921.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23662921.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23663006.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23663006.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23663014.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23663014.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/23663049.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/23663049.zip -------------------------------------------------------------------------------- /Actividades/Seguridad/zips/24202444.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Actividades/Seguridad/zips/24202444.zip -------------------------------------------------------------------------------- /Ayudantías/Ayudantia 1 - JavaScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Ayudantías/Ayudantia 1 - JavaScript.pdf -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/README.md: -------------------------------------------------------------------------------- 1 | # Ayudantia 2 2 | 3 | Hola! Les recuerdo los comandos que deben usar para instalar y ejecutar el proyecto. 4 | 5 | ## Instalación 6 | 7 | ```bash 8 | yarn create vite 9 | ``` 10 | Luego seleccionan React y JavaScript + SWC. **Hacen cd en el directorio creado** y ejecutan lo que viene 11 | 12 | ## Ejecución 13 | 14 | ```bash 15 | yarn (o yarn install) 16 | ``` 17 | Finalmente prueban su aplicación de forma local con el siguiente comando 18 | ## Despliegue 19 | 20 | ```bash 21 | yarn dev -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import globals from 'globals' 3 | import reactHooks from 'eslint-plugin-react-hooks' 4 | import reactRefresh from 'eslint-plugin-react-refresh' 5 | 6 | export default [ 7 | { ignores: ['dist'] }, 8 | { 9 | files: ['**/*.{js,jsx}'], 10 | languageOptions: { 11 | ecmaVersion: 2020, 12 | globals: globals.browser, 13 | parserOptions: { 14 | ecmaVersion: 'latest', 15 | ecmaFeatures: { jsx: true }, 16 | sourceType: 'module', 17 | }, 18 | }, 19 | plugins: { 20 | 'react-hooks': reactHooks, 21 | 'react-refresh': reactRefresh, 22 | }, 23 | rules: { 24 | ...js.configs.recommended.rules, 25 | ...reactHooks.configs.recommended.rules, 26 | 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }], 27 | 'react-refresh/only-export-components': [ 28 | 'warn', 29 | { allowConstantExport: true }, 30 | ], 31 | }, 32 | }, 33 | ] 34 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ayudantia-react", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "lint": "eslint .", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "react": "^19.0.0", 14 | "react-dom": "^19.0.0" 15 | }, 16 | "devDependencies": { 17 | "@eslint/js": "^9.21.0", 18 | "@types/react": "^19.0.10", 19 | "@types/react-dom": "^19.0.4", 20 | "@vitejs/plugin-react-swc": "^3.8.0", 21 | "eslint": "^9.21.0", 22 | "eslint-plugin-react-hooks": "^5.1.0", 23 | "eslint-plugin-react-refresh": "^0.4.19", 24 | "globals": "^15.15.0", 25 | "vite": "^6.2.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | max-width: 1280px; 3 | margin: 0 auto; 4 | padding: 2rem; 5 | text-align: center; 6 | } 7 | 8 | .logo { 9 | height: 6em; 10 | padding: 1.5em; 11 | will-change: filter; 12 | transition: filter 300ms; 13 | } 14 | .logo:hover { 15 | filter: drop-shadow(0 0 2em #646cffaa); 16 | } 17 | .logo.react:hover { 18 | filter: drop-shadow(0 0 2em #61dafbaa); 19 | } 20 | 21 | @keyframes logo-spin { 22 | from { 23 | transform: rotate(0deg); 24 | } 25 | to { 26 | transform: rotate(360deg); 27 | } 28 | } 29 | 30 | @media (prefers-reduced-motion: no-preference) { 31 | a:nth-of-type(2) .logo { 32 | animation: logo-spin infinite 20s linear; 33 | } 34 | } 35 | 36 | .card { 37 | padding: 2em; 38 | } 39 | 40 | .read-the-docs { 41 | color: #888; 42 | } 43 | .container { 44 | display: flex; 45 | flex-direction: column; 46 | align-items: center; 47 | justify-content: center; 48 | min-height: 100vh; /* Asegura que ocupe toda la pantalla */ 49 | } 50 | 51 | 52 | button { 53 | margin: 10px; 54 | padding: 10px 20px; 55 | font-size: 16px; 56 | cursor: pointer; 57 | border: none; 58 | background-color: #646cff; 59 | color: white; 60 | border-radius: 5px; 61 | transition: background 0.3s; 62 | } 63 | 64 | button:hover { 65 | background-color: #4a54e1; 66 | } 67 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/src/App.jsx: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | 3 | function Contador() { 4 | const [count, setCount] = useState(0); 5 | 6 | useEffect(() => { 7 | if (count === 10) { 8 | alert("¡Has llegado a 10!"); 9 | } 10 | }, [count]); 11 | 12 | const disminuir = () => { 13 | if (count > 0) { 14 | setCount(count - 1); 15 | } else { 16 | alert("No puedes disminuir más, el contador ya está en 0!"); 17 | } 18 | }; 19 | 20 | 21 | return ( 22 |
23 |

Contador: {count}

24 |
25 | 26 | 27 | 28 |
29 |
30 | ); 31 | } 32 | 33 | export default function App() { 34 | return ; 35 | } 36 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/src/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; 3 | line-height: 1.5; 4 | font-weight: 400; 5 | 6 | color-scheme: light dark; 7 | color: rgba(255, 255, 255, 0.87); 8 | background-color: #242424; 9 | 10 | font-synthesis: none; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | a { 17 | font-weight: 500; 18 | color: #646cff; 19 | text-decoration: inherit; 20 | } 21 | 22 | a:hover { 23 | color: #535bf2; 24 | } 25 | 26 | body { 27 | margin: 0; 28 | min-width: 320px; 29 | min-height: 100vh; 30 | background-color: #242424; 31 | } 32 | 33 | #root { 34 | display: flex; 35 | justify-content: center; 36 | align-items: center; 37 | height: 100vh; 38 | width: 100%; 39 | } 40 | 41 | .container { 42 | display: flex; 43 | flex-direction: column; 44 | align-items: center; 45 | justify-content: center; 46 | min-height: 100vh; 47 | } 48 | 49 | h1 { 50 | font-size: 3.2em; 51 | line-height: 1.1; 52 | margin-bottom: 20px; /* Espacio entre el título y los botones */ 53 | } 54 | 55 | button { 56 | border-radius: 8px; 57 | border: 1px solid transparent; 58 | padding: 0.6em 1.2em; 59 | font-size: 1em; 60 | font-weight: 500; 61 | font-family: inherit; 62 | background-color: #1a1a1a; 63 | cursor: pointer; 64 | transition: border-color 0.25s; 65 | margin: 10px 15px; /* Espacio entre los botones */ 66 | } 67 | 68 | button:hover { 69 | border-color: #646cff; 70 | } 71 | 72 | button:focus, 73 | button:focus-visible { 74 | outline: 4px auto -webkit-focus-ring-color; 75 | } 76 | 77 | /* Contenedor de botones para alinearlos en fila y separar con gap */ 78 | .button-container { 79 | display: flex; 80 | justify-content: center; 81 | gap: 20px; /* Espacio uniforme entre los botones */ 82 | } 83 | 84 | @media (prefers-color-scheme: light) { 85 | :root { 86 | color: #213547; 87 | background-color: #ffffff; 88 | } 89 | a:hover { 90 | color: #747bff; 91 | } 92 | button { 93 | background-color: #f9f9f9; 94 | } 95 | } 96 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/src/main.jsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react' 2 | import { createRoot } from 'react-dom/client' 3 | import './index.css' 4 | import App from './App.jsx' 5 | 6 | createRoot(document.getElementById('root')).render( 7 | 8 | 9 | , 10 | ) 11 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react-swc' 3 | 4 | // https://vite.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /Ayudantías/ayudantia-react/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@esbuild/aix-ppc64@0.25.1": 6 | version "0.25.1" 7 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz#c33cf6bbee34975626b01b80451cbb72b4c6c91d" 8 | integrity sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ== 9 | 10 | "@esbuild/android-arm64@0.25.1": 11 | version "0.25.1" 12 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz#ea766015c7d2655164f22100d33d7f0308a28d6d" 13 | integrity sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA== 14 | 15 | "@esbuild/android-arm@0.25.1": 16 | version "0.25.1" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.1.tgz#e84d2bf2fe2e6177a0facda3a575b2139fd3cb9c" 18 | integrity sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q== 19 | 20 | "@esbuild/android-x64@0.25.1": 21 | version "0.25.1" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.1.tgz#58337bee3bc6d78d10425e5500bd11370cfdfbed" 23 | integrity sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw== 24 | 25 | "@esbuild/darwin-arm64@0.25.1": 26 | version "0.25.1" 27 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz#a46805c1c585d451aa83be72500bd6e8495dd591" 28 | integrity sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ== 29 | 30 | "@esbuild/darwin-x64@0.25.1": 31 | version "0.25.1" 32 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz#0643e003bb238c63fc93ddbee7d26a003be3cd98" 33 | integrity sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA== 34 | 35 | "@esbuild/freebsd-arm64@0.25.1": 36 | version "0.25.1" 37 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz#cff18da5469c09986b93e87979de5d6872fe8f8e" 38 | integrity sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A== 39 | 40 | "@esbuild/freebsd-x64@0.25.1": 41 | version "0.25.1" 42 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz#362fc09c2de14987621c1878af19203c46365dde" 43 | integrity sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww== 44 | 45 | "@esbuild/linux-arm64@0.25.1": 46 | version "0.25.1" 47 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz#aa90d5b02efc97a271e124e6d1cea490634f7498" 48 | integrity sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ== 49 | 50 | "@esbuild/linux-arm@0.25.1": 51 | version "0.25.1" 52 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz#dfcefcbac60a20918b19569b4b657844d39db35a" 53 | integrity sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ== 54 | 55 | "@esbuild/linux-ia32@0.25.1": 56 | version "0.25.1" 57 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz#6f9527077ccb7953ed2af02e013d4bac69f13754" 58 | integrity sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ== 59 | 60 | "@esbuild/linux-loong64@0.25.1": 61 | version "0.25.1" 62 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz#287d2412a5456e5860c2839d42a4b51284d1697c" 63 | integrity sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg== 64 | 65 | "@esbuild/linux-mips64el@0.25.1": 66 | version "0.25.1" 67 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz#530574b9e1bc5d20f7a4f44c5f045e26f3783d57" 68 | integrity sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg== 69 | 70 | "@esbuild/linux-ppc64@0.25.1": 71 | version "0.25.1" 72 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz#5d7e6b283a0b321ea42c6bc0abeb9eb99c1f5589" 73 | integrity sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg== 74 | 75 | "@esbuild/linux-riscv64@0.25.1": 76 | version "0.25.1" 77 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz#14fa0cd073c26b4ee2465d18cd1e18eea7859fa8" 78 | integrity sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ== 79 | 80 | "@esbuild/linux-s390x@0.25.1": 81 | version "0.25.1" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz#e677b4b9d1b384098752266ccaa0d52a420dc1aa" 83 | integrity sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ== 84 | 85 | "@esbuild/linux-x64@0.25.1": 86 | version "0.25.1" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz#f1c796b78fff5ce393658313e8c58613198d9954" 88 | integrity sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA== 89 | 90 | "@esbuild/netbsd-arm64@0.25.1": 91 | version "0.25.1" 92 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz#0d280b7dfe3973f111b02d5fe9f3063b92796d29" 93 | integrity sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g== 94 | 95 | "@esbuild/netbsd-x64@0.25.1": 96 | version "0.25.1" 97 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz#be663893931a4bb3f3a009c5cc24fa9681cc71c0" 98 | integrity sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA== 99 | 100 | "@esbuild/openbsd-arm64@0.25.1": 101 | version "0.25.1" 102 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz#d9021b884233673a05dc1cc26de0bf325d824217" 103 | integrity sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg== 104 | 105 | "@esbuild/openbsd-x64@0.25.1": 106 | version "0.25.1" 107 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz#9f1dc1786ed2e2938c404b06bcc48be9a13250de" 108 | integrity sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw== 109 | 110 | "@esbuild/sunos-x64@0.25.1": 111 | version "0.25.1" 112 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz#89aac24a4b4115959b3f790192cf130396696c27" 113 | integrity sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg== 114 | 115 | "@esbuild/win32-arm64@0.25.1": 116 | version "0.25.1" 117 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz#354358647a6ea98ea6d243bf48bdd7a434999582" 118 | integrity sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ== 119 | 120 | "@esbuild/win32-ia32@0.25.1": 121 | version "0.25.1" 122 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz#8cea7340f2647eba951a041dc95651e3908cd4cb" 123 | integrity sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A== 124 | 125 | "@esbuild/win32-x64@0.25.1": 126 | version "0.25.1" 127 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz#7d79922cb2d88f9048f06393dbf62d2e4accb584" 128 | integrity sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg== 129 | 130 | "@eslint-community/eslint-utils@^4.2.0": 131 | version "4.5.1" 132 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz#b0fc7e06d0c94f801537fd4237edc2706d3b8e4c" 133 | integrity sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w== 134 | dependencies: 135 | eslint-visitor-keys "^3.4.3" 136 | 137 | "@eslint-community/regexpp@^4.12.1": 138 | version "4.12.1" 139 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" 140 | integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== 141 | 142 | "@eslint/config-array@^0.19.2": 143 | version "0.19.2" 144 | resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.2.tgz#3060b809e111abfc97adb0bb1172778b90cb46aa" 145 | integrity sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w== 146 | dependencies: 147 | "@eslint/object-schema" "^2.1.6" 148 | debug "^4.3.1" 149 | minimatch "^3.1.2" 150 | 151 | "@eslint/config-helpers@^0.2.0": 152 | version "0.2.0" 153 | resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.2.0.tgz#12dc8d65c31c4b6c3ebf0758db6601eb7692ce59" 154 | integrity sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ== 155 | 156 | "@eslint/core@^0.12.0": 157 | version "0.12.0" 158 | resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.12.0.tgz#5f960c3d57728be9f6c65bd84aa6aa613078798e" 159 | integrity sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg== 160 | dependencies: 161 | "@types/json-schema" "^7.0.15" 162 | 163 | "@eslint/eslintrc@^3.3.1": 164 | version "3.3.1" 165 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.3.1.tgz#e55f7f1dd400600dd066dbba349c4c0bac916964" 166 | integrity sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ== 167 | dependencies: 168 | ajv "^6.12.4" 169 | debug "^4.3.2" 170 | espree "^10.0.1" 171 | globals "^14.0.0" 172 | ignore "^5.2.0" 173 | import-fresh "^3.2.1" 174 | js-yaml "^4.1.0" 175 | minimatch "^3.1.2" 176 | strip-json-comments "^3.1.1" 177 | 178 | "@eslint/js@9.23.0", "@eslint/js@^9.21.0": 179 | version "9.23.0" 180 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.23.0.tgz#c09ded4f3dc63b40b933bcaeb853fceddb64da30" 181 | integrity sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw== 182 | 183 | "@eslint/object-schema@^2.1.6": 184 | version "2.1.6" 185 | resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.6.tgz#58369ab5b5b3ca117880c0f6c0b0f32f6950f24f" 186 | integrity sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA== 187 | 188 | "@eslint/plugin-kit@^0.2.7": 189 | version "0.2.7" 190 | resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz#9901d52c136fb8f375906a73dcc382646c3b6a27" 191 | integrity sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g== 192 | dependencies: 193 | "@eslint/core" "^0.12.0" 194 | levn "^0.4.1" 195 | 196 | "@humanfs/core@^0.19.1": 197 | version "0.19.1" 198 | resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77" 199 | integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== 200 | 201 | "@humanfs/node@^0.16.6": 202 | version "0.16.6" 203 | resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.6.tgz#ee2a10eaabd1131987bf0488fd9b820174cd765e" 204 | integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw== 205 | dependencies: 206 | "@humanfs/core" "^0.19.1" 207 | "@humanwhocodes/retry" "^0.3.0" 208 | 209 | "@humanwhocodes/module-importer@^1.0.1": 210 | version "1.0.1" 211 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 212 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 213 | 214 | "@humanwhocodes/retry@^0.3.0": 215 | version "0.3.1" 216 | resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a" 217 | integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA== 218 | 219 | "@humanwhocodes/retry@^0.4.2": 220 | version "0.4.2" 221 | resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.2.tgz#1860473de7dfa1546767448f333db80cb0ff2161" 222 | integrity sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ== 223 | 224 | "@rollup/rollup-android-arm-eabi@4.37.0": 225 | version "4.37.0" 226 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.37.0.tgz#9bedc746a97fe707154086365f269ced92ff4aa9" 227 | integrity sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ== 228 | 229 | "@rollup/rollup-android-arm64@4.37.0": 230 | version "4.37.0" 231 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.37.0.tgz#6edc6ffc8af8773e4bc28c72894dd5e846b8ee6c" 232 | integrity sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA== 233 | 234 | "@rollup/rollup-darwin-arm64@4.37.0": 235 | version "4.37.0" 236 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.37.0.tgz#737a7b8be9ff79bd24a7efaae0903e8c66ac0676" 237 | integrity sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA== 238 | 239 | "@rollup/rollup-darwin-x64@4.37.0": 240 | version "4.37.0" 241 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.37.0.tgz#a6a697bb685ca9462a7caeea5f22f6a686acff1f" 242 | integrity sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ== 243 | 244 | "@rollup/rollup-freebsd-arm64@4.37.0": 245 | version "4.37.0" 246 | resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.37.0.tgz#18113e8e133ccb6de4b9dc9d3e09f7acff344cb7" 247 | integrity sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA== 248 | 249 | "@rollup/rollup-freebsd-x64@4.37.0": 250 | version "4.37.0" 251 | resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.37.0.tgz#5e56ffd4a0d7ccfcbc86867c40b8f0e6a2c0c81e" 252 | integrity sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA== 253 | 254 | "@rollup/rollup-linux-arm-gnueabihf@4.37.0": 255 | version "4.37.0" 256 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.37.0.tgz#5addf1a51e1495ae7ff28d26442a88adf629c980" 257 | integrity sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w== 258 | 259 | "@rollup/rollup-linux-arm-musleabihf@4.37.0": 260 | version "4.37.0" 261 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.37.0.tgz#00cddb9ab51086c5f2cd33cd4738259e24be4e73" 262 | integrity sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag== 263 | 264 | "@rollup/rollup-linux-arm64-gnu@4.37.0": 265 | version "4.37.0" 266 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.37.0.tgz#c3b4324496236b6fd9f31fda5701c6d6060b1512" 267 | integrity sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA== 268 | 269 | "@rollup/rollup-linux-arm64-musl@4.37.0": 270 | version "4.37.0" 271 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.37.0.tgz#b5222180bb1a50e6e9bc8263efd771c1ce770b6f" 272 | integrity sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ== 273 | 274 | "@rollup/rollup-linux-loongarch64-gnu@4.37.0": 275 | version "4.37.0" 276 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.37.0.tgz#5660181c1c1efb7b19c7a531d496e685236c5ce7" 277 | integrity sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA== 278 | 279 | "@rollup/rollup-linux-powerpc64le-gnu@4.37.0": 280 | version "4.37.0" 281 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.37.0.tgz#8273166495d2f5d3fbc556cf42a5a6e24b78bdab" 282 | integrity sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ== 283 | 284 | "@rollup/rollup-linux-riscv64-gnu@4.37.0": 285 | version "4.37.0" 286 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.37.0.tgz#9677e39288ccc91ebcd707cdd794732d701cd174" 287 | integrity sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw== 288 | 289 | "@rollup/rollup-linux-riscv64-musl@4.37.0": 290 | version "4.37.0" 291 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.37.0.tgz#71cc5ca7be1ed263357618bfe4f8f50c09725a7e" 292 | integrity sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA== 293 | 294 | "@rollup/rollup-linux-s390x-gnu@4.37.0": 295 | version "4.37.0" 296 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.37.0.tgz#6b0b7df33eb32b0ee7423898b183acc1b5fee33e" 297 | integrity sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A== 298 | 299 | "@rollup/rollup-linux-x64-gnu@4.37.0": 300 | version "4.37.0" 301 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.37.0.tgz#52c27717d3c4819d13b5ebc2373ddea099d2e71b" 302 | integrity sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ== 303 | 304 | "@rollup/rollup-linux-x64-musl@4.37.0": 305 | version "4.37.0" 306 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.37.0.tgz#c134a22d30642345de8b799c816345674bf68019" 307 | integrity sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w== 308 | 309 | "@rollup/rollup-win32-arm64-msvc@4.37.0": 310 | version "4.37.0" 311 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.37.0.tgz#8063d5f8195dd1845e056d069366fbe06a424d09" 312 | integrity sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg== 313 | 314 | "@rollup/rollup-win32-ia32-msvc@4.37.0": 315 | version "4.37.0" 316 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.37.0.tgz#891d90e3b5517f9d290bb416afdfe2ebfb12139e" 317 | integrity sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA== 318 | 319 | "@rollup/rollup-win32-x64-msvc@4.37.0": 320 | version "4.37.0" 321 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.37.0.tgz#a54d7304c3bd45573d8bcd1270de89771f8195fe" 322 | integrity sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA== 323 | 324 | "@swc/core-darwin-arm64@1.11.13": 325 | version "1.11.13" 326 | resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.11.13.tgz#ebd30fa0cda7ad28fc471cd756402ff17801cfb4" 327 | integrity sha512-loSERhLaQ9XDS+5Kdx8cLe2tM1G0HLit8MfehipAcsdctpo79zrRlkW34elOf3tQoVPKUItV0b/rTuhjj8NtHg== 328 | 329 | "@swc/core-darwin-x64@1.11.13": 330 | version "1.11.13" 331 | resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.11.13.tgz#9cad870d48ebff805e8946ddcbe3d8312182f70b" 332 | integrity sha512-uSA4UwgsDCIysUPfPS8OrQTH2h9spO7IYFd+1NB6dJlVGUuR6jLKuMBOP1IeLeax4cGHayvkcwSJ3OvxHwgcZQ== 333 | 334 | "@swc/core-linux-arm-gnueabihf@1.11.13": 335 | version "1.11.13" 336 | resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.11.13.tgz#51839e5a850bfa300e2c838fee8379e4dba1de78" 337 | integrity sha512-boVtyJzS8g30iQfe8Q46W5QE/cmhKRln/7NMz/5sBP/am2Lce9NL0d05NnFwEWJp1e2AMGHFOdRr3Xg1cDiPKw== 338 | 339 | "@swc/core-linux-arm64-gnu@1.11.13": 340 | version "1.11.13" 341 | resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.11.13.tgz#4145f1e504bdfa92604aee883d777bc8c4fba5d7" 342 | integrity sha512-+IK0jZ84zHUaKtwpV+T+wT0qIUBnK9v2xXD03vARubKF+eUqCsIvcVHXmLpFuap62dClMrhCiwW10X3RbXNlHw== 343 | 344 | "@swc/core-linux-arm64-musl@1.11.13": 345 | version "1.11.13" 346 | resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.11.13.tgz#b1813ae2e99e386ca16fff5af6601ac45ef57c5b" 347 | integrity sha512-+ukuB8RHD5BHPCUjQwuLP98z+VRfu+NkKQVBcLJGgp0/+w7y0IkaxLY/aKmrAS5ofCNEGqKL+AOVyRpX1aw+XA== 348 | 349 | "@swc/core-linux-x64-gnu@1.11.13": 350 | version "1.11.13" 351 | resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.11.13.tgz#13b89a0194c4033c01400e9c65d9c21c56a4a6cd" 352 | integrity sha512-q9H3WI3U3dfJ34tdv60zc8oTuWvSd5fOxytyAO9Pc5M82Hic3jjWaf2xBekUg07ubnMZpyfnv+MlD+EbUI3Llw== 353 | 354 | "@swc/core-linux-x64-musl@1.11.13": 355 | version "1.11.13" 356 | resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.11.13.tgz#0d0e5aa889dd4da69723e2287c3c1714d9bfd8aa" 357 | integrity sha512-9aaZnnq2pLdTbAzTSzy/q8dr7Woy3aYIcQISmw1+Q2/xHJg5y80ZzbWSWKYca/hKonDMjIbGR6dp299I5J0aeA== 358 | 359 | "@swc/core-win32-arm64-msvc@1.11.13": 360 | version "1.11.13" 361 | resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.11.13.tgz#ad7281f9467e3de09f52615afe2276a8ef738a9d" 362 | integrity sha512-n3QZmDewkHANcoHvtwvA6yJbmS4XJf0MBMmwLZoKDZ2dOnC9D/jHiXw7JOohEuzYcpLoL5tgbqmjxa3XNo9Oow== 363 | 364 | "@swc/core-win32-ia32-msvc@1.11.13": 365 | version "1.11.13" 366 | resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.11.13.tgz#046f6dbddb5b69a29bbaa98de104090a46088b74" 367 | integrity sha512-wM+Nt4lc6YSJFthCx3W2dz0EwFNf++j0/2TQ0Js9QLJuIxUQAgukhNDVCDdq8TNcT0zuA399ALYbvj5lfIqG6g== 368 | 369 | "@swc/core-win32-x64-msvc@1.11.13": 370 | version "1.11.13" 371 | resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.11.13.tgz#0412620d8594a7d3e482d3e79d9e89d80f9a14c0" 372 | integrity sha512-+X5/uW3s1L5gK7wAo0E27YaAoidJDo51dnfKSfU7gF3mlEUuWH8H1bAy5OTt2mU4eXtfsdUMEVXSwhDlLtQkuA== 373 | 374 | "@swc/core@^1.11.11": 375 | version "1.11.13" 376 | resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.11.13.tgz#54ca047c7139d35e358a16a5afcbf8aec0d6e8b6" 377 | integrity sha512-9BXdYz12Wl0zWmZ80PvtjBWeg2ncwJ9L5WJzjhN6yUTZWEV/AwAdVdJnIEp4pro3WyKmAaMxcVOSbhuuOZco5g== 378 | dependencies: 379 | "@swc/counter" "^0.1.3" 380 | "@swc/types" "^0.1.19" 381 | optionalDependencies: 382 | "@swc/core-darwin-arm64" "1.11.13" 383 | "@swc/core-darwin-x64" "1.11.13" 384 | "@swc/core-linux-arm-gnueabihf" "1.11.13" 385 | "@swc/core-linux-arm64-gnu" "1.11.13" 386 | "@swc/core-linux-arm64-musl" "1.11.13" 387 | "@swc/core-linux-x64-gnu" "1.11.13" 388 | "@swc/core-linux-x64-musl" "1.11.13" 389 | "@swc/core-win32-arm64-msvc" "1.11.13" 390 | "@swc/core-win32-ia32-msvc" "1.11.13" 391 | "@swc/core-win32-x64-msvc" "1.11.13" 392 | 393 | "@swc/counter@^0.1.3": 394 | version "0.1.3" 395 | resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9" 396 | integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== 397 | 398 | "@swc/types@^0.1.19": 399 | version "0.1.20" 400 | resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.20.tgz#6fcc39b6fd958f5b976031f693eb85be8c16d15a" 401 | integrity sha512-/rlIpxwKrhz4BIplXf6nsEHtqlhzuNN34/k3kMAXH4/lvVoA3cdq+60aqVNnyvw2uITEaCi0WV3pxBe4dQqoXQ== 402 | dependencies: 403 | "@swc/counter" "^0.1.3" 404 | 405 | "@types/estree@1.0.6": 406 | version "1.0.6" 407 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" 408 | integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== 409 | 410 | "@types/estree@^1.0.6": 411 | version "1.0.7" 412 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.7.tgz#4158d3105276773d5b7695cd4834b1722e4f37a8" 413 | integrity sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ== 414 | 415 | "@types/json-schema@^7.0.15": 416 | version "7.0.15" 417 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" 418 | integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== 419 | 420 | "@types/react-dom@^19.0.4": 421 | version "19.0.4" 422 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.0.4.tgz#bedba97f9346bd4c0fe5d39e689713804ec9ac89" 423 | integrity sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg== 424 | 425 | "@types/react@^19.0.10": 426 | version "19.0.12" 427 | resolved "https://registry.yarnpkg.com/@types/react/-/react-19.0.12.tgz#338b3f7854adbb784be454b3a83053127af96bd3" 428 | integrity sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA== 429 | dependencies: 430 | csstype "^3.0.2" 431 | 432 | "@vitejs/plugin-react-swc@^3.8.0": 433 | version "3.8.1" 434 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-react-swc/-/plugin-react-swc-3.8.1.tgz#663f14b72b1f42f6e61f412ea320e287b3065c41" 435 | integrity sha512-aEUPCckHDcFyxpwFm0AIkbtv6PpUp3xTb9wYGFjtABynXjCYKkWoxX0AOK9NT9XCrdk6mBBUOeHQS+RKdcNO1A== 436 | dependencies: 437 | "@swc/core" "^1.11.11" 438 | 439 | acorn-jsx@^5.3.2: 440 | version "5.3.2" 441 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 442 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 443 | 444 | acorn@^8.14.0: 445 | version "8.14.1" 446 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb" 447 | integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg== 448 | 449 | ajv@^6.12.4: 450 | version "6.12.6" 451 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 452 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 453 | dependencies: 454 | fast-deep-equal "^3.1.1" 455 | fast-json-stable-stringify "^2.0.0" 456 | json-schema-traverse "^0.4.1" 457 | uri-js "^4.2.2" 458 | 459 | ansi-styles@^4.1.0: 460 | version "4.3.0" 461 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 462 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 463 | dependencies: 464 | color-convert "^2.0.1" 465 | 466 | argparse@^2.0.1: 467 | version "2.0.1" 468 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 469 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 470 | 471 | balanced-match@^1.0.0: 472 | version "1.0.2" 473 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 474 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 475 | 476 | brace-expansion@^1.1.7: 477 | version "1.1.11" 478 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 479 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 480 | dependencies: 481 | balanced-match "^1.0.0" 482 | concat-map "0.0.1" 483 | 484 | callsites@^3.0.0: 485 | version "3.1.0" 486 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 487 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 488 | 489 | chalk@^4.0.0: 490 | version "4.1.2" 491 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 492 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 493 | dependencies: 494 | ansi-styles "^4.1.0" 495 | supports-color "^7.1.0" 496 | 497 | color-convert@^2.0.1: 498 | version "2.0.1" 499 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 500 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 501 | dependencies: 502 | color-name "~1.1.4" 503 | 504 | color-name@~1.1.4: 505 | version "1.1.4" 506 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 507 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 508 | 509 | concat-map@0.0.1: 510 | version "0.0.1" 511 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 512 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 513 | 514 | cross-spawn@^7.0.6: 515 | version "7.0.6" 516 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" 517 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== 518 | dependencies: 519 | path-key "^3.1.0" 520 | shebang-command "^2.0.0" 521 | which "^2.0.1" 522 | 523 | csstype@^3.0.2: 524 | version "3.1.3" 525 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 526 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 527 | 528 | debug@^4.3.1, debug@^4.3.2: 529 | version "4.4.0" 530 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" 531 | integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== 532 | dependencies: 533 | ms "^2.1.3" 534 | 535 | deep-is@^0.1.3: 536 | version "0.1.4" 537 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 538 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 539 | 540 | esbuild@^0.25.0: 541 | version "0.25.1" 542 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.1.tgz#a16b8d070b6ad4871935277bda6ccfe852e3fa2f" 543 | integrity sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ== 544 | optionalDependencies: 545 | "@esbuild/aix-ppc64" "0.25.1" 546 | "@esbuild/android-arm" "0.25.1" 547 | "@esbuild/android-arm64" "0.25.1" 548 | "@esbuild/android-x64" "0.25.1" 549 | "@esbuild/darwin-arm64" "0.25.1" 550 | "@esbuild/darwin-x64" "0.25.1" 551 | "@esbuild/freebsd-arm64" "0.25.1" 552 | "@esbuild/freebsd-x64" "0.25.1" 553 | "@esbuild/linux-arm" "0.25.1" 554 | "@esbuild/linux-arm64" "0.25.1" 555 | "@esbuild/linux-ia32" "0.25.1" 556 | "@esbuild/linux-loong64" "0.25.1" 557 | "@esbuild/linux-mips64el" "0.25.1" 558 | "@esbuild/linux-ppc64" "0.25.1" 559 | "@esbuild/linux-riscv64" "0.25.1" 560 | "@esbuild/linux-s390x" "0.25.1" 561 | "@esbuild/linux-x64" "0.25.1" 562 | "@esbuild/netbsd-arm64" "0.25.1" 563 | "@esbuild/netbsd-x64" "0.25.1" 564 | "@esbuild/openbsd-arm64" "0.25.1" 565 | "@esbuild/openbsd-x64" "0.25.1" 566 | "@esbuild/sunos-x64" "0.25.1" 567 | "@esbuild/win32-arm64" "0.25.1" 568 | "@esbuild/win32-ia32" "0.25.1" 569 | "@esbuild/win32-x64" "0.25.1" 570 | 571 | escape-string-regexp@^4.0.0: 572 | version "4.0.0" 573 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 574 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 575 | 576 | eslint-plugin-react-hooks@^5.1.0: 577 | version "5.2.0" 578 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz#1be0080901e6ac31ce7971beed3d3ec0a423d9e3" 579 | integrity sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg== 580 | 581 | eslint-plugin-react-refresh@^0.4.19: 582 | version "0.4.19" 583 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.19.tgz#f15020c0caa58e33fc4efda27d328281ca74e53d" 584 | integrity sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ== 585 | 586 | eslint-scope@^8.3.0: 587 | version "8.3.0" 588 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.3.0.tgz#10cd3a918ffdd722f5f3f7b5b83db9b23c87340d" 589 | integrity sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ== 590 | dependencies: 591 | esrecurse "^4.3.0" 592 | estraverse "^5.2.0" 593 | 594 | eslint-visitor-keys@^3.4.3: 595 | version "3.4.3" 596 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 597 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 598 | 599 | eslint-visitor-keys@^4.2.0: 600 | version "4.2.0" 601 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45" 602 | integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== 603 | 604 | eslint@^9.21.0: 605 | version "9.23.0" 606 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.23.0.tgz#b88f3ab6dc83bcb927fdb54407c69ffe5f2441a6" 607 | integrity sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw== 608 | dependencies: 609 | "@eslint-community/eslint-utils" "^4.2.0" 610 | "@eslint-community/regexpp" "^4.12.1" 611 | "@eslint/config-array" "^0.19.2" 612 | "@eslint/config-helpers" "^0.2.0" 613 | "@eslint/core" "^0.12.0" 614 | "@eslint/eslintrc" "^3.3.1" 615 | "@eslint/js" "9.23.0" 616 | "@eslint/plugin-kit" "^0.2.7" 617 | "@humanfs/node" "^0.16.6" 618 | "@humanwhocodes/module-importer" "^1.0.1" 619 | "@humanwhocodes/retry" "^0.4.2" 620 | "@types/estree" "^1.0.6" 621 | "@types/json-schema" "^7.0.15" 622 | ajv "^6.12.4" 623 | chalk "^4.0.0" 624 | cross-spawn "^7.0.6" 625 | debug "^4.3.2" 626 | escape-string-regexp "^4.0.0" 627 | eslint-scope "^8.3.0" 628 | eslint-visitor-keys "^4.2.0" 629 | espree "^10.3.0" 630 | esquery "^1.5.0" 631 | esutils "^2.0.2" 632 | fast-deep-equal "^3.1.3" 633 | file-entry-cache "^8.0.0" 634 | find-up "^5.0.0" 635 | glob-parent "^6.0.2" 636 | ignore "^5.2.0" 637 | imurmurhash "^0.1.4" 638 | is-glob "^4.0.0" 639 | json-stable-stringify-without-jsonify "^1.0.1" 640 | lodash.merge "^4.6.2" 641 | minimatch "^3.1.2" 642 | natural-compare "^1.4.0" 643 | optionator "^0.9.3" 644 | 645 | espree@^10.0.1, espree@^10.3.0: 646 | version "10.3.0" 647 | resolved "https://registry.yarnpkg.com/espree/-/espree-10.3.0.tgz#29267cf5b0cb98735b65e64ba07e0ed49d1eed8a" 648 | integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg== 649 | dependencies: 650 | acorn "^8.14.0" 651 | acorn-jsx "^5.3.2" 652 | eslint-visitor-keys "^4.2.0" 653 | 654 | esquery@^1.5.0: 655 | version "1.6.0" 656 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" 657 | integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== 658 | dependencies: 659 | estraverse "^5.1.0" 660 | 661 | esrecurse@^4.3.0: 662 | version "4.3.0" 663 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 664 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 665 | dependencies: 666 | estraverse "^5.2.0" 667 | 668 | estraverse@^5.1.0, estraverse@^5.2.0: 669 | version "5.3.0" 670 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 671 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 672 | 673 | esutils@^2.0.2: 674 | version "2.0.3" 675 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 676 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 677 | 678 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 679 | version "3.1.3" 680 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 681 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 682 | 683 | fast-json-stable-stringify@^2.0.0: 684 | version "2.1.0" 685 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 686 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 687 | 688 | fast-levenshtein@^2.0.6: 689 | version "2.0.6" 690 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 691 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 692 | 693 | file-entry-cache@^8.0.0: 694 | version "8.0.0" 695 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" 696 | integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== 697 | dependencies: 698 | flat-cache "^4.0.0" 699 | 700 | find-up@^5.0.0: 701 | version "5.0.0" 702 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 703 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 704 | dependencies: 705 | locate-path "^6.0.0" 706 | path-exists "^4.0.0" 707 | 708 | flat-cache@^4.0.0: 709 | version "4.0.1" 710 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" 711 | integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== 712 | dependencies: 713 | flatted "^3.2.9" 714 | keyv "^4.5.4" 715 | 716 | flatted@^3.2.9: 717 | version "3.3.3" 718 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358" 719 | integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== 720 | 721 | fsevents@~2.3.2, fsevents@~2.3.3: 722 | version "2.3.3" 723 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 724 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 725 | 726 | glob-parent@^6.0.2: 727 | version "6.0.2" 728 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 729 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 730 | dependencies: 731 | is-glob "^4.0.3" 732 | 733 | globals@^14.0.0: 734 | version "14.0.0" 735 | resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" 736 | integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== 737 | 738 | globals@^15.15.0: 739 | version "15.15.0" 740 | resolved "https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz#7c4761299d41c32b075715a4ce1ede7897ff72a8" 741 | integrity sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg== 742 | 743 | has-flag@^4.0.0: 744 | version "4.0.0" 745 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 746 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 747 | 748 | ignore@^5.2.0: 749 | version "5.3.2" 750 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" 751 | integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== 752 | 753 | import-fresh@^3.2.1: 754 | version "3.3.1" 755 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf" 756 | integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== 757 | dependencies: 758 | parent-module "^1.0.0" 759 | resolve-from "^4.0.0" 760 | 761 | imurmurhash@^0.1.4: 762 | version "0.1.4" 763 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 764 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 765 | 766 | is-extglob@^2.1.1: 767 | version "2.1.1" 768 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 769 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 770 | 771 | is-glob@^4.0.0, is-glob@^4.0.3: 772 | version "4.0.3" 773 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 774 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 775 | dependencies: 776 | is-extglob "^2.1.1" 777 | 778 | isexe@^2.0.0: 779 | version "2.0.0" 780 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 781 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 782 | 783 | js-yaml@^4.1.0: 784 | version "4.1.0" 785 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 786 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 787 | dependencies: 788 | argparse "^2.0.1" 789 | 790 | json-buffer@3.0.1: 791 | version "3.0.1" 792 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 793 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 794 | 795 | json-schema-traverse@^0.4.1: 796 | version "0.4.1" 797 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 798 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 799 | 800 | json-stable-stringify-without-jsonify@^1.0.1: 801 | version "1.0.1" 802 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 803 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 804 | 805 | keyv@^4.5.4: 806 | version "4.5.4" 807 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" 808 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 809 | dependencies: 810 | json-buffer "3.0.1" 811 | 812 | levn@^0.4.1: 813 | version "0.4.1" 814 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 815 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 816 | dependencies: 817 | prelude-ls "^1.2.1" 818 | type-check "~0.4.0" 819 | 820 | locate-path@^6.0.0: 821 | version "6.0.0" 822 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 823 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 824 | dependencies: 825 | p-locate "^5.0.0" 826 | 827 | lodash.merge@^4.6.2: 828 | version "4.6.2" 829 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 830 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 831 | 832 | minimatch@^3.1.2: 833 | version "3.1.2" 834 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 835 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 836 | dependencies: 837 | brace-expansion "^1.1.7" 838 | 839 | ms@^2.1.3: 840 | version "2.1.3" 841 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 842 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 843 | 844 | nanoid@^3.3.8: 845 | version "3.3.11" 846 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" 847 | integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== 848 | 849 | natural-compare@^1.4.0: 850 | version "1.4.0" 851 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 852 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 853 | 854 | optionator@^0.9.3: 855 | version "0.9.4" 856 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" 857 | integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== 858 | dependencies: 859 | deep-is "^0.1.3" 860 | fast-levenshtein "^2.0.6" 861 | levn "^0.4.1" 862 | prelude-ls "^1.2.1" 863 | type-check "^0.4.0" 864 | word-wrap "^1.2.5" 865 | 866 | p-limit@^3.0.2: 867 | version "3.1.0" 868 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 869 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 870 | dependencies: 871 | yocto-queue "^0.1.0" 872 | 873 | p-locate@^5.0.0: 874 | version "5.0.0" 875 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 876 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 877 | dependencies: 878 | p-limit "^3.0.2" 879 | 880 | parent-module@^1.0.0: 881 | version "1.0.1" 882 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 883 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 884 | dependencies: 885 | callsites "^3.0.0" 886 | 887 | path-exists@^4.0.0: 888 | version "4.0.0" 889 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 890 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 891 | 892 | path-key@^3.1.0: 893 | version "3.1.1" 894 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 895 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 896 | 897 | picocolors@^1.1.1: 898 | version "1.1.1" 899 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" 900 | integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== 901 | 902 | postcss@^8.5.3: 903 | version "8.5.3" 904 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.3.tgz#1463b6f1c7fb16fe258736cba29a2de35237eafb" 905 | integrity sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A== 906 | dependencies: 907 | nanoid "^3.3.8" 908 | picocolors "^1.1.1" 909 | source-map-js "^1.2.1" 910 | 911 | prelude-ls@^1.2.1: 912 | version "1.2.1" 913 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 914 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 915 | 916 | punycode@^2.1.0: 917 | version "2.3.1" 918 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 919 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 920 | 921 | react-dom@^19.0.0: 922 | version "19.0.0" 923 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.0.tgz#43446f1f01c65a4cd7f7588083e686a6726cfb57" 924 | integrity sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ== 925 | dependencies: 926 | scheduler "^0.25.0" 927 | 928 | react@^19.0.0: 929 | version "19.0.0" 930 | resolved "https://registry.yarnpkg.com/react/-/react-19.0.0.tgz#6e1969251b9f108870aa4bff37a0ce9ddfaaabdd" 931 | integrity sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ== 932 | 933 | resolve-from@^4.0.0: 934 | version "4.0.0" 935 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 936 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 937 | 938 | rollup@^4.30.1: 939 | version "4.37.0" 940 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.37.0.tgz#e4172f8bdb6ea7df08a1b0acf99abeccb2250378" 941 | integrity sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg== 942 | dependencies: 943 | "@types/estree" "1.0.6" 944 | optionalDependencies: 945 | "@rollup/rollup-android-arm-eabi" "4.37.0" 946 | "@rollup/rollup-android-arm64" "4.37.0" 947 | "@rollup/rollup-darwin-arm64" "4.37.0" 948 | "@rollup/rollup-darwin-x64" "4.37.0" 949 | "@rollup/rollup-freebsd-arm64" "4.37.0" 950 | "@rollup/rollup-freebsd-x64" "4.37.0" 951 | "@rollup/rollup-linux-arm-gnueabihf" "4.37.0" 952 | "@rollup/rollup-linux-arm-musleabihf" "4.37.0" 953 | "@rollup/rollup-linux-arm64-gnu" "4.37.0" 954 | "@rollup/rollup-linux-arm64-musl" "4.37.0" 955 | "@rollup/rollup-linux-loongarch64-gnu" "4.37.0" 956 | "@rollup/rollup-linux-powerpc64le-gnu" "4.37.0" 957 | "@rollup/rollup-linux-riscv64-gnu" "4.37.0" 958 | "@rollup/rollup-linux-riscv64-musl" "4.37.0" 959 | "@rollup/rollup-linux-s390x-gnu" "4.37.0" 960 | "@rollup/rollup-linux-x64-gnu" "4.37.0" 961 | "@rollup/rollup-linux-x64-musl" "4.37.0" 962 | "@rollup/rollup-win32-arm64-msvc" "4.37.0" 963 | "@rollup/rollup-win32-ia32-msvc" "4.37.0" 964 | "@rollup/rollup-win32-x64-msvc" "4.37.0" 965 | fsevents "~2.3.2" 966 | 967 | scheduler@^0.25.0: 968 | version "0.25.0" 969 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015" 970 | integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA== 971 | 972 | shebang-command@^2.0.0: 973 | version "2.0.0" 974 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 975 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 976 | dependencies: 977 | shebang-regex "^3.0.0" 978 | 979 | shebang-regex@^3.0.0: 980 | version "3.0.0" 981 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 982 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 983 | 984 | source-map-js@^1.2.1: 985 | version "1.2.1" 986 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" 987 | integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== 988 | 989 | strip-json-comments@^3.1.1: 990 | version "3.1.1" 991 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 992 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 993 | 994 | supports-color@^7.1.0: 995 | version "7.2.0" 996 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 997 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 998 | dependencies: 999 | has-flag "^4.0.0" 1000 | 1001 | type-check@^0.4.0, type-check@~0.4.0: 1002 | version "0.4.0" 1003 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1004 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1005 | dependencies: 1006 | prelude-ls "^1.2.1" 1007 | 1008 | uri-js@^4.2.2: 1009 | version "4.4.1" 1010 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1011 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1012 | dependencies: 1013 | punycode "^2.1.0" 1014 | 1015 | vite@^6.2.0: 1016 | version "6.2.3" 1017 | resolved "https://registry.yarnpkg.com/vite/-/vite-6.2.3.tgz#249e92d32886981ab46bc1f049ac72abc6fa81e2" 1018 | integrity sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg== 1019 | dependencies: 1020 | esbuild "^0.25.0" 1021 | postcss "^8.5.3" 1022 | rollup "^4.30.1" 1023 | optionalDependencies: 1024 | fsevents "~2.3.3" 1025 | 1026 | which@^2.0.1: 1027 | version "2.0.2" 1028 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1029 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1030 | dependencies: 1031 | isexe "^2.0.0" 1032 | 1033 | word-wrap@^1.2.5: 1034 | version "1.2.5" 1035 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" 1036 | integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 1037 | 1038 | yocto-queue@^0.1.0: 1039 | version "0.1.0" 1040 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1041 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1042 | -------------------------------------------------------------------------------- /Proyecto/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Código de conducta de nuestro equipo 2 | 3 | ## 1. Propósito 4 | 5 | Este documento define cómo cada equipo va a colaborar, comunicarse, resolver problemas y apoyarse durante el desarrollo del proyecto del curso **IIC2513 Tecnologías y Aplicaciones Web**. Su objetivo es que cada equipo converse y piense en situaciones que podrían llegar a ocurrir durante el semestre y que puedan abordarlas desde el respeto, la responsabilidad y la comprensión. 6 | 7 | > [!TIP] 8 | > Este documento no es un conjunto de reglas, sino una guía sobre qué hacer en cada situación. Este documento es una invitación para que conversen y sepan qué es lo que esperan de ustedes mismos y de su grupo. Confiamos en ustedes y su capacidad de autoregularse, pero también les pedimos que confíen en nosotros como equipo docente para apoyarles en todo lo que necesiten (para eso tienen un ayudante de grupo, ayudante de bienestar, ayudante coordinador y a su profesor). 9 | 10 | 11 | ## 2. Alcance 12 | 13 | Aplica a todas las actividades relacionadas con el desarrollo del proyecto del curso, tales como: 14 | - Reuniones de planificación, diseño e implementación 15 | - Desarrollo y revisión de código 16 | - Escritura de documentación e implementación de las entregas 17 | - Interacción con el equipo docente, otros grupos del curso y entre estudiantes del equipo 18 | 19 | 20 | ## 3. Normas de Comunicación 21 | 22 | > [!NOTE] 23 | > Esto debe ser completado por cada equipo 24 | 25 | ### Canal de comunicación principal 26 | > ¿Cómo se comunicarán entre ustedes? WhatsApp / Telegram / Teams / Slack / Discord / Correo 27 | 28 | ### Reuniones de equipo 29 | > Definir frecuencia (X veces a la semana o por entrega) y medio (Meet / Teams / Presencial). Deben definirlo para reuniones entre ustedes y para reuniones con el ayudante. 30 | 31 | ### Cuándo trabajar en el proyecto 32 | > Conversar cómo y cuándo prefieren trabajar. ¿Solo días hábiles? ¿Al comienzo de cada entrega, toda la entrega o solo al final de la entrega? Pónganse en todas las situaciones y recuerden experiencias en cursos anteriores. 33 | 34 | 35 | ## 4. ¿Qué Haremos Cuando...? 36 | 37 | > [!IMPORTANT] 38 | > Para cada una de estas situaciones, deberán definir un paso a paso de las cosas que deberían hacer si la situación particular se presenta. Piénsenlo como una *checklist*, esto es un plan a seguir en caso de emergencia. Es importante que coloquen explícitamente quién realiza la acción (vean el ejemplo). Recuerden situaciones y experiencias similares y qué les hubiera gustado que ocurriera. La primera situación queda de ejemplo, pero pueden modificarla. 39 | 40 | ### 4.1 Enfermedad o emergencia de salud 41 | > En caso de que uno de los miembros se enferme o no pueda trabajar en el proyecto del curso por razones de salud. 42 | 43 | 1. Si **YO** me enfermo, avisaré a mi equipo lo antes posible 44 | 2. **Yo** indicaré el tiempo estimado de ausencia 45 | 3. **Mi equipo** va a redistribuirse mis tareas temporalmente 46 | 4. **Como equipo** avisaremos al ayudante del grupo para su consideración 47 | 5. Si existe certificado médico, **YO** informaré al ayudante de bienestar y gestionar ante la DiPre 48 | 49 | ### 4.2 Carga académica excesiva / Tope de evaluaciones 50 | > Muchas veces, en semestres anteriores, hemos visto que coinciden entregas del proyecto de este curso con tareas o interrogaciones de otros cursos. Es muy probable que en su grupo ocurra esto. Pónganse en esa situación y piensen qué les gustaría que ocurriera si ustedes u otra persona tiene este tipo de topes. 51 | 52 | 1. Si **YO** tengo una entrega de otro curso un día de entrega de este proyecto... 53 | 54 | ### 4.3 Indisponibilidad prevista (viajes, vacaciones) 55 | > En ocasiones, algún estudiante podría tener un viaje o evento previsto que le impida trabajar en el proyecto en algún momento del semestre. Conversen sobre eso: ¿tengo algo planificado que pueda impedir que trabaje algún o algunos días? En otras ocasiones hemos visto: viajes para asistir a matrimonios o competencias deportivas, participación en eventos de larga duración, o incluso por razones religiosas. Si no tienen esta indisponibilidad, pueden colocar eso: "Ninguno de los miembros de este equipo reportó tener alguna indisponibilidad prevista" 56 | 57 | 1. Si **YO** tengo un viaje planificado durante lo que queda de semestre... 58 | 59 | ### 4.4 Emergencia personal no planificada 60 | > Es difícil resumir todas las situaciones que podrían ocurrir a nivel personal y que impiden que podamos continuar con nuestras responsabilidades académicas: hay cosas más importantes que una evaluación en la universidad. Traten de pensar en situaciones generales: ¿qué me gustaría que ocurriera si realmente no puedo contribuir a mi equipo por alguna razón fuera de mi alcance? (Podría servirles colocar ejemplo) 61 | 62 | 1. Si **YO** no puedo trabajar porque me pasó algo... 63 | 64 | ### 4.5 Retraso en entrega / Inclumplimiento de plazo 65 | > Sabemos que tienen la capacidad de desarrollar el proyecto de buena manera y obtener la mayor nota posible (sería injusto darles un proyecto que no esperamos que puedan completar), pero si por algún motivo no pudieran entregar todo a tiempo, ¿qué planean hacer? 66 | 67 | 1. Si **como equipo** no tenemos el entregable listo para el día de la entrega... 68 | 69 | ### 4.6 Persona no ubicable o contactable (no responde) 70 | > Esta situación tiende a ocurrir cuando un miembro está colapsado o enfrentando múltiples situaciones y/o evaluaciones. Pueden ser muchas cosas. Lo importante aquí es que se pongan en la situación de qué harían como grupo si es que no pueden contactar a uno de los miembros para seguir progresando y la persona no aparece en un tiempo razonable. Recuerden que pueden informar al equipo docente para evaluar su situación, esto con el objetivo de dejar respaldo cuando respondan la evaluación de pares de cada entrega (sí, hay evaluación de pares que afecta la nota individual) 71 | 72 | 1. Si **como equipo** no conseguimos respuesta de un miembro para asignar responsabilidades o confirmar que está progresando... 73 | 74 | ### 4.7 Diferencias de opinión 75 | > Trabajar en grupo es difícil y es una habilidad que se sigue desarrollando más allá de la universidad incluso. Incluso si se conocieran y fueran muy amigos, es posible que tengan diferencias de opinión durante el desarrollo del proyecto. Imaginen que tienen visiones o ideas muy distintas, ¿cuál sería un buen proceso para llegar a un consenso? 76 | 77 | 1. Si **como equipo** no logramos llegar a un acuerdo sobre una decisión de diseño del proyecto... 78 | 79 | ### 4.8 Riesgo de no completar el proyecto 80 | > La última entrega del proyecto del curso es reprobatoria. Planifíquense con esto en mente. Sin embargo, a veces existen situaciones que nos impiden cumplir con nuestras planificaciones (algunas ya mencionadas, otras no planificadas, a veces el proyecto es muy ambicioso, etc.). Si en algún punto creen que no alcanzan a completar la última entrega del proyecto dentro del plazo establecido, ¿qué piensan hacer? 81 | 82 | 1. Si **como equipo** creemos que podríamos no llegar con el proyecto listo a la última entrega... 83 | 84 | ### 4.9 Manteniendo la integridad académica 85 | > Ya en la primera clase del curso hablamos de integridad académica (incluyendo cómo citar y cómo referenciar el uso de IA). ¿Cómo piensan mantener la integridad académica? Conversen sobre cómo piensan citar y referenciar el uso de código de fuentes externas, sobre cómo piensan utilizar IA durante el semestre y... respondan en su checklist lo más difícil: ¿qué harían si identifican código externo o de una IA que no ha sido referenciado por otro miembro de su equipo? 86 | 87 | 1. Si **YO** encuentro código que aparentemente fue desarrollado por una IA pero no se referenció... 88 | -------------------------------------------------------------------------------- /Proyecto/IIC2513_2025_1_Enunciado_Proyecto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Proyecto/IIC2513_2025_1_Enunciado_Proyecto.pdf -------------------------------------------------------------------------------- /Proyecto/IIC2513_Proyecto_E0_25_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Proyecto/IIC2513_Proyecto_E0_25_1.pdf -------------------------------------------------------------------------------- /Proyecto/IIC2513_Proyecto_E1_25_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Proyecto/IIC2513_Proyecto_E1_25_1.pdf -------------------------------------------------------------------------------- /Proyecto/IIC2513_Proyecto_E2_25_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Proyecto/IIC2513_Proyecto_E2_25_1.pdf -------------------------------------------------------------------------------- /Proyecto/IIC2513_Proyecto_E3_25_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Proyecto/IIC2513_Proyecto_E3_25_1.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IIC2513 - Tecnologías y Aplicaciones Web 2 | 3 | Este curso está diseñado para que sus estudiantes logren comprender la infraestructura tecnológica que soporta la World Wide Web y a manejar las principales tecnologías utilizadas en la creación de sitios y aplicaciones web. Además, el curso proporciona una base conceptual sólida para poder entender y trabajar con las nuevas tecnologías y propuestas que surgen en este contexto de manera constante. 4 | 5 | ## Equipo docente 6 | 7 | ### Profesor 8 | 9 | | Sección | Nombre | GitHub | Email | 10 | | :------ | :----- | :----- | :---- | 11 | | 1 | Antonio Ossa Guerra | [@aaossa] | [aaossa@ing.puc.cl] 12 | 13 | [@aaossa]: https://github.com/aaossa 14 | [aaossa@ing.puc.cl]: mailto:aaossa@ing.puc.cl 15 | 16 | ### Ayudantes 17 | 18 | | Nombre | Telegram | Email | 19 | | :----- | :----- | :---- | 20 | | Rodrigo Ogalde¹ | [@rjogalde](https://github.com/rjogalde) | [rjogalde@uc.cl](mailto:rjogalde@uc.cl) | 21 | | Pablo Sepúlveda² | [@psepulvedas](https://github.com/psepulvedas) | [pablo.seplveda@uc.cl](mailto:pablo.seplveda@uc.cl) | 22 | | Alexandra San Martín | [@lexiezss](https://github.com/lexiezss) | [apsanmartin@uc.cl](mailto:apsanmartin@uc.cl) | 23 | | Andrés Venegas | [@Andrew_venegas](https://github.com/Andrew_venegas) | [avenegasvera@uc.cl](mailto:avenegasvera@uc.cl) | 24 | | Cristóbal Moreno | [@criism0x](https://github.com/criism0x) | [crismo1712@uc.cl](mailto:crismo1712@uc.cl) | 25 | | Jean Philippe Fuentes | [@JeanPFB](https://github.com/JeanPFB) | [jhfuentes@uc.cl](mailto:jhfuentes@uc.cl) | 26 | | Monserrat Díaz | [@monserratdb](https://github.com/monserratdb) | [mdb@uc.cl](mailto:mdb@uc.cl) | 27 | | Renata Santander | [@renasantander](https://github.com/renasantander) | [renata.santander@uc.cl](mailto:renata.santander@uc.cl) | 28 | | Rodrigo Meza | [@rorromeza](https://github.com/rorromeza) | [rmezaa@uc.cl](mailto:rmezaa@uc.cl) | 29 | | Sofía Rencoret | [@Sofirenocret](https://github.com/Sofirenocret) | [srencoret@uc.cl](mailto:srencoret@uc.cl) | 30 | | Tomás Ketterer | [@TomasKetterer](https://github.com/TomasKetterer) | [tketterer@uc.cl](mailto:tketterer@uc.cl) | 31 | 32 | 1: Rodrigo es el ayudante coordinador del curso 33 | 2: Pablo es el ayudante de bienestar 34 | -------------------------------------------------------------------------------- /Tareas/Diagrama T2-25-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Tareas/Diagrama T2-25-1.jpg -------------------------------------------------------------------------------- /Tareas/IIC2513_Tarea_1_25_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Tareas/IIC2513_Tarea_1_25_1.pdf -------------------------------------------------------------------------------- /Tareas/IIC2513_Tarea_2_25_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IIC2513/Syllabus-S1-25-1/948716031d16ef98acd70a880c672d66e448c07c/Tareas/IIC2513_Tarea_2_25_1.pdf --------------------------------------------------------------------------------