

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF[
	<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
	<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
	<!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
	<!ENTITY swivt 'http://semantic-mediawiki.org/swivt/1.0#'>
	<!ENTITY wiki 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/'>
	<!ENTITY category 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3A'>
	<!ENTITY property 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3A'>
	<!ENTITY wikiurl 'https://www.wikidebrouillard.org/wiki/'>
]>

<rdf:RDF
	xmlns:rdf="&rdf;"
	xmlns:rdfs="&rdfs;"
	xmlns:owl ="&owl;"
	xmlns:swivt="&swivt;"
	xmlns:wiki="&wiki;"
	xmlns:category="&category;"
	xmlns:property="&property;">

	<owl:Ontology rdf:about="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/Capteur_de_pression_piloté_par_Arduino">
		<swivt:creationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-04-30T21:42:27+02:00</swivt:creationDate>
		<owl:imports rdf:resource="http://semantic-mediawiki.org/swivt/1.0"/>
	</owl:Ontology>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino">
		<rdf:type rdf:resource="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials"/>
		<rdfs:label>Capteur de pression piloté par Arduino</rdfs:label>
		<rdfs:isDefinedBy rdf:resource="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:page rdf:resource="https://www.wikidebrouillard.org/wiki/Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<swivt:wikiPageContentLanguage rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fr</swivt:wikiPageContentLanguage>
		<property:Animation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">N’hésitez pas à raccorder le capteur de pression avec les fils électriques afin d’en faciliter sa manipulation.

- Lors de la programmation, n’hésitez pas à paramétrer plusieurs LEDS pour avoir plus de précision.</property:Animation>
		<property:Complete rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Draft</property:Complete>
		<property:Description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Comment feriez-vous pour estimer l’effort de pression entre deux objets ?</property:Description>
		<property:Difficulty rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technical</property:Difficulty>
		<property:Disciplines_scientifiques rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arduino</property:Disciplines_scientifiques>
		<property:Duration rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Duration>
		<property:Duration-2Dtype rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hour(s)</property:Duration-2Dtype>
		<property:Explanations rdf:datatype="http://www.w3.org/2001/XMLSchema#string">=== '''De manière simple''' ===
Une pression est effectuée sur le capteur, suite à cet effort un certain nombre de LEDS s’allume.

L’allumage et le paramétrage des LEDS se programment grâce au logiciel ARDUINO.
* Que se passe-t-il quand toutes les LEDS sont allumées ?
=&gt; L’effort de pression est trop important pour le capteur, il faut donc vérifier que le capteur a une fourchette de pression assez importante pour assurer le bon fonctionnement de ce montage.</property:Explanations>
		<property:Item rdf:resource="&wiki;Logiciel_Arduino"/>
		<property:Item rdf:resource="&wiki;Résistance"/>
		<property:Item rdf:resource="&wiki;Ordinateur"/>
		<property:Item rdf:resource="&wiki;Capteur_de_pression"/>
		<property:Item rdf:resource="&wiki;Led"/>
		<property:Item rdf:resource="&wiki;Fil_électrique"/>
		<property:Licences rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Attribution (CC-BY)</property:Licences>
		<property:Main_Picture rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur_de_pression_piloté_par_Arduino_250px-ArduinoUno_R3_Front_450px.jpg</property:Main_Picture>
		<property:Observations rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Une fois le branchement effectué et programme chargé, on aperçoit l’affichage des LEDS lors d’une pression exercée sur le capteur.</property:Observations>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1. Effectuer le câblage ci-dessous.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1. Effectuer le câblage ci-dessous. (suite)</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Télécharger le logiciel ARDUINO sur http://arduino.cc/en/main/software</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Intégrer ce programme dans le logiciel ARDUINO.

int sensorPin = A0;    //on récupére la valeur de l'entrée analogique
int ledPin0 = 0;       //on déclare la sortie 0
int ledPin1 = 1;       //on déclare la sortie 1
int ledPin2 = 2;       //on déclare la sortie 2
int ledPin3 = 3;       //on déclare la sortie 3
int ledPin4 = 4;       //on déclare la sortie 4 
int ledPin5 = 5;       //on déclare la sortie 5
int ledPin6 = 6;       //on déclare la sortie 6
int ledPin7 = 7;       //on déclare la sortie 7
int ledPin8 = 8;       //on déclare la sortie 8
int sensorValue = 0;   //on crée une variable initialisée à 0
void setup() {  //fonction d'initialisation
  pinMode(ledPin0, OUTPUT);        //on définit  la sortie 0
  pinMode(ledPin2, OUTPUT);        //on définit  la sortie 2
  pinMode(ledPin3, OUTPUT);        //on définit  la sortie 3
  pinMode(ledPin4, OUTPUT);        //on définit  la sortie 4
  pinMode(ledPin5, OUTPUT);        //on définit  la sortie 5
  pinMode(ledPin6, OUTPUT);        //on définit  la sortie 6
  pinMode(ledPin7, OUTPUT);        //on définit  la sortie 7
  pinMode(ledPin8, OUTPUT);        //on définit  la sortie 8
}
void loop() {
  sensorValue = analogRead(sensorPin);              //On convertit la valeur lue par l'entrée analogique en un entier, la valeur lue est comprise entre 0 et 1024     
  if (sensorValue&lt;113)digitalWrite(ledPin8, HIGH);  //programmation de l'allumage de la derniére LED
else digitalWrite(ledPin8, LOW);                   
if (sensorValue&lt;226)digitalWrite(ledPin7, HIGH);   
else digitalWrite(ledPin7, LOW);                  
if (sensorValue&lt;339)digitalWrite(ledPin6, HIGH);   
else digitalWrite(ledPin6, LOW);                   
if (sensorValue&lt;452)digitalWrite(ledPin5, HIGH);   
else digitalWrite(ledPin5, LOW);                   
if (sensorValue&lt;565)digitalWrite(ledPin4, HIGH);  
else digitalWrite(ledPin4, LOW);            
if (sensorValue&lt;678)digitalWrite(ledPin3, HIGH);  
else digitalWrite(ledPin3, LOW);                   
if (sensorValue&lt;791)digitalWrite(ledPin2, HIGH);  
else digitalWrite(ledPin2, LOW);                   
if (sensorValue&lt;904)digitalWrite(ledPin1, HIGH); 
else digitalWrite(ledPin1, LOW);                
    if (sensorValue&lt;1024)digitalWrite(ledPin0, HIGH); //programmation de l'allumage de la premiére LED
else digitalWrite(ledPin0, LOW);
}</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brancher le microprocesseur ARDUINO à l’ordinateur via le port USB.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6. Appuyer sur le bouton « vérifier » puis « téléverser ».</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7. Exercer une pression sur le capteur.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8. En fonction de la programmation des LEDS, effectuer un relevé d’affichage des LEDS.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9. Pour finir, estimer l’effort de pression.</property:Step_Content>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Manipulation</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Manipulation suite</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Télécharger</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Intégrer</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brancher</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Appuyer</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Exercer</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fonction</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Finir</property:Step_Title>
		<property:Has_query rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino-23_QUERYaf5d5d2d9480624f42e6882887edd945"/>
		<property:Has_query rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino-23_QUERY4aacd5f248d3f020fff23868466c477f"/>
		<property:Has_query rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino-23_QUERY5dd9df48be0e3604e322528c54f84442"/>
		<property:Has_query rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino-23_QUERY50e9a179c214565b8620eb5604b5c81c"/>
		<property:Has_query rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino-23_QUERYecbe3033e8a8f2c5d92a3114ffda8a6f"/>
		<property:Has_query rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino-23_QUERYbf8897a10cb61bfc629d8907463083ec"/>
		<swivt:wikiPageModificationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-10-15T14:41:17Z</swivt:wikiPageModificationDate>
		<property:Modification_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2458772.1120023</property:Modification_date-23aux>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino</swivt:wikiPageSortKey>
		<property:Comments rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Comments>
		<property:Page_creator rdf:resource="&wiki;Utilisateur-3ATess"/>
		<property:I_did_it rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:I_did_it>
		<property:Favorites rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Favorites>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino-23_QUERYaf5d5d2d9480624f42e6882887edd945">
		<swivt:masterPage rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Logiciel Arduino]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino# QUERYaf5d5d2d9480624f42e6882887edd945</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino-23_QUERY4aacd5f248d3f020fff23868466c477f">
		<swivt:masterPage rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Ordinateur]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino# QUERY4aacd5f248d3f020fff23868466c477f</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino-23_QUERY5dd9df48be0e3604e322528c54f84442">
		<swivt:masterPage rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Led]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino# QUERY5dd9df48be0e3604e322528c54f84442</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino-23_QUERY50e9a179c214565b8620eb5604b5c81c">
		<swivt:masterPage rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Fil électrique]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino# QUERY50e9a179c214565b8620eb5604b5c81c</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino-23_QUERYecbe3033e8a8f2c5d92a3114ffda8a6f">
		<swivt:masterPage rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Capteur de pression]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino# QUERYecbe3033e8a8f2c5d92a3114ffda8a6f</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Capteur_de_pression_piloté_par_Arduino-23_QUERYbf8897a10cb61bfc629d8907463083ec">
		<swivt:masterPage rdf:resource="&wiki;Capteur_de_pression_piloté_par_Arduino"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Résistance]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Capteur de pression piloté par Arduino# QUERYbf8897a10cb61bfc629d8907463083ec</swivt:wikiPageSortKey>
	</swivt:Subject>
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#creationDate" />
	<owl:Class rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#page" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiNamespace" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageContentLanguage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AAnimation" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComplete" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADescription" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADifficulty" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADisciplines_scientifiques" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration-2Dtype" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AExplanations" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AItem" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ALicences" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AMain_Picture" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AObservations" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AStep_Content" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AStep_Title" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AHas_query" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageModificationDate" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AModification_date-23aux" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageSortKey" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComments" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3APage_creator" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AI_did_it" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AFavorites" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#masterPage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_depth" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_format" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_size" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_string" />
	<!-- Created by Semantic MediaWiki, https://www.semantic-mediawiki.org/ -->
</rdf:RDF>